2007-08-06 Simon Josefsson <simon@josefsson.org>
[pspp] / ChangeLog
1 2007-08-06  Simon Josefsson  <simon@josefsson.org>
2
3         * build-aux/maint.mk, build-aux/GNUmakefile: Relicense to GPLv3+.
4
5 2007-07-31  Bruno Haible  <bruno@clisp.org>
6
7         * m4/stdint.m4 (gl_STDINT_H): Test whether WCHAR_MIN and WCHAR_MAX
8         are defined by <stdint.h> (as opposed to <wchar.h>, as on Dragonfly).
9         Reported by Joerg Sonnenberger <joerg@britannica.bec.de>.
10
11 2007-07-31  Bruno Haible  <bruno@clisp.org>
12
13         * lib/fflush.c (rpl_fflush): On BSD systems, use the __SNPT flag.
14         Suggested by Joerg Sonnenberger <joerg@britannica.bec.de>.
15
16 2007-07-30  Bruno Haible  <bruno@clisp.org>
17
18         * modules/base64 (License): Use the synonymous term "LGPLv2+".
19         * modules/c-ctype (License): Likewise.
20         * modules/c-strcase (License): Likewise.
21         * modules/check-version (License): Likewise.
22         * modules/iconv (License): Likewise.
23         * modules/iconv_open (License): Likewise.
24         * modules/read-file (License): Likewise.
25         * modules/striconv (License): Likewise.
26         * modules/strverscmp (License): Likewise.
27         * modules/vasprintf (License): Likewise.
28         * modules/crypto/des (License): Likewise.
29         * modules/crypto/gc (License): Likewise.
30         * modules/crypto/gc-arcfour (License): Likewise.
31         * modules/crypto/gc-arctwo (License): Likewise.
32         * modules/crypto/gc-des (License): Likewise.
33         * modules/crypto/gc-hmac-md5 (License): Likewise.
34         * modules/crypto/gc-hmac-sha1 (License): Likewise.
35         * modules/crypto/gc-md2 (License): Likewise.
36         * modules/crypto/gc-md4 (License): Likewise.
37         * modules/crypto/gc-md5 (License): Likewise.
38         * modules/crypto/gc-pbkdf2-sha1 (License): Likewise.
39         * modules/crypto/gc-random (License): Likewise.
40         * modules/crypto/gc-rijndael (License): Likewise.
41         * modules/crypto/gc-sha1 (License): Likewise.
42         * modules/crypto/md2 (License): Likewise.
43         * modules/crypto/md4 (License): Likewise.
44
45 2007-07-30  Jim Meyering  <jim@meyering.net>
46
47         * lib/fts.c (fts_read): Upon failure to chdir into a subdirectory,
48         set fts_info to FTS_DNR, not to FTS_ERR, so that the caller knows
49         it has valid stat data.  This bug would cause du not to count the
50         sizes of inaccessible directories.
51         Patch by Bryan Mason <bmason@redhat.com>, via Jose Maria Plans
52         in <http://bugzilla.redhat.com/250077>.
53
54 2007-07-25  Peter O'Gorman  <peter@pogma.com>
55             Bruno Haible  <bruno@clisp.org>
56
57         * m4/include_next.m4 (gl_INCLUDE_NEXT): Test whether #include_next
58         really works. Needed because AIX 4.3 "xlc -E" doesn't understand
59         #include_next, gives a diagnostic about it, but reports no error in
60         the exit code.
61         Reported by Gary V. Vaughan <gary@thewrittenword.com>.
62
63 2007-07-24  Ben Pfaff  <blp@gnu.org>
64
65         Improve name: "count-one-bits" is better than "popcount".
66         * MODULES.html.sh: Update name.
67         * lib/popcount.h: Renamed lib/count-one-bits.h.
68         (popcount): Renamed count_one_bits.
69         (popcountl): Renamed count_one_bits_l.
70         (popcountll): Renamed count_one_bits_ll.
71         * m4/popcount.m4: Renamed m4/count-one-bits.m4.
72         * modules/popcount: Renamed module/count-one-bits.
73         * modules/popcount-tests: Renamed module/count-one-bits-tests.
74         * tests/test-popcount.c: Renamed tests/test-count-one-bits.c.
75
76 2007-07-23  Ben Pfaff  <blp@gnu.org>
77
78         * lib/popcount.h (popcount32): Reduce size of constants, to allow
79         better code generation, and add U to large constants to avoid
80         warnings, in non-GCC case.
81         Suggested by Bruno Haible.
82
83 2007-07-23  Ben Pfaff  <blp@gnu.org>
84
85         * lib/popcount.h: Use verify_true instead of if...abort.
86         * modules/popcount: Depend on verify module.
87         Suggested by Jim Meyering.
88
89 2007-07-23  Bruno Haible  <bruno@clisp.org>
90
91         * gnulib-tool (func_import): Create a .cvsignore file also when the
92         directory is not yet in CVS but the toplevel directory is. When
93         creating a .cvsignore file, add ".deps" and ".dirstamp" to it.
94         Reported by Karl Berry.
95
96 2007-07-22  Ben Pfaff  <blp@gnu.org>
97
98         * lib/popcount.h: Use faster, branchless algorithm for non-GCC
99         case.
100         Suggested by Eric Blake.
101
102 2007-07-22  Ben Pfaff  <blp@gnu.org>
103
104         New module: popcount.
105         * MODULES.html.sh: Add popcount.
106         * modules/popcount: New file.
107         * modules/popcount-tests: New file.
108         * tests/test-popcount.c: New file.
109         * lib/popcount.h: New file.
110         * m4/popcount.m4: New file.
111
112 2007-07-22  Paul Eggert  <eggert@cs.ucla.edu>
113
114         * build-aux/announce-gen: Update to GPLv3.
115
116         * build-aux/config.guess: Update from config.
117
118 2007-07-21  Bruno Haible  <bruno@clisp.org>
119
120         * lib/error.c (_) [ENABLE_NLS]: Define to gettext.
121         * lib/verror.c (_) [ENABLE_NLS]: Likewise.
122
123 2007-07-20  Jim Meyering  <jim@meyering.net>
124
125         * check-module: Diagnose a self-dependency.
126
127 2007-07-19  Bruno Haible  <bruno@clisp.org>
128
129         * gnulib-tool (func_import): Don't abort if pobase or po_domain is
130         empty.
131         Reported by Eric Blake.
132
133 2007-07-18  Bruno Haible  <bruno@clisp.org>
134
135         * gnulib-tool: New options --po-base, --po-domain.
136         (func_usage): Document them.
137         (pobase, po_domain): New variables.
138         (func_emit_lib_Makefile_am): Augment AM_CPPFLAGS, defining
139         DEFAULT_TEXT_DOMAIN.
140         (func_emit_po_Makevars, func_emit_po_POTFILES_in): New functions.
141         (func_import): Consider pobase and po_domain. Create a po/ directory.
142         (func_create_testdir): Set pobase and po_domain to empty.
143         * build-aux/po/Makefile.in.in: New file, from GNU gettext 0.16.1.
144         * build-aux/po/remove-potcdate.sin: New file, from GNU gettext 0.16.1.
145
146 2007-07-18  Bruno Haible  <bruno@clisp.org>
147
148         * gnulib-tool (func_get_automake_snippet): Synthesize also an
149         EXTRA_DIST augmentation for files in build-aux/.
150
151 2007-07-16  Bruno Haible  <bruno@clisp.org>
152
153         * modules/lseek (License): Use the synonymous term "LGPLv2+".
154         * modules/getdelim (License): Likewise.
155
156 2007-07-16  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
157
158         * modules/arpa_inet (License): Use the synonymous term LGPLv2+.
159         * modules/d-type (License): Likewise.
160         * modules/extensions (License): Likewise.
161         * modules/fnmatch (License): Likewise.
162         * modules/fseeko (License): Likewise.
163         * modules/getaddrinfo (License): Likewise.
164         * modules/getline (License): Likewise.
165         * modules/getlogin_r (License): Likewise.
166         * modules/getpass (License): Likewise.
167         * modules/gettimeofday (License): Likewise.
168         * modules/glob (License): Likewise.
169         * modules/inet_ntop (License): Likewise.
170         * modules/malloc (License): Likewise.
171         * modules/malloca (License): Likewise.
172         * modules/memmem (License): Likewise.
173         * modules/mempcpy (License): Likewise.
174         * modules/memset (License): Likewise.
175         * modules/minmax (License): Likewise.
176         * modules/mktime (License): Likewise.
177         * modules/netinet_in (License): Likewise.
178         * modules/pathmax (License): Likewise.
179         * modules/poll (License): Likewise.
180         * modules/regex (License): Likewise.
181         * modules/snprintf (License): Likewise.
182         * modules/stdbool (License): Likewise.
183         * modules/stdint (License): Likewise.
184         * modules/stdio (License): Likewise.
185         * modules/strcase (License): Likewise.
186         * modules/strcasestr (License): Likewise.
187         * modules/strdup (License): Likewise.
188         * modules/string (License): Likewise.
189         * modules/strndup (License): Likewise.
190         * modules/strnlen (License): Likewise.
191         * modules/strpbrk (License): Likewise.
192         * modules/strptime (License): Likewise.
193         * modules/strsep (License): Likewise.
194         * modules/sys_select (License): Likewise.
195         * modules/sys_socket (License): Likewise.
196         * modules/sys_stat (License): Likewise.
197         * modules/sys_time (License): Likewise.
198         * modules/time (License): Likewise.
199         * modules/time_r (License): Likewise.
200         * modules/timegm (License): Likewise.
201         * modules/unistd (License): Likewise.
202         * modules/vsnprintf (License): Likewise.
203         * modules/wctype (License): Likewise.
204
205 2007-07-16  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
206
207         * modules/argz (License): LGPLv2+.
208
209 2007-07-15  Karl Berry  <karl@gnu.org>
210
211         * doc/gnulib.texi: revise node structure per new fdl.texi.
212
213 2007-07-14  Bruno Haible  <bruno@clisp.org>
214
215         * lib/uniname/gen-uninames.lisp (main): Emit a "do not edit" line to
216         the output file.
217         * lib/uniname/uninames.h: Regenerated.
218
219 2007-07-14  Karl Berry  <karl@gnu.org>
220
221         * doc/*gpl*.texi, doc/fdl.texi: new versions, consistently
222         omitting sectioning and index commands.
223
224 2007-07-13  Bruno Haible  <bruno@clisp.org>
225
226         New gnulib-tool option --more-symlinks.
227         * gnulib-tool (func_usage): Document --more-symlinks.
228         (do_copyrights): New variable.
229         Recognize option --more-symlinks.
230         (func_import): Don't add a copyright notice transform to
231         sed_transform_lib_file if do_copyrights is empty.
232
233 2007-07-13  Bruno Haible  <bruno@clisp.org>
234
235         * lib/vasnprintf.c (decimal_point_char): Define also if
236         (NEED_PRINTF_LONG_DOUBLE || NEED_PRINTF_INFINITE_DOUBLE)
237         && !NEED_PRINTF_DIRECTIVE_A.
238         Reported by Clemens Koller <clemens.koller@anagramm.de> via
239         Gary V. Vaughan <gary@gnu.org>.
240
241 2007-07-13  Paul Eggert  <eggert@cs.ucla.edu>
242
243         * lib/inttypes_.h: Undo previous change, since it was fixed
244         in a different way in the 2007-07-02 fix to m4/inttypes.m4.
245
246 2007-07-13  Bruno Haible  <bruno@clisp.org>
247
248         * lib/stdint_.h: Fix typo: _GL_JUST_INCLUDE_SYSTEM_INTTYPES_H was
249         misspelled as _GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H.
250
251 2007-07-13  Jim Meyering  <jim@meyering.net>
252
253         df: Don't fail for Tru64's "file-on-file mount".
254         * m4/fsusage.m4 (gl_FSUSAGE): Reject Tru64's buggy statvfs,
255         so we fall through and use statfs instead.  Details here:
256         <http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/10878>
257         Reported by Albert Chin.
258
259 2007-07-13  Bruno Haible  <bruno@clisp.org>
260
261         * modules/alloca-opt (License): Use the synonymous term "LGPLv2+".
262         * modules/configmake (License): Likewise.
263         * modules/gettext (License): Likewise.
264         * modules/gettext-h (License): Likewise.
265         * modules/include_next (License): Likewise.
266         * modules/link-warning (License): Likewise.
267         * modules/localcharset (License): Likewise.
268         * modules/localename (License): Likewise.
269         * modules/lock (License): Likewise.
270         * modules/relocatable-lib-lgpl (License): Likewise.
271         * modules/size_max (License): Likewise.
272         * modules/vasnprintf (License): Likewise.
273         * modules/wchar (License): Likewise.
274         * modules/xsize (License): Likewise.
275
276 2007-07-13  Bruno Haible  <bruno@clisp.org>
277
278         * gnulib-tool (func_import): Treat LGPLv2 as synonymous to LGPL.
279         (func_create_testdir): Handle copying terms "GPLv2+" and "LGPLv2+".
280
281 2007-07-12  Bruno Haible  <bruno@clisp.org>
282
283         * doc/gnulib-intro.texi (Copyright): Clarify the license abbreviations
284         in the modules files.
285
286 2007-07-11  Karl Berry  <karl@gnu.org>
287
288         * MODULES.html.sh (func_module): use
289          sed -e '\|^'"${includefile}"'$|d'
290          instead of /.../d, to avoid errors on $includefile's containing /.
291
292 2007-07-10  Sergey Poznyakoff  <gray@gnu.org.ua>
293
294         * gnulib-tool (func_import): Avoid duplication of --avoid
295         statements
296         (func_dest_tmpfilename,func_create_testdir): Translate `-' in file
297         names to `_' in variable names.
298
299 2007-07-10  Eric Blake  <ebb9@byu.net>
300
301         * lib/version-etc.c (version_etc_va): Default to GPLv3+.
302         * NEWS: Document this change.
303
304 2007-07-08  Bruno Haible  <bruno@clisp.org>
305
306         Update to Unicode 5.0.
307         * lib/uniwidth/width.c (nonspacing_table_data): Add U+00AD,
308         U+0350..U+035F, U+05A2, U+05BA, U+05C5, U+05C7, U+0600..U+0603,
309         U+0610..U+0615, U+0656..U+065E, U+07EB..U+07F3, U+0A01, U+0AE2..U+0AE3,
310         U+0CBC. Remove U+0CBF, U+0CC6. Add U+0CE2..U+0CE3, U+135F,
311         U+17B4..U+17B5, U+17DD. Remove U+180E. Add U+1920..U+1922,
312         U+1927..U+192B, U+1932, U+1939..U+193B, U+1A17..U+1A18, U+1B00..U+1B03,
313         U+1B34, U+1B36..U+1B3A, U+1B3C, U+1B42, U+1B6B..U+1B73, U+1DC0..U+1DCA,
314         U+1DFE..U+1DFF, U+20EB..U+20EF, U+A802, U+A806, U+A80B, U+A825..U+A826,
315         U+10A01..U+10A03, U+10A05..U+10A06, U+10A0C..U+10A0F, U+10A38..U+10A3A,
316         U+10A3F, U+1D242..U+1D244.
317         (nonspacing_table_ind): Update.
318         (uc_width): Assign width 0 to U+E0100..U+E01EF. Assign width 1 to
319         U+4DC0..U+4DFF. Assign width 2 to U+2329..U+232A, U+FE10..U+FE1F.
320
321 2007-07-08  Bruno Haible  <bruno@clisp.org>
322
323         Update to Unicode 5.0.
324         * lib/uniname/gen-uninames.lisp (main): Add the range 0x12xxx to the
325         code transform. Extend the name index field of unicode_name_to_code and
326         unicode_code_to_name from 16 to 24 bits.
327         * lib/uniname/uniname.c (unicode_character_name,
328         unicode_name_character): Add the range 0x12xxx to the code transform.
329         * lib/uniname/uninames.h: Regenerated.
330         * tests/uniname/UnicodeDataNames.txt: Update to Unicode 5.0.
331
332 2007-07-07  Bruno Haible  <bruno@clisp.org>
333
334         * modules/wcwidth-tests: New file.
335         * tests/test-wcwidth.c: New file.
336
337         Work around MacOS X wcwidth() bug.
338         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Test against MacOS X 10.3 bug.
339         * lib/wcwidth.c: Include localcharset.h, streq.h, uniwidth.h.
340         (rpl_wcwidth): Special-case the UTF-8 locales. Fall back to the
341         original wcwidth in non-UTF-8 locales.
342         * modules/wcwidth (Depends-on): Add localcharset, streq,
343         uniwidth/width.
344         * doc/functions/wcwidth.texi: Update.
345
346 2007-07-07  Bruno Haible  <bruno@clisp.org>
347
348         * lib/wchar_.h: Include the GL_LINK_WARNING macro.
349         (wcwidth): New declaration.
350         * m4/wchar.m4 (gl_WCHAR_MODULE_INDICATOR, gl_WCHAR_H_DEFAULTS): New
351         macros.
352         (gl_WCHAR_H): Require gl_WCHAR_H_DEFAULTS. Don't set WCHAR_H to empty
353         here. Prepare for creating <wchar.h> unconditionally.
354         * modules/wchar (Depends-on): Add link-warning.
355         (Makefile.am): Substitute also GNULIB_WCWIDTH, HAVE_DECL_WCWIDTH,
356         REPLACE_WCWIDTH, and GL_LINK_WARNING.
357         * lib/wcwidth.h: Remove file.
358         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Require gl_WCHAR_H_DEFAULTS. Set
359         HAVE_DECL_WCWIDTH, REPLACE_WCWIDTH, WCHAR_H.
360         * modules/wcwidth (Files): Remove lib/wcwidth.h.
361         (configure.ac): Invoke gl_WCHAR_MODULE_INDICATOR.
362         (Include): Replace wcwidth.h with <wchar.h>.
363         * lib/wcwidth.c: Include <wchar.h> instead of wcwidth.h.
364         * lib/mbchar.h: Don't include wcwidth.h.
365         * lib/mbswidth.c: Likewise.
366         * NEWS: Mention the change.
367
368 2007-07-07  Bruno Haible  <bruno@clisp.org>
369
370         * lib/wcwidth.c: New file, extracted from lib/wcwidth.h.
371         * lib/wcwidth.h: Don't include wctype.h. Replace inline function
372         definition with an external declaration.
373         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Use wcwidth.c when wcwidth is not
374         defined as a function. Remove AC_C_INLINE requirement.
375         * modules/wcwidth (Files): Add lib/wcwidth.c.
376         (Makefile.am): Remove redundant statement.
377
378 2007-07-07  Bruno Haible  <bruno@clisp.org>
379
380         * MODULES.html.sh (Unicode string functions): Add the new modules.
381
382         * tests/uniwidth/test-u32-strwidth.c: New file.
383         * modules/uniwidth/u32-strwidth-tests: New file.
384
385         * lib/uniwidth/u32-strwidth.c: New file.
386         * modules/uniwidth/u32-strwidth: New file.
387
388         * tests/uniwidth/test-u16-strwidth.c: New file.
389         * modules/uniwidth/u16-strwidth-tests: New file.
390
391         * lib/uniwidth/u16-strwidth.c: New file.
392         * modules/uniwidth/u16-strwidth: New file.
393
394         * tests/uniwidth/test-u8-strwidth.c: New file.
395         * modules/uniwidth/u8-strwidth-tests: New file.
396
397         * lib/uniwidth/u8-strwidth.c: New file.
398         * modules/uniwidth/u8-strwidth: New file.
399
400         * tests/uniwidth/test-u32-width.c: New file.
401         * modules/uniwidth/u32-width-tests: New file.
402
403         * lib/uniwidth/u32-width.c: New file.
404         * modules/uniwidth/u32-width: New file.
405
406         * tests/uniwidth/test-u16-width.c: New file.
407         * modules/uniwidth/u16-width-tests: New file.
408
409         * lib/uniwidth/u16-width.c: New file.
410         * modules/uniwidth/u16-width: New file.
411
412         * tests/uniwidth/test-u8-width.c: New file.
413         * modules/uniwidth/u8-width-tests: New file.
414
415         * lib/uniwidth/u8-width.c: New file.
416         * modules/uniwidth/u8-width: New file.
417
418         * tests/uniwidth/test-uc_width.c: New file.
419         * modules/uniwidth/width-tests: New file.
420
421         * lib/uniwidth/width.c: New file, from GNU libiconv.
422         * lib/uniwidth/cjk.h: New file, from GNU libiconv.
423         * modules/uniwidth/width: New file.
424
425         * lib/uniwidth.h: New file, from GNU libiconv.
426         * modules/uniwidth/base: New file.
427
428 2007-07-07  Bruno Haible  <bruno@clisp.org>
429
430         * lib/uniname.h: New file, from GNU gettext.
431         * lib/uniname/gen-uninames.lisp: New file, from GNU gettext.
432         * lib/uniname/uninames.h: New file, from GNU gettext.
433         * lib/uniname/uniname.c: New file, from GNU gettext.
434         * tests/uniname/test-uninames.sh: New file.
435         * tests/uniname/test-uninames.c: New file, from GNU gettext.
436         * tests/uniname/UnicodeDataNames.txt: New file, from GNU gettext.
437         * modules/uniname/base: New file.
438         * modules/uniname/uniname: New file.
439         * modules/uniname/uniname-tests: New file.
440         * MODULES.html.sh (Unicode string functions): Add the new modules.
441
442 2007-07-06  Bruno Haible  <bruno@clisp.org>
443
444         * doc/Makefile (TEXI2HTML): Specify a --reference-limit.
445
446 2007-07-06  Bruno Haible  <bruno@clisp.org>
447
448         * lib/sys_time_.h: Use a recursion-safe inclusion guard rather than
449         a split double-inclusion guard. Needed for cygwin, where <sys/time.h>
450         includes <cygwin/sys_time.h> which includes <sys/select.h> which
451         include <sys/time.h>.
452         Reported by Eric Blake.
453
454 2007-07-06  Eric Blake  <ebb9@byu.net>
455
456         Fix testing canonicalize on cygwin.
457         * modules/canonicalize-lgpl-tests (test_canonicalize_lgpl_LDADD):
458         Revert patch from 2007-06-19.
459         * tests/test-canonicalize-lgpl.c (main): Instead, skip test when
460         canonicalize module is also in use.
461         * tests/test-canonicalize.c: New file.
462         * tests/test-canonicalize.sh: Likewise.
463         * modules/canonicalize-tests: Likewise.
464
465 2007-07-06  Jim Meyering  <jim@meyering.net>
466
467         * lib/getugroups.c (getugroups): Detect getgrent failure.
468         Adjust comment to reflect reality: this function may return -1.
469
470 2007-07-05  Sergey Poznyakoff  <gray@gnu.org.ua>
471
472         * build-aux/bootstrap (TP_URL,get_translations): Update to use
473         the new TP address.
474         (usage): Fix typo
475         (gnulib_mk): New variable.
476
477 2007-07-05  Jim Meyering  <jim@meyering.net>
478
479         Don't let endgrent clobber errno, no matter how improbable.
480         * lib/getugroups.c (getugroups): Save and restore errno around
481         endgrent call.
482
483         Close the group DB even when failing with 2^31 or more members.
484         * lib/getugroups.c (getugroups): Don't return without calling endgrent.
485
486 2007-07-04  Jim Meyering  <jim@meyering.net>
487
488         * lib/getugroups.h: New file.
489         * lib/getugroups.c: Include "getugroups.h".
490         Remove uses of "register" keyword.
491         Move local variable, "cp", down into scope where used.
492         Give "username" parameter the "const" attribute.
493         * modules/getugroups (Files): Add lib/getugroups.h
494
495 2007-07-04  Karl Berry  <karl@gnu.org>
496
497         * MODULES.html.sh (func_all_modules): Complete rename of
498         gpl/lgpl to gpl-2.0 and lgpl-2.1, and add gpl-3.0.
499
500 2007-07-02  Bruno Haible  <bruno@clisp.org>
501
502         * m4/inttypes.m4 (gl_INTTYPES_H): Define __STDC_LIMIT_MACROS in C++
503         mode, when inttypes.h comes from gnulib.
504         Reported by Joel E. Denny <jdenny@ces.clemson.edu>.
505
506 2007-07-02  Simon Josefsson  <simon@josefsson.org>
507
508         * NEWS: Mention lgpl module name change.
509
510         * modules/lgpl-2.1: Renamed from lgpl.
511
512         * NEWS: Mention gpl module name change.
513
514         * modules/gpl-3.0: New file, based on gpl-2.0.
515
516         * modules/gpl-2.0: Renamed from gpl.
517
518         * modules/gpl: Fix filename, doc/gpl.texi is now found at
519         doc/gpl-2.0.texi.
520
521 2007-07-02  Paul Eggert  <eggert@cs.ucla.edu>
522
523         * lib/inttypes_.h [defined __cplusplus&&!defined __STDC_LIMIT_MACROS]:
524         #define __STDC_LIMIT_MACROS temporarily while including
525         <stdint.h>, so that __STDC_LIMIT_MACROS is defined.
526         Problem reported by Joel E. Denny in
527         <http://lists.gnu.org/archive/html/bug-gnulib/2007-07/msg00008.html>.
528
529 2007-07-01  Bruno Haible  <bruno@clisp.org>
530
531         * lib/unistdio.h: New file.
532         * lib/unistdio/u-asnprintf.h: New file.
533         * lib/unistdio/u-asprintf.h: New file.
534         * lib/unistdio/u-printf-args.c: New file.
535         * lib/unistdio/u-printf-args.h: New file.
536         * lib/unistdio/u-printf-parse.h: New file.
537         * lib/unistdio/u-snprintf.h: New file.
538         * lib/unistdio/u-sprintf.h: New file.
539         * lib/unistdio/u-vasprintf.h: New file.
540         * lib/unistdio/u-vsnprintf.h: New file.
541         * lib/unistdio/u-vsprintf.h: New file.
542         * lib/unistdio/ulc-asnprintf.c: New file.
543         * lib/unistdio/ulc-asprintf.c: New file.
544         * lib/unistdio/ulc-fprintf.c: New file, based on lib/fprintf.c.
545         * lib/unistdio/ulc-printf-parse.c: New file.
546         * lib/unistdio/ulc-snprintf.c: New file.
547         * lib/unistdio/ulc-sprintf.c: New file.
548         * lib/unistdio/ulc-vasnprintf.c: New file.
549         * lib/unistdio/ulc-vasprintf.c: New file.
550         * lib/unistdio/ulc-vfprintf.c: New file, based on lib/vfprintf.c.
551         * lib/unistdio/ulc-vsnprintf.c: New file.
552         * lib/unistdio/ulc-vsprintf.c: New file.
553         * lib/unistdio/u8-asnprintf.c: New file.
554         * lib/unistdio/u8-asprintf.c: New file.
555         * lib/unistdio/u8-printf-parse.c: New file.
556         * lib/unistdio/u8-snprintf.c: New file.
557         * lib/unistdio/u8-sprintf.c: New file.
558         * lib/unistdio/u8-vasnprintf.c: New file.
559         * lib/unistdio/u8-vasprintf.c: New file.
560         * lib/unistdio/u8-vsnprintf.c: New file.
561         * lib/unistdio/u8-vsprintf.c: New file.
562         * lib/unistdio/u8-u8-asnprintf.c: New file.
563         * lib/unistdio/u8-u8-asprintf.c: New file.
564         * lib/unistdio/u8-u8-snprintf.c: New file.
565         * lib/unistdio/u8-u8-sprintf.c: New file.
566         * lib/unistdio/u8-u8-vasnprintf.c: New file.
567         * lib/unistdio/u8-u8-vasprintf.c: New file.
568         * lib/unistdio/u8-u8-vsnprintf.c: New file.
569         * lib/unistdio/u8-u8-vsprintf.c: New file.
570         * lib/unistdio/u16-asnprintf.c: New file.
571         * lib/unistdio/u16-asprintf.c: New file.
572         * lib/unistdio/u16-printf-parse.c: New file.
573         * lib/unistdio/u16-snprintf.c: New file.
574         * lib/unistdio/u16-sprintf.c: New file.
575         * lib/unistdio/u16-vasnprintf.c: New file.
576         * lib/unistdio/u16-vasprintf.c: New file.
577         * lib/unistdio/u16-vsnprintf.c: New file.
578         * lib/unistdio/u16-vsprintf.c: New file.
579         * lib/unistdio/u16-u16-asnprintf.c: New file.
580         * lib/unistdio/u16-u16-asprintf.c: New file.
581         * lib/unistdio/u16-u16-snprintf.c: New file.
582         * lib/unistdio/u16-u16-sprintf.c: New file.
583         * lib/unistdio/u16-u16-vasnprintf.c: New file.
584         * lib/unistdio/u16-u16-vasprintf.c: New file.
585         * lib/unistdio/u16-u16-vsnprintf.c: New file.
586         * lib/unistdio/u16-u16-vsprintf.c: New file.
587         * lib/unistdio/u32-asnprintf.c: New file.
588         * lib/unistdio/u32-asprintf.c: New file.
589         * lib/unistdio/u32-printf-parse.c: New file.
590         * lib/unistdio/u32-snprintf.c: New file.
591         * lib/unistdio/u32-sprintf.c: New file.
592         * lib/unistdio/u32-vasnprintf.c: New file.
593         * lib/unistdio/u32-vasprintf.c: New file.
594         * lib/unistdio/u32-vsnprintf.c: New file.
595         * lib/unistdio/u32-vsprintf.c: New file.
596         * lib/unistdio/u32-u32-asnprintf.c: New file.
597         * lib/unistdio/u32-u32-asprintf.c: New file.
598         * lib/unistdio/u32-u32-snprintf.c: New file.
599         * lib/unistdio/u32-u32-sprintf.c: New file.
600         * lib/unistdio/u32-u32-vasnprintf.c: New file.
601         * lib/unistdio/u32-u32-vasprintf.c: New file.
602         * lib/unistdio/u32-u32-vsnprintf.c: New file.
603         * lib/unistdio/u32-u32-vsprintf.c: New file.
604         * tests/unistdio/test-ulc-asnprintf1.c: New file.
605         * tests/unistdio/test-ulc-asnprintf1.h: New file.
606         * tests/unistdio/test-ulc-printf1.h: New file.
607         * tests/unistdio/test-ulc-vasnprintf1.c: New file.
608         * tests/unistdio/test-ulc-vasnprintf2.c: New file.
609         * tests/unistdio/test-ulc-vasnprintf2.sh: New file.
610         * tests/unistdio/test-ulc-vasnprintf3.c: New file.
611         * tests/unistdio/test-ulc-vasnprintf3.sh: New file.
612         * tests/unistdio/test-ulc-vasprintf1.c: New file.
613         * tests/unistdio/test-ulc-vsnprintf1.c: New file.
614         * tests/unistdio/test-ulc-vsprintf1.c: New file.
615         * tests/unistdio/test-u8-asnprintf1.c: New file.
616         * tests/unistdio/test-u8-asnprintf1.h: New file.
617         * tests/unistdio/test-u8-printf1.h: New file.
618         * tests/unistdio/test-u8-vasnprintf1.c: New file.
619         * tests/unistdio/test-u8-vasnprintf2.c: New file.
620         * tests/unistdio/test-u8-vasnprintf2.sh: New file.
621         * tests/unistdio/test-u8-vasnprintf3.c: New file.
622         * tests/unistdio/test-u8-vasnprintf3.sh: New file.
623         * tests/unistdio/test-u8-vasprintf1.c: New file.
624         * tests/unistdio/test-u8-vsnprintf1.c: New file.
625         * tests/unistdio/test-u8-vsprintf1.c: New file.
626         * tests/unistdio/test-u16-asnprintf1.c: New file.
627         * tests/unistdio/test-u16-asnprintf1.h: New file.
628         * tests/unistdio/test-u16-printf1.h: New file.
629         * tests/unistdio/test-u16-vasnprintf1.c: New file.
630         * tests/unistdio/test-u16-vasnprintf2.c: New file.
631         * tests/unistdio/test-u16-vasnprintf2.sh: New file.
632         * tests/unistdio/test-u16-vasnprintf3.c: New file.
633         * tests/unistdio/test-u16-vasnprintf3.sh: New file.
634         * tests/unistdio/test-u16-vasprintf1.c: New file.
635         * tests/unistdio/test-u16-vsnprintf1.c: New file.
636         * tests/unistdio/test-u16-vsprintf1.c: New file.
637         * tests/unistdio/test-u32-asnprintf1.c: New file.
638         * tests/unistdio/test-u32-asnprintf1.h: New file.
639         * tests/unistdio/test-u32-printf1.h: New file.
640         * tests/unistdio/test-u32-vasnprintf1.c: New file.
641         * tests/unistdio/test-u32-vasnprintf2.c: New file.
642         * tests/unistdio/test-u32-vasnprintf2.sh: New file.
643         * tests/unistdio/test-u32-vasnprintf3.c: New file.
644         * tests/unistdio/test-u32-vasnprintf3.sh: New file.
645         * tests/unistdio/test-u32-vasprintf1.c: New file.
646         * tests/unistdio/test-u32-vsnprintf1.c: New file.
647         * tests/unistdio/test-u32-vsprintf1.c: New file.
648         * modules/unistdio/base: New file.
649         * modules/unistdio/u-printf-args: New file.
650         * modules/unistdio/ulc-asnprintf: New file.
651         * modules/unistdio/ulc-asprintf: New file.
652         * modules/unistdio/ulc-fprintf: New file.
653         * modules/unistdio/ulc-printf-parse: New file.
654         * modules/unistdio/ulc-snprintf: New file.
655         * modules/unistdio/ulc-sprintf: New file.
656         * modules/unistdio/ulc-vasnprintf: New file.
657         * modules/unistdio/ulc-vasprintf: New file.
658         * modules/unistdio/ulc-vfprintf: New file.
659         * modules/unistdio/ulc-vsnprintf: New file.
660         * modules/unistdio/ulc-vsprintf: New file.
661         * modules/unistdio/u8-asnprintf: New file.
662         * modules/unistdio/u8-asprintf: New file.
663         * modules/unistdio/u8-printf-parse: New file.
664         * modules/unistdio/u8-snprintf: New file.
665         * modules/unistdio/u8-sprintf: New file.
666         * modules/unistdio/u8-vasnprintf: New file.
667         * modules/unistdio/u8-vasprintf: New file.
668         * modules/unistdio/u8-vsnprintf: New file.
669         * modules/unistdio/u8-vsprintf: New file.
670         * modules/unistdio/u8-u8-asnprintf: New file.
671         * modules/unistdio/u8-u8-asprintf: New file.
672         * modules/unistdio/u8-u8-snprintf: New file.
673         * modules/unistdio/u8-u8-sprintf: New file.
674         * modules/unistdio/u8-u8-vasnprintf: New file.
675         * modules/unistdio/u8-u8-vasprintf: New file.
676         * modules/unistdio/u8-u8-vsnprintf: New file.
677         * modules/unistdio/u8-u8-vsprintf: New file.
678         * modules/unistdio/u16-asnprintf: New file.
679         * modules/unistdio/u16-asprintf: New file.
680         * modules/unistdio/u16-printf-parse: New file.
681         * modules/unistdio/u16-snprintf: New file.
682         * modules/unistdio/u16-sprintf: New file.
683         * modules/unistdio/u16-vasnprintf: New file.
684         * modules/unistdio/u16-vasprintf: New file.
685         * modules/unistdio/u16-vsnprintf: New file.
686         * modules/unistdio/u16-vsprintf: New file.
687         * modules/unistdio/u16-u16-asnprintf: New file.
688         * modules/unistdio/u16-u16-asprintf: New file.
689         * modules/unistdio/u16-u16-snprintf: New file.
690         * modules/unistdio/u16-u16-sprintf: New file.
691         * modules/unistdio/u16-u16-vasnprintf: New file.
692         * modules/unistdio/u16-u16-vasprintf: New file.
693         * modules/unistdio/u16-u16-vsnprintf: New file.
694         * modules/unistdio/u16-u16-vsprintf: New file.
695         * modules/unistdio/u32-asnprintf: New file.
696         * modules/unistdio/u32-asprintf: New file.
697         * modules/unistdio/u32-printf-parse: New file.
698         * modules/unistdio/u32-snprintf: New file.
699         * modules/unistdio/u32-sprintf: New file.
700         * modules/unistdio/u32-vasnprintf: New file.
701         * modules/unistdio/u32-vasprintf: New file.
702         * modules/unistdio/u32-vsnprintf: New file.
703         * modules/unistdio/u32-vsprintf: New file.
704         * modules/unistdio/u32-u32-asnprintf: New file.
705         * modules/unistdio/u32-u32-asprintf: New file.
706         * modules/unistdio/u32-u32-snprintf: New file.
707         * modules/unistdio/u32-u32-sprintf: New file.
708         * modules/unistdio/u32-u32-vasnprintf: New file.
709         * modules/unistdio/u32-u32-vasprintf: New file.
710         * modules/unistdio/u32-u32-vsnprintf: New file.
711         * modules/unistdio/u32-u32-vsprintf: New file.
712         * modules/unistdio/ulc-asnprintf-tests: New file.
713         * modules/unistdio/ulc-vasnprintf-tests: New file.
714         * modules/unistdio/ulc-vasprintf-tests: New file.
715         * modules/unistdio/ulc-vsnprintf-tests: New file.
716         * modules/unistdio/ulc-vsprintf-tests: New file.
717         * modules/unistdio/u8-asnprintf-tests: New file.
718         * modules/unistdio/u8-vasnprintf-tests: New file.
719         * modules/unistdio/u8-vasprintf-tests: New file.
720         * modules/unistdio/u8-vsnprintf-tests: New file.
721         * modules/unistdio/u8-vsprintf-tests: New file.
722         * modules/unistdio/u16-asnprintf-tests: New file.
723         * modules/unistdio/u16-vasnprintf-tests: New file.
724         * modules/unistdio/u16-vasprintf-tests: New file.
725         * modules/unistdio/u16-vsnprintf-tests: New file.
726         * modules/unistdio/u16-vsprintf-tests: New file.
727         * modules/unistdio/u32-asnprintf-tests: New file.
728         * modules/unistdio/u32-vasnprintf-tests: New file.
729         * modules/unistdio/u32-vasprintf-tests: New file.
730         * modules/unistdio/u32-vsnprintf-tests: New file.
731         * modules/unistdio/u32-vsprintf-tests: New file.
732         * MODULES.html.sh (Unicode string functions): Add the new modules.
733
734 2007-07-01  Bruno Haible  <bruno@clisp.org>
735
736         * lib/sprintf.c (sprintf): Limit the available length estimation,
737         to avoid address wraparound.
738         * lib/vsprintf.c (vsprintf): Likewise.
739         * modules/sprintf-posix (Dependencies): Add stdint.
740         * modules/vsprintf-posix (Dependencies): Likewise.
741
742 2007-07-01  Bruno Haible  <bruno@clisp.org>
743
744         * gnulib-tool (self_abspathname): Determine PATH_SEPARATOR and handle
745         Windows PATH as well. Conservative double-quoting. Comments.
746
747 2007-07-01  Bruno Haible  <bruno@clisp.org>
748             Eric Blake  <ebb9@byu.net>
749             Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
750
751         * gnulib-tool (self_abspathname): Fix algorithm to cope with
752         empty components in $PATH, denoting '.'.
753
754 2007-07-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
755
756         * gnulib-tool: Fix indentation.
757         (func_create_megatestdir): Likewise.
758         Report by Bruno Haible.
759
760 2007-06-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
761
762         Sync from Automake.
763         * build-aux/gnupload: Fix shell portability issues with for loops.
764         Report by Karl Berry.
765
766 2007-06-29  Simon Josefsson  <simon@josefsson.org>
767
768         * build-aux/maint.mk (POURL): Use translationproject.org.
769
770 2007-06-27  Simon Josefsson  <simon@josefsson.org>
771             Bruno Haible  <bruno@clisp.org>
772
773         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Require gl_HEADER_SYS_SOCKET
774         before using HAVE_WS2TCPIP_H. Check for gai_strerror through an
775         explicit link test, rather than AC_REPLACE_FUNCS - for mingw.
776         (gl_PREREQ_GETADDRINFO): Require gl_HEADER_SYS_SOCKET before using
777         HAVE_SYS_SOCKET_H and HAVE_WS2TCPIP_H.
778
779 2007-06-27  Bruno Haible  <bruno@clisp.org>
780
781         * build-aux/config.rpath: Upgrade to libtool-1.5.24.
782         * build-aux/config.libpath: Upgrade to libtool-1.5.24.
783
784 2007-06-26  Karl Berry  <karl@gnu.org>
785
786         * MODULES.html.sh: remove xreadlink-with-size.
787
788 2007-06-23  Paul Eggert  <eggert@cs.ucla.edu>
789
790         * lib/time_.h: Port to Solaris 8 with Sun Studio 11, using a
791         method that I hope also handles the double-include problem noted
792         by Bruno Haible in
793         <http://lists.gnu.org/archive/html/bug-gnulib/2007-05/msg00186.html>.
794
795 2007-06-23  Bruno Haible  <bruno@clisp.org>
796
797         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
798         Don't let the 'mostlyclean' target fail if the last subdirectory could
799         not be removed.
800         Reported by Karl Berry.
801
802 2007-06-23  Bruno Haible  <bruno@clisp.org>
803
804         * gnulib-tool (echo): Add a speedier workaround for ksh.
805         * tests/test-echo.sh: Likewise.
806
807 2007-06-23  Bruno Haible  <bruno@clisp.org>
808
809         * gnulib-tool (echo): Add workarounds also for bash versions < 2.04.
810         * tests/test-echo.sh: Likewise.
811
812 2007-06-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
813
814         * gnulib-tool (IFS): Initialize early, so we don't set it to
815         empty later.
816         (self_abspathname): Rewrite algorithm to set it, reindent.
817         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am)
818         (func_create_megatestdir): Merge some sed scripts.
819
820 2007-06-23  Paul Eggert  <eggert@cs.ucla.edu>
821
822         * m4/include_next.m4 (gl_CHECK_NEXT_HEADERS): Check some typos
823         exposed by Sun Studio 11 cc on Solaris 8.
824
825 2007-06-22  Bruno Haible  <bruno@clisp.org>
826
827         * gnulib-tool (echo): Ensure the echo primitive does not interpret
828         backslashes.
829         * tests/test-echo.sh: New file.
830
831 2007-06-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
832
833         * gnulib-tool (func_add_or_update, func_create_testdir): Do not
834         simplify `sed_replace_build_aux' scripts, they are portable but
835         echoing them with `echo' is not.
836         Report and analysis by Fernando Ferreira <fernando.prog@netcabo.pt>.
837
838 2007-06-21  Karl Berry  <karl@gnu.org>
839
840         * config/srclist.txt: guess we can't handle the licenses via
841         srclist at the moment.
842
843 2007-06-21  Paul Eggert  <eggert@cs.ucla.edu>
844
845         * MODULES.html.sh: Add include_next.
846         * modules/include_next: New file.
847
848 2007-06-20  Paul Eggert  <eggert@cs.ucla.edu>
849
850         * m4/include_next.m4 (gl_INCLUDE_NEXT): Define and AC_SUBST
851         INCLUDE_NEXT.
852         (gl_CHECK_NEXT_HEADERS): New macro.
853         * m4/fcntl_h.m4 (gl_FCNTL_H): use gl_CHECK_NEXT_HEADERS instead of
854         the obsolescent gl_ABSOLUTE_HEADER.
855         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Likewise.
856         * m4/float_h.m4 (gl_FLOAT_H): Likewise.
857         * m4/iconv_h.m4 (gl_ICONV_H): Likewise.
858         * m4/inttypes.m4 (gl_INTTYPES_H): Likewise.
859         * m4/locale_h.m4 (gl_LOCALE_H): Likewise.
860         * m4/math_h.m4 (gl_MATH_H): Likewise.
861         * m4/netinet_in_h.m4 (gl_HEADER_NETINET_IN): Likewise.
862         * m4/search_h.m4 (gl_SEARCH_H): Likewise.
863         * m4/signal_h.m4 (gl_SIGNAL_H): Likewise.
864         * m4/stdint.m4 (gl_STDINT_H): Likewise.
865         * m4/stdio_h.m4 (gl_STDIO_H): Likewise.
866         * m4/stdlib_h.m4 (gl_STDLIB_H): Likewise.
867         * m4/string_h.m4 (gl_HEADER_STRING_H_BODY): Likewise.
868         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Likewise.
869         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Likewise.
870         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Likewise.
871         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Likewise.
872         * m4/sysexits.m4 (gl_SYSEXITS): Likewise.
873         * m4/time_h.m4 (gl_HEADER_TIME_H_BODY): Likewise.
874         * m4/unistd_h.m4 (gl_UNISTD_H): Likewise.
875         * m4/wchar.m4 (gl_WCHAR_H): Likewise.
876         * m4/wctype.m4 (gl_WCTYPE_H): Likewise.
877         * m4/inttypes.m4 (gl_INTTYPES_H): Define
878         _GL_JUST_INCLUDE_SYSTEM_INTTYPES_H to avoid the problem of unclean
879         builds, since ABSOLUTE_INTTYPES_H is no longer being defined.
880         * m4/stdint.m4 (gl_STDINT_H): Likewise, for
881         _GL_JUST_INCLUDE_SYSTEM_STDINT_H.
882         * lib/fcntl_.h: Use @INCLUDE_NEXT@ @NEXT_foo_H@
883         rather than @HAVE_INCLUDE_NEXT@ and @ABSOLUTE_foo_H@.
884         * lib/float_.h: Likewise.
885         * lib/inttypes_.h: Likewise.
886         * lib/math_.h: Likewise.
887         * lib/search_.h: Likewise.
888         * lib/signal_.h: Likewise.
889         * lib/stdint_.h: Likewise.
890         * lib/stdio_.h: Likewise.
891         * lib/stdlib_.h: Likewise.
892         * lib/string_.h: Likewise.
893         * lib/sys_stat_.h: Likewise.
894         * lib/sys_time_.h: Likewise.
895         * lib/time_.h: Likewise.
896         * lib/unistd_.h: Likewise.
897         * lib/wchar_.h: Likewise.
898         * lib/wctype_.h: Likewise.
899         * lib/dirent_.h: Likewise.
900         * lib/iconv_.h: Likewise.
901         * lib/locale_.h: Likewise.
902         * lib/netinet_in_.h: Likewise.
903         * lib/sys_select_.h: Likewise.
904         * lib/sys_socket_.h: Likewise.
905         * lib/sysexits_.h: Likewise.
906         * modules/fcntl (Depends-on): Depend on include_next, not
907         absolute_header.
908         (Makefile): Substitute INCLUDE_NEXT and NEXT_foo_H, not
909         HAVE_INCLUDE_NEXT and ABSOLUTE_foo_H.
910         * modules/fchdir: Likewise.
911         * modules/float: Likewise.
912         * modules/iconv_open: Likewise.
913         * modules/inttypes: Likewise.
914         * modules/locale: Likewise.
915         * modules/math: Likewise.
916         * modules/netinet_in: Likewise.
917         * modules/search: Likewise.
918         * modules/signal: Likewise.
919         * modules/stdint: Likewise.
920         * modules/stdio: Likewise.
921         * modules/stdlib: Likewise.
922         * modules/string: Likewise.
923         * modules/sys_select: Likewise.
924         * modules/sys_socket: Likewise.
925         * modules/sys_stat: Likewise.
926         * modules/sys_time: Likewise.
927         * modules/sysexits: Likewise.
928         * modules/time: Likewise.
929         * modules/unistd: Likewise.
930         * modules/wchar: Likewise.
931         * modules/wctype: Likewise.
932         * modules/sys_stat: Change maintainer to "all".
933         * modules/unistd: Likewise.
934
935 2007-06-20  Karl Berry  <karl@gnu.org>
936
937         * config/srclist.txt: track www changes in license files.
938
939 2007-06-20  Sergey Poznyakoff  <gray@gnu.org.ua>
940
941         * build-aux/bootstrap: Remove stray dot.
942         Make sure build_aux settings are honored when linking
943         gnulib_extra_files.
944
945 2007-06-19  Eric Blake  <ebb9@byu.net>
946
947         * modules/canonicalize-lgpl-tests (test_canonicalize_lgpl_LDADD):
948         Allow compilation on cygwin.
949
950 2007-06-19  Jim Meyering  <jim@meyering.net>
951
952         xreadlink-with-size: Remove module.  No longer used.
953         Ex-callers now use xreadlink or mreadlink-with-size.
954         * modules/xreadlink-with-size: Remove module.
955         * lib/xreadlink-with-size.c: Remove file.
956         * lib/xreadlink.h (xreadlink_with_size): Remove prototype.
957         (xreadlink): Remove inaccurate comment.  The one in xreadlink.c,
958         just before the function definition *is* accurate.
959
960         Eliminate one way canonicalize_filename_mode could exit.
961         * lib/canonicalize.c (canonicalize_filename_mode):
962         Use mreadlink_with_size, not xreadlink_with_size.
963
964 2007-06-18  Paul Eggert  <eggert@cs.ucla.edu>
965
966         Detect porting problems to FreeBSD/arm, which has time_t wider than
967         long int.  Original problem reported for GNU diff by Xin Li in
968         <http://lists.gnu.org/archive/html/bug-gnu-utils/2007-06/msg00091.html>.
969         * modules/getdate (Depends-on): Add intprops, verify.
970         * lib/getdate.y: Include intprops.h, verify.h.  Verify that time_t
971         is an integer type no wider than long int.
972
973 2007-06-18  Jim Meyering  <jim@meyering.net>
974
975         New module: mreadlink-with-size.
976         * MODULES.html.sh: Add mreadlink-with-size.
977         * modules/mreadlink-with-size: New module
978         * modules/canonicalize (Depends-on): Depend on mreadlink-with-size,
979         not xreadlink-with-size.
980         * lib/mreadlink-with-size.c, lib/mreadlink.h: New files.
981
982 2007-06-16  Bruno Haible  <bruno@clisp.org>
983
984         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Catch the MacOS X 10.4 bug.
985         * doc/functions/frexpl.texi: Document the MacOS X 10.4 bug.
986         Reported by Gary V. Vaughan <gary@gnu.org>.
987
988 2007-06-15  Paul Eggert  <eggert@cs.ucla.edu>
989
990         Revamp lchown so that it lives in unistd.h where it belongs.
991         * lib/lchown.h: Remove.
992         * lib/dirchownmod.c: Don't include lib/lchown.h.
993         * lib/fchownat.c: Likewise.
994         * lib/openat.c: Likewise.
995         * lib/lchown.c (REPLACE_CHOWN): Define to 0 if the system chown
996         does not follow symlinks.
997         (EOPNOTSUPP): Define if not defined.
998         * lib/unistd_.h (chown): Do not replace if REPLADE_CHOWN
999         is defined to 0.
1000         (lchown): New decl.
1001         * m4/lchown.m4 (gl_FUNC_LCHOWN): Require gl_UNISTD_H_DEFAULTS.
1002         Do not check for lchown decl.
1003         Set REPLACE_LCHOWN.
1004         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Set GNULIB_LCHOWN,
1005         REPLACE_LCHOWN.
1006         * modules/chown: Make it clear it follows symlinks.
1007         * modules/lchown: Make it clear it doesn't follow symlinks.
1008         (Files): Remove lib/lchown.h
1009         (Depends-on): Add unistd.
1010         (configure.ac): Add gl_UNISTD_MODULE_INDICATOR([lchown]).
1011         (Include): Include <unistd.h>, not "lchown.h".
1012         * modules/unistd (unistd.h): Substitude GNULIB_LCHOWN and
1013         REPLACE_LCHOWN.
1014
1015 2007-06-15  Jim Meyering  <jim@meyering.net>
1016
1017         Change license (GPL to LGPL) of fsusage and dependents.
1018         * modules/fsusage (License): Change to LGPL.
1019         * modules/full-read (License): Likewise.
1020         * modules/full-write (License): Likewise.
1021         * modules/safe-read (License): Likewise.
1022         * modules/safe-write (License): Likewise.
1023
1024 2007-06-14  Ben Pfaff  <blp@gnu.org>
1025
1026         Missing part of allocsa -> malloca transition.
1027         * modules/relocatable-prog-wrapper: gl_ALLOCSA should be
1028         gl_MALLOCA.
1029
1030 2007-06-12  Bruno Haible  <bruno@clisp.org>
1031
1032         * m4/isnanl.m4 (gl_FUNC_ISNANL_WORKS): Guess no when cross-compiling
1033         to ia64, x86_64, i386.
1034         Reported by Eric Blake.
1035
1036 2007-06-12  Bruno Haible  <bruno@clisp.org>
1037
1038         * m4/printf.m4 (gl_PRINTF_INFINITE_LONG_DOUBLE): Guess no also when
1039         cross-compiling to x86_64.
1040
1041 2007-06-12  Paul Eggert  <eggert@cs.ucla.edu>
1042
1043         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Fix POSIX sed portability
1044         glitch reported by Ralf Wildenhues in
1045         <http://lists.gnu.org/archive/html/bug-gnulib/2007-06/msg00114.html>.
1046
1047         * m4/regex.m4 (gl_REGEX): Catch a bug with [[:alnum:]_-] reported by
1048         Vin Shelton.
1049
1050 2007-06-11  Bruno Haible  <bruno@clisp.org>
1051
1052         * lib/printf-args.c (PRINTF_FETCHARGS) [ENABLE_UNISTDIO]: Fix NULL
1053         replacement string.
1054         Reported by Eric Blake.
1055
1056 2007-06-10  Bruno Haible  <bruno@clisp.org>
1057
1058         Prepare vasnprintf code for use with Unicode strings.
1059         * lib/printf-args.h (PRINTF_FETCHARGS): New macro.
1060         (arg_type) [ENABLE_UNISTDIO]: Define TYPE_U8_STRING, TYPE_U16_STRING,
1061         TYPE_U32_STRING.
1062         (argument) [ENABLE_UNISTDIO]: Add a_u8_string, a_u16_string,
1063         a_u32_string variants.
1064         (PRINTF_FETCHARGS): Renamed from printf_fetchargs.
1065         * lib/printf-args.c: Don't include config.h and the specification
1066         header if PRINTF_FETCHARGS is already defined.
1067         (PRINTF_FETCHARGS): Renamed from printf_fetchargs.
1068         (PRINTF_FETCHARGS) [ENABLE_UNISTDIO]: Add code for TYPE_U8_STRING,
1069         TYPE_U16_STRING, TYPE_U32_STRING.
1070         * lib/printf-parse.h [ENABLE_UNISTDIO] (u8_directive, u8_directives,
1071         u16_directive, u16_directives, u32_directive, u32_directives): New
1072         types.
1073         (ulc_printf_parse, u8_printf_parse, u16_printf_parse, u32_printf_parse):
1074         New declarations.
1075         * lib/printf-parse.c: Don't include config.h and the specification
1076         header if PRINTF_PARSE is already defined. Eliminate the set of
1077         parameters for WIDE_CHAR_VERSION; the user of this file must provide
1078         them now. Include c-ctype.h.
1079         (PRINTF_PARSE) [ENABLE_UNISTDIO]: Add code implementing the 'U'
1080         directive and CHAR_T_ONLY_ASCII.
1081         * lib/vasnprintf.c: Don't include config.h and the specification header
1082         if VASNPRINTF is already defined.
1083         (DCHAR_IS_TCHAR, DCHAR_CPY): New macros.
1084         (VASNPRINTF): Use PRINTF_FETCHARGS instead of printf_fetchargs. Use
1085         DCHAR_CPY. Handle the case that DCHAR_T and FCHAR_T are not the same
1086         type. Handle the case that TCHAR_T and FCHAR_T are not of the same
1087         size. Handle the case that DCHAR_T and TCHAR_T are not the same type,
1088         add a conversion from TCHAR_T[] to DCHAR_T[], and rework the padding
1089         code accordingly.
1090         (VASNPRINTF) [ENABLE_UNISTDIO]: Implement the 'U' directive. Enable
1091         pad_ourselves also in this case, with the 'c' and 's' directives, and
1092         with a different notion of "width".
1093         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): New macros.
1094
1095 2007-06-10  Bruno Haible  <bruno@clisp.org>
1096
1097         * modules/unistr/u32-mbsnlen: New file.
1098         * lib/unistr/u32-mbsnlen.c: New file.
1099
1100         * modules/unistr/u16-mbsnlen: New file.
1101         * lib/unistr/u16-mbsnlen.c: New file.
1102
1103         * modules/unistr/u8-mbsnlen: New file.
1104         * lib/unistr/u8-mbsnlen.c: New file.
1105
1106         * lib/unistr.h (u8_mbsnlen, u16_mbsnlen, u32_mbsnlen): New
1107         declarations.
1108
1109 2007-06-10  Bruno Haible  <bruno@clisp.org>
1110
1111         * lib/string_.h (mbsnlen): New declaration.
1112         * lib/mbsnlen.c: New file.
1113         * m4/mbsnlen.m4: New file.
1114         * modules/mbsnlen: New file.
1115         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Set GNULIB_MBSNLEN.
1116         * modules/string (string.h): Substitute GNULIB_MBSNLEN.
1117         * MODULES.html.sh (Internationalization functions): Add mbsnlen.
1118
1119 2007-06-10  Bruno Haible  <bruno@clisp.org>
1120
1121         * lib/mbslen.c: Include <stdlib.h>, needed for MB_CUR_MAX.
1122
1123 2007-06-10  Bruno Haible  <bruno@clisp.org>
1124
1125         * lib/mbiter.h: Include <stddef.h>, needed for ptrdiff_t.
1126         * lib/mbuiter.h: Likewise.
1127
1128 2007-06-10  Bruno Haible  <bruno@clisp.org>
1129
1130         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF): Check for _snprintf
1131         declaration.
1132
1133 2007-06-10  Karl Berry  <karl@gnu.org>
1134
1135         * config/srclist.txt: remove gettext entries, Bruno prefers
1136         to update individually.
1137
1138 2007-06-10  Bruno Haible  <bruno@clisp.org>
1139
1140         * lib/vasnprintf.c (VASNPRINTF) [!USE_SNPRINTF]: Remove variable
1141         'maxlen'. Ensure only length + width bytes are allocated, not
1142         length + 1 + width.
1143
1144 2007-06-09  Bruno Haible  <bruno@clisp.org>
1145
1146         * lib/vasnprintf.c (FCHAR_T, DCHAR_T, TCHAR_T): New macros.
1147         (CHAR_T): Remove macro.
1148         (VASNPRINTF): Update.
1149
1150 2007-06-09  Bruno Haible  <bruno@clisp.org>
1151
1152         * MODULES.html.sh (Unicode string functions): Add the new modules.
1153
1154         * modules/uniconv/u32-conv-to-enc: New file.
1155         * lib/uniconv/u32-conv-to-enc.c: New file.
1156         * modules/uniconv/u32-conv-to-enc-tests: New file.
1157         * tests/uniconv/test-u32-conv-to-enc.c: New file.
1158
1159         * modules/uniconv/u16-conv-to-enc: New file.
1160         * lib/uniconv/u16-conv-to-enc.c: New file.
1161         * lib/uniconv/u-conv-to-enc.h: New file.
1162         * modules/uniconv/u16-conv-to-enc-tests: New file.
1163         * tests/uniconv/test-u16-conv-to-enc.c: New file.
1164
1165         * modules/uniconv/u8-conv-to-enc: New file.
1166         * lib/uniconv/u8-conv-to-enc.c: New file.
1167         * modules/uniconv/u8-conv-to-enc-tests: New file.
1168         * tests/uniconv/test-u8-conv-to-enc.c: New file.
1169
1170         * lib/uniconv.h (u8_conv_to_encoding, u16_conv_to_encoding,
1171         u32_conv_to_encoding): New declarations.
1172
1173 2007-06-09  Bruno Haible  <bruno@clisp.org>
1174
1175         * tests/uniconv/test-u32-strconv-to-enc.c (main): Remove unused code.
1176
1177 2007-06-09  Bruno Haible  <bruno@clisp.org>
1178
1179         Rename 'allocsa' -> 'malloca', 'freesa' -> 'freea'.
1180         * modules/malloca: Renamed from modules/allocsa, updated.
1181         * lib/malloca.h: Renamed from lib/allocsa.h, updated.
1182         * lib/malloca.c: Renamed from lib/allocsa.c, updated.
1183         * lib/malloca.valgrind: Renamed from lib/allocsa.valgrind, updated.
1184         * m4/malloca.m4: Renamed from m4/allocsa.m4, updated.
1185         * modules/malloca-tests: Renamed from modules/allocsa-tests, updated.
1186         * tests/test-malloca.c: Renamed from tests/test-allocsa.c, updated.
1187         * modules/xmalloca: Renamed from modules/xallocsa, updated.
1188         * lib/xmalloca.h: Renamed from lib/xallocsa.h, updated.
1189         * lib/xmalloca.c: Renamed from lib/xallocsa.c, updated.
1190         * modules/c-strcasestr (Depends-on): Update.
1191         * lib/c-strcasestr.c: Update.
1192         * modules/c-strstr (Depends-on): Update.
1193         * lib/c-strstr.c: Update.
1194         * modules/canonicalize-lgpl (Depends-on): Update.
1195         * lib/canonicalize-lgpl.c: Update.
1196         * modules/clean-temp (Depends-on): Update.
1197         * lib/clean-temp.c: Update.
1198         * modules/csharpcomp (Depends-on): Update.
1199         * lib/csharpcomp.c: Update.
1200         * modules/csharpexec (Depends-on): Update.
1201         * lib/csharpexec.c: Update.
1202         * modules/javacomp (Depends-on): Update.
1203         * lib/javacomp.c: Update.
1204         * modules/javaexec (Depends-on): Update.
1205         * lib/javaexec.c: Update.
1206         * modules/mbscasestr (Depends-on): Update.
1207         * lib/mbscasestr.c: Update.
1208         * modules/mbsstr (Depends-on): Update.
1209         * lib/mbsstr.c: Update.
1210         * modules/setenv (Depends-on): Update.
1211         * lib/setenv.c: Update.
1212         * modules/strcasestr (Depends-on): Update.
1213         * lib/strcasestr.c: Update.
1214         * modules/striconveha (Depends-on): Update.
1215         * lib/striconveha.c: Update.
1216         * modules/relocatable-prog-wrapper (Files): Update.
1217         * lib/relocwrapper.c: Update.
1218         * build-aux/install-reloc: Update.
1219         * MODULES.html.sh (Memory management functions <stdlib.h>): Update.
1220
1221 2007-06-08  Bruno Haible  <bruno@clisp.org>
1222
1223         Port to uClibc.
1224         * lib/fbufmode.c (fbufmode): Add special code for uClibc.
1225         * lib/fpurge.c (fpurge): Likewise.
1226         * lib/freading.c (freading): Likewise.
1227         * lib/fseeko.c (rpl_fseeko): Likewise.
1228         * lib/fseterr.c (fseterr): Likewise.
1229         * lib/fwriting.c (fwriting): Likewise.
1230         * tests/test-fflush.c (main): Avoid a failure on uClibc.
1231
1232 2007-06-08  Bruno Haible  <bruno@clisp.org>
1233
1234         * m4/intlmacosx.m4: New file, extracted from gettext.m4.
1235         * m4/gettext.m4 (gt_INTL_MACOSX): Remove macro, moved to intlmacosx.m4.
1236         * modules/gettext (Files): Add m4/intlmacosx.m4.
1237
1238 2007-06-07  Bruno Haible  <bruno@clisp.org>
1239
1240         * modules/localename-tests: New file.
1241         * tests/test-localename.c: New file.
1242
1243         New module 'localename'.
1244         * lib/localename.h: New file.
1245         * lib/localename.c: New file, from GNU gettext.
1246         * m4/localename.m4: New file.
1247         * modules/localename: New file.
1248
1249 2007-06-07  Bruno Haible  <bruno@clisp.org>
1250
1251         Work around the lack of <wchar.h> on some builds of uClibc.
1252         * doc/headers/wchar.texi: Update.
1253         * lib/wchar_.h: Include <wchar.h> only if it exists.
1254         * m4/wchar.m4 (gl_WCHAR_H): Check for <wchar.h>. Set HAVE_WCHAR_H.
1255         * m4/stdint.m4 (gl_STDINT_H): Check for <wchar.h>.
1256         (gl_STDINT_TYPE_PROPERTIES): Don't try to include <wchar.h> if it
1257         doesn't exist.
1258         * modules/wchar (wchar.h): Substitute HAVE_WCHAR_H.
1259         * modules/mbfile (Depends-on): Add wchar.
1260         * modules/mbiter (Depends-on): Likewise.
1261         * modules/mbuiter (Depends-on): Likewise.
1262         Reported by Simon Josefsson.
1263
1264 2007-06-06  Paul Eggert  <eggert@cs.ucla.edu>
1265
1266         Work around problem reported by Steven M. Schweda in
1267         <http://lists.gnu.org/archive/html/bug-tar/2007-06/msg00002.html>:
1268         Tru64 5.1B with the Compaq compiler environment installed declares
1269         an 'isblank' function but does not define it in the C library.
1270         * lib/fnmatch.c (isblank): Check for HAVE_ISBLANK, too.
1271         * lib/regex_internal.h (isblank): Likewise.
1272         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for isblank existence.
1273         * m4/regex.m4 (gl_PREREQ_REGEX): Likewise.
1274
1275 2007-06-05  Bruno Haible  <bruno@clisp.org>
1276
1277         Fix *printf so that it recognizes non-IEEE numbers on i386, x86_64,
1278         ia64.
1279         * modules/printf-safe: New file.
1280         * modules/fprintf-posix (Depends-on): Add printf-safe.
1281         * modules/printf-posix (Depends-on): Likewise.
1282         * modules/snprintf-posix (Depends-on): Likewise.
1283         * modules/sprintf-posix (Depends-on): Likewise.
1284         * modules/vasnprintf-posix (Depends-on): Likewise.
1285         * modules/vasprintf-posix (Depends-on): Likewise.
1286         * modules/vfprintf-posix (Depends-on): Likewise.
1287         * modules/vprintf-posix (Depends-on): Likewise.
1288         * modules/vsnprintf-posix (Depends-on): Likewise.
1289         * modules/vsprintf-posix (Depends-on): Likewise.
1290         * m4/printf.m4 (gl_PRINTF_INFINITE_LONG_DOUBLE): Require
1291         AC_C_BIGENDIAN. Define CHECK_PRINTF_SAFE if printf-safe is used. Test
1292         non-IEEE numbers on i386, x86_64, ia64. When cross-compiling, guess
1293         "no" on i386, x86_64, ia64.
1294         * tests/test-snprintf-posix.h (LDBL80_WORDS): New macro.
1295         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
1296         on i386, x86_64, ia64.
1297         * tests/test-sprintf-posix.h (LDBL80_WORDS): New macro.
1298         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
1299         on i386, x86_64, ia64.
1300         * tests/test-vasnprintf-posix.c: Include float.h.
1301         (LDBL80_WORDS): New macro.
1302         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
1303         on i386, x86_64, ia64.
1304         * tests/test-vasprintf-posix.c: Include float.h.
1305         (LDBL80_WORDS): New macro.
1306         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
1307         on i386, x86_64, ia64.
1308         * tests/test-snprintf-posix.c: Include float.h.
1309         * tests/test-sprintf-posix.c: Likewise.
1310         * tests/test-vsnprintf-posix.c: Likewise.
1311         * tests/test-vsprintf-posix.c: Likewise.
1312
1313 2007-06-05  Bruno Haible  <bruno@clisp.org>
1314
1315         Fix isnanl so that it recognizes non-IEEE numbers on i386, x86_64, ia64.
1316         * m4/isnanl.m4 (gl_FUNC_ISNANL_WORKS): Require AC_C_BIGENDIAN. Test
1317         non-IEEE numbers on i386, x86_64, ia64.
1318         (gl_LONG_DOUBLE_EXPONENT_LOCATION): Require AC_C_BIGENDIAN.
1319         * lib/isnan.c (FUNC): Add special code for i386, x86_64, ia64.
1320         * tests/test-isnanl.h: Include float.h.
1321         (main): Check also non-IEEE numbers on i386, x86_64, ia64.
1322
1323 2007-06-05  Bruno Haible  <bruno@clisp.org>
1324
1325         * lib/vasnprintf.c (VASNPRINTF): Do the extra handling of NaN and Inf
1326         also the %a / %A. Handle the %a / %A code before this extra handling.
1327
1328 2007-06-05  Bruno Haible  <bruno@clisp.org>
1329
1330         * lib/vasnprintf.c [NEED_PRINTF_LONG_DOUBLE ||
1331         NEED_PRINTF_INFINITE_LONG_DOUBLE]: Include fpucw.h.
1332
1333 2007-06-05  Bruno Haible  <bruno@clisp.org>
1334
1335         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_INFINITE_LONG_DOUBLE): Fix
1336         typo in variable name.
1337
1338 2007-06-05  Eric Blake  <ebb9@byu.net>
1339
1340         * m4/lseek.m4 (gl_FUNC_LSEEK): Work when cross-compiling.
1341         Reported by Simon Josefsson.
1342
1343 2007-06-04  Bruno Haible  <bruno@clisp.org>
1344
1345         Avoid test failures on some PowerPC platforms.
1346         * tests/test-printf-frexpl.c (MIN_NORMAL_EXP, MIN_SUBNORMAL_EXP):
1347         Define differently for PowerPC.
1348         * tests/test-frexpl.c (MIN_NORMAL_EXP): Likewise.
1349         Reported by Gary V. Vaughan <gary@gnu.org>.
1350
1351 2007-06-02  Bruno Haible  <bruno@clisp.org>
1352
1353         Fix test-stdint failure on FreeBSD/ia64.
1354         * m4/stdint.m4 (gl_STDINT_H): Check the values of PTRDIFF_MIN,
1355         PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX, SIZE_MAX, WCHAR_MIN,
1356         WCHAR_MAX, WINT_MIN, WINT_MAX entirely, not only for plausibility.
1357         * doc/headers/stdint.texi: Update.
1358
1359 2007-06-01  Bruno Haible  <bruno@clisp.org>
1360
1361         * tests/test-binary-io.c (main): Pass a third argument to open().
1362         Reported by Gary V. Vaughan <gary@gnu.org>.
1363
1364 2007-06-01  Bruno Haible  <bruno@clisp.org>
1365
1366         * doc/functions/frexpl.texi: Update for mingw.
1367
1368 2007-06-01  Bruno Haible  <bruno@clisp.org>
1369
1370         * tests/test-lseek.c (main): Disable test of errno for invalid third
1371         argument.
1372         * doc/functions/lseek.texi: Update.
1373         Reported by Gary V. Vaughan <gary@gnu.org>.
1374
1375 2007-05-28  Bruno Haible  <bruno@clisp.org>
1376
1377         * m4/intl.m4 (AM_INTL_SUBDIR): Substitute variables WOE32, WINDRES.
1378
1379 2007-05-31  Eric Blake  <ebb9@byu.net>
1380
1381         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Guess no on mingw when
1382         cross compiling.
1383
1384 2007-05-30  Eric Blake  <ebb9@byu.net>
1385         and Bruno Haible  <bruno@clisp.org>
1386
1387         Work around mingw test failures exposed by m4-1.4.9b.
1388         * m4/stdint.m4 (gl_STDINT_H): Detect mingw bug.
1389         * tests/test-unistd.c: Disable uid_t and git_t tests for the
1390         moment.
1391
1392 2007-05-30  Bruno Haible  <bruno@clisp.org>
1393
1394         * tests/test-lseek.c: Explicitly close file descriptors 0 and 1 before
1395         assuming that they are closed. Needed on HP-UX 11.
1396
1397 2007-05-29  Bruno Haible  <bruno@clisp.org>
1398
1399         Fix a problem with #include_next.
1400         * lib/dirent_.h: Split the double-inclusion guard.
1401         * lib/fcntl_.h: Likewise.
1402         * lib/float_.h: Likewise.
1403         * lib/iconv_.h: Likewise.
1404         * lib/inttypes_.h: Likewise.
1405         * lib/locale_.h: Likewise.
1406         * lib/math_.h: Likewise.
1407         * lib/netinet_in_.h: Likewise.
1408         * lib/search_.h: Likewise.
1409         * lib/signal_.h: Likewise.
1410         * lib/stdint_.h: Likewise.
1411         * lib/stdio_.h: Likewise.
1412         * lib/stdlib_.h: Likewise.
1413         * lib/string_.h: Likewise.
1414         * lib/sys_select_.h: Likewise.
1415         * lib/sys_socket_.h: Likewise.
1416         * lib/sys_stat_.h: Likewise.
1417         * lib/sys_time_.h: Likewise.
1418         * lib/sysexits_.h: Likewise.
1419         * lib/time_.h: Likewise.
1420         * lib/unistd_.h: Likewise.
1421         * lib/wchar_.h: Likewise.
1422         * lib/wctype_.h: Likewise.
1423
1424 2007-05-29  Bruno Haible  <bruno@clisp.org>
1425
1426         * tests/test-unistd.c: Disable the tests for useconds_t and intptr_t
1427         for the moment.
1428
1429 2007-05-29  Bruno Haible  <bruno@clisp.org>
1430
1431         * m4/isnan.m4 (gl_DOUBLE_EXPONENT_LOCATION): Silence the AC_C_BIGENDIAN
1432         invocation.
1433         Reported by Eric Blake.
1434
1435 2007-05-29  Bruno Haible  <bruno@clisp.org>
1436
1437         * m4/isnanf.m4 (gl_FLOAT_EXPONENT_LOCATION): Fix typo in cross-
1438         compiling case.
1439
1440 2007-05-29  Eric Blake  <ebb9@byu.net>
1441             Bruno Haible  <bruno@clisp.org>
1442
1443         * m4/isnanf.m4 (gl_FUNC_ISNANF_NO_LIBM): Avoid syntax error on
1444         cross compiles.
1445
1446 2007-05-28  Eric Blake  <ebb9@byu.net>
1447
1448         * modules/closein-tests (test_closein_LDADD): Support test on
1449         cygwin with libtool.
1450
1451 2007-05-28  Bruno Haible  <bruno@clisp.org>
1452
1453         * tests/uniconv/test-u16-conv-from-enc.c: Remove #ifdef HAVE_CONFIG_H.
1454         * tests/uniconv/test-u16-strconv-from-enc.c: Likewise.
1455         * tests/uniconv/test-u16-strconv-to-enc.c: Likewise.
1456         * tests/uniconv/test-u32-conv-from-enc.c: Likewise.
1457         * tests/uniconv/test-u32-strconv-from-enc.c: Likewise.
1458         * tests/uniconv/test-u32-strconv-to-enc.c: Likewise.
1459         * tests/uniconv/test-u8-conv-from-enc.c: Likewise.
1460         * tests/uniconv/test-u8-strconv-from-enc.c: Likewise.
1461         * tests/uniconv/test-u8-strconv-to-enc.c: Likewise.
1462
1463 2007-05-28  Eric Blake  <ebb9@byu.net>
1464
1465         Unconditionally include <config.h> in unit tests.
1466         * tests/test-alloca-opt.c: Remove #ifdef HAVE_CONFIG_H.
1467         * tests/test-allocsa.c, tests/test-arcfour.c,
1468         tests/test-arctwo.c, tests/test-argmatch.c, tests/test-argp.c,
1469         tests/test-array_list.c, tests/test-array_oset.c,
1470         tests/test-atexit.c, test-avltree_list.c, test-avltree_oset.c,
1471         test-avltreehash_list.c, test-base64.c, test-binary-io.c,
1472         test-c-ctype.c, test-c-strcasecmp.c, test-c-strcasestr.c,
1473         test-c-strncasecmp.c, test-c-strstr.c, test-canonicalize-lgpl.c,
1474         test-carray_list.c, test-crc.c, test-des.c, test-dirname.c,
1475         test-fflush.c, test-fprintf-posix.c, test-gc-arcfour.c,
1476         test-gc-arctwo.c, test-gc-des.c, test-gc-hmac-md5.c,
1477         test-gc-hmac-sha1.c, test-gc-md2.c, test-gc-md4.c, test-gc-md5.c,
1478         test-gc-pbkdf2-sha1.c, test-gc-rijndael.c, test-gc-sha1.c,
1479         test-gc.c, test-getpass.c, test-hmac-md5.c, test-hmac-sha1.c,
1480         test-iconv.c, test-linked_list.c, test-linkedhash_list.c,
1481         test-lock.c, test-mbscasecmp.c, test-mbscasestr1.c,
1482         test-mbscasestr2.c, test-mbscasestr3.c, test-mbscasestr4.c,
1483         test-mbschr.c, test-mbscspn.c, test-mbsncasecmp.c, test-mbspbrk.c,
1484         test-mbspcasecmp.c, test-mbsrchr.c, test-mbsspn.c, test-mbsstr1.c,
1485         test-mbsstr2.c, test-mbsstr3.c, test-md2.c, test-md4.c,
1486         test-md5.c, test-memmem.c, test-printf-posix.c,
1487         test-rbtree_list.c, test-rbtree_oset.c, test-rbtreehash_list.c,
1488         test-read-file.c, test-rijndael.c, test-snprintf-posix.c,
1489         test-snprintf.c, test-sprintf-posix.c, test-stdint.c,
1490         test-strcasestr.c, test-striconv.c, test-striconveh.c,
1491         test-striconveha.c, test-tls.c, test-vasnprintf-posix.c,
1492         test-vasnprintf-posix2.c, test-vasnprintf.c,
1493         test-vasprintf-posix.c, test-vasprintf.c, test-verify.c,
1494         test-vfprintf-posix.c, test-vprintf-posix.c,
1495         test-vsnprintf-posix.c, test-vsnprintf.c, test-vsprintf-posix.c,
1496         test-xvasprintf.c: Likewise.
1497
1498 2007-05-28  Bruno Haible  <bruno@clisp.org>
1499
1500         * gnulib-tool (func_import): Remember the --with-tests command-line
1501         option through the macro gl_WITH_TESTS in the gnulib-cache.m4.
1502         Reported by Eric Blake.
1503
1504 2007-05-28  Bruno Haible  <bruno@clisp.org>
1505
1506         * modules/ftell-tests: New file.
1507         * tests/test-ftell.c: New file, based on tests/test-ftello.c.
1508         * tests/test-ftell.sh: New file, based on tests/test-ftello.sh.
1509
1510         * lib/ftell.c: New file.
1511         * modules/ftell: New file.
1512         * m4/ftell.m4: New file.
1513         * doc/functions/ftell.texi: Update.
1514         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FTELL,
1515         REPLACE_FTELL.
1516         * lib/stdio_.h (rpl_ftell): New declaration.
1517         * modules/stdio (Makefile.am): Substitute also GNULIB_FTELL,
1518         REPLACE_FTELL.
1519
1520 2007-05-28  Eric Blake  <ebb9@byu.net>
1521
1522         * lib/allocsa.h (safe_alloca): Avoid compiler warning.
1523
1524 2007-05-28  Bruno Haible  <bruno@clisp.org>
1525
1526         * modules/fseek-tests: New file.
1527         * tests/test-fseek.c: New file, based on tests/test-fseeko.c.
1528         * tests/test-fseek.sh: New file, based on tests/test-fseeko.sh.
1529
1530         * lib/fseek.c: New file.
1531         * modules/fseek: New file.
1532         * m4/fseek.m4: New file.
1533         * doc/functions/fseek.texi: Update.
1534         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FSEEK,
1535         REPLACE_FSEEK.
1536         * lib/stdio_.h (rpl_fseek): New declaration.
1537         * modules/stdio (Makefile.am): Substitute also GNULIB_FSEEK,
1538         REPLACE_FSEEK.
1539
1540 2007-05-28  Bruno Haible  <bruno@clisp.org>
1541
1542         * lib/stdio_.h (fflush): More comments.
1543
1544 2007-05-28  Bruno Haible  <bruno@clisp.org>
1545
1546         * m4/lseek.m4 (gl_FUNC_LSEEK): When not cross-compiling, perform a real
1547         runtime test.
1548
1549 2007-05-28  Eric Blake  <ebb9@byu.net>
1550
1551         Improve lseek module.
1552         * lib/lseek.c (rpl_lseek): Detect EBADF on mingw.
1553         * lib/unistd_.h (lseek): Scale back link warning message.
1554         * tests/test-lseek.c: Beef up test.
1555         * tests/test-lseek.sh: Exercise more facets of lseek.
1556         Reported by Bruno Haible.
1557
1558 2007-05-28  Bruno Haible  <bruno@clisp.org>
1559
1560         * tests/test-unistd.c: Test all the types that <unistd.h> is expected
1561         to define.
1562
1563 2007-05-27  Bruno Haible  <bruno@clisp.org>
1564
1565         * m4/iconv.m4 (AM_ICONV_LINK): Fix 2007-03-31 patch.
1566
1567 2007-05-27  Bruno Haible  <bruno@clisp.org>
1568
1569         * modules/openmp: New file.
1570         * m4/openmp.m4: New file, taken from autoconf's CVS with changes by
1571         Noah Misch.
1572
1573 2007-05-26  Bruno Haible  <bruno@clisp.org>
1574
1575         * modules/chdir-long (Depends-on): Add fchdir.
1576         * modules/chdir-safer (Depends-on): Likewise.
1577         * modules/fts (Depends-on): Likewise.
1578         * modules/fts-lgpl (Depends-on): Likewise.
1579         * modules/openat (Depends-on): Likewise.
1580         * modules/savewd (Depends-on): Likewise.
1581
1582 2007-05-24  Eric Blake  <ebb9@byu.net>
1583
1584         Fix lseek on mingw.
1585         * modules/lseek: New module.
1586         * m4/lseek.m4: New file.
1587         * lib/lseek.c: New file.
1588         * modules/lseek-tests: New file.
1589         * tests/test-lseek.c: New file.
1590         * tests/test-lseek.sh: New file.
1591         * MODULES.html.sh: Document lseek module.
1592         * modules/fflush (Depends-on): Add lseek, fseeko.
1593         * modules/fseeko (Depends-on): Likewise.
1594         * modules/ftello (Depends-on): Likewise.
1595         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Replace fseek[o] if lseek is
1596         broken.
1597         * m4/ftello.m4 (gl_FUNC_FTELLO): Replace ftell[o] if lseek is
1598         broken.
1599         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Trigger fseeko module.
1600         * lib/fseeko.c (rpl_fseeko): Quit early on non-seekable files.
1601         * lib/ftello.c (rpl_ftello): Likewise.
1602         * tests/test-fseeko.c (main): Test this.
1603         * tests/test-fseeko.sh: Likewise.
1604         * tests/test-ftello.c (main): Likewise.
1605         * tests/test-ftello.sh: Likewise.
1606         * lib/stdio_.h (fseek, ftell): Simplify, since missing fseeko now
1607         implies replacing fseek.
1608         * modules/stdio (Makefile.am): No longer need HAVE_FSEEKO,
1609         HAVE_FTELLO.
1610         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add lseek info.
1611         * modules/unistd (Makefile.am): Likewise.
1612         * lib/unistd_.h (lseek): Declare a replacement.
1613         * doc/functions/lseek.texi (lseek): Document this fix.
1614         * doc/functions/fseek.texi (fseek): Likewise.
1615         * doc/functions/ftell.texi (ftell): Likewise.
1616
1617 2007-05-24  Bruno Haible  <bruno@clisp.org>
1618
1619         * tests/test-vasnprintf-posix.c (test_function): Allow up to 50 bytes
1620         in the printed representation of a NaN.
1621         * tests/test-vasprintf-posix.c (test_function): Likewise.
1622         * tests/test-snprintf-posix.h (test_function): Likewise.
1623         * tests/test-sprintf-posix.h (test_function): Likewise.
1624         Reported by Eric Blake.
1625
1626 2007-05-23  Eric Blake  <ebb9@byu.net>
1627
1628         Fix fseeko/ftello on cygwin 1.5.24.
1629         * doc/functions/fseeko.texi (fseeko): Document the fix.
1630         * doc/functions/ftello.texi (ftello): Document the fix.
1631         * doc/functions/stdin.texi (stdin): Document the cygwin bug.
1632         * doc/functions/stdout.text (stdout): New file.
1633         * doc/functions/stderr.text (stderr): New file.
1634         * doc/gnulib.texi (Function Substitutes): Use new files.
1635         * tests/test-fseeko.c (main): Check for broken fseeko on cygwin
1636         prior to 1.7.0.
1637         * tests/test-ftello.c (main): Likewise for ftello.
1638         * tests/test-fseeko.sh: New file.
1639         * tests/test-ftello.sh: New file.
1640         * modules/fseeko-tests (Makefile.am): Ensure test-fseeko is run
1641         with seekable stdin.
1642         * modules/ftello-tests (Makefile.am): Likewise for test-ftello.
1643         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Detect the cygwin bug.
1644         (gl_REPLACE_FSEEKO): New macro.
1645         * m4/ftello.m4 (gl_FUNC_FTELLO, gl_REPLACE_FTELLO): Likewise.
1646         * modules/fseeko (Files): Distribute fseeko.c.
1647         * modules/ftello (Files): Distribute ftello.c.
1648         * lib/fseeko.c (rpl_fseeko) [__CYGWIN__]: Convert stdin to 64-bit
1649         mode.
1650         * lib/ftello.c (rpl_ftello): New file.
1651         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Allow replacement of
1652         fseeko, ftello.
1653         (gl_STDIN_LARGE_OFFSET): New macro.
1654         * modules/stdio (Makefile.am): Perform the replacement.
1655         * lib/stdio_.h (rpl_fseeko, rpl_ftello): Define when needed.
1656
1657 2007-05-23  Bruno Haible  <bruno@clisp.org>
1658
1659         * lib/stdio_.h (fseeko, ftello): Provide a link warning only if
1660         GNULIB_POSIXCHECK is defined.
1661
1662 2007-05-21  Bruno Haible  <bruno@clisp.org>
1663
1664         * m4/printf.m4 (gl_PRINTF_INFINITE, gl_PRINTF_INFINITE_LONG_DOUBLE):
1665         Check also the output for NaN arguments. When cross-compiling, guess
1666         no on IRIX.
1667         * lib/vasnprintf.c: Update comments.
1668         * tests/test-vasnprintf-posix.c (strisnan): New function.
1669         (test_function): Use it.
1670         * tests/test-vasprintf-posix.c (strisnan): New function.
1671         (test_function): Use it.
1672         * tests/test-snprintf-posix.h (strisnan): New function.
1673         (test_function): Use it.
1674         * tests/test-sprintf-posix.h (strisnan): New function.
1675         (test_function): Use it.
1676         Reported by Eric Blake.
1677
1678 2007-05-20  Bruno Haible  <bruno@clisp.org>
1679
1680         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Add test for large finite
1681         numbers that fails on BeOS.
1682         * doc/functions/frexpl.texi: Update.
1683
1684 2007-05-20  Jim Meyering  <jim@meyering.net>
1685
1686         * NEWS: Mention the incompatible change (s/futimens/gl_futimens/)
1687         forced upon us by glibc-2.6.
1688
1689 2007-05-20  Bruno Haible  <bruno@clisp.org>
1690
1691         Fix *printf result for NaN, Inf on AIX, Solaris, OSF/1.
1692         * m4/printf.m4 (gl_PRINTF_INFINITE): Update cross-compiling guesses.
1693         (gl_PRINTF_INFINITE_LONG_DOUBLE): New macro.
1694         * lib/vasnprintf.c: Use NEED_PRINTF_INFINITE_DOUBLE instead of
1695         NEED_PRINTF_INFINITE.
1696         (is_infinitel): New function.
1697         (VASNPRINTF): Handle NEED_PRINTF_INFINITE_LONG_DOUBLE case.
1698         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_INFINITE_DOUBLE): Renamed from
1699         gl_PREREQ_VASNPRINTF_INFINITE.
1700         (gl_PREREQ_VASNPRINTF_INFINITE_LONG_DOUBLE): New macro.
1701         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
1702         gl_PRINTF_INFINITE_LONG_DOUBLE and test its result. Invoke
1703         gl_PREREQ_VASNPRINTF_INFINITE_DOUBLE and
1704         gl_PREREQ_VASNPRINTF_INFINITE_LONG_DOUBLE instead of
1705         gl_PREREQ_VASNPRINTF_INFINITE.
1706         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
1707         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
1708         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
1709         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
1710         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
1711         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
1712         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
1713         * doc/functions/fprintf.texi: Update.
1714         * doc/functions/printf.texi: Update.
1715         * doc/functions/snprintf.texi: Update.
1716         * doc/functions/sprintf.texi: Update.
1717         * doc/functions/vfprintf.texi: Update.
1718         * doc/functions/vprintf.texi: Update.
1719         * doc/functions/vsnprintf.texi: Update.
1720         * doc/functions/vsprintf.texi: Update.
1721
1722 2007-05-20  Bruno Haible  <bruno@clisp.org>
1723
1724         * m4/frexpl.m4 (gl_FUNC_FREXPL_NO_LIBM): Set REPLACE_FREXPL if frexpl
1725         was not found in libc.
1726         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Likewise.
1727
1728 2007-05-20  Bruno Haible  <bruno@clisp.org>
1729
1730         * tests/test-vasnprintf-posix.c (test_function): Allow NaN to be
1731         printed as "-nan" instead of "nan".
1732         * tests/test-vasprintf-posix.c (test_function): Likewise.
1733         * tests/test-snprintf-posix.h (test_function): Likewise.
1734         * tests/test-sprintf-posix.h (test_function): Likewise.
1735         Needed for HP-UX 11.
1736
1737 2007-05-20  Jim Meyering  <jim@meyering.net>
1738
1739         Fix buggy test for the fchownat-deref bug.
1740         * m4/openat.m4 (gl_FUNC_FCHOWNAT_DEREF_BUG): Create the dangling
1741         symlink required for the run-test.  Without it, this test would
1742         always declare that fchownat doesn't work, and client code would
1743         unnecessarily use the replacement function with fixed libc.
1744         (gl_FUNC_FCHOWNAT): Eliminate a variable that wasn't initialized.
1745         Reported by Greg Schafer.
1746
1747 2007-05-19  Bruno Haible  <bruno@clisp.org>
1748
1749         * m4/isnanf.m4 (gl_ISNANF_WORKS): New macro.
1750         (gl_FUNC_ISNANF_NO_LIBM): Invoke it.
1751         * lib/isnan.c (FUNC): Use run-time expressions for SGI compiler.
1752         Needed for IRIX 6.5 and Solaris 2.5.1.
1753
1754 2007-05-19  Bruno Haible  <bruno@clisp.org>
1755
1756         * tests/test-vasnprintf-posix.c (have_minus_zero): New function.
1757         (test_function): Skip tests involving -0.0 on platforms where
1758         -0.0 = 0.0.
1759         * tests/test-vasprintf-posix.c (have_minus_zero): New function.
1760         (test_function): Skip tests involving -0.0 on platforms where
1761         -0.0 = 0.0.
1762         * tests/test-snprintf-posix.h (have_minus_zero): New function.
1763         (test_function): Skip tests involving -0.0 on platforms where
1764         -0.0 = 0.0.
1765         * tests/test-sprintf-posix.h (have_minus_zero): New function.
1766         (test_function): Skip tests involving -0.0 on platforms where
1767         -0.0 = 0.0.
1768         * tests/test-fprintf-posix.h (test_function): Remove all -0.0 related
1769         tests.
1770         * tests/test-printf-posix.h (test_function): Likewise.
1771         * tests/test-printf-posix.output: Remove all -0.0 related results.
1772         Needed for IRIX 6.5.
1773
1774 2007-05-19  Bruno Haible  <bruno@clisp.org>
1775
1776         * tests/test-vasnprintf-posix.c (test_function): Allow NaN to be
1777         printed as "nan0x7fffffff" instead of "nan".
1778         * tests/test-vasprintf-posix.c (test_function): Likewise.
1779         * tests/test-snprintf-posix.h (test_function): Likewise.
1780         * tests/test-sprintf-posix.h (test_function): Likewise.
1781         * tests/test-fprintf-posix.h (NaN): Remove macro.
1782         (test_function): Remove all NaN related tests.
1783         * tests/test-printf-posix.h (NaN): Remove macro.
1784         (test_function): Remove all NaN related tests.
1785         * tests/test-printf-posix.output: Remove all NaN related results.
1786         Needed for IRIX 6.5.
1787
1788 2007-05-19  Bruno Haible  <bruno@clisp.org>
1789
1790         * m4/frexp.m4 (gl_FUNC_FREXP_WORKS): Fix C89 syntax error in test code.
1791         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Likewise.
1792
1793 2007-05-19  Bruno Haible  <bruno@clisp.org>
1794
1795         * lib/float_.h: New file.
1796         * m4/float_h.m4: New file.
1797         * modules/float: New file.
1798         * modules/isnanl (Dependencies): Add float.
1799         * modules/isnanl-nolibm (Dependencies): Likewise.
1800         * modules/mathl (Dependencies): Likewise.
1801         * modules/printf-frexpl (Dependencies): Likewise.
1802         * modules/signbit (Dependencies): Likewise.
1803         * modules/vasnprintf (Dependencies): Likewise.
1804         * doc/headers/float.texi: Update.
1805
1806 2007-05-19  Jim Meyering  <jim@meyering.net>
1807
1808         * lib/utimens.c (gl_futimens): Rename from futimens,
1809         now that glibc-2.6 declares futimens.
1810         * lib/utimens.h: Likewise.
1811
1812 2007-05-19  Bruno Haible  <bruno@clisp.org>
1813
1814         Avoid test failures on mingw.
1815         * tests/test-fprintf-posix.sh: Convert CR/LF to LF in output.
1816         * tests/test-printf-posix.sh: Likewise.
1817         * tests/test-vfprintf-posix.sh: Likewise.
1818         * tests/test-vprintf-posix.sh: Likewise.
1819
1820 2007-05-19  Bruno Haible  <bruno@clisp.org>
1821
1822         Fix *printf result for NaN, Inf, -0.0 on mingw.
1823         * m4/printf.m4 (gl_PRINTF_INFINITE): New macro.
1824         * lib/vasnprintf.c: Include math.h and isnan.h.
1825         (is_infinite_or_zero): New function.
1826         (VASNPRINTF): Fix also the handling of infinite or zero 'double'
1827         values in the %f, %F, %e, %E, %g, %G directives.
1828         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_INFINITE): New macro.
1829         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
1830         gl_PRINTF_INFINITE and test its result. Invoke
1831         gl_PREREQ_VASNPRINTF_INFINITE.
1832         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
1833         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
1834         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
1835         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
1836         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
1837         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
1838         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
1839         * doc/functions/fprintf.texi: Update.
1840         * doc/functions/printf.texi: Update.
1841         * doc/functions/snprintf.texi: Update.
1842         * doc/functions/sprintf.texi: Update.
1843         * doc/functions/vfprintf.texi: Update.
1844         * doc/functions/vprintf.texi: Update.
1845         * doc/functions/vsnprintf.texi: Update.
1846         * doc/functions/vsprintf.texi: Update.
1847
1848 2007-05-19  Bruno Haible  <bruno@clisp.org>
1849
1850         * lib/vasnprintf.c (convert_to_decimal): Add an extra_zeroes argument.
1851         (scale10_round_decimal_long_double): Inline scale10_round_long_double.
1852         Instead of multiplying with 10^k, set extra_zeroes to k.
1853         (scale10_round_long_double): Remove function.
1854
1855 2007-05-18  Bruno Haible  <bruno@clisp.org>
1856
1857         * lib/vasnprintf.c (VASNPRINTF) [NEED_PRINTF_FLAG_ZERO]: Fix logic bug
1858         introduced on 2007-05-06.
1859
1860 2007-05-18  Bruno Haible  <bruno@clisp.org>
1861
1862         * tests/test-vasnprintf-posix.c (test_function): Also test the %e and
1863         %g directives.
1864         * tests/test-vasprintf-posix.c (test_function): Likewise.
1865         * tests/test-snprintf-posix.h (test_function): Likewise.
1866         * tests/test-sprintf-posix.h (test_function): Likewise.
1867
1868 2007-05-18  Bruno Haible  <bruno@clisp.org>
1869
1870         * tests/test-vasnprintf-posix.c (SIZEOF): New macro.
1871         (strmatch): New function.
1872         (test_function): Test the %f directive on numbers of various exponents.
1873         * tests/test-vasprintf-posix.c (SIZEOF): New macro.
1874         (strmatch): New function.
1875         (test_function): Test the %f directive on numbers of various exponents.
1876         * tests/test-snprintf-posix.h (strmatch): New function.
1877         (test_function): Test the %f directive on numbers of various exponents.
1878         * tests/test-sprintf-posix.h (strmatch): New function.
1879         (test_function): Test the %f directive on numbers of various exponents.
1880         * tests/test-snprintf-posix.c (SIZEOF): New macro.
1881         * tests/test-sprintf-posix.c (SIZEOF): New macro.
1882         * tests/test-vsnprintf-posix.c (SIZEOF): New macro.
1883         * tests/test-vsprintf-posix.c (SIZEOF): New macro.
1884
1885 2007-05-18  Bruno Haible  <bruno@clisp.org>
1886
1887         Add support for 'long double' number output.
1888         * m4/printf.m4 (gl_PRINTF_LONG_DOUBLE): New macro.
1889         * lib/vasnprintf.c: Include math.h and float+.h.
1890         (mp_limb_t): New type.
1891         (GMP_LIMB_BITS): New macro.
1892         (mp_twolimb_t): New type.
1893         (GMP_TWOLIMB_BITS): New macro.
1894         (mpn_t): New type.
1895         (multiply, divide, convert_to_decimal, decode_long_double,
1896         scale10_round_long_double, scale10_round_decimal_long_double,
1897         floorlog10l): New functions.
1898         (VASNPRINTF) [NEED_PRINTF_LONG_DOUBLE]: Implement 'long double' support
1899         for the %f, %F, %e, %E, %g, %G directives.
1900         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_LONG_DOUBLE): New macro.
1901         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
1902         gl_PRINTF_LONG_DOUBLE and test its result. Invoke
1903         gl_PREREQ_VASNPRINTF_LONG_DOUBLE.
1904         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
1905         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
1906         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
1907         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
1908         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
1909         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
1910         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
1911         * modules/fprintf-posix (Depends-on): Add frexpl-nolibm.
1912         * modules/snprintf-posix (Depends-on): Likewise.
1913         * modules/sprintf-posix (Depends-on): Likewise.
1914         * modules/vasnprintf-posix (Depends-on): Likewise.
1915         * modules/vasprintf-posix (Depends-on): Likewise.
1916         * modules/vfprintf-posix (Depends-on): Likewise.
1917         * modules/vsnprintf-posix (Depends-on): Likewise.
1918         * modules/vsprintf-posix (Depends-on): Likewise.
1919         * modules/vasnprintf (Files): Add lib/float+.h.
1920         * doc/functions/fprintf.texi: Update.
1921         * doc/functions/printf.texi: Update.
1922         * doc/functions/snprintf.texi: Update.
1923         * doc/functions/sprintf.texi: Update.
1924         * doc/functions/vfprintf.texi: Update.
1925         * doc/functions/vprintf.texi: Update.
1926         * doc/functions/vsnprintf.texi: Update.
1927         * doc/functions/vsprintf.texi: Update.
1928
1929 2007-05-18  Bruno Haible  <bruno@clisp.org>
1930
1931         * lib/vasnprintf.c (USE_SNPRINTF): Define to 0 on BeOS.
1932
1933 2007-05-18  Bruno Haible  <bruno@clisp.org>
1934
1935         * lib/vasnprintf.c (VASNPRINTF) [WIN32]: Use %I64d instead of %lld
1936         for printing 64-bit integers. Needed for mingw.
1937
1938 2007-05-18  Bruno Haible  <bruno@clisp.org>
1939
1940         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Invoke
1941         gl_FUNC_FREXPL_WORKS.
1942         * modules/printf-frexpl (Files): Add m4/frexpl.m4.
1943
1944 2007-05-18  Bruno Haible  <bruno@clisp.org>
1945
1946         * modules/frexpl-nolibm-tests: New file.
1947
1948         * modules/frexpl-nolibm: New file.
1949         * m4/frexpl.m4 (gl_FUNC_FREXPL_NO_LIBM): New macro.
1950
1951 2007-05-17  Paul Eggert  <eggert@cs.ucla.edu>
1952
1953         * lib/dirent_.h: Prefer #include_next <foo.h> to #include
1954         @ABSOLUTE_FOO_H@ if @HAVE_INCLUDE_NEXT@.  This works better with
1955         GCC 4.2, which otherwise issues a lot of warnings.
1956         * lib/iconv_.h, lib/locale_.h, lib/netinet_in_.h, lib/sys_select_.h:
1957         * lib/sys_socket_.h, lib/sys_stat_.h, lib/sysexits_.h, lib/unistd_.h:
1958         Likewise.
1959         * modules/fchdir (dirent.h): Substitute @HAVE_INCLUDE_NEXT@.
1960         * modules/iconv_open (iconv.h): Likewise.
1961         * modules/locale (locale.h): Likewise.
1962         * modules/netinet_in (netinet/in.h): Likewise.
1963         * modules/sys_select (sys_select.h): Likewise.
1964         * modules/sys_socket (sys/socket.h): Likewise.
1965         * modules/sys_stat (sys/stat.h): Likewise.
1966         * modules/sysexits (sysexits.h): Likewise.
1967         * modules/unistd (unistd.h): Likewise.
1968
1969 2007-05-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1970
1971         * modules/closein-tests (Makefile.am): Distribute
1972         `test-closein.sh'.
1973
1974 2007-05-17  Bruno Haible  <bruno@clisp.org>
1975
1976         * tests/test-printf-posix.output: Renamed from
1977         tests/test-fprintf-posix.out.
1978         * modules/fprintf-posix-tests: Update.
1979         * modules/printf-posix-tests: Update.
1980         * modules/vfprintf-posix-tests: Update.
1981         * modules/vprintf-posix-tests: Update.
1982         * tests/test-fprintf-posix.sh: Update.
1983         * tests/test-printf-posix.sh: Update.
1984         * tests/test-vfprintf-posix.sh: Update.
1985         * tests/test-vprintf-posix.sh: Update.
1986         Reported by Ralf Wildenhues.
1987
1988 2007-05-16  Paul Eggert  <eggert@cs.ucla.edu>
1989
1990         * lib/fcntl_.h: Prefer #include_next <foo.h> to #include
1991         @ABSOLUTE_FOO_H@ if @HAVE_INCLUDE_NEXT@.  This works better with
1992         GCC 4.2, which otherwise issues a lot of warnings.
1993         * lib/inttypes_.h, lib/math_.h, lib/search_.h, lib/signal_.h:
1994         * lib/stdint_.h, lib/stdio_.h, lib/stdlib_.h, lib/string_.h:
1995         * lib/sys_time_.h, lib/time_.h, lib/wchar_.h, lib/wctype_.h: Likewise.
1996         * lib/stdlib_.h: Don't bother with #pragma GCC system_header, as
1997         it should no longer be needed.
1998         * lib/string_.h: Likewise.
1999         * modules/absolute-header (HAVE_INCLUDE_NEXT): New 'make' define.
2000         * modules/fcntl (fcntl.h): Substitute @HAVE_INCLUDE_NEXT@.
2001         * modules/inttypes (inttypes.h): Likewise.
2002         * modules/math (math.h): Likewise.
2003         * modules/search (search.h): Likewise.
2004         * modules/signal (signal.h): Likewise.
2005         * modules/stdint (stdint.h): Likewise.
2006         * modules/stdio (stdio.h): Likewise.
2007         * modules/stdlib (stdlib.h): Likewise.
2008         * modules/string (string.h): Likewise.
2009         * modules/sys_time (sys/time.h): Likewise.
2010         * modules/time (time.h): Likewise.
2011         * modules/wchar (wchar.h): Likewise.
2012         * modules/wctype (wtype.h): Likewise.
2013
2014 2007-05-16  Thien-Thi Nguyen  <ttn@gnuvola.org>  (tiny change)
2015
2016         * doc/gnulib-tool.texi (CVS Issues): Fix typo.
2017
2018 2007-05-13  Bruno Haible  <bruno@clisp.org>
2019
2020         * stpcpy.m4 (gl_FUNC_STPCPY): Require AC_C_RESTRICT.
2021         * stpncpy.m4 (gl_FUNC_STPNCPY): Likewise.
2022         * strsep.m4 (gl_FUNC_STRSEP): Likewise.
2023         * strtok_r.m4 (gl_FUNC_STRTOK_R): Likewise.
2024         (gl_PREREQ_STRTOK_R): Don't require it here.
2025
2026 2007-05-13  Bruno Haible  <bruno@clisp.org>
2027
2028         * lib/stdlib_.h (mkdtemp, mkstemp): Comment out argument name. Needed
2029         when used in C++ mode.
2030
2031 2007-05-12  Bruno Haible  <bruno@clisp.org>
2032
2033         * lib/linebuffer.h: Tweak doc.
2034         * lib/linebuffer.c: Likewise.
2035
2036 2007-05-12  James Youngman  <jay@gnu.org>
2037
2038         * lib/linebuffer.c (readlinebuffer_delim): New function,
2039         like readlinebuffer, but use a caller-specified delimiter.
2040         (readlinebuffer): Just call readlinebuffer_delim with '\n'
2041         as the delimiter.
2042         * lib/linebuffer.h (readlinebuffer_delim): Declare it.
2043
2044 2007-05-12  Sergey Poznyakoff  <gray@gnu.org.ua>
2045
2046         * m4/openat.m4 (gl_FUNC_OPENAT): Do not require openat-die.
2047         * modules/openat (Files): Remove openat-die.c.
2048         (Depends-on): Add openat-die.
2049         * modules/openat-die: New module.
2050
2051 2007-05-06  Bruno Haible  <bruno@clisp.org>
2052
2053         * m4/printf.m4 (gl_PRINTF_FLAG_GROUPING, gl_VSNPRINTF_ZEROSIZE_C99):
2054         Update with info about Cygwin.
2055         * doc/functions/fprintf.texi: Update.
2056         * doc/functions/printf.texi: Update.
2057         * doc/functions/snprintf.texi: Update.
2058         * doc/functions/sprintf.texi: Update.
2059         * doc/functions/vfprintf.texi: Update.
2060         * doc/functions/vprintf.texi: Update.
2061         * doc/functions/vsnprintf.texi: Update.
2062         * doc/functions/vsprintf.texi: Update.
2063         Reported by Eric Blake.
2064
2065 2007-05-06  Bruno Haible  <bruno@clisp.org>
2066
2067         * lib/vasnprintf.c (VASNPRINTF) [NEED_PRINTF_FLAG_ZERO]: Perform the
2068         padding ourselves for the floating-point directives.
2069         * m4/printf.m4 (gl_PRINTF_FLAG_ZERO): New macro.
2070         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_FLAG_ZERO): New macro.
2071         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
2072         gl_PRINTF_FLAG_ZERO and test its result. Invoke
2073         gl_PREREQ_VASNPRINTF_FLAG_ZERO.
2074         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
2075         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Likewise.
2076         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
2077         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
2078         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
2079         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
2080         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
2081         * tests/test-snprintf-posix.h (test_function): Also check the width
2082         and some flags in the %f directive.
2083         * tests/test-sprintf-posix.h (test_function): Likewise.
2084         * tests/test-vasnprintf-posix.c (test_function): Likewise.
2085         * tests/test-vasprintf-posix.c (test_function): Likewise.
2086         * doc/functions/fprintf.texi: Update.
2087         * doc/functions/printf.texi: Update.
2088         * doc/functions/snprintf.texi: Update.
2089         * doc/functions/sprintf.texi: Update.
2090         * doc/functions/vfprintf.texi: Update.
2091         * doc/functions/vprintf.texi: Update.
2092         * doc/functions/vsnprintf.texi: Update.
2093         * doc/functions/vsprintf.texi: Update.
2094
2095 2007-05-06  Bruno Haible  <bruno@clisp.org>
2096
2097         * lib/vasnprintf.c (VASNPRINTF) [NEED_PRINTF_FLAG_GROUPING]: Don't
2098         pass the ' flag character to sprintf or snprintf.
2099         * m4/printf.m4 (gl_PRINTF_FLAG_GROUPING): New macro.
2100         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_FLAG_GROUPING): New macro.
2101         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
2102         gl_PRINTF_FLAG_GROUPING and test its result. Invoke
2103         gl_PREREQ_VASNPRINTF_FLAG_GROUPING.
2104         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
2105         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Likewise.
2106         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
2107         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
2108         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
2109         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
2110         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
2111         * tests/test-snprintf-posix.h (test_function): Also check the grouping
2112         flag.
2113         * tests/test-sprintf-posix.h (test_function): Likewise.
2114         * tests/test-vasnprintf-posix.c (test_function): Likewise.
2115         * tests/test-vasprintf-posix.c (test_function): Likewise.
2116         * doc/functions/fprintf.texi: Update.
2117         * doc/functions/printf.texi: Update.
2118         * doc/functions/snprintf.texi: Update.
2119         * doc/functions/sprintf.texi: Update.
2120         * doc/functions/vfprintf.texi: Update.
2121         * doc/functions/vprintf.texi: Update.
2122         * doc/functions/vsnprintf.texi: Update.
2123         * doc/functions/vsprintf.texi: Update.
2124
2125 2007-05-01  Bruno Haible  <bruno@clisp.org>
2126
2127         * tests/test-argp-2.sh (func_compare): Drop .exe suffix.
2128
2129 2007-05-03  Paul Eggert  <eggert@cs.ucla.edu>
2130
2131         * m4/d-ino.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_INO): Use better
2132         comment for D_INO_IN_DIRENT.  Problem reported by James Youngman.
2133
2134 2007-05-02  Paul Eggert  <eggert@cs.ucla.edu>
2135
2136         * m4/d-ino.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_INO): Test whether
2137         readdir returns garbage in d_ino.  Problem reported by Kaz Sasayama in
2138         <http://lists.gnu.org/archive/html/bug-gnulib/2007-05/msg00021.html>.
2139
2140 2007-05-02  Sergey Poznyakoff  <gray@gnu.org.ua>
2141
2142         * lib/argp-help.c (struct hol_entry): New member `ord'.
2143         (HOL_ENTRY_PTRCMP): Use ord for comparison
2144         (hol_sort): Initialize ord.
2145
2146 2007-05-01  Bruno Haible  <bruno@clisp.org>
2147
2148         * doc/functions/_Exit_C99.texi: Renamed from doc/functions/_Exit.texi.
2149         Reported by Eric Blake.
2150         * doc/gnulib.texi (Function Substitutes): Update.
2151
2152 2007-05-01  Bruno Haible  <bruno@clisp.org>
2153
2154         * doc/functions.texi: Remove file, now redundant through
2155         doc/functions/*.texi.
2156
2157 2007-05-01  Bruno Haible  <bruno@clisp.org>
2158
2159         * modules/argp (Depends-on): Add sleep.
2160
2161 2007-05-01  Bruno Haible  <bruno@clisp.org>
2162
2163         * modules/sleep-tests: New file.
2164         * tests/test-sleep.c: New file.
2165
2166         * modules/sleep: New file.
2167         * lib/sleep.c: New file.
2168         * m4/sleep.m4: New file.
2169         * lib/unistd_.h (sleep): New declaration.
2170         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_SLEEP,
2171         HAVE_SLEEP.
2172         * modules/unistd (Makefile.am): Substitute GNULIB_SLEEP, HAVE_SLEEP.
2173         * doc/functions/sleep.texi: Document the sleep module.
2174
2175 2007-05-01  Bruno Haible  <bruno@clisp.org>
2176
2177         * lib/sigprocmask.h: Remove file.
2178         * lib/signal_.h: Incorporate the previous contents of sigprocmask.h.
2179         * lib/sigprocmask.c: Include <signal.h> instead of sigprocmask.h.
2180         * m4/signal_h.m4 (gl_SIGNAL_H_DEFAULTS): Substitute GNULIB_SIGPROCMASK,
2181         HAVE_POSIX_SIGNALBLOCKING, HAVE_SIGSET_T.
2182         * m4/signalblocking.m4 (gl_SIGNALBLOCKING): Require
2183         gl_SIGNAL_H_DEFAULTS. Set HAVE_POSIX_SIGNALBLOCKING as a shell variable.
2184         (gl_PREREQ_SIGPROCMASK): Require gl_SIGNAL_H_DEFAULTS. Set
2185         HAVE_SIGSET_T as a shell variable.
2186         * modules/signal (Makefile.am): Substitute GNULIB_SIGPROCMASK,
2187         HAVE_POSIX_SIGNALBLOCKING, HAVE_SIGSET_T into signal.h.
2188         * modules/sigprocmask (Files): Remove lib/sigprocmask.h.
2189         (Depends-on): Add signal. Remove verify.
2190         (configure.ac): Invoke gl_SIGNAL_MODULE_INDICATOR.
2191         (Include): Mention <signal.h> instead of sigprocmask.h.
2192         * NEWS: Mention the change.
2193         * lib/fatal-signal.c: Don't include sigprocmask.h.
2194
2195 2007-05-01  Bruno Haible  <bruno@clisp.org>
2196
2197         * modules/signal: New file.
2198         * lib/signal_.h: New file.
2199         * m4/signal_h.m4: New file.
2200
2201 2007-05-01  Bruno Haible  <bruno@clisp.org>
2202
2203         * lib/wctype_.h: Test HAVE_ISWCNTRL at configure time.
2204         * m4/wctype.m4 (gl_WCTYPE_H): Substitute HAVE_ISWCNTRL.
2205         * modules/wctype (Makefile.am): Substitute HAVE_ISWCNTRL instead of
2206         HAVE_WCTYPE_CTMP_BUG into wctype.h.
2207
2208 2007-05-01  Bruno Haible  <bruno@clisp.org>
2209
2210         * lib/sys_stat_.h: Test HAVE_LSTAT, HAVE_DECL_MKDIR, HAVE_IO_H at
2211         configure time.
2212         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Substitute HAVE_LSTAT,
2213         HAVE_DECL_MKDIR, HAVE_IO_H via AC_SUBST.
2214         * modules/sys_stat (Makefile.am): Substitute their values into
2215         sys/stat.h.
2216
2217 2007-05-01  Bruno Haible  <bruno@clisp.org>
2218
2219         * lib/glob_.h: Test HAVE_SYS_CDEFS_H at configure time.
2220         * m4/glob.m4 (gl_PREREQ_GLOB): Substitute HAVE_SYS_CDEFS_H via AC_SUBST.
2221         * modules/glob (Makefile.am): Put HAVE_SYS_CDEFS_H value into glob.h.
2222
2223 2007-05-01  Bruno Haible  <bruno@clisp.org>
2224
2225         * doc/header/assert.texi: Undo last change: don't mention the gnulib
2226         'assert' module here.
2227
2228 2007-05-01  Bruno Haible  <bruno@clisp.org>
2229
2230         * doc/functions/*.texi: New files.
2231         * doc/functions/google-ranking.txt: New file.
2232         * doc/gnulib.texi (Function Substitutes): New chapter.
2233         (ctime, inet_ntoa): Remove sections.
2234         * doc/ctime.texi: Remove file.
2235         * doc/inet_ntoa.texi: Remove file.
2236         * doc/Makefile (gnulib.info, gnulib.html, gnulib.dvi): Update
2237         dependencies.
2238         (%.info): New rule, specifying a --reference-limit.
2239
2240 2007-05-01  Bruno Haible  <bruno@clisp.org>
2241
2242         * MODULES.html.sh (posix_functions): Remove 'exec', 'toc'.
2243
2244 2007-05-01  Bruno Haible  <bruno@clisp.org>
2245
2246         * modules/mkdir (Depends-on): Add sys_stat, because sys_stat provides
2247         the portability of 'mkdir' to mingw systems.
2248
2249 2007-05-01  Bruno Haible  <bruno@clisp.org>
2250
2251         * doc/headers/google-ranking.txt: New file.
2252
2253 2007-04-30  Eric Blake  <ebb9@byu.net>
2254
2255         Prefer fseeko to fseek.
2256         * modules/getpass (Depends-on): Add fseeko.
2257         * lib/getpass.c (getpass): Use fseeko, not fseek.
2258
2259 2007-04-30  Sergey Poznyakoff  <gray@gnu.org.ua>
2260
2261         * lib/argp-help.c (hol_entry_cmp): Option sorting algorithm
2262         assumes the sorting is stable, while most qsort implementations
2263         are not.  Use argument addresses to ensure they never compare as
2264         equal.
2265
2266         * tests/test-argp-2.sh (usage-indent test): Fix output
2267         (func_compare): Restore diff options
2268         * tests/test-argp.c: Restore #include "progname.h"
2269
2270 2007-04-29  Bruno Haible  <bruno@clisp.org>
2271
2272         * m4/printf.m4 (gl_VSNPRINTF_ZEROSIZE_C99): New macro.
2273         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
2274         gl_VSNPRINTF_ZEROSIZE_C99. Test gl_cv_func_vsnprintf_zerosize_c99.
2275         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
2276         * modules/snprintf-posix-tests (Files): Add tests/test-snprintf.c.
2277         (configure.ac): Define CHECK_SNPRINTF_POSIX.
2278         (TESTS, check_PROGRAMS): Add test-snprintf.
2279         * modules/vsnprintf-posix-tests (Files): Add tests/test-vsnprintf.c.
2280         (configure.ac): Define CHECK_VSNPRINTF_POSIX.
2281         (TESTS, check_PROGRAMS): Add test-vsnprintf.
2282         * tests/test-snprintf.c (main) [!CHECK_SNPRINTF_POSIX]: Disable
2283         assertions that fail on HP-UX, OSF/1, or IRIX.
2284         * tests/test-vsnprintf.c (main) [!CHECK_VSNPRINTF_POSIX]: Likewise.
2285
2286 2007-04-29  Bruno Haible  <bruno@clisp.org>
2287
2288         * MODULES.html.sh (posix_functions): Remove 'contents'.
2289
2290 2007-04-29  Karl Berry  <karl@gnu.org>
2291
2292         * config/srclist.txt (gendocs_template_min): new entry.
2293
2294 2007-04-29  Bruno Haible  <bruno@clisp.org>
2295
2296         Work around fpurge bug on BSD systems.
2297         * modules/fpurge (Makefile.am): Compile fpurge.c unconditionally.
2298         * m4/fpurge.m4 (gl_FUNC_FPURGE): Don't invoke AC_LIBOBJ.
2299         * lib/fpurge.h (fpurge): Don't handle __fpurge wrapper here. Define
2300         fpurge to rpl_fpurge if the system already has this function.
2301         * lib/fpurge.c (fpurge): Handle also the __fpurge wrapper case and
2302         the case where the system already has this function. Correct invariants
2303         on BSD systems.
2304         * lib/fseeko.c (rpl_fseeko): Update recognition of preceding fflush on
2305         BSD systems.
2306
2307 2007-04-29  Sergey Poznyakoff  <gray@gnu.org.ua>
2308
2309         * lib/argp-help.c (hol_cluster_cmp): Reverse comparison.  Change
2310         proposed by Sven Verdoolaege.
2311
2312         * tests/test-argp.c: Fix option ordering.  Test deeply clustered
2313         options.
2314         * tests/test-argp-2.sh (func_compare): Use diff instead of cmp.
2315         (usage and help tests): Update
2316
2317 2007-04-29  Bruno Haible  <bruno@clisp.org>
2318
2319         * tests/test-fflush.c (main): Use a file of size 17, not 10.
2320         Print more information in case of failure. Disable a test on BeOS.
2321
2322 2007-04-29  Bruno Haible  <bruno@clisp.org>
2323
2324         * tests/**/test-*.[hc] (ASSERT): Use fprintf to show the line number.
2325         This helps debugging on systems on which no gdb is available.
2326
2327 2007-04-29  Bruno Haible  <bruno@clisp.org>
2328
2329         * lib/freading.h: Improve comments.
2330         * lib/fwriting.h: Likewise.
2331         * tests/test-freading.c (main): Don't check freading immediately after
2332         repositioning. Needed for glibc.
2333
2334 2007-04-29  Bruno Haible  <bruno@clisp.org>
2335
2336         * lib/freading.c (freading): Trivial simplification.
2337
2338 2007-04-28  Bruno Haible  <bruno@clisp.org>
2339
2340         * tests/test-fwriting.c (main): Also test the interaction between
2341         fflush and fwriting.
2342         * modules/fwriting-tests (Depends-on): Add fflush.
2343
2344         * tests/test-freading.c (main): Also test the interaction between
2345         fflush and freading.
2346         * modules/freading-tests (Depends-on): Add fflush.
2347
2348 2007-04-28  Bruno Haible  <bruno@clisp.org>
2349
2350         * lib/stdio_.h (fseek, ftell): Provide link warnings suggesting to use
2351         fseeko and ftello.
2352         Suggested by Eric Blake.
2353
2354 2007-04-28  Jim Meyering  <jim@meyering.net>
2355
2356         Avoid false-negative in gl_STDINT_H's C99 conformance test.
2357         * m4/stdint.m4 (gl_STDINT_H): When checking whether stdint.h conforms
2358         to C99, include all of gl_STDINT_INCLUDES, not just <stddef.h>.
2359
2360 2007-04-27  Eric Blake  <ebb9@byu.net>
2361
2362         * doc/headers/assert.texi (assert.h): Document assert module use.
2363
2364 2007-04-27  Bruno Haible  <bruno@clisp.org>
2365
2366         * doc/headers/*.texi: New files.
2367         * doc/gnulib.texi (Header File Substitutes): New chapter.
2368         * doc/Makefile (gnulib.info, gnulib.html, gnulib.dvi): Specify
2369         dependencies.
2370         (standards.info ,standards.html, standards.dvi): Update dependencies.
2371         (mostlyclean, clean): New targets.
2372
2373 2007-04-27  Bruno Haible  <bruno@clisp.org>
2374
2375         * lib/sysexits_.h: Renamed from lib/sysexit_.h.
2376         * modules/sysexits (Files, Makefile.am): Update.
2377
2378         * lib/sys_socket_.h: Renamed from lib/socket_.h.
2379         * modules/sys_socket (Files, Makefile.am): Update.
2380
2381         * lib/sys_stat_.h: Renamed from lib/stat_.h.
2382         * modules/sys_stat (Files, Makefile.am): Update.
2383
2384 2007-04-27  Eric Blake  <ebb9@byu.net>
2385
2386         * lib/freading.h: Improve comments.
2387         * lib/fwriting.h: Likewise.
2388         * lib/fflush.c: Likewise.
2389
2390         Fix closein for mingw.
2391         * modules/closein-tests: Add tests for closein.
2392         * tests/test-closein.c: New file.
2393         * tests/test-closein.sh: Likewise.
2394         * lib/unistd_.h [!SEEK_CUR]: Mingw also needs stdlib.h for _exit.
2395         * lib/closein.c (close_stdin): Don't fflush non-seekable streams.
2396
2397 2007-04-27  Bruno Haible  <bruno@clisp.org>
2398
2399         * lib/inttypes_.h [_DECC]: Don't use #include_next if the compiler
2400         version is < 6.
2401         * lib/math_.h [__DECC]: Likewise.
2402         * lib/stdio_.h [__DECC]: Likewise.
2403         * lib/stdlib_.h [__DECC]: Likewise.
2404         * lib/string_.h [__DECC]: Likewise.
2405         * lib/time_.h [__DECC]: Likewise.
2406         * lib/wchar_.h [__DECC]: Likewise.
2407         * lib/wctype_.h [__DECC]: Likewise.
2408
2409 2007-04-27  Bruno Haible  <bruno@clisp.org>
2410
2411         * tests/test-fbufmode.c (main): Relax test, to avoid failure on mingw.
2412
2413 2007-04-27  Bruno Haible  <bruno@clisp.org>
2414
2415         * lib/fflush.c: Add comments.
2416         * modules/fpurge-tests (Depends-on): Add fflush.
2417         * modules/freadable-tests (Depends-on): Likewise.
2418         * modules/fwritable-tests (Depends-on): Likewise.
2419
2420 2007-04-27  Charles Wilson  <libtool@cwilson.fastmail.fm>
2421
2422         * m4/argz.m4 (gl_FUNC_ARGZ): Use !HAVE_WORKING_ARGZ instead of
2423         SYSTEM_ARGZ_IS_BROKEN.  Also, minor stylistic improvements.
2424         Report by Bruno Haible <bruno@clisp.org>.
2425
2426 2007-04-26  Eric Blake  <ebb9@byu.net>
2427
2428         Fix fflush on mingw.
2429         * modules/fflush (Depends-on): Add freading.
2430         * lib/fflush.c (rpl_fflush): Use freading to avoid losing buffered
2431         but unread data.
2432
2433 2007-04-26  Eric Blake  <ebb9@byu.net>
2434         and Bruno Haible  <bruno@clisp.org>
2435
2436         Implement freading and fwriting.
2437         * lib/freading.c: New file.
2438         * lib/freading.h: Likewise.
2439         * m4/freading.m4: Likewise.
2440         * modules/freading: Likewise.
2441         * modules/freading-tests: Likewise.
2442         * tests/test-freading.c: Likewise.
2443         * lib/fwriting.c: New file.
2444         * lib/fwriting.h: Likewise.
2445         * m4/fwriting.m4: Likewise.
2446         * modules/fwriting: Likewise.
2447         * modules/fwriting-tests: Likewise.
2448         * tests/test-fwriting.c: Likewise.
2449         * MODULES.html.sh (File stream based Input/Output): Mention them.
2450
2451 2007-04-26  Bruno Haible  <bruno@clisp.org>
2452
2453         * lib/stdio_.h (fseeko, ftello): Check that off_t has the same size as
2454         'long' when we assume it.
2455         Suggested by Eric Blake.
2456
2457 2007-04-26  Bruno Haible  <bruno@clisp.org>
2458
2459         Ensure fseeko, ftello are declared on glibc systems.
2460         * modules/fflush (configure.ac-early): Require AC_FUNC_FSEEKO.
2461         * modules/fseeko (configure.ac-early): Likewise.
2462         * modules/ftello (configure.ac-early): Likewise.
2463         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Don't define HAVE_FSEEKO, rely on
2464         AC_FUNC_FSEEKO for this.
2465         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Inline gl_CHECK_FSEEKO.
2466         (gl_CHECK_FSEEKO): Remove macro.
2467
2468 2007-04-26  Bruno Haible  <bruno@clisp.org>
2469
2470         * tests/test-fflush.c (main): Also check the ftell result after
2471         fflush and fseek/fseeko.
2472         * lib/fflush.c (rpl_fflush): For BSD implementations, update the
2473         file descriptor position cache in the stream.
2474         * lib/fseeko.c (rpl_fseeko): Likewise.
2475
2476 2007-04-26  Bruno Haible  <bruno@clisp.org>
2477
2478         * modules/fflush-tests (Depends-on): Add fseeko.
2479
2480 2007-04-25  Charles Wilson  <libtool@cwilson.fastmail.fm>
2481             Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2482
2483         * lib/argz_.h: ensure error_t definition is obtained in same
2484         mechanism system argz.h would have.
2485         * m4/argz.m4 (gl_FUNC_ARGZ): add new test to check if $host's
2486         argz facilities are known bad.  Err on the side of caution if
2487         cross-compiling.
2488
2489 2007-04-25  Eric Blake  <ebb9@byu.net>
2490
2491         * lib/fpurge.c (includes): Use stdlib.h for free.
2492         * tests/test-fflush.c (main): Also test fflush-fseeko.
2493
2494 2007-04-25  Bruno Haible  <bruno@clisp.org>
2495
2496         Make fflush+fseek POSIX-compliant on FreeBSD and MacOS X.
2497         * lib/fseeko.c: New file.
2498         * lib/stdio_.h: Include <sys/types.h> when off_t is needed.
2499         (fseeko, fseek): Define to replacements if REPLACE_FFLUSH.
2500         * m4/fseeko.m4 (gl_CHECK_FSEEKO): New macro, extracted from
2501         gl_FUNC_FSEEKO.
2502         (gl_FUNC_FSEEKO): Invoke it.
2503         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Arrange to compile fseeko.c. Invoke
2504         gl_CHECK_FSEEKO. Define HAVE_FSEEKO.
2505         * modules/fflush (Files): Add lib/fseeko.c, m4/fseeko.m4.
2506
2507 2007-04-25  Bruno Haible  <bruno@clisp.org>
2508
2509         * modules/fflush (Depends-on): Add ftello.
2510
2511 2007-04-25  Bruno Haible  <bruno@clisp.org>
2512
2513         * modules/ftello-tests: New file.
2514         * tests/test-ftello.c: New file.
2515
2516         * modules/ftello: New file.
2517         * m4/ftello.m4: New file.
2518         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FTELLO,
2519         HAVE_FTELLO.
2520         * lib/stdio_.h (ftello): New declaration.
2521         * modules/stdio (Makefile.am): Substitute also GNULIB_FTELLO,
2522         HAVE_FTELLO.
2523
2524 2007-04-25  Bruno Haible  <bruno@clisp.org>
2525
2526         * modules/fseeko-tests: New file.
2527         * tests/test-fseeko.c: New file.
2528
2529         * modules/fseeko: New file.
2530         * m4/fseeko.m4: New file.
2531         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FSEEKO,
2532         HAVE_FSEEKO.
2533         * lib/stdio_.h (fseeko): New declaration.
2534         * modules/stdio (Makefile.am): Substitute also GNULIB_FSEEKO,
2535         HAVE_FSEEKO.
2536
2537 2007-04-25  Bruno Haible  <bruno@clisp.org>
2538
2539         * lib/stdio_.h (fflush): Add support for GNULIB_POSIXCHECK.
2540
2541 2007-04-25  Bruno Haible  <bruno@clisp.org>
2542
2543         * lib/unistd_.h: Include <stdio.h> if needed to get the SEEK_* macros.
2544         * tests/test-stdio.c: Check that the various SEEK_* macros are defined.
2545         * tests/test-unistd.c: Likewise.
2546         * tests/test-fcntl.c: Likewise.
2547
2548 2007-04-23  Eric Blake  <ebb9@byu.net>
2549
2550         * lib/fflush.c: Fix missing include.
2551         Reported by Bruno Haible.
2552
2553 2007-04-23  Bruno Haible  <bruno@clisp.org>
2554
2555         * lib/fpurge.c (fpurge) [glibc, BSD]: Free a malloc()ed ungetc buffer.
2556         Reported by Eric Blake.
2557
2558 2007-04-23  Bruno Haible  <bruno@clisp.org>
2559
2560         * lib/fbufmode.c (fbufmode): Port to Solaris/SPARC64.
2561
2562 2007-04-23  Bruno Haible  <bruno@clisp.org>
2563
2564         * lib/fseterr.c (fseterr): Don't hardcode the value of _IOERR.
2565
2566 2007-04-23  Bruno Haible  <bruno@clisp.org>
2567
2568         * tests/test-fbufmode.c (main): Be prepared to a failure of setvbuf.
2569         Needed on HP-UX 11.
2570
2571 2007-04-16  Eric Blake  <ebb9@byu.net>
2572
2573         Make fflush rely on fpurge.
2574         * lib/fflush.c (rpl_fflush): Rely on fpurge module, rather than
2575         open coding all variants.
2576         * modules/fflush (Depends-on): Add fpurge and unistd.
2577         * modules/fflush-tests (Depends-on): Unistd is no longer extra.
2578         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Simplify.
2579
2580         Fix --with-tests compilation on cygwin.
2581         * modules/argmatch-tests (Makefile.am): List gnulib library first
2582         in LDADD.
2583         * modules/argp-tests (Makefile.am): Likewise.
2584         * modules/array-list-tests (Makefile.am): Likewise.
2585         * modules/array-oset-tests (Makefile.am): Likewise.
2586         * modules/avltree-list-tests (Makefile.am): Likewise.
2587         * modules/avltree-oset-tests (Makefile.am): Likewise.
2588         * modules/avltreehash-list-tests (Makefile.am): Likewise.
2589         * modules/carray-list-tests (Makefile.am): Likewise.
2590         * modules/dirname-tests (Makefile.am): Likewise.
2591         * modules/frexp-tests (Makefile.am): Likewise.
2592         * modules/isnanl-tests (Makefile.am): Likewise.
2593         * modules/linked-list-tests (Makefile.am): Likewise.
2594         * modules/linkedhash-list-tests (Makefile.am): Likewise.
2595         * modules/lock-tests (Makefile.am): Likewise.
2596         * modules/rbtree-list-tests (Makefile.am): Likewise.
2597         * modules/rbtree-oset-tests (Makefile.am): Likewise.
2598         * modules/rbtreehash-list-tests (Makefile.am): Likewise.
2599         * modules/tls-tests (Makefile.am): Likewise.
2600         * modules/tsearch-tests (Makefile.am): Likewise.
2601         * modules/xvasprintf-tests (Makefile.am): Likewise.
2602
2603         Fix fpurge for cygwin.
2604         * lib/fpurge.c (fpurge): Fix order of operation flub, and return a
2605         value.
2606         * modules/fpurge-tests (Depends-on): Clean up trash.
2607
2608 2007-04-16  Simon Josefsson  <simon@josefsson.org>
2609
2610         * lib/gc-libgcrypt.c (gc_hash_open): Shut up compiler warnings.
2611
2612         * m4/autobuild.m4: Re-indent.
2613
2614 2007-04-13  Bruno Haible  <bruno@clisp.org>
2615
2616         * modules/fpurge-tests: New file.
2617         * tests/test-fpurge.c: New file.
2618
2619         * modules/fpurge: New file.
2620         * lib/fpurge.h: New file.
2621         * lib/fpurge.c: New file.
2622         * m4/fpurge.m4: New file.
2623
2624 2007-04-13  Bruno Haible  <bruno@clisp.org>
2625
2626         * modules/fbufmode-tests: New file.
2627         * tests/test-fbufmode.c: New file.
2628
2629         * modules/fbufmode: New file.
2630         * lib/fbufmode.h: New file.
2631         * lib/fbufmode.c: New file.
2632         * m4/fbufmode.m4: New file.
2633
2634 2007-04-13  Bruno Haible  <bruno@clisp.org>
2635
2636         * modules/fwritable-tests: New file.
2637         * tests/test-fwritable.c: New file.
2638
2639         * modules/fwritable: New file.
2640         * lib/fwritable.h: New file.
2641         * lib/fwritable.c: New file.
2642         * m4/fwritable.m4: New file.
2643
2644 2007-04-13  Bruno Haible  <bruno@clisp.org>
2645
2646         * modules/freadable-tests: New file.
2647         * tests/test-freadable.c: New file.
2648
2649         * modules/freadable: New file.
2650         * lib/freadable.h: New file.
2651         * lib/freadable.c: New file.
2652         * m4/freadable.m4: New file.
2653
2654 2007-04-13  Bruno Haible  <bruno@clisp.org>
2655
2656         * modules/fflush-tests (Makefile.am): Remove EXTRA_DIST. Augment
2657         MOSTLYCLEANFILES.
2658
2659 2007-04-13  Paul Eggert  <eggert@cs.ucla.edu>
2660
2661         * build-aux/bootstrap (gnulib_tool_option_extras): New var, used by
2662         gzip bootstrap.conf to avoid dragging in i18n machinery.
2663         (gnulib_tool_option): Use it.
2664
2665 2007-04-13  Bruno Haible  <bruno@clisp.org>
2666
2667         * tests/test-vasnprintf-posix.c (test_function): Add tests for %f and
2668         %F directives.
2669         * tests/test-vasprintf-posix.c (test_function): Likewise.
2670         * tests/test-snprintf-posix.h (test_function): Likewise.
2671         * tests/test-sprintf-posix.h (test_function): Likewise.
2672         * tests/test-fprintf-posix.h (test_function): Likewise.
2673         * tests/test-printf-posix.h (test_function): Likewise.
2674         * tests/test-fprintf-posix.out: Likewise.
2675
2676 2007-04-13  Bruno Haible  <bruno@clisp.org>
2677
2678         * modules/lock-tests (configure.ac): For LIBSCHED, try also -lposix4.
2679         * modules/tls-tests (configure.ac): Likewise.
2680         Reported by Arto C. Nirkko <anirkko@insel.ch>.
2681
2682 2007-04-13  Bruno Haible  <bruno@clisp.org>
2683
2684         * lib/tls.c (glthread_tls_get): Fix return type.
2685         Patch by Arto C. Nirkko <anirkko@insel.ch>.
2686
2687 2007-04-12  Eric Blake  <ebb9@byu.net>
2688
2689         * modules/gettime (Depends-on): Remove gettime.
2690         Reported by Dmitry V. Levin.
2691
2692 2007-04-12  Bruno Haible  <bruno@clisp.org>
2693
2694         * modules/fflush (Include): Mention <stdio.h>.
2695         * modules/strtoimax (Include): Mention <inttypes.h>.
2696         * modules/strtoumax (Include): Likewise.
2697
2698 2007-04-12  Eric Blake  <ebb9@byu.net>
2699
2700         * .cvsignore: New file.
2701         * .gitignore: Likewise.
2702
2703 2007-04-12  Bruno Haible  <bruno@clisp.org>
2704
2705         * modules/iconv-tests (test_iconv_LDADD): Mention -liconv after LDADD,
2706         not before, since $(LDADD) often contains libgnu.a.
2707         * modules/striconv-tests (test_striconv_LDADD): Likewise.
2708         * modules/striconveh-tests (test_striconveh_LDADD): Likewise.
2709         * modules/striconveha-tests (test_striconveha_LDADD): Likewise.
2710         Needed on Cygwin.
2711
2712 2007-04-12  Eric Blake  <ebb9@byu.net>
2713
2714         Work around glibc's failure to flush stdin on fclose.
2715         * lib/closein.c (close_stdin): Flush stdin before closing.
2716
2717         Work around glibc's failure to reset seekable stdin on exit.
2718         * modules/closein: New module.
2719         * lib/closein.c: New file.
2720         * lib/closein.h: Likewise.
2721         * m4/closein.m4: Likewise.
2722         * MODULES.html.sh (File stream based Input/Output): Document it.
2723
2724 2007-04-12  Simon Josefsson  <simon@josefsson.org>
2725
2726         * gnulib-tool: Rename generated 'autobuild' script to
2727         'do-autobuild' in --create-megatestdir output.
2728
2729         * doc/gnulib.texi (Build robot for gnulib): Fix.
2730
2731 2007-04-12  Simon Josefsson  <simon@josefsson.org>
2732
2733         * modules/sysexits (Depends-on): Add absolute-header.
2734
2735 2007-04-12  Eric Blake  <ebb9@byu.net>
2736
2737         No need to preserve errno on success.
2738         * lib/fflush.c (rpl_fflush): Simplify errno tracking.
2739         Reported by Bruno Haible.
2740
2741 2007-04-12  Simon Josefsson  <simon@josefsson.org>
2742
2743         * MODULES.html.sh (Support for maintaining and releasing
2744         projects): Add autobuild.  Suggested by Eric Blake <ebb9@byu.net>.
2745
2746 2007-04-12  Simon Josefsson  <simon@josefsson.org>
2747
2748         * gnulib-tool (func_modules_add_dummy): Respect --avoid=dummy.
2749
2750 2007-04-12  Simon Josefsson  <simon@josefsson.org>
2751
2752         * modules/autobuild: New module.
2753
2754         * m4/autobuild.m4: New file.
2755
2756 2007-04-11  Bruno Haible  <bruno@clisp.org>
2757
2758         * lib/vasnprintf.c (VASNPRINTF): Implement the %F directive using the
2759         %f directive, if NEED_PRINTF_DIRECTIVE_F is defined.
2760         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_F): New macro.
2761         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_F): New macro.
2762         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
2763         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
2764         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
2765         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
2766         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
2767         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
2768         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Invoke
2769         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
2770         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
2771         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Invoke
2772         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
2773         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
2774         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Invoke
2775         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
2776         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
2777         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Invoke
2778         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
2779         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
2780         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Invoke
2781         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
2782         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
2783         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Invoke
2784         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
2785         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
2786         Reported by Eric Blake.
2787
2788 2007-04-11  Bruno Haible  <bruno@clisp.org>
2789
2790         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Fix test. It always failed.
2791
2792 2007-04-10  Bruno Haible  <bruno@clisp.org>
2793
2794         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Add a test for correct result
2795         for NaN and Infinity. Needed on FreeBSD 6.1.
2796         * tests/test-vasnprintf-posix.c (test_function): Undo last change
2797         regarding results for "%010a" of Infinity and NaN.
2798         * tests/test-vasprintf-posix.c (test_function): Likewise.
2799         * tests/test-snprintf-posix.h (test_function): Likewise.
2800         * tests/test-sprintf-posix.h (test_function): Likewise.
2801         * tests/test-fprintf-posix.h (test_function): Likewise.
2802         * tests/test-printf-posix.h (test_function): Likewise.
2803         * tests/test-fprintf-posix.out: Likewise.
2804
2805 2007-04-10  Bruno Haible  <bruno@clisp.org>
2806
2807         * modules/locale-tests: New file.
2808         * tests/test-locale.c: New file.
2809
2810         * modules/locale: New file.
2811         * lib/locale_.h: New file.
2812         * m4/locale_h.m4: New file.
2813
2814 2007-04-10  Paul Eggert  <eggert@cs.ucla.edu>
2815             Bruno Haible  <bruno@clisp.org>
2816
2817         * m4/signbit.m4 (gl_SIGNBIT): When the sign bit position could not
2818         be determined, test for availability of the copysignf, copysign,
2819         copysignl functions.
2820         * lib/signbitf.c (gl_signbitf): Use copysignf if available in libc.
2821         * lib/signbitd.c (gl_signbitd): Use copysign if available in libc.
2822         * lib/signbitl.c (gl_signbitl): Use copysignl if available in libc.
2823
2824 2007-04-09  Eric Blake  <ebb9@byu.net>
2825
2826         * lib/stdio_.h [REPLACE_FFLUSH]: Declare rpl_fflush.
2827         * modules/stdio (Makefile.am): Support fflush.
2828         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Likewise.
2829         * modules/fflush: New file.
2830         * lib/fflush.c: Likewise.
2831         * m4/fflush.m4: Likewise.
2832         * modules/fflush-tests: New test.
2833         * tests/test-fflush.c: Likewise.
2834         * MODULES.html.sh (Input/output <stdio.h>): Document new module.
2835
2836 2007-04-06  Bruno Haible  <bruno@clisp.org>
2837
2838         * lib/vasnprintf.c: Include <math.h>. Don't include float+.h.
2839         (VASNPRINTF): Use signbit for faster determination whether to print a
2840         minus sign.
2841         * modules/vasnprintf (Files): Remove lib/float+.h.
2842         * modules/fprintf-posix (Depends-on): Add signbit.
2843         * modules/snprintf-posix (Depends-on): Likewise.
2844         * modules/sprintf-posix (Depends-on): Likewise.
2845         * modules/vasnprintf-posix (Depends-on): Likewise.
2846         * modules/vasprintf-posix (Depends-on): Likewise.
2847         * modules/vfprintf-posix (Depends-on): Likewise.
2848         * modules/vsnprintf-posix (Depends-on): Likewise.
2849         * modules/vsprintf-posix (Depends-on): Likewise.
2850
2851 2007-04-06  Bruno Haible  <bruno@clisp.org>
2852
2853         * tests/test-frexp.c (main): Test also the sign bit of zero results.
2854         * tests/test-frexpl.c (main): Likewise.
2855         * tests/test-ldexpl.c (main): Likewise.
2856         * modules/frexp-tests (Depends-on): Add signbit.
2857         * modules/frexpl-tests (Depdends-on): Likewise.
2858         * modules/ldexpl-tests (Depdends-on): Likewise.
2859
2860 2007-04-06  Bruno Haible  <bruno@clisp.org>
2861
2862         * modules/signbit-tests: New file.
2863         * tests/test-signbit.c: New file.
2864
2865         * modules/signbit: New file.
2866         * lib/signbitf.c: New file.
2867         * lib/signbitd.c: New file.
2868         * lib/signbitl.c: New file.
2869         * m4/signbit.m4: New file.
2870         * lib/math_.h (gl_signbitf, gl_signbitd, gl_signbitl): New declarations.
2871         (signbit): New macro.
2872         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_SIGNBIT and
2873         REPLACE_SIGNBIT.
2874         * modules/math (Makefile.am) Substibute also GNULIB_SIGNBIT and
2875         REPLACE_FREXPL into math.h.
2876
2877 2007-04-06  Bruno Haible  <bruno@clisp.org>
2878
2879         * modules/isnanf-nolibm-tests: New file.
2880         * tests/test-isnanf.c: New file.
2881
2882         * modules/isnanf-nolibm: New file.
2883         * lib/isnanf.h: New file.
2884         * lib/isnanf.c: New file.
2885         * lib/isnan.c: Consider the USE_FLOAT macro.
2886         * m4/isnanf.m4: New file.
2887
2888 2007-04-06  Bruno Haible  <bruno@clisp.org>
2889
2890         * modules/gettext-h (configure.ac): AC_SUBST LIBINTL and LTLIBINTL.
2891         (Link): New section.
2892
2893         * modules/canonicalize-lgpl-tests (Makefile.am): Undo last change.
2894
2895 2007-04-06  Bruno Haible  <bruno@clisp.org>
2896
2897         Assume the 'long double' type.
2898         * m4/longdouble.m4: Remove file.
2899         * config/srclist.txt: Don't mention longdouble.m4.
2900         * lib/allocsa.h: Assume HAVE_LONG_DOUBLE to be true.
2901         * lib/float+.h: Likewise.
2902         * lib/frexp.c: Likewise.
2903         * lib/printf-args.h: Likewise.
2904         * lib/printf-args.c: Likewise.
2905         * lib/printf-frexp.c: Likewise.
2906         * lib/printf-parse.c: Likewise.
2907         * lib/vasnprintf.c: Likewise.
2908         * m4/allocsa.m4: Remove gt_TYPE_LONGDOUBLE invocation.
2909         * m4/intl.m4: Likewise.
2910         * m4/isnanl.m4: Likewise.
2911         * m4/printf.m4: Likewise.
2912         * m4/printf-frexpl.m4: Likewise.
2913         * m4/vasnprintf.m4: Likewise.
2914         * modules/allocsa (Files): Remove m4/longdouble.m4.
2915         * modules/gettext (Files): Likewise.
2916         * modules/relocatable-prog-wrapper (Files): Likewise.
2917         * modules/vasnprintf (Files): Likewise.
2918         * modules/isnanl (Files): Likewise.
2919         (Include): Simplify.
2920         * modules/isnanl-nolibm (Files): Remove m4/longdouble.m4.
2921         (Include): Simplify.
2922         * modules/printf-frexpl (Files): Remove m4/longdouble.m4.
2923         (Include): Simplify.
2924         * modules/snprintf-posix-tests (Files): Remove m4/longdouble.m4.
2925         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
2926         * modules/sprintf-posix-tests (Files): Remove m4/longdouble.m4.
2927         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
2928         * modules/vasnprintf-posix-tests (Files): Remove m4/longdouble.m4.
2929         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
2930         * modules/vasprintf-posix-tests (Files): Remove m4/longdouble.m4.
2931         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
2932         * modules/vsnprintf-posix-tests (Files): Remove m4/longdouble.m4.
2933         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
2934         * modules/vsprintf-posix-tests (Files): Remove m4/longdouble.m4.
2935         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
2936         * tests/test-isnanl-nolibm.c: Assume HAVE_LONG_DOUBLE to be true.
2937         * tests/test-isnanl.c: Likewise.
2938         * tests/test-snprintf-posix.h: Likewise.
2939         * tests/test-sprintf-posix.h: Likewise.
2940         * tests/test-vasnprintf-posix.c: Likewise.
2941         * tests/test-vasnprintf-posix2.c: Likewise.
2942         * tests/test-vasprintf-posix.c: Likewise.
2943
2944 2007-04-06  Bruno Haible  <bruno@clisp.org>
2945
2946         Fix problem with Compaq (ex-DEC) Desktop C compiler on Tru64.
2947         * lib/math_.h [__DECC]: Include the overridden include file through
2948         #include_next, outside the double-inclusion guard.
2949         * lib/stdio_.h [__DECC]: Likewise.
2950         * lib/stdlib_.h [__DECC]: Likewise.
2951         * lib/string_.h [__DECC]: Likewise.
2952         * lib/time_.h [__DECC]: Likewise.
2953         * lib/wchar_.h [__DECC]: Likewise.
2954         * lib/wctype_.h [__DECC]: Likewise.
2955         * lib/inttypes_.h [__DECC]: Likewise.
2956         Reported by Albert Chin <china@thewrittenword.com> in
2957         <http://lists.gnu.org/archive/html/bug-gnulib/2007-04/msg00088.html>.
2958
2959 2007-04-04  Eric Blake  <ebb9@byu.net>
2960
2961         * m4/stdint.m4 (gl_STDINT_H): Detect WINT_MAX bug in cygwin
2962         1.5.x.
2963
2964 2007-04-04  Bruno Haible  <bruno@clisp.org>
2965
2966         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Add a test for correct
2967         rounding. Don't assume that FreeBSD 6 and NetBSD 4 pass this test.
2968
2969 2007-04-04  Bruno Haible  <bruno@clisp.org>
2970
2971         * tests/test-vasnprintf-posix.c (test_function): Allow two possible
2972         results for "%010a" of Infinity and NaN.
2973         * tests/test-vasprintf-posix.c (test_function): Likewise.
2974         * tests/test-snprintf-posix.h (test_function): Likewise.
2975         * tests/test-sprintf-posix.h (test_function): Likewise.
2976         * tests/test-fprintf-posix.h (test_function): Remove these tests.
2977         * tests/test-printf-posix.h (test_function): Likewise.
2978         * tests/test-fprintf-posix.out: Update.
2979         Needed for FreeBSD 6.1.
2980
2981 2007-04-04  Bruno Haible  <bruno@clisp.org>
2982
2983         * DEPENDENCIES: Remove mentions of tar and gzip, since they are not
2984         directly used by the gnulib modules nor by gnulib-tool.
2985
2986 2007-04-04  Paul Eggert  <eggert@cs.ucla.edu>
2987
2988         * DEPENDENCIES: Give overall description of version dependency
2989         desirability.  Use more-typical names for apps.
2990         Add shell, coreutils, diffutils, grep, tar, gzip.
2991
2992 2007-04-04  Simon Josefsson  <simon@josefsson.org>
2993
2994         * MODULES.html.sh: Rename crypto modules.  Remove iconvme.
2995
2996 2007-04-04  Karl Berry  <karl@gnu.org>
2997
2998         * MODULES.html.sh (func_module): missing '.
2999
3000 2007-04-03  Bruno Haible  <bruno@clisp.org>
3001
3002         * modules/argmatch-tests (Makefile.am): New variable
3003         test_argmatch_LDADD.
3004         * modules/argp-tests (Makefile.am): New variable test_argp_LDADD.
3005         * modules/array-list-tests (Makefile.am): New variable
3006         test_array_list_LDADD.
3007         * modules/array-oset-tests (Makefile.am): New variable
3008         test_array_oset_LDADD.
3009         * modules/avltree-list-tests (Makefile.am): New variable
3010         test_avltree_list_LDADD.
3011         * modules/avltree-oset-tests (Makefile.am): New variable
3012         test_avltree_oset_LDADD.
3013         * modules/avltreehash-list-tests (Makefile.am): New variable
3014         test_avltreehash_list_LDADD.
3015         * modules/canonicalize-lgpl-tests (Makefile.am): New variable
3016         test_canonicalize_lgpl_LDADD.
3017         * modules/carray-list-tests (Makefile.am): New variable
3018         test_carray_list_LDADD.
3019         * modules/dirname-tests (Makefile.am): New variable
3020         test_dirname_LDADD.
3021         * modules/linked-list-tests (Makefile.am): New variable
3022         test_linked_list_LDADD.
3023         * modules/linkedhash-list-tests (Makefile.am): New variable
3024         test_linkedhash_list_LDADD.
3025         * modules/rbtree-list-tests (Makefile.am): New variable
3026         test_rbtree_list_LDADD.
3027         * modules/rbtree-oset-tests (Makefile.am): New variable
3028         test_rbtree_oset_LDADD.
3029         * modules/rbtreehash-list-tests (Makefile.am): New variable
3030         test_rbtreehash_list_LDADD.
3031         * modules/xvasprintf-tests (Makefile.am): New variable
3032         test_xvasprintf_LDADD.
3033         Reported by Eric Blake.
3034
3035 2007-04-03  Eric Blake  <ebb9@byu.net>
3036
3037         * DEPENDENCIES: Weaken m4 requirements.
3038
3039 2007-04-03  Bruno Haible  <bruno@clisp.org>
3040
3041         * modules/frexp-tests (configure.ac): Remove AC_SUBST.
3042         * modules/isnanl-tests (configure.ac): Likewise.
3043
3044 2007-04-03  Ben Pfaff  <blp@gnu.org>
3045
3046         * modules/iconv_open: Add $(srcdir)/ to source directory
3047         references in Makefile fragments that call gperf, to fix VPATH
3048         builds.
3049
3050 2007-04-03  Bruno Haible  <bruno@clisp.org>
3051
3052         * modules/ldexpl (Depends-on): Add isnanl, remove isnanl-nolibm.
3053         * lib/ldexpl.c: Undo last change.
3054
3055 2007-04-03  Bruno Haible  <bruno@clisp.org>
3056
3057         * modules/printf-frexpl (Depends-on): Undo last change.
3058         (Files): Add m4/ldexpl.m4.
3059
3060 2007-04-03  Bruno Haible  <bruno@clisp.org>
3061
3062         * m4/isnanl.m4 (gl_FUNC_ISNANL): Substitute ISNANL_LIBM.
3063         * modules/isnanl (Link): New section.
3064
3065         * m4/frexp.m4 (gl_FUNC_FREXP): Substitute FREXP_LIBM.
3066         * modules/frexp (Link): New section.
3067
3068         * m4/frexpl.m4 (gl_FUNC_FREXPL): Substitute FREXPL_LIBM.
3069         * modules/frexpl (Link): New section.
3070
3071         * m4/ldexpl.m4 (gl_FUNC_LDEXPL): Substitute LDEXPL_LIBM.
3072         * modules/ldexpl (Link): New section.
3073
3074 2007-04-03  Bruno Haible  <bruno@clisp.org>
3075
3076         * modules/TEMPLATE-EXTENDED: New file.
3077         * gnulib-tool (func_all_modules, func_verify_module): Exclude it.
3078
3079 2007-04-03  Bruno Haible  <bruno@clisp.org>
3080
3081         * DEPENDENCIES: New file.
3082         Suggested by Simon Josefsson.
3083
3084 2007-04-03  Bruno Haible  <bruno@clisp.org>
3085
3086         * doc/gnulib.texi: Escape @.
3087
3088 2007-04-03  James Youngman  <jay@gnu.org>
3089         and Paul Eggert  <eggert@cs.ucla.edu>
3090
3091         * lib/stat-time.h (get_stat_birthtime): Check for zero-valued
3092         birthtime on all systems that have birthtime, not just those which
3093         use st_birthtimensec rather than st_birthtim.  Putting zero in
3094         st_birthtim.tv_sec is how (for example) FreeBSD/x86 6.1 indicates
3095         that the birth time is not available for files on an NFS mount.
3096
3097 2007-04-03  Simon Josefsson  <simon@josefsson.org>
3098
3099         * modules/memxor: Move back from crypto/, suggested by Bruno.
3100         * modules/crypto/hmac-sha1: Fix memxor dependency.
3101
3102         * modules/crypto/gc: Moved from ../.
3103
3104 2007-04-02  Eric Blake  <ebb9@byu.net>
3105
3106         * lib/ldexpl.c (includes): Avoid libm.
3107
3108         * modules/printf-frexpl (Depends-on): Depend on ldexpl.
3109
3110 2007-04-02  Bruno Haible  <bruno@clisp.org>
3111
3112         * lib/sysexit_.h (EX_OK): Disable the EX_OK definition from <unistd.h>
3113         on IRIX.
3114
3115 2007-04-02  Bruno Haible  <bruno@clisp.org>
3116
3117         * m4/intdiv0.m4 (gt_INTDIV0): Avoid performing the test for real on
3118         x86 or x86_64 platforms running MacOS X.
3119         Reported by Ryan Schmidt <@ryandesign.com>.
3120
3121 2007-04-02  Bruno Haible  <bruno@clisp.org>
3122
3123         * m4/intdiv0.m4 (gt_INTDIV0): When cross-compiling, treat x86_64 like
3124         i386.
3125
3126 2007-04-01  Simon Josefsson  <simon@josefsson.org>
3127
3128         * modules/crypto/arcfour: Moved from ../.
3129         * modules/crypto/arcfour-tests: Moved from ../.
3130         * modules/crypto/arctwo: Moved from ../.
3131         * modules/crypto/arctwo-tests: Moved from ../.
3132         * modules/crypto/des: Moved from ../.
3133         * modules/crypto/des-tests: Moved from ../.
3134         * modules/crypto/gc-arcfour: Moved from ../.
3135         * modules/crypto/gc-arcfour-tests: Moved from ../.
3136         * modules/crypto/gc-arctwo: Moved from ../.
3137         * modules/crypto/gc-arctwo-tests: Moved from ../.
3138         * modules/crypto/gc-des: Moved from ../.
3139         * modules/crypto/gc-des-tests: Moved from ../.
3140         * modules/crypto/gc-hmac-md5: Moved from ../.
3141         * modules/crypto/gc-hmac-md5-tests: Moved from ../.
3142         * modules/crypto/gc-hmac-sha1: Moved from ../.
3143         * modules/crypto/gc-hmac-sha1-tests: Moved from ../.
3144         * modules/crypto/gc-md2: Moved from ../.
3145         * modules/crypto/gc-md2-tests: Moved from ../.
3146         * modules/crypto/gc-md4: Moved from ../.
3147         * modules/crypto/gc-md4-tests: Moved from ../.
3148         * modules/crypto/gc-md5: Moved from ../.
3149         * modules/crypto/gc-md5-tests: Moved from ../.
3150         * modules/crypto/gc-pbkdf2-sha1: Moved from ../.
3151         * modules/crypto/gc-pbkdf2-sha1-tests: Moved from ../.
3152         * modules/crypto/gc-random: Moved from ../.
3153         * modules/crypto/gc-rijndael: Moved from ../.
3154         * modules/crypto/gc-rijndael-tests: Moved from ../.
3155         * modules/crypto/gc-sha1: Moved from ../.
3156         * modules/crypto/gc-sha1-tests: Moved from ../.
3157         * modules/crypto/gc-tests: Moved from ../.
3158         * modules/crypto/hmac-md5: Moved from ../.
3159         * modules/crypto/hmac-md5-tests: Moved from ../.
3160         * modules/crypto/hmac-sha1: Moved from ../.
3161         * modules/crypto/hmac-sha1-tests: Moved from ../.
3162         * modules/crypto/md2: Moved from ../.
3163         * modules/crypto/md2-tests: Moved from ../.
3164         * modules/crypto/md4: Moved from ../.
3165         * modules/crypto/md4-tests: Moved from ../.
3166         * modules/crypto/md5: Moved from ../.
3167         * modules/crypto/md5-tests: Moved from ../.
3168         * modules/crypto/memxor: Moved from ../.
3169         * modules/crypto/rijndael: Moved from ../.
3170         * modules/crypto/rijndael-tests: Moved from ../.
3171         * modules/crypto/sha1: Moved from ../.
3172
3173 2007-03-30  James Youngman  <jay@gnu.org>
3174
3175         * tests/test-stat-time.c (prepare_test): use chmod() rather than
3176         rename() to change the ctime of a file (because ctime is unaffected
3177         by rename on jfs2 on AIX 5.1).
3178         (main): Start by doing cleanup, in case a previous run failed leaving
3179         test files behind.
3180
3181 2007-03-31  Bruno Haible  <bruno@clisp.org>
3182
3183         Support old proprietary implementations of iconv.
3184         * modules/iconv_open: New file.
3185         * lib/iconv_.h: New file.
3186         * m4/iconv_h.m4: New file.
3187         * lib/iconv_open.c: New file.
3188         * lib/iconv_open-aix.gperf: New file.
3189         * lib/iconv_open-hpux.gperf: New file.
3190         * lib/iconv_open-irix.gperf: New file.
3191         * lib/iconv_open-osf.gperf: New file.
3192         * m4/iconv_open.m4: New file.
3193         * modules/linebreak (Depends-on): Add iconv_open.
3194         * modules/striconv (Depends-on): Likewise.
3195         * modules/striconveh (Depends-on): Likewise.
3196         * modules/unicodeio (Depends-on): Likewise.
3197         * lib/striconveh.h (mem_cd_iconveh, str_cd_iconveh): Allow cd to be
3198         (iconv_t)(-1).
3199         * lib/striconveh.c (mem_cd_iconveh_internal): Use an indirect
3200         conversion if cd is (iconv_t)(-1).
3201         (mem_iconveh, str_iconveh): Don't fail just because a direct conversion
3202         is not possible.
3203
3204 2007-03-31  Bruno Haible  <bruno@clisp.org>
3205
3206         * tests/test-striconveha.c (main): Don't expect "autodetect_jp" to
3207         work on Solaris either. Protect also second use of "autodetect_jp".
3208
3209 2007-03-31  Bruno Haible  <bruno@clisp.org>
3210
3211         * m4/frexpl.m4 (gl_FUNC_FREXPL): Set HAVE_DECL_FREXPL to 0 when
3212         the function is not present.
3213
3214 2007-03-31  Bruno Haible  <bruno@clisp.org>
3215
3216         * m4/ldexpl.m4 (gl_FUNC_LDEXPL): Set HAVE_DECL_LDEXPL to 0 when
3217         the function is not present.
3218
3219 2007-03-31  Bruno Haible  <bruno@clisp.org>
3220
3221         * m4/iconv.m4 (AM_ICONV_LINK): Fix 2007-03-29 patch. Test also against
3222         a bug in HP-UX iconv_open().
3223
3224 2007-03-31  Bruno Haible  <bruno@clisp.org>
3225
3226         * MODULES.html.sh (func_module): Don't show gnulib-common.m4.
3227         (Mathematics <math.h>): New section, add fpieee.
3228         (Input/output <stdio.h>): Add fseterr.
3229         (Mathematics <math.h>): New section, add printf-frexp.
3230         (Container data structures): Add sublist.
3231         (Core language properties): Add fpucw, inline.
3232         (Functions for greatest-width integer types <inttypes.h>): Add
3233         imaxabs, imaxdiv, inttypes.
3234         (Mathematics <math.h>): Add frexp, frexpl, isnan-nolibm, isnanl,
3235         isnanl-nolibm, ldexp.
3236         (Mathematics <math.h>): New section, add printf-frexpl.
3237         (Support for systems lacking POSIX:2001): Add fprintf-posix,
3238         printf-posix, snprintf-posix, sprintf-posix, string, search, socklen,
3239         sys_select, sys_socket, vasnprintf-posix, vasprintf-posix,
3240         vfprintf-posix, vprintf-posix, vsnprintf-posix, vsprintf-posix.
3241         (Unicode string functions): Add unistr/u*-mbtoucr.
3242         (Java): Add javacomp-script, javaexec-script.
3243         (C#): Add csharpcomp-script, csharpexec-script.
3244         (Support for building libraries and executables): Add havelib,
3245         relocatable-*.
3246         (Support for maintaining and releasing projects): Renamed from
3247         'Support for maintaining and release projects'. Add announce-gen.
3248
3249 2007-03-31  Bruno Haible  <bruno@clisp.org>
3250
3251         * README: Talk primarily about git.
3252         (git and CVS): Renamed from CVS.
3253         * doc/gnulib.texi (Introduction, Build robot for gnulib): Mention that
3254         gnulib is available through git.
3255         * doc/gnulib-tool.texi (CVS Issues): Mention git and svn as well.
3256
3257 2007-03-30  Bruno Haible  <bruno@clisp.org>
3258
3259         * lib/alloca_.h: Change prefix of double-inclusion guard macro to _GL_.
3260         * lib/poll_.h: Likewise.
3261         * lib/stat_.h: Likewise.
3262         * lib/sys_time_.h: Likewise.
3263         * lib/sysexit_.h: Likewise.
3264         * lib/glob_.h: Prefix double-inclusion guard macro with _GL_.
3265         * lib/stdbool_.h: Likewise.
3266         * lib/byteswap_.h: Add double-inclusion guard.
3267
3268 2007-03-30  Sergey Poznyakoff  <gray@mirddin.farlep.net>
3269
3270         * lib/sysexit_.h: Prefix double-inclusion guard macro with _GNULIB.
3271
3272 2007-03-30  Karl Berry  <karl@gnu.org>
3273
3274         * config/srclist-update: double space after USA in the license
3275         substitution, since that's how it's usually (?) written.
3276
3277 2007-03-30  Paul Eggert  <eggert@cs.ucla.edu>
3278
3279         * lib/write-any-file.c (can_write_any_file): Fix else-else bug
3280         reported by Bruno Haible.
3281
3282 2007-03-29  Bruno Haible  <bruno@clisp.org>
3283
3284         * m4/iconv.m4 (AM_ICONV_LINK): Require AC_CANONICAL_HOST. Test against
3285         a bug in AIX iconv().
3286
3287 2007-03-29  Bruno Haible  <bruno@clisp.org>
3288
3289         * modules/ldexpl-tests: New file.
3290         * tests/test-ldexpl.c: New file.
3291
3292 2007-03-29  Bruno Haible  <bruno@clisp.org>
3293
3294         * lib/ldexpl.c: Include fpucw.h.
3295         (ldexpl): Use BEGIN/END_LONG_DOUBLE_ROUNDING. Skip the last unneeded
3296         multiplication.
3297         * modules/ldexpl (Depends-on): Add fpucw.
3298
3299 2007-03-29  Bruno Haible  <bruno@clisp.org>
3300
3301         * modules/ldexpl: New file.
3302         * m4/ldexpl.m4: New file.
3303         * lib/math_.h (ldexpl): Define to a replacement if REPLACE_LDEXPL is
3304         set.
3305         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize also GNULIB_LDEXPL,
3306         REPLACE_LDEXPL.
3307         * modules/math (Makefile.am): Substitute also GNULIB_LDEXPL,
3308         REPLACE_LDEXPL.
3309         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Invoke
3310         gl_FUNC_LDEXPL_WORKS.
3311         * m4/mathl.m4 (gl_FUNC_LONG_DOUBLE_MATH): Remove test for ldexpl.
3312         * modules/mathl (Files): Remove lib/ldexpl.c.
3313         (Depends-on): Add ldexpl.
3314
3315 2007-03-29  Bruno Haible  <bruno@clisp.org>
3316
3317         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Declare frexpl.
3318
3319 2007-03-29  Bruno Haible  <bruno@clisp.org>
3320
3321         * tests/test-striconveh.c (main): Don't assume that a direct conversion
3322         between ISO-8859-1 and ISO-8859-2 is possible. Needed for OSF/1, IRIX
3323         and possibly also HP-UX.
3324         * tests/test-striconveha.c (main): Don't expect "autodetect_jp" to
3325         work on AIX, IRIX, HP-UX, OSF/1.
3326         * tests/uniconv/test-u16-conv-from-enc.c (main): Likewise.
3327         * tests/uniconv/test-u16-strconv-from-enc.c (main): Likewise.
3328         * tests/uniconv/test-u32-conv-from-enc.c (main): Likewise.
3329         * tests/uniconv/test-u32-strconv-from-enc.c (main): Likewise.
3330         * tests/uniconv/test-u8-conv-from-enc.c (main): Likewise.
3331         * tests/uniconv/test-u8-strconv-from-enc.c (main): Likewise.
3332
3333 2007-03-29  Bruno Haible  <bruno@clisp.org>
3334
3335         * tests/test-stat-time.c: Include <fcntl.h>, not <sys/fcntl.h>.
3336
3337 2007-03-29  Paul Eggert  <eggert@cs.ucla.edu>
3338
3339         * lib/acl-internal.h (acl_get_fd, acl_set_fd): undef before defining,
3340         to work around a problem on OSF/1 5.1 reported by Bruno Haible.
3341
3342 2007-03-29  Eric Blake  <ebb9@byu.net>
3343
3344         * lib/acl-internal.h: Remove redundant include.
3345         (ACL_NOT_WELL_SUPPORTED): Also filter on EBUSY, returned by
3346         Cygwin when a file is locked.
3347
3348 2007-03-29  Bruno Haible  <bruno@clisp.org>
3349
3350         * lib/vasprintf.c [IN_LIBASPRINTF]: Include different specification
3351         file.
3352         * lib/asprintf.c [IN_LIBASPRINTF]: Likewise.
3353
3354 2007-03-29  Paul Eggert  <eggert@cs.ucla.edu>
3355
3356         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Don't bother to
3357         try to remove a parent directory if the child couldn't be removed
3358         (except for the first rmdir, which could fail because the child
3359         doesn't exist).  Problem reported by Jeff Blaine in
3360         <http://lists.gnu.org/archive/html/bug-tar/2007-03/msg00014.html>.
3361
3362 2007-03-28  Bruno Haible  <bruno@clisp.org>
3363
3364         * lib/striconveh.c (utf8conv_carefully): New function.
3365         (mem_cd_iconveh_internal): Invoke it.
3366
3367 2007-03-28  Bruno Haible  <bruno@clisp.org>
3368
3369         * lib/striconveh.c (mem_cd_iconveh_internal): Use u8_mbtoucr instead
3370         of u8_mbtouc in order to distinguish invalid and incomplete UTF-8
3371         input.
3372         * modules/striconveh (Depends-on): Add unistr/u8-mbtoucr. Replace
3373         utf8-ucs4 with unistr/u8-mbtouc. Replace ucs4-utf8 with
3374         unistr/u8-uctomb.
3375
3376 2007-03-28  Bruno Haible  <bruno@clisp.org>
3377
3378         * modules/unistr/u8-mbtoucr: New file.
3379         * lib/unistr/u8-mbtoucr.c: New file.
3380         * modules/unistr/u16-mbtoucr: New file.
3381         * lib/unistr/u16-mbtoucr.c: New file.
3382         * modules/unistr/u16-mbtoucr: New file.
3383         * lib/unistr/u16-mbtoucr.c: New file.
3384         * lib/unistr.h (u8_mbtoucr, u16_mbtoucr, u32_mbtoucr): New declarations.
3385
3386 2007-03-27  Simon Josefsson  <simon@josefsson.org>
3387             Bruno Haible  <bruno@clisp.org>
3388
3389         * m4/vasprintf.m4: Convert AC_SUBST into shell variable for
3390         REPLACE_VASPRINTF.  Set HAVE_VASPRINTF.  Add
3391         AC_REQUIRE([gl_STDIO_H_DEFAULTS]).
3392
3393         * m4/stdio_h.m4: Add stubs for vasprintf too.
3394
3395         * modules/stdio: Support vasprintf in sed command.
3396
3397         * modules/vasprintf: Depend on stdio for prototypes.  Remove
3398         vasprintf.h.  Add stdio module indicator.
3399
3400         * lib/stdio_.h: Declare asprintf and vasprintf, based on
3401         vasprintf.h.
3402
3403         * lib/vasprintf.h: File removed.
3404
3405         * lib/asprintf.c: Use stdio.h instead of vasprintf.h.
3406         * lib/vasprintf.c: Ditto.
3407         * lib/xvasprintf.c: Ditto.
3408         * tests/test-vasprintf-posix.c: Ditto.
3409         * tests/test-vasprintf.c: Ditto.
3410
3411 2007-03-27  Bruno Haible  <bruno@clisp.org>
3412
3413         Make vasnprintf multithread-safe.
3414         * lib/vasnprintf.c (decimal_point_char): New function.
3415         (VASNPRINTF): Use it.
3416         Suggested by Simon Josefsson.
3417
3418 2007-03-27  Eric Blake  <ebb9@byu.net>
3419
3420         Support sub-second birthtime on cygwin.
3421         * m4/stat-time.m4 (gl_STAT_BIRTHTIME): Also check for st_birthtim.
3422         * lib/stat-time.h (STAT_TIMESPEC): Adjust comments.
3423         (get_stat_birthtime): Also work with st_birthtim.
3424
3425 2007-03-27  Paul Eggert  <eggert@cs.ucla.edu>
3426
3427         * lib/stat-time.h (USE_BIRTHTIME): Remove.
3428         (get_stat_atime_ns, get_stat_ctime_ns, get_stat_mtime_ns):
3429         (get_stat_birthtime_ns): Do not try to use "spare" fields.
3430         (get_stat_birthtime_ns): Simplify compile-time tests.
3431         (get_stat_birthtime): Change the API to look like
3432         get_stat_mtime etc., except return a negative tv_nsec on error.
3433         * m4/stat-time.m4 (gl_STAT_TIME, gl_STAT_BIRTHTIME):
3434         Don't check for "spare" fields.
3435         (gl_STAT_BIRTHTIME): Don't check for struct stat.st_birthtimespec.tv_sec
3436         or for struct stat.st_birthtime, as these tests aren't used.
3437         * tests/test-stat-time.c (test_birthtime): Adjust to new API.
3438
3439 2007-03-27  Bruno Haible  <bruno@clisp.org>
3440
3441         * lib/stat-time.h: Include <sys/stat.h>.
3442
3443 2007-03-27  James Youngman  <jay@gnu.org>
3444
3445         * lib/stat-time.h (get_stat_birthtime): New function for
3446           retrieving st_birthtime as provided by UFS2 (hence *BSD).
3447         * m4/stat-time.m4 (gl_STAT_BIRTHTIME): Probe for st_birthtime
3448           and its variants.
3449         * modules/stat-time (configure.ac): call gl_STAT_BIRTHTIME.
3450         * modules/stat-time-test: New file.
3451         * tests/test-stat-time.c: New test, devised by Bruno Haible.
3452
3453 2007-03-26  Bruno Haible  <bruno@clisp.org>
3454
3455         Better support of signalling NaNs.
3456         * lib/atanl.c: Include isnanl.h.
3457         (atanl): Perform test for NaN at the beginning of the function and
3458         through a call to isnanl.
3459         * lib/cosl.c: Include isnanl.h.
3460         (cosl): Perform test for NaN at the beginning of the function and
3461         through a call to isnanl.
3462         * lib/ldexpl.c: Include isnanl.h.
3463         (ldexpl): Perform test for NaN through a call to isnanl.
3464         * lib/logl.c: Include isnanl.h.
3465         (logl): Perform test for NaN at the beginning of the function and
3466         through a call to isnanl.
3467         * lib/sinl.c: Include isnanl.h.
3468         (sinl): Perform test for NaN at the beginning of the function and
3469         through a call to isnanl.
3470         * lib/sqrtl.c: Include isnanl.h.
3471         (sqrtl): Perform test for NaN at the beginning of the function and
3472         through a call to isnanl.
3473         * lib/tanl.c: Include isnanl.h.
3474         (tanl): Perform test for NaN at the beginning of the function and
3475         through a call to isnanl.
3476         * lib/trigl.c (ieee754_rem_pio2l): Remove test for NaN.
3477         * modules/mathl (Depends-on): Add isnanl.
3478
3479 2007-03-26  Eric Blake  <ebb9@byu.net>
3480
3481         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_A): Fix
3482         regression in logic sense of previous patch.
3483
3484 2007-03-26  Bruno Haible  <bruno@clisp.org>
3485
3486         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_A): Don't use
3487         unportable shell command "if ! ...".
3488         Reported by Ralf Wildenhues.
3489
3490 2007-03-25  Bruno Haible  <bruno@clisp.org>
3491
3492         * lib/sysexit_,h: If HAVE_SYSEXITS_H is defined, include the original
3493         <sysexits.h> file, and only add EX_CONFIG.
3494         * m4/sysexits.m4 (gl_SYSEXITS): If <sysexits.h> exists, check its
3495         absolute file name and whether it is sufficient. Substitute also
3496         HAVE_SYSEXITS_H and ABSOLUTE_SYSEXITS_H.
3497         * modules/sysexits (Makefile.am): Substitute HAVE_SYSEXITS_H and
3498         ABSOLUTE_SYSEXITS_H into sysexits.h.
3499
3500 2007-03-25  Bruno Haible  <bruno@clisp.org>
3501
3502         * lib/getaddrinfo.c (getaddrinfo): Don't access hints->ai_flags when
3503         hints is NULL.
3504
3505 2007-03-25  Bruno Haible  <bruno@clisp.org>
3506
3507         * lib/uniconv/u8-conv-from-enc.c (u8_conv_from_encoding): Add a cast.
3508         * lib/uniconv/u8-strconv-to-enc.c (u8_strconv_to_encoding): Likewise.
3509
3510 2007-03-25  Bruno Haible  <bruno@clisp.org>
3511
3512         * lib/vasnprintf.c: Include langinfo.h.
3513         (VASNPRINTF): Prefer nl_langinfo over localeconv, since it's more
3514         multithread-safe.
3515         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_A): New macro.
3516         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke it.
3517         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
3518         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
3519         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
3520         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
3521         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
3522         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX: Likewise.
3523         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
3524         Reported by Simon Josefsson.
3525
3526 2007-03-25  Bruno Haible  <bruno@clisp.org>
3527
3528         * lib/printf-parse.c [!IN_LIBINTL]: Include <stdint.h>, for intmax_t.
3529         (PRINTF_PARSE): Make the support for size specifier 'j' unconditional.
3530         * modules/vasnprintf (Depends-on): Add stdint.
3531
3532 2007-03-25  Bruno Haible  <bruno@clisp.org>
3533
3534         * modules/fpieee: New file.
3535         * m4/fpieee.m4: New file.
3536         * modules/isnan-nolibm (Depends-on): Add fpieee.
3537         * modules/isnanl-nolibm (Depends-on): Add fpieee.
3538         * modules/isnanl (Depends-on): Add fpieee.
3539
3540 2007-03-25  Bruno Haible  <bruno@clisp.org>
3541
3542         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Test also finite numbers.
3543
3544 2007-03-25  Bruno Haible  <bruno@clisp.org>
3545
3546         Avoid test failures on IRIX 6.5.
3547         * tests/test-frexpl.c (MIN_NORMAL_EXP): New macro.
3548         (main): Use it.
3549         * tests/test-printf-frexpl.c (MIN_NORMAL_EXP, MIN_SUBNORMAL_EXP): New
3550         macros.
3551         (main): Use them.
3552
3553 2007-03-25  Bruno Haible  <bruno@clisp.org>
3554
3555         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): New macro.
3556         (gl_FUNC_FREXPL): Invoke it. Set REPLACE_FREXPL to 1 if it frexpl
3557         exists but doesn't work.
3558         * lib/math_.h (frexpl): Define as a replacement macro if REPLACE_FREXPL
3559         is set. Don't provide a prototype if REPLACE_FREXPL is not set.
3560         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize REPLACE_FREXPL.
3561         * modules/math (Makefile.am) Substibute also REPLACE_FREXPL into math.h.
3562
3563 2007-03-25  Bruno Haible  <bruno@clisp.org>
3564
3565         * m4/frexp.m4 (gl_FUNC_FREXP_WORKS): Add check whether frexp(inf)
3566         returns inf. Needed on IRIX 6.5.
3567
3568 2007-03-25  Bruno Haible  <bruno@clisp.org>
3569
3570         * tests/test-frexpl.c: Include isnanl-nolibm.h.
3571         (main): Use isnanl instead of x != x idiom.
3572         * modules/frexpl-tests (Depends-on): Add isnanl-nolibm.
3573
3574         * tests/test-frexp.c: Include isnan.h.
3575         (main): Use isnan instead of x != x idiom.
3576         * modules/frexp-tests (Depends-on): Add isnan-nolibm.
3577
3578 2007-03-25  Bruno Haible  <bruno@clisp.org>
3579
3580         * tests/test-frexp.c (NaN): New function/macro.
3581         (main): Use it instead of 0.0 / 0.0.
3582         * tests/test-isnan.c (NaN): New function/macro.
3583         (main): Use it instead of 0.0 / 0.0.
3584         * tests/test-vasnprintf-posix.c (NaN): New function/macro.
3585         (test_function): Use it instead of 0.0 / 0.0.
3586         * tests/test-vasprintf-posix.c (NaN): New function/macro.
3587         (test_function): Use it instead of 0.0 / 0.0.
3588         * tests/test-snprintf-posix.h (NaN): New function/macro.
3589         (test_function): Use it instead of 0.0 / 0.0.
3590         * tests/test-sprintf-posix.h (NaN): New function/macro.
3591         (test_function): Use it instead of 0.0 / 0.0.
3592         * tests/test-fprintf-posix.h (NaN): New function/macro.
3593         (test_function): Use it instead of 0.0 / 0.0.
3594         * tests/test-printf-posix.h (NaN): New function/macro.
3595         (test_function): Use it instead of 0.0 / 0.0.
3596
3597         * lib/isnan.c (FUNC): Work around a DEC C compiler bug.
3598
3599 2007-03-25  Bruno Haible  <bruno@clisp.org>
3600
3601         * lib/glob_.h: Include <sys/stat.h>. Avoids warnings on AIX 5.1.
3602
3603 2007-03-25  Bruno Haible  <bruno@clisp.org>
3604
3605         * lib/regexec.c (merge_state_with_log): Make static.
3606
3607 2007-03-25  Bruno Haible  <bruno@clisp.org>
3608
3609         * lib/trigl.c (kernel_rem_pio2): Make static.
3610
3611 2007-03-25  Bruno Haible  <bruno@clisp.org>
3612
3613         * lib/sincosl.c (sincosl_table): Make static.
3614
3615 2007-03-25  Bruno Haible  <bruno@clisp.org>
3616
3617         * lib/argp.h (__restrict): Define to empty, rather than to 'restrict',
3618         if the compiler does not support C99.
3619
3620 2007-03-25  Bruno Haible  <bruno@clisp.org>
3621
3622         * modules/time (Makefile.am): Ensure all rule action lines start with a
3623         tab.
3624
3625 2007-03-24  Bruno Haible  <bruno@clisp.org>
3626
3627         * modules/tsearch-tests: New file.
3628         * tests/test-tsearch.sh: New file.
3629         * tests/test-tsearch.c: New file, mostly copied from glibc.
3630
3631         * modules/search-tests: New file.
3632         * tests/test-search.c: New file.
3633
3634         * modules/search: New file.
3635         * lib/search_.h: New file, incorporating lib/tsearch.h.
3636         * m4/search_h.m4: New file.
3637         * lib/tsearch.h: Remove file.
3638         * lib/tsearch.c: Include search.h instead of tsearch.h.
3639         * m4/tsearch.m4 (gl_FUNC_TSEARCH): Require gl_SEARCH_H_DEFAULTS. Set
3640         HAVE_TSEARCH.
3641         * modules/tsearch (Files): Remove lib/tsearch.h.
3642         (Depends-on): Add search.
3643         (configure.ac): Invoke gl_SEARCH_MODULE_INDICATOR.
3644         (Include): Change tsearch.h into search.h.
3645
3646 2007-03-24  Bruno Haible  <bruno@clisp.org>
3647
3648         * modules/fpucw: New file.
3649         * lib/fpucw.h: New file.
3650         * lib/frexp.c: Include fpucw.h.
3651         (DECL_ROUNDING, BEGIN_ROUNDING, END_ROUNDING): New macros.
3652         (FUNC): Use them.
3653         * lib/printf-frexp.c: Include fpucw.h.
3654         (DECL_ROUNDING, BEGIN_ROUNDING, END_ROUNDING): New macros.
3655         (FUNC): Use them.
3656         * lib/vasnprintf.c: Include fpucw.h.
3657         (VASNPRINTF): Invoke BEGIN/END_LONG_DOUBLE_ROUNDING around the
3658         'long double' calculations.
3659         * tests/test-frexpl.c: Include fpucw.h.
3660         (main): Invoke BEGIN_LONG_DOUBLE_ROUNDING.
3661         * tests/test-printf-frexpl.c: Include fpucw.h.
3662         (main): Invoke BEGIN_LONG_DOUBLE_ROUNDING.
3663         * modules/frexpl (Depends-on): Add fpucw.
3664         * modules/printf-frexpl (Depends-on): Likewise.
3665         * modules/fprintf-posix (Depends-on): Likewise.
3666         * modules/snprintf-posix (Depends-on): Likewise.
3667         * modules/sprintf-posix (Depends-on): Likewise.
3668         * modules/vasnprintf-posix (Depends-on): Likewise.
3669         * modules/vasprintf-posix (Depends-on): Likewise.
3670         * modules/vfprintf-posix (Depends-on): Likewise.
3671         * modules/vsnprintf-posix (Depends-on): Likewise.
3672         * modules/vsprintf-posix (Depends-on): Likewise.
3673         * modules/frexpl-tests (Depends-on): Likewise.
3674         * modules/printf-frexpl-tests (Depends-on): Likewise.
3675
3676 2007-03-24  Bruno Haible  <bruno@clisp.org>
3677
3678         * lib/float+.h: New file.
3679         * lib/isnan.c: Include float+.h.
3680         (SIZE): New macro.
3681         (FUNC): Compare only SIZE bytes of the value.
3682         * lib/vasnprintf.c: Include float+.h.
3683         (VASNPRINTF): When comparing agains +0.0L or +0.0, compare only
3684         SIZEOF_LDBL or SIZEOF_DBL bytes.
3685         * modules/isnan-nolibm (Files): Add lib/float+.h.
3686         * modules/isnanl-nolibm (Files): Add lib/float+.h.
3687         * modules/isnanl (Files): Add lib/float+.h.
3688         * modules/vasnprintf (Files): Add lib/float+.h.
3689
3690 2007-03-24  Bruno Haible  <bruno@clisp.org>
3691
3692         * lib/vasnprintf.c [!HAVE_LONG_DOUBLE]: Include printf-frexp.h. Don't
3693         include isnanl-nolibm.h.
3694
3695 2007-03-24  Bruno Haible  <bruno@clisp.org>
3696
3697         * tests/test-read-file.c (main): Don't produce spurious output for
3698         expected situations. Make the test fail if it encountered unexpected
3699         results.
3700
3701 2007-03-24  Bruno Haible  <bruno@clisp.org>
3702
3703         * m4/locale-fr.m4 (gt_LOCALE_FR): Remove the special-casing of NetBSD,
3704         since its fr_FR.ISO8859-1 locale wouldn't pass the tests.
3705
3706 2007-03-24  Bruno Haible  <bruno@clisp.org>
3707
3708         * m4/locale-fr.m4 (gt_LOCALE_FR, gt_LOCALE_FR_UTF8): Fix last change.
3709
3710 2007-03-24  Bruno Haible  <bruno@clisp.org>
3711
3712         * modules/unistr/base (Depends-on): Remove utf8-ucs4-unsafe,
3713         utf16-ucs4-unsafe, utf8-ucs4, utf16-ucs4, ucs4-utf8, ucs4-utf16.
3714
3715         * modules/unistr/u8-mbtouc: Add source files from module utf8-ucs4.
3716         * modules/utf8-ucs4: Turn into a symbolic link to module
3717         unistr/u8-mbtouc.
3718
3719         * modules/unistr/u8-mbtouc-unsafe: Add source files from module
3720         utf8-ucs4-unsafe.
3721         * modules/utf8-ucs4-unsafe: Turn into a symbolic link to module
3722         unistr/u8-mbtouc-unsafe.
3723
3724         * modules/unistr/u16-mbtouc: Add source files from module utf16-ucs4.
3725         * modules/utf16-ucs4: Turn into a symbolic link to module
3726         unistr/u16-mbtouc.
3727
3728         * modules/unistr/u16-mbtouc-unsafe: Add source files from module
3729         utf16-ucs4-unsafe.
3730         * modules/utf16-ucs4-unsafe: Turn into a symbolic link to module
3731         unistr/u16-mbtouc-unsafe.
3732
3733         * modules/unistr/u8-uctomb: Add source files from module utf4-utf8.
3734         * modules/ucs4-utf8: Turn into a symbolic link to module
3735         unistr/u8-ubtomb.
3736
3737         * modules/unistr/u16-uctomb: Add source files from module utf4-utf16.
3738         * modules/ucs4-utf16: Turn into a symbolic link to module
3739         unistr/u16-ubtomb.
3740
3741 2007-03-24  Bruno Haible  <bruno@clisp.org>
3742
3743         * lib/unistr/u8-mbtouc-aux.c: Renamed from lib/unistr/utf8-ucs4.c.
3744         Enable the function only if HAVE_INLINE.
3745         * lib/unistr/u8-mbtouc-unsafe-aux.c: Renamed from
3746         lib/unistr/utf8-ucs4-unsafe.c. Enable the function only if HAVE_INLINE.
3747         * lib/unistr/u16-mbtouc-aux.c: Renamed from lib/unistr/utf16-ucs4.c.
3748         Enable the function only if HAVE_INLINE.
3749         * lib/unistr/u16-mbtouc-unsafe-aux.c: Renamed from
3750         lib/unistr/utf16-ucs4-unsafe.c. Enable the function only if HAVE_INLINE.
3751         * lib/unistr/u8-uctomb-aux.c: Renamed from lib/unistr/ucs4-utf8.c.
3752         Enable the function only if HAVE_INLINE.
3753         * lib/unistr/u16-uctomb-aux.c: Renamed from lib/unistr/ucs4-utf16.c.
3754         Enable the function only if HAVE_INLINE.
3755         * modules/utf8-ucs4: Update.
3756         * modules/utf8-ucs4-unsafe: Update.
3757         * modules/utf16-ucs4: Update.
3758         * modules/utf16-ucs4-unsafe: Update.
3759         * modules/ucs4-utf8: Update.
3760         * modules/ucs4-utf16: Update.
3761
3762 2007-03-24  Bruno Haible  <bruno@clisp.org>
3763
3764         * lib/utf8-ucs4.h: Remove file.
3765         * lib/utf8-ucs4-unsafe.h: Remove file.
3766         * lib/utf16-ucs4.h: Remove file.
3767         * lib/utf16-ucs4-unsafe.h: Remove file.
3768         * lib/ucs4-utf8.h: Remove file.
3769         * lib/ucs4-utf16.h: Remove file.
3770         * lib/unistr.h: Include their previous contents.
3771         * m4/utf-ucs4.m4: Remove file.
3772         * m4/ucs4-utf.m4: Remove file.
3773         * modules/utf8-ucs4 (Files): Remove lib/utf8-ucs4.h.
3774         (Depends-on): Add unistr/base.
3775         (configure.ac): Remove gl_UTF_UCS4.
3776         (Makefile.am): Update.
3777         (Include): Change to unistr.h.
3778         * modules/utf8-ucs4-unsafe (Files): Remove lib/utf8-ucs4-unsafe.h.
3779         (Depends-on): Add unistr/base.
3780         (configure.ac): Remove gl_UTF_UCS4.
3781         (Makefile.am): Update.
3782         (Include): Change to unistr.h.
3783         * modules/utf16-ucs4 (Files): Remove lib/utf16-ucs4.h.
3784         (Depends-on): Add unistr/base.
3785         (configure.ac): Remove gl_UTF_UCS4.
3786         (Makefile.am): Update.
3787         (Include): Change to unistr.h.
3788         * modules/utf16-ucs4-unsafe (Files): Remove lib/utf16-ucs4-unsafe.h.
3789         (Depends-on): Add unistr/base.
3790         (configure.ac): Remove gl_UTF_UCS4.
3791         (Makefile.am): Update.
3792         (Include): Change to unistr.h.
3793         * modules/ucs4-utf8 (Files): Remove lib/ucs4-utf8.h.
3794         (Depends-on): Add unistr/base.
3795         (configure.ac): Remove gl_UCS4_UTF.
3796         (Makefile.am): Update.
3797         (Include): Change to unistr.h.
3798         * modules/ucs4-utf16 (Files): Remove lib/ucs4-utf16.h.
3799         (Depends-on): Add unistr/base.
3800         (configure.ac): Remove gl_UCS4_UTF.
3801         (Makefile.am): Update.
3802         (Include): Change to unistr.h.
3803         * lib/unistr/utf8-ucs4.c: Include unistr.h instead of utf8-ucs4.h.
3804         * lib/unistr/utf8-ucs4-unsafe.c: Include unistr.h instead of
3805         utf8-ucs4-unsafe.h.
3806         * lib/unistr/utf16-ucs4.c: Include unistr.h instead of utf16-ucs4.h.
3807         * lib/unistr/utf16-ucs4-unsafe.c: Include unistr.h instead of
3808         utf16-ucs4-unsafe.h.
3809         * lib/unistr/ucs4-utf8.c: Include unistr.h instead of ucs4-utf8.h.
3810         * lib/unistr/ucs4-utf16.c: Include unistr.h instead of ucs4-utf16.h.
3811         * lib/unistr/u8-chr.c: Don't include ucs4-utf8.h.
3812         * lib/unistr/u8-strchr.c: Likewise.
3813         * lib/unistr/u8-strrchr.c: Likewise.
3814         * lib/unistr/u16-chr.c: Don't include ucs4-utf16.h.
3815         * lib/unistr/u16-strchr.c: Likewise.
3816         * lib/unistr/u16-strrchr.c: Likewise.
3817         * lib/striconveh.c: Update.
3818         * lib/linebreak.c: Update.
3819
3820 2007-03-24  Bruno Haible  <bruno@clisp.org>
3821
3822         * lib/argp-help.c (fill_in_uparams, canon_doc_option): Cast the
3823         arguments of isspace, isalpha, isalnum, isdigit to 'unsigned char'.
3824
3825 2007-03-22  Bruno Haible  <bruno@clisp.org>
3826
3827         * lib/strptime.c (__strptime_internal): Use ANSI C syntax.
3828
3829 2007-03-23  Paul Eggert  <eggert@cs.ucla.edu>
3830
3831         * MODULES.html.sh (File system functions): New module write-any-file.
3832         * modules/write-any-file, lib/write-any-file.c, lib/write-any-file.h:
3833         * m4/write-any-file.m4: New files.
3834
3835 2007-03-23  Eric Blake  <ebb9@byu.net>
3836
3837         * gnulib-tool: Rearrange space-tab sequences, since some editors
3838         like to eat them.
3839
3840 2007-03-23  Eric Blake  <ebb9@byu.net>
3841
3842         * lib/version-etc.c (version_etc_va): Update license wording to
3843         be more concise.  Recommended by Richard Stallman.
3844
3845 2007-03-22  Bruno Haible  <bruno@clisp.org>
3846
3847         * lib/poll.c (MSG_PEEK): New fallback definition.
3848
3849 2007-03-22  Bruno Haible  <bruno@clisp.org>
3850
3851         * modules/sys_socket-tests (configure.ac): Check for shutdown function.
3852         * tests/test-sys_socket.c (a): Test only if shutdown() exists.
3853         (main): Update.
3854         Fixes a compilation error on BeOS.
3855
3856 2007-03-22  Bruno Haible  <bruno@clisp.org>
3857
3858         * modules/frexpl-tests: New file.
3859         * tests/test-frexpl.c: New file.
3860
3861         * modules/frexpl: New file.
3862         * m4/frexpl.m4: New file.
3863         * modules/math (Makefile.am): Also substitute GNULIB_FREXPL into math.h.
3864         * lib/math_.h (frexpl): Test GNULIB_FREXPL instead of GNULIB_MATHL.
3865         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_FREXPL.
3866         * modules/mathl (Files): Remove lib/frexpl.c, lib/frexp.c.
3867         (Depends-on): Add frexpl. Remove isnanl-nolibm.
3868         * m4/mathl.m4 (gl_FUNC_LONG_DOUBLE_MATH): Don't test for frexpl.
3869
3870 2007-03-22  Bruno Haible  <bruno@clisp.org>
3871
3872         * lib/frexpl.c: Share code with lib/frexp.c.
3873         * modules/mathl (Files): Add lib/frexp.c.
3874         (Depends-on): Add isnanl-nolibm.
3875
3876 2007-03-22  Bruno Haible  <bruno@clisp.org>
3877
3878         * modules/printf-frexp (Files): Add m4/frexp.m4.
3879         * m4/printf-frexp.m4 (gl_FUNC_PRINTF_FREXP): Define HAVE_FREXP_IN_LIBC
3880         only if the found frexp function actually works.
3881
3882 2007-03-22  Bruno Haible  <bruno@clisp.org>
3883
3884         * lib/frexp.c: Remove older implementation that uses divisions.
3885
3886 2007-03-21  Bruno Haible  <bruno@clisp.org>
3887
3888         * modules/frexp-tests: New file.
3889         * tests/test-frexp.c: New file.
3890
3891         * modules/frexp: New file.
3892         * lib/frexp.c: New file.
3893         * m4/frexp.m4: New file.
3894         * lib/math_.h (frexp): New declaration.
3895         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Also initialize GNULIB_FREXP and
3896         REPLACE_FREXP.
3897         * modules/math (math.h): Also substitute GNULIB_FREXP, REPLACE_FREXP.
3898
3899 2007-03-21  Bruno Haible  <bruno@clisp.org>
3900
3901         * modules/isnanl-tests: New file.
3902         * tests/test-isnanl.c: New file.
3903
3904         * modules/isnanl: New file.
3905         * lib/isnanl.h: New file.
3906         * m4/isnanl.m4 (gl_FUNC_ISNANL): New macro.
3907         (gl_FUNC_ISNANL_NO_LIBM): Invoke gl_HAVE_ISNANL_NO_LIBM,
3908         gl_FUNC_ISNANL_WORKS.
3909         (gl_HAVE_ISNANL_NO_LIBM, gl_HAVE_ISNANL_IN_LIBM, gl_FUNC_ISNANL_WORKS):
3910         New macros.
3911
3912 2007-03-21  Bruno Haible  <bruno@clisp.org>
3913
3914         * modules/isnanl-nolibm (Files): Add lib/isnanl-nolibm.h, remove
3915         lib/isnanl.h.
3916         (Include): Update.
3917         * lib/isnanl-nolibm.h: Renamed from lib/isnanl.h.
3918         * lib/vasnprintf.c: Update.
3919         * modules/isnanl-nolibm-tests (Files): Add tests/test-isnanl-nolibm.c,
3920         tests/test-isnanl.h, remove tests/test-isnanl.c.
3921         (Makefile.am): Update.
3922         * tests/test-isnanl-nolibm.c: New file.
3923         * tests/test-isnanl.h: New file.
3924         * tests/test-isnanl.c: Remove file.
3925
3926 2007-03-21  Jim Meyering  <jim@meyering.net>
3927
3928         When trying to open ".", treat ESTALE like EACCES.
3929         * lib/savewd.c (savewd_save): Resort to forking not just upon
3930         failure with EACCES, but also when errno is ESTALE.
3931
3932 2007-03-20  Bruno Haible  <bruno@clisp.org>
3933
3934         * lib/string_.h (strndup): Enable declaration also if HAVE_STRNDUP.
3935         Needed on AIX 5.1. Reported by Matthew Woehlke.
3936
3937 2007-03-19  Paul Eggert  <eggert@cs.ucla.edu>
3938
3939         Suggestions by Bruno Haible:
3940         * lib/acl-internal.h: Include "gettext.h" rather than rolling
3941         our own.
3942         (ACL_NOT_WELL_SUPPORTED): Parenthesize arg when used.
3943         * modules/acl (Depends-on): Add gettext.
3944
3945 2007-03-19  Bruno Haible  <bruno@clisp.org>
3946
3947         * modules/iconvme: Remove file.
3948         * lib/iconvme.h: Remove file.
3949         * lib/iconvme.c: Remove file.
3950         * m4/iconvme.m4: Remove file.
3951
3952 2007-03-19  Bruno Haible  <bruno@clisp.org>
3953
3954         * doc/relocatable-maint.texi: Break long shell script line.
3955         Suggested by Thien-Thi Nguyen <ttn@gnuvola.org>.
3956
3957 2007-03-19  Paul Eggert  <eggert@cs.ucla.edu>
3958
3959         Add limited support for Solaris 10 ZFS-style ACLs: just enough to
3960         handle file_has_acl.
3961         * lib/acl-internal.h, lib/acl_entries.c, lib/file-has-acl.c: New files.
3962         * lib/acl.c: Move header inclusions and related macro defns into
3963         lib/acl-internal.h.
3964         (S_ISLNK): Remove defn, since that's now done for us.
3965         (file_has_acl): Move to lib/file-has-acl.c.
3966         Call acl_trivial if available.  This is the crucial part of the fix.
3967         (acl_entries): Move to lib/acl_entries.c.  Now extern, since it's
3968         shared within the library.  Rewrite a bit, partly to make it compatible
3969         with the GNU coding style.
3970         * m4/acl.m4 (AC_FUNC_ACL): Add AC_LIBOBJ([file-has-acl]).
3971         Remove unnecessary double-quotes.
3972         Don't test for acl_to_text; the build will catch that.
3973         Replace acl_entries if it doesn't exist and it is needed.
3974         Check for -lsec and acl_trivial (as used on Solaris 10).
3975         * modules/acl (Files): Add lib/acl-internal.h, lib/acl_entries.c,
3976         lib/file-has-acl.c.
3977         (Depends-on): Add sys_stat, for S_ISLNK.
3978
3979 2007-03-19  Ben Pfaff  <blp@gnu.org>
3980
3981         * doc/gnulib.texi: Fix typos.
3982         Suggested by Thien-Thi Nguyen <ttn@gnuvola.org>.
3983
3984 2007-03-19  Paul Eggert  <eggert@cs.ucla.edu>
3985
3986         * lib/getcwd.c (__getcwd): Remove redundant comparison of buf to NULL.
3987         If size is zero here, buf must be zero.
3988
3989 2007-03-19  Simon Josefsson  <simon@josefsson.org>
3990
3991         * des.c: Remove weak_keys_chksum.  Reported by Bruno Haible
3992         <bruno@clisp.org>.
3993
3994 2007-03-18  Bruno Haible  <bruno@clisp.org>
3995
3996         * lib/vasnprintf.c (VASNPRINTF): Undo first part of last patch.
3997         Suggested by Eric Blake.
3998
3999 2007-03-18  Ben Pfaff  <blp@gnu.org>
4000
4001         * doc/relocatable.texi: Recommend using as prefix a directory
4002         that does not exist and will never be created.  Based on
4003         discussion with Bruno Haible, Ralf Wildenhues, Matthew Woehlke,
4004         and others.
4005
4006 2007-03-17  Bruno Haible  <bruno@clisp.org>
4007
4008         * lib/fchownat.c: Include lchown.h.
4009
4010 2007-03-17  Bruno Haible  <bruno@clisp.org>
4011
4012         Fix endless loop when the given allocated size was > INT_MAX.
4013         * lib/vasnprintf.c (EOVERFLOW): New fallback definition.
4014         (VASNPRINTF): Fail with EOVERFLOW when the given allocated size is
4015         larger than INT_MAX, or when it grow to a value larger than INT_MAX.
4016         * lib/vsprintf.c (vsprintf): Don't pass a size > INT_MAX to vasnprintf.
4017         * lib/sprintf.c (sprintf): Likewise.
4018
4019 2007-03-17  Bruno Haible  <bruno@clisp.org>
4020
4021         * tests/test-argp-2.sh (func_compare): Output a context diff.
4022
4023 2007-03-17  Bruno Haible  <bruno@clisp.org>
4024
4025         * m4/locale-fr.m4 (gt_LOCALE_FR, gt_LOCALE_FR_UTF8): Check also the
4026         locale's decimal-point character.
4027
4028 2007-03-17  Bruno Haible  <bruno@clisp.org>
4029
4030         * lib/vasnprintf.c (VASNPRINTF): Clear out the memory used for arg_mem
4031         before comparing it. Needed because on some platforms (e.g. x86) a
4032         'long double' occupies less bytes than sizeof (long double).
4033
4034 2007-03-17  Bruno Haible  <bruno@clisp.org>
4035
4036         * tests/test-crc.c (main): Make printf statements 64-bit clean.
4037         * tests/test-gc-pbkdf2-sha1.c (main): Likewise.
4038         * tests/test-getaddrinfo.c (simple): Likewise.
4039         * tests/test-read-file.c (main): Likewise.
4040
4041 2007-03-17  Bruno Haible  <bruno@clisp.org>
4042
4043         * tests/test-dirname.c (main): Make printf statements 64-bit clean.
4044
4045 2007-03-17  Bruno Haible  <bruno@clisp.org>
4046
4047         * tests/test-xvasprintf.c (test_xvasprintf, test_xasprintf): Remove
4048         unused variable.
4049
4050 2007-03-17  Bruno Haible  <bruno@clisp.org>
4051
4052         * tests/test-c-strcasecmp.c: Include c-strcase.h.
4053         * tests/test-c-strncasecmp.c: Likewise.
4054
4055 2007-03-17  Bruno Haible  <bruno@clisp.org>
4056
4057         * modules/stdlib (Depends-on): Add unistd.
4058         * lib/stdlib_.h: Include <unistd.h> if mkstemp is desired.
4059         Needed for MacOS X 10.3.
4060
4061 2007-03-17  Bruno Haible  <bruno@clisp.org>
4062
4063         * lib/unistr/u-strdup.h: Include <stdlib.h>.
4064
4065 2007-03-17  Bruno Haible  <bruno@clisp.org>
4066
4067         * lib/unistr/u-cpy-alloc.h: Include <stdlib.h>.
4068
4069 2007-03-17  Bruno Haible  <bruno@clisp.org>
4070
4071         * gnulib-tool (func_import): Update .cvsignore and .gitignore files
4072         to reflect files copied from gnulib (with or without modifications).
4073         Suggested by Jim Meyering.
4074
4075 2007-03-17  Eric Blake  <ebb9@byu.net>
4076
4077         * NEWS: Document stdlib change from 2007-02-18.
4078
4079 2007-03-17  Jim Meyering  <jim@meyering.net>
4080
4081         Detect use of AC_CONFIG_AUX_DIR also when its argument is quoted.
4082         * build-aux/bootstrap: Put ""s around use of $build_aux, in case
4083         someone uses a name containing shell meta-characters.
4084         Reported by Alfred M. Szmidt.
4085
4086         * build-aux/bootstrap: Don't use \> in grep regexp.  For HP-UX.
4087
4088 2007-03-16  Alfred M. Szmidt  <ams@gnu.org>
4089
4090         * build-aux/bootstrap (with_gettext): New variable.  Run autopoint
4091         and copy gettext configuration files only if configure.ac contains
4092         a use of AM_GNU_GETTEXT_VERSION.
4093
4094 2007-03-16  Alfred M. Szmidt  <ams@gnu.org>
4095
4096         * build-aux/bootstrap (gnulib_name): New variable.
4097         (gnulib_tool_options): Use it.
4098
4099 2007-03-13  Simon Josefsson  <simon@josefsson.org>
4100
4101         * tests/test-des.c: Use new namespace.
4102
4103 2007-03-15  Bruno Haible  <bruno@clisp.org>
4104
4105         * lib/dummy.c (gl_dummy_symbol): Renamed from 'dummy'.
4106         Reported by James Youngman <jay@gnu.org>.
4107
4108 2007-03-15  Bruno Haible  <bruno@clisp.org>
4109
4110         * lib/glob.c (glob): Add 'restrict' so that prototype matches the
4111         declared prototype. Needed with cc on OSF/1 5.1.
4112
4113 2007-03-15  Bruno Haible  <bruno@clisp.org>
4114
4115         * lib/gl_list.h (gl_listelement_dispose_fn): New type.
4116         (gl_list_create_empty, gl_list_create): Add dispose_fn argument.
4117         (struct gl_list_implementation): Add dispose_fn argument to the
4118         'create_empty', 'create' methods.
4119         (struct gl_list_impl_base): Add field 'dispose_fn'.
4120         * lib/gl_list.c (gl_list_create_empty, gl_list_create): Add dispose_fn
4121         argument.
4122         * lib/gl_array_list.c (gl_array_create_empty, gl_array_create): Add
4123         dispose_fn argument.
4124         (gl_array_remove_node, gl_array_remove_at, gl_array_list_free): Call
4125         dispose_fn on the dropped values.
4126         * lib/gl_carray_list.c (gl_carray_create_empty, gl_carray_create): Add
4127         dispose_fn argument.
4128         (gl_carray_remove_at, gl_carray_list_free): Call dispose_fn on the
4129         dropped values.
4130         * lib/gl_anyavltree_list2.h (gl_tree_create): Add dispose_fn argument.
4131         (gl_tree_remove_node): Call dispose_fn on the dropped value.
4132         * lib/gl_anyrbtree_list2.h (gl_tree_create): Add dispose_fn argument.
4133         (gl_tree_remove_node): Call dispose_fn on the dropped value.
4134         * lib/gl_anytree_list2.h (gl_tree_create_empty): Add dispose_fn
4135         argument.
4136         (gl_tree_list_free): Call dispose_fn on the dropped values.
4137         * lib/gl_anytreehash_list2.h (gl_tree_list_free): Call dispose_fn on
4138         the dropped values.
4139         * lib/gl_anylinked_list2.h (gl_linked_create_empty, gl_linked_create):
4140         Add dispose_fn argument.
4141         (gl_linked_remove_node, gl_linked_remove_at, gl_linked_list_free):
4142         Call dispose_fn on the dropped values.
4143         * lib/gl_sublist.c (gl_sublist_create_empty, gl_sublist_create_fill):
4144         Add dispose_fn argument.
4145         (gl_sublist_create): Initialize the 'dispose_fn' field.
4146         * lib/clean-temp.c (create_temp_dir, register_fd): Update.
4147         * tests/test-array_list.c (main): Update.
4148         * tests/test-carray_list.c (main): Update.
4149         * tests/test-avltree_list.c (main): Update.
4150         * tests/test-rbtree_list.c (main): Update.
4151         * tests/test-avltreehash_list.c (main): Update.
4152         * tests/test-rbtreehash_list.c (main): Update.
4153         * tests/test-linked_list.c (main): Update.
4154         * tests/test-linkedhash_list.c (main): Update.
4155         * tests/test-array_oset.c (main): Update.
4156
4157 2007-03-15  Bruno Haible  <bruno@clisp.org>
4158
4159         * lib/gl_oset.h (gl_setelement_dispose_fn): New type.
4160         (gl_oset_create_empty): Add dispose_fn argument.
4161         (struct gl_oset_implementation): Add dispose_fn argument to
4162         'create_empty' method.
4163         (struct gl_oset_impl_base): Add dispose_fn field.
4164         * lib/gl_oset.c (gl_oset_create_empty): Add dispose_fn argument.
4165         * lib/gl_array_oset.c (gl_array_create_empty): Add dispose_fn argument.
4166         (gl_array_remove_at, gl_array_free): Call dispose_fn on the dropped
4167         values.
4168         * lib/gl_anytree_oset.h (gl_tree_create_empty): Add dispose_fn argument.
4169         (gl_tree_oset_free): Call dispose_fn on the dropped values.
4170         * lib/gl_avltree_oset.c (gl_tree_remove_node): Call dispose_fn on the
4171         dropped value.
4172         * lib/gl_rbtree_oset.c (gl_tree_remove_node): Call dispose_fn on the
4173         dropped value.
4174         * tests/test-array_oset.c (main): Update.
4175         * tests/test-avltree_oset.c (main): Update.
4176         * tests/test-rbtree_oset.c (main): Update.
4177         * lib/gl_anytreehash_list1.h (add_to_bucket): Update.
4178
4179 2007-03-13  Bruno Haible  <bruno@clisp.org>
4180
4181         * tests/test-stdbool.c (i): Update after last patch.
4182
4183 2007-03-12  Bruno Haible  <bruno@clisp.org>
4184
4185         * lib/quotearg.c: Include <wctype.h> early, before the definition of
4186         the iswprint macro. Needed on Solaris 2.5.1.
4187
4188 2007-03-12  Bruno Haible  <bruno@clisp.org>
4189
4190         * tests/test-printf-frexp.c (main): Declare x as volatile.
4191
4192 2007-03-12  Simon Josefsson  <simon@josefsson.org>
4193
4194         * doc/gnulib.texi (Build robot for gnulib): New section.
4195
4196 2007-03-12  Jim Meyering  <jim@meyering.net>
4197
4198         * build-aux/bootstrap: New file.
4199         * build-aux/bootstrap.conf: New file, from coreutils.
4200
4201 2007-03-11  Bruno Haible  <bruno@clisp.org>
4202
4203         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Require AC_C_INLINE.
4204
4205 2007-03-12  Simon Josefsson  <simon@josefsson.org>
4206
4207         * lib/des.h, lib/des.c, lib/gc-gnulib.c: Use gl_ namespace, to
4208         avoid collisions with 'des_setkey'.  Reported by Bruno Haible
4209         <bruno@clisp.org>.  Also change 'tripledes_' to '3des_'.
4210
4211 2007-03-11  Bruno Haible  <bruno@clisp.org>
4212
4213         * m4/locale-tr.m4 (gt_LOCALE_TR_UTF8): If the test program fails to
4214         compile, set LOCALE_TR_UTF8 to 'none' instead of empty.
4215
4216 2007-03-11  Bruno Haible  <bruno@clisp.org>
4217
4218         * lib/stdint_.h (INT64_MIN, INTMAX_MIN): Avoid using the ~INT..._MAX
4219         formula. Needed for SunPRO C 5.0.
4220
4221 2007-03-11  Bruno Haible  <bruno@clisp.org>
4222
4223         * modules/long-options (Depends-on): Add getopt.
4224
4225 2007-03-11  Bruno Haible  <bruno@clisp.org>
4226
4227         * modules/modechange (Depends-on): Add stdbool.
4228
4229 2007-03-11  Bruno Haible  <bruno@clisp.org>
4230
4231         * modules/i-ring (Depends-on): Add stdbool.
4232
4233 2007-03-11  Bruno Haible  <bruno@clisp.org>
4234
4235         * modules/gc-des (Depends-on): Add stdbool.
4236
4237 2007-03-11  Bruno Haible  <bruno@clisp.org>
4238
4239         * m4/mktime.m4 (gl_PREREQ_MKTIME): Require AC_C_INLINE.
4240
4241 2007-03-11  Bruno Haible  <bruno@clisp.org>
4242
4243         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Require AC_C_RESTRICT.
4244
4245 2007-03-11  Bruno Haible  <bruno@clisp.org>
4246
4247         * lib/unistr/u32-mbtouc-unsafe.c (u32_mbtouc_unsafe): Fix syntax error.
4248
4249 2007-03-11  Bruno Haible  <bruno@clisp.org>
4250
4251         * lib/vasnprintf.c (sprintf): Undefine.
4252
4253 2007-03-11  Bruno Haible  <bruno@clisp.org>
4254
4255         * lib/isnan.c (rpl_isnan, rpl_isnanl): Work around bug regarding
4256         initializers in SunPRO C and Compaq C compilers.
4257
4258 2007-03-11  Bruno Haible  <bruno@clisp.org>
4259
4260         * lib/gl_array_oset.c (gl_array_iterator_next): Make pointer
4261         decrementing code ANSI C compliant.
4262
4263 2007-03-11  Bruno Haible  <bruno@clisp.org>
4264
4265         * lib/dummy.c [__sun]: Define a dummy variable, not just a typedef.
4266         Needed for Solaris 2.5.1 ranlib and SunPRO C 5.0.
4267
4268 2007-03-11  Bruno Haible  <bruno@clisp.org>
4269
4270         * tests/test-stdbool.c (s, d, e, xlcbug): Disable checks that gnulib's
4271         <stdbool.h> substitute doesn't pass.
4272
4273 2007-03-11  Bruno Haible  <bruno@clisp.org>
4274
4275         * lib/vasnprintf.c (snprintf): Undefine. Avoids an endless recursion.
4276
4277 2007-03-11  Bruno Haible  <bruno@clisp.org>
4278
4279         * gnulib-tool (func_create_megatestdir): Create also an autobuild
4280         script, for submission to autobuild.josefsson.org.
4281
4282 2007-03-10  Bruno Haible  <bruno@clisp.org>
4283
4284         * modules/canonicalize-lgpl-tests: New file.
4285         * tests/test-canonicalize-lgpl.sh: New file.
4286         * tests/test-canonicalize-lgpl.c: New file.
4287
4288         * modules/c-strcase-tests: New file.
4289         * tests/test-c-strcase.sh: New file.
4290         * tests/test-c-strcasecmp.c: New file.
4291         * tests/test-c-strncasecmp.c: New file.
4292
4293         * modules/atexit-tests: New file.
4294         * tests/test-atexit.sh: New file.
4295         * tests/test-atexit.c: New file.
4296
4297 2007-03-10  Bruno Haible  <bruno@clisp.org>
4298
4299         * tests/test-binary-io.sh: Use temporary filenames that are not so
4300         likely to clash with those of other tests (in a parallel make).
4301         * tests/test-binary-io.c: Likewise.
4302
4303 2007-03-10  Bruno Haible  <bruno@clisp.org>
4304
4305         * lib/fseterr.c (fseterr): Port to Solaris/SPARC64. Deactivate the
4306         fallback; use #error instead.
4307         Suggested by Simon Josefsson.
4308
4309 2007-03-10  Bruno Haible  <bruno@clisp.org>
4310
4311         * gnulib-tool (func_create_testdir): Treat MOSTLYCLEANFILES like
4312         CLEANFILES. Put spaces in each line of $cleaned_files, not only the
4313         first and the last.
4314
4315 2007-03-10  Bruno Haible  <bruno@clisp.org>
4316
4317         * lib/stdint_.h (uint_least64_t): Fix typo in last patch.
4318
4319 2007-03-10  Bruno Haible  <bruno@clisp.org>
4320
4321         * modules/snprintf-posix-tests (EXTRA_DIST): New variable. Needed for
4322         "make distcheck".
4323         * modules/sprintf-posix-tests (EXTRA_DIST): Likewise.
4324         * modules/vsnprintf-posix-tests (EXTRA_DIST): Likewise.
4325         * modules/vsprintf-posix-tests (EXTRA_DIST): Likewise.
4326
4327 2007-03-10  Bruno Haible  <bruno@clisp.org>
4328
4329         * modules/allocsa-tests (test_allocsa_SOURCES): Remove redundant
4330         variable.
4331         * modules/dirname-tests (test_dirname_SOURCES): Remove redundant
4332         variable.
4333
4334 2007-03-09  Eric Blake  <ebb9@byu.net>
4335         and Matthew Woehlke  <mw_triad@users.sourceforge.net>  (tiny change)
4336
4337         * lib/stdint_.h (int64_t, uint64_t): Don't undefine if 64-bit
4338         types are not being provided by gnulib.
4339         (GL_INT64_T, GL_UINT64_T): New witnesses of whether gnulib 64-bit
4340         types are supported.
4341
4342 2007-03-10  Bruno Haible  <bruno@clisp.org>
4343
4344         * lib/stdio_.h (__attribute__): New macro.
4345         (fprintf, vfprintf, printf, vprintf, snprintf, vsnprintf, sprintf,
4346         vsprintf): Specify __attribute__ __format__ for GCC.
4347         Suggested by Eric Blake.
4348
4349 2007-03-09  Bruno Haible  <bruno@clisp.org>
4350
4351         * modules/printf-posix-tests: New file.
4352         * tests/test-printf-posix.sh: New file.
4353         * tests/test-printf-posix.c: New file.
4354
4355         * modules/printf-posix: New file.
4356         * lib/printf.c: New file.
4357         * m4/printf-posix-rpl.m4: New file.
4358         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_PRINTF_POSIX,
4359         REPLACE_PRINTF.
4360         * lib/stdio_.h (printf): New declaration.
4361         (format, __format__, ____printf____, ____scanf____, ____strftime____,
4362         ____strfmon____): New macros.
4363         * modules/stdio (Makefile.am): Substitute also GNULIB_PRINTF_POSIX,
4364         REPLACE_PRINTF.
4365
4366 2007-03-09  Bruno Haible  <bruno@clisp.org>
4367
4368         * tests/test-vasnprintf-posix2.sh: New file.
4369         * tests/test-vasnprintf-posix2.c: New file.
4370         * modules/vasnprintf-posix-tests (Files): Add them and m4/locale-fr.m4.
4371         (configure.ac): Invoke gt_LOCALE_FR and gt_LOCALE_FR_UTF8.
4372         (Makefile.am): Activate test-vasnprintf-posix2.sh.
4373
4374         * lib/vasnprintf.c (VASNPRINTF): For the 'a' and 'A' directives, use
4375         a locale dependent decimal point, rather than always '.'.
4376
4377 2007-03-09  Eric Blake  <ebb9@byu.net>
4378
4379         * lib/stdlib_.h (EXIT_FAILURE): GNU code expects this to be 1, in
4380         spite of platforms like Tandem/NSK that define it to -1.
4381
4382 2007-03-08  Bruno Haible  <bruno@clisp.org>
4383
4384         * modules/vprintf-posix-tests: New file.
4385         * tests/test-vprintf-posix.sh: New file.
4386         * tests/test-vprintf-posix.c: New file.
4387         * tests/test-printf-posix.h: New file.
4388
4389         * modules/vprintf-posix: New file.
4390         * lib/vprintf.c: New file.
4391         * m4/vprintf-posix.m4: New file.
4392         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_VPRINTF_POSIX,
4393         REPLACE_VPRINTF.
4394         * lib/stdio_.h (vprintf): New declaration.
4395         * modules/stdio (Makefile.am): Substitute also GNULIB_VPRINTF_POSIX,
4396         REPLACE_VPRINTF.
4397
4398 2007-03-08  Bruno Haible  <bruno@clisp.org>
4399
4400         * modules/fprintf-posix-tests: New file.
4401         * tests/test-fprintf-posix.sh: New file.
4402         * tests/test-fprintf-posix.c: New file.
4403
4404         * modules/fprintf-posix: New file.
4405         * lib/fprintf.c: New file.
4406         * m4/fprintf-posix.m4: New file.
4407         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FPRINTF_POSIX,
4408         REPLACE_FPRINTF.
4409         * lib/stdio_.h (fprintf): New declaration.
4410         * modules/stdio (Makefile.am): Substitute also GNULIB_FPRINTF_POSIX,
4411         REPLACE_FPRINTF.
4412
4413 2007-03-08  Bruno Haible  <bruno@clisp.org>
4414
4415         * modules/vfprintf-posix-tests: New file.
4416         * tests/test-vfprintf-posix.sh: New file.
4417         * tests/test-vfprintf-posix.c: New file.
4418         * tests/test-fprintf-posix.h: New file.
4419         * tests/test-fprintf-posix.out: New file.
4420
4421         * modules/vfprintf-posix: New file.
4422         * lib/vfprintf.c: New file.
4423         * m4/vfprintf-posix.m4: New file.
4424         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_VFPRINTF_POSIX,
4425         REPLACE_VFPRINTF.
4426         * lib/stdio_.h (vfprintf): New declaration.
4427         * modules/stdio (Makefile.am): Substitute also GNULIB_VFPRINTF_POSIX,
4428         REPLACE_VFPRINTF.
4429
4430 2007-03-08  Bruno Haible  <bruno@clisp.org>
4431
4432         * lib/stdio_.h: Treat __need___FILE like __need_FILE.
4433
4434 2007-03-08  Bruno Haible  <bruno@clisp.org>
4435
4436         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Use 'case' statements
4437         instead of 'expr' invocations.
4438         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
4439         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
4440         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
4441         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
4442         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
4443         Suggested by Paul Eggert.
4444
4445 2007-03-08  Bruno Haible  <bruno@clisp.org>
4446
4447         * modules/fseterr-tests: New file.
4448         * tests/test-fseterr.c: New file.
4449
4450         * modules/fseterr: New file.
4451         * lib/fseterr.h: New file.
4452         * lib/fseterr.c: New file.
4453
4454 2007-03-08  Bruno Haible  <bruno@clisp.org>
4455
4456         * lib/fnmatch_.h: Convert tabs in the middle of lines to spaces.
4457         * lib/getopt_.h: Likewise.
4458         * lib/mbswidth.h: Likewise.
4459         * lib/setenv.h: Likewise.
4460         * lib/vasnprintf.h: Likewise.
4461         * lib/vasprintf.h: Likewise.
4462         * lib/verror.h: Likewise.
4463         * lib/xsetenv.h: Likewise.
4464         * lib/xvasprintf.h: Likewise.
4465
4466 2007-03-08  Jim Meyering  <jim@meyering.net>
4467
4468         * users.txt: Add parted.
4469
4470         * ChangeLog: Restore 1500 lines mistakenly removed from the end.
4471
4472 2007-03-07  Bruno Haible  <bruno@clisp.org>
4473
4474         * m4/printf.m4: Make the shell script snippets copy&pastable.
4475
4476 2007-03-02  Bruno Haible  <bruno@clisp.org>
4477
4478         * lib/netinet_in_.h: New file.
4479         * m4/netinet_in_h.m4 (gl_HEADER_NETINET_IN): Test whether netinet/in.h
4480         is self-contained. Set ABSOLUTE_NETINET_IN_H, HAVE_NETINET_IN_H.
4481         * modules/netinet_in (Files): Add lib/netinet_in_.h.
4482         (Depends-on): Add absolute-header.
4483         (Makefile.am): Substitute ABSOLUTE_NETINET_IN_H, HAVE_NETINET_IN_H
4484         into netinet/in.h.
4485
4486 2007-03-03  Bruno Haible  <bruno@clisp.org>
4487
4488         * lib/sys_select_.h: New file.
4489         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SELECT): Test whether sys/select.h
4490         is self-contained. Set ABSOLUTE_SYS_SELECT_H, HAVE_SYS_SELECT_H.
4491         * modules/sys_select (Files): Add lib/sys_select_.h.
4492         (Depends-on): Add absolute-header.
4493         (Makefile.am): Substitute ABSOLUTE_SYS_SELECT_H, HAVE_SYS_SELECT_H
4494         into sys/select.h.
4495
4496 2007-03-02  Bruno Haible  <bruno@clisp.org>
4497
4498         * lib/socket_.h: If sys/socket.h exists, include that and <sys/types.h>
4499         before it. Turn HAVE_WINSOCK2_H and HAVE_WS2TCPIP_H into configute-time
4500         values.
4501         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Test also whether
4502         <sys/socket.h> is self-contained. Set ABSOLUTE_SYS_SOCKET_H,
4503         HAVE_SYS_SOCKET_H, HAVE_WINSOCK2_H, HAVE_WS2TCPIP_H.
4504         * modules/sys_socket (Depends-on): Add absolute-header.
4505         (Makefile.am): Substitute ABSOLUTE_SYS_SOCKET_H, HAVE_SYS_SOCKET_H,
4506         HAVE_WINSOCK2_H, HAVE_WS2TCPIP_H into sys/socket.h.
4507         (Include): Remove requirement of inclusion of <sys/types.h>.
4508
4509 2007-03-02  Bruno Haible  <bruno@clisp.org>
4510
4511         * lib/byteswap_.h (bswap_32): Fix formula.
4512
4513 2007-03-06  Bruno Haible  <bruno@clisp.org>
4514
4515         * modules/sprintf-posix-tests: New file.
4516         * tests/test-sprintf-posix.c: New file.
4517
4518         * modules/sprintf-posix: New file.
4519         * lib/sprintf.c: New file.
4520         * m4/sprintf-posix.m4: New file.
4521         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_SPRINTF_POSIX,
4522         REPLACE_SPRINTF.
4523         * lib/stdio_.h (sprintf): New declaration.
4524         * modules/stdio (Makefile.am): Substitute also GNULIB_SPRINTF_POSIX,
4525         REPLACE_SPRINTF.
4526
4527 2007-03-06  Bruno Haible  <bruno@clisp.org>
4528
4529         * modules/vsprintf-posix-tests: New file.
4530         * tests/test-vsprintf-posix.c: New file.
4531         * tests/test-sprintf-posix.h: New file.
4532
4533         * modules/vsprintf-posix: New file.
4534         * lib/vsprintf.c: New file.
4535         * m4/vsprintf-posix.m4: New file.
4536         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_VSPRINTF_POSIX,
4537         REPLACE_VSPRINTF.
4538         * lib/stdio_.h (vsprintf): New declaration.
4539         * modules/stdio (Makefile.am): Substitute also GNULIB_VSPRINTF_POSIX,
4540         REPLACE_VSPRINTF.
4541
4542 2007-03-06  Bruno Haible  <bruno@clisp.org>
4543
4544         * modules/vsnprintf (Depend-on): Remove minmax.
4545
4546 2007-03-06  Bruno Haible  <bruno@clisp.org>
4547
4548         * modules/snprintf-posix-tests: New file.
4549         * tests/test-snprintf-posix.c: New file.
4550
4551         * modules/snprintf-posix: New file.
4552         * m4/snprintf-posix.m4: New file.
4553         * m4/snprintf.m4 (gl_REPLACE_SNPRINTF): New macro, extracted from
4554         gl_FUNC_SNPRINTF.
4555         (gl_FUNC_SNPRINTF): Invoke it.
4556         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also REPLACE_SNPRINTF.
4557         * lib/stdio_.h (snprintf): Define as a replacement if REPLACE_SNPRINTF
4558         is set.
4559         * modules/stdio (Makefile.am): Substitute also REPLACE_SNPRINTF.
4560
4561 2007-03-06  Bruno Haible  <bruno@clisp.org>
4562
4563         * modules/vsnprintf-posix-tests: New file.
4564         * tests/test-vsnprintf-posix.c: New file.
4565         * tests/test-snprintf-posix.h: New file.
4566
4567         * modules/vsnprintf-posix: New file.
4568         * m4/vsnprintf-posix.m4: New file.
4569         * m4/vsnprintf.m4 (gl_REPLACE_VSNPRINTF): New macro, extracted from
4570         gl_FUNC_VSNPRINTF.
4571         (gl_FUNC_VSNPRINTF): Invoke it.
4572         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also REPLACE_VSNPRINTF.
4573         * lib/stdio_.h (vsnprintf): Define as a replacement if
4574         REPLACE_VSNPRINTF is set.
4575         * modules/stdio (Makefile.am): Substitute also REPLACE_VSNPRINTF.
4576
4577 2007-03-06  Bruno Haible  <bruno@clisp.org>
4578
4579         * m4/vasnprintf.m4 (gl_REPLACE_VASNPRINTF): Test for vasnprintf here.
4580         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): ... not here.
4581
4582 2007-03-06  Bruno Haible  <bruno@clisp.org>
4583
4584         * lib/math_.h (acosl): Declare also if HAVE_DECL_ACOSL is set.
4585         (asinl): Declare also if HAVE_DECL_ASINL is set.
4586         (atanl): Declare also if HAVE_DECL_ATANL is set.
4587         (ceill): Declare also if HAVE_DECL_CEILL is set.
4588         (cosl): Declare also if HAVE_DECL_COSL is set.
4589         (expl): Declare also if HAVE_DECL_EXPL is set.
4590         (floorl): Declare also if HAVE_DECL_FLOORL is set.
4591         (frexpl): Declare also if HAVE_DECL_FREXPL is set.
4592         (ldexpl): Declare also if HAVE_DECL_LDEXPL is set.
4593         (logl): Declare also if HAVE_DECL_LOGL is set.
4594         (sinl): Declare also if HAVE_DECL_SINL is set.
4595         (sqrtl): Declare also if HAVE_DECL_SQRTL is set.
4596         (tanl): Declare also if HAVE_DECL_TANL is set.
4597         * modules/math (Makefile.am): Substitute the values of HAVE_DECL_*.
4598         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Set HAVE_DECL_* to 1.
4599         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Fix tests for the
4600         declaration of frexpl, ldexpl.
4601         * modules/printf-frexpl (Depends-on): Add math.
4602         * lib/printf-frexp.c (frexpl, ldexpl): Undo last change.
4603
4604 2007-03-05  Bruno Haible  <bruno@clisp.org>
4605
4606         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Also test whether
4607         frexpl and ldexpl are declared.
4608         * lib/printf-frexp.c (frexpl, ldexpl): Provide fallback declarations.
4609
4610 2007-03-05  Bruno Haible  <bruno@clisp.org>
4611
4612         * gnulib-tool (func_get_automake_snippet): Don't synthesize an
4613         EXTRA_lib_SOURCES augmentation for the relocatable-prog-wrapper module.
4614
4615 2007-03-05  Bruno Haible  <bruno@clisp.org>
4616
4617         * lib/stdio_.h: Include <stddef.h>.
4618
4619 2007-03-05  Bruno Haible  <bruno@clisp.org>
4620
4621         * m4/printf.m4 (gl_SNPRINTF_DIRECTIVE_N): New macro.
4622
4623 2007-03-05  Bruno Haible  <bruno@clisp.org>
4624
4625         * m4/printf.m4: Update with info about OpenBSD 3.9, HP-UX 10.20,
4626         NetBSD 4, from Ralf Wildenhues.
4627
4628 2007-03-04  Bruno Haible  <bruno@clisp.org>
4629
4630         * lib/vasprintf.h: Update #if logic for the case when the functions
4631         exist but are overridden.
4632
4633 2007-03-04  Bruno Haible  <bruno@clisp.org>
4634
4635         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Exclude two buggy
4636         implementations: glibc-2.4 and MacOS X 10.3.
4637         * tests/test-vasnprintf-posix.c (test_function): Test also the case
4638         that exhibits the bugs in glibc-2.4 and MacOS X 10.3.
4639         * tests/test-vasprintf-posix.c (test_function): Likewise.
4640
4641 2007-03-04  Bruno Haible  <bruno@clisp.org>
4642
4643         * modules/vasprintf-posix-tests: New file.
4644         * tests/test-vasprintf-posix.c: New file.
4645
4646         * modules/vasprintf-posix: New file.
4647         * lib/vasprintf.h (asprintf, vasprintf): Rename if REPLACE_VASPRINTF is
4648         defined.
4649         * m4/vasprintf-posix.m4: New file.
4650         * m4/vasprintf.m4 (gl_REPLACE_VASPRINTF): New macro, extracted from
4651         gl_FUNC_VASPRINTF.
4652         (gl_FUNC_VASPRINTF): Invoke it.
4653         * m4/vasnprintf.m4 (gl_REPLACE_VASNPRINTF): Define REPLACE_VASNPRINTF
4654         here.
4655         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Not here.
4656
4657 2007-03-04  Bruno Haible  <bruno@clisp.org>
4658
4659         * lib/sys_time_.h: Rename GETTIMEOFDAY_REPLACEMENT to
4660         REPLACE_GETTIMEOFDAY.
4661         * modules/sys_time (Makefile.am): Likewise.
4662         * m4/sys_time_h.m4: Likewise.
4663         * m4/gettimeofday.m4: Likewise.
4664
4665 2007-03-04  Bruno Haible  <bruno@clisp.org>
4666
4667         * modules/vasnprintf-posix-tests: New file.
4668         * tests/test-vasnprintf-posix.c: New file.
4669
4670         * modules/vasnprintf-posix: New file.
4671         * lib/vasnprintf.c: Include isnan.h, isnanl.h, printf-frexp.h,
4672         printf-frexpl.h.
4673         (VASNPRINTF): Handle the 'a' and 'A' directives here, if needed.
4674         * lib/vasnprintf.h (asnprintf, vasnprintf): Rename if
4675         REPLACE_VASNPRINTF is defined.
4676         * m4/vasnprintf.m4 (gl_REPLACE_VASNPRINTF): New macro, extracted from
4677         gl_FUNC_VASNPRINTF.
4678         (gl_FUNC_VASNPRINTF): Invoke it.
4679         * m4/vasnprintf-posix.m4: New file.
4680         * m4/printf.m4: New file.
4681
4682 2007-03-04  Bruno Haible  <bruno@clisp.org>
4683
4684         Compile progreloc.c only if --enable-relocatable is specified.
4685         * m4/relocatable.m4 (gl_RELOCATABLE): Arrange to compile progreloc.c
4686         if --enable-relocatable was specified.
4687         * modules/relocatable-prog (Makefile.am): Remove progreloc.c from
4688         lib_SOURCES.
4689
4690 2007-03-04  Jim Meyering  <jim@meyering.net>
4691
4692         * lib/acl.c (ACL_NOT_WELL_SUPPORTED): New macro.
4693         Use it consistently, rather than enumerating errno constants.
4694
4695 2007-03-04  Bruno Haible  <bruno@clisp.org>
4696
4697         * modules/xvasprintf-tests: New file.
4698         * tests/test-xvasprintf.c: New file.
4699
4700         * modules/vasprintf-tests: New file.
4701         * tests/test-vasprintf.c: New file.
4702
4703         * modules/vasnprintf-tests: New file.
4704         * tests/test-vasnprintf.c: New file.
4705
4706         * modules/vsnprintf-tests: New file.
4707         * tests/test-vsnprintf.c: New file.
4708
4709         * modules/snprintf-tests: New file.
4710         * tests/test-snprintf.c: New file.
4711
4712 2007-03-04  Bruno Haible  <bruno@clisp.org>
4713
4714         Compile relocatable.c only if --enable-relocatable is specified.
4715         * m4/relocatable-lib.m4 (gl_RELOCATABLE_LIBRARY_BODY): Renamed from
4716         gl_RELOCATABLE_LIBRARY.
4717         (gl_RELOCATABLE_LIBRARY, gl_RELOCATABLE_LIBRARY_SEPARATE): New macros.
4718         * m4/relocatable.m4 (gl_RELOCATABLE): Invoke gl_RELOCATABLE_LIBRARY.
4719         (gl_RELOCATABLE_BODY): Require gl_RELOCATABLE_LIBRARY_BODY instead of
4720         gl_RELOCATABLE_LIBRARY.
4721         * modules/relocatable-lib (configure.ac): Invoke gl_RELOCATABLE_LIBRARY.
4722         (Makefile.am): Remove lib_SOURCES.
4723         * modules/relocatable-lib-lgpl (configure.ac): Invoke
4724         gl_RELOCATABLE_LIBRARY.
4725         (Makefile.am): Remove lib_SOURCES.
4726         * modules/relocatable-prog (Makefile.am): Don't compile relocatable.c
4727         always.
4728         * modules/relocatable-prog-wrapper (configure.ac): Invoke
4729         gl_RELOCATABLE_LIBRARY_SEPARATE instead of gl_RELOCATABLE_LIBRARY.
4730
4731 2007-03-04  Bruno Haible  <bruno@clisp.org>
4732
4733         * modules/argmatch-tests: New file.
4734         * tests/test-argmatch.c: New file.
4735
4736         * tests/test-allocsa.c (main): Halve the number of loop runs.
4737
4738         * modules/alloca-opt-tests: New file.
4739         * tests/test-alloca-opt.c: New file.
4740
4741 2007-03-04  Jim Meyering  <jim@meyering.net>
4742
4743         Work around difference between Linux ACLs and Solaris 10 ZFS.
4744         * lib/acl.c (set_acl): Revert to using chmod_or_fchmod also
4745         for EINVAL.
4746
4747 2007-03-03  Bruno Haible  <bruno@clisp.org>
4748
4749         * modules/relocatable-prog (Depends-on): Add back progreloc's
4750         dependencies: canonicalize-lgpl, xalloc, xreadlink, stdbool, unistd.
4751
4752 2007-03-03  Bruno Haible  <bruno@clisp.org>
4753
4754         * modules/relocatable-lib-lgpl: Renamed from modules/relocatable-lib.
4755         * modules/relocatable-lib: New file.
4756
4757 2007-03-03  Bruno Haible  <bruno@clisp.org>
4758
4759         * modules/relocatable-prog: Renamed from modules/relocatable.
4760         * doc/relocatable-maint.texi: Talk about module 'relocatable-prog'.
4761
4762 2007-03-03  Bruno Haible  <bruno@clisp.org>
4763
4764         * modules/relocatable-script (Files): Add doc/relocatable.texi,
4765         m4/relocatable-lib.m4.
4766         (Depends-on): Remove 'relocatable'.
4767         (configure.ac): Add gl_RELOCATABLE_NOP.
4768
4769 2007-03-03  Bruno Haible  <bruno@clisp.org>
4770
4771         * modules/relocatable-prog-wrapper: New file.
4772         * modules/relocatable (Depends-on): Add it. Remove all other
4773         dependencies except progname.
4774         (Files): Remove build-aux/install-reloc, lib/relocwrapper.c.
4775
4776         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE): New macro.
4777         (gl_FUNC_STRERROR): Nop.
4778         * lib/strerror.c: Compile the file only if !HAVE_STRERROR.
4779
4780         * m4/setenv.m4 (gl_FUNC_SETENV_SEPARATE): New macro.
4781         * lib/setenv.c: Compile the file only if _LIBC || !HAVE_SETENV.
4782
4783         * m4/readlink.m4 (gl_FUNC_READLINK_SEPARATE): New macro.
4784         (gl_FUNC_READLINK): Update.
4785
4786         * m4/canonicalize-lgpl.m4 (gl_CANONICALIZE_LGPL_SEPARATE): New macro.
4787
4788 2007-03-03  Bruno Haible  <bruno@clisp.org>
4789
4790         * lib/xreadlink.c: Include <unistd.h> unconditionally.
4791         * modules/xreadlink (Depends-on): Add unistd.
4792         * modules/xreadlink-with-size (Depends-on): Likewise.
4793
4794 2007-03-03  Bruno Haible  <bruno@clisp.org>
4795
4796         * m4/setenv.m4 (gl_FUNC_SETENV, gl_FUNC_UNSETENV): New macros,
4797         extracted from gt_FUNC_SETENV.
4798         (gt_FUNC_SETENV): Remove macro.
4799         * modules/setenv (configure.ac): Add gl_FUNC_SETENV, gl_FUNC_UNSETENV,
4800         remove gt_FUNC_SETENV.
4801
4802 2007-03-03  Bruno Haible  <bruno@clisp.org>
4803
4804         * m4/relocatable-lib.m4 (gl_RELOCATABLE_LIBRARY): Define
4805         ENABLE_RELOCATABLE here.
4806         * m4/relocatable.m4 (gl_RELOCATABLE_BODY): Don't define it here.
4807
4808 2007-03-03  Bruno Haible  <bruno@clisp.org>
4809
4810         * modules/rbtreehash-list-tests (Depends-on): Add progname.
4811         * tests/test-rbtreehash_list.c: Include progname.h.
4812         (main): Call set_program_name.
4813
4814         * modules/rbtree-oset-tests (Depends-on): Add progname.
4815         * tests/test-rbtree_oset.c: Include progname.h.
4816         (main): Call set_program_name.
4817
4818         * modules/rbtree-list-tests (Depends-on): Add progname.
4819         * tests/test-rbtree_list.c: Include progname.h.
4820         (main): Call set_program_name.
4821
4822         * modules/linked-list-tests (Depends-on): Add progname.
4823         * tests/test-linked_list.c: Include progname.h.
4824         (main): Call set_program_name.
4825
4826 2007-03-03  Bruno Haible  <bruno@clisp.org>
4827
4828         * lib/glob-libc.h (_Restrict_): New macro, copied from lib/regex.h.
4829         All uses of __restrict changed to _Restrict_.
4830         * lib/glob_.h (__restrict): Remove macro.
4831
4832 2007-03-02  Bruno Haible  <bruno@clisp.org>
4833
4834         * modules/gettext (configure.ac): Require gettext infrastructure
4835         from version 0.16.1.
4836
4837 2007-03-02  Bruno Haible  <bruno@clisp.org>
4838
4839         * modules/linkedhash-list-tests (Depends-on): Add progname.
4840         * tests/test-linkedhash_list.c: Include progname.h.
4841         (main): Call set_program_name.
4842
4843         * modules/carray-list-tests (Depends-on): Add progname.
4844         * tests/test-carray_list.c: Include progname.h.
4845         (main): Call set_program_name.
4846
4847         * modules/avltreehash-list-tests (Depends-on): Add progname.
4848         * tests/test-avltreehash_list.c: Include progname.h.
4849         (main): Call set_program_name.
4850
4851         * modules/avltree-oset-tests (Depends-on): Add progname.
4852         * tests/test-avltree_oset.c: Include progname.h.
4853         (main): Call set_program_name.
4854
4855         * modules/avltree-list-tests (Depends-on): Add progname.
4856         * tests/test-avltree_list.c: Include progname.h.
4857         (main): Call set_program_name.
4858
4859         * modules/array-oset-tests (Depends-on): Add progname.
4860         * tests/test-array_oset.c: Include progname.h.
4861         (main): Call set_program_name.
4862
4863         * modules/array-list-tests (Depends-on): Add progname.
4864         * tests/test-array_list.c: Include progname.h.
4865         (main): Call set_program_name.
4866
4867         * modules/argp-tests (Depends-on): Add progname.
4868         * tests/test-argp.c: Include argp.h first. Include progname.h.
4869         (main): Call set_program_name.
4870
4871 2007-03-02  Paul Eggert  <eggert@cs.ucla.edu>
4872
4873         * doc/gnulib-tool.texi (Initial import): Reword description of
4874         _FILE_OFFSET_BITS and _GNU_SOURCE, since they sometimes have a
4875         limited effect even if defined after the first system include.
4876
4877 2007-03-01  Bruno Haible  <bruno@clisp.org>
4878
4879         * build-aux/config.libpath: Update to libtool-1.5.22.
4880         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
4881
4882 2007-03-01  Bruno Haible  <bruno@clisp.org>
4883
4884         * doc/relocatable-maint.texi: Recommend to set foo_CPPFLAGS, not
4885         foo_CFLAGS.
4886         Reported by Ralf Wildenhues.
4887
4888 2007-03-01  Bruno Haible  <bruno@clisp.org>
4889
4890         * build-aux/install-reloc: Remove object files left over by some
4891         compilers.
4892         Reported by Ralf Wildenhues.
4893
4894 2007-03-01  Bruno Haible  <bruno@clisp.org>
4895
4896         * build-aux/install-reloc: Break long lines.
4897
4898 2007-03-01  Bruno Haible  <bruno@clisp.org>
4899
4900         * doc/relocatable.texi: Document that it may not work on OpenBSD.
4901         Reported by Ralf Wildenhues.
4902
4903 2007-03-01  Bruno Haible  <bruno@clisp.org>
4904
4905         * doc/gnulib-tool.texi (Initial import): Remove paragraph about
4906         include ordering constraints.
4907
4908 2007-03-01  Paul Eggert  <eggert@cs.ucla.edu>
4909
4910         Followup to the 2007-02-12 patch, using suggestions from Bruno Haible in
4911         <http://lists.gnu.org/archive/html/bug-gnulib/2007-02/msg00136.html>.
4912         * doc/gnulib-tool.texi (Initial import): Mention _FILE_OFFSET_BITS
4913         as another example.
4914         * lib/time_.h: Fix misspelling.
4915         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP):
4916         Require gl_HEADER_TIME_H_DEFAULTS.
4917         * m4/strptime.m4 (gl_FUNC_STRPTIME): Likewise.
4918         * m4/time_r.m4 (gl_TIME_R): Likewise.
4919         * m4/timegm.m4 (gl_FUNC_TIMEGM): Likewise.
4920
4921 2007-03-01  Bruno Haible  <bruno@clisp.org>
4922
4923         * m4/utimecmp.m4 (gl_UTIMECMP): Don't require gl_TIMESPEC.
4924         * m4/utimens.m4 (gl_UTIMENS): Likewise.
4925
4926 2007-03-01  Jim Meyering  <jim@meyering.net>
4927
4928         * modules/xreadlink (Maintainer): Add my name.
4929         * modules/xreadlink-with-size (Depends-on): Alphabetize.
4930
4931 2007-02-26  Ben Pfaff  <blp@cs.stanford.edu>
4932             Bruno Haible  <bruno@clisp.org>
4933
4934         * build-aux/install-reloc: Compile also c-ctype.c.
4935         * build-aux/relocatable.sh.in: New file.
4936         * doc/relocatable.texi: New file.
4937         * doc/relocatable-maint.texi: New file.
4938         * doc/gnulib.texi: Include relocatable-maint.texi.
4939         * lib/progreloc.c: Include unistd.h unconditionally.
4940         * lib/relocwrapper.c: Include unistd.h unconditionally.
4941         Include c-ctype.h.
4942         (add_dotbin): Use c_tolower.
4943         * m4/relocatable-lib.m4: New file, extracted from m4/relocatable.m4.
4944         (gl_RELOCATABLE_LIBRARY): Renamed from AC_RELOCATABLE_LIBRARY.
4945         (gl_RELOCATABLE_NOP): Renamed from AC_RELOCATABLE_NOP.
4946         * m4/relocatable.m4 (AC_RELOCATABLE_LIBRARY, AC_RELOCATABLE_NOP): Move
4947         to m4/relocatable-lib.m4.
4948         (gl_RELOCATABLE): Renamed from AC_RELOCATABLE. Set also
4949         RELOCATABLE_CONFIG_H_DIR, RELOCATABLE_SRC_DIR, RELOCATABLE_BUILD_DIR.
4950         (gl_RELOCATABLE_BODY): Renamed from AC_RELOCATABLE_BODY. Don't
4951         require obsolete macro AC_EXEEXT. Don't check for unistd.h. Don't set
4952         SET_RELOCATABLE. Instead set RELOCATABLE_LDFLAGS, INSTALL_PROGRAM_ENV.
4953         * modules/relocatable: New file.
4954         * modules/relocatable-lib: New file.
4955         * modules/relocatable-script: New file.
4956
4957 2007-02-28  Bruno Haible  <bruno@clisp.org>
4958
4959         Import --enable-relocatable infrastructure.
4960         * build-aux/config.libpath: New file, from GNU gettext.
4961         * build-aux/install-reloc: New file, from GNU gettext.
4962         * build-aux/reloc-ldflags: New file, from GNU gettext.
4963         * lib/relocatable.h: New file, from GNU gettext.
4964         * lib/relocatable.c: New file, from GNU gettext.
4965         * lib/relocwrapper.c: New file, from GNU gettext.
4966         * m4/relocatable.m4: New file, from GNU gettext.
4967
4968 2007-02-28  Bruno Haible  <bruno@clisp.org>
4969
4970         * MODULES.html.sh (File system functions): Add xreadlink-with-size.
4971
4972         * modules/xreadlink: New file, from GNU gettext with modifications.
4973         * lib/xreadlink.c: New file, from GNU gettext.
4974         * lib/xreadlink.h: Add comments.
4975         (xreadlink): New declaration.
4976
4977         * modules/xreadlink-with-size: Renamed from modules/xreadlink.
4978         (Files): Remove m4/xreadlink.m4. Replace lib/xreadlink.c with
4979         lib/xreadlink-with-size.c.
4980         (configure.ac): Remove gl_XREADLINK invocation.
4981         (Makefile.am): Augment lib_SOURCES.
4982         * m4/xreadlink.m4: Remove file.
4983         * lib/xreadlink-with-size.c: Renamed from lib/xreadlink.c.
4984         (xreadlink_with_size): Renamed from xreadink.
4985         * lib/xreadlink.h (xreadlink_with_size): Renamed from xreadink.
4986         * modules/canonicalize (Depends-on): Replace xreadlink with
4987         xreadlink-with-size.
4988         * lib/canonicalize.c (canonicalize_filename_mode): Update.
4989
4990 2007-02-25  Jim Meyering  <jim@meyering.net>
4991
4992         * build-aux/announce-gen: When complaining about excess arguments,
4993         list them.
4994
4995 2007-02-25  Paul Eggert  <eggert@cs.ucla.edu>
4996
4997         * README: Document signed integer overflow situation more
4998         accurately.
4999
5000 2007-02-25  Bruno Haible  <bruno@clisp.org>
5001
5002         * lib/vasnprintf.c (VASNPRINTF): Fix estimate of size needed for a
5003         'a' or 'A' conversion.
5004
5005 2007-02-25  Bruno Haible  <bruno@clisp.org>
5006
5007         * modules/filename: Renamed from modules/pathname.
5008         (Files): Replace lib/pathname.h with lib/filename.h. Replace
5009         lib/concatpath.c with lib/concat-filename.c.
5010         (Makefile.am): Update.
5011         (Include): Replace pathname.h with filename.h.
5012         * lib/filename.h: Renamed from lib/pathname.h.
5013         (concatenated_filename): Renamed from concatenated_pathname.
5014         * lib/concat-filename.c: Renamed from lib/concatpath.c.
5015         (concatenated_filename): Renamed from concatenated_pathname.
5016         * lib/findprog.c: Include filename.h instead of pathname.h.
5017         (find_in_path): Update.
5018         * lib/javacomp.c: Include filename.h instead of pathname.h.
5019         (is_envjavac_gcj43_usable, is_envjavac_oldgcj_14_14_usable,
5020         is_envjavac_oldgcj_14_13_usable, is_envjavac_nongcj_usable,
5021         is_gcj_present, is_gcj43_usable, is_oldgcj_14_14_usable,
5022         is_oldgcj_14_13_usable, is_javac_usable): Update.
5023         * lib/javaexec.c: Include filename.h instead of pathname.h.
5024         (execute_java_class): Update.
5025         * modules/findprog: Update.
5026         * modules/javacomp: Update.
5027         * modules/javaexec: Update.
5028         * MODULES.html.sh (File system functions): Add 'filename', remove
5029         'pathname'.
5030
5031 2007-02-25  Bruno Haible  <bruno@clisp.org>
5032
5033         * modules/printf-frexpl-tests: New file.
5034         * tests/test-printf-frexpl.c: New file.
5035
5036         * modules/printf-frexpl: New file.
5037         * lib/printf-frexpl.h: New file.
5038         * lib/printf-frexpl.c: New file.
5039         * m4/printf-frexpl.m4: New file.
5040
5041 2007-02-25  Bruno Haible  <bruno@clisp.org>
5042
5043         * modules/printf-frexp-tests: New file.
5044         * tests/test-printf-frexp.c: New file.
5045
5046         * modules/printf-frexp: New file.
5047         * lib/printf-frexp.h: New file.
5048         * lib/printf-frexp.c: New file.
5049         * m4/printf-frexp.m4: New file.
5050
5051 2007-02-25  Bruno Haible  <bruno@clisp.org>
5052
5053         Assume automake >= 1.10 for the tests.
5054         * modules/arcfour-tests (TESTS): Remove $(EXEEXT) suffix.
5055         * modules/arctwo-tests: Likewise.
5056         * modules/argp-tests: Likewise.
5057         * modules/avltree-list-tests: Likewise.
5058         * modules/avltree-oset-tests: Likewise.
5059         * modules/avltreehash-list-tests: Likewise.
5060         * modules/carray-list-tests: Likewise.
5061         * modules/crc-tests: Likewise.
5062         * modules/des-tests: Likewise.
5063         * modules/gc-arcfour-tests: Likewise.
5064         * modules/gc-arctwo-tests: Likewise.
5065         * modules/gc-des-tests: Likewise.
5066         * modules/gc-hmac-md5-tests: Likewise.
5067         * modules/gc-hmac-sha1-tests: Likewise.
5068         * modules/gc-md2-tests: Likewise.
5069         * modules/gc-md4-tests: Likewise.
5070         * modules/gc-md5-tests: Likewise.
5071         * modules/gc-pbkdf2-sha1-tests: Likewise.
5072         * modules/gc-rijndael-tests: Likewise.
5073         * modules/gc-sha1-tests: Likewise.
5074         * modules/gc-tests: Likewise.
5075         * modules/getaddrinfo-tests: Likewise.
5076         * modules/hmac-md5-tests: Likewise.
5077         * modules/hmac-sha1-tests: Likewise.
5078         * modules/linked-list-tests: Likewise.
5079         * modules/linkedhash-list-tests: Likewise.
5080         * modules/lock-tests: Likewise.
5081         * modules/md2-tests: Likewise.
5082         * modules/md4-tests: Likewise.
5083         * modules/md5-tests: Likewise.
5084         * modules/rbtree-list-tests: Likewise.
5085         * modules/rbtree-oset-tests: Likewise.
5086         * modules/rbtreehash-list-tests: Likewise.
5087         * modules/read-file-tests: Likewise.
5088         * modules/rijndael-tests: Likewise.
5089         * modules/stdint-tests: Likewise.
5090         * modules/tls-tests: Likewise.
5091
5092 2007-02-24  Bruno Haible  <bruno@clisp.org>
5093
5094         * lib/isnanl.h (isnanl): Define through isnan if isnan is a macro.
5095         * m4/isnan.m4 (gl_FUNC_ISNAN_NO_LIBM): Don't check for isnan as a
5096         function; instead check whether isnan with a double argument links.
5097         * m4/isnanl.m4 (gl_FUNC_ISNANL_NO_LIBM): Don't check for isnanl as a
5098         function; instead check whether isnan with a 'long double' argument
5099         links.
5100         Reported by Eric Blake <ebb9@byu.net>.
5101
5102 2007-02-24  Bruno Haible  <bruno@clisp.org>
5103
5104         * lib/isnan.c: Support the 'long double' case if USE_LONG_DOUBLE is
5105         defined.
5106         * lib/isnanl.c: Remove all code. Just include isnan.c.
5107         * modules/isnanl-nolibm (Files): Add lib/isnan.c.
5108
5109 2007-02-25  Jim Meyering  <jim@meyering.net>
5110
5111         Avoid conflicting types for 'unsetenv' on FreeBSD.
5112         * lib/putenv.c (_unsetenv): Rename from "unsetenv", to avoid
5113         conflicting with FreeBSD's (5.0 and 6.1) function declaration
5114         in stdlib.h.
5115
5116 2007-02-24  Bruno Haible  <bruno@clisp.org>
5117
5118         * modules/isnanl-nolibm-tests: New file.
5119         * tests/test-isnanl.c: New file.
5120
5121         * modules/isnanl-nolibm: New file.
5122         * lib/isnanl.h: New file.
5123         * lib/isnanl.c: New file.
5124         * m4/isnanl.m4: New file.
5125
5126 2007-02-24  Bruno Haible  <bruno@clisp.org>
5127
5128         * modules/isnan-nolibm-tests: New file.
5129         * tests/test-isnan.c: New file.
5130
5131         * modules/isnan-nolibm: New file.
5132         * lib/isnan.h: New file.
5133         * lib/isnan.c: New file.
5134         * m4/isnan.m4: New file.
5135
5136 2007-02-24  Bruno Haible  <bruno@clisp.org>
5137
5138         * lib/frexpl.c (frexpl): Correct return values for x = 1.0L. Don't
5139         assume that an exponent fits in 20 bits.
5140
5141 2007-02-24  Jim Meyering  <jim@meyering.net>
5142
5143         * m4/regex.m4: Update the description of the configure-time option,
5144         --without-included-regex, to state accurately what the defaults are,
5145         and perhaps to give people an idea why using this option is risky.
5146
5147 2007-02-24  Paul Eggert  <eggert@cs.ucla.edu>
5148
5149         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Check for a nanosleep that
5150         loops on small arguments.  This attempts to avoid the problem
5151         Bruno Haible reported for AIX 4.3.2 in
5152         <http://lists.gnu.org/archive/html/bug-gnulib/2007-02/msg00309.html>.
5153
5154 2007-02-23  Bruno Haible  <bruno@clisp.org>
5155
5156         * m4/perl.m4 (gl_PERL): Require version 5.005, not 5.003.
5157         Needed for help2man.
5158
5159 2007-02-23  Karl Berry  <karl@gnu.org>
5160
5161         * doc/gnulib-tool.texi (CVS Issues): mention that when foo_.h
5162         exists, foo.h should be cvs-ignored, not committed.
5163
5164 2007-02-23  Eric Blake  <ebb9@byu.net>
5165
5166         * lib/getdate.h (includes):  Include <time.h>, not "timespec.h".
5167         * lib/stat-time.h (includes): Likewise.
5168         * lib/utimecmp.c (includes): Likewise.
5169         * lib/utimens.h (includes): Likewise.
5170         * lib/getdate.y (includes): Also include "timespec.h" for use
5171         internal to the module.
5172         * modules/utimens (Depends-on): Revert yesterday's patch.
5173         * modules/nanosleep (Depends-on): Add missing dependency.
5174
5175 2007-02-22  Bruno Haible  <bruno@clisp.org>
5176
5177         * lib/glob.c: Don't include getlogin_r.h.
5178
5179 2007-02-22  Jim Meyering  <jim@meyering.net>
5180
5181         * modules/utimens (Depends-on): Add timespec, required for
5182         utimens.h's inclusion of timespec.h.
5183
5184 2007-02-21  Paul Eggert  <eggert@cs.ucla.edu>
5185
5186         * lib/getcwd.c (__getcwd): Undo previous change; it mishandled
5187         long unreadable paths in GNU/Linux.  Problem reported by Andreas
5188         Schwab in
5189         <http://lists.gnu.org/archive/html/bug-gnulib/2007-02/msg00261.html>.
5190         I'll try to think of a better way to fix the Solaris problem.
5191
5192         * lib/getcwd.c (__getcwd): Don't assume getcwd (NULL, 0) works
5193         like glibc; on Solaris 10, it fails with errno == EINVAL.
5194         POSIX says the behavior is unspecified if the first argument is NULL,
5195         so play it safe and never pass NULL to the system getcwd.
5196
5197 2007-02-21  Jim Meyering  <jim@meyering.net>
5198
5199         * lib/gettimeofday.c (rpl_gettimeofday): Remove declaration
5200         of gettimeofday.  It would conflict with the one now always
5201         provided via sys_time_.h.  Reported by Matthew Woehlke, as
5202         an IRIX 6.5 build failure.
5203
5204 2007-02-20  Paul Eggert  <eggert@cs.ucla.edu>
5205
5206         Minor fixups to port to Solaris 10 with Sun C 5.8.
5207         * lib/getcwd.c [!_LIBC]: Include dirfd.h, since we use dirfd.
5208         * modules/getcwd (Depends-on): Add dirfd.
5209         * lib/putenv.c (putenv): #undef it.
5210         (rpl_putenv): New decl.
5211         (malloc, free): Include <stdlib.h> rather than prototyping separately.
5212
5213 2007-02-20  Bruno Haible  <bruno@clisp.org>
5214
5215         * modules/stdio-tests: New file.
5216         * tests/test-stdio.c: New file.
5217
5218         * modules/vsnprintf (Files): Remove lib/vsnprintf.h.
5219         (Depends-on): Add stdio.
5220         (configure.ac): Invoke gl_STDIO_MODULE_INDICATOR.
5221         (Include): Use <stdio.h> instead of vsnprintf.h.
5222         * m4/vsnprintf.m4 (gl_FUNC_VSNPRINTF): Require gl_STDIO_H_DEFAULTS. Set
5223         HAVE_DECL_VSNPRINTF.
5224         * lib/vsnprintf.c: Include <stdio.h> instead of vsnprintf.h.
5225
5226         * modules/snprintf (Files): Remove lib/snprintf.h.
5227         (Depends-on): Add stdio.
5228         (configure.ac): Invoke gl_STDIO_MODULE_INDICATOR.
5229         (Include): Use <stdio.h> instead of snprintf.h.
5230         * m4/snprintf.m4 (gl_FUNC_SNPRINTF): Require gl_STDIO_H_DEFAULTS. Set
5231         HAVE_DECL_SNPRINTF.
5232         * lib/snprintf.c: Include <stdio.h> instead of snprintf.h.
5233         * lib/getaddrinfo.c: Likewise.
5234
5235         * modules/stdio: New file.
5236         * lib/stdio_.h: New file, incorporating snprintf.h and vsnprintf.h.
5237         * lib/snprintf.h: Remove file.
5238         * lib/vsnprintf.h: Remove file.
5239         * lib/.cppi-disable: Remove snprintf.h.
5240         * m4/stdio_h.m4: New file.
5241         * MODULES.html.sh (Support for systems lacking ISO C 99): Add stdio.
5242
5243 2007-02-20  Jim Meyering  <jim@meyering.net>
5244
5245         * lib/ftruncate.c [HAVE_CHSIZE]: Document that this code is
5246         used by e.g., mingw.  From Bruno Haible.
5247
5248 2007-02-19  Bruno Haible  <bruno@clisp.org>
5249
5250         * lib/string_.h: Use "#pragma GCC system_header" to suppress some gcc
5251         warnings.
5252         Reported by Ben Pfaff <blp@cs.stanford.edu>.
5253
5254 2007-02-19  Bruno Haible  <bruno@clisp.org>
5255
5256         * m4/ftruncate.m4 (gl_FUNC_FTRUNCATE): Don't request a complaint mail
5257         from mingw users.
5258
5259 2007-02-19  Bruno Haible  <bruno@clisp.org>
5260
5261         * lib/stdlib_.h: Use "#pragma GCC system_header" to suppress some gcc
5262         warnings.
5263         Reported by Joel E. Denny <jdenny@ces.clemson.edu> via Paul Eggert.
5264
5265 2007-02-19  Jim Meyering  <jim@meyering.net>
5266
5267         Don't use FD after a successful "fdopendir (fd)".
5268         * lib/getcwd.c (__getcwd) [AT_FDCWD]: fdopendir (fd) usually closes fd.
5269         Reset it by calling dirfd on the just-obtained DIR*.
5270
5271         * m4/ftruncate.m4: Adjust comment to give this module a 3-year reprieve.
5272         Prompted by a report from Bruno Haible that mingw lacks ftruncate.
5273
5274 2007-02-18  Bruno Haible  <bruno@clisp.org>
5275
5276         * lib/readlink.c: Include <unistd.h>.
5277         * m4/readlink.m4 (gl_FUNC_READLINK): Require gl_UNISTD_H_DEFAULTS. Set
5278         HAVE_READLINK.
5279         * modules/readlink (Depends-on): Add unistd.
5280         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
5281         (Include): Add <unistd.h>.
5282
5283         * lib/getlogin_r.h: Remove file.
5284         * lib/getlogin_r.c: Include <unistd.h> instead of getlogin_r.h.
5285         * m4/getlogin_r.m4 (gl_GETLOGIN_R_SUBSTITUTE): Remove macro.
5286         (gl_GETLOGIN_R): Inline it here. Require gl_UNISTD_H_DEFAULTS. Set
5287         HAVE_DECL_GETLOGIN_R.
5288         * modules/getlogin_r (Files): Remove lib/getlogin_r.h.
5289         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
5290         (Include): Use <unistd.h> instead of getlogin_r.h.
5291
5292         * lib/getcwd.h: Remove file.
5293         * lib/getcwd.c: Include <unistd.h> instead of getcwd.h.
5294         * lib/xgetcwd.c: Likewise.
5295         * m4/getcwd.m4 (gl_FUNC_GETCWD): Require gl_UNISTD_H_DEFAULTS. Set
5296         REPLACE_GETCWD. Don't define __GETCWD_PREFIX.
5297         * modules/getcwd (Files): Remove lib/getcwd.h.
5298         (Depends-on): Add unistd.
5299         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
5300         (Include): Use <unistd.h> instad of getcwd.h.
5301
5302         * lib/ftruncate.c: Include <unistd.h> first.
5303         * m4/ftruncate.m4 (gl_FUNC_FTRUNCATE): Require gl_UNISTD_H_DEFAULTS.
5304         Set HAVE_FTRUNCATE.
5305         * modules/ftruncate (Depends-on): Add unistd.
5306         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
5307
5308         * lib/fchdir.c: Include <unistd.h> first.
5309         * lib/dirent_.h: Test REPLACE_FCHDIR, not FCHDIR_REPLACEMENT.
5310         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Require gl_UNISTD_H_DEFAULTS instead
5311         of gl_HEADER_UNISTD_DEFAULTS. Set REPLACE_FCHDIR. Don't set UNISTD_H.
5312         * modules/fchdir (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
5313         (Makefile.am): Substitute also REPLACE_FCHDIR into dirent.h.
5314
5315         * lib/dup2.c: Include <unistd.h> first.
5316         * m4/dup2.m4 (gl_FUNC_DUP2): Require gl_UNISTD_H_DEFAULTS. Set
5317         HAVE_DUP2.
5318         * modules/dup2 (Depends-on): Add unistd.
5319         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
5320
5321         * lib/chown.c: Include <unistd.h> first. Undefine chown later.
5322         * m4/chown.m4 (gl_FUNC_CHOWN): Require gl_UNISTD_H_DEFAULTS. Set
5323         REPLACE_CHOWN. Don't define chown as a macro here.
5324         * modules/chown (Depends-on): Add unistd.
5325         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
5326
5327         * lib/unistd_.h: Test HAVE_UNISTD_H determined at configure time.
5328         Add definition for GL_LINK_WARNING.
5329         (chown, dup2): New declarations.
5330         (fchdir): Test REPLACE_FCHDIR, not FCHDIR_REPLACEMENT. Provide optional
5331         link warning.
5332         (ftruncate): New declaration.
5333         (getcwd): New declaration, taken from old getcwd.h.
5334         (getlogin_r): New declaration, taken from old getlogin_r.h.
5335         (readlink): New declaration.
5336         * m4/unistd_h.m4 (gl_UNISTD_H): Renamed from gl_HEADER_UNISTD. Don't
5337         set UNISTD_H. Inline gl_PREREQ_UNISTD. Set HAVE_UNISTD_H.
5338         (gl_PREREQ_UNISTD): Remove macro.
5339         (gl_UNISTD_MODULE_INDICATOR): New macro.
5340         (gl_UNISTD_H_DEFAULTS): Renamed from gl_HEADER_UNISTD_DEFAULTS. Set
5341         many new variables. Don't set UNISTD_H.
5342         * modules/unistd (Description): Change.
5343         (Depends-on): Add link-warning.
5344         (configure.ac): Update.
5345         (Makefile.am): Create unistd.h always. Substitute many new variables
5346         into it.
5347
5348 2007-02-18  Bruno Haible  <bruno@clisp.org>
5349
5350         * lib/stdlib_.h (getsubopt): New declaration, copied from getsubopt.h.
5351         * modules/stdlib (stdlib.h): Also substitute GNULIB_GETSUBOPT and
5352         HAVE_GETSUBOPT.
5353         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Also initialize
5354         GNULIB_GETSUBOPT and HAVE_GETSUBOPT.
5355         * lib/getsubopt.h: Remove file.
5356         * modules/getsubopt (Files): Remove lib/getsubopt.h.
5357         (Depends-on): Add stdlib.
5358         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
5359         (Includes): Use <stdlib.h> instead of getsubopt.h.
5360         * m4/getsubopt.m4 (gl_FUNC_GETSUBOPT): Require gl_STDLIB_H_DEFAULTS.
5361         Set HAVE_GETSUBOPT.
5362         * lib/getsubopt.c: Don't include getsubopt.h.
5363
5364 2007-02-18  Bruno Haible  <bruno@clisp.org>
5365
5366         * modules/fchdir (Depends-on): Add dup2.
5367
5368 2007-02-18  Bruno Haible  <bruno@clisp.org>
5369
5370         * lib/stdlib_.h: Handle glibc's special invocation convention
5371         specially.
5372
5373 2007-02-18  Bruno Haible  <bruno@clisp.org>
5374
5375         * modules/stdlib-tests: New file.
5376         * tests/test-stdlib.c: New file.
5377
5378         * modules/mkstemp (Files): Remove lib/mkstemp.h.
5379         (Depends-on): Add stdlib.
5380         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
5381         (Includes): Use <stdlib.h> instead of mkstemp.h.
5382         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Require gl_STDLIB_H_DEFAULTS. Set
5383         REPLACE_MKSTEMP. Remove definition of __MKSTEMP_PREFIX.
5384         * lib/mkstemp.c: Don't include mkstemp.h.
5385         * lib/mkstemp-safer.c: Include <stdlib.h> instead of mkstemp.h.
5386         * lib/stdlib--.h: Don't include mkstemp.h.
5387
5388         * modules/mkdtemp (Files): Remove lib/mkdtemp.h.
5389         (Depends-on): Add stdlib.
5390         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
5391         (Includes): Use <stdlib.h> instead of mkdtemp.h.
5392         * m4/mkdtemp.m4 (gt_FUNC_MKDTEMP): Require gl_STDLIB_H_DEFAULTS. Set
5393         HAVE_MKDTEMP.
5394         * lib/mkdtemp.c: Don't include mkdtemp.h.
5395         * lib/clean-temp.c: Don't include mkdtemp.h.
5396
5397         * modules/exit (Files): Remove lib/exit.h.
5398         (Depends-on): Add stdlib.
5399         (Makefile.am): Remove lib_SOURCES.
5400         (Include): Use <stdlib.h> instead of exit.h.
5401         * lib/argmatch.c: Don't include exit.h.
5402         * lib/execute.c: Likewise.
5403         * lib/pagealign_alloc.c: Likewise.
5404         * lib/pipe.c: Likewise.
5405         * lib/wait-process.c: Likewise.
5406         * lib/copy-file.c: Include <stdlib.h> instead of exit.h.
5407         * lib/exitfail.c: Likewise.
5408         * lib/savewd.c: Likewise.
5409         * lib/xsetenv.c: Likewise.
5410
5411         * modules/stdlib: New file.
5412         * lib/stdlib_.h: New file, incorporating exit.h, mkdtemp.h, mkstemp.h
5413         and extra comments about mkstemp().
5414         * lib/exit.h: Remove file.
5415         * lib/mkdtemp.h: Remove file.
5416         * lib/mkstemp.h: Remove file.
5417         * m4/stdlib_h.m4: New file.
5418         * MODULES.html.sh (Support for systems lacking ANSI C 89): Add stdlib.
5419
5420 2007-02-18  Bruno Haible  <bruno@clisp.org>
5421
5422         * modules/math-tests: New file.
5423         * tests/test-math.c: New file.
5424
5425         * modules/math: New file.
5426         * modules/mathl (Files): Remove lib/mathl.h.
5427         (Depends-on): Add math.
5428         (Makefile.am): Don't mention mathl.h.
5429         (Include): Use <math.h> instead of mathl.h.
5430         * lib/math_.h: New file.
5431         * lib/mathl.h: Remove file.
5432         * lib/acosl.c: Include <config.h> and <math.h> first. Don't include
5433         mathl.h.
5434         * lib/asinl.c: Likewise.
5435         * lib/atanl.c: Likewise.
5436         * lib/ceill.c: Likewise.
5437         * lib/cosl.c: Likewise.
5438         * lib/expl.c: Likewise.
5439         * lib/floorl.c: Likewise.
5440         * lib/frexpl.c: Likewise.
5441         * lib/ldexpl.c: Likewise.
5442         * lib/logl.c: Likewise.
5443         * lib/sincosl.c: Likewise.
5444         * lib/sinl.c: Likewise.
5445         * lib/sqrtl.c: Likewise.
5446         * lib/tanl.c: Likewise.
5447         * lib/trigl.c: Likewise.
5448         * m4/math_h.m4: New file.
5449         * MODULES.html.sh (Mathematics): Add math.
5450
5451 2007-02-17  Bruno Haible  <bruno@clisp.org>
5452
5453         * modules/wctype-tests: New file.
5454         * tests/test-wctype.c: New file.
5455
5456         * modules/wchar-tests: New file.
5457         * tests/test-wchar.c: New file.
5458
5459         * modules/unistd-tests: New file.
5460         * tests/test-unistd.c: New file.
5461
5462         * modules/time-tests: New file.
5463         * tests/test-time.c: New file.
5464
5465         * modules/sysexits-tests: New file.
5466         * tests/test-sysexits.c: New file.
5467
5468         * modules/sys_time-tests: New file.
5469         * tests/test-sys_time.c: New file.
5470
5471         * modules/sys_stat-tests: New file.
5472         * tests/test-sys_stat.c: New file.
5473
5474         * modules/sys_socket-tests: New file.
5475         * tests/test-sys_socket.c: New file.
5476
5477         * modules/sys_select-tests: New file.
5478         * tests/test-sys_select.c: New file.
5479
5480         * modules/string-tests: New file.
5481         * tests/test-string.c: New file.
5482
5483         * modules/stdbool-tests: New file.
5484         * tests/test-stdbool.c: New file.
5485
5486         * modules/netinet_in-tests: New file.
5487         * tests/test-netinet_in.c: New file.
5488
5489         * modules/inttypes-tests: New file.
5490         * tests/test-inttypes.c: New file.
5491
5492         * modules/fcntl-tests: New file.
5493         * tests/test-fcntl.c: New file.
5494
5495         * modules/byteswap-tests: New file.
5496         * tests/test-byteswap.c: New file.
5497
5498         * modules/arpa_inet-tests: New file.
5499         * tests/test-arpa_inet.c: New file.
5500
5501 2007-02-17  Bruno Haible  <bruno@clisp.org>
5502
5503         * lib/inttypes_.h: Add definition for GL_LINK_WARNING.
5504         (imaxabs, imaxdiv, strtoimax, strtoumax): Don't declare the function
5505         if the corresponding module is not enabled. Emit link warnings if
5506         the function is used nevertheless.
5507         * m4/inttypes.m4 (gl_INTTYPES_H): Never use the existing <inttypes.h>.
5508         Don't AC_SUBST HAVE_DECL_IMAXABS, HAVE_DECL_IMAXDIV,
5509         HAVE_DECL_STRTOIMAX, HAVE_DECL_STRTOUMAX.
5510         (gl_INTTYPES_MODULE_INDICATOR, gl_INTTYPES_H_DEFAULTS): New macros.
5511         * modules/inttypes (Depends-on): Add link-warning.
5512         (Makefile.am): Copy the contents of build-aux/link-warning.h into
5513         inttypes.h. Substitute also GNULIB_IMAXABS, GNULIB_IMAXDIV,
5514         GNULIB_STRTOIMAX, GNULIB_STRTOUMAX.
5515         * modules/imaxabs (configure.ac): Invoke gl_INTTYPES_MODULE_INDICATOR.
5516         * modules/imaxdiv (configure.ac): Likewise.
5517         * modules/strtoimax (configure.ac): Likewise.
5518         * modules/strtoumax (configure.ac): Likewise.
5519
5520 2007-02-17  Bruno Haible  <bruno@clisp.org>
5521
5522         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Include the contents of
5523         gl_STRING_MODULE_INDICATOR_DEFAULTS.
5524         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Remove macro.
5525         (gl_HEADER_STRING_H_BODY, gl_STRING_MODULE_INDICATOR): Update.
5526
5527 2007-02-17  Bruno Haible  <bruno@clisp.org>
5528
5529         * modules/link-warning: New file.
5530         * build-aux/link-warning.h: New file, extracted from lib/string_.h.
5531         * lib/string_.h (GL_LINK_WARNING): Remove definition.
5532         * modules/string (Depends-on): Add link-warning.
5533         (Makefile.am): Copy the contents of build-aux/link-warning.h into
5534         string.h.
5535         * MODULES.html.sh (Support for building libraries and executables): Add
5536         link-warning.
5537
5538 2007-02-17  Bruno Haible  <bruno@clisp.org>
5539
5540         * lib/string_.h (memmem, mempcpy, memrchr, stpcpy, stpncpy, strcasecmp,
5541         strncasecmp, strchr, strchrnul, strdup, strndup, strnlen, strcspn,
5542         strpbrk, strspn, strrchr, strsep, strstr, strcasestr, strtok_r): Break
5543         long lines.
5544
5545 2007-02-17  Ben Pfaff  <blp@cs.stanford.edu>
5546             Bruno Haible  <bruno@clisp.org>
5547
5548         * modules/tmpfile: New file.
5549         * lib/tmpfile.c: New file.
5550         * m4/tmpfile.m4: New file.
5551         * MODULES.html.sh (func_all_modules): New section "Input/output".
5552
5553 2007-02-15  Bruno Haible  <bruno@clisp.org>
5554
5555         * lib/clean-temp.c [WIN32 && !CYGWIN]: Include <windows.h>.
5556         (supports_delete_on_close): New function.
5557         (open_temp, fopen_temp): Use _O_TEMPORARY when supported.
5558
5559 2007-02-14  Bruno Haible  <bruno@clisp.org>
5560
5561         * modules/mbspcasecmp-tests: New file.
5562         * tests/test-mbspcasecmp.sh: New file.
5563         * tests/test-mbspcasecmp.c: New file.
5564
5565         New module mbspcasecmp.
5566         * modules/mbspcasecmp: New file.
5567         * lib/mbspcasecmp.c: New file.
5568         * lib/string_.h (strncasecmp): Change warning message.
5569         (mbspcasecmp): New declaration.
5570         * m4/mbspcasecmp.m4: New file.
5571         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
5572         GNULIB_MBSPCASECMP.
5573         * modules/string (string.h): Also substitute GNULIB_MBSPCASECMP.
5574         * MODULES.html.sh (Internationalization functions): Add mbspcasecmp.
5575
5576 2007-02-14  Bruno Haible  <bruno@clisp.org>
5577
5578         * modules/mbsncasecmp-tests: New file.
5579         * tests/test-mbsncasecmp.sh: New file.
5580         * tests/test-mbsncasecmp.c: New file.
5581
5582         New module mbsncasecmp.
5583         * modules/mbsncasecmp: New file.
5584         * lib/mbsncasecmp.c: New file.
5585         * lib/string_.h (mbsncasecmp): New declaration.
5586         * m4/mbsncasecmp.m4: New file.
5587         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
5588         GNULIB_MBSNCASECMP.
5589         * modules/string (string.h): Also substitute GNULIB_MBSNCASECMP.
5590         * MODULES.html.sh (Internationalization functions): Add mbsncasecmp.
5591
5592 2007-02-14  Paul Eggert  <eggert@cs.ucla.edu>
5593
5594         * lib/exclude.c (FNM_EXTMATCH): Define if system does not.
5595         Verify that it doesn't overlap with our flags.
5596         (fnmatch_no_wildcards): Don't use strcasecmp or strncasecmp, which
5597         do not have the desired effect in multibyte locales; instead, use
5598         mbscasecmp.
5599         * modules/exclude (Depends-on): Depend on mbscasecmp, not strcase.
5600         Add dependency on xalloc.  Depend on fnmatch, not fnmatch-gnu, since
5601         we don't require GNU fnmatch ourselves (if our users require it, they
5602         should do so explicitly).
5603
5604         Fix regex code so it doesn't rely on strcasecmp.
5605         * lib/regex_internal.h: Include <langinfo.h> only if _LIBC is defined.
5606         Otherwise, include gnulib's langinfo.h.
5607         * lib/regcomp.c (init_dfa): Don't use strcasecmp, as it can have
5608         undesirable behavior in non-C locales.  Instead, rely on localecharset.
5609         * m4/regex.m4 (gl_PREREQ_REGEX): Don't require AM_LANGINFO_CODESET.
5610         * modules/regex (FILES): Remove m4/codeset.m4.
5611         (Depends-on): Add localcharset.  Remove strcase.
5612
5613 2007-02-13  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5614
5615         * m4/unlinkdir.m4 (gl_UNLINKDIR): Fix m4 quoting bug.
5616         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Likewise.
5617
5618 2007-02-13  Bruno Haible  <bruno@clisp.org>
5619
5620         * m4/intdiv0.m4 (gt_INTDIV0): Assume ANSI C. Fix underquoting bug.
5621         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
5622
5623 2007-02-12  Bruno Haible  <bruno@clisp.org>
5624
5625         * lib/string_.h (memmem, mempcpy, memrchr, stpcpy, stpncpy, strchrnul,
5626         strdup, strndup, strnlen, strpbrk, strsep, strtok_r): If
5627         GNULIB_POSIXCHECK and the gnulib module not enabled, provoke a link-
5628         time warning rather than a link error.
5629
5630 2007-02-12  Bruno Haible  <bruno@clisp.org>
5631
5632         * m4/locale-fr.m4 (gt_LOCALE_FR): Fix m4 quoting bug.
5633         * m4/locale-zh.m4 (gt_LOCALE_ZH_CN): Likewise.
5634         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
5635
5636 2007-02-12  Paul Eggert  <eggert@cs.ucla.edu>
5637
5638         * lib/string_.h (strncasecmp): Fix typo: this macro takes 3
5639         args, not 2.
5640
5641 2007-02-12  Paul Eggert  <eggert@cs.ucla.edu>
5642
5643         New module 'time', so that apps can include <time.h> as per
5644         POSIX and GNU instead of separate include files like time_r.h
5645         and timegm.h.  This implementation tries out a simpler approach
5646         for replacing decls in standard include files (as compared to
5647         the string module), somewhat as an experiment.
5648
5649         * config/srclist.txt: Comment out mktime.c for now.
5650         * doc/gnulib-tool.texi (Initial import): Don't use time_r as an example
5651         since it doesn't apply any more.  Use generic wording instead.
5652         * MODULES.html.sh (Support for systems lacking POSIX:2001): New module
5653         'time'.
5654         * lib/time_.h, m4/time_h.m4, modules/time: New files.
5655         * lib/strptime.h, lib/time_r.h, lib/timegm.h: Remove.
5656         * lib/mktime.c: Include config.h depending on _LIBC, not HAVE_CONFIG_H.
5657         Don't include <sys/types.h>; no longer needed since we assume C89.
5658         * lib/mktime.c: Don't include "time_r.h"; no longer needed.
5659         * lib/strftime.c: Likewise.
5660         * lib/time_r.c: Likewise.
5661         * lib/nanosleep.c (nanosleep): #undef after include files, not before.
5662         * lib/nanosleep.c: Include <time.h> first, to check interface.
5663         * lib/strptime.c: Likewise.
5664         * lib/time_r.c: Likewise.
5665         * lib/timegm.c: Likewise.
5666         * lib/strptime.c: Don't include strptime.h or time_r.h; no longer
5667         needed.
5668         * lib/timegm.c: Don't include timegm.h; no longer needed.
5669         * lib/timespec.h: Don't include <sys/time.h> before <time.h>;
5670         time.h now handles any problems in that area.
5671         (struct timespec, nanosleep): Remove; time.h now arranges for these.
5672         * lib/xnanosleep.c: Don't include timespec.h; no longer needed now
5673         that time.h defines struct timespec.
5674         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Check that nanosleep is declared.
5675         Set REPLACE_NANOSLEEP.  Don't AC_DEFINE nanosleep; the time module now
5676         handles that.
5677         * m4/strptime.m4 (gl_FUNC_STPRTIME): Set REPLACE_STRPTIME.
5678         * m4/time_r.m4 (gl_TIME_R): Don't define HAVE_TIME_R_POSIX; no longer
5679         needed.  Set REPLACE_LOCALTIME.
5680         * m4/timegm.m4 (gl_FUNC_TIMEGM): Set REPLACE_TIMEGM.
5681         * m4/timespec.m4 (gl_CHECK_TYPE_STRUCT_TIMESPEC): Move to time_h.m4.
5682         (gl_TIMESPEC): Don't check for sys/time.h or struct timespec or
5683         nanosleep; time_h.m4 now does that.  Don't require
5684         gl_USE_SYSTEM_EXTENSIONS; no longer needed directly, and the time
5685         module handles this now.
5686         * modules/getdate (Depends-on): Remove timespec.  Add time.
5687         * modules/nanosleep (Depends-on): Likewise.
5688         * modules/stat-time (Depends-on): Likewise.
5689         * modules/nanosleep (Include): Include time.h, not timespec.h.
5690         * modules/strptime (Files): Remove lib/strptime.h.
5691         (Depends-on): Add extensions, time.
5692         (Include): Include time.h, not strptime.h.
5693         * modules/time_r (Files): Remove lib/time_r.h.
5694         (Depends-on): Add time.
5695         (Include): Include time.h, not time_r.h.
5696         * modules/timegm: Likewise.
5697         * modules/timespec (Description): Now does timespec-related decls
5698         of our own, instead of struct timespec itself.
5699         (Depends-on): Add time; remove extensions.
5700         (Maintainer): Add self.
5701         * modules/utimecmp (Depends-on): Add time; remove timespec.
5702         * modules/utimens (Depends-on): Likewise.
5703         * modules/xnanosleep (Depends-on): Likewise.
5704
5705 2007-02-11  Bruno Haible  <bruno@clisp.org>
5706
5707         * lib/c-strstr.c: Include allocsa.h.
5708         (knuth_morris_pratt): Use allocsa/freesa instead of malloc/free.
5709         * lib/c-strcasestr.c: Include allocsa.h.
5710         (knuth_morris_pratt): Use allocsa/freesa instead of malloc/free.
5711         * lib/strcasestr.c: Include allocsa.h.
5712         (knuth_morris_pratt): Use allocsa/freesa instead of malloc/free.
5713         * lib/mbsstr.c: Include allocsa.h.
5714         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): Use
5715         allocsa/freesa instead of malloc/free.
5716         * lib/mbscasestr.c: Include allocsa.h.
5717         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): Use
5718         allocsa/freesa instead of malloc/free.
5719         * modules/c-strstr (Depends-on): Add allocsa.
5720         * modules/c-strcasestr (Depends-on): Likewise.
5721         * modules/strcasestr (Depends-on): Likewise.
5722         * modules/mbsstr (Depends-on): Likewise.
5723         * modules/mbscasestr (Depends-on): Likewise.
5724
5725 2007-02-11  Bruno Haible  <bruno@clisp.org>
5726
5727         * lib/mbsspn.c (mbsspn): Fix bug. Remove unnecessary strlen call.
5728
5729         * modules/mbsspn-tests: New file.
5730         * tests/test-mbsspn.sh: New file.
5731         * tests/test-mbsspn.c: New file.
5732
5733 2007-02-11  Bruno Haible  <bruno@clisp.org>
5734
5735         * lib/mbspbrk.c (mbspbrk): Remove unneeded cast.
5736
5737         * modules/mbspbrk-tests: New file.
5738         * tests/test-mbspbrk.sh: New file.
5739         * tests/test-mbspbrk.c: New file.
5740
5741 2007-02-11  Bruno Haible  <bruno@clisp.org>
5742
5743         * lib/mbscspn.c (mbscspn): Remove unnecessary strlen call and
5744         unneeded cast.
5745
5746         * modules/mbscspn-tests: New file.
5747         * tests/test-mbscspn.sh: New file.
5748         * tests/test-mbscspn.c: New file.
5749
5750 2007-02-11  Bruno Haible  <bruno@clisp.org>
5751
5752         * modules/mbscasecmp-tests: New file.
5753         * tests/test-mbscasecmp.sh: New file.
5754         * tests/test-mbscasecmp.c: New file.
5755
5756 2007-02-11  Bruno Haible  <bruno@clisp.org>
5757
5758         Ensure O(n) worst-case complexity of mbscasestr.
5759         * lib/mbscasestr.c: Include stdbool.h.
5760         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): New
5761         functions.
5762         (mbscasestr): Add some bookkeeping. Invoke knuth_morris_pratt_* when
5763         the bookkeeping indicates that it's worth it.
5764         * modules/mbscasestr (Depends-on): Add stdbool, mbslen, strnlen.
5765
5766         * modules/mbscasestr-tests: New file.
5767         * tests/test-mbscasestr1.c: New file.
5768         * tests/test-mbscasestr2.sh: New file.
5769         * tests/test-mbscasestr2.c: New file.
5770         * tests/test-mbscasestr3.sh: New file.
5771         * tests/test-mbscasestr3.c: New file.
5772         * tests/test-mbscasestr4.sh: New file.
5773         * tests/test-mbscasestr4.c: New file.
5774         * m4/locale-tr.m4: New file.
5775
5776 2007-02-11  Bruno Haible  <bruno@clisp.org>
5777
5778         Ensure O(n) worst-case complexity of mbsstr.
5779         * lib/mbsstr.c: Include stdbool.h.
5780         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): New
5781         functions.
5782         (mbsstr): Add some bookkeeping. Invoke knuth_morris_pratt_* when the
5783         bookkeeping indicates that it's worth it.
5784         * modules/mbsstr (Depends-on): Add stdbool, mbslen, strnlen.
5785
5786         * modules/mbsstr-tests: New file.
5787         * tests/test-mbsstr1.c: New file.
5788         * tests/test-mbsstr2.sh: New file.
5789         * tests/test-mbsstr2.c: New file.
5790         * tests/test-mbsstr3.sh: New file.
5791         * tests/test-mbsstr3.c: New file.
5792         * m4/locale-fr.m4: New file.
5793
5794 2007-02-11  Bruno Haible  <bruno@clisp.org>
5795
5796         * lib/mbsrchr.c (mbsrchr): Fix bug.
5797
5798         * modules/mbsrchr-tests: New file.
5799         * tests/test-mbsrchr.sh: New file.
5800         * tests/test-mbsrchr.c: New file.
5801
5802 2007-02-11  Bruno Haible  <bruno@clisp.org>
5803
5804         * lib/mbschr.c (mbschr): Fix bug.
5805
5806         * modules/mbschr-tests: New file.
5807         * tests/test-mbschr.sh: New file.
5808         * tests/test-mbschr.c: New file.
5809         * m4/locale-zh.m4: New file.
5810
5811 2007-02-11  Bruno Haible  <bruno@clisp.org>
5812
5813         Support for copying multibyte string iterators.
5814         * lib/mbiter.h: Include <string.h>.
5815         (mbiter_multi_copy): New function.
5816         (mbi_copy): New macro.
5817         * lib/mbuiter.h: Include <string.h>.
5818         (mbuiter_multi_copy): New function.
5819         (mbui_copy): New macro.
5820
5821 2007-02-11  Bruno Haible  <bruno@clisp.org>
5822
5823         New module mbslen.
5824         * modules/mbslen: New file.
5825         * lib/mbslen.c: New file.
5826         * lib/string_.h (mbslen): New declaration.
5827         * m4/mbslen.m4: New file.
5828         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
5829         GNULIB_MBSLEN.
5830         * modules/string (string.h): Also substitute GNULIB_MBSLEN.
5831         * MODULES.html.sh (Internationalization functions): Add mbslen.
5832
5833 2007-02-11  Bruno Haible  <bruno@clisp.org>
5834
5835         Ensure O(n) worst-case complexity of strcasestr substitute.
5836         * lib/strcasestr.c: Include stdbool.h.
5837         (knuth_morris_pratt): New function.
5838         (strcasestr): Add some bookkeeping. Invoke knuth_morris_pratt when the
5839         bookkeeping indicates that it's worth it.
5840         * modules/strcasestr (Depends-on): Add stdbool, strnlen.
5841
5842         * modules/strcasestr-tests: New file.
5843         * tests/test-strcasestr.c: New file.
5844
5845 2007-02-11  Bruno Haible  <bruno@clisp.org>
5846
5847         Ensure O(n) worst-case complexity of c_strcasestr.
5848         * lib/c-strcasestr.c: Include stdbool.h, string.h.
5849         (knuth_morris_pratt): New function.
5850         (c_strcasestr): Add some bookkeeping. Invoke knuth_morris_pratt when
5851         the bookkeeping indicates that it's worth it.
5852         * modules/c-strcasestr (Depends-on): Add stdbool, strnlen.
5853
5854         * modules/c-strcasestr-tests: New file.
5855         * tests/test-c-strcasestr.c: New file.
5856
5857 2007-02-11  Bruno Haible  <bruno@clisp.org>
5858
5859         Ensure O(n) worst-case complexity of c_strstr.
5860         * lib/c-strstr.c: Include stdbool.h, string.h.
5861         (knuth_morris_pratt): New function.
5862         (c_strstr): Add some bookkeeping. Invoke knuth_morris_pratt when the
5863         bookkeeping indicates that it's worth it.
5864         * modules/c-strstr (Depends-on): Add stdbool, strnlen.
5865
5866         * lib/c-strstr.c: Complete rewrite for maintainability.
5867
5868         * modules/c-strstr-tests: New file.
5869         * tests/test-c-strstr.c: New file.
5870
5871 2007-02-11  Bruno Haible  <bruno@clisp.org>
5872
5873         * m4/javacomp.m4 (gt_JAVACOMP): Work around a 'tr' bug in coreutils
5874         5.2.1 and earlier, whereby \055 was treated just like the range
5875         delimiter '-'.
5876         Reported by Joel E. Denny <jdenny@ces.clemson.edu>.
5877
5878 2007-02-08  Bruno Haible  <bruno@clisp.org>
5879
5880         * modules/regex (Depends-on): Add stdbool.
5881         Reported by Dalibor Topic <robilad@kaffe.org>.
5882
5883 2007-02-05  Paul Eggert  <eggert@cs.ucla.edu>
5884
5885         * m4/regex.m4 (gl_REGEX): Check for glibc bug #3957.
5886         Prefer returning from main to exiting from it.
5887         Remove unnecessary parens after sizeof.
5888
5889 2007-02-05  Bruno Haible  <bruno@clisp.org>
5890
5891         New module mbssep.
5892         * modules/mbssep: New file.
5893         * lib/mbssep.c: New file.
5894         * lib/string_.h (strsep): Add a conditional link warning.
5895         (mbssep): New declaration.
5896         * m4/mbssep.m4: New file.
5897         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
5898         GNULIB_MBSSEP.
5899         * modules/string (string.h): Also substitute GNULIB_MBSSEP.
5900         * MODULES.html.sh (Internationalization functions): Add mbssep.
5901
5902 2007-02-05  Bruno Haible  <bruno@clisp.org>
5903
5904         * lib/strsep.c (strsep): Fix actions in case of no delimiters.
5905         Optimize search in case of 1 delimiter.
5906
5907 2007-02-05  Paolo Bonzini  <bonzini@gnu.org>
5908
5909         * lib/acl.h: Include sys/types.h before sys/acl.h.
5910
5911 2007-02-05  Paolo Bonzini  <bonzini@gnu.org>
5912
5913         Merge upstream fix for glibc bugzilla #3957:
5914
5915         2007-02-05  Jakub Jelinek  <jakub@redhat.com>
5916
5917         * lib/regcomp.c (parse_bracket_exp): Set '\n' bit rather than '\0'
5918         bit for RE_HAT_LISTS_NOT_NEWLINE.
5919         (build_charclass_op): Remove bogus comment.
5920
5921 2007-02-05  Simon Josefsson  <simon@josefsson.org>
5922
5923         * lib/gc.h, lib/gc-libgcrypt.c: Support SHA-256/384/512.
5924
5925 2007-02-04  Paul Eggert  <eggert@cs.ucla.edu>
5926
5927         * lib/getsubopt.c [!_LIBC]: Include config.h and getsubopt.h.
5928         * lib/memmem.c [!defined _LIBC]: Include config.h.
5929
5930 2007-02-04  Bruno Haible  <bruno@clisp.org>
5931
5932         * lib/string_.h (GL_LINK_WARNING2): Put the word "warning:" into the
5933         warning message.
5934
5935 2007-02-04  Bruno Haible  <bruno@clisp.org>
5936
5937         New module mbstok_r.
5938         * modules/mbstok_r: New file.
5939         * lib/mbstok_r.c: New file.
5940         * lib/string_.h (strtok_r): Change argument names to match the
5941         comments. Add a conditional link warning.
5942         (mbstok_r): New declaration.
5943         * m4/mbstok_r.m4: New file.
5944         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
5945         GNULIB_MBSTOK_R.
5946         * modules/string (string.h): Also substitute GNULIB_MBSTOK_R.
5947         * MODULES.html.sh (Internationalization functions): Add mbstok_r.
5948
5949 2007-02-04  Bruno Haible  <bruno@clisp.org>
5950
5951         New module mbsspn.
5952         * modules/mbsspn: New file.
5953         * lib/mbsspn.c: New file.
5954         * lib/string_.h (strspn): Add a conditional link warning.
5955         (mbsspn): New declaration.
5956         * m4/mbsspn.m4: New file.
5957         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
5958         GNULIB_MBSSPN.
5959         * modules/string (string.h): Also substitute GNULIB_MBSSPN.
5960         * MODULES.html.sh (Internationalization functions): Add mbsspn.
5961
5962 2007-02-04  Bruno Haible  <bruno@clisp.org>
5963
5964         New module mbspbrk.
5965         * modules/mbspbrk: New file.
5966         * lib/mbspbrk.c: New file.
5967         * lib/string_.h (strpbrk): Add a conditional link warning.
5968         (mbspbrk): New declaration.
5969         * m4/mbspbrk.m4: New file.
5970         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
5971         GNULIB_MBSPBRK.
5972         * modules/string (string.h): Also substitute GNULIB_MBSPBRK.
5973         * MODULES.html.sh (Internationalization functions): Add mbspbrk.
5974
5975 2007-02-04  Bruno Haible  <bruno@clisp.org>
5976
5977         New module mbscspn.
5978         * modules/mbscspn: New file.
5979         * lib/mbscspn.c: New file.
5980         * lib/string_.h (strcspn): Add a conditional link warning.
5981         (mbscspn): New declaration.
5982         * m4/mbscspn.m4: New file.
5983         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
5984         GNULIB_MBSCSPN.
5985         * modules/string (string.h): Also substitute GNULIB_MBSCSPN.
5986         * MODULES.html.sh (Internationalization functions): Add mbscspn.
5987
5988 2007-02-04  Bruno Haible  <bruno@clisp.org>
5989
5990         New module mbscasestr, reduced goal of strcasestr.
5991         * modules/mbscasestr: New file.
5992         * lib/mbscasestr.c: New file, copied from lib/strcasestr.c.
5993         (mbscasestr): Renamed from strcasestr.
5994         * lib/strcasestr.c: Don't include mbuiter.h.
5995         (strcasestr): Remove support for multibyte locales.
5996         * lib/string_.h (strcasestr): Don`t rename. Declare only if missing.
5997         Change the conditional link warning.
5998         (mbscasestr): New declaration.
5999         * m4/mbscasestr.m4: New file.
6000         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Enable the replacement only if
6001         the system does not have strcasestr. Set HAVE_STRCASESTR instead of
6002         REPLACE_STRCASESTR.
6003         (gl_PREREQ_STRCASESTR): Don't require gl_FUNC_MBRTOWC.
6004         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
6005         HAVE_STRCASESTR instead of REPLACE_STRCASESTR.
6006         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize GNULIB_MBSCASESTR.
6007         * modules/string (string.h): Also substitute GNULIB_MBSCASESTR.
6008         Substitute HAVE_STRCASESTR instead of REPLACE_STRCASESTR.
6009         * modules/strcasestr (Files): Remove m4/mbrtowc.m4.
6010         (Depends-on): Remove mbuiter.
6011         * MODULES.html.sh (Internationalization functions): Add mbscasestr.
6012
6013 2007-02-04  Bruno Haible  <bruno@clisp.org>
6014
6015         Simplify handling of strncasecmp.
6016         * lib/string_.h (strncasecmp): Remove test for GNULIB_STRCASE. Change
6017         the conditional link warning.
6018         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
6019         HAVE_STRCASECMP, not REPLACE_STRCASECMP.
6020         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Don't initialize GNULIB_STRCASE.
6021         * modules/strcase (configure.ac): Don't invoke
6022         gl_STRING_MODULE_INDICATOR.
6023         * modules/string (string.h): Don't substitute GNULIB_STRCASE.
6024
6025 2007-02-04  Bruno Haible  <bruno@clisp.org>
6026
6027         New module mbscasecmp, reduced goal of strcasecmp.
6028         * modules/mbscasecmp: New file.
6029         * lib/mbscasecmp.c: New file, copied from lib/strcasecmp.c.
6030         (mbscasecmp): Renamed from strcasecmp.
6031         * lib/strcasecmp.c: Don't include mbuiter.h.
6032         (strcasecmp): Remove support for multibyte locales.
6033         * lib/string_.h (strcasecmp): Don`t rename. Declare only if missing.
6034         Change the conditional link warning.
6035         (mbscasecmp): New declaration.
6036         * m4/mbscasecmp.m4: New file.
6037         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Enable the replacement only if
6038         the system lacks strcasecmp. Set HAVE_STRCASECMP instead of
6039         REPLACE_STRCASECMP.
6040         (gl_PREREQ_STRCASECMP): Don't require gl_FUNC_MBRTOWC.
6041         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
6042         GNULIB_MBSCASECMP.
6043         * modules/string (string.h): Also substitute GNULIB_MBSCASECMP.
6044         Substitute HAVE_STRCASECMP instead of REPLACE_STRCASECMP.
6045         * modules/strcase (Files): Remove m4/mbrtowc.m4.
6046         (Depends-on): Remove mbuiter.
6047         * MODULES.html.sh (Internationalization functions): Add mbscasecmp.
6048
6049 2007-02-04  Bruno Haible  <bruno@clisp.org>
6050
6051         New module mbsstr. Remove module strstr.
6052         * modules/mbsstr: New file.
6053         * modules/strstr: Remove file.
6054         * lib/mbsstr.c: Renamed from lib/strstr.c.
6055         (mbsstr): Renamed from strstr.
6056         * lib/string_.h (strstr): Remove declaration. Change the conditional
6057         link warning.
6058         (mbsstr): New declaration.
6059         * m4/mbsstr.m4: New file.
6060         * m4/strstr.m4: Remove file.
6061         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Don't initialize
6062         REPLACE_STRSTR.
6063         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize GNULIB_MBSSTR.
6064         Don't initialize GNULIB_STRSTR.
6065         * modules/string (string.h): Also substitute GNULIB_MBSSTR. Don't
6066         substitute GNULIB_STRSTR and REPLACE_STRSTR.
6067         * MODULES.html.sh (Internationalization functions): Add mbsstr.
6068         (Support for systems lacking ANSI C 89): Remove strstr.
6069
6070 2007-02-04  Bruno Haible  <bruno@clisp.org>
6071
6072         New module mbsrchr.
6073         * modules/mbsrchr: New file.
6074         * lib/mbsrchr.c: New file.
6075         * lib/string_.h (strrchr): Add a conditional link warning.
6076         (mbsrchr): New declaration.
6077         * m4/mbsrchr.m4: New file.
6078         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
6079         GNULIB_MBSRCHR.
6080         * modules/string (string.h): Also substitute GNULIB_MBSRCHR.
6081         * MODULES.html.sh (Internationalization functions): Add mbsrchr.
6082
6083 2007-02-04  Bruno Haible  <bruno@clisp.org>
6084
6085         New module mbschr.
6086         * modules/mbschr: New file.
6087         * lib/mbschr.c: New file.
6088         * lib/string_.h (strchr): Add a conditional link warning.
6089         (mbschr): New declaration.
6090         * m4/mbschr.m4: New file.
6091         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
6092         GNULIB_MBSCHR.
6093         * modules/string (string.h): Also substitute GNULIB_MBSCHR.
6094         * MODULES.html.sh (Internationalization functions): Add mbschr.
6095
6096 2007-02-04  Paul Eggert  <eggert@cs.ucla.edu>
6097
6098         * lib/stdbool_.h: Mention that bool bit-fields aren't supported.
6099
6100         * modules/stdarg (configure.ac-early): Require AC_PROG_CC_STDC.
6101
6102 2007-02-04  Bruno Haible  <bruno@clisp.org>
6103
6104         New module description section 'configure.ac-early'.
6105         * gnulib-tool (sed_extract_prog): Recognize configure.ac-early.
6106         (func_get_autoconf_early_snippet): New function.
6107         (func_import, func_create_testdir): Use it. Remove special cases for
6108         modules 'extensions' and 'lock'.
6109         * modules/extensions (configure.ac-early): Require
6110         gl_USE_SYSTEM_EXTENSIONS.
6111         * modules/lock (configure.ac-early): Require gl_LOCK_EARLY.
6112
6113 2007-02-04  Bruno Haible  <bruno@clisp.org>
6114
6115         Make use of gcj-4.3's -fsource and -ftarget option.
6116         * m4/javacomp.m4 (gt_JAVACOMP): Test whether gcj is in version >= 4.3,
6117         and if so try the options -fsource and -ftarget.
6118         * lib/javacomp.c (compile_using_gcj): Add fsource_option,
6119         source_version, ftarget_option, target_version arguments.
6120         (is_envjavac_gcj43, is_envjavac_gcj43_usable): New functions.
6121         (is_envjavac_oldgcj_14_14_usable): Renamed from
6122         is_envjavac_gcj_14_14_usable.
6123         (is_envjavac_oldgcj_14_13_usable): Renamed from
6124         is_envjavac_gcj_14_13_usable.
6125         (is_gcj_present): Update.
6126         (is_gcj_43, is_gcj43_usable): New functions.
6127         (is_oldgcj_14_14_usable): Renamed from is_gcj_14_14_usable. Update.
6128         (is_oldgcj_14_13_usable): Renamed from is_gcj_14_13_usable. Update.
6129         (compile_java_class): Test whether gcj is in version >= 4.3, and if so
6130         try the options -fsource and -ftarget.
6131
6132 2007-02-03  Paul Eggert  <eggert@cs.ucla.edu>
6133
6134         * lib/xalloc.h (x2nrealloc): Fix an unlikely bug in the overflow
6135         checking code.  Set N = ceil (1.5 * N) rather than to a slightly
6136         larger value.
6137
6138 2007-02-03  Jim Meyering  <jim@meyering.net>
6139
6140         Give tools a better chance to allocate space for very large buffers.
6141         * lib/xalloc.h (x2nrealloc): Use 3/2, not 2, as buffer size factor.
6142
6143         Make pwd and readlink work also when run with an unreadable parent dir
6144         on systems with openat support.
6145         * lib/getcwd.c (__getcwd) [HAVE_PARTLY_WORKING_GETCWD]: Use the system
6146         provided getcwd function, even when we have openat support.
6147         Reported by Dmitry V. Levin in <http://bugzilla.redhat.com/227168>.
6148
6149 2007-02-02  Bruno Haible  <bruno@clisp.org>
6150
6151         * lib/string_.h (memmem, mempcpy, memrchr, stpcpy, stpncpy, strchrnul,
6152         strdup, strndup, strnlen, strpbrk, strsep, strtok_r): Provoke a link
6153         error only if GNULIB_POSIXCHECK is defined. Needed to avoid artificial
6154         portability problems if one of these functions is only used on specific
6155         platforms.
6156         Reported by Paul Eggert.
6157
6158 2007-02-02  Paul Eggert  <eggert@cs.ucla.edu>
6159
6160         Avoid mempcpy in the regex code, as the string.h mempcpy stuff
6161         is causing more trouble than it's curing.
6162         * lib/regex_internal.h (__mempcpy): Remove.
6163         * lib/regcomp.c (regerror): Rewrite to avoid the need for mempcpy
6164         (and make the code a tad smaller to boot).
6165         * m4/regex.m4 (gl_PREREQ_REGEX): Don't check for mempcpy.
6166
6167 2007-02-02  Jim Meyering  <jim@meyering.net>
6168
6169         * modules/arpa_inet: Put AC_PROG_MKDIR_P in the configure.ac:
6170         section, not in the Makefile.am: one.
6171
6172 2007-02-02  Eric Blake  <ebb9@byu.net>
6173
6174         * lib/strchrnul.c: Always include config.h first.
6175
6176         * modules/mountlist (Depends-on): Revert 2007-01-31 change,
6177         gnulib strstr is not necessary here.
6178
6179 2007-02-02  Simon Josefsson  <simon@josefsson.org>
6180
6181         * m4/socklen.m4: Fix typo.
6182
6183 2007-02-02  Eric Blake  <ebb9@byu.net>
6184
6185         * modules/arpa_inet (Makefile.am): Use MKDIR_P to avoid races.
6186         * modules/netinet_in (Makefile.am): Likewise.
6187
6188 2007-02-01  Bruno Haible  <bruno@clisp.org>
6189
6190         * lib/string_.h (GL_LINK_WARNING): New macro.
6191         (strcasecmp, strstr, strcasestr): If provided by the system,
6192         conditionally define as a macro that leads to a warning instead of to
6193         an error.
6194         (strncasecmp): Conditionally define as a macro that leads to a warning.
6195
6196 2007-02-01  Karl Berry  <karl@gnu.org>
6197
6198         * config/srclist.txt (strtok_r.c): lose sync, no more strtok_r.h.
6199
6200 2007-02-01  Bruno Haible  <bruno@clisp.org>
6201
6202         * MODULES.html.sh (Unicode string functions): Update after 2007-01-27
6203         renamings.
6204
6205 2007-02-01  Eric Blake  <ebb9@byu.net>
6206
6207         * modules/regex (Depends-on): Revert dependence on mempcpy.
6208         * lib/regex_internal.h [! _LIBC && !__mempcpy]: Undo string
6209         module's definition of mempcpy.
6210         Reported by Paul Eggert.
6211
6212 2007-02-01  Paul Eggert  <eggert@cs.ucla.edu>
6213
6214         * lib/string_.h: If the gnulib module XYZ is not present, undefine
6215         the symbol XYZ before redefining it.  This fixes a problem with
6216         programs that don't use XYZ, when compiled on systems that define
6217         XYZ to something else.
6218
6219 2007-01-31  Paul Eggert  <eggert@cs.ucla.edu>
6220
6221         * lib/mkdir-p.c (make_dir_parents): Close a race condition that
6222         occurs when "mkdir -m foo" creates a setgid directory that is (1)
6223         writeable to group or other and (2) is intended to have a special
6224         mode bit that is set or cleared.  In such a case, the directory
6225         should be neither group- nor other-writeable until the special
6226         mode bits are right.
6227
6228 2007-01-31  Eric Blake  <ebb9@byu.net>
6229
6230         * modules/mountlist (Depends-on): Add strstr.
6231
6232         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR): Correct m4 usage
6233         bug.
6234         * modules/string (Makefile.am): Remove redundant replacement.
6235         * modules/regex (Depends-on): Add mempcpy.
6236
6237 2007-01-31  Bruno Haible  <bruno@clisp.org>
6238
6239         New module description field 'Link'.
6240         * gnulib-tool (func_usage): Document --extract-link-directive.
6241         (sed_extract_prog): Recognize 'Link' directive.
6242         (func_get_link_directive): New function.
6243         (func_import): Show summary of link directives.
6244         Handle --extract-link-directive option.
6245         * modules/acl (Link): New section.
6246         * modules/clock-time (Link): New section.
6247         * modules/euidaccess (Link): New section.
6248         * modules/gettext (Link): New section.
6249         * modules/iconv (Link): New section.
6250         * modules/lock (Link): New section.
6251         * modules/nanosleep (Link): New section.
6252         * modules/readline (Link): New section.
6253
6254 2007-01-27  Bruno Haible  <bruno@clisp.org>
6255
6256         Enforce the use of gnulib modules for unportable <string.h> functions.
6257         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR): New macro.
6258         (gl_STRING_MODULE_INDICATOR_DEFAULTS): New macro.
6259         (gl_HEADER_STRING_H_BODY): Require it.
6260         * lib/string_.h: If the gnulib module XYZ is not present, redefine
6261         the symbol XYZ to one that gives a link error.
6262         * modules/string (Makefile.am): Also substitute the GNULIB_* variables.
6263         * modules/memmem (configure.ac): Invoke gl_STRING_MODULE_INDICATOR.
6264         * modules/mempcpy (configure.ac): Likewise.
6265         * modules/memrchr (configure.ac): Likewise.
6266         * modules/stpcpy (configure.ac): Likewise.
6267         * modules/stpncpy (configure.ac): Likewise.
6268         * modules/strcase (configure.ac): Likewise.
6269         * modules/strcasestr (configure.ac): Likewise.
6270         * modules/strchrnul (configure.ac): Likewise.
6271         * modules/strdup (configure.ac): Likewise.
6272         * modules/strndup (configure.ac): Likewise.
6273         * modules/strnlen (configure.ac): Likewise.
6274         * modules/strpbrk (configure.ac): Likewise.
6275         * modules/strsep (configure.ac): Likewise.
6276         * modules/strstr (configure.ac): Likewise.
6277         * modules/strtok_r (configure.ac): Likewise.
6278
6279 2007-01-31  Jean-Louis Martineau  <martineau@zmanda.com>  (tiny change)
6280
6281         * lib/gai_strerror.c (values): Add EAI_OVERFLOW.
6282
6283 2007-01-30  Jim Meyering  <jim@meyering.net>
6284
6285         * lib/mpsort.c (mpsort): Remove spurious "return" in void function.
6286
6287 2007-01-29  Bruno Haible  <bruno@clisp.org>
6288
6289         * lib/allocsa.h: Use '#if HAVE_*' instead of '#ifdef HAVE_*'.
6290         * lib/execute.c: Likewise.
6291         * lib/pipe.c: Likewise.
6292         * lib/printf-args.h: Likewise.
6293         * lib/printf-args.c: Likewise.
6294         * lib/printf-parse.c: Likewise.
6295         * lib/vasnprintf.c: Likewise.
6296
6297 2007-01-29  Eric Blake  <ebb9@byu.net>
6298
6299         * lib/memrchr.c: Assume <string.h> unconditionally, to pull in
6300         declaration.
6301
6302 2007-01-29  Paul Eggert  <eggert@cs.ucla.edu>
6303
6304         * lib/strptime.h (strptime): Use 'restrict' for args where
6305         POSIX requires this.
6306         * lib/strptime.c (strptime): Likewise.
6307         Change license notice from LGPL to GPL, since gnulib-tool will
6308         change this as needed.
6309         Include <config.h> if _LIBC is not defined, not if HAVE_CONFIG_H is
6310         defined.
6311         Include "strptime.h" first, to check interface.
6312         Do not #undef _LIBC and _NL_CURRENT.
6313         Do not include <stdlib.h>; no longer needed.
6314         Include "time_r.h" and declare ptime_locale_status
6315         only if _LIBC is not defined.
6316         (__P): Remove unused macro.
6317         (match_string): Bring back glibc version, but use it only if _LIBC
6318         is defined.
6319         (__strptime_internal): Compile tm_gmtoff code if _LIBC is defined, too.
6320         Remove unnecessary assertion and abort() call.
6321         Use #ifdef _NL_CURRENT rather than #if 0, for benefit of glibc.
6322         * m4/strptime.m4: Fix serial number comment.
6323         (gl_FUNC_STRPTIME): Require AC_C_RESTRICT, gl_TM_GMTOFF.
6324         * modules/strptime (Files): Add m4/tm_gmtoff.m4.
6325         (Depends-on): Add time_r.
6326
6327 2007-01-29  Bruno Haible  <bruno@clisp.org>
6328
6329         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
6330         strptime.
6331         * modules/strptime (Depends-on): Add stdbool.
6332         * lib/strptime.h: Include <time.h> always. Add comments.
6333
6334 2007-01-29  Yoann Vandoorselaere  <yoann@prelude-ids.org>
6335
6336         * modules/strptime: New file.
6337         * lib/strptime.h: New file.
6338         * lib/strptime.c: New file.
6339         * m4/strptime.m4: New file.
6340
6341 2007-01-28  Paul Eggert  <eggert@cs.ucla.edu>
6342
6343         * MODULES.html.sh: New module mpsort.
6344         * lib/mpsort.c, lib/mpsort.h, m4/mpsort.m4, modules/mpsort: New files.
6345
6346         * lib/regex.h (_Restrict_): Renamed from __restrict, to avoid
6347         a circularity problem with HP-UX ia64 reported by Bob Proulx in
6348         <http://lists.gnu.org/archive/html/bug-gnulib/2007-01/msg00394.html>.
6349         All uses changed.
6350         (_Restrict_arr_): Renamed from __restrict_arr, for similar reasons.
6351         All uses changed.
6352         * lib/regcomp.c, lib/regexec.c: Change all uses from __restrict
6353         to _Restrict_.
6354         * lib/regexec.c (regexec): Declare pmatch with _Restrict_arr_, so that
6355         the parameter matches the prototype.
6356
6357 2007-01-28  Jim Meyering  <jim@meyering.net>
6358
6359         * modules/sys_time (Makefile.am) [MOSTLYCLEANFILES]: Do use
6360         sys/time.h here, reverting that part of the previous patch:
6361         <http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/8959>.
6362
6363 2007-01-28  Bruno Haible  <bruno@clisp.org>
6364
6365         * modules/sys_time (Makefile.am): Build sys/time.h only when it's the
6366         value of $(SYS_TIME_H).
6367         [MOSTLYCLEANFILES]: Now that sys/time.h is created only when needed,
6368         remove it conditionally, too. [added by Jim Meyering]
6369         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Set SYS_TIME_H.
6370         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY):
6371         (gl_FUNC_GETTIMEOFDAY_CLOBBER): Set SYS_TIME_H when setting
6372         GETTIMEOFDAY_REPLACEMENT to 1.
6373
6374 2007-01-28  Bruno Haible  <bruno@clisp.org>
6375
6376         * m4/unistd_h.m4 (gl_HEADER_UNISTD_DEFAULTS): New macro.
6377         (gl_HEADER_UNISTD): Require it. Don't set UNISTD_H to empty here.
6378         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Require gl_HEADER_UNISTD_DEFAULTS.
6379         Set UNISTD_H instead of UNISTD_H2.
6380         * modules/fchdir (BUILT_SOURCES): Drop $(UNISTD_H2).
6381
6382 2007-01-28  Bruno Haible  <bruno@clisp.org>
6383
6384         * modules/mbchar (Makefile.am): Add mbchar.c to lib_SOURCES.
6385         * m4/mbchar.m4 (gl_MBCHAR): Remove AC_LIBOBJ invocation.
6386
6387 2007-01-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6388
6389         * gnulib-tool (func_emit_lib_Makefile_am, func_add_or_update)
6390         (func_create_testdir): Ensure C locale for `grep' and `tr'
6391         character ranges.
6392         (func_create_megatestdir): Avoid one `grep'.  Fix bug in
6393         ACLOCAL_AMFLAGS parsing state machine.
6394
6395 2007-01-27  Bruno Haible  <bruno@clisp.org>
6396
6397         * modules/unistr/base: Update.
6398
6399 2007-01-27  Bruno Haible  <bruno@clisp.org>
6400
6401         Rename u32-mbtouc -> u32-mbtouc-unsafe, u32-mbtouc-safe -> u32-mbtouc,
6402         u32_mbtouc -> u32_mbtouc_unsafe, u32_mbtouc_safe -> u32_mbtouc.
6403         * modules/unistr/u32-mbtouc-unsafe: Renamed from
6404         modules/unistr/u32-mbtouc.
6405         * lib/unistr/u32-mbtouc-unsafe.c: Renamed from lib/unistr/u32-mbtouc.c.
6406         * lib/unistr.h: Update.
6407         * lib/linebreak.c: Update.
6408         * modules/unistr/u32-mbtouc: Renamed from
6409         modules/unistr/u32-mbtouc-safe.
6410         * lib/unistr/u32-mbtouc.c: Renamed from lib/unistr/u32-mbtouc-safe.c.
6411         * lib/unistr.h: Update.
6412         * lib/unistr/u32-to-u8.c: Update.
6413         * lib/unistr/u32-to-u16.c: Update.
6414
6415 2007-01-27  Bruno Haible  <bruno@clisp.org>
6416
6417         Rename utf16-ucs4 -> utf16-ucs4-unsafe, utf16-ucs4-safe -> utf16-ucs4,
6418         u16_mbtouc -> u16_mbtouc_unsafe, u16_mbtouc_safe -> u16_mbtouc.
6419         * modules/utf16-ucs4-unsafe: Renamed from modules/utf16-ucs4.
6420         * lib/utf16-ucs4-unsafe.h: Renamed from lib/utf16-ucs4.h.
6421         * lib/unistr/utf16-ucs4-unsafe.c: Renamed from lib/unistr/utf16-ucs4.c.
6422         * modules/unistr/u16-mbtouc-unsafe: Renamed from
6423         modules/unistr/u16-mbtouc.
6424         * lib/unistr/u16-mbtouc-unsafe.c: Renamed from lib/unistr/u16-mbtouc.c.
6425         * lib/unistr.h: Update.
6426         * lib/linebreak.c: Update.
6427         * modules/linebreak: Update.
6428         * modules/utf16-ucs4: Renamed from modules/utf16-ucs4-safe.
6429         * lib/utf16-ucs4.h: Renamed from lib/utf16-ucs4-safe.h.
6430         * lib/unistr/utf16-ucs4.c: Renamed from lib/unistr/utf16-ucs4-safe.c.
6431         * modules/unistr/u16-mbtouc: Renamed from
6432         modules/unistr/u16-mbtouc-safe.
6433         * lib/unistr/u16-mbtouc.c: Renamed from lib/unistr/u16-mbtouc-safe.c.
6434         * lib/unistr.h: Update.
6435         * lib/unistr/u16-to-u8.c: Update.
6436         * modules/unistr/u16-to-u8: Update.
6437         * lib/unistr/u16-to-u32.c: Update.
6438         * modules/unistr/u16-to-u32: Update.
6439
6440 2007-01-27  Bruno Haible  <bruno@clisp.org>
6441
6442         Rename utf8-ucs4 -> utf8-ucs4-unsafe, utf8-ucs4-safe -> utf8-ucs4,
6443         u8_mbtouc -> u8_mbtouc_unsafe, u8_mbtouc_safe -> u8_mbtouc.
6444         * modules/utf8-ucs4-unsafe: Renamed from modules/utf8-ucs4.
6445         * lib/utf8-ucs4-unsafe.h: Renamed from lib/utf8-ucs4.h.
6446         * lib/unistr/utf8-ucs4-unsafe.c: Renamed from lib/unistr/utf8-ucs4.c.
6447         * modules/unistr/u8-mbtouc-unsafe: Renamed from
6448         modules/unistr/u8-mbtouc.
6449         * lib/unistr/u8-mbtouc-unsafe.c: Renamed from lib/unistr/u8-mbtouc.c.
6450         * lib/unistr.h: Update.
6451         * lib/striconveh.c: Update.
6452         * modules/striconveh: Update.
6453         * lib/linebreak.c: Update.
6454         * modules/linebreak: Update.
6455         * modules/utf8-ucs4: Renamed from modules/utf8-ucs4-safe.
6456         * lib/utf8-ucs4.h: Renamed from lib/utf8-ucs4-safe.h.
6457         * lib/unistr/utf8-ucs4.c: Renamed from lib/unistr/utf8-ucs4-safe.c.
6458         * modules/unistr/u8-mbtouc: Renamed from modules/unistr/u8-mbtouc-safe.
6459         * lib/unistr/u8-mbtouc.c: Renamed from lib/unistr/u8-mbtouc-safe.c.
6460         * lib/unistr.h: Update.
6461         * lib/striconveh.c: Update.
6462         * modules/striconveh: Update.
6463         * lib/unistr/u8-to-u16.c: Update.
6464         * modules/unistr/u8-to-u16: Update.
6465         * lib/unistr/u8-to-u32.c: Update.
6466         * modules/unistr/u8-to-u32: Update.
6467
6468 2007-01-27  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6469
6470         Sync from Libtool.
6471         * lib/argz.c: Do not include strings.h nor memory.h, include
6472         string.h unconditionally.  Patch by Simon Josefsson.
6473
6474 2007-01-27  Bruno Haible  <bruno@clisp.org>
6475
6476         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): New macro, extracted
6477         from gl_HEADER_STRING_H_BODY.
6478         (gl_HEADER_STRING_H_BODY): Require it.
6479         * m4/memmem.m4 (gl_FUNC_MEMMEM): Require gl_HEADER_STRING_H_DEFAULTS.
6480         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Likewise.
6481         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Likewise.
6482         * m4/stpcpy.m4 (gl_FUNC_STPCPY): Likewise.
6483         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Likewise.
6484         * m4/strcase.m4 (gl_FUNC_STRCASECMP, gl_FUNC_STRNCASECMP): Likewise.
6485         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
6486         * m4/strchrnul.m4 (gl_FUNC_STRCHRNUL): Likewise.
6487         * m4/strdup.m4 (gl_FUNC_STRDUP): Likewise.
6488         * m4/strndup.m4 (gl_FUNC_STRNDUP): Likewise.
6489         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Likewise.
6490         * m4/strpbrk.m4 (gl_FUNC_STRPBRK): Likewise.
6491         * m4/strsep.m4 (gl_FUNC_STRSEP): Likewise.
6492         * m4/strstr.m4 (gl_FUNC_STRSTR): Likewise.
6493         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Likewise.
6494
6495 2007-01-27  Bruno Haible  <bruno@clisp.org>
6496
6497         * gnulib-tool (func_emit_lib_Makefile_am): If $for_test is true, turn
6498         check_PROGRAMS into noinst_PROGRAMS.
6499         (func_emit_tests_Makefile_am): Likewise. Also don't initialize
6500         check_PROGRAMS in this case.
6501         (func_import): Set for_test to false.
6502         (func_create_testdir): Set for_test to true.
6503
6504 2007-01-27  Yoann Vandoorselaere <yoann.v@prelude-ids.com>
6505             Bruno Haible  <bruno@clisp.org>
6506
6507         * modules/strcasestr (Files): Remove lib/strcasestr.h.
6508         (Depends-on): Add string.
6509         (Includes): Use <string.h> instead of strcasestr.h.
6510         * modules/string (Makefile.am): Also substitute the value of
6511         REPLACE_STRCASESTR.
6512         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Don't define strcasestr here;
6513         assume strcasestr is declared in <string.h> not <strings.h>. Also
6514         set REPLACE_STRCASESTR.
6515         * m4/string_h.m4 (gl_HEADER_STRING_H_BODY): Provide a default value for
6516         REPLACE_STRCASESTR.
6517         * lib/strcasestr.h: Remove file.
6518         * lib/strcasestr.c: Include <string.h> instead of strcasestr.h.
6519         * lib/string_.h (strcasestr): New declaration.
6520
6521 2007-01-27  Bruno Haible  <bruno@clisp.org>
6522
6523         * lib/string_.h: Use 'extern'.
6524
6525 2007-01-27  Jim Meyering  <jim@meyering.net>
6526
6527         * lib/regex_internal.c (re_string_reconstruct): Remove declaration
6528         of set-but-not-used local, "q".
6529
6530         * lib/mempcpy.c: Include <config.h> before <string.h>.
6531         This fixes a compilation error on HP-UX, due to the system's
6532         "restrict"-using mempcpy prototype.
6533
6534 2007-01-26  Bruno Haible  <bruno@clisp.org>
6535
6536         Small optimization.
6537         * lib/javacomp.c: Include c-strstr.h.
6538          (is_envjavac_gcj): Use c_strstr instead of strstr.
6539         * modules/javacomp (Depends-on): Add c-strstr, remove strstr.
6540
6541 2007-01-26  Bruno Haible  <bruno@clisp.org>
6542
6543         * MODULES.html.sh (Unicode string functions): Add the new modules.
6544
6545         * modules/uniconv/u32-strconv-to-locale: New file.
6546         * lib/uniconv/u32-strconv-to-locale.c: New file.
6547
6548         * modules/uniconv/u16-strconv-to-locale: New file.
6549         * lib/uniconv/u16-strconv-to-locale.c: New file.
6550
6551         * modules/uniconv/u8-strconv-to-locale: New file.
6552         * lib/uniconv/u8-strconv-to-locale.c: New file.
6553
6554         * modules/uniconv/u32-strconv-from-locale: New file.
6555         * lib/uniconv/u32-strconv-from-locale.c: New file.
6556
6557         * modules/uniconv/u16-strconv-from-locale: New file.
6558         * lib/uniconv/u16-strconv-from-locale.c: New file.
6559
6560         * modules/uniconv/u8-strconv-from-locale: New file.
6561         * lib/uniconv/u8-strconv-from-locale.c: New file.
6562
6563         * modules/uniconv/u32-strconv-to-enc: New file.
6564         * lib/uniconv/u32-strconv-to-enc.c: New file.
6565         * modules/uniconv/u32-strconv-to-enc-tests: New file.
6566         * tests/uniconv/test-u32-strconv-to-enc.c: New file.
6567
6568         * modules/uniconv/u16-strconv-to-enc: New file.
6569         * lib/uniconv/u16-strconv-to-enc.c: New file.
6570         * lib/uniconv/u-strconv-to-enc.h: New file.
6571         * modules/uniconv/u16-strconv-to-enc-tests: New file.
6572         * tests/uniconv/test-u16-strconv-to-enc.c: New file.
6573
6574         * modules/uniconv/u8-strconv-to-enc: New file.
6575         * lib/uniconv/u8-strconv-to-enc.c: New file.
6576         * modules/uniconv/u8-strconv-to-enc-tests: New file.
6577         * tests/uniconv/test-u8-strconv-to-enc.c: New file.
6578
6579         * modules/uniconv/u32-strconv-from-enc: New file.
6580         * lib/uniconv/u32-strconv-from-enc.c: New file.
6581         * modules/uniconv/u32-strconv-from-enc-tests: New file.
6582         * tests/uniconv/test-u32-strconv-from-enc.c: New file.
6583
6584         * modules/uniconv/u16-strconv-from-enc: New file.
6585         * lib/uniconv/u16-strconv-from-enc.c: New file.
6586         * modules/uniconv/u16-strconv-from-enc-tests: New file.
6587         * tests/uniconv/test-u16-strconv-from-enc.c: New file.
6588
6589         * modules/uniconv/u8-strconv-from-enc: New file.
6590         * lib/uniconv/u8-strconv-from-enc.c: New file.
6591         * lib/uniconv/u-strconv-from-enc.h: New file.
6592         * modules/uniconv/u8-strconv-from-enc-tests: New file.
6593         * tests/uniconv/test-u8-strconv-from-enc.c: New file.
6594
6595         * modules/uniconv/u32-conv-from-enc: New file.
6596         * lib/uniconv/u32-conv-from-enc.c: New file.
6597         * modules/uniconv/u32-conv-from-enc-tests: New file.
6598         * tests/uniconv/test-u32-conv-from-enc.c: New file.
6599
6600         * modules/uniconv/u16-conv-from-enc: New file.
6601         * lib/uniconv/u16-conv-from-enc.c: New file.
6602         * lib/uniconv/u-conv-from-enc.h: New file.
6603         * modules/uniconv/u16-conv-from-enc-tests: New file.
6604         * tests/uniconv/test-u16-conv-from-enc.c: New file.
6605
6606         * modules/uniconv/u8-conv-from-enc: New file.
6607         * lib/uniconv/u8-conv-from-enc.c: New file.
6608         * modules/uniconv/u8-conv-from-enc-tests: New file.
6609         * tests/uniconv/test-u8-conv-from-enc.c: New file.
6610
6611         * modules/uniconv/base: New file.
6612         * lib/uniconv.h: New file.
6613
6614 2007-01-26  Paul Eggert  <eggert@cs.ucla.edu>
6615
6616         * doc/gnulib-tool.texi (Initial import): Update to match current
6617         behavior with strdup module.
6618         * lib/.cppi-disable: Remove strcase.h, strdup.h, strndup.h, strnlen.h.
6619         * lib/memmem.h: Remove; all uses removed.  This is now done
6620         by <string.h>.
6621         * lib/mempcpy.h: Likewise.
6622         * lib/memrchr.h: Likewise.
6623         * lib/stpcpy.h: Likewise.
6624         * lib/stpncpy.h: Likewise.
6625         * lib/strcase.h: Likewise.
6626         * lib/strchrnul.h: Likewise.
6627         * lib/strdup.h: Likewise.
6628         * lib/strndup.h: Likewise.
6629         * lib/strnlen.h: Likewise.
6630         * lib/strpbrk.h: Likewise.
6631         * lib/strsep.h: Likewise.
6632         * lib/strstr.h: Likewise.
6633         * lib/strtok_r.h: Likewise.
6634         * lib/string_.h: New file.
6635         * lib/argp-namefrob.h: Don't include no-longer-existent include files.
6636         Rely on <string.h> instead.
6637         * lib/canon-host.c: Likewise.
6638         * lib/chdir-long.c: Likewise.
6639         * lib/concatpath.c: Likewise.
6640         * lib/exclude.c: Likewise.
6641         * lib/fchdir.c: Likewise.
6642         * lib/getaddrinfo.c: Likewise.
6643         * lib/getcwd.c: Likewise.
6644         * lib/getsubopt.c: Likewise.
6645         * lib/glob.c: Likewise.
6646         * lib/hard-locale.c: Likewise.
6647         * lib/iconvme.c: Likewise.
6648         * lib/javacomp.c: Likewise.
6649         * lib/mempcpy.c: Likewise.
6650         * lib/memrchr.c: Likewise.
6651         * lib/regex_internal.h: Likewise.
6652         * lib/stpncpy.c: Likewise.
6653         * lib/strcasecmp.c: Likewise.
6654         * lib/strchrnul.c: Likewise.
6655         * lib/strdup.c: Likewise.
6656         * lib/striconv.c: Likewise.
6657         * lib/striconveh.c: Likewise.
6658         * lib/striconveha.c: Likewise.
6659         * lib/strncasecmp.c: Likewise.
6660         * lib/strndup.c: Likewise.
6661         * lib/strnlen.c: Likewise.
6662         * lib/strsep.c: Likewise.
6663         * lib/strstr.c: Likewise.
6664         * lib/strtok_r.c: Likewise.
6665         * lib/userspec.c: Likewise.
6666         * lib/w32spawn.h: Likewise.
6667         * lib/xstrndup.c: Likewise.
6668         * lib/mountlist.c (strstr): Remove decl.
6669         * m4/string_h.m4: New file.
6670         * m4/memmem.m4 (gl_FUNC_MEMMEM): Set HAVE_DECL_MEMMEM if necessary.
6671         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Set HAVE_MEMPCPY if necessary.
6672         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Set HAVE_MEMRCHR
6673         * m4/stpcpy.m4 (gl_FUNC_STPCPY): Set HAVE_STPCPY if necessary.
6674         * m4/stpncpy.m4 (gl_PREREQ_STPNCPY): Set HAVE_STPNCPY if necessary.
6675         * m4/strcase.m4 (gl_FUNC_STRCASECMP):
6676         Set REPLACE_STRCASECMP if necessary.
6677         (gl_FUNC_STRNCASECMP): Set HAVE_DECL_STRNCASECMP if necessary.
6678         * m4/strchrnul.m4 (gl_FUNC_STRCHRNUL): Set HAVE_STRCHRNUL if necessary.
6679         * m4/strdup.m4 (gl_FUNC_STRDUP): Set HAVE_DECL_STRDUP if necessary.
6680         * m4/strndup.m4 (gl_FUNC_STRNDUP): Set HAVE_DECL_STRNLEN and
6681         HAVE_DECL_STRDUP if necessary.
6682         (gl_PREREQ_STRNLEN): Don't bother to check for strnlen decl,
6683         since gl_FUNC_STRNDUP does that now.
6684         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Set HAVE_DECL_STRNLEN if necessary.
6685         Check for decl here...
6686         (gl_PREREQ_STRNLEN): ... not here.
6687         * m4/strpbrk.m4 (gl_FUNC_STRPBRK): Set HAVE_STRPBRK if necessary.
6688         * m4/strsep.m4 (gl_FUNC_STRSEP): Set HAVE_STRSEP if necessary.
6689         * m4/strstr.m4 (gl_FUNC_STRSTR): Set REPLACE_STRSTR if necessary.
6690         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Set HAVE_DECL_STRTOK_R if
6691         necessary.
6692         * modules/string: New file.
6693         * modules/memmem (Files): Remove special-purpose include file.
6694         (Depends-on): Add string.
6695         (Include): Include <string.h>, not the removed file.
6696         * modules/mempcpy: Likewise.
6697         * modules/memrchr: Likewise.
6698         * modules/stpcpy: Likewise.
6699         * modules/stpncpy: Likewise.
6700         * modules/strcase: Likewise.
6701         * modules/strchrnul: Likewise.
6702         * modules/strdup: Likewise.
6703         * modules/strndup: Likewise.
6704         * modules/strnlen: Likewise.
6705         * modules/strpbrk: Likewise.
6706         * modules/strsep: Likewise.
6707         * modules/strstr: Likewise.
6708         * modules/strtok_r: Likewise.
6709         * tests/test-dirname.c: Don't include "strdup.h", since
6710         <string.h> now suffices.
6711         * tests/test-memmem.c: Don't include "memmem.h", since
6712         <string.h> now suffices.
6713
6714 2007-01-25  Bruno Haible  <bruno@clisp.org>
6715
6716         * lib/striconveh.c (mem_cd_iconveh_internal): Ignore *lengthp if
6717         *resultp is 0.
6718
6719         * lib/unistr/u16-to-u8.c (u16_to_u8): Fix u8_uctomb invocation.
6720         * lib/unistr/u32-to-u8.c (u32_to_u8): Likewise.
6721         * lib/unistr/u8-to-u16.c (u8_to_u16): Fix u16_uctomb invocation.
6722         * lib/unistr/u32-to-u16.c (u32_to_u16): Likewise.
6723
6724         * modules/unistr/u8-to-u16 (Depends-on): Add missing modules.
6725         * modules/unistr/u8-to-u32 (Depends-on): Add missing modules.
6726         * modules/unistr/u16-to-u8 (Depends-on): Add missing modules.
6727         * modules/unistr/u16-to-u32 (Depends-on): Add missing modules.
6728         * modules/unistr/u32-to-u8 (Depends-on): Add missing modules.
6729         * modules/unistr/u32-to-u16 (Depends-on): Add missing modules.
6730
6731 2007-01-24  Bruno Haible  <bruno@clisp.org>
6732
6733         Don't AC_REQUIRE autoconf macros that invoke AC_LIBOBJ. See
6734         <http://lists.gnu.org/archive/html/bug-gnulib/2006-10/msg00279.html>.
6735         * m4/argp.m4 (gl_ARGP): Invoke, don't require, gl_GETOPT_SUBSTITUTE.
6736         * m4/fts.m4 (gl_FUNC_FTS, gl_FUNC_FTS_LGPL): Invoke, don't require,
6737         gl_FUNC_FTS_CORE.
6738         (gl_FUNC_FTS_CORE): Invoke, don't require, gl_FUNC_OPENAT.
6739         * m4/lstat.m4 (gl_FUNC_LSTAT): Invoke, don't require,
6740         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
6741         * m4/memcmp.m4 (gl_FUNC_MEMCMP): Invoke, don't require, AC_FUNC_MEMCMP.
6742         * m4/mktime.m4 (gl_FUNC_MKTIME): Invoke, don't require, AC_FUNC_MKTIME.
6743         * m4/openat.m4 (gl_FUNC_OPENAT): Invoke, don't require,
6744         gl_FUNC_FCHOWNAT.
6745         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME): Invoke, don't require,
6746         gl_FUNC_STRFTIME.
6747         * m4/strtod.m4 (gl_FUNC_STRTOD): Invoke, don't require, AC_FUNC_STRTOD.
6748         Reported by Ralf Wildenhues.
6749
6750 2007-01-24  Bruno Haible  <bruno@clisp.org>
6751
6752         Drop AC_REQUIRE calls that are redundant with the module dependencies.
6753         * m4/canon-host.m4 (gl_PREREQ_CANON_HOST): Don't require
6754         gl_GETADDRINFO.
6755         * m4/chdir-long.m4 (gl_PREREQ_CHDIR_LONG): Don't require AM_STDBOOL_H,
6756         gl_FUNC_MEMPCPY, gl_FUNC_OPENAT, gl_FUNC_MEMRCHR.
6757         * m4/openat.m4 (gl_PREREQ_OPENAT): Don't require gl_SAVE_CWD.
6758
6759 2007-01-24  Paul Eggert  <eggert@cs.ucla.edu>
6760
6761         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Add test for glibc bug 361.
6762         Don't use 'exit'; just return from 'main'.
6763         (_AC_LIBOBJ_FNMATCH): Check for headers and functions just once.
6764
6765         * lib/fnmatch_.h: Readjust white space and comments to match
6766         glibc, to avoid spurious diffs.
6767
6768 2007-01-23  Paul Eggert  <eggert@cs.ucla.edu>
6769
6770         * lib/fnmatch_loop.c (internal_fnmatch) [!_LIBC]: #if-out the
6771         2004-12-01 change by Jakub Jelinek, since this code won't compile
6772         if !LIBC.  Problem reported by Bob Proulx.
6773
6774 2007-01-23  Bruno Haible  <bruno@clisp.org>
6775
6776         * lib/striconveh.c: Include c-strcaseeq.h.
6777         (mem_iconveh, str_iconveh): Use STRCASEEQ instead of c_strcasecmp.
6778         * modules/striconveh (Depends-on): Add c-strcaseeq.
6779
6780 2007-01-23  Bruno Haible  <bruno@clisp.org>
6781
6782         * MODULES.html.sh (String handling): Add streq, c-strcaseeq.
6783
6784         * modules/c-strcaseeq: New file.
6785         * lib/c-strcaseeq.h: New file.
6786
6787         * modules/streq: New file.
6788         * lib/streq.h: New file.
6789
6790 2007-01-23  Bruno Haible  <bruno@clisp.org>
6791
6792         * modules/striconveha-tests: New file.
6793         * tests/test-striconveha.c: New file.
6794
6795         * lib/striconveha.h: Include <stdbool.h>.
6796         (mem_iconveha, str_iconveha): Add 'transliterate' argument.
6797         * lib/striconveha.c: Include allocsa.h, strdup.h, c-strcase.h.
6798         (mem_iconveha_notranslit): Renamed from mem_iconveha.
6799         (mem_iconveha): New function.
6800         (str_iconveha_notranslit): Renamed from str_iconveha.
6801         (str_iconveha): New function.
6802         * modules/striconveha (Depends-on): Add stdbool, allocsa, strdup,
6803         c-strcase.
6804
6805 2007-01-23  Bruno Haible  <bruno@clisp.org>
6806
6807         * lib/striconveha.c (mem_iconveha): Fix endless recursion. Try all
6808         encodings without forgiving before trying any encoding with handler.
6809         (str_iconveha): Try all encodings without forgiving before trying any
6810         encoding with handler.
6811
6812 2007-01-23  Paul Eggert  <eggert@cs.ucla.edu>
6813
6814         Import the following changes from libc.
6815
6816         2005-10-14  Ulrich Drepper  <drepper@redhat.com>
6817
6818         * lib/fnmatch_loop.c: Adjust for changed secondary hash function.
6819
6820         2004-12-01  Jakub Jelinek  <jakub@redhat.com>
6821
6822         * lib/fnmatch_loop.c (internal_fnmatch): Clear is_seqval after
6823         normal_bracket label.
6824
6825         2004-09-01  Jakub Jelinek  <jakub@redhat.com>
6826
6827         [BZ #361]
6828         * lib/fnmatch_loop.c (FCT): For backslash between brackets, branch
6829         to normal_bracket after fetching the next character.
6830
6831 2007-01-22  Bruno Haible  <bruno@clisp.org>
6832
6833         * lib/striconveh.h (mem_cd_iconveh, mem_iconveh): Add 'offsets'
6834         argument.
6835         * lib/striconveh.c (iconv_carefully_1): New function.
6836         (mem_cd_iconveh_internal, mem_cd_iconveh, mem_iconveh): Add 'offsets'
6837         argument.
6838         (str_cd_iconveh): Update.
6839         * lib/striconveha.h (mem_iconveha): Add 'offsets' argument.
6840         * lib/striconveha.c (mem_iconveha): Add 'offsets' argument.
6841         * tests/test-striconveh.c (MAGIC): New macro.
6842         (new_offsets): New function.
6843         (main): Test call with and without offsets.
6844
6845 2007-01-22  Bruno Haible  <bruno@clisp.org>
6846
6847         * modules/sys_stat (Makefile.am): Use @MKDIR_P@ instead of $(MKDIR_P).
6848         * modules/sys_select (Makefile.am): Likewise.
6849         * modules/sys_socket (Makefile.am): Likewise.
6850         * modules/sys_time (Makefile.am): Likewise.
6851
6852 2007-01-22  Paul Eggert  <eggert@cs.ucla.edu>
6853
6854         * modules/gettimeofday (License): Change from GPL to LGPL, since
6855         gettimeofday is a library function.
6856
6857 2007-01-22  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
6858
6859         * lib/poll.c (rpl_poll): Don't check against FD_SETSIZE under Win32.
6860
6861 2007-01-21  Bruno Haible  <bruno@clisp.org>
6862
6863         * m4/gnulib-common.m4 (AC_PROG_MKDIR_P): New macro.
6864
6865 2007-01-21  Bruno Haible  <bruno@clisp.org>
6866
6867         * modules/striconveha: New file.
6868         * lib/striconveha.h: New file.
6869         * lib/striconveha.c: New file.
6870         * MODULES.html.sh (Internationalization functions): Add striconveha.
6871         * lib/striconv.c (str_iconv): Optimize the case of an empty input
6872         string.
6873         * lib/striconveh.c (mem_iconveh, str_iconveh): Likewise.
6874
6875 2007-01-21  Bruno Haible  <bruno@clisp.org>
6876
6877         * lib/striconv.c (str_iconv): Guarantee errno is set when strdup fails.
6878         * lib/striconveh.c (str_iconveh): Likewise.
6879
6880 2007-01-21  Bruno Haible  <bruno@clisp.org>
6881
6882         * lib/striconveh.h (mem_iconveh): New declaration.
6883         * lib/striconveh.c (mem_iconveh): New function.
6884         * tests/test-striconveh.c (main): Add tests for mem_iconveh.
6885
6886 2007-01-21  Bruno Haible  <bruno@clisp.org>
6887
6888         * lib/xstriconv.h (xmem_cd_iconv): Change specification.
6889
6890         * lib/striconveh.h (mem_cd_iconveh): Change specification.
6891         * lib/striconveh.c (mem_cd_iconveh): Don't free the user-supplied
6892         original result buffer.
6893         (str_cd_iconveh): Update.
6894         * tests/test-striconveh.c (main): Update.
6895
6896         * lib/striconv.h (mem_cd_iconv): Change specification.
6897         * lib/striconv.c (mem_cd_iconv): Don't free the user-supplied original
6898         result buffer.
6899         (str_cd_iconv): Update.
6900         * tests/test-striconv.c (main): Update.
6901
6902 2007-01-21  Bruno Haible  <bruno@clisp.org>
6903
6904         * gnulib-tool: Fix test whether sed is GNU sed supporting --posix.
6905
6906 2007-01-20  Jim Meyering  <jim@meyering.net>
6907
6908         * lib/userspec.c (parse_with_separator): If a user or group string
6909         starts with "+", skip the corresponding name-to-ID look-up, since
6910         such a look-up must fail: user and group names may not include "+".
6911
6912 2007-01-19  Paul Eggert  <eggert@cs.ucla.edu>
6913
6914         * lib/poll.c: Include sys/time.h and time.h unconditionally,
6915         since we now assume the sys_time module.
6916         * m4/poll.m4 (gl_PREREQ_POLL): Don't require AC_HEADER_TIME or
6917         check for sys/time.h; no longer needed.
6918         * modules/poll (Depends-on): Depend on sys_time.
6919
6920 2007-01-18  Bruno Haible  <bruno@clisp.org>
6921
6922         * m4/mktime.m4 (AC_FUNC_MKTIME): Remove test for <sys/time.h>.
6923         * m4/strftime.m4 (gl_FUNC_STRFTIME): Likewise.
6924
6925         * m4/tempname.m4 (gl_PREREQ_TEMPNAME): Remove tests for sys/time.h and
6926         gettimeofday.
6927
6928         * tests/test-gettimeofday.c: Include <time.h>.
6929         (dummy): Remove variable.
6930
6931         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Renamed from
6932         gl_HEADER_SYS_TIME_H.
6933         (gl_HEADER_SYS_TIME_H): New macro.
6934
6935         * lib/sys_time_.h: Test GETTIMEOFDAY_REPLACEMENT instead of
6936         HAVE_GETTIMEOFDAY_POSIX_SIGNATURE and GETTIMEOFDAY_CLOBBERS_LOCALTIME.
6937         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY,
6938         gl_FUNC_GETTIMEOFDAY_CLOBBER): Set GETTIMEOFDAY_REPLACEMENT instead of
6939         HAVE_GETTIMEOFDAY_POSIX_SIGNATURE and GETTIMEOFDAY_CLOBBERS_LOCALTIME.
6940         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H): Initialize
6941         GETTIMEOFDAY_REPLACEMENT instead of HAVE_GETTIMEOFDAY_POSIX_SIGNATURE
6942         and GETTIMEOFDAY_CLOBBERS_LOCALTIME.
6943         * modules/sys_time (sys/time.h): Substitute GETTIMEOFDAY_REPLACEMENT
6944         instead of HAVE_GETTIMEOFDAY_POSIX_SIGNATURE and
6945         GETTIMEOFDAY_CLOBBERS_LOCALTIME.
6946
6947         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Undo the
6948         last change; it caused a compilation error when cross-compiling to
6949         Cygwin.
6950
6951 2007-01-18  Jim Meyering  <jim@meyering.net>
6952
6953         Use "$(MKDIR_P) sys", not race-prone "test -d sys || mkdir sys".
6954         * modules/sys_stat (Makefile.am): Use "$(MKDIR_P) sys", rather
6955         than the race-prone "test -d sys || mkdir sys".
6956         (configure.ac): Use AC_PROG_MKDIR_P.
6957         * modules/sys_select: Likewise.
6958         * modules/sys_socket: Likewise.
6959         * modules/sys_time: Likewise.
6960
6961 2007-01-18  Eric Blake  <ebb9@byu.net>
6962
6963         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Also
6964         replace gettimeofday.
6965         * lib/gettimeofday.c (rpl_gettimeofday): Declare with replacement
6966         name, to avoid infinite recursion.
6967
6968 2007-01-17  Paul Eggert  <eggert@cs.ucla.edu>
6969
6970         * MODULES.html.sh (Support for systems lacking POSIX:2001): New
6971         module sys_time.
6972         * lib/gethrxtime.c: Include <sys/time.h>, since we can no longer
6973         assume timespec.h defines struct timeval.
6974         * lib/settime.c: Likewise.
6975         * lib/utimens.c: Likewise.
6976         * lib/gettime.c (gettime): Remove test against HAVE_GETTIMEOFDAY,
6977         since we now assume the gettimeofday module.
6978         * lib/tempname.c (__gen_tempname): Likewise.
6979         * lib/gettimeofday.h: Remove.
6980         * lib/gettimeofday.c: Include <sys/time.h> instead of "gettimeofday.h".
6981         Don't include <sys/types.h> and <stdlib.h>; shouldn't be needed.
6982         Include <time.h>, for 'time()'.
6983         (localtime_buffer_addr): Also use this workaround if
6984         TZSET_CLOBBERS_LOCALTIME.  Set to a dummy static variable by default,
6985         to simplify the uses.  All uses changed.
6986         (localtime, gmtime, tzset, gettimeofday): Reformat slightly so
6987         that #undef is inside {}, and 'const' follows type name consistently.
6988         (tzset): Define replacement only if TZSET_CLOBBERS_LOCALTIME.
6989         (gettimeofday): Do not use the maximum possible value for
6990         tv->tv_usec, since that might break usages other than ls.c.
6991         Instead, we'll leave ls.c alone.  This undoes today's patch
6992         by Bruno.  Add a compile-time warning for 1s-clock resolution;
6993         we've never observed the problem but might as well keep the
6994         canary.
6995         * lib/nanosleep.c: Include timespec.h first, for interface check.
6996         * lib/nanosleep.c: Include <sys/time.h> unconditionally, since we
6997         now assume the sys_time module.
6998         * lib/tempname.c: Likewise.
6999         * lib/timespec.h: Likewise.
7000         * lib/nanosleep.c: Don't worry about TIME_WITH_SYS_TIME; no longer
7001         needed.
7002         * lib/strftime.c: Likewise.
7003         * lib/timespec.h: Likewise.
7004         * lib/posixtm.c: Include posixtm.h first, for interface check.
7005         Don't worry about TM_IN_SYS_TIME; that's wayyy obsolete.
7006         * lib/posixtm.h: Include stdbool.h and time.h, for proper interface.
7007         * lib/strftime.c: Don't include <sys/types.h>; shouldn't be needed.
7008         * lib/sys_time_.h: New file.
7009         * lib/timespec.h (struct timespec): Use long int, not long.
7010         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY):
7011         (gl_FUNC_GETTIMEOFDAY_CLOBBER, gl_PREREQ_GETTIMEOFDAY):
7012         Remove obsolescent call to AC_HEADER_TIME.
7013         * m4/mktime.m4 (AC_FUNC_MKTIME): Likewise.
7014         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
7015         * m4/strftime.m4 (gl_FUNC_STRFTIME): Likewise.
7016         * m4/timespec.m4 (gl_TIMESPEC, gl_CHECK_TYPE_STRUCT_TIMESPEC):
7017         Likewise.
7018         * m4/tzset.m4 (gl_FUNC_TZSET_CLOBBER): Likewise.
7019         * m4/utimbuf.m4 (gl_CHECK_TYPE_STRUCT_UTIMBUF): Likewise.
7020         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY): Move sys/time.h tests
7021         into the sys_time module.  Check for gettimeofday just once.
7022         Prefix our variables with gl_, not with ac_ or jm_.  Tighten test
7023         for gettimeofday signature to just check the signature.  Merely
7024         compile it, since linking doesn't test signature.  Improve test for
7025         whether gettimeofday.o is actually needed.
7026         (gl_FUNC_GETTIMEOFDAY_CLOBBER): Renamed from
7027         AC_FUNC_GETTIMEOFDAY_CLOBBER.  All uses changed.  Use
7028         AC_RUN_IFELSE rather than AC_TRY_RUN.  If clobbering, set
7029         and define GETTIMEOFDAY_CLOBBERS_LOCALTIME.
7030         (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Don't define
7031         GETTIMEOFDAY_CLOBBERS_LOCALTIME; that's gl_FUNC_GETTIMEOFDAY_CLOBBER's
7032         job.  Don't define tzset; that's gl_FUNC_TZSET_CLOBBER's job.
7033         * m4/mktime.m4 (AC_FUNC_MKTIME): Just include <time.h> rather
7034         than worrying about sys/time.h.
7035         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP):
7036         Don't bother worrying about TIME_WITH_SYS_TIME.
7037         * m4/stat-time.m4 (gl_STAT_TIME): Likewise.
7038         * m4/posixtm.m4 (gl_POSIXTM): Remove obsolescent call to AC_STRUCT_TM.
7039         * m4/sys_time_h.m4: New file.
7040         * m4/tzset.m4 (gl_FUNC_TZSET_CLOBBER): Require gl_HEADER_SYS_TIME_H.
7041         Don't include sys/time.h.  Return from main rather than exiting.
7042         Define TZSET_CLOBBERS_LOCALTIME, for consistency with other names;
7043         all uses changed.
7044         * modules/gethrxtime (Depends-on): Add sys_time.
7045         * modules/gettime (Depends-on): Likewise.
7046         * modules/gettimeofday (Depends-on): Likewise.
7047         * modules/nanosleep (Depends-on): Likewise.
7048         * modules/settime (Depends-on): Likewise.
7049         * modules/tempname (Depends-on): Likewise.
7050         * modules/utimens (Depends-on): Likewise.
7051         * modules/gettimeofday (Files): Remove lib/gettimeofday.h.
7052         (Include:) Change back to <sys/time.h>.
7053         (Maintainer:) Add self.
7054         * modules/sys_time: New file.
7055         * modules/tempname (Depends-on): Add gettimeofday.
7056         * tests/test-gettimeofday.c: Include <sys/time.h>
7057         rather than gettimeofday.h.
7058
7059 2007-01-17  Bruno Haible  <bruno@clisp.org>
7060
7061         * gnulib-tool (func_get_license): Revert last patch. Instead, let
7062         the license default to GPL.
7063         (func_create_testdir): Don't complain if a module is LGPL and its
7064         tests module depends on GPLed modules.
7065
7066 2007-01-17  Bruno Haible  <bruno@clisp.org>
7067
7068         * lib/gettimeofday.c (gettimeofday): Add code for the case
7069         HAVE_GETTIMEOFDAY && !GETTIMEOFDAY_CLOBBERS_LOCALTIME. Use the
7070         maximum possible value for tv->tv_usec, rather than the minimum one.
7071
7072 2005-10-08  Martin Lambers  <marlam@marlam.de>
7073 2005-10-08  Paul Eggert  <eggert@cs.ucla.edu>
7074 2007-01-16  Bruno Haible  <bruno@clisp.org>
7075
7076         * modules/gettimeofday (Files): Add lib/gettimeofday.h.
7077         (configure.ac): Remove AC_FUNC_GETTIMEOFDAY_CLOBBER. Add
7078         gl_FUNC_GETTIMEOFDAY.
7079         (Include): Add gettimeofday.h.
7080         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY): New macro.
7081         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Don't invoke gl_PREREQ_GETTIMEOFDAY.
7082         (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Define
7083         GETTIMEOFDAY_CLOBBERS_LOCALTIME. Invoke gl_PREREQ_GETTIMEOFDAY here.
7084         (gl_PREREQ_GETTIMEOFDAY): Check for <sys/timeb.h> and _ftime.
7085         * lib/gettimeofday.h: New file.
7086         * lib/gettimeofday.c: Include <sys/timeb.h>.
7087         (localtime_buffer_addr, rpl_localtime, rpl_gmtime, rpl_tzset): Define
7088         only if GETTIMEOFDAY_CLOBBERS_LOCALTIME.
7089         (rpl_gettimeofday) [!HAVE_GETTIMEOFDAY]: Use _ftime() when available;
7090         fall back on time().
7091
7092         * tests/test-gettimeofday.c: New file.
7093         * modules/gettimeofday-tests: New file.
7094
7095 2007-01-16  Eric Blake  <ebb9@byu.net>
7096
7097         * modules/fnmatch (Depends-on): Depend on wchar.
7098         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Assume <wchar.h>.
7099         * m4/fnmatch.m4: Likewise.
7100         * modules/mbchar (Makefile.am): Assume <wchar.h>.
7101         * m4/mbchar.m4: Likewise.
7102         * modules/mbswidth (Depends-on): Depend on wchar.
7103         * lib/mbswidth.c: Assume <wchar.h>.
7104         * m4/mbswidth.m4: Likewise.
7105         * modules/quotearg (Depends-on): Depend on wchar.
7106         * lib/quotearg.c: Assume <wchar.h>.
7107         * m4/quotearg.m4: Likewise.
7108         * modules/regex (Depends-on): Depend on wchar.
7109         * lib/regex_internal.h: Assume <wchar.h>.
7110         * m4/regex.m4: Likewise.
7111         * modules/stdint (Depends-on): Depend on wchar.
7112         * lib/stdint_.h [!defined WCHAR_MIN]: Assume <wchar.h>.
7113         * m4/stdint.m4: Likewise.
7114         * tests/test-stdint.c [HAVE_WINT_T]: Likewise.
7115         * modules/strftime (Depends-on): Depend on wchar.
7116         * lib/strftime.c (DO_MULTIBYTE): Assume <wchar.h>.
7117         * modules/strtol (Depends-on): Depend on wchar.
7118         * lib/strtol.c: Assume <wchar.h>.
7119         * modules/wcwidth (Depends-on): Depend on wchar.
7120         * lib/wcwidth.h: Assume <wchar.h>.
7121         * m4/wcwidth.m4: Likewise.
7122
7123 2007-01-16  Bruno Haible  <bruno@clisp.org>
7124
7125         * modules/csharpexec-script: New, created from...
7126         * modules/csharpexec: ... this.
7127
7128 2007-01-16  Paolo Bonzini  <bonzini@gnu.org>
7129
7130         * modules/javaexec-script: New, created from...
7131         * modules/javaexec: ... this.
7132
7133 2007-01-16  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
7134
7135         * modules/poll (Dependencies): Add sys_select.
7136
7137 2007-01-15  Jim Meyering  <jim@meyering.net>
7138
7139         * m4/readutmp.m4 (gl_READUTMP): Work around AIX 4.3 struct-
7140         redefinition bug when using both <utmp.h> and <utmpx.h> headers.
7141         * lib/readutmp.h: Likewise.  Reported by Daniel Richard G. in
7142         <http://article.gmane.org/gmane.comp.gnu.core-utils.bugs/9415>.
7143
7144 2007-01-15  Bruno Haible  <bruno@clisp.org>
7145
7146         * modules/striconveh: New file.
7147         * lib/striconveh.h: New file.
7148         * lib/striconveh.c: New file.
7149         * MODULES.html.sh (Internationalization functions): Add striconveh.
7150
7151         * modules/striconveh-tests: New file.
7152         * tests/test-striconveh.c: New file.
7153
7154 2007-01-15  Bruno Haible  <bruno@clisp.org>
7155
7156         * lib/striconv.c (str_cd_iconv): Use the first algorithm if iconv is
7157         not from GNU libiconv or GNU libc.
7158
7159 2007-01-15  Bruno Haible  <bruno@clisp.org>
7160
7161         * doc/gnulib-intro.texi (Copyright): Explain the different license
7162         terms for module descriptions, autoconf macros, tests, documentation.
7163
7164 2007-01-14  Bruno Haible  <bruno@clisp.org>
7165
7166         * modules/striconv-tests: New file.
7167         * tests/test-striconv.c: New file.
7168
7169 2007-01-14  Bruno Haible  <bruno@clisp.org>
7170
7171         * modules/iconv-tests: New file.
7172         * tests/test-iconv.c: New file.
7173
7174 2007-01-14  Bruno Haible  <bruno@clisp.org>
7175
7176         * gnulib-tool (func_get_license): For test modules, use the license of
7177         the main module.
7178
7179 2007-01-14  Bruno Haible  <bruno@clisp.org>
7180
7181         * modules/iconv (Include): Clarify that <iconv.h> can only be included
7182         if iconv is found to exist.
7183
7184 2007-01-14  Bruno Haible  <bruno@clisp.org>
7185
7186         * modules/c-ctype-tests: New file.
7187         * tests/test-c-ctype.c: New file.
7188
7189 2007-01-14  Bruno Haible  <bruno@clisp.org>
7190
7191         * modules/binary-io-tests: New file.
7192         * tests/test-binary-io.sh: New file.
7193         * tests/test-binary-io.c: New file.
7194
7195 2007-01-14  Bruno Haible  <bruno@clisp.org>
7196
7197         * modules/array-oset-tests: New file.
7198         * tests/test-array_oset.c: New file.
7199
7200 2007-01-14  Bruno Haible  <bruno@clisp.org>
7201
7202         * modules/array-list-tests: New file.
7203         * tests/test-array_list.c: New file.
7204
7205 2007-01-14  Bruno Haible  <bruno@clisp.org>
7206
7207         * gnulib-tool (func_create_testdir): Don't unnecessarily run configure
7208         and make.
7209         Reported by Simon Josefsson in
7210         <http://lists.gnu.org/archive/html/bug-gnulib/2007-01/msg00139.html>
7211
7212 2007-01-14  Bruno Haible  <bruno@clisp.org>
7213
7214         * modules/allocsa-tests: New file.
7215         * tests/test-allocsa.c: New file.
7216
7217 2007-01-14  Bruno Haible  <bruno@clisp.org>
7218
7219         * modules/fchdir (Depends-on): Add absolute-header.
7220         * modules/unistd (Depends-on): Likewise.
7221
7222 2006-12-30  Bruno Haible  <bruno@clisp.org>
7223
7224         * modules/fchdir: New file.
7225         * modules/unistd (Files): Add lib/unistd_.h.
7226         (Makefile.am): Generate unistd.h from unistd_.h.
7227         * lib/fchdir.c: New file.
7228         * lib/dirent_.h: New file.
7229         * lib/unistd_.h: New file.
7230         * lib/fcntl_.h (open) [FCHDIR_REPLACEMENT]: New replacement.
7231         * m4/fchdir.m4: New file.
7232         * m4/unistd_h.m4 (gl_PREREQ_UNISTD): New macro.
7233         (gl_HEADER_UNISTD): Invoke it.
7234         * lib/dup-safer.c (dup_safer) [FCHDIR_REPLACEMENT]: Use the dup
7235         function.
7236         * lib/backupfile.c (opendir, closedir): Undefine.
7237         * lib/chown.c (open, close): Undefine.
7238         * lib/clean-temp.c (open, close): Undefine.
7239         * lib/copy-file.c (open, close): Undefine.
7240         * lib/execute.c (open, close): Undefine.
7241         * lib/fsusage.c (open, close): Undefine.
7242         * lib/gc-gnulib.c (open, close): Undefine.
7243         * lib/getcwd.c (opendir, closedir): Undefine.
7244         * lib/glob.c (opendir, closedir): Undefine.
7245         * lib/javacomp.c (open, close): Undefine.
7246         * lib/mountlist.c (open, close, opendir, closedir): Undefine.
7247         * lib/openat-proc.c (open, close): Undefine.
7248         * lib/pagealign_alloc.c (open, close): Undefine.
7249         * lib/pipe.c (open, close): Undefine.
7250         * lib/progreloc.c (open, close): Undefine.
7251         * lib/savedir.c (opendir, closedir): Undefine.
7252         * lib/utime.c (open, close): Undefine.
7253         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add fchdir.
7254
7255 2007-01-10  Bruno Haible  <bruno@clisp.org>
7256
7257         * lib/striconv.c (mem_cd_iconv): Align the temporary buffer.
7258
7259 2007-01-12  Eric Blake  <ebb9@byu.net>
7260
7261         Provide a robust <wchar.h>.  Further simplifications are now
7262         possible in other modules, but not included here.
7263         * modules/wchar: New module.
7264         * m4/wchar.m4: New file.
7265         * lib/wchar_.h: Likewise.
7266         * modules/mbchar (Depends-on): Depend on wchar, as the first use
7267         of the new module.
7268         * MODULES.html.sh (Extended multibyte and wide character utilities):
7269         New section.
7270
7271 2007-01-12  Paul Eggert  <eggert@cs.ucla.edu>
7272
7273         * lib/xreadlink.c (SYMLINK_MAX) [!defined SYMLINK_MAX]: Define
7274         to a reasonable default for memory allocation.
7275         (xreadlink): Don't allocate a huge buffer, to work around a buggy
7276         file system that reports garbage st_size values for symlinks.
7277         Problem reported by Liyang Hu.
7278
7279 2007-01-11  Simon Josefsson  <simon@josefsson.org>
7280
7281         * gnulib-tool (func_all_modules): Exclude all .* files (e.g.,
7282         Emacs .#* auto-save files).
7283
7284 2007-01-11  Bruno Haible  <bruno@clisp.org>
7285
7286         * gnulib-tool (func_all_modules): Exclude all files inside the CVS
7287         directory.
7288
7289 2007-01-10  Paul Eggert  <eggert@cs.ucla.edu>
7290
7291         Use @...@ consistently in lib/wctype_.h.
7292         * lib/wctype_.h [HAVE_WINT_T]: Go back to using @...@, but rely
7293         on it being set to 1 or 0.
7294         * m4/wctype.m4 (gl_WCTYPE_H): Set HAVE_WINT_T to 1 or 0, and
7295         go back to AC_SUBSTing it.
7296         * modules/wctype (Makefile.am): Undo previous change.
7297
7298 2007-01-10  Eric Blake  <ebb9@byu.net>
7299
7300         * lib/wctype_.h [HAVE_WINT_T]: Rely on AC_DEFINE.
7301         * m4/wctype.m4 (gl_WCTYPE_H): No need to AC_SUBST(HAVE_WINT_T).
7302         * modules/wctype (Makefile.am): Likewise.
7303         Reported by Chris McGuire.
7304
7305 2007-01-10  Jim Meyering  <jim@meyering.net>
7306
7307         fts.c: a small readability/maintainability improvement
7308         * lib/fts.c (fts_read): Make this code slightly more readable and
7309         maintainable by hoisting the "sp->fts_cur = p" assignments to
7310         immediately follow the statements that set P.  Derived from
7311         the patch by Miloslav Trmac in http://bugzilla.redhat.com/222089.
7312
7313 2007-01-10  Eric Blake  <ebb9@byu.net>
7314
7315         * lib/wctype_.h [HAVE_WINT_T]: Include <stddef.h> before
7316         <wchar.h>, to work around BSDI bug in BSD/OS 4.0.1.
7317         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Likewise.
7318         * m4/wint_t.m4 (gt_TYPE_WINT_T): Likewise.
7319         Reported by Chris McGuire.
7320
7321 2007-01-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
7322
7323         * gnulib-tool (func_all_modules): Use POSIX conforming escaping
7324         in sed script.
7325
7326 2007-01-09  Bruno Haible  <bruno@clisp.org>
7327
7328         * MODULES.html.sh: Accept options --cvs-urls, --git-urls.
7329         (repo_url_prefix, repo_url_suffix, repo_url_suffix_repl): New
7330         variables.
7331         (func_module): Use them.
7332
7333 2007-01-09  Bruno Haible  <bruno@clisp.org>
7334
7335         * modules/unistr/base: New file.
7336         * lib/unistr.h: New file.
7337
7338         * modules/unistr/u8-to-u16: New file.
7339         * lib/unistr/u8-to-u16.c: New file.
7340
7341         * modules/unistr/u8-to-u32: New file.
7342         * lib/unistr/u8-to-u32.c: New file.
7343
7344         * modules/unistr/u16-to-u8: New file.
7345         * lib/unistr/u16-to-u8.c: New file.
7346
7347         * modules/unistr/u16-to-u32: New file.
7348         * lib/unistr/u16-to-u32.c: New file.
7349
7350         * modules/unistr/u32-to-u8: New file.
7351         * lib/unistr/u32-to-u8.c: New file.
7352
7353         * modules/unistr/u32-to-u16: New file.
7354         * lib/unistr/u32-to-u16.c: New file.
7355
7356         * modules/unistr/u8-check: New file.
7357         * modules/unistr/u16-check: New file.
7358         * modules/unistr/u32-check: New file.
7359         * lib/unistr/u8-check.c: New file.
7360         * lib/unistr/u16-check.c: New file.
7361         * lib/unistr/u32-check.c: New file.
7362
7363         * modules/unistr/u8-chr: New file.
7364         * modules/unistr/u16-chr: New file.
7365         * modules/unistr/u32-chr: New file.
7366         * lib/unistr/u8-chr.c: New file.
7367         * lib/unistr/u16-chr.c: New file.
7368         * lib/unistr/u32-chr.c: New file.
7369
7370         * modules/unistr/u8-cmp: New file.
7371         * modules/unistr/u16-cmp: New file.
7372         * modules/unistr/u32-cmp: New file.
7373         * lib/unistr/u8-cmp.c: New file.
7374         * lib/unistr/u16-cmp.c: New file.
7375         * lib/unistr/u32-cmp.c: New file.
7376
7377         * modules/unistr/u8-cpy: New file.
7378         * modules/unistr/u16-cpy: New file.
7379         * modules/unistr/u32-cpy: New file.
7380         * lib/unistr/u8-cpy.c: New file.
7381         * lib/unistr/u16-cpy.c: New file.
7382         * lib/unistr/u32-cpy.c: New file.
7383         * lib/unistr/u-cpy.h: New file.
7384
7385         * modules/unistr/u8-cpy-alloc: New file.
7386         * modules/unistr/u16-cpy-alloc: New file.
7387         * modules/unistr/u32-cpy-alloc: New file.
7388         * lib/unistr/u8-cpy-alloc.c: New file.
7389         * lib/unistr/u16-cpy-alloc.c: New file.
7390         * lib/unistr/u32-cpy-alloc.c: New file.
7391         * lib/unistr/u-cpy-alloc.h: New file.
7392
7393         * modules/unistr/u8-endswith: New file.
7394         * modules/unistr/u16-endswith: New file.
7395         * modules/unistr/u32-endswith: New file.
7396         * lib/unistr/u8-endswith.c: New file.
7397         * lib/unistr/u16-endswith.c: New file.
7398         * lib/unistr/u32-endswith.c: New file.
7399         * lib/unistr/u-endswith.h: New file.
7400
7401         * modules/unistr/u8-mblen: New file.
7402         * modules/unistr/u16-mblen: New file.
7403         * modules/unistr/u32-mblen: New file.
7404         * lib/unistr/u8-mblen.c: New file.
7405         * lib/unistr/u16-mblen.c: New file.
7406         * lib/unistr/u32-mblen.c: New file.
7407
7408         * modules/unistr/u8-mbtouc: New file.
7409         * modules/unistr/u16-mbtouc: New file.
7410         * modules/unistr/u32-mbtouc: New file.
7411         * lib/unistr/u8-mbtouc.c: New file.
7412         * lib/unistr/u16-mbtouc.c: New file.
7413         * lib/unistr/u32-mbtouc.c: New file.
7414
7415         * modules/unistr/u8-mbtouc-safe: New file.
7416         * modules/unistr/u16-mbtouc-safe: New file.
7417         * modules/unistr/u32-mbtouc-safe: New file.
7418         * lib/unistr/u8-mbtouc-safe.c: New file.
7419         * lib/unistr/u16-mbtouc-safe.c: New file.
7420         * lib/unistr/u32-mbtouc-safe.c: New file.
7421
7422         * modules/unistr/u8-move: New file.
7423         * modules/unistr/u16-move: New file.
7424         * modules/unistr/u32-move: New file.
7425         * lib/unistr/u8-move.c: New file.
7426         * lib/unistr/u16-move.c: New file.
7427         * lib/unistr/u32-move.c: New file.
7428         * lib/unistr/u-move.h: New file.
7429
7430         * modules/unistr/u8-next: New file.
7431         * modules/unistr/u16-next: New file.
7432         * modules/unistr/u32-next: New file.
7433         * lib/unistr/u8-next.c: New file.
7434         * lib/unistr/u16-next.c: New file.
7435         * lib/unistr/u32-next.c: New file.
7436
7437         * modules/unistr/u8-prev: New file.
7438         * modules/unistr/u16-prev: New file.
7439         * modules/unistr/u32-prev: New file.
7440         * lib/unistr/u8-prev.c: New file.
7441         * lib/unistr/u16-prev.c: New file.
7442         * lib/unistr/u32-prev.c: New file.
7443
7444         * modules/unistr/u8-set: New file.
7445         * modules/unistr/u16-set: New file.
7446         * modules/unistr/u32-set: New file.
7447         * lib/unistr/u8-set.c: New file.
7448         * lib/unistr/u16-set.c: New file.
7449         * lib/unistr/u32-set.c: New file.
7450         * lib/unistr/u-set.h: New file.
7451
7452         * modules/unistr/u8-startswith: New file.
7453         * modules/unistr/u16-startswith: New file.
7454         * modules/unistr/u32-startswith: New file.
7455         * lib/unistr/u8-startswith.c: New file.
7456         * lib/unistr/u16-startswith.c: New file.
7457         * lib/unistr/u32-startswith.c: New file.
7458         * lib/unistr/u-startswith.h: New file.
7459
7460         * modules/unistr/u8-stpcpy: New file.
7461         * modules/unistr/u16-stpcpy: New file.
7462         * modules/unistr/u32-stpcpy: New file.
7463         * lib/unistr/u8-stpcpy.c: New file.
7464         * lib/unistr/u16-stpcpy.c: New file.
7465         * lib/unistr/u32-stpcpy.c: New file.
7466         * lib/unistr/u-stpcpy.h: New file.
7467
7468         * modules/unistr/u8-stpncpy: New file.
7469         * modules/unistr/u16-stpncpy: New file.
7470         * modules/unistr/u32-stpncpy: New file.
7471         * lib/unistr/u8-stpncpy.c: New file.
7472         * lib/unistr/u16-stpncpy.c: New file.
7473         * lib/unistr/u32-stpncpy.c: New file.
7474         * lib/unistr/u-stpncpy.h: New file.
7475
7476         * modules/unistr/u8-strcat: New file.
7477         * modules/unistr/u16-strcat: New file.
7478         * modules/unistr/u32-strcat: New file.
7479         * lib/unistr/u8-strcat.c: New file.
7480         * lib/unistr/u16-strcat.c: New file.
7481         * lib/unistr/u32-strcat.c: New file.
7482         * lib/unistr/u-strcat.h: New file.
7483
7484         * modules/unistr/u8-strchr: New file.
7485         * modules/unistr/u16-strchr: New file.
7486         * modules/unistr/u32-strchr: New file.
7487         * lib/unistr/u8-strchr.c: New file.
7488         * lib/unistr/u16-strchr.c: New file.
7489         * lib/unistr/u32-strchr.c: New file.
7490
7491         * modules/unistr/u8-strcmp: New file.
7492         * modules/unistr/u16-strcmp: New file.
7493         * modules/unistr/u32-strcmp: New file.
7494         * lib/unistr/u8-strcmp.c: New file.
7495         * lib/unistr/u16-strcmp.c: New file.
7496         * lib/unistr/u32-strcmp.c: New file.
7497
7498         * modules/unistr/u8-strcpy: New file.
7499         * modules/unistr/u16-strcpy: New file.
7500         * modules/unistr/u32-strcpy: New file.
7501         * lib/unistr/u8-strcpy.c: New file.
7502         * lib/unistr/u16-strcpy.c: New file.
7503         * lib/unistr/u32-strcpy.c: New file.
7504         * lib/unistr/u-strcpy.h: New file.
7505
7506         * modules/unistr/u8-strcspn: New file.
7507         * modules/unistr/u16-strcspn: New file.
7508         * modules/unistr/u32-strcspn: New file.
7509         * lib/unistr/u8-strcspn.c: New file.
7510         * lib/unistr/u16-strcspn.c: New file.
7511         * lib/unistr/u32-strcspn.c: New file.
7512         * lib/unistr/u-strcspn.h: New file.
7513
7514         * modules/unistr/u8-strdup: New file.
7515         * modules/unistr/u16-strdup: New file.
7516         * modules/unistr/u32-strdup: New file.
7517         * lib/unistr/u8-strdup.c: New file.
7518         * lib/unistr/u16-strdup.c: New file.
7519         * lib/unistr/u32-strdup.c: New file.
7520         * lib/unistr/u-strdup.h: New file.
7521
7522         * modules/unistr/u8-strlen: New file.
7523         * modules/unistr/u16-strlen: New file.
7524         * modules/unistr/u32-strlen: New file.
7525         * lib/unistr/u8-strlen.c: New file.
7526         * lib/unistr/u16-strlen.c: New file.
7527         * lib/unistr/u32-strlen.c: New file.
7528         * lib/unistr/u-strlen.h: New file.
7529
7530         * modules/unistr/u8-strmblen: New file.
7531         * modules/unistr/u16-strmblen: New file.
7532         * modules/unistr/u32-strmblen: New file.
7533         * lib/unistr/u8-strmblen.c: New file.
7534         * lib/unistr/u16-strmblen.c: New file.
7535         * lib/unistr/u32-strmblen.c: New file.
7536
7537         * modules/unistr/u8-strmbtouc: New file.
7538         * modules/unistr/u16-strmbtouc: New file.
7539         * modules/unistr/u32-strmbtouc: New file.
7540         * lib/unistr/u8-strmbtouc.c: New file.
7541         * lib/unistr/u16-strmbtouc.c: New file.
7542         * lib/unistr/u32-strmbtouc.c: New file.
7543
7544         * modules/unistr/u8-strncat: New file.
7545         * modules/unistr/u16-strncat: New file.
7546         * modules/unistr/u32-strncat: New file.
7547         * lib/unistr/u8-strncat.c: New file.
7548         * lib/unistr/u16-strncat.c: New file.
7549         * lib/unistr/u32-strncat.c: New file.
7550         * lib/unistr/u-strncat.h: New file.
7551
7552         * modules/unistr/u8-strncmp: New file.
7553         * modules/unistr/u16-strncmp: New file.
7554         * modules/unistr/u32-strncmp: New file.
7555         * lib/unistr/u8-strncmp.c: New file.
7556         * lib/unistr/u16-strncmp.c: New file.
7557         * lib/unistr/u32-strncmp.c: New file.
7558
7559         * modules/unistr/u8-strncpy: New file.
7560         * modules/unistr/u16-strncpy: New file.
7561         * modules/unistr/u32-strncpy: New file.
7562         * lib/unistr/u8-strncpy.c: New file.
7563         * lib/unistr/u16-strncpy.c: New file.
7564         * lib/unistr/u32-strncpy.c: New file.
7565         * lib/unistr/u-strncpy.h: New file.
7566
7567         * modules/unistr/u8-strnlen: New file.
7568         * modules/unistr/u16-strnlen: New file.
7569         * modules/unistr/u32-strnlen: New file.
7570         * lib/unistr/u8-strnlen.c: New file.
7571         * lib/unistr/u16-strnlen.c: New file.
7572         * lib/unistr/u32-strnlen.c: New file.
7573         * lib/unistr/u-strnlen.h: New file.
7574
7575         * modules/unistr/u8-strpbrk: New file.
7576         * modules/unistr/u16-strpbrk: New file.
7577         * modules/unistr/u32-strpbrk: New file.
7578         * lib/unistr/u8-strpbrk.c: New file.
7579         * lib/unistr/u16-strpbrk.c: New file.
7580         * lib/unistr/u32-strpbrk.c: New file.
7581         * lib/unistr/u-strpbrk.h: New file.
7582
7583         * modules/unistr/u8-strrchr: New file.
7584         * modules/unistr/u16-strrchr: New file.
7585         * modules/unistr/u32-strrchr: New file.
7586         * lib/unistr/u8-strrchr.c: New file.
7587         * lib/unistr/u16-strrchr.c: New file.
7588         * lib/unistr/u32-strrchr.c: New file.
7589
7590         * modules/unistr/u8-strspn: New file.
7591         * modules/unistr/u16-strspn: New file.
7592         * modules/unistr/u32-strspn: New file.
7593         * lib/unistr/u8-strspn.c: New file.
7594         * lib/unistr/u16-strspn.c: New file.
7595         * lib/unistr/u32-strspn.c: New file.
7596         * lib/unistr/u-strspn.h: New file.
7597
7598         * modules/unistr/u8-strstr: New file.
7599         * modules/unistr/u16-strstr: New file.
7600         * modules/unistr/u32-strstr: New file.
7601         * lib/unistr/u8-strstr.c: New file.
7602         * lib/unistr/u16-strstr.c: New file.
7603         * lib/unistr/u32-strstr.c: New file.
7604         * lib/unistr/u-strstr.h: New file.
7605
7606         * modules/unistr/u8-strtok: New file.
7607         * modules/unistr/u16-strtok: New file.
7608         * modules/unistr/u32-strtok: New file.
7609         * lib/unistr/u8-strtok.c: New file.
7610         * lib/unistr/u16-strtok.c: New file.
7611         * lib/unistr/u32-strtok.c: New file.
7612         * lib/unistr/u-strtok.h: New file.
7613
7614         * modules/unistr/u8-uctomb: New file.
7615         * modules/unistr/u16-uctomb: New file.
7616         * modules/unistr/u32-uctomb: New file.
7617         * lib/unistr/u8-uctomb.c: New file.
7618         * lib/unistr/u16-uctomb.c: New file.
7619         * lib/unistr/u32-uctomb.c: New file.
7620
7621         * MODULES.html.sh (Unicode string functions): Add the new modules.
7622
7623 2007-01-08  Bruno Haible  <bruno@clisp.org>
7624
7625         * gnulib-tool (func_all_modules): Use find, not ls, to traverse the
7626         modules directory. Filter out CVS, ChangeLog, COPYING, README also from
7627         subdirectories.
7628
7629 2007-01-08  Karl Berry  <karl@gnu.org>
7630
7631         * doc/error.texi: mention that main() fns must set program_name
7632         when progname is used.
7633
7634 2007-01-08  Paul Eggert  <eggert@cs.ucla.edu>
7635
7636         * m4/wctype.m4 (gl_WCTYPE_H): Compute ABSOLUTE_WCTYPE_H even if
7637         WCTYPE_H is empty, for the benefit of builds from non-distclean
7638         directories.  Problem reported by Eric Blake in
7639         <http://lists.gnu.org/archive/html/bug-gnulib/2007-01/msg00157.html>.
7640
7641 2007-01-08  Bruno Haible  <bruno@clisp.org>
7642
7643         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME): Remove
7644         PROVIDE_CANONICALIZE_FILENAME_MODE macro definition.
7645         * lib/canonicalize.h: Test GNULIB_CANONICALIZE instead of
7646         PROVIDE_CANONICALIZE_FILENAME_MODE.
7647         * modules/canonicalize (configure.ac): Use gl_MODULE_INDICATOR.
7648
7649 2007-01-08  Bruno Haible  <bruno@clisp.org>
7650
7651         * m4/fts.m4 (gl_FUNC_FTS_LGPL): Remove _LGPL_PACKAGE macro definition.
7652         * lib/fts_.h (_LGPL_PACKAGE): Remove macro.
7653         Use !GNULIB_FTS instead of _LGPL_PACKAGE.
7654         * lib/fts.c: Likewise.
7655         * modules/fts (configure.ac): Use gl_MODULE_INDICATOR.
7656
7657 2006-12-25  Bruno Haible  <bruno@clisp.org>
7658
7659         * modules/utf8-ucs4-safe: New file.
7660         * lib/utf8-ucs4-safe.h: New file.
7661         * lib/unistr/utf8-ucs4-safe.c: New file.
7662
7663         * modules/utf16-ucs4-safe: New file.
7664         * lib/utf16-ucs4-safe.h: New file.
7665         * lib/unistr/utf16-ucs4-safe.c: New file.
7666
7667         * MODULES.html.sh (Unicode string functions): Add the new modules.
7668
7669 2007-01-08  Bruno Haible  <bruno@clisp.org>
7670
7671         * modules/utf8-ucs4 (Files, lib_SOURCES): Add unistr/utf8-ucs4.c.
7672         (Depends-on): Add unitypes.
7673         * lib/utf8-ucs4.h: Add double-inclusion guard. Include unitypes.h.
7674         (u8_mbtouc_aux): Move out to separate file.
7675         (u8_mbtouc): Use ucs4_t, uint8_t types.
7676         * lib/unistr/utf8-ucs4.c: New file.
7677
7678         * modules/utf16-ucs4 (Files, lib_SOURCES): Add unistr/utf16-ucs4.c.
7679         (Depends-on): Add unitypes.
7680         * lib/utf16-ucs4.h: Add double-inclusion guard. Include unitypes.h.
7681         (u16_mbtouc_aux): Move out to separate file.
7682         (u16_mbtouc): Use ucs4_t, uint16_t types.
7683         * lib/unistr/utf16-ucs4.c: New file.
7684
7685         * modules/ucs4-utf8 (Files, lib_SOURCES): Add unistr/ucs4-utf8.c.
7686         (Depends-on): Add unitypes.
7687         * lib/ucs4-utf8.h: Add double-inclusion guard. Include unitypes.h.
7688         (u8_uctomb_aux): Move out to separate file.
7689         (u8_uctomb): Use ucs4_t, uint8_t types.
7690         * lib/unistr/ucs4-utf8.c: New file.
7691
7692         * modules/ucs4-utf16 (Files, lib_SOURCES): Add unistr/ucs4-utf16.c.
7693         (Depends-on): Add unitypes.
7694         * lib/ucs4-utf16.h: Add double-inclusion guard. Include unitypes.h.
7695         (u16_uctomb_aux): Move out to separate file.
7696         (u16_uctomb): Use ucs4_t, uint16_t types.
7697         * lib/unistr/ucs4-utf16.c: New file.
7698
7699 2006-12-25  Bruno Haible  <bruno@clisp.org>
7700
7701         * modules/unitypes: New file.
7702         * lib/unitypes.h: New file.
7703         * MODULES.html.sh (func_all_modules): New section "Unicode string
7704         functions". Move ucs4-utf8, ucs4-utf16, utf8-ucs4, utf16-ucs4 to
7705         this section. Add unitypes.
7706
7707 2007-01-08  Bruno Haible  <bruno@clisp.org>
7708
7709         Avoid variable names that conflict with those from libtool.
7710         * m4/lib-link.m4 (AC_LIB_RPATH, AC_LIB_LINKFLAGS_BODY,
7711         AC_LIB_LINKFLAGS_FROM_LIBS): Rename libext to acl_libext,
7712         shlibext to acl_shlibext, libname_spec to acl_libname_spec,
7713         library_names_spec to acl_library_names_spec, hardcode_* to
7714         acl_hardcode_*.
7715         Reported by Ralf Wildenhues.
7716
7717 2007-01-08  Bruno Haible  <bruno@clisp.org>
7718
7719         * m4/gc-arcfour.m4 (gl_GC_ARCFOUR): Remove GC_USE_ARCFOUR macro
7720         definition.
7721         * m4/gc-arctwo.m4 (gl_GC_ARCTWO): Remove GC_USE_ARCTWO macro
7722         definition.
7723         * m4/gc-des.m4 (gl_GC_DES): Remove GC_USE_DES macro definition.
7724         * m4/gc-hmac-md5.m4 (gl_GC_HMAC_MD5): Remove GC_USE_HMAC_MD5 macro
7725         definition.
7726         * m4/gc-hmac-sha1.m4 (gl_GC_HMAC_SHA1): Remove GC_USE_HMAC_SHA1 macro
7727         definition.
7728         * m4/gc-md2.m4 (gl_GC_MD2): Remove GC_USE_MD2 macro definition.
7729         * m4/gc-md4.m4 (gl_GC_MD4): Remove GC_USE_MD4 macro definition.
7730         * m4/gc-md5.m4 (gl_GC_MD5): Remove GC_USE_MD5 macro definition.
7731         * m4/gc-random.m4 (gl_GC_RANDOM): Remove GC_USE_RANDOM macro
7732         definition.
7733         * m4/gc-rijndael.m4 (gl_GC_RIJNDAEL): Remove GC_USE_RIJNDAEL macro
7734         definition.
7735         * m4/gc-sha1.m4 (gl_GC_SHA1): Remove GC_USE_SHA1 macro definition.
7736         * lib/gc-gnulib.c: Use GNULIB_GC_<algorithm> instead of
7737         GC_USE_<algorithm>.
7738         * lib/gc-libgcrypt.c: Likewise.
7739         * modules/gc-arcfour (configure.ac): Use gl_MODULE_INDICATOR.
7740         * modules/gc-arctwo (configure.ac): Likewise.
7741         * modules/gc-des (configure.ac): Likewise.
7742         * modules/gc-hmac-md5 (configure.ac): Likewise.
7743         * modules/gc-hmac-sha1 (configure.ac): Likewise.
7744         * modules/gc-md2 (configure.ac): Likewise.
7745         * modules/gc-md4 (configure.ac): Likewise.
7746         * modules/gc-md5 (configure.ac): Likewise.
7747         * modules/gc-random (configure.ac): Likewise.
7748         * modules/gc-rijndael (configure.ac): Likewise.
7749         * modules/gc-sha1 (configure.ac): Likewise.
7750
7751 2007-01-08  Bruno Haible  <bruno@clisp.org>
7752
7753         * m4/close-stream.m4 (gl_CLOSE_STREAM): Remove GNULIB_CLOSE_STREAM
7754         macro definition.
7755         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Remove GNULIB_FCNTL_SAFER macro
7756         definition.
7757         * m4/stdio-safer.m4 (gl_FOPEN_SAFER): Remove GNULIB_FOPEN_SAFER macro
7758         definition.
7759         * modules/close-stream (configure.ac): Invoke gl_MODULE_INDICATOR.
7760         * modules/fcntl-safer (configure.ac): Likewise.
7761         * modules/fopen-safer (configure.ac): Likewise.
7762         * modules/fwriteerror (configure.ac): Likewise. Remove explicit
7763         GNULIB_FWRITEERROR macro definition.
7764
7765 2007-01-08  Bruno Haible  <bruno@clisp.org>
7766
7767         * m4/gnulib-common.m4: New file.
7768         * gnulib-tool (func_get_autoconf_snippet): Undo last change.
7769         (func_get_filelist): Add m4/gnulib-common.m4.
7770
7771 2007-01-08  Bruno Haible  <bruno@clisp.org>
7772
7773         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Simplify the sorting
7774         command.
7775
7776 2007-01-08  Jim Meyering  <jim@meyering.net>
7777
7778         Use a more robust test for a "can't happen" condition.
7779         * lib/fts.c (fts_read): Revert the change of 2006-11-22, since it
7780         narrowed the st_size value.  Presuming the "can't happen" condition
7781         is true, that narrowing could conceivably convert an invalid st_size
7782         value into a valid one.  Instead, use a change based on Matthew
7783         Woehlke's original patch.
7784
7785         Slight readability improvement: use an assert-like macro
7786         in place of literal "abort ()" uses.
7787         * lib/fts.c (fts_assert): Define.
7788         (fts_set_stat_required, cwd_advance_fd, fts_read, fd_ring_check):
7789         Use this macro instead of a bare 'abort'.
7790
7791 2007-01-05  Paul Eggert  <eggert@cs.ucla.edu>
7792
7793         Don't worry about using IRIX 5.3's wctype.h broken definitions;
7794         simply work around them.
7795         * lib/wctype_.h: Remove test for HAVE_WCTYPE_CTMP_BUG.
7796         (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit, iswgraph, iswlower):
7797         (iswprint, iswpunct, iswspace, iswupper, iswxdigit): Undef before
7798         declaring.
7799         Don't bother to define as macros, since the standard doesn't require it.
7800         * m4/wctype.m4 (WCTYPE_H, ABSOLUTE_WCTYPE_H): Simplify, since we no
7801         longer worry about IRIX 5.3.
7802         (HAVE_WCTYPE_CTMP_BUG): Remove.
7803
7804 2007-01-04  Paul Eggert  <eggert@cs.ucla.edu>
7805
7806         * lib/wctype_.h (_ctmp_) [HAVE_WCTYPE_CTMP_BUG]: Now of type wchar_t,
7807         not wint_t.  Also, include <ctype.h>, to fix another IRIX bug.
7808         * m4/wctype.m4 (gl_WCTYPE_H): Likewise.
7809         Problems reported by Georg Schwarz for IRIX 5.3.
7810
7811         * gnulib-tool (autoconf_minversion): Take the maximum version number
7812         found, not the minimum.  Problem reported by James Youngman.
7813
7814 2007-01-03  Karl Berry  <karl@gnu.org>
7815
7816         * doc/error.texi: new file, explaining interaction with progname.
7817         * doc/gnulib.texi: include it.  Update copyright.
7818
7819 2007-01-03  Simon Josefsson  <simon@josefsson.org>
7820
7821         * gnulib-tool (func_create_testdir): Run AC_CANONICAL_BUILD and
7822         AC_CANONICAL_HOST, to improve autobuild outputs.
7823
7824 2007-01-03  Paolo Bonzini  <bonzini@gnu.org>
7825             Yoann Vandoorselaere <yoann.v@prelude-ids.com>
7826
7827         * lib/poll.c (poll): Use recv on Mac OS X to distinguish connected
7828         sockets, server sockets, and other file descriptors.  Count errors
7829         to compute the return value.  Reorder the code a bit to be easier
7830         to follow.  Don't set event bits that were not requested (except
7831         POLLERR and POLLHUP).
7832
7833 2007-01-01  Bruno Haible  <bruno@clisp.org>
7834
7835         * modules/lchmod (Include): Require lchmod.h, not lchown.h.
7836
7837 2007-01-03  Jim Meyering  <jim@meyering.net>
7838
7839         * modules/fts-lgpl (Depends-on): Add i-ring.  Reported by Bruno Haible.
7840
7841 2007-01-02  Bruno Haible  <bruno@clisp.org>
7842
7843         * modules/settime (Include): Require timespec.h.
7844         * modules/nanosleep (Include): Likewise.
7845
7846 2007-01-01  Bruno Haible  <bruno@clisp.org>
7847
7848         * gnulib-tool (func_emit_copyright_notice): Bump year.
7849         (func_get_autoconf_snippet): Emit a GNULIB_<modulename> macro.
7850
7851 2007-01-01  Bruno Haible  <bruno@clisp.org>
7852
7853         Improve support for OpenBSD.
7854         * build-aux/config.rpath (libname_spec): Export.
7855         (library_names_spec): New variable. Export.
7856         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Extract libname_spec and
7857         library_names_spec from the config.rpath output. Locate shared library
7858         through the name pattern in library_names_spec.
7859
7860 2007-01-01  Eric Blake  <ebb9@byu.net>
7861
7862         * lib/version-etc.c (COPYRIGHT_YEAR): Bump for new year.
7863
7864 2006-12-30  Paul Eggert  <eggert@cs.ucla.edu>
7865
7866         * gnulib-tool (SORT): Remove, since we no longer assume GNU sort.
7867         Rewrite so as not to assume GNU sort or "tail -1".  Also, don't
7868         assume the C locale, and avoid an "eval" that could cause trouble.
7869         Problem with SORT reported by Bob Proulx.
7870
7871         * lib/getpagesize.h (getpagesize) [defined __amigaos4__]:
7872         Define.  Trivial patch from Henning Nielsen Lund, originally
7873         sent to bug-grep@gnu.org today.
7874
7875 2006-12-29  Paul Eggert  <eggert@cs.ucla.edu>
7876
7877         * lib/acl.h: Include sys/types.h and sys/stat.h, for mode_t and
7878         struct stat.  Problem reported by Henning Nielsen Lund.
7879         * lib/acl.c: Include acl.h first, to check interface.  Don't
7880         bother to include sys/types.h and sys/stat.h again.
7881
7882 2006-12-28  Paul Eggert  <eggert@cs.ucla.edu>
7883
7884         Import the following change from libc; problem reported by
7885         Sven Verdoolaege.
7886
7887         2005-10-13  Ulrich Drepper  <drepper@redhat.com>
7888
7889         [BZ #1373]
7890         * lib/argp.h: Remove __NTH for __argp_usage inline function.
7891
7892 2006-12-28  Jim Meyering  <jim@meyering.net>
7893
7894         * build-aux/announce-gen: Do not assume that the package
7895         builds any of tar.gz, tar.bz2, and .xdelta files.
7896         Suggestion from Simon Josefsson.
7897
7898 2006-12-28  Simon Josefsson  <simon@josefsson.org>
7899
7900         * modules/announce-gen: New file.
7901
7902 2006-12-27  Paul Eggert  <eggert@cs.ucla.edu>
7903
7904         * lib/mbchar.h: Just include <wctype.h>; the wctype module
7905         handles its gotchas now.
7906         * lib/mbswidth.c: Likewise.
7907         * lib/wcwidth.h: Likewise.
7908         * m4/mbchar.m4 (gl_MBCHAR): Don't bother checking for wctype.h
7909         and iswcntrl; the wctype module does this stuff now.
7910         * m4/mbswidth.m4 (gl_MBSWIDTH): Likewise.
7911         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Likewise.
7912         * modules/mbchar (Depends-on): Add wctype.
7913         * modules/mbswidth (Depends-on): Likewise.
7914         * modules/wcwidth (Depends-on): Likewise.
7915
7916 2006-12-27  Eric Blake  <ebb9@byu.net>
7917
7918         * lib/fnmatch.c: Reinstate inclusion of <wchar.h>, since this
7919         module uses more than what <wctype.h> is required to provide.
7920
7921 2006-12-26  Eric Blake  <ebb9@byu.net>
7922
7923         * gnulib-tool (sed_extract_prog): Avoid space-tab.
7924
7925 2006-12-26  Eric Blake  <ebb9@byu.net>
7926
7927         * modules/absolute-header: New module.
7928         * modules/fcntl (Depends-on): Depend on it.
7929         * modules/inttypes (Depends-on): Likewise.
7930         * modules/stdint (Depends-on): Likewise.
7931         * modules/sys_stat (Depends-on): Likewise.
7932         * modules/wctype (Depends-on): Likewise.
7933         * MODULES.html.sh (Support for building libraries and
7934         executables): Document it.
7935
7936 2006-12-25  Paul Eggert  <eggert@cs.ucla.edu>
7937
7938         * gnulib-tool (SED): Remove, undoing previous change.
7939         The problem was that it broke coreutils on Solaris, because
7940         "sed --posix" leaked into a makefile.
7941         (sed): New alias, if 'alias' and GNU sed.
7942
7943 2006-12-24  Jim Meyering  <jim@meyering.net>
7944
7945         Work around an fchownat bug in glibc-2.4:
7946         http://lists.ubuntu.com/archives/ubuntu-users/2006-September/093218.html
7947         This bug would cause "chown -RP ... DIR" to follow symlinks in DIR,
7948         in spite of the -P option.
7949         * m4/openat.m4 (gl_FUNC_FCHOWNAT, gl_FUNC_FCHOWNAT_DEREF_BUG):
7950         New macros.
7951         (gl_PREREQ_OPENAT): Require gl_FUNC_FCHOWNAT.
7952         * modules/openat (Files): Add lib/fchownat.c.
7953         * lib/openat.c (fchownat): Don't define here.  Move to...
7954         * lib/fchownat.c: ...this new file.
7955
7956 2006-12-23  Paul Eggert  <eggert@cs.ucla.edu>
7957
7958         Fix bug reported by Bruno Haible in
7959         <http://lists.gnu.org/archive/html/bug-gnulib/2006-12/msg00228.html>
7960         where quotearg.c didn't compile on Mac OS X 10.2 because it
7961         lacks <wchar.h> and wint_t.
7962         * lib/wctype_.h (__wctype_wint_t): New type.
7963         Include <stdio.h>, <time.h>, <wchar.h> only if HAVE_WINT_T.
7964         (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit, iswgraph):
7965         (iswlower, iswprint, iswpunct, iswspace, iswupper, ixwxdigit):
7966         Arg is now of type __wctype_wint_t, not wint_t.
7967         * m4/wctype.m4 (gl_WCTYPE_H): Require gt_TYPE_WINT_T, and
7968         substitute HAVE_WINT_T.
7969         * modules/wctype (Files): Add m4/wint_t.m4.
7970         (wctype.h): Substitute HAVE_WINT_T.
7971
7972 2006-12-23  Bruno Haible  <bruno@clisp.org>
7973
7974         * lib/safe-read.h [C++]: Wrap declarations in extern "C".
7975
7976 2006-12-23  Bruno Haible  <bruno@clisp.org>
7977
7978         * lib/canonicalize-lgpl.c (__realpath): Test HAVE_READLINK instead of
7979         S_ISLNK.
7980         Needed because gnulib's sys/stat.h replacement defines S_ISLNK on
7981         mingw.
7982
7983 2006-12-22  Bruno Haible  <bruno@clisp.org>
7984
7985         * lib/copy-file.c: Include acl.h.
7986         (copy_file_preserving) [USE_ACL]: Use copy_acl instead of chmod.
7987         Close the file descriptors only after being done with copy_acl.
7988         * modules/copy-file (Depends-on): Add acl.
7989
7990 2006-12-22  Bruno Haible  <bruno@clisp.org>
7991
7992         * gnulib-tool (SED): New variable.
7993         Use $SED instead of sed everywhere.
7994
7995 2006-12-22  Bruno Haible  <bruno@clisp.org>
7996
7997         * modules/no-c++: New file.
7998         * m4/no-c++.m4: New file.
7999         * MODULES.html.sh (Support for building libraries and executables):
8000         Add no-c++.
8001
8002 2006-12-22  Paul Eggert  <eggert@cs.ucla.edu>
8003
8004         * m4/mktime.m4 (AC_FUNC_MKTIME): Sync from Autoconf.
8005         Include <limits.h>, and use its INT_MAX to rewrite the
8006         j loop so that it does not overflow 'int'.  Problem reported by
8007         Ralf Wildenhues in
8008         <http://lists.gnu.org/archive/html/bug-gnulib/2006-12/msg00084.html>.
8009         Play it safe by shifting left by 1 rather than multiplying by 2,
8010         as GCC is less likely to optimize this away when the value
8011         is signed (when it assumes overflow leads to undefined behavior).
8012         Also, don't assume time_t uses two's complement.
8013
8014 2006-12-21  Paul Eggert  <eggert@cs.ucla.edu>
8015
8016         * MODULES.html.sh: New module wctype.
8017         * lib/wctype_.h, m4/wctype.m4, modules/wctype: New files.
8018         * lib/fnmatch.c: Don't bother to include <wchar.h> before
8019         <wctype.h>, since the new wctype module should fix this.
8020         * lib/quotearg.c: Include <wctype.h> unconditionally, since
8021         the wctype module should arrange for it.
8022         * lib/regex_internal.h: Likewise.
8023         * m4/quotearg.m4 (gl_QUOTEARG): Don't check for wctype.h or iswprint,
8024         since the wctype module should handle this now.
8025         * m4/regex.m4 (gl_PREREQ_REGEX): Don't check for wctype.h.
8026         * modules/fnmatch (Depends-on): Add wctype.
8027         * modules/quotearg (Depends-on): Likewise.
8028         * modules/regex (Depends-on): Likewise.
8029
8030 2006-12-19  Bruno Haible  <bruno@clisp.org>
8031
8032         * lib/strdup.h [C++]: Wrap definitions in extern "C".
8033         Suggested by Lorenzo Bettini <bettini@dsi.unifi.it>.
8034
8035 2006-12-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8036
8037         * modules/savewd (Depends-on): Fix dependency on fcntl.
8038
8039 2006-12-18  Paul Eggert  <eggert@cs.ucla.edu>
8040
8041         * m4/stdint.m4 (gl_STDINT_H): Set STDINT_H to empty if stdint.h
8042         conforms to C99, rather than relying on the user's environment
8043         setting of STDINT_H.
8044
8045 2006-12-18  Paul Eggert  <eggert@cs.ucla.edu>
8046         and Eric Blake  <ebb9@byu.net>
8047
8048         * lib/dirname.h (DOUBLE_SLASH_IS_DISTINCT_ROOT): Default to 0, not 1.
8049         This is more consistent with the other defines here.
8050         * m4/double-slash-root.m4 (gl_DOUBLE_SLASH_ROOT):
8051         Port to z/OS.  Problem reported by Paul Gilmartin.
8052         Change local vars to use gl_ prefix rather than ac_.
8053         Don't define DOUBLE_SLASH_IS_DISTINCT_ROOT to 0, for consistency
8054         with other defines.
8055         * modules/double-slash-root: New module.
8056         * modules/dirname (Files): Remove m4/double-slash-root.m4.
8057         (Depends-on): Add double-slash-root.
8058         * MODULES.html.sh (File system functions): Mention new module.
8059
8060 2006-12-14  Paul Eggert  <eggert@cs.ucla.edu>
8061
8062         * lib/yesno.c [!ENABLE_NLS]: Don't include getline.h.
8063         (yesno) [!ENABLE_NLS]: Don't invoke getline or rpmatch.
8064         This is for the benefit of gzip, which doesn't do i18n.
8065
8066 2006-12-12  Jim Meyering  <jim@meyering.net>
8067
8068         * m4/acl.m4 (gl_ACL_GET_FILE): Fix logic error.
8069         Reported by Andreas Schwab <schwab@suse.de>.
8070
8071 2006-12-12  Bruno Haible  <bruno@clisp.org>
8072
8073         Merge these changes.
8074         2006-09-05  Bruno Haible  <bruno@clisp.org>
8075         * lib/iconvme.c (iconv_string): No need to save and restore errno when
8076         iconv_alloc succeeded.
8077         (iconv_alloc): Don't assume that malloc() or realloc(), when failing,
8078         sets errno to ENOMEM. (malloc on GNU/kFreeBSD doesn't.) No need to
8079         test for " && dest " at the end - dest is always != NULL there. Call
8080         iconv with 4xNULL arguments initially, to reset the state. Call iconv
8081         with 2xNULL arguments, also to flush the state storage. Handle the
8082         IRIX iconv behaviour. Realloc the final result, to throw away unused
8083         memory.
8084
8085 2006-12-11  Paul Eggert  <eggert@cs.ucla.edu>
8086
8087         * m4/openat.m4 (gl_FUNC_OPENAT): Don't compile mkdirat
8088         and fchmodat unconditionally, since glibc 2.4 has them.
8089         Problem reported by Arkadiusz Miskiewicz.
8090
8091 2006-12-10  Bruno Haible  <bruno@clisp.org>
8092
8093         * gnulib-tool (func_import): Show the include files only for those
8094         modules that are copied and specified.
8095         Reported by Karl Berry.
8096
8097 2006-12-08  Jim Meyering  <jim@meyering.net>
8098
8099         * build-aux/announce-gen ($VERSION): Don't use of $Revision...$.
8100         Instead, use Emacs' time-stamp write hook.  Note that the time is UTC.
8101
8102         * build-aux/announce-gen: Add two new options, both optional:
8103         --bootstrap-tools=TOOL_LIST
8104               a comma-separated list of tools, e.g.,
8105               autoconf,automake,bison,gnulib
8106         --gnulib-snapshot-date=DATE
8107               if gnulib is in the bootstrap tool list,
8108               then report this as the snapshot date.
8109               If not specified, use the current date/time.
8110               If you specify a date here, be sure it's UTC.
8111
8112 2006-12-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8113
8114         * tests/test-argp-2.sh: Fix test to match actual output.
8115         (func_compare): Fix sed script to be portable.
8116
8117 2006-12-05  Paul Eggert  <eggert@cs.ucla.edu>
8118
8119         * lib/utimens.c (futimens) [HAVE_BUGGY_NFS_TIME_STAMPS]: Add a
8120         workaround for this case.  It is not autoconfigured now; offhand
8121         it's hard to see how to autoconfigure it.
8122
8123 2006-12-03  Paul Eggert  <eggert@cs.ucla.edu>
8124
8125         * lib/mkdir-p.c (make_dir_parents): Fix race condition when making
8126         a directory that is about to be chowned.  Such a directory's
8127         initial file permissions should permit the owner only and this
8128         should not be changed until after the chown, since the group and
8129         other bits would be incorrect if they granted permission before
8130         the chown.
8131
8132         Fix porting problem for iswctype reported by Georg Schwarz in:
8133         http://lists.gnu.org/archive/html/bug-coreutils/2006-12/msg00017.html
8134         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Require HAVE_ISWCTYPE, too.
8135         * lib/regex_internal.h (RE_ENABLE_I18N): Likewise.
8136         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for iswctype, too.
8137         * m4/regex.m4 (gl_PREREQ_REGEX): Likewise.
8138
8139 2006-12-03  Jim Meyering  <jim@meyering.net>
8140
8141         * lib/fts.c (fts_load): Don't set sp->fts_dev here, since
8142         p->fts_statp may not yet be defined.
8143         (fts_read): Instead, set it in the caller, once p->fts_statp is
8144         sure to be defined, and corresponds to a top-level directory.
8145         This bug made du -x fail.  Here's the coreutils test case:
8146         http://git.sv.gnu.org/gitweb/?p=coreutils.git;a=commit;h=ba45154d8e9f
8147         Reported by Mike Frysinger.
8148
8149 2006-12-01  Jim Meyering  <jim@meyering.net>
8150
8151         * modules/savewd (Depends-on): Add fcntl_h to avoid self-test
8152         build failure due to missing definition of HAVE_WORKING_O_NOFOLLOW.
8153         Reported by Simon Josefsson.
8154
8155 2006-11-30  Jim Meyering  <jim@meyering.net>
8156
8157         * m4/warning.m4: Use the all-permissive copyright notice
8158         recommended by RMS (rather than LGPL).
8159         * m4/vararrays.m4: Likewise.
8160         * m4/flexmember.m4: Likewise.
8161
8162 2006-11-29  Bruno Haible  <bruno@clisp.org>
8163
8164         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
8165         noinst_LIBRARIES. Augment noinst_LIBRARIES and noinst_LTLIBRARIES
8166         using +=.
8167         Reported by Simon Josefsson <simon@josefsson.org>.
8168
8169 2006-11-28  James Youngman <jay@gnu.org>
8170
8171         * README: Advise users that they might find the bug-gnulib@gnu.org
8172         and autotools-announce@gnu.org mailing lists useful.
8173
8174 2006-11-28  Bruno Haible  <bruno@clisp.org>
8175
8176         * m4/ptrdiff_max.m4: Remove file.
8177
8178 2006-11-21  Bruno Haible  <bruno@clisp.org>
8179
8180         * m4/eoverflow.m4 (gl_EOVERFLOW): Use AC_COMPUTE_INT instead of
8181         _AC_COMPUTE_INT.
8182         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
8183         * m4/ptrdiff_max.m4 (gl_PTRDIFF_MAX): Use AC_COMPUTE_INT instead of
8184         _AC_COMPUTE_INT.
8185         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
8186         * m4/size_max.m4 (gl_SIZE_MAX): Use AC_COMPUTE_INT instead of
8187         _AC_COMPUTE_INT.
8188         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
8189
8190 2006-11-28  Jim Meyering  <jim@meyering.net>
8191
8192         * lib/regcomp.c (parse_branch): Rename local, exp->expr, to avoid
8193         warning from "gcc -Wshadow" about shadowing the builtin.
8194
8195 2006-11-27  Bruno Haible  <bruno@clisp.org>
8196
8197         * m4/stdint.m4 (gl_STDINT_BITSIZEOF): Use AC_COMPUTE_INT instead of
8198         _AC_COMPUTE_INT.
8199         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
8200
8201 2006-11-27  Bruno Haible  <bruno@clisp.org>
8202             Paul Eggert  <eggert@cs.ucla.edu>
8203
8204         * lib/regex.h (__restrict_arr): Redo logic of #if, for clarity.
8205
8206 2006-11-26  Bruno Haible  <bruno@clisp.org>
8207
8208         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
8209         noinst_LTLIBRARIES.
8210
8211 2006-11-27  Paul Eggert  <eggert@cs.ucla.edu>
8212             Bruno Haible  <bruno@clisp.org>
8213
8214         * lib/gettext.h (_LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS): Define to 0
8215         if compiling with "gcc -ansi".
8216
8217 2006-11-26  Paul Eggert  <eggert@cs.ucla.edu>
8218
8219         Fix some incompatibilities with gcc -ansi -pedantic.
8220         * lib/regex.h (__restrict_arr): Don't use the [restrict] syntax
8221         if compiling pedantically with GCC, unless it's C99 or later.
8222         Don't trust sys/cdefs.h's definition of __restrict_arr, either, as
8223         it mishandles gcc -ansi -pedantic as well.
8224         * lib/regex_internal.h (re_token_t): Don't use enum bitfields
8225         if gcc -pedantic.
8226         * lib/regexec.c (check_node_accept_bytes): Don't use auto
8227         initializers for struct if -pedantic, unless it's C99 or later.
8228
8229 2006-11-25  Nix  <nix@esperi.org.uk>  (tiny change)
8230
8231         * m4/fcntl_h.m4 (gl_FCNTL_H): Test the atime, not the mtime.
8232         Don't close an fd more than once. Identical atimes indicate
8233         success, not failure.
8234
8235 2006-11-22  Robinson Mittmann <bob@hoplon.com>  (tiny change)
8236
8237         * lib/sincosl.c (kernel_sinl): Fix typo in threshold.
8238
8239 2006-11-23  Jim Meyering  <jim@meyering.net>
8240
8241         * build-aux/announce-gen: New file.  From coreutils.
8242
8243 2006-11-22  Jim Meyering  <jim@meyering.net>
8244
8245         Work around a compile-time error from the HP-UX 11.00 /bin/cc.
8246         * lib/fts.c (enum Fts_stat): Give this previously-anon enum a name.
8247         (fts_read): Use a temporary to narrow the overused st_size member
8248         before using it in a switch statement.  Reported by Matthew Woehlke.
8249
8250         * m4/clock_time.m4 (gl_CLOCK_TIME): Quote AC_SUBST argument.
8251         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Likewise.
8252
8253 2006-11-20  Bruno Haible  <bruno@clisp.org>
8254
8255         * gettext.m4 (AM_GNU_GETTEXT): Revert 2005-07-28 patch: Use
8256         changequote instead of pairs of brackets.
8257         Reported by Andreas Schwab <schwab@suse.de>.
8258
8259 2006-11-21  Jim Meyering  <jim@meyering.net>
8260
8261         * lib/fts.c (fts_safe_changedir): Move a declaration "up",
8262         so as to remain compatible with older compilers.
8263         Patch from Michael Deutschmann.
8264
8265 2006-11-20  Paul Eggert  <eggert@cs.ucla.edu>
8266
8267         * MODULES.html.sh (File system functions): Add openat.
8268
8269         * lib/openat.h (rpl_fstatat): New macro, if
8270         [HAVE_OPENAT && ! LSTAT_FOLLOWS_SLASHED_SYMLINK.
8271         (fstatat): Define to rpl_fstatat under the same conditions,
8272         unless COMPILING_FSTATAT.
8273         * m4/openat.m4 (gl_FUNC_OPENAT): Compile fstatat.c too, if fstatat
8274         seems to have the bug.
8275         * lib/fstatat.c: New file.
8276         * modules/openat (Files): Add it.
8277
8278 2006-11-20  Bruno Haible  <bruno@clisp.org>
8279
8280         * Makefile: New file.
8281
8282 2006-11-20  Jim Meyering  <jim@meyering.net>
8283
8284         The beginnings of syntax-related checks for gnulib.
8285         * lib/Makefile: New file.
8286         * lib/t-idcache: New script.  Ensure that the two halves of
8287         idcache.c stay in sync.
8288
8289         * lib/idcache.c: Adjust comments in user- and group- portions to
8290         be more accurate, and to be consistent with one another.
8291
8292 2006-11-20  Jim Meyering  <jim@meyering.net>
8293
8294         * lib/idcache.c: Restore most of the 2006-11-06 patch, so as to
8295         continue using the flexible array member (thus, this module performs
8296         half as many malloc calls), with the addition that...
8297         (getgroup, getuser): Consistently record a non-match via an empty
8298         "name" string, and map an empty string match to a NULL return value.
8299         * modules/idcache (Depends-on): Re-add flexmember.
8300
8301         * lib/idcache.c (getuser): Remove all uses of the register keyword.
8302         (getuidbyname, getgroup, getgidbyname): Likewise.
8303
8304         Use cleaner syntax: NULL rather than 0.
8305         * lib/idcache.c (getuidbyname, getgidbyname): Return NULL, not 0.
8306
8307 2006-11-20  Paul Eggert  <eggert@cs.ucla.edu>
8308
8309         * lib/idcache.c: Undo most recent patch, dated 2006-11-06.
8310         It mishandled the case where the group was missing.
8311         Problem reported by Greg Schafer.
8312         * modules/idcache: Likewise.
8313
8314 2006-11-18  Jim Meyering  <jim@meyering.net>
8315
8316         * check-module (%exempt_header): Add exception for some
8317         conditionally-included headers.
8318
8319         * modules/i-ring (Depends-on): Add verify.
8320         (License): Change to LGPL.
8321
8322 2006-11-16  Paul Eggert  <eggert@cs.ucla.edu>
8323
8324         * modules/getaddinfo (Depends-on): Remove inttostr; add snprintf.
8325         * lib/getaddrinfo.c: Include snprintf.h rather than intprops.h
8326         and inttostr.h.  Use snprintf rather than uinttostr, so that
8327         LGPLed code doesn't depend on GPLed.
8328
8329 2006-11-17  Paul Eggert  <eggert@cs.ucla.edu>
8330
8331         * modules/inline (License): Change from GPL to LGPL.
8332
8333 2006-11-17  Jim Meyering  <jim@meyering.net>
8334
8335         * modules/d-type (License): Switch to LGPL.
8336
8337 2006-11-15  Bruno Haible  <bruno@clisp.org>
8338
8339         * m4/alloca.m4 (gl_FUNC_ALLOCA): Fix the AC_CACHE_CHECK message.
8340
8341 2006-11-15  Eric Blake  <ebb9@byu.net>
8342
8343         * m4/allocsa.m4 (gl_ALLOCSA): Don't invoke macro already picked up by
8344         the module dependency.
8345
8346 2006-11-15  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
8347             Bruno Haible  <bruno@clisp.org>
8348
8349         * gnulib-tool (func_create_testdir): Add license consistency check.
8350
8351 2006-11-15  Eric Blake  <ebb9@byu.net>
8352
8353         * m4/alloca.m4 (gl_FUNC_ALLOCA): Use AC_CACHE_CHECK to avoid a
8354         random "(cached)" in configure output.
8355
8356 2006-11-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8357
8358         * m4/inttypes.m4 (gl_INTTYPES_H): Use AC_CACHE_CHECK so that the
8359         test for conforming inttypes.h is both announced and cached.
8360
8361         * MODULES.html.sh (seen_modules, seen_files): New variables.
8362         (func_module): Rewrite to use a few less gnulib-tool and sed
8363         invocations.  Avoid a couple of quadratic algorithms for ...
8364         (missed_modules, missed_files): ... these, with ...
8365         (func_append, func_tmpdir): ... these new functions, from
8366         gnulib-tool.  Analogously, install traps for cleanup.
8367
8368         * tests/test-gc.c (main): Remove unused variables.
8369         * tests/test-read-file.c: Include stdlib.h, for 'free'.
8370
8371 2006-11-14  Paul Eggert  <eggert@cs.ucla.edu>
8372
8373         * modules/inttostr (License): Change to LGPL.
8374
8375 2006-11-14  Eric Blake  <ebb9@byu.net>
8376
8377         * modules/tempname (License): Change to LGPL.
8378
8379 2006-11-14  Eric Blake  <ebb9@byu.net>
8380
8381         * doc/functions.texi (Function Portability): *printf functions on
8382         Cygwin now understand all POSIX size specifiers.
8383
8384 2006-11-14  Bruno Haible  <bruno@clisp.org>
8385
8386         * modules/c-ctype (License): Change to LGPL.
8387
8388 2006-11-12  Bruno Haible  <bruno@clisp.org>
8389
8390         * m4/lib-link.m4 (AC_LIB_LINKFLAGS, AC_LIB_HAVE_LINKFLAGS,
8391         AC_LIB_LINKFLAGS_BODY): Also set a LIB${NAME}_PREFIX variable. Needed
8392         for GNOME libraries, for which the include files are installed in
8393         subdirectories of $prefix/include.
8394
8395 2006-11-12  Bruno Haible  <bruno@clisp.org>
8396
8397         * m4/lib-link.m4: Require at least autoconf-2.54.
8398         (AC_LIB_LINKFLAGS_BODY) [autoconf < 2.61]: Turn dots into the library
8399         name to underscores for the --with option.
8400
8401 2006-11-13  Bruno Haible  <bruno@clisp.org>
8402
8403         * gnulib-tool (func_create_testdir): Set gl_source_base correctly in
8404         the tests directory.
8405         Reported by Ralf Wildenhues.
8406
8407 2006-11-13  Bruno Haible  <bruno@clisp.org>
8408
8409         * gnulib-tool (func_emit_initmacro_start): Also override AC_LIBSOURCES.
8410         (func_emit_initmacro_end): Undo the override here.
8411         (func_emit_initmacro_done): Emit a definition for gl_LIBSOURCES.
8412         Works around the famous automake error in coreutils.
8413
8414 2006-11-13  Eric Blake  <ebb9@byu.net>
8415
8416         * lib/gl_anytree_oset.h (gl_tree_search_atleast): Return the
8417         element, not its node.
8418
8419 2006-11-12  Bruno Haible  <bruno@clisp.org>
8420
8421         * gnulib-tool (func_emit_lib_Makefile_am): Replace occurrences of
8422         '$(top_srcdir)/build-aux/', taking into account the real auxdir.
8423
8424 2006-11-12  Bruno Haible  <bruno@clisp.org>
8425
8426         * gnulib-tool: New option --local-symlink.
8427         (func_usage): Document it.
8428         (lsymbolic): New variable.
8429         (func_import, func_create_testdir): If --symlink was not specified,
8430         test whether --local-symlink was specified and the file comes from
8431         the local_gnulib_dir.
8432
8433 2006-11-12  Bruno Haible  <bruno@clisp.org>
8434
8435         * gnulib-tool (func_ln): New function.
8436         (func_ln_if_changed, func_create_testdir): Use it instead of "ln -s".
8437
8438 2006-11-12  Bruno Haible  <bruno@clisp.org>
8439
8440         Finish support for source files in subdirectories.
8441         * gnulib-tool (func_emit_lib_Makefile_am): If some of the source files
8442         are in subdirectories, set uses_subdirs and add 'subdir-objects' to
8443         AUTOMAKE_OPTIONS.
8444         (func_import, func_create_testdir): Invoke AM_PROG_CC_C_O in this case.
8445
8446 2006-11-12  Bruno Haible  <bruno@clisp.org>
8447
8448         * gnulib-tool (func_get_automake_snippet): Synthesize also an
8449         EXTRA_lib_SOURCES augmentation.
8450         (func_emit_lib_Makefile_am): Initialize EXTRA_lib..._SOURCES to empty.
8451
8452 2006-11-12  Jim Meyering  <jim@meyering.net>
8453
8454         Make fts (in FTS_CWDFD mode) more efficient by caching a few open
8455         file descriptors.  This also averts a failure on systems with
8456         native openat support when a traversed directory lacks "x" access.
8457         * lib/fts_.h: Include "i-ring.h"
8458         (struct FTS) [fts_fd_ring]: New member.
8459         * lib/fts.c (RESTORE_INITIAL_CWD): Also call fd_ring_clear.
8460         (FCHDIR): Add parentheses.
8461         (fd_ring_check, fd_ring_print) [!FTS_DEBUG]: Define away.
8462         (cwd_advance_fd): Add a 3rd parameter.  Adjust all callers.
8463         When descending, rather than simply closing the previous
8464         fts_cwd_fd value, push that file descriptor onto the ring.
8465         (same_fd, fd_ring_print, fd_ring_check) [FTS_DEBUG]: New functions.
8466         (fts_open): Initialize the new fd_ring member.
8467         (fts_close): Clear the ring.
8468         (fts_safe_changedir): When possible, use our new fd_ring to skip
8469         the diropen and fstat and dev/ino comparison that would normally
8470         accompany a virtual `chdir ("..")'.
8471
8472         * modules/fts (Depends-on): Add i-ring.
8473         * modules/i-ring: New module.
8474         * lib/i-ring.c, lib/i-ring.h, lib/i-ring-test.c: New files.
8475         * m4/i-ring.m4: New file.
8476
8477 2006-11-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8478
8479         * gnulib-tool (func_create_testdir): Fix replacement of
8480         `build-aux' in configure.ac.  Run autotools in gltests
8481         subdirectory.
8482         (func_create_testdir, func_create_megatestdir, test): There is
8483         no need for '--force' in most autotool invocations in a new
8484         tree.  Actually fail the whole test if any of the tools, or the
8485         configure or make stages fail.
8486
8487         Sync from Automake.
8488         * build-aux/gnupload: Revert last change.  Add pointer to upload
8489         instructions of the GNU Maintenance Instructions.
8490         Suggestion by Karl Berry.
8491
8492 2006-11-10  Jim Meyering  <jim@meyering.net>
8493
8494         * lib/fts.c [FTS_DEBUG]: Don't try to print a pointer via %s.
8495
8496 2006-11-09  Paul Eggert  <eggert@cs.ucla.edu>
8497
8498         * lib/gettext.h (dgettext, dcgettext, ngettext) [! ENABLE_NLS]:
8499         (dngettext, dcngettext, bindtextdomain) [! ENABLE_NLS]:
8500         (bind_textdomain_codeset) [! ENABLE_NLS]:
8501         Evaluate all the arguments.  That way, callers get compatible behavior
8502         if the arguments have side effects.  Also, it avoids some GCC
8503         diagnostics in some cases; Joel E. Denny reported problems when Bison
8504         was configured with --enable-gcc-warnigs.
8505
8506 2006-11-10  Jim Meyering  <jim@meyering.net>
8507
8508         * m4/inline.m4 (gl_INLINE): Check with the compiler, not cpp, so that
8509         relevant options in CFLAGS (like -O, -fno-inline) are taken into
8510         account.
8511
8512 2006-11-10  Jim Meyering  <jim@meyering.net>
8513
8514         * modules/inline: New file/module.
8515         * modules/xalloc (Files): Remove m4/inline.m4.
8516         (Depends-on): Add inline, instead.
8517         * modules/oset: Likewise.
8518         * modules/list: Likewise.
8519
8520 2006-11-09  Paul Eggert  <eggert@cs.ucla.edu>
8521
8522         * lib/stdint_.h (uintmax_t): Fix typo: int64_t -> uint64_t.
8523         Problem reported by Matthew Woehlke.
8524
8525 2006-11-09  Bruno Haible  <bruno@clisp.org>
8526
8527         * lib/tempname.c (gen_tempname): Remove variant that invokes
8528         __gen_tempname.
8529         * m4/tempname.m4 (gl_FUNC_GEN_TEMPNAME): Don't test for
8530         __gen_tempname.
8531
8532 2006-11-08  Bruno Haible  <bruno@clisp.org>
8533
8534         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Set ac_cv_type_long_long_int
8535         to 'yes' instead of 'cross-compiling'.
8536
8537 2006-11-08  Paul Eggert  <eggert@cs.ucla.edu>
8538
8539         * lib/quotearg.h (quotearg_free): New decl.
8540         * lib/quotearg.c (quotearg_free): New function.
8541         (slot0, nslots, slotvec0, slotvec):
8542         Now file-scope so that quotearg_free can get at them.
8543
8544 2006-11-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8545
8546         Sync from Automake.
8547         * build-aux/gnupload: Add missing 'gnu' to example URL.
8548         Report by Karl Berry.
8549
8550 2006-11-08  Bruno Haible  <bruno@clisp.org>
8551
8552         * m4/inline.m4 (gl_INLINE): Also test __NO_INLINE__.
8553         Suggested by Paul Eggert.
8554
8555 2006-11-08  Jim Meyering  <jim@meyering.net>
8556
8557         * lib/fts.c [!_LGPL_PACKAGE]: Don't include fcntl--.h twice.
8558         It's already included if !_LIBC.
8559         (fts_safe_changedir): Add a comment.
8560
8561 2006-11-07  Paul Eggert  <eggert@cs.ucla.edu>
8562
8563         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Detect bug in
8564         Tandem NonStop Kernel (OSS) cc -O circa 2004, reported by
8565         Matthew Woehlke.
8566
8567         * lib/xalloc.h (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): Move
8568         definitions up, to avoid colliding with change below.
8569         (static_inline) [HAVE_INLINE]: New macro.
8570         (xnmalloc, xnrealloc, x2nrealloc, xcharalloc):
8571         Provide extern decls when !HAVE_INLINE.  Do not define unless
8572         static_inline is defined, either by us or by xmalloc.c.  Use
8573         static_inline rather than static inline.
8574         (XCALLOC): Optimize sizeof(T) = 1 case.
8575         * lib/xmalloc.c (static_inline) [!HAVE_INLINE]: New macro.
8576
8577 2006-11-07  Bruno Haible  <bruno@clisp.org>
8578
8579         * lib/xalloc.h (XNMALLOC): Restore optimization of sizeof(T) = 1 case.
8580         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Require gl_INLINE instead of
8581         AC_C_INLINE.
8582         * modules/xalloc (Files): Add m4/inline.m4.
8583
8584 2006-11-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8585
8586         * README: Fix typo.
8587         * doc/gnulib.texi (Miscellaneous Notes): Likewise, rename...
8588         (Miscellanous Notes): ...from this.
8589
8590 2006-11-07  Paul Eggert  <eggert@cs.ucla.edu>
8591
8592         * m4/flexmember.m4 (AC_C_FLEXIBLE_ARRAY_MEMBER):
8593         Mention that offsetof should be used instead of sizeof.
8594         From Bruno Haible.
8595
8596 2006-11-07  Bruno Haible  <bruno@clisp.org>
8597
8598         * lib/w32spawn.h (prepare_spawn): Use XNMALLOC instead of xmalloc.
8599
8600 2006-11-06  Paul Eggert  <eggert@cs.ucla.edu>
8601
8602         Simplify xmalloc expressions. Add overflow check in xmalloc arguments.
8603         * lib/gl_anyavltree_list2.h (create_subtree_with_contents):
8604         (gl_tree_create, gl_tree_add_first, gl_tree_add_last):
8605         (gl_tree_add_before, gl_tree_add_after):
8606         Use XMALLOC instead of xmalloc, and XCALLOC instead of xzalloc.
8607         * lib/gl_anyhash_list2.h (hash_resize): Likewise.
8608         * lib/gl_anylinked_list2.h (gl_linked_create_empty, gl_linked_create):
8609         (gl_linked_add_first, gl_linked_add_last, gl_linked_add_before):
8610         (gl_linked_add_after, gl_linked_add_at): Likewise.
8611         * lib/gl_anyrbtree_list2.h (create_subtree_with_contents):
8612         (gl_tree_create, gl_tree_add_first, gl_tree_add_last):
8613         (gl_tree_add_before, gl_tree_add_after): Likewise.
8614         * lib/gl_anytree_list2.h (gl_tree_create_empty): Likewise.
8615         * lib/gl_anytree_oset.h (gl_tree_create_empty): Likewise.
8616         * lib/gl_anytreehash_list1.h (add_to_bucket): Likewise.
8617
8618 2006-11-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8619
8620         * lib/gl_oset.h: Use C comment style, not C++ comment style.
8621
8622 2006-11-06  Bruno Haible  <bruno@clisp.org>
8623
8624         * m4/inline.m4: New file.
8625         * m4/gl_list.m4 (gl_LIST): Require gl_INLINE.
8626         * modules/list (Files): Add m4/inline.m4.
8627         * modules/oset (Files): Likewise.
8628
8629 2006-11-06  Paul Eggert  <eggert@cs.ucla.edu>
8630
8631         * lib/idcache.c: Include <stddef.h>, for offsetof.
8632         (struct userid.name): Change from char * to a flexible array member.
8633         All uses changed.
8634         * modules/idcache (Depends-on): Add flexmember.
8635
8636         * MODULES.html.sh (Core language properties): New module flexmember.
8637         * modules/flexmember, m4/flexmember.m4: New files.
8638
8639         * lib/xalloc.h (xnmalloc, xnrealloc, x2nrealloc): Now static
8640         inline functions that are identical with the old xnmalloc_inline,
8641         xnrealloc_inline, x2nrealloc_inline of lib/xmalloc.c.  This is so
8642         that we can avoid some unnecessary integer multiplications and
8643         divisions in the common case where the element size is known at
8644         compile time.
8645         (XNMALLOC) [HAVE_INLINE]: Remove special case, which is no longer
8646         needed.
8647         (xnboundedmalloc): Remove.
8648         (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): Use lower-case letters for
8649         arguments, for consistency with rest of this header.
8650         (xcharalloc): Rewrite using XNMALLOC.
8651         * lib/xmalloc.c (xnmalloc_inline, xnmalloc, xnrealloc_inline):
8652         (xnrealloc, x2nrealloc_inline, x2nrealloc): Remove.  The *_inline
8653         versions have been moved to lib/xalloc.h and renamed to be the
8654         non-*_inline versions.
8655         (xmalloc, xrealloc): Implement without reference to the xnmalloc
8656         and xnrealloc functions, since those functions are now inline and
8657         now call us.
8658         (x2realloc): Invoke x2realloc, not x2realloc_inline, to accommodate
8659         renaming described above.
8660         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Remove AC_C_INLINE since
8661         xmalloc.c no longer uses inline directly.  gl_PREREQ_XALLOC now
8662         captures the dependency in AC_C_INLINE.
8663
8664         New module canonicalize-lgpl, proposed by Charles Wilson in
8665         <http://lists.gnu.org/archive/html/bug-gnulib/2006-11/msg00020.html>
8666         with a few small changes afterwards.
8667         * MODULES.html.sh (File system functions): New module
8668         canonicalize-lgpl.
8669         * lib/canonicalize.h: Add comments for canonicalize_filename_mode
8670         and canonicalize_file_name.
8671         * lib/canonicalize-lgpl.c, m4/canonicalize-lgpl.m4:
8672         * modules/canonicalize-lgpl: New files.
8673
8674 2006-11-05  Bruno Haible  <bruno@clisp.org>
8675
8676         * gnulib-tool (func_import, func_create_testdir): Create directories
8677         also for files in subdirectories of lib/.
8678
8679 2006-11-05  Bruno Haible  <bruno@clisp.org>
8680
8681         * lib/gl_array_list.c (gl_array_iterator_next): Make pointer decrement
8682         ANSI C compliant.
8683
8684 2006-11-03  Bruno Haible  <bruno@clisp.org>
8685
8686         Simplify xmalloc expressions. Add overflow check in xmalloc arguments.
8687         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Require AC_C_INLINE.
8688         * lib/xalloc.h (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): New macros.
8689         (xnboundedmalloc): New inline function.
8690         * lib/classpath.c (new_classpath): Use XNMALLOC instead of xmalloc.
8691         * lib/clean-temp.c (create_temp_dir): Use XNMALLOC, XMALLOC instead of
8692         xmalloc.
8693         * lib/concatpath.c (concatenated_pathname): Use XNMALLOC instead of
8694         xmalloc.
8695         * lib/fatal-signal.c (at_fatal_signal): Use XNMALLOC instead of xmalloc.
8696         * lib/findprog.c (find_in_path): Use XNMALLOC instead of xmalloc.
8697         * lib/gl_array_list.c (gl_array_create_empty): Use XMALLOC instead of
8698         xmalloc.
8699         (gl_array_create): Use XNMALLOC, XMALLOC instead of xmalloc.
8700         * lib/gl_array_oset.c (gl_array_create_empty): Use XNMALLOC instead of
8701         xmalloc.
8702         * lib/gl_avltree_oset.c (gl_tree_add_first, gl_tree_add_before,
8703         gl_tree_add_after): Use XMALLOC instead of xmalloc.
8704         * lib/gl_carray_list.c (gl_carray_create_empty): Use XMALLOC instead of
8705         xmalloc.
8706         (gl_carray_create): Use XNMALLOC, XMALLOC instead of xmalloc.
8707         * lib/gl_rbtree_oset.c (gl_tree_add_first, gl_tree_add_before,
8708         gl_tree_add_after): Use XMALLOC instead of xmalloc.
8709         * lib/gl_sublist.c (gl_sublist_create): Use XMALLOC instead of xmalloc.
8710         * lib/pagealign_alloc.c (new_memnode): Use XMALLOC instead of xmalloc.
8711         * lib/sh-quote.c (shell_quote_argv): Use XNMALLOC instead of xmalloc.
8712         * lib/xvasprintf.c (xstrcat): Use XNMALLOC instead of xmalloc.
8713
8714 2006-11-03  Bruno Haible  <bruno@clisp.org>
8715
8716         * lib/c-ctype.h [C++]: Define functions without name mangling.
8717         * lib/fwriteerror.h [C++]: Likewise.
8718         * lib/gcd.h [C++]: Likewise.
8719         * lib/linebreak.h [C++]: Likewise.
8720
8721 2006-11-03  Paul Eggert  <eggert@cs.ucla.edu>
8722
8723         * lib/canonicalize.h: (canonicalize_mode_t, CAN_EXISTING):
8724         (CAN_ALL_BUT_LAST, CAN_MISSING, canonicalize_filename_mode):
8725         Define only if PROVIDE_CANONICALIZE_FILENAME_MODE is defined.
8726         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME):
8727         Check for functions and headers just once.
8728         Check for declaration of canonicalize_file_name.
8729         Define PROVIDE_CANONICALIZE_FILENAME_MODE.
8730
8731 2006-11-02  Charles Wilson  <cygwin@cwilson.fastmail.fm>
8732
8733         * gnulib-tool (func_import): Fix typo in actioncmd.
8734
8735 2006-11-02  Bruno Haible  <bruno@clisp.org>
8736
8737         * gnulib-tool (func_get_automake_snippet): Interpret a backslash-
8738         newline sequence in the Makefile.am snippet as a space, like "make"
8739         does.
8740         Reported by Roger Persson <perrog@gmail.com>.
8741
8742 2006-11-01  Bruno Haible  <bruno@clisp.org>
8743
8744         * m4/strcase.m4 (gl_FUNC_STRNCASECMP): Check whether strncasecmp is
8745         already declared in <string.h>.
8746         * lib/strcase.h (strncasecmp): Don't declare it if yes.
8747
8748 2006-11-01  Bruno Haible  <bruno@clisp.org>
8749
8750         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Don't define strcasecmp here.
8751         * lib/strcase.h: Include <string.h>.
8752         (strcasecmp): Define to rpl_strcasecmp here.
8753
8754 2006-11-01  Bruno Haible  <bruno@clisp.org>
8755
8756         * lib/printf-parse.c (PRINTF_PARSE): Cast malloc/realloc results.
8757
8758 2006-11-01  Eric Blake  <ebb9@byu.net>
8759
8760         * lib/mkstemp-safer.c (mkstemp_safer): Allow C++ compilation.
8761
8762         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Allow C++ configuration.
8763
8764 2006-10-29  Bruno Haible  <bruno@clisp.org>
8765
8766         Make it compile in C++ mode.
8767         * lib/full-write.c (full_rw): Add a cast.
8768
8769 2006-11-01  Bruno Haible  <bruno@clisp.org>
8770
8771         * gnulib-tool (func_get_automake_snippet): Change sed_combine_lines to
8772         be POSIX compliant.
8773         Reported by Roger Persson <perrog@gmail.com>.
8774
8775 2006-11-01  Eric Blake  <ebb9@byu.net>
8776
8777         * lib/getopt_.h: Fix comments.
8778
8779 2006-10-31  Eric Blake  <ebb9@byu.net>
8780
8781         * modules/tmpdir (Depends-on): Add sys_stat.
8782         * modules/mkdtemp (Depends-on): Add tempname, drop unistd.
8783         * lib/mkdtemp.c (gen_tempname): Remove; tempname covers this.
8784         * lib/tmpdir.c (S_ISDIR): Simplify, thanks to sys_stat.
8785         * m4/mkdtemp.m4 (gl_PREREQ_MKDTEMP): Simplify, thanks to
8786         tempname.
8787
8788 2006-10-31  Paul Eggert  <eggert@cs.ucla.edu>
8789
8790         Avoid some C++ diagnostics reported by Bruno Haible.
8791         * lib/quotearg.c (clone_quoting_options): Use xmemdup rather than
8792         xmalloc.
8793         (quotearg_alloc): Use xcharalloc rather than xmalloc.
8794         (struct slotvec): Move to top level.
8795         (quotearg_n_options): Rewrite to avoid xmalloc.
8796         * lib/xalloc.h (xcharalloc): New function.
8797         * (xrealloc, xnrealloc, x2realloc, x2nrealloc, xmemdup):
8798         [defined __cplusplus]: Add function template that provides result
8799         type propagation.  This part of the change is from Bruno Haible.
8800
8801 2006-10-29  Bruno Haible  <bruno@clisp.org>
8802
8803         Make it compile in C++ mode.
8804         * lib/striconv.c (mem_cd_iconv): Cast malloc/realloc result.
8805         * lib/strnlen1.c (strnlen1): Cast memchr result.
8806         * lib/mbchar.h (mb_copy): Rename arguments to 'new_mbc', 'old_mbc'.
8807         * lib/clean-temp.c (string_equals, string_hash): Add casts.
8808         (create_temp_dir): Rename local variable 'template'.
8809         (compile_csharp_using_sscli): Add cast.
8810         * lib/fatal-signal.c (at_fatal_signal): Cast xmalloc result.
8811         * lib/findprog.c (find_in_path): Likewise.
8812         * lib/linebreak.c (mbs_width_linebreaks): Cast malloc result.
8813         * lib/wait-process.c (register_slave_subprocess): Likewise.
8814
8815 2006-10-22  Bruno Haible  <bruno@clisp.org>
8816
8817         * modules/tsearch: New file.
8818         * lib/tsearch.h: New file.
8819         * lib/tsearch.c: New file, from glibc-2.5 with small modifications.
8820         * m4/tsearch.m4: New file.
8821         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add tsearch.
8822
8823 2006-10-29  Eric Blake  <ebb9@byu.net>
8824
8825         * lib/arcfour.c: Assume config.h.
8826         * lib/arctwo.c: Likewise.
8827         * lib/base64.c: Likewise.
8828         * lib/check-version.c: Likewise.
8829         * lib/crc.c: Likewise.
8830         * lib/des.c: Likewise.
8831         * lib/gc-gnulib.c: Likewise.
8832         * lib/gc-libgcrypt.c: Likewise.
8833         * lib/gc-pbkdf2-sha1.c: Likewise.
8834         * lib/getaddrinfo.c: Likewise.
8835         * lib/getdelim.c: Likewise.
8836         * lib/getline.c: Likewise.
8837         * lib/hmac-md5.c: Likewise.
8838         * lib/hmac-sha1.c: Likewise.
8839         * lib/iconvme.c: Likewise.
8840         * lib/md2.c: Likewise.
8841         * lib/md4.c: Likewise.
8842         * lib/memxor.c: Likewise.
8843         * lib/read-file.c: Likewise.
8844         * lib/readline.c: Likewise.
8845         * lib/rijndael-alg-fst.c: Likewise.
8846         * lib/rijndael-api-fst.c: Likewise.
8847         * lib/xgetdomainname.c: Likewise.
8848
8849 2006-10-28  Eric Blake  <ebb9@byu.net>
8850
8851         * lib/xstrndup.c: Assume config.h.
8852
8853 2006-10-27  Paul Eggert  <eggert@cs.ucla.edu>
8854
8855         Move stat.h-substitute stuff from lib/stat-macros.h to lib/stat_.h.
8856         stat-macros.h is now for our own macros, whereas stat_h is for
8857         macros in the <sys/stat.h> name space.
8858         * lib/stat-macros.h: Remove copyright notice, as this file is now tiny.
8859         (STAT_MACROS_H): Remove.
8860         (S_IFMT, S_ISBLK, S_ISCHR, S_ISDIR, S_ISFIFO, S_ISLNK, S_ISNAM):
8861         (S_ISMPB, S_ISMPC, S_ISNWK, S_ISREG, S_ISSOCK, S_ISDOOR, S_ISPORT):
8862         (S_TYPEISMQ, S_TYPEISTMO, S_TYPEISSEM, S_TYPEISSHM, S_ISCTG, S_ISOFD):
8863         (S_ISOFL, S_ISWHT, S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IRGRP):
8864         (S_IROTH, S_IWUSR, S_IWGRP, S_IWOTH, S_IXUSR, S_IXGRP, S_IXOTH):
8865         (S_IRWXU, S_IRWXG, S_IRWXO, S_IXUGO, S_IRWXUGO):
8866         Move these macros to ...
8867         * lib/stat_.h: here.  Don't include stat-macros.h.
8868         * lib/canonicalize.c: Don't include stat-macros.h.
8869         * lib/chown.c: Likewise.
8870         * lib/euidaccess.c: Likewise.
8871         * lib/file-type.c: Likewise.
8872         * lib/filemode.c: Likewise.
8873         * lib/glob.c: Likewise.
8874         * lib/isapipe.c: Likewise.
8875         * lib/lchown.c: Likewise.
8876         * lib/lstat.c: Likewise.
8877         * lib/mkdir-p.c: Likewise.
8878         * lib/rmdir.c: Likewise.
8879         * m4/lchown.m4 (gl_FUNC_LCHOWN): Don't require gl_STAT_MACROS.
8880         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Don't check for io.h
8881         unless mkdir isn't declared, to speed up 'configure'.
8882         Always create sys/stat.h, since it's unlikely any real sys/stat.h
8883         would define all the S_* symbols.
8884         * modules/canonicalize (Depends-on):
8885         Depend on sys_stat, not stat-macros.
8886         * modules/chown: Likewise.
8887         * modules/euidaccess: Likewise.
8888         * modules/filemode: Likewise.
8889         * modules/file-type: Likewise.
8890         * modules/glob: Likewise.
8891         * modules/isapipe: Likewise.
8892         * modules/lchown: Likewise.
8893         * modules/lstat: Likewise.
8894         * modules/mkancesdirs: Likewise.
8895         * modules/rmdir: Likewise.
8896         * modules/mkdir-p (Depends-on): Also depend on sys_stat.
8897         * modules/modechange: Likewise.
8898         * modules/stat-macros (Files): Remove m4/stat-macros.m4.
8899         (configure.ac): Remove gl_STAT_MACROS.
8900         * modules/sys_stat (Depends-on): Remove stat-macros.
8901
8902 2006-10-27  Bruno Haible  <bruno@clisp.org>
8903
8904         * m4/signed.m4: Remove file.
8905         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_ARGS_: Remove bh_C_SIGNED
8906         invocation.
8907         * modules/vasnprintf (Files): Remove m4/signed.m4.
8908
8909 2006-10-27  Bruno Haible  <bruno@clisp.org>
8910
8911         Update to GNU gettext 0.16.
8912         * modules/gettext (Files): Add m4/intl.m4, m4/intldir.m4. Remove
8913         m4/inttypes-h.m4, m4/signed.m4.
8914         * m4/gettext.m4: Update to GNU gettext 0.16.
8915         * m4/intl.m4: New file, from GNU gettext.
8916         * m4/intldir.m4: New file, from GNU gettext.
8917         * config/srclist.txt: Update
8918
8919 2006-10-27  Eric Blake  <ebb9@byu.net>
8920
8921         * MODULES.html.sh: Document tempname.
8922         * modules/mkstemp (Depends-on): Add tempname, and drop transitive
8923         dependencies.
8924         (Files): Move lib/tempname.c...
8925         * modules/tempname: ...to this new module.
8926         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Remove tempname checks.
8927         (gl_PREREQ_TEMPNAME): Move...
8928         * m4/tempname.m4: ...to this new file.
8929         * lib/mkstemp.c (includes) [!_LIBC]: Use tempname.h.
8930         * modules/sys_stat (Depends-on): Add stat-macros.
8931         * lib/stat_.h (includes): Pick up stat macros.
8932         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Replace <sys/stat.h>
8933         if stat macros are broken.
8934         * lib/tempname.c (includes): No need to include "stat-macros.h".
8935         (__gen_tempname) [!_LIBC]: Expose as gen_tempname.
8936         (direxists, __path_search) [!_LIBC]: Don't compile these in
8937         gnulib; the tmpdir module covers that.
8938         * lib/tempname.h: New file.
8939
8940 2006-10-26  Paul Eggert  <eggert@cs.ucla.edu>
8941
8942         * COPYING: Explain how gnulib-tool converts licence headers.
8943         Almost all wording by Eric Blake.
8944
8945 2006-10-25  Paul Eggert  <eggert@cs.ucla.edu>
8946
8947         * lib/mbchar.h (is_basic_table): Make read-only.
8948         * lib/mbchar.c (is_basic_table): Likewise.
8949         Reported by John Darrington.
8950
8951 2006-10-25  Bruno Haible  <bruno@clisp.org>
8952
8953         * lib/progname.h (set_program_name): Undefine before defining.
8954
8955 2006-10-25  Bruno Haible  <bruno@clisp.org>
8956
8957         * lib/gettext.h (_LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS): Define to
8958         false for non-gcc C++ compilers.
8959         Reported by Nelson H. F. Beebe <beebe@math.utah.edu>.
8960
8961 2006-10-24  Bruno Haible  <bruno@clisp.org>
8962
8963         * lib/striconv.c (mem_cd_iconv, str_cd_iconv): Treat all non-GNU
8964         iconv implementations like Irix iconv.
8965
8966 2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
8967
8968         * modules/vararrays: New file.
8969         * m4/vararrays.m4: New file, taken from diffutils.
8970         * MODULES.html.sh: New module vararrays.
8971
8972 2006-10-24  Karl Berry  <karl@gnu.org>
8973
8974         * doc/gnulib-intro.texi: --- instead of --; non-naive naive.
8975         Don't call GNU Unix.
8976
8977 2006-10-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8978
8979         * users.txt: Add Libtool.
8980
8981         Sync from Libtool:
8982
8983         2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
8984
8985         * lib/argz.c: Remove check for HAVE_CONFIG_H, to conform
8986         to gnulib's policy of including config.h unconditionally.
8987
8988 2006-10-24  Bruno Haible  <bruno@clisp.org>
8989
8990         * modules/wcwidth (Files): Add m4/wint_t.m4.
8991         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Require gt_TYPE_WINT_T.
8992         * lib/wcwidth.h (iswprint): Use 'int' if 'wint_t' is not defined.
8993
8994 2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
8995
8996         * lib/getdate.y (yyerror): Make the arguments pointer-to-const,
8997         to pacify GCC with some -W flags enabled.  Problem reported by
8998         Bruno Haible.
8999
9000 2006-10-24  Jim Meyering  <jim@meyering.net>
9001
9002         * MODULES.html.sh: Remove uinttostr.  It's not a module.
9003         Reported by Karl Berry.
9004
9005 2006-10-23  Bruno Haible  <bruno@clisp.org>
9006
9007         * lib/fts.c (fts_build): Move variable declaration, for C89 compliance.
9008
9009 2006-10-24  Bruno Haible  <bruno@clisp.org>
9010
9011         * lib/gl_list.h: Use C comment style, not C++ comment style.
9012
9013 2006-10-23  Eric Blake  <ebb9@byu.net>
9014
9015         * lib/getaddrinfo.c (includes): Add missing include.
9016
9017 2006-10-23  Bruno Haible  <bruno@clisp.org>
9018             Paul Eggert  <eggert@cs.ucla.edu>
9019
9020         Ability to rename obstack_free.
9021         * lib/obstack.h (__obstack_free): New macro. Declare instead of
9022         obstack_free.
9023         (obstack_free): Invoke the __obstack_free macro.
9024         * lib/obstack.c (obstack_free): Use __obstack_free macro.
9025
9026 2006-10-23  Bruno Haible  <bruno@clisp.org>
9027             Paul Eggert  <eggert@cs.ucla.edu>
9028
9029         * lib/argp.h (argp_parse, __argp_parse): Comment out the identifiers
9030         __argc, __argv from the declaration. (They are defined as macros on
9031         mingw.)
9032
9033 2006-10-22  Bruno Haible  <bruno@clisp.org>
9034
9035         * doc/gnulib-intro.texi: New file.
9036         * doc/gnulib.texi: Include it.
9037
9038 2006-10-21  Bruno Haible  <bruno@clisp.org>
9039
9040         * doc/gnulib.texi: Split the chapter "Gnulib" into 3 chapters
9041         "Introduction", "Miscellanous Notes", "Particular Modules".
9042
9043 2006-10-21  Bruno Haible  <bruno@clisp.org>
9044
9045         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
9046         Change mostlyclean-local rule to avoid sh syntax error from bash
9047         versions 2.00..2.05 when $(MOSTLYCLEANDIRS) is empty.
9048
9049 2006-10-23  Jim Meyering  <jim@meyering.net>
9050
9051         * lib/getaddrinfo.c (getnameinfo): Use new lightweight uinttostr,
9052         in place of snprintf.
9053
9054         * modules/inttostr (Files): Add lib/uinttostr.c.
9055         * lib/uinttostr.c (inttostr): New file/function.
9056         * lib/inttostr.h (uinttostr): Declare.
9057         * m4/inttostr.m4: Add AC_LIBOBJ([uinttostr]).
9058         * MODULES.html.sh (Numeric conversion functions <stdlib.h>):
9059         Add uinttostr.
9060         * modules/getaddrinfo (Depends-on): Remove snprintf.  Add inttostr.
9061
9062 2006-10-21  Paul Eggert  <eggert@cs.ucla.edu>
9063
9064         * lib/canonicalize.c (ELOOP): Define if not already defined.
9065         Problem reported by Bruno Haible in
9066         <http://lists.gnu.org/archive/html/bug-gnulib/2006-10/msg00282.html>.
9067
9068 2006-10-21  Paul Eggert  <eggert@cs.ucla.edu>
9069
9070         * lib/stdint_.h [defined _AIX]: Don't include <sys/types.h>.
9071         Problem reported by Perry Smith and Ville Laurikari.
9072
9073         * lib/getndelim2.c (SSIZE_MAX): Use same defn that getdelim.c
9074         uses.
9075
9076 2006-10-19  Bruno Haible  <bruno@clisp.org>
9077
9078         * lib/getndelim2.c (SSIZE_MAX): Provide fallback definition. Needed
9079         for mingw.
9080
9081 2006-10-19  Bruno Haible  <bruno@clisp.org>
9082
9083         * lib/openat-priv.h (EOPNOTSUPP): Provide fallback definition.
9084         Needed for mingw.
9085
9086 2006-10-19  Bruno Haible  <bruno@clisp.org>
9087
9088         * m4/size_max.m4 (gl_SIZE_MAX): Cache the result.
9089
9090 2006-10-19  Bruno Haible  <bruno@clisp.org>
9091
9092         * m4/allocsa.m4 (gl_ALLOCSA): Invoke gl_FUNC_ALLOCA, don't AC_REQUIRE
9093         it.
9094
9095 2006-10-19  Bruno Haible  <bruno@clisp.org>
9096
9097         * m4/alloca.m4 (gl_FUNC_ALLOCA): Cache the result of the AC_EGREP_CPP
9098         invocation.
9099
9100 2006-10-19  Bruno Haible  <bruno@clisp.org>
9101
9102         * gnulib-tool (func_create_testdir): Don't include ftruncate and
9103         mountlist by default.
9104
9105 2006-10-16  Bruno Haible  <bruno@clisp.org>
9106
9107         * lib/c-strstr.c: Include c-strstr.h.
9108
9109 2006-10-18  Charles Wilson  <cygwin@cwilson.fastmail.fm>
9110
9111         * gnulib-tool: Don't clobber $sourcebase when $local_gnulib_dir ends
9112         in a slash.
9113
9114 2006-10-18  Bruno Haible  <bruno@clisp.org>
9115
9116         * lib/lock.h [C++]: Wrap definitions in extern "C".
9117
9118 2006-10-18  Bruno Haible  <bruno@clisp.org>
9119
9120         * gnulib-tool (func_emit_initmacro_end): Remove duplicates from the
9121         gl_LIBOBJS list.
9122
9123 2006-10-18  Bruno Haible  <bruno@clisp.org>
9124
9125         * lib/findprog.c (find_in_path): Avoid "gcc -Wwrite-strings" warning.
9126
9127 2006-10-19  Paul Eggert  <eggert@cs.ucla.edu>
9128
9129         * lib/xstrtol.h: Include gettext.h.
9130         (_STRTOL_ERROR): Wrap English-language formats inside gettext.
9131         Problem reported by Eric Blake.
9132         * modules/xstrtol (Depends-on): Add gettext-h.
9133
9134 2006-10-19  Paul Eggert  <eggert@cs.ucla.edu>  (tiny change)
9135
9136         * lib/strftime.c (advance): New macro.
9137         (add): Use it to avoid adding 0 to a FILE *.  FILE can be an
9138         incomplete type, so you can't add 0 to it.  Problem and patch
9139         reported by Eelco Dolstra for dietlibc.
9140
9141 2006-10-18  Jim Meyering  <jim@meyering.net>
9142
9143         * lib/readutmp.c (desirable_utmp_entry): Use "bool" as the
9144         type for a local, and rename it: s/up/user_proc/.
9145
9146 2006-10-18  Sergey Poznyakoff  <gray@gnu.org.ua>
9147
9148         * lib/readutmp.c (desirable_utmp_entry): Implement new flag:
9149         READ_UTMP_USER_PROCESS.
9150         * lib/readutmp.h (READ_UTMP_USER_PROCESS): New flag
9151
9152 2006-10-17  Paul Eggert  <eggert@cs.ucla.edu>
9153
9154         * lib/localcharset.c: Do not check HAVE_SETLOCALE.
9155         * m4/localcharset.m4 (gl_LOCALCHARSET): Don't check for setlocale.
9156
9157 2006-10-17  Eric Blake  <ebb9@byu.net>
9158
9159         * lib/sigprocmask.c (sigprocmask): Fix typo.
9160
9161         * m4/signalblocking.m4 (gl_PREREQ_SIGPROCMASK): Fix typo.
9162
9163         * modules/clean-temp (Makefile.am): Don't add to make output...
9164         (configure.ac): ...instead define SIGNAL_SAFE_LIST inside
9165         config.h.
9166
9167 2006-10-17  Bruno Haible  <bruno@clisp.org>
9168
9169         * lib/gettext.h (gettext, ngettext, pgettext, npgettext): Define
9170         differently if DEFAULT_TEXT_DOMAIN is set.
9171
9172 2006-10-16  Bruno Haible  <bruno@clisp.org>
9173
9174         * lib/clean-temp.c: Include fwriteerror.h.
9175
9176 2006-10-16  Bruno Haible  <bruno@clisp.org>
9177
9178         * getndelim2.m4 (gl_GETNDELIM2): Remove 2003-10-23 hack.
9179
9180 2006-10-16  Bruno Haible  <bruno@clisp.org>
9181
9182         * m4/signalblocking.m4 (gl_PREREQ_SIGPROCMASK): Also test for sigset_t.
9183         * lib/sigprocmask.h: Include <sys/types.h>.
9184         (sigset_t): Use the system's definition if present.
9185
9186 2006-10-17  Eric Blake  <ebb9@byu.net>
9187
9188         * lib/xvasprintf.c (includes): Assume config.h.
9189         * lib/xasprintf.c (includes): Likewise.
9190
9191 2006-10-16  Paul Eggert  <eggert@cs.ucla.edu>
9192
9193         * lib/fsusage.c (PROPAGATE_ALL_ONES): Don't assume uintmax_t is
9194         at least as wide as intmax_t.
9195
9196 2006-10-16  Alexandre Duret-Lutz  <adl@gnu.org>
9197
9198         (Imported from Automake.)
9199         * build-aux/gnupload: Update to version 1.1 of directive file.
9200
9201 2006-10-16  Eric Blake  <ebb9@byu.net>
9202
9203         * modules/configmake (Makefile.am): Add pkglibexecdir support, to
9204         match Automake 1.10a.
9205
9206 2006-10-14  Bruno Haible  <bruno@clisp.org>
9207
9208         * modules/sigprocmask: New file.
9209         * lib/sigprocmask.h: New file.
9210         * lib/sigprocmask.c: New file.
9211         * m4/signalblocking.m4 (gl_SIGNALBLOCKING): Renamed from
9212         gt_SIGNALBLOCKING. When not defining HAVE_POSIX_SIGNALBLOCKING,
9213         request sigprocmask.o.
9214         (gl_PREREQ_SIGPROCMASK): New macro.
9215         * modules/fatal-signal (Files): Remove m4/signalblocking.m4.
9216         (Depends-on): Add sigprocmask.
9217         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Don't require
9218         gt_SIGNALBLOCKING. Test for 'raise' only once.
9219         * lib/fatal-signal.c: Include sigprocmask.h.
9220         (fatal_signal_set, init_fatal_signal_set, block_fatal_signals,
9221         unblock_fatal_signals): Define always.
9222         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
9223         sigprocmask.
9224
9225 2006-10-14  Paul Eggert  <eggert@cs.ucla.edu>
9226
9227         Sync from Automake.
9228         * build-aux/install-sh (posix_mkdir): Reject FreeBSD 6.1 mkdir -p -m,
9229         which incorrectly sets the mode of an existing destination
9230         directory.  In some cases the unpatched install-sh could do the
9231         equivalent of "chmod 777 /" or "chmod 0 /" on a buggy FreeBSD
9232         system.  We hope this is rare in practice, but it's clearly worth
9233         fixing.  Problem reported by Alex Unleashed in
9234         <http://lists.gnu.org/archive/html/bug-autoconf/2006-10/msg00012.html>.
9235         Also, don't bother to check for -m bugs unless we're using -m;
9236         suggested by Stepan Kasal.
9237
9238 2006-10-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
9239
9240         Sync from Automake.
9241         * build-aux/depcomp (gcc3): Put dependency extraction flags before the
9242         `-c' flag, so they appear at the same position as in %FASTDEP%
9243         mode in depend2.am.  Fixes build failure for FreeBSD's c89,
9244         which ignores unknown options only after the first non-option.
9245         Bug report against M4 by Nelson H. F. Beebe.
9246
9247 2006-10-13  Jim Meyering  <jim@meyering.net>
9248
9249         Fix a bug in yesterday's change.
9250         * lib/fts.c (fts_open): When using FTS_XDEV|FTS_NOSTAT,
9251         p->fts_statp->st_dev would be used uninitialized.
9252         Ensures that we always call fts_stat on the very first entry.
9253         Miklos Szeredi reported that find -xdev stopped working.
9254
9255 2006-10-12  Bruno Haible  <bruno@clisp.org>
9256
9257         * gnulib-tool (func_get_automake_snippet): Append an automatically
9258         computed EXTRA_DIST augmentation.
9259         * modules/acl (Makefile.am): Remove EXTRA_DIST augmentation.
9260         * modules/alloca-opt (Makefile.am): Likewise.
9261         * modules/allocsa (Makefile.am): Likewise.
9262         * modules/arcfour (Makefile.am): Likewise.
9263         * modules/arctwo (Makefile.am): Likewise.
9264         * modules/argmatch (Makefile.am): Likewise.
9265         * modules/argz (Makefile.am): Likewise.
9266         * modules/atexit (Makefile.am): Likewise.
9267         * modules/backupfile (Makefile.am): Likewise.
9268         * modules/byteswap (Makefile.am): Likewise.
9269         * modules/c-strtod (Makefile.am): Likewise.
9270         * modules/c-strtold (Makefile.am): Likewise.
9271         * modules/calloc (Makefile.am): Likewise.
9272         * modules/canon-host (Makefile.am): Likewise.
9273         * modules/canonicalize (Makefile.am): Likewise.
9274         * modules/chdir-long (Makefile.am): Likewise.
9275         * modules/chdir-safer (Makefile.am): Likewise.
9276         * modules/check-version (Makefile.am): Likewise.
9277         * modules/chown (Makefile.am): Likewise.
9278         * modules/cloexec (Makefile.am): Likewise.
9279         * modules/close-stream (Makefile.am): Likewise.
9280         * modules/closeout (Makefile.am): Likewise.
9281         * modules/crc (Makefile.am): Likewise.
9282         * modules/csharpexec (Makefile.am): Likewise.
9283         * modules/cycle-check (Makefile.am): Likewise.
9284         * modules/des (Makefile.am): Likewise.
9285         * modules/dev-ino (Makefile.am): Likewise.
9286         * modules/dirfd (Makefile.am): Likewise.
9287         * modules/dirname (Makefile.am): Likewise.
9288         * modules/dup2 (Makefile.am): Likewise.
9289         * modules/eealloc (Makefile.am): Likewise.
9290         * modules/error (Makefile.am): Likewise.
9291         * modules/euidaccess (Makefile.am): Likewise.
9292         * modules/exclude (Makefile.am): Likewise.
9293         * modules/exitfail (Makefile.am): Likewise.
9294         * modules/fcntl-safer (Makefile.am): Likewise.
9295         * modules/fcntl (Makefile.am): Likewise.
9296         * modules/file-type (Makefile.am): Likewise.
9297         * modules/fileblocks (Makefile.am): Likewise.
9298         * modules/filemode (Makefile.am): Likewise.
9299         * modules/filenamecat (Makefile.am): Likewise.
9300         * modules/fnmatch (Makefile.am): Likewise.
9301         * modules/fopen-safer (Makefile.am): Likewise.
9302         * modules/fpending (Makefile.am): Likewise.
9303         * modules/fprintftime (Makefile.am): Likewise.
9304         * modules/free (Makefile.am): Likewise.
9305         * modules/fsusage (Makefile.am): Likewise.
9306         * modules/ftruncate (Makefile.am): Likewise.
9307         * modules/fts (Makefile.am): Likewise.
9308         * modules/gc-arcfour (Makefile.am): Likewise.
9309         * modules/gc-des (Makefile.am): Likewise.
9310         * modules/gc-hmac-md5 (Makefile.am): Likewise.
9311         * modules/gc-hmac-sha1 (Makefile.am): Likewise.
9312         * modules/gc-md4 (Makefile.am): Likewise.
9313         * modules/gc-pbkdf2-sha1 (Makefile.am): Likewise.
9314         * modules/gc-sha1 (Makefile.am): Likewise.
9315         * modules/gc (Makefile.am): Likewise.
9316         * modules/getaddrinfo (Makefile.am): Likewise.
9317         * modules/getcwd (Makefile.am): Likewise.
9318         * modules/getdelim (Makefile.am): Likewise.
9319         * modules/getdomainname (Makefile.am): Likewise.
9320         * modules/getgroups (Makefile.am): Likewise.
9321         * modules/gethostname (Makefile.am): Likewise.
9322         * modules/gethrxtime (Makefile.am): Likewise.
9323         * modules/getline (Makefile.am): Likewise.
9324         * modules/getloadavg (Makefile.am): Likewise.
9325         * modules/getlogin_r (Makefile.am): Likewise.
9326         * modules/getndelim2 (Makefile.am): Likewise.
9327         * modules/getopt (Makefile.am): Likewise.
9328         * modules/getpagesize (Makefile.am): Likewise.
9329         * modules/getpass-gnu (Makefile.am): Likewise.
9330         * modules/getpass (Makefile.am): Likewise.
9331         * modules/getsubopt (Makefile.am): Likewise.
9332         * modules/gettime (Makefile.am): Likewise.
9333         * modules/gettimeofday (Makefile.am): Likewise.
9334         * modules/getugroups (Makefile.am): Likewise.
9335         * modules/getusershell (Makefile.am): Likewise.
9336         * modules/glob (Makefile.am): Likewise.
9337         * modules/group-member (Makefile.am): Likewise.
9338         * modules/hard-locale (Makefile.am): Likewise.
9339         * modules/hash (Makefile.am): Likewise.
9340         * modules/hmac-md5 (Makefile.am): Likewise.
9341         * modules/hmac-sha1 (Makefile.am): Likewise.
9342         * modules/human (Makefile.am): Likewise.
9343         * modules/idcache (Makefile.am): Likewise.
9344         * modules/imaxabs (Makefile.am): Likewise.
9345         * modules/imaxdiv (Makefile.am): Likewise.
9346         * modules/inet_ntop (Makefile.am): Likewise.
9347         * modules/inet_pton (Makefile.am): Likewise.
9348         * modules/intprops (Makefile.am): Likewise.
9349         * modules/inttostr (Makefile.am): Likewise.
9350         * modules/inttypes (Makefile.am): Likewise.
9351         * modules/isapipe (Makefile.am): Likewise.
9352         * modules/javaversion (Makefile.am): Likewise.
9353         * modules/lchmod (Makefile.am): Likewise.
9354         * modules/lchown (Makefile.am): Likewise.
9355         * modules/localcharset (Makefile.am): Likewise.
9356         * modules/long-options (Makefile.am): Likewise.
9357         * modules/lstat (Makefile.am): Likewise.
9358         * modules/malloc (Makefile.am): Likewise.
9359         * modules/mathl (Makefile.am): Likewise.
9360         * modules/mbchar (Makefile.am): Likewise.
9361         * modules/md2 (Makefile.am): Likewise.
9362         * modules/md4 (Makefile.am): Likewise.
9363         * modules/md5 (Makefile.am): Likewise.
9364         * modules/memcasecmp (Makefile.am): Likewise.
9365         * modules/memchr (Makefile.am): Likewise.
9366         * modules/memcmp (Makefile.am): Likewise.
9367         * modules/memcoll (Makefile.am): Likewise.
9368         * modules/memcpy (Makefile.am): Likewise.
9369         * modules/memmem (Makefile.am): Likewise.
9370         * modules/memmove (Makefile.am): Likewise.
9371         * modules/mempcpy (Makefile.am): Likewise.
9372         * modules/memrchr (Makefile.am): Likewise.
9373         * modules/memset (Makefile.am): Likewise.
9374         * modules/memxor (Makefile.am): Likewise.
9375         * modules/mkancesdirs (Makefile.am): Likewise.
9376         * modules/mkdir-p (Makefile.am): Likewise.
9377         * modules/mkdir (Makefile.am): Likewise.
9378         * modules/mkdtemp (Makefile.am): Likewise.
9379         * modules/mkstemp (Makefile.am): Likewise.
9380         * modules/mktime (Makefile.am): Likewise.
9381         * modules/modechange (Makefile.am): Likewise.
9382         * modules/mountlist (Makefile.am): Likewise.
9383         * modules/nanosleep (Makefile.am): Likewise.
9384         * modules/obstack (Makefile.am): Likewise.
9385         * modules/openat (Makefile.am): Likewise.
9386         * modules/pagealign_alloc (Makefile.am): Likewise.
9387         * modules/pathmax (Makefile.am): Likewise.
9388         * modules/physmem (Makefile.am): Likewise.
9389         * modules/poll (Makefile.am): Likewise.
9390         * modules/posixtm (Makefile.am): Likewise.
9391         * modules/posixver (Makefile.am): Likewise.
9392         * modules/putenv (Makefile.am): Likewise.
9393         * modules/quote (Makefile.am): Likewise.
9394         * modules/quotearg (Makefile.am): Likewise.
9395         * modules/raise (Makefile.am): Likewise.
9396         * modules/read-file (Makefile.am): Likewise.
9397         * modules/readline (Makefile.am): Likewise.
9398         * modules/readlink (Makefile.am): Likewise.
9399         * modules/readtokens (Makefile.am): Likewise.
9400         * modules/readutmp (Makefile.am): Likewise.
9401         * modules/realloc (Makefile.am): Likewise.
9402         * modules/regex (Makefile.am): Likewise.
9403         * modules/rename-dest-slash (Makefile.am): Likewise.
9404         * modules/rename (Makefile.am): Likewise.
9405         * modules/rijndael (Makefile.am): Likewise.
9406         * modules/rmdir (Makefile.am): Likewise.
9407         * modules/rpmatch (Makefile.am): Likewise.
9408         * modules/safe-read (Makefile.am): Likewise.
9409         * modules/safe-write (Makefile.am): Likewise.
9410         * modules/same-inode (Makefile.am): Likewise.
9411         * modules/same (Makefile.am): Likewise.
9412         * modules/save-cwd (Makefile.am): Likewise.
9413         * modules/savedir (Makefile.am): Likewise.
9414         * modules/setenv (Makefile.am): Likewise.
9415         * modules/settime (Makefile.am): Likewise.
9416         * modules/sha1 (Makefile.am): Likewise.
9417         * modules/sig2str (Makefile.am): Likewise.
9418         * modules/snprintf (Makefile.am): Likewise.
9419         * modules/stat-macros (Makefile.am): Likewise.
9420         * modules/stat-time (Makefile.am): Likewise.
9421         * modules/stdbool (Makefile.am): Likewise.
9422         * modules/stdint (Makefile.am): Likewise.
9423         * modules/stdlib-safer (Makefile.am): Likewise.
9424         * modules/stpcpy (Makefile.am): Likewise.
9425         * modules/stpncpy (Makefile.am): Likewise.
9426         * modules/strcase (Makefile.am): Likewise.
9427         * modules/strcasestr (Makefile.am): Likewise.
9428         * modules/strchrnul (Makefile.am): Likewise.
9429         * modules/strcspn (Makefile.am): Likewise.
9430         * modules/strdup (Makefile.am): Likewise.
9431         * modules/strerror (Makefile.am): Likewise.
9432         * modules/strftime (Makefile.am): Likewise.
9433         * modules/strndup (Makefile.am): Likewise.
9434         * modules/strnlen (Makefile.am): Likewise.
9435         * modules/strpbrk (Makefile.am): Likewise.
9436         * modules/strsep (Makefile.am): Likewise.
9437         * modules/strstr (Makefile.am): Likewise.
9438         * modules/strtod (Makefile.am): Likewise.
9439         * modules/strtoimax (Makefile.am): Likewise.
9440         * modules/strtok_r (Makefile.am): Likewise.
9441         * modules/strtol (Makefile.am): Likewise.
9442         * modules/strtoll (Makefile.am): Likewise.
9443         * modules/strtoul (Makefile.am): Likewise.
9444         * modules/strtoull (Makefile.am): Likewise.
9445         * modules/strtoumax (Makefile.am): Likewise.
9446         * modules/strverscmp (Makefile.am): Likewise.
9447         * modules/sys_socket (Makefile.am): Likewise.
9448         * modules/sys_stat (Makefile.am): Likewise.
9449         * modules/sysexits (Makefile.am): Likewise.
9450         * modules/time_r (Makefile.am): Likewise.
9451         * modules/timegm (Makefile.am): Likewise.
9452         * modules/timespec (Makefile.am): Likewise.
9453         * modules/tmpfile-safer (Makefile.am): Likewise.
9454         * modules/trim (Makefile.am): Likewise.
9455         * modules/unistd-safer (Makefile.am): Likewise.
9456         * modules/unlinkdir (Makefile.am): Likewise.
9457         * modules/unlocked-io (Makefile.am): Likewise.
9458         * modules/userspec (Makefile.am): Likewise.
9459         * modules/utime (Makefile.am): Likewise.
9460         * modules/utimecmp (Makefile.am): Likewise.
9461         * modules/utimens (Makefile.am): Likewise.
9462         * modules/vasnprintf (Makefile.am): Likewise.
9463         * modules/vasprintf (Makefile.am): Likewise.
9464         * modules/vsnprintf (Makefile.am): Likewise.
9465         * modules/xalloc (Makefile.am): Likewise.
9466         * modules/xgetcwd (Makefile.am): Likewise.
9467         * modules/xnanosleep (Makefile.am): Likewise.
9468         * modules/xreadlink (Makefile.am): Likewise.
9469         * modules/xstrtod (Makefile.am): Likewise.
9470         * modules/xstrtol (Makefile.am): Likewise.
9471         * modules/xstrtold (Makefile.am): Likewise.
9472         * modules/yesno (Makefile.am): Likewise.
9473         * modules/getdate (Makefile.am): Don't add getdate.h to EXTRA_DIST.
9474
9475 2006-10-12  Paul Eggert  <eggert@cs.ucla.edu>
9476
9477         * modules/error (Makefile.am): Distribute files through
9478         EXTRA_DIST, not lib_SOURCES.
9479
9480 2006-10-12  Eric Blake  <ebb9@byu.net>
9481
9482         * modules/error (Makefile.am): Distribute files in /lib.
9483         * modules/obstack (Makefile.am): Likewise.
9484
9485 2006-10-12  Bruno Haible  <bruno@clisp.org>
9486
9487         * modules/acl (Makefile.am): Distribute all files in lib/ through
9488         EXTRA_DIST.
9489         * modules/arcfour (Makefile.am): Likewise.
9490         * modules/arctwo (Makefile.am): Likewise.
9491         * modules/argmatch (Makefile.am): Likewise.
9492         * modules/argz (Makefile.am): Likewise.
9493         * modules/atexit (Makefile.am): Likewise.
9494         * modules/backupfile (Makefile.am): Likewise.
9495         * modules/c-strtod (Makefile.am): Likewise.
9496         * modules/c-strtold (Makefile.am): Likewise.
9497         * modules/calloc (Makefile.am): Likewise.
9498         * modules/canon-host (Makefile.am): Likewise.
9499         * modules/canonicalize (Makefile.am): Likewise.
9500         * modules/chdir-long (Makefile.am): Likewise.
9501         * modules/chdir-safer (Makefile.am): Likewise.
9502         * modules/check-version (Makefile.am): Likewise.
9503         * modules/chown (Makefile.am): Likewise.
9504         * modules/cloexec (Makefile.am): Likewise.
9505         * modules/close-stream (Makefile.am): Likewise.
9506         * modules/closeout (Makefile.am): Likewise.
9507         * modules/crc (Makefile.am): Likewise.
9508         * modules/cycle-check (Makefile.am): Likewise.
9509         * modules/des (Makefile.am): Likewise.
9510         * modules/dirfd (Makefile.am): Likewise.
9511         * modules/dirname (Makefile.am): Likewise.
9512         * modules/dup2 (Makefile.am): Likewise.
9513         * modules/euidaccess (Makefile.am): Likewise.
9514         * modules/exclude (Makefile.am): Likewise.
9515         * modules/exitfail (Makefile.am): Likewise.
9516         * modules/fcntl-safer (Makefile.am): Likewise.
9517         * modules/file-type (Makefile.am): Likewise.
9518         * modules/fileblocks (Makefile.am): Likewise.
9519         * modules/filemode (Makefile.am): Likewise.
9520         * modules/filenamecat (Makefile.am): Likewise.
9521         * modules/fnmatch (Makefile.am): Likewise.
9522         * modules/fopen-safer (Makefile.am): Likewise.
9523         * modules/fpending (Makefile.am): Likewise.
9524         * modules/fprintftime (Makefile.am): Likewise.
9525         * modules/free (Makefile.am): Likewise.
9526         * modules/fsusage (Makefile.am): Likewise.
9527         * modules/ftruncate (Makefile.am): Likewise.
9528         * modules/fts (Makefile.am): Likewise.
9529         * modules/gc (Makefile.am): Likewise.
9530         * modules/gc-pbkdf2-sha1 (Makefile.am): Likewise.
9531         * modules/getaddrinfo (Makefile.am): Likewise.
9532         * modules/getcwd (Makefile.am): Likewise.
9533         * modules/getdelim (Makefile.am): Likewise.
9534         * modules/getdomainname (Makefile.am): Likewise.
9535         * modules/getgroups (Makefile.am): Likewise.
9536         * modules/gethostname (Makefile.am): Likewise.
9537         * modules/gethrxtime (Makefile.am): Likewise.
9538         * modules/getline (Makefile.am): Likewise.
9539         * modules/getloadavg (Makefile.am): Likewise.
9540         * modules/getlogin_r (Makefile.am): Likewise.
9541         * modules/getopt (Makefile.am): Likewise.
9542         * modules/getpass (Makefile.am): Likewise.
9543         * modules/getpass-gnu (Makefile.am): Likewise.
9544         * modules/getsubopt (Makefile.am): Likewise.
9545         * modules/gettime (Makefile.am): Likewise.
9546         * modules/gettimeofday (Makefile.am): Likewise.
9547         * modules/getugroups (Makefile.am): Likewise.
9548         * modules/getusershell (Makefile.am): Likewise.
9549         * modules/glob (Makefile.am): Likewise.
9550         * modules/group-member (Makefile.am): Likewise.
9551         * modules/hard-locale (Makefile.am): Likewise.
9552         * modules/hash (Makefile.am): Likewise.
9553         * modules/hmac-md5 (Makefile.am): Likewise.
9554         * modules/hmac-sha1 (Makefile.am): Likewise.
9555         * modules/human (Makefile.am): Likewise.
9556         * modules/idcache (Makefile.am): Likewise.
9557         * modules/imaxabs (Makefile.am): Likewise.
9558         * modules/imaxdiv (Makefile.am): Likewise.
9559         * modules/inet_ntop (Makefile.am): Likewise.
9560         * modules/inet_pton (Makefile.am): Likewise.
9561         * modules/inttostr (Makefile.am): Likewise.
9562         * modules/isapipe (Makefile.am): Likewise.
9563         * modules/lchown (Makefile.am): Likewise.
9564         * modules/long-options (Makefile.am): Likewise.
9565         * modules/lstat (Makefile.am): Likewise.
9566         * modules/malloc (Makefile.am): Likewise.
9567         * modules/mathl (Makefile.am): Likewise.
9568         * modules/mbchar (Makefile.am): Likewise.
9569         * modules/md2 (Makefile.am): Likewise.
9570         * modules/md4 (Makefile.am): Likewise.
9571         * modules/md5 (Makefile.am): Likewise.
9572         * modules/memcasecmp (Makefile.am): Likewise.
9573         * modules/memchr (Makefile.am): Likewise.
9574         * modules/memcmp (Makefile.am): Likewise.
9575         * modules/memcoll (Makefile.am): Likewise.
9576         * modules/memcpy (Makefile.am): Likewise.
9577         * modules/memmem (Makefile.am): Likewise.
9578         * modules/memmove (Makefile.am): Likewise.
9579         * modules/mempcpy (Makefile.am): Likewise.
9580         * modules/memrchr (Makefile.am): Likewise.
9581         * modules/memset (Makefile.am): Likewise.
9582         * modules/memxor (Makefile.am): Likewise.
9583         * modules/mkancesdirs (Makefile.am): Likewise.
9584         * modules/mkdir (Makefile.am): Likewise.
9585         * modules/mkdir-p (Makefile.am): Likewise.
9586         * modules/mkdtemp (Makefile.am): Likewise.
9587         * modules/mkstemp (Makefile.am): Likewise.
9588         * modules/mktime (Makefile.am): Likewise.
9589         * modules/modechange (Makefile.am): Likewise.
9590         * modules/mountlist (Makefile.am): Likewise.
9591         * modules/nanosleep (Makefile.am): Likewise.
9592         * modules/openat (Makefile.am): Likewise.
9593         * modules/pagealign_alloc (Makefile.am): Likewise.
9594         * modules/physmem (Makefile.am): Likewise.
9595         * modules/poll (Makefile.am): Likewise.
9596         * modules/posixtm (Makefile.am): Likewise.
9597         * modules/posixver (Makefile.am): Likewise.
9598         * modules/putenv (Makefile.am): Likewise.
9599         * modules/quote (Makefile.am): Likewise.
9600         * modules/quotearg (Makefile.am): Likewise.
9601         * modules/raise (Makefile.am): Likewise.
9602         * modules/read-file (Makefile.am): Likewise.
9603         * modules/readline (Makefile.am): Likewise.
9604         * modules/readlink (Makefile.am): Likewise.
9605         * modules/readtokens (Makefile.am): Likewise.
9606         * modules/readutmp (Makefile.am): Likewise.
9607         * modules/realloc (Makefile.am): Likewise.
9608         * modules/regex (Makefile.am): Likewise.
9609         * modules/rename (Makefile.am): Likewise.
9610         * modules/rename-dest-slash (Makefile.am): Likewise.
9611         * modules/rijndael (Makefile.am): Likewise.
9612         * modules/rmdir (Makefile.am): Likewise.
9613         * modules/rpmatch (Makefile.am): Likewise.
9614         * modules/safe-read (Makefile.am): Likewise.
9615         * modules/safe-write (Makefile.am): Likewise.
9616         * modules/same (Makefile.am): Likewise.
9617         * modules/save-cwd (Makefile.am): Likewise.
9618         * modules/savedir (Makefile.am): Likewise.
9619         * modules/setenv (Makefile.am): Likewise.
9620         * modules/settime (Makefile.am): Likewise.
9621         * modules/sha1 (Makefile.am): Likewise.
9622         * modules/sig2str (Makefile.am): Likewise.
9623         * modules/snprintf (Makefile.am): Likewise.
9624         * modules/stdlib-safer (Makefile.am): Likewise.
9625         * modules/stpcpy (Makefile.am): Likewise.
9626         * modules/stpncpy (Makefile.am): Likewise.
9627         * modules/strcase (Makefile.am): Likewise.
9628         * modules/strcasestr (Makefile.am): Likewise.
9629         * modules/strchrnul (Makefile.am): Likewise.
9630         * modules/strcspn (Makefile.am): Likewise.
9631         * modules/strdup (Makefile.am): Likewise.
9632         * modules/strerror (Makefile.am): Likewise.
9633         * modules/strftime (Makefile.am): Likewise.
9634         * modules/strndup (Makefile.am): Likewise.
9635         * modules/strnlen (Makefile.am): Likewise.
9636         * modules/strpbrk (Makefile.am): Likewise.
9637         * modules/strsep (Makefile.am): Likewise.
9638         * modules/strstr (Makefile.am): Likewise.
9639         * modules/strtod (Makefile.am): Likewise.
9640         * modules/strtoimax (Makefile.am): Likewise.
9641         * modules/strtok_r (Makefile.am): Likewise.
9642         * modules/strtol (Makefile.am): Likewise.
9643         * modules/strtoll (Makefile.am): Likewise.
9644         * modules/strtoul (Makefile.am): Likewise.
9645         * modules/strtoull (Makefile.am): Likewise.
9646         * modules/strtoumax (Makefile.am): Likewise.
9647         * modules/strverscmp (Makefile.am): Likewise.
9648         * modules/time_r (Makefile.am): Likewise.
9649         * modules/timegm (Makefile.am): Likewise.
9650         * modules/tmpfile-safer (Makefile.am): Likewise.
9651         * modules/unistd-safer (Makefile.am): Likewise.
9652         * modules/unlinkdir (Makefile.am): Likewise.
9653         * modules/userspec (Makefile.am): Likewise.
9654         * modules/utime (Makefile.am): Likewise.
9655         * modules/utimecmp (Makefile.am): Likewise.
9656         * modules/utimens (Makefile.am): Likewise.
9657         * modules/vasnprintf (Makefile.am): Likewise.
9658         * modules/vasprintf (Makefile.am): Likewise.
9659         * modules/vsnprintf (Makefile.am): Likewise.
9660         * modules/xalloc (Makefile.am): Likewise.
9661         * modules/xgetcwd (Makefile.am): Likewise.
9662         * modules/xnanosleep (Makefile.am): Likewise.
9663         * modules/xreadlink (Makefile.am): Likewise.
9664         * modules/xstrtod (Makefile.am): Likewise.
9665         * modules/xstrtol (Makefile.am): Likewise.
9666         * modules/xstrtold (Makefile.am): Likewise.
9667         * modules/yesno (Makefile.am): Likewise.
9668
9669 2006-10-12  Jim Meyering  <jim@meyering.net>
9670
9671         * m4/getloadavg.m4: Revert the change below.
9672
9673         * m4/getloadavg.m4 (gl_GETLOADAVG): Test for the existence of
9674         lib/getloadavg.c using "ls -L", not "test -f".  The latter would
9675         fail with a symlink, which is what coreutils' ./bootstrap now
9676         creates by default.
9677
9678 2006-10-12  Bruno Haible  <bruno@clisp.org>
9679
9680         * lib/inttypes_.h (_LONG_LONG_FORMAT_PREFIX): Don't define for MSVC or
9681         mingw.
9682         (_PRI64_PREFIX, _PRIu64_PREFIX, _SCN64_PREFIX, _SCNu64_PREFIX): Handle
9683         MSVC and mingw explicitly.
9684
9685 2006-10-11  Simon Josefsson  <jas@extundo.com>
9686             Bruno Haible  <bruno@clisp.org>
9687
9688         Add support for multiple gnulib-tool invocations in the scope of a
9689         single configure.ac file.
9690         * gnulib-tool (func_emit_lib_Makefile_am): In the _LIBADD variable,
9691         use a private [LT]LIBOBJS variant. Define a _DEPENDENCIES variable
9692         with the same contents as the _LIBADD variable.
9693         (func_emit_initmacro_start, func_emit_initmacro_end,
9694         func_emit_initmacro_done): New functions.
9695         (func_import, func_create_testdir): Invoke them. Allow the identifiers
9696         gl_LIBOBJS and gl_LTLIBOBJS.
9697
9698 2006-10-11  Bruno Haible  <bruno@clisp.org>
9699
9700         * gnulib-tool (GETTEXTPATH, AUTOHEADER, AUTOPOINT): New variables.
9701         (func_create_testdir): Don't create po/Makefile.am, don't invoke
9702         autoreconf. Instead, invoke autopoint explicitly but move back the
9703         *.m4 files from gnulib.
9704
9705 2006-10-11  Bruno Haible  <bruno@clisp.org>
9706
9707         * gnulib-tool (func_usage): Make module names after --create-testdir
9708         optional.
9709         (func_create_testdir): If no module was specified, use nearly all
9710         modules.
9711
9712 2006-10-12  Jim Meyering  <jim@meyering.net>
9713
9714         Big performance improvement for fts-based tools that use FTS_NOSTAT.
9715         Avoid spurious inode-mismatch problems on non-POSIX file systems.
9716         Details: http://article.gmane.org/gmane.comp.lib.gnulib.bugs/7416
9717         * lib/fts_.h (FTS_DEFER_STAT): Define new flag.
9718         (FTS_OPTIONMASK): Extend the mask to reflect this addition.
9719         * lib/fts.c (DT_IS_KNOWN, DT_MUST_BE): Define.
9720         (FTS_NO_STAT_REQUIRED, FTS_STAT_REQUIRED): Define.
9721         (fts_set_stat_required): New function.
9722         (fts_open): Defer the calls to fts_stat, if possible or requested.
9723         Move the code that maps a command-line fts_info value FTS_DOT to FTS_D
9724         into fts_stat itself.
9725         (fts_read): Perform any required (deferred) fts_stat call.
9726         (fts_build): Likewise, for the directory we're about to open and read.
9727         In the readdir loop, carefully decide whether each entry will require
9728         an eventual call to fts_stat, using dirent.d_type info if available.
9729         (fts_stat): Move the test for whether to honor FTS_COMFOLLOW on
9730         a command line argument into this function.  Update all callers.
9731         Map a return value of FTS_DOT to FTS_D for a command line argument.
9732         * modules/fts (Depends-on): Add d-type.  Alphabetize.
9733         Thanks to Miklos Szeredi for his tenacity and for the initial
9734         bug report about "find" failing on a FUSE-based file system.
9735
9736         * lib/fts.c (fts_open): Use consistent indentation.
9737
9738 2006-10-12  Paul Eggert  <eggert@cs.ucla.edu>
9739
9740         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS): Renamed from
9741         gl_USE_SYSTEM_EXTENSIONS, to fix a coreutils bootstrap failure
9742         reported by Jim Meyering.  All uses of cache variables renamed
9743         to match Autoconf's.
9744         (gl_USE_SYSTEM_EXTENSIONS): New macro, which simply requires
9745         the other one.
9746
9747         * m4/rename-dest-slash.m4 (gl_FUNC_RENAME_TRAILING_DEST_SLASH):
9748         Fix misspelling in diagnostic.
9749
9750 2006-10-11  Paul Eggert  <eggert@cs.ucla.edu>
9751
9752         * lib/mkdir-p.c (HAVE_FCHMOD): Define to false if not already
9753         defined.  Problem reported by Matthew Woehlke.
9754
9755         * lib/inttypes_.h (_LONG_LONG_FORMAT_PREFIX): New macro.
9756         Add support for Tandem NonStop R series.
9757         (_PRI64_PREFIX, _PRIu64_PREFIX, _SCN64_PREFIX, _SCNu64_PREFIX):
9758         Use new macro.
9759
9760         * lib/rename-dest-slash.c: Include stdbool.h but not string.h.
9761         (has_trailing_slash): Omit size arg; all callers changed.
9762         Omit 'inline', since it doesn't help performance and we'd
9763         need to configure it.
9764         Don't count //, ///, etc. as having a trailing slash.
9765         As a side effect, this removes a C99ism reported by Matthew Woehlke.
9766         (rpl_rename_dest_slash): On failure, use rename's errno rather
9767         than (in some cases) an incorrect or junk errno.
9768         Simplify code by removing need to compute length; this does
9769         cause it to make two passes instead of one over the file name,
9770         but it's worth it.
9771
9772         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Undo previous
9773         change, since Autoconf's version may no longer be appropriate now
9774         that we are using CVS Autoconf's version.  Add support for Tandem.
9775
9776 2006-10-11  Paul Eggert  <eggert@cs.ucla.edu>
9777             Bruno Haible  <bruno@clisp.org>
9778
9779         * lib/allocsa.h (sa_alignment_longlong, sa_alignment_max): Test
9780         HAVE_LONG_LONG_INT instead of HAVE_LONG_LONG.
9781         * m4/allocsa.m4 (gl_ALLOCSA): Invoke AC_TYPE_LONG_LONG_INT instead of
9782         gl_AC_TYPE_LONG_LONG.
9783
9784         * lib/printf-args.h (arg_type, argument): Test HAVE_LONG_LONG_INT
9785         instead of HAVE_LONG_LONG.
9786         * lib/printf-args.c (printf_fetchargs): Likewise.
9787         * lib/printf-parse.c (PRINTF_PARSE): Likewise.
9788         * lib/vasnprintf.c (VASNPRINTF): Likewise.
9789         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_ARGS, gl_PREREQ_PRINTF_PARSE,
9790         gl_PREREQ_VASNPRINTF): Invoke AC_TYPE_LONG_LONG_INT instead of
9791         gl_AC_TYPE_LONG_LONG.
9792
9793 2006-10-11  Bruno Haible  <bruno@clisp.org>
9794
9795         * m4/longlong.m4: Add comments.
9796         * m4/ulonglong.m4: Likewise.
9797
9798 2006-10-10  Bruno Haible  <bruno@clisp.org>
9799
9800         Make it possible to #define stpcpy, strdup to aliases.
9801         * lib/stpcpy.c (stpcpy) [!_LIBC]: Don't undefine.
9802         * lib/strdup.c (strdup) [!_LIBC]: Don't undefine.
9803
9804 2006-10-10  Bruno Haible  <bruno@clisp.org>
9805
9806         Make it possible to #define gcd to an alias.
9807         * lib/gcd.c: Include config.h.
9808
9809 2006-10-10  Bruno Haible  <bruno@clisp.org>
9810
9811         Make it possible to #define c_isascii to an alias.
9812         * lib/c-ctype.h: Don't define the macros if NO_C_CTYPE_MACROS is
9813         defined. Undefine the macros before defining them, to avoid gcc
9814         warnings.
9815         * lib/c-ctype.c: Include config.h. Don't undefine the macros; instead,
9816         define NO_C_CTYPE_MACROS early.
9817
9818 2006-10-10  Bruno Haible  <bruno@clisp.org>
9819
9820         Make it possible to #define set_program_name to an alias.
9821         * lib/progname.c: Don't undefine set_program_name; instead, undefine
9822         ENABLE_RELOCATABLE early.
9823
9824 2006-10-10  Paul Eggert  <eggert@cs.ucla.edu>
9825
9826         Port to Tandem NSK OSS, which has 64-bit signed int but at most
9827         32-bit unsigned int.  Problem reported by Matthew Woehlke in:
9828         http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00062.html
9829         More generally, don't assume that 64-bit signed int is available
9830         if unsigned int is, and vice versa.
9831         * lib/inttypes_.h (_PRIu64_PREFIX, _SCNu64_PREFIX): Depend on
9832         unsigned symbols, not on their signed counterparts.
9833         * lib/stdint_.h (uint64_t, uint_least64_t, uint_fast64_t, uintmax_t):
9834         (UINT64_MAX, UINT_LEAST64_MAX, UINT_FAST64_MAX, UINTMAX_MAX):
9835         (UINT64_C, UINTMAX_C):
9836         Likewise.
9837         * lib/strtoimax.c (strtoll): Depend on signed symbols, not their
9838         unsigned counterparts.
9839         (Have_long_long, Unsigned): New macros.
9840         (Int): Renamed from INT.
9841         (strtoimax): Use the new macros.
9842         * m4/stdint.m4 (gl_STDINT_H): Require AC_TYPE_UNSIGNED_LONG_LONG_INT
9843         and substitute HAVE_UNSIGNED_LONG_LONG_INT.
9844         * modules/inttypes (inttypes.h): Substitute
9845         HAVE_UNSIGNED_LONG_LONG_INT.
9846         * modules/stdint (stdint.h): Likewise.
9847         (Files): Add m4/ulonglong.m4.
9848
9849 2006-10-10  Bruno Haible  <bruno@clisp.org>
9850
9851         Fix a gcc -Wshadow warning.
9852         * lib/gl_anyhash_list2.h (hash_resize): Rename local variable 'index'
9853         to 'bucket'.
9854         * lib/gl_anylinked_list2.h (gl_linked_search_from_to,
9855         gl_linked_indexof_from_to): Likewise.
9856         * lib/gl_linkedhash_list.c (add_to_bucket, remove_from_bucket):
9857         Likewise.
9858         * lib/gl_anytreehash_list1.h (add_to_bucket, remove_from_bucket):
9859         Likewise.
9860         * lib/gl_anytreehash_list2.h (gl_tree_search_from_to): Likewise.
9861         Reported by Eric Blake.
9862
9863 2006-10-09  Paul Eggert  <eggert@cs.ucla.edu>
9864
9865         * lib/filemode.h [HAVE_DECL_STRMODE]: Include unistd.h too,
9866         for NetBSD.  Problem reported by Bruno Haible.
9867
9868 2006-10-09  Jim Meyering  <jim@meyering.net>
9869
9870         * lib/lchown.c: Include <sys/stat.h> before "stat-macros.h".
9871         Patch from Bruno Haible.
9872
9873 2006-10-09  Jim Meyering  <jim@meyering.net>
9874
9875         * lib/fts-cycle.c (leave_dir): When "leaving" a top level directory due
9876         to FTS_SKIP, don't copy the parent's uninitialized dev/ino values.
9877         Trigger with e.g., mkdir d && valgrind ./chmod u+rwx d d
9878
9879 2006-10-08  Paul Eggert  <eggert@cs.ucla.edu>
9880
9881         Don't include <config.h> twice; this doesn't work in some cases,
9882         e.g., when config.h has "#define intmax_t long long int" and
9883         we include <config.h>, <inttypes.h>, <config.h> in that order.
9884         Problem reported by Matthew Woehlke in:
9885         http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00073.html
9886         * lib/fprintftime.c: Don't include config.h or fprintftime.h.
9887         * lib/fts-cycle.c: Don't include config.h.
9888         * lib/strftime.c: Include fprintftime.h if FPRINTFTIME is defined.
9889         * lib/xstrtoimax.c: Remove copyright notice since it's short tnow.
9890         Don't include config.h or xstrtol.h.  Define STRTOL_T_MINIMUM
9891         and STRTOL_T_MAXIMUM unconditionally, since we now assume gnulib
9892         inttypes.h.
9893         * lib/xstrtoumax.c: Likewise.
9894         * lib/xstrtol.c: Include config.h and xstrtol.h after defining
9895         __strtol and the like, so that this module is more like its siblings.
9896         (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM) [! defined STRTOL_T_MINIMUM]:
9897         Remove; no longer needed now that we assume gnulib inttypes.h.
9898
9899 2006-10-08  Bruno Haible  <bruno@clisp.org>
9900
9901         * doc/gnulib-tool.texi: Emphasize the drawbacks of the --symlink
9902         option.
9903
9904 2006-10-07  Jim Meyering  <jim@meyering.net>
9905
9906         * modules/inttypes (inttypes.h): Revert what seems to have been
9907         an inadvertent part of today's change: use "|", not "/" in the
9908         substitution for the "/"-containing string, $(ABSOLUTE_INTTYPES_H).
9909
9910 2006-10-07  Bruno Haible  <bruno@clisp.org>
9911
9912         * modules/sublist: New file.
9913
9914 2006-10-07  Bruno Haible  <bruno@clisp.org>
9915
9916         * modules/alloca-opt (alloca.h): Add a "DO NOT EDIT" comment.
9917         * modules/argz (argz.h): Likewise.
9918         * modules/arpa_inet (arpa/inet.h): Likewise.
9919         * modules/byteswap (byteswap.h): Likewise.
9920         * modules/configmake (configmake.h): Likewise.
9921         * modules/fcntl (fcntl.h): Likewise.
9922         * modules/fnmatch (fnmatch.h): Likewise.
9923         * modules/getopt (getopt.h): Likewise.
9924         * modules/glob (glob.h): Likewise.
9925         * modules/inttypes (inttypes.h): Likewise.
9926         * modules/netinet_in (netinet/in.h): Likewise.
9927         * modules/poll (poll.h): Likewise.
9928         * modules/stdbool (stdbool.h): Likewise.
9929         * modules/stdint (stdint.h): Likewise.
9930         * modules/sys_select (sys/select.h): Likewise.
9931         * modules/sys_socket (sys/socket.h): Likewise.
9932         * modules/sys_stat (sys/stat.h): Likewise.
9933         * modules/sysexits (sysexits.h): Likewise.
9934         * modules/unistd (unistd.h): Likewise.
9935         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
9936         Add a "DO NOT EDIT" comment to the generated file.
9937         (func_import): Likewise for gnulib-comp.m4.
9938
9939 2006-10-07  Bruno Haible  <bruno@clisp.org>
9940
9941         * lib/gl_sublist.h: New file.
9942         * lib/gl_sublist.c: New file.
9943
9944 2006-10-06  Paul Eggert  <eggert@cs.ucla.edu>
9945
9946         * lib/mkancesdirs.c (mkancesdirs): Pass to MAKE_DIR both the full file
9947         name (relative to the original working directory) and the file
9948         name component (relative to the temporary working directory).  All
9949         callers changed.
9950         * lib/mkancesdirs.h (mkancesdirs): Adjust prototype to match.
9951         * lib/mkdir-p.c (make_dir_parents): Likewise.
9952         * lib/mkdir-p.h (make_dir_parents): Likewise.
9953
9954 2006-10-06  Eric Blake  <ebb9@byu.net>
9955
9956         Define several macros for use by the clean-temp module.
9957         * m4/close-stream.m4 (gl_CLOSE_STREAM): Define GNULIB_CLOSE_STREAM.
9958         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Define GNULIB_FCNTL_SAFER.
9959         * m4/stdio-safer.m4 (gl_FOPEN_SAFER): Define GNULIB_FOPEN_SAFER.
9960
9961         * lib/clean-temp.h (close_stream_temp): New declaration.
9962         * lib/clean-temp.c (includes): Pull in headers according to what
9963         other modules are in use.
9964         (close_stream_temp) [GNULIB_CLOSE_STREAM]: New function.
9965
9966 2006-10-06  Bruno Haible  <bruno@clisp.org>
9967
9968         * lib/javacomp.c (write_temp_file): Use fopen_temp, fwriteerror_temp
9969         instead of fopen, fwriteerror.
9970
9971 2006-10-06  Bruno Haible  <bruno@clisp.org>
9972
9973         * lib/clean-temp.h (cleanup_temp_file, cleanup_temp_subdir,
9974         cleanup_temp_dir_contents, cleanup_temp_dir): Change return type to
9975         int.
9976         * lib/clean-temp.c (do_unlink, do_rmdir, cleanup_temp_file,
9977         cleanup_temp_subdir, cleanup_temp_dir_contents, cleanup_temp_dir):
9978         Return an error indicator.
9979         Suggested by Eric Blake.
9980
9981 2006-10-06  Bruno Haible  <bruno@clisp.org>
9982
9983         * lib/clean-temp.c (PATH_MAX): Provide a fallback for GNU Hurd.
9984         Reported by Eric Blake.
9985
9986 2006-10-06  Bruno Haible  <bruno@clisp.org>
9987
9988         * modules/closeout (Description): Mention stderr too.
9989
9990 2006-10-06  Bruno Haible  <bruno@clisp.org>
9991         and Paul Eggert  <eggert@cs.ucla.edu>
9992
9993         * lib/closeout.c (close_stdout): Also close stderr.
9994         * lib/closeout.h: Update comment.
9995
9996 2006-10-05  Paul Eggert  <eggert@cs.ucla.edu>
9997
9998         Fix some Darwin-7.9.0 porting problems reported by Bruno Haible in
9999         <http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00063.html>.
10000         * lib/dirchownmod.c: Include lchown.h.
10001         * lib/lchown.c: Don't include files that lchown.h now includes.
10002         Don't declare chown, since lchown.h now does that.
10003         * lib/lchown.h: Include errno.h, sys/types.h, unistd.h.
10004         (lchown): Define to rpl_chown if lchown is declared but
10005         does not exist.  Declare using a prototype if lchown is not
10006         declared.  Add a copyright notice.
10007         * lib/mkstemp.h: Include <unistd.h>.
10008         * lib/openat.c: Include lchown.h.
10009
10010         * lib/fcntl_.h (O_NOFOLLOW): Don't depend on O_NOFOLLOW_IS_INEFFECTIVE;
10011         we now test for that separately.
10012         * lib/fts.c (fts_safe_changedir): Inspect HAVE_WORKING_O_NOFOLLOW
10013         rather than O_NOFOLLOW, when testing whether it's possible to
10014         avoid a race condition reliably.
10015         * lib/savewd.c (savewd_chdir): Likewise.
10016
10017         Remove macros that are no longer needed now that stdint.h is
10018         reliable.
10019         * lib/fsusage.c (UINTMAX_MAX): Remove.
10020         * lib/human.c (SIZE_MAX, UINTMAX_MAX): Remove.
10021         * lib/utimecmp.c (SIZE_MAX): Remove.
10022
10023         * m4/lchown.m4 (gl_FUNC_LCHOWN): Check whether lchown is declared.
10024
10025         * m4/fcntl_h.m4 (gl_FCNTL_H): Define HAVE_WORKING_O_NOFOLLOW instead
10026         of O_NOFOLLOW_IS_INEFFECTIVE.  Define HAVE_WORKING_O_NOATIME if
10027         O_NOATIME works.
10028
10029 2006-10-05  Bruno Haible  <bruno@clisp.org>
10030
10031         * lib/gl_list.h (gl_sortedlist_search_from_to,
10032         gl_sortedlist_indexof_from_to): New declarations.
10033         (gl_list_implementation): New fields sortedlist_search_from_to,
10034         sortedlist_indexof_from_to.
10035         (gl_sortedlist_search_from_to, gl_sortedlist_indexof_from_to): New
10036         inline functions.
10037         * lib/gl_list.c (gl_sortedlist_search_from_to,
10038         gl_sortedlist_indexof_from_to): New functions.
10039         * lib/gl_array_list.c (gl_array_sortedlist_indexof_from_to): New
10040         function.
10041         (gl_array_sortedlist_indexof, gl_array_sortedlist_search): Use it.
10042         (gl_array_sortedlist_search_from_to): New function.
10043         (gl_array_list_implementation): Update.
10044         * lib/gl_carray_list.c (gl_carray_sortedlist_indexof_from_to): New
10045         function.
10046         (gl_carray_sortedlist_indexof, gl_carray_sortedlist_search): Use it.
10047         (gl_carray_sortedlist_search_from_to): New function.
10048         (gl_carray_list_implementation): Update.
10049         * lib/gl_anylinked_list2.h (gl_linked_sortedlist_search_from_to,
10050         gl_linked_sortedlist_indexof_from_to): New functions.
10051         * lib/gl_linked_list.c (gl_linked_list_implementation): Update.
10052         * lib/gl_linkedhash_list.c (gl_linkedhash_list_implementation): Update.
10053         * lib/gl_anytree_list2.h (gl_tree_sortedlist_search_from_to,
10054         gl_tree_sortedlist_indexof_from_to): New functions.
10055         * lib/gl_avltree_list.c (gl_avltree_list_implementation): Update.
10056         * lib/gl_avltreehash_list.c (gl_avltreehash_list_implementation):
10057         Update.
10058         * lib/gl_rbtree_list.c (gl_rbtree_list_implementation): Update.
10059         * lib/gl_rbtreehash_list.c (gl_avltreehash_list_implementation):
10060         Update.
10061
10062 2006-10-05  Bruno Haible  <bruno@clisp.org>
10063
10064         * lib/gl_list.h (gl_list_search_from, gl_list_search_from_to,
10065         gl_list_indexof_from, gl_list_indexof_from_to): New declarations.
10066         (struct gl_list_implementation): Add fields search_from_to,
10067         indexof_from_to. Remove fields search, indexof.
10068         (gl_list_search): Use the search_from_to method.
10069         (gl_list_search_from, gl_list_search_from_to): New functions.
10070         (gl_list_indexof): Use the indexof_from_to method.
10071         (gl_list_indexof_from, gl_list_indexof_from_to): New functions.
10072         * lib/gl_list.c (gl_list_search): Use the search_from_to method.
10073         (gl_list_search_from, gl_list_search_from_to): New functions.
10074         (gl_list_indexof): Use the indexof_from_to method.
10075         (gl_list_indexof_from, gl_list_indexof_from_to): New functions.
10076         * lib/gl_array_list.c (gl_array_indexof_from_to): Renamed from
10077         gl_array_indexof. Add start_index, end_index arguments.
10078         (gl_array_search_from_to): Renamed from gl_array_search. Add
10079         start_index, end_index arguments.
10080         (gl_array_remove, gl_array_list_implementation): Update.
10081         * lib/gl_carray_list.c (gl_carray_indexof_from_to): Renamed from
10082         gl_carray_indexof. Add start_index, end_index arguments.
10083         (gl_carray_search_from_to): Renamed from gl_carray_search. Add
10084         start_index, end_index arguments.
10085         (gl_carray_remove, gl_carray_list_implementation): Update.
10086         * lib/gl_anylinked_list2.h (gl_linked_search_from_to): Renamed from
10087         gl_linked_search. Add start_index, end_index arguments.
10088         (gl_linked_indexof_from_to): Renamed from gl_linked_indexof. Add
10089         start_index, end_index arguments.
10090         (gl_linked_remove): Update.
10091         * lib/gl_linked_list.c (gl_linked_list_implementation): Update.
10092         * lib/gl_linkedhash_list.c (gl_linkedhash_list_implementation): Update.
10093         * lib/gl_anytree_list1.h (iterstack_item_t): Change type of 'rightp'
10094         field to 'size_t'.
10095         * lib/gl_anytree_list2.h (gl_tree_search_from_to): Renamed from
10096         gl_tree_search. Add start_index, end_index arguments.
10097         (gl_tree_indexof_from_to): Renamed from gl_tree_indexof. Add
10098         start_index, end_index arguments.
10099         (gl_tree_remove): Update.
10100         * lib/gl_avltree_list.c (gl_avltree_list_implementation): Update.
10101         * lib/gl_rbtree_list.c (gl_rbtree_list_implementation): Update.
10102         * lib/gl_anytreehash_list1.h (compare_position_threshold): New
10103         function.
10104         * lib/gl_anytreehash_list2.h (gl_tree_search_from_to): Renamed from
10105         gl_tree_search. Add start_index, end_index arguments.
10106         (gl_tree_indexof_from_to): Renamed from gl_tree_indexof. Add
10107         start_index, end_index arguments.
10108         * lib/gl_avltreehash_list.c (gl_avltreehash_list_implementation):
10109         Update.
10110         * lib/gl_rbtreehash_list.c (gl_rbtreehash_list_implementation): Update.
10111
10112 2006-10-05  Bruno Haible  <bruno@clisp.org>
10113
10114         * modules/fwriteerror (configure.ac): Define GNULIB_FWRITEERROR.
10115
10116         * lib/clean-temp.h (open_temp, fopen_temp, close_temp, fclose_temp,
10117         fwriteerror_temp): New declarations.
10118         * lib/clean-temp.c (uintptr_t): Provide fallback definition.
10119         (descriptors): New variable.
10120         (cleanup): First, close the descriptors.
10121         (register_fd, unregister_fd, open_temp, fopen_temp, close_temp,
10122         fclose_temp, fwriteerror_temp): New functions.
10123
10124 2006-10-04  Jim Meyering  <jim@meyering.net>
10125
10126         * lib/fts.c (fts_open): Tiny comment change.
10127
10128 2006-10-04  Bruno Haible  <bruno@clisp.org>
10129
10130         Make it possible to invoke AC_GNU_SOURCE after gl_LOCK_EARLY.
10131         * m4/lock.m4 (gl_LOCK_EARLY_BODY): New macro, extracted code from
10132         gl_LOCK_BODY.
10133         (gl_LOCK_EARLY): Require gl_LOCK_EARLY_BODY, not gl_LOCK_BODY.
10134         (gl_LOCK_BODY): Remove settings of CPPFLAGS, now done in
10135         gl_LOCK_EARLY_BODY.
10136         (gl_LOCK): Require gl_LOCK_BODY.
10137
10138 2006-10-04  Bruno Haible  <bruno@clisp.org>
10139
10140         * lib/gl_oset.h (gl_setelement_threshold_fn): New type.
10141         (gl_oset_search_atleast): New declaration.
10142         (struct gl_oset_implementation): Add field 'search_atleast'.
10143         (gl_oset_search_atleast): New inline function.
10144         * lib/gl_oset.c (gl_oset_search_atleast): New function.
10145         * lib/gl_array_oset.c (gl_array_search_atleast): New function.
10146         (gl_array_oset_implementation): Update.
10147         * lib/gl_anytree_oset.h (gl_tree_search_atleast): New function.
10148         * lib/gl_avltree_oset.c (gl_avltree_oset_implementation): Update.
10149         * lib/gl_rbtree_oset.c (gl_rbtree_oset_implementation): Update.
10150
10151 2006-10-04  Bruno Haible  <bruno@clisp.org>
10152
10153         * lib/fatal-signal.c (fatal_signals) [WOE32]: Add the SIGBREAK signal.
10154
10155 2006-10-03  Bruno Haible  <bruno@clisp.org>
10156
10157         * lib/gl_rbtreehash_list.c (gl_rbtreehash_list_implementation): Renamed
10158         from gl_avltreehash_list_implementation.
10159
10160 2006-10-03  Bruno Haible  <bruno@clisp.org>
10161
10162         * lib/gl_oset.c (gl_oset_add): Fix return type.
10163
10164 2006-10-02  Paolo Bonzini  <bonzini@gnu.org>  (tiny change)
10165
10166         * lib/quotearg.c (mbstate_t) [!HAVE_MBRTOWC]: #define to int.
10167
10168 2006-10-02  Eric Blake  <ebb9@byu.net>
10169
10170         * modules/strnlen (Depends-on): Add extensions.
10171
10172 2006-10-02  Eric Blake  <ebb9@byu.net>
10173
10174         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Use autoconf's
10175         definition in 2.60+.
10176
10177 2006-10-02  Dmitry V. Levin  <ldv@altlinux.org>
10178
10179         * lib/fts.c (fts_close, fts_build, fts_palloc): Remove redundant
10180         checks.
10181
10182 2006-10-02  Bruno Haible  <bruno@clisp.org>
10183
10184         * gnulib-tool (func_emit_lib_Makefile_am): Don't add no-dependencies
10185         to the AUTOMAKE_OPTIONS.
10186         Reported by Jim Meyering.
10187
10188 2006-09-29  Paul Eggert  <eggert@cs.ucla.edu>
10189
10190         Work around bug in Solaris 10 /proc file system:
10191         /proc/self/fd/NNN/.. isn't the parent directory of
10192         the directory whose file descriptor is NNN.  This needs to
10193         be worked around at run time, not compile time, since a
10194         program might be built on Solaris 8, where things work, and
10195         run on Solaris 10.
10196         * lib/openat-priv.h (BUILD_PROC_NAME): Remove.  All callers changed
10197         to use the following interface instead:
10198         (OPENAT_BUFFER_SIZE): New macro.
10199         (openat_proc_name): New function.
10200         * lib/at-func.c (AT_FUNC_NAME): Adjust to above changes.
10201         * lib/openat.c (openat_permissive, openat_needs_fchdir, fdopendir):
10202         Likewise.
10203         * lib/openat-proc.c: New file.
10204         * modules/openat (Files): Add lib/openat-proc.c.
10205         (Depends-on): Add same-inode, stdbool.
10206         * m4/openat.m4 (gl_FUNC_OPENAT): Add AC_LIBOBJ(openat-proc).
10207
10208 2006-09-29  Bruno Haible  <bruno@clisp.org>
10209
10210         * lib/fwriteerror.h (fwriteerror_no_ebadf): New declaration.
10211         * lib/(do_fwriteerror): Renamed from fwriteerror. Add ignore_ebadf
10212         argument. Set stdout_closed before testing for ferror, not after.
10213         (fwriteerror, fwriteerror_no_ebadf): New functions.
10214
10215 2006-09-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
10216
10217         * m4/intmax.m4 (gt_TYPE_INTMAX_T): Avoid unused variables warning.
10218
10219 2006-09-28  Paolo Bonzini  <bonzini@gnu.org>
10220
10221         * lib/poll.c (rpl_poll) [__APPLE__]: Use FIONREAD instead of MSG_PEEK.
10222         * m4/poll.m4: Look for sys/ioctl.h and sys/filio.h.
10223
10224 2006-09-28  Jim Meyering  <jim@meyering.net>
10225
10226         * lib/mkdir-p.c: Include "dirchownmod.h", not "dirchownmod.c".
10227         Include <unistd.h>.
10228
10229 2006-09-28  Bruno Haible  <bruno@clisp.org>
10230
10231         * modules/avltreehash-list (Depends-on): Add stdint, remove size_max.
10232         * modules/linkedhash-list (Depends-on): Likewise.
10233         * modules/rbtreehash-list (Depends-on): Likewise.
10234
10235 2006-09-28  Bruno Haible  <bruno@clisp.org>
10236
10237         * lib/strndup.h: Simplify the redefinition of strndup.
10238         (_GL_CONCAT, _GL_XCONCAT, __STRNDUP_ID): Remove macros.
10239         * m4/strndup.m4 (gl_FUNC_STRNDUP): Don't define __STRNDUP_PREFIX.
10240
10241 2006-09-28  Bruno Haible  <bruno@clisp.org>
10242
10243         * lib/gl_avltreehash_list.c: Include <stdint.h> instead of size_max.h.
10244         * lib/gl_linkedhash_list.c: Likewise.
10245         * lib/gl_rbtreehash_list.c: Likewise.
10246
10247 2006-09-27  Paul Eggert  <eggert@cs.ucla.edu>
10248
10249         * lib/canon-host.c (canon_host_r): Work around bug in Darwin 7.9.0
10250         getaddrinfo.
10251
10252         * lib/__fpending.h: Don't include <stdio_ext.h> unless
10253         HAVE_DECL___FPENDING.  This avoids a bug with lsbcc, where
10254         it causes <stdio_ext.h> to cause a compile-time error.
10255         Problem reported by Nelson H. F. Beebe.
10256         * lib/getpass.c: Likewise, except for HAVE_DECL___FSETLOCKING instead
10257         of HAVE_DECL___PENDING.
10258
10259         * m4/fpending.m4 (gl_FUNC_FPENDING): Check for stdio_ext at most once.
10260         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for __fsetlocking's
10261         declaration.
10262
10263 2006-09-27  Jim Meyering  <jim@meyering.net>
10264
10265         This file could end up with a definition for a function
10266         named __strndup, rather than rpl_strndup on a system with
10267         incomplete weak_alias support.
10268         * lib/strndup.c (strndup): Rename from __strndup.
10269         Remove #defines that used to map __strndup to strndup.
10270         Don't use K&R prototypes.
10271         Remove LIBC-related code, since this file is not sync'd with glibc.
10272         * lib/strndup.h: Revamp, accordingly.
10273         * m4/strndup.m4: Modernize.
10274
10275 2006-09-26  Paul Eggert  <eggert@cs.ucla.edu>
10276
10277         * modules/savewd (Depends-on): Add 'raise'.
10278         * lib/savewd.c: Include <signal.h>, for 'raise'.
10279
10280 2006-09-26  Jim Meyering  <jim@meyering.net>
10281
10282         * m4/acl.m4 (AC_FUNC_ACL): Disable ACL support altogether
10283         when we detect Darwin 8.7.0's acl_get_file bug.
10284         Rearrange to perform the new (below) run-test while $LIBS
10285         contains any acl-related library.  Set USE_ACL at the end.
10286         (gl_ACL_GET_FILE): New function.
10287
10288 2006-09-26  Eric Blake  <ebb9@byu.net>
10289
10290         * lib/verror.c: Include <config.h> unconditionally.
10291
10292 2006-09-25  Paul Eggert  <eggert@cs.ucla.edu>
10293
10294         * modules/clock-time (Maintainer): Add self.
10295         * modules/getlogin_r (Depends-on): Add extensions.
10296
10297 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
10298
10299         * modules/clock-time: New module.
10300         * modules/nanosleep (Depends-on): Add clock-time.
10301         * modules/gethrxtime (Depends-on): Likewise.
10302         * modules/gettime (Depends-on): Likewise.
10303         * modules/settime (Depends-on): Likewise.
10304
10305         * modules/fts-lgpl: Depend on openat.
10306         * modules/mkancesdirs: Depend on savewd.
10307         * modules/mkdir-p: Likewise.
10308
10309 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
10310
10311         * m4/host-os.m4 (gl_HOST_OS): Require AC_CANONICAL_HOST.
10312
10313         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Rename cache variable from
10314         `gl_have_arbitrary_file_name_length_limit' to
10315         `gl_cv_have_arbitrary_file_name_length_limit', so that caching
10316         actually works between configure runs.
10317
10318 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
10319             Bruno Haible  <bruno@clisp.org>
10320
10321         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Include <string.h>.
10322
10323 2006-09-25  Jim Meyering  <jim@meyering.net>
10324
10325         * m4/fcntl_h.m4 (gl_FCNTL_H): Fix typo in test for failed open.
10326         This typo caused coreutils/tests/dd/misc to fail on Darwin 8.7.0.
10327
10328 2006-09-25  Eric Blake  <ebb9@byu.net>
10329
10330         * gnulib-tool (func_import, func_create_testdir): Fix typos in
10331         exec's in 2006-09-18 patch when shuffling fds.
10332
10333 2006-09-25  Bruno Haible  <bruno@clisp.org>
10334
10335         * m4/getloadavg.m4 (gl_GETLOADAVG): Fix directory in error message.
10336         Reported by Jim Meyering.
10337
10338 2006-09-24  Jim Meyering  <jim@meyering.net>
10339
10340         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Don't use '>' to
10341         compare a pointer against a literal "0".  That caused failures with
10342         at least HP-UX's hpcc.
10343
10344 2006-09-22  Simon Josefsson  <jas@extundo.com>
10345
10346         * modules/gc-sha1:
10347         * modules/gc-md4:
10348         * modules/gc-hmac-sha1:
10349         * modules/gc-hmac-md5:
10350         * modules/gc-des:
10351         * modules/gc-arcfour: Distribute more files.
10352
10353 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
10354
10355         * lib/gl_anylinked_list2.h [lint] (gl_linked_iterator)
10356         (gl_linked_iterator_from_to): Initialize struct completely.
10357         * lib/gl_anytree_list2.h [lint] (gl_tree_iterator): Likewise.
10358         (gl_tree_iterator_from_to): Likewise
10359         * lib/gl_anytree_oset.h [lint] (gl_tree_iterator): Likewise.
10360         * lib/gl_array_list.c [lint] (gl_array_iterator)
10361         (gl_array_iterator_from_to): Likewise.
10362         * lib/gl_array_oset.c [lint] (gl_array_iterator): Likewise.
10363         * lib/gl_carray_list.c [lint] (gl_carray_iterator)
10364         (gl_carray_iterator_from_to): Likewise.
10365
10366         * lib/gc-gnulib.c [GC_USE_HMAC_SHA1]: include hmac.h for hmac_sha1.
10367         * lib/md4.c (md4_process_block): Remove unused variable.
10368         * lib/rijndael-api-fst.c (rijndaelBlockDecrypt): GCC suggests
10369         parentheses for clarity.
10370
10371 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
10372
10373         * modules/bison-i18n (Depends-on): Add gettext.
10374
10375 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
10376
10377         * m4/fsusage.m4 (gl_STATFS_TRUNCATES): Avoid unused variable.
10378         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): Likewise.
10379         * m4/jm-winsz1.m4 (gl_HEADER_TIOCGWINSZ_IN_TERMIOS_H): Likewise;
10380         also add missing comma that caused broken test.
10381         * m4/link-follow.m4 (gl_AC_FUNC_LINK_FOLLOWS_SYMLINK): Include
10382         stdlib.h, for `abort'.
10383         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Avoid unused
10384         variables.
10385         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Check for and
10386         include unistd.h if present, for `rmdir'.
10387         * m4/physmem.m4 (gl_SYS__SYSTEM_CONFIGURATION): Avoid unused
10388         variables.
10389         * m4/putenv.m4 (gl_FUNC_PUTENV): Rewrite using AC_RUN_IFELSE, and
10390         in the process include standard headers for prototypes.
10391         * m4/readutmp.m4 (gl_READUTMP): Require AC_GNU_SOURCE, so utmpxname
10392         gets declared on GNU/Linux.
10393         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Check for and include
10394         unistd.h, for `rmdir'.
10395         * m4/time_r.m4 (gl_TIME_R): Avoid unused variables.
10396
10397         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Avoid expression that is
10398         always true.
10399         * m4/strndup.m4 (gl_FUNC_STRNDUP): include stdlib.h, for `free'.
10400
10401         * m4/sockpfaf.m4 (gl_SOCKET_FAMILIES): Avoid gcc -Wall warnings.
10402
10403 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
10404
10405         * gnulib-tool (func_version): Create output all at once.  This
10406         may help avoid triggering unnecessary SIGPIPEs, and at any
10407         rate it doesn't hurt.
10408
10409 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
10410             Bruno Haible  <bruno@clisp.org>
10411
10412         * m4/lock.m4 (gl_LOCK_BODY): Avoid unused variables warning.
10413         * m4/mbswidth.m4 (gl_MBSWIDTH): Likewise.
10414         * m4/signed.m4 (bh_C_SIGNED): Likewise.
10415
10416         * m4/vasprintf.m4 (gl_PREREQ_VASPRINTF_H): New macro.
10417         (gl_FUNC_VASPRINTF): Invoke it.
10418
10419 2006-09-22  Bruno Haible  <bruno@clisp.org>
10420
10421         * m4/getloadavg.m4 (gl_GETLOADAVG): Expect the directory of
10422         getloadavg.c as first argument.
10423
10424 2006-09-22  Bruno Haible  <bruno@clisp.org>
10425
10426         * gnulib-tool (func_import, func_create_testdir): Set gl_source_base
10427         at the beginning of the gl_INIT macro.
10428         * modules/getloadavg (configure.ac): Pass $gl_source_base to
10429         gl_GETLOADAVG.
10430
10431 2006-09-22  Bruno Haible  <bruno@clisp.org>
10432
10433         * gnulib-tool (func_create_megatestdir): Don't include the config-h
10434         module.
10435         Suggested by Ralf Wildenhues.
10436
10437 2006-09-20  Paul Eggert  <eggert@cs.ucla.edu>
10438
10439         Import this patch from libc:
10440
10441         2006-09-06  Jakub Jelinek  <jakub@redhat.com>
10442
10443         * lib/regex_internal.c (re_string_reconstruct): Handle
10444         offset < pstr->valid_raw_len && pstr->offsets_needed case.
10445         Ensure no bytes read before raw_mbs array.  Pass a saved copy of
10446         pstr->valid_len - 1 rather than pstr->valid_raw_len - 1 to
10447         re_string_context_at.
10448
10449         * m4/regex.m4 (gl_REGEX): Check for locale.h, since the test
10450         now requires it.
10451         (gl_PREREQ_REGEX): Don't check for locale.h any more, since
10452         gl_REGEX now does it for us.
10453         (gl_REGEX): Add test taken from
10454         http://sourceware.org/ml/libc-hacker/2006-09/msg00008.html.
10455
10456         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Require AC_SYS_LARGEFILE.
10457         Check that large offsets work.  Modernize Autoconf usages.
10458         Prefer "yes" to mean a good thing rather than a bad.
10459         Don't put "#define mkstemp" in config.h, as this might interfere
10460         with standard system headers that "#define mkstemp mkstemp64".
10461
10462         * modules/mkstemp (Depends-on): Add extensions, so that
10463         mkstemp is visible on some platforms.
10464         (Makefile.am): Add mkstemp.h to EXTRA_DIST.
10465         (Include): Change to "mkstemp.h" from <stdlib.h>.
10466         (Files): Add mkstemp.h.
10467
10468         * lib/mkstemp.h: New file, since some standard headers
10469         #define mkstemp.
10470         * lib/mkstemp.c: Revamp to put the !_LIBC code together.
10471         Include "mkstemp.h".
10472         Make the _LIBC code resemble glibc original more,
10473         e.g., use K&R style.
10474         * lib/mkstemp-safer.c: Include "mkstemp.h" instead of <stdlib.h>.
10475         (mkstemp): Remove, since mkstemp.h does this for us.
10476         * lib/stdlib--.h: Include mkstemp.h.
10477
10478         Import this patch from libc:
10479
10480         2006-04-07  Ulrich Drepper  <drepper@redhat.com>
10481
10482         * lib/tempname.c (__gen_tempname): Change attempts_min
10483         into a macro.  Use preprocessor to decide how to initialize
10484         attempts [Coverity CID 67].
10485
10486 2006-09-20  Bruno Haible  <bruno@clisp.org>
10487
10488         * lib/mkdtemp.c: Import from libc.
10489         2006-04-07  Ulrich Drepper  <drepper@redhat.com>
10490                 * sysdeps/posix/tempname.c (__gen_tempname): Change
10491                 attempts_min into a macro.  Use preprocessor to decide how to
10492                 initialize attempts [Coverity CID 67].
10493         2001-11-27  Paul Eggert  <eggert@twinsun.com>
10494                 * sysdeps/posix/tempname.c (__gen_tempname): Try at least
10495                 ATTEMPTS_MIN or TMP_MAX times, whichever is greater.
10496
10497 2006-09-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
10498
10499         * gnulib-tool (func_exit): New function, to allow to pass the
10500         exit status portably through the trap.  Use everywhere.
10501         (--help, --version): Signal a write error.
10502         (trap): catch SIGPIPE, for write errors.
10503         Exit at the end of the trap, with the correct exit status.
10504
10505 2006-09-19  Karl Berry  <karl@gnu.org>
10506
10507         * doc/gnulib.texi: note about the license texinfo files.
10508
10509 2006-09-19  Eric Blake  <ebb9@byu.net>
10510
10511         * gnulib-tool: Avoid space-tab.
10512
10513 2006-09-18  Paul Eggert  <eggert@cs.ucla.edu>
10514
10515         * lib/getaddrinfo.c (getaddrinfo) [defined HAVE_IPV6]: Fix typo
10516         that prevented coreutils 6.1 from building.  Problem reported
10517         by Petter Reinholdtsen.
10518
10519 2006-09-18  Paul Eggert  <eggert@cs.ucla.edu>
10520
10521         * gnulib-tool (avoidlist): Fix typo that broke options like
10522         --avoid=lock that are used by coreutils bootstrap.
10523
10524 2006-09-18  Mark D. Baushke  <mdb@gnu.org>
10525
10526         * m4/inttypes.m4 (gl_INTTYPES_H): Quote "test" args
10527         more systematically.
10528
10529 2006-09-18  Jim Meyering  <jim@meyering.net>
10530
10531         * lib/savewd.c (savewd_restore): Don't shadow: s/status/child_status/.
10532
10533 2006-09-18  Bruno Haible  <bruno@clisp.org>
10534
10535         * modules/inttypes (Files): Remove m4/inttypes-h.m4.
10536
10537 2006-09-18  Bruno Haible  <bruno@clisp.org>
10538
10539         * m4/inttypes-h.m4 (gl_HEADER_INTTYPES_H): Remove macro.
10540         * m4/inttypes-pri.m4: Require autoconf >= 2.52.
10541         (gt_INTTYPES_PRI): Invoke AC_CHECK_HEADERS on inttypes.h. Test
10542         ac_cv_header_inttypes_h instead of gl_cv_header_inttypes_h.
10543         * m4/gettext.m4: Require autoconf >= 2.52.
10544         (gt_INTL_SUBDIR_CORE): Invoke AC_CHECK_HEADERS on inttypes.h.
10545         * m4/inttypes.m4 (gl_INTTYPES_H): Test ac_cv_header_inttypes_h instead
10546         of gl_cv_header_inttypes_h.
10547
10548 2006-09-18  Bruno Haible  <bruno@clisp.org>
10549
10550         * lib/javaversion.c: Include configmake.h.
10551
10552 2006-09-18  Bruno Haible  <bruno@clisp.org>
10553
10554         * gnulib-tool (func_import, func_create_testdir): Use exec tricks to
10555         avoid that the while loops be executed in a subshell.
10556
10557 2006-09-18  Bruno Haible  <bruno@clisp.org>
10558
10559         * MODULES.html.sh (func_module): Break long lines.
10560         Suggested by Bruce Korb <bkorb@gnu.org>.
10561
10562 2006-09-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
10563
10564         Speed up by a factor of 1.12.
10565         * gnulib-tool (nl): New variable.
10566         (func_import): Rewrite include directive extraction to only read each
10567         directive once.
10568
10569 2006-09-17  Bruno Haible  <bruno@clisp.org>
10570
10571         * modules/javaversion (Makefile.am): Remove DEFS setting.
10572         (Depends-on): Add configmake, for PKGDATADIR definition.
10573
10574 2006-09-17  Bruno Haible  <bruno@clisp.org>
10575
10576         * gnulib-tool (func_create_testdir): Rewrite all files at once.
10577
10578 2006-09-17  Bruno Haible  <bruno@clisp.org>
10579
10580         * gnulib-tool (func_append): New function, stolen from libtool.m4.
10581         (func_modules_transitive_closure, func_modules_add_dummy,
10582         func_modules_to_filelist, func_import, func_create_testdir,
10583         func_create_megatestdir, ...): Use it wherever possible.
10584         Suggested by Ralf Wildenhues.
10585
10586 2006-09-16  Karl Berry  <karl@gnu.org>
10587
10588         * doc/fdl.texi (ADDENDUM): switch to @heading from @appendixsubsec,
10589         to avoid sectioning errors.
10590         * doc/lgpl.texi, gpl.texi (Copying): downcase @unnumbered title.
10591         [ifinfo]: blank line after @center-ed titles.
10592         * doc/lgpl.texi (Library Copying): Rename main node to GNU LGPL.
10593         Spell FSF address consistently with others.
10594         (These changes approved by rms.)
10595
10596 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
10597
10598         Speed up by a factor of 1.61.
10599         * gnulib-tool (func_modules_transitive_closure): Rewrite to not check
10600         already checked module names again.
10601
10602 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
10603
10604         Speed up by a factor of 1.13.
10605         * gnulib-tool (func_import): Rewrite all old_files at once; likewise
10606         for new_files, and the input to func_add_or_update.
10607
10608 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
10609
10610         * gnulib-tool (func_all_modules, func_modules_to_filelist, func_import,
10611         func_create_testdir, ...): Change 'sort | uniq' to 'sort -u'.
10612
10613 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
10614
10615         * modules/mkancesdirs (Depends-on): Add fcntl.
10616         * modules/savewd: New file.
10617         * MODULES.html.sh (File system functions): Add savewd.
10618
10619         * modules/configmake (Makefile.am): Add support for the
10620         Automake-supplied PKGLIBDIR, PKGINCLUDEDIR, PKGDATADIR.
10621
10622 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
10623
10624         * m4/savewd.m4: New file.
10625
10626 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
10627
10628         * lib/dirchownmod.c: Don't include fcntl.h; no longer needed.
10629         (dirchownmod): New arg FD.  All callers changed.
10630         Use FD rather than opening the directory ourself, as opening is
10631         now the caller's responsibility.
10632         * lib/dirchownmod.h: Likewise.
10633         * lib/mkancesdirs.c: Include <sys/types.h>, for portability to older
10634         hosts that require <sys/types.h> before <sys/stat.h>.  Include
10635         fcntl.h, savewd.h, and unistd.h, not dirname.h and stat-macros.h.
10636         (test_dir): Remove.
10637         (mkancesdirs): Return length of prefix of FILE that has already
10638         been made, or -2 if there is a child doing the work.  Redo
10639         algorithm so that it is O(N) rather than O(N**2).  Optimize away
10640         ".", and treat ".." specially since it might stray back into
10641         already-created areas.  Use a subprocess if necessary.  New arg
10642         WD; all users changed.  MAKE_DIR function should now return 1
10643         if it creates a directory that is not readable.  Return -2 if
10644         a child process is spun off.
10645         * lib/mkancesdirs.h: Include <stddef.h>, for ptrdiff_t.
10646         Adjust signature to match code.
10647         * lib/mkdir-p.c: Include dirname.h, for IS_ABSOLUTE_FILE_NAME.
10648         (make_dir_parents): Use a subprocess if necessary.  New arg WD;
10649         all users changed.
10650         * lib/savewd.c, lib/savewd.h: New files.
10651
10652 2006-09-15  Jim Meyering  <jim@meyering.net>
10653
10654         * modules/rename-dest-slash: New module.
10655         * MODULES.html.sh (posix_compat): Add it here.
10656
10657         * modules/rename: Reflect vb_FUNC_RENAME -> gl_FUNC_RENAME change.
10658
10659 2006-09-15  Jim Meyering  <jim@meyering.net>
10660
10661         * m4/rename-dest-slash.m4 (gl_FUNC_RENAME_TRAILING_DEST_SLASH): New
10662         file.
10663
10664         * m4/rename.m4 (gl_FUNC_RENAME): Rename from vb_FUNC_RENAME.
10665
10666 2006-09-15  Jim Meyering  <jim@meyering.net>
10667
10668         * lib/rename-dest-slash.c (has_trailing_slash): Use
10669         FILE_SYSTEM_PREFIX_LEN, for non-POSIX systems.
10670         (rpl_rename_dest_slash): Perform the cheaper trailing slash
10671         test before testing whether SRC is a directory.
10672         Suggestions from Bruno Haible.
10673
10674         Avoid a warning about an unused variable.
10675         * lib/regex_internal.c (re_dfa_add_node): Move declaration of "type"
10676         into the #ifdef block where it's used.
10677
10678         * lib/rename-dest-slash.c: New file.
10679
10680 2006-09-14  Bruno Haible  <bruno@clisp.org>
10681
10682         * lib/allocsa.c: Include <config.h> unconditionally.
10683         * lib/asnprintf.c: Likewise.
10684         * lib/asprintf.c: Likewise.
10685         * lib/c-strcasecmp.c: Likewise.
10686         * lib/c-strcasestr.c: Likewise.
10687         * lib/c-strncasecmp.c: Likewise.
10688         * lib/c-strstr.c: Likewise.
10689         * lib/classpath.c: Likewise.
10690         * lib/clean-temp.c: Likewise.
10691         * lib/concatpath.c: Likewise.
10692         * lib/copy-file.c: Likewise.
10693         * lib/csharpcomp.c: Likewise.
10694         * lib/csharpexec.c: Likewise.
10695         * lib/execute.c: Likewise.
10696         * lib/fatal-signal.c: Likewise.
10697         * lib/findprog.c: Likewise.
10698         * lib/fwriteerror.c: Likewise.
10699         * lib/gl_array_list.c: Likewise.
10700         * lib/gl_array_oset.c: Likewise.
10701         * lib/gl_avltree_list.c: Likewise.
10702         * lib/gl_avltree_oset.c: Likewise.
10703         * lib/gl_avltreehash_list.c: Likewise.
10704         * lib/gl_carray_list.c: Likewise.
10705         * lib/gl_linked_list.c: Likewise.
10706         * lib/gl_linkedhash_list.c: Likewise.
10707         * lib/gl_list.c: Likewise.
10708         * lib/gl_oset.c: Likewise.
10709         * lib/gl_rbtree_list.c: Likewise.
10710         * lib/gl_rbtree_oset.c: Likewise.
10711         * lib/gl_rbtreehash_list.c: Likewise.
10712         * lib/imaxabs.c: Likewise.
10713         * lib/imaxdiv.c: Likewise.
10714         * lib/javacomp.c: Likewise.
10715         * lib/javaexec.c: Likewise.
10716         * lib/javaversion.c: Likewise.
10717         * lib/linebreak.c: Likewise.
10718         * lib/localcharset.c: Likewise.
10719         * lib/lock.c: Likewise.
10720         * lib/mbchar.c: Likewise.
10721         * lib/mbswidth.c: Likewise.
10722         * lib/mkdtemp.c: Likewise.
10723         * lib/pipe.c: Likewise.
10724         * lib/printf-args.c: Likewise.
10725         * lib/printf-parse.c: Likewise.
10726         * lib/progname.c: Likewise.
10727         * lib/progreloc.c: Likewise.
10728         * lib/readlink.c: Likewise.
10729         * lib/sh-quote.c: Likewise.
10730         * lib/stpcpy.c: Likewise.
10731         * lib/stpncpy.c: Likewise.
10732         * lib/strcasecmp.c: Likewise.
10733         * lib/strcasestr.c: Likewise.
10734         * lib/strcspn.c: Likewise.
10735         * lib/striconv.c: Likewise.
10736         * lib/strncasecmp.c: Likewise.
10737         * lib/strnlen1.c: Likewise.
10738         * lib/strstr.c: Likewise.
10739         * lib/strtok_r.c: Likewise.
10740         * lib/tls.c: Likewise.
10741         * lib/tmpdir.c: Likewise.
10742         * lib/unicodeio.c: Likewise.
10743         * lib/unsetenv.c: Likewise.
10744         * lib/vasnprintf.c: Likewise.
10745         * lib/vasprintf.c: Likewise.
10746         * lib/wait-process.c: Likewise.
10747         * lib/xallocsa.c: Likewise.
10748         * lib/xsetenv.c: Likewise.
10749         * lib/xstriconv.c: Likewise.
10750
10751 2006-09-13  Simon Josefsson  <jas@extundo.com>
10752
10753         * m4/getdate.m4: Don't AC_LIBOBJ([getdate]), automake takes care of
10754         that internally, suggested by Ralf Wildenhues
10755         <Ralf.Wildenhues@gmx.de>.
10756
10757 2006-09-13  Simon Josefsson  <jas@extundo.com>
10758
10759         * gnulib-tool (func_emit_lib_Makefile_am): Use $(LIBOBJS), not
10760         @LIBOBJS@.
10761         Suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
10762
10763 2006-09-13  Paul Eggert  <eggert@cs.ucla.edu>
10764
10765         * lib/_fpending.c: Include <config.h> unconditionally, since we no
10766         longer worry about uses that don't define HAVE_CONFIG_H.
10767         * lib/acl.c, lib/alloca.c, lib/argmatch.c, lib/atexit.c:
10768         * lib/backupfile.c, lib/basename.c, lib/c-stack.c, lib/c-strtod.c:
10769         * lib/calloc.c,lib/ canon-host.c, lib/canonicalize.c, lib/chdir-long.c:
10770         * lib/chdir-safer.c, lib/chown.c, lib/cloexec.c, lib/close-stream.c:
10771         * lib/closeout.c, lib/creat-safer.c, lib/cycle-check.c, lib/diacrit.c:
10772         * lib/dirchownmod.c, lib/dirfd.c, lib/dirname.c, lib/dup-safer.c:
10773         * lib/dup2.c, lib/error.c, lib/euidaccess.c, lib/exclude.c:
10774         * lib/exitfail.c, lib/fchmodat.c, lib/fchown-stub.c, lib/fd-safer.c:
10775         * lib/file-type.c, lib/fileblocks.c, lib/filemode.c, lib/filenamecat.c:
10776         * lib/fnmatch.c, lib/fopen-safer.c, lib/fprintftime.c, lib/free.c:
10777         * lib/fsusage.c, lib/ftruncate.c, lib/fts-cycle.c, lib/fts.c:
10778         * lib/full-write.c, lib/gai_strerror.c, lib/getcwd.c, lib/getdate.y:
10779         * lib/getdomainname.c, lib/getgroups.c, lib/gethostname.c:
10780         * lib/gethrxtime.c, lib/getloadavg.c, lib/getlogin_r.c:
10781         * lib/getndelim2.c, lib/getnline.c, lib/getopt.c, lib/getopt1.c:
10782         * lib/getpass.c, lib/gettime.c, lib/gettimeofday.c, lib/getugroups.c:
10783         * lib/getusershell.c, lib/glob.c, lib/group-member.c:
10784         * lib/hard-locale.c, lib/hash-pjw.c, lib/hash.c, lib/human.c:
10785         * lib/idcache.c, lib/inet_ntop.c, lib/inet_pton.c, lib/inttostr.c:
10786         * lib/isdir.c, lib/lchown.c, lib/linebuffer.c, lib/long-options.c:
10787         * lib/lstat.c, lib/malloc.c, lib/md5.c, lib/memcasecmp.c, lib/memchr.c:
10788         * lib/memcmp.c, lib/memcoll.c, lib/memcpy.c, lib/memmove.c:
10789         * lib/memrchr.c, lib/mkancesdirs.c, lib/mkdir-p.c, lib/mkdir.c:
10790         * lib/mkdirat.c, lib/mkstemp-safer.c, lib/mkstemp.c, lib/modechange.c:
10791         * lib/mountlist.c, lib/nanosleep.c, lib/obstack.c, lib/open-safer.c:
10792         * lib/openat-die.c, lib/openat.c, lib/pagealign_alloc.c, lib/physmem.c:
10793         * lib/pipe-safer.c, lib/posixtm.c, lib/posixver.c, lib/putenv.c:
10794         * lib/quote.c, lib/quotearg.c, lib/raise.c, lib/readtokens.c:
10795         * lib/readtokens0.c, lib/readutmp.c, lib/realloc.c, lib/regex.c:
10796         * lib/rename.c, lib/rmdir.c, lib/rpmatch.c, lib/safe-read.c:
10797         * lib/same.c, lib/save-cwd.c, lib/savedir.c, lib/setenv.c:
10798         * lib/settime.c, lib/sha1.c, lib/sig2str.c, lib/snprintf.c:
10799         * lib/strdup.c, lib/strerror.c, lib/strftime.c, lib/stripslash.c:
10800         * lib/strndup.c, lib/strnlen.c, lib/strpbrk.c, lib/strtod.c:
10801         * lib/strtoimax.c, lib/strtol.c, lib/strverscmp.c, lib/tempname.c:
10802         * lib/time_r.c, lib/timegm.c, lib/tmpfile-safer.c, lib/unlinkdir.c:
10803         * lib/userspec.c, lib/utime.c, lib/utimecmp.c, lib/utimens.c:
10804         * lib/version-etc-fsf.c, lib/version-etc.c, lib/xalloc-die.c:
10805         * lib/xgetcwd.c, lib/xgethostname.c, lib/xmalloc.c, lib/xmemcoll.c:
10806         * lib/xnanosleep.c, lib/xreadlink.c, lib/xstrtod.c, lib/xstrtoimax.c:
10807         * lib/xstrtol.c, lib/xstrtoumax.c, lib/yesno.c:
10808         Likewise.
10809
10810 2006-09-13  Eric Blake  <ebb9@byu.net>
10811
10812         * lib/getopt.c: Fix typo in last commit.
10813
10814 2006-09-12  Sergey Poznyakoff  <gray@gnu.org.ua>
10815
10816         * lib/argp-help.c (argp_doc): Make sure NULL is not passed to
10817         dgettext.
10818
10819 2006-09-12  Jim Meyering  <jim@meyering.net>
10820
10821         * lib/nanosleep.c: Include <sys/types.h> before sys/select.h, to avoid
10822         compilation failure (due to use of pid_t in latter) on NetBSD 1.6.
10823         Reported by Nelson H. F. Beebe.
10824
10825 2006-09-10  Sergey Poznyakoff  <gray@gnu.org.ua>
10826
10827         * lib/argp-parse.c (__argp_parse) [!_LIBC]: Make sure
10828         program_invocation_name and program_invocation_short_name are
10829         initialized.
10830         * lib/argp-namefrob.h: Move declarations of program_invocation_name
10831         and program_invocation_short_name to argp.h, so they are visible
10832         to user programs.
10833         * lib/argp.h: Likewise
10834
10835 2006-09-10  Bruno Haible  <bruno@clisp.org>
10836
10837         * modules/mkdtemp (Files): Remove m4/ulonglong.m4, m4/stdint_h.m4,
10838         m4/inttypes_h.m4, m4/uintmax_t.m4.
10839
10840 2006-09-10  Bruno Haible  <bruno@clisp.org>
10841
10842         * m4/mkdtemp.m4 (gl_PREREQ_MKDTEMP): Don't require
10843         gl_AC_TYPE_UINTMAX_T.
10844
10845 2006-09-10  Bruno Haible  <bruno@clisp.org>
10846
10847         * lib/mkdtemp.c: Include <stdint.h> always. Don't include <inttypes.h>.
10848
10849 2006-09-09  Sergey Poznyakoff  <gray@gnu.org.ua>
10850
10851         * lib/argp.h (struct argp): Document the N_("..") "\v" N_("..")
10852         convention.  Text proposed by Bruno Haible.
10853         (struct argp_option): Document the use of N_() wrappers.
10854
10855         * lib/argp-help.c (argp_doc): Split the untranslated doc string on
10856         '\v', and translate the two parts separately, instead of feeding
10857         the whole string to gettext.  This allows to exclude
10858         '\v' from the strings visible to the translator by writing doc
10859         strings as N_("..") "\v" N_("..").
10860
10861 2006-09-09  Paul Eggert  <eggert@cs.ucla.edu>
10862
10863         * config/srclist.txt: Undo latest change; the bug was fixed.
10864
10865 2006-09-09  Bruno Haible  <bruno@clisp.org>
10866
10867         * gnulib-tool (func_emit_lib_Makefile_am): Eliminate lib_LDFLAGS
10868         assignments if building a library without libtool.
10869         (func_emit_tests_Makefile_am): Likewise. Handle lib_* variables as
10870         in func_emit_lib_Makefile_am.
10871         (func_import): When building a static library libfoo.a, arrange to
10872         define variables LIBFOO_LIBDEPS and LIBFOO_LTLIBDEPS.
10873         (func_create_testdir): Likewise.
10874         * modules/gc (configure.ac, Makefile.am): If building statically,
10875         augment gl_libdeps and gl_ltlibdeps instead of lib_LDFLAGS.
10876         * modules/iconvme (configure.ac, Makefile.am): Likewise.
10877         * modules/striconv (configure.ac, Makefile.am): Likewise.
10878         Based on a suggestion by Ralf Wildenhues.
10879
10880 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
10881
10882         * m4/mktime.m4 (AC_FUNC_MKTIME): Sync from Autoconf.
10883         Check for unistd.h too, since Autoconf doesn't assume POSIX.
10884         Also:
10885
10886         2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
10887         Add year_2050_test to catch glibc bug 2821
10888         <http://sourceware.org/bugzilla/show_bug.cgi?id=2821>.
10889
10890         2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
10891         Prefer #ifdef to #if.
10892
10893         2006-04-02  Paul Eggert  <eggert@cs.ucla.edu>
10894         Return from 'main' instead of calling 'exit'.
10895
10896 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
10897
10898         * lib/mktime.c (guess_time_tm): Fix bug where mktime
10899         returned the maximum time_t value rather than (time_t) -1.
10900         Problem originally reported by William Bardwell
10901         <http://sourceware.org/bugzilla/show_bug.cgi?id=2821>.
10902
10903         * lib/isapipe.h (HAVE_FIFO_PIPES) [!defined HAVE_FIFO_PIPES]:
10904         Moved to here ...
10905         * lib/isapipe.c (HAVE_FIFO_PIPES) [!defined HAVE_FIFO_PIPES]:
10906         ... from here.
10907
10908 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
10909
10910         * config/srclist.txt: Temporarily comment out mktime.c until glibc bug
10911         2821 is fixed.
10912
10913 2006-09-08  Jim Meyering  <jim@meyering.net>
10914
10915         Don't make generated files read-only.  That would bother too many
10916         people.  However, do retain the ability to work when targets are
10917         read-only: remove the destination and temporary files before writing
10918         them (when generated via sed or echo), or by using the -f option for
10919         both cp and mv commands.  Suggestion to use -f from Paul Eggert.
10920         * modules/alloca-opt, modules/argz, modules/arpa_inet:
10921         * modules/byteswap, modules/configmake, modules/fcntl:
10922         * modules/fnmatch, modules/getopt, modules/glob, modules/inttypes:
10923         * modules/localcharset, modules/netinet_in, modules/poll:
10924         * modules/stdbool, modules/stdint, modules/sys_select:
10925         * modules/sys_socket, modules/sys_stat, modules/sysexits:
10926
10927 2006-09-08  Jim Meyering  <jim@meyering.net>
10928
10929         Avoid new build failure on FreeBSD 6.0.
10930         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Include
10931         <sys/param.h> when testing whether getmntinfo uses statvfs.  Patch by
10932         Pavel Tsekov, in <http://savannah.gnu.org/bugs/?17643>.
10933
10934 2006-09-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
10935
10936         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Don't use plain echo.
10937
10938 2006-09-07  Jim Meyering  <jim@meyering.net>
10939
10940         Fix global typo in last change: use chmod u-w, not chmod u-x.
10941         Spotted by Paul Eggert and Bruce Korb.
10942         * modules/alloca-opt, modules/argz, modules/arpa_inet:
10943         * modules/byteswap, modules/configmake, modules/fcntl:
10944         * modules/fnmatch, modules/getopt, modules/glob, modules/inttypes:
10945         * modules/localcharset, modules/netinet_in, modules/poll:
10946         * modules/stdbool, modules/stdint, modules/sys_select:
10947         * modules/sys_socket, modules/sys_stat, modules/sysexits:
10948
10949 2006-09-06  Jim Meyering  <jim@meyering.net>
10950
10951         Make generated files be read-only.
10952         * modules/alloca-opt (Makefile.am): Work also when $@ is read-only.
10953         Ensure that each generated file is now read-only.
10954         * modules/argz: Likewise.
10955         * modules/arpa_inet: Likewise.
10956         * modules/byteswap: Likewise.
10957         * modules/configmake: Likewise.
10958         * modules/fcntl: Likewise.
10959         * modules/fnmatch: Likewise.
10960         * modules/getopt: Likewise.
10961         * modules/glob: Likewise.
10962         * modules/inttypes: Likewise.
10963         * modules/netinet_in: Likewise.
10964         * modules/poll: Likewise.
10965         * modules/stdbool: Likewise.
10966         * modules/stdint: Likewise.
10967         * modules/sys_select: Likewise.
10968         * modules/sys_socket: Likewise.
10969         * modules/sys_stat: Likewise.
10970         * modules/sysexits: Likewise.
10971         * modules/localcharset: Same as above, but continue using temporary
10972         file named "t-$@" (why different?) rather than the "$@-t" used
10973         everywhere else.
10974
10975         * modules/sysexits (Makefile.am): Replace literal occurrences
10976         of "sysexit.h" more readable, and more consistent, "$@".
10977
10978 2006-09-06  Bruno Haible  <bruno@clisp.org>
10979
10980         * modules/striconv: New file.
10981         * modules/xstriconv: New file.
10982         * MODULES.html.sh (Internationalization functions): Add striconv,
10983         xstriconv.
10984
10985 2006-09-06  Bruno Haible  <bruno@clisp.org>
10986
10987         * modules/gc (Makefile.am): Augment lib_LDFLAGS, not lib_LIBADD.
10988         * modules/iconvme (Makefile.am): Likewise. Also handle the case of
10989         not using libtool correctly.
10990
10991 2006-09-06  Bruno Haible  <bruno@clisp.org>
10992
10993         * lib/striconv.h: New file.
10994         * lib/striconv.c: New file, merging iconvme.c with GNU gettext's
10995         iconvstring.c.
10996         * lib/xstriconv.h: New file.
10997         * lib/xstriconv.c: New file.
10998
10999 2006-09-06  Bruno Haible  <bruno@clisp.org>
11000
11001         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
11002         lib_..._LDFLAGS.
11003
11004 2006-09-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
11005
11006         * lib/argz_.h: Sync from Libtool.
11007
11008         2006-09-04  George Bosilca <bosilca@cs.utk.edu>
11009                 and Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
11010
11011         * lib/libltdl/argz_.h: It's __cplusplus, not _cplusplus.
11012
11013 2006-09-05  Davide Angelocola  <davide.angelocola@tiscali.it>
11014
11015         * modules/trim: New file.
11016
11017 2006-09-05  Davide Angelocola  <davide.angelocola@tiscali.it>
11018
11019         * lib/trim.h: New file.
11020         * lib/trim.c: New file.
11021
11022 2006-09-05  Bruno Haible  <bruno@clisp.org>
11023
11024         * MODULES.html.sh (String handling): Add trim.
11025
11026 2006-09-04  Karl Berry  <karl@gnu.org>
11027
11028         * config/srclist.txt (signed.m4, gettext.m4): changes not propagated
11029         until next release.
11030
11031 2006-09-03  Bruno Haible  <bruno@clisp.org>
11032
11033         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Locate mingw shared libraries
11034         correctly.
11035
11036 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
11037
11038         * m4/getloadavg.m4 (gl_GETLOADAVG): Use CONFIGURING_GETLOADAVG,
11039         not gl_GETLOADAVG.  Omit unneeded semicolons.
11040         Problems reported by Ralf Wildenhues in
11041         <http://lists.gnu.org/archive/html/bug-gnulib/2006-09/msg00000.html>.
11042         (gl_PREREQ_GETLOADAVG): Use AC_DEFUN, not m4_define.  Put
11043         at the end, which is the usual gnulib style.
11044
11045         * m4/fstypename.m4 (gl_FSTYPENAME): Use AC_CHECK_MEMBERS instead
11046         of doing all the work ourselves.
11047         * m4/fsusage.m4 (gl_PREREQ_FSUSAGE_EXTRA): Don't check for
11048         sys/statvfs.h since the code doesn't use HAVE_SYS_STATVFS_H.
11049
11050 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
11051
11052         * lib/getloadavg.c: Use CONFIGURING_GETLOADAVG, not gl_GETLOADAVG.
11053         Problem reported by Ralf Wildenhues in
11054         <http://lists.gnu.org/archive/html/bug-gnulib/2006-09/msg00000.html>.
11055
11056         * lib/mountlist.c: All uses of HAVE_F_FSTYPENAME_IN_STATFS replaced by
11057         HAVE_STRUCT_STATFS_F_FSTYPENAME.
11058
11059 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
11060
11061         * gnulib-tool (func_emit_lib_Makefile_am): Fix typos in
11062         yesterday's patch by changing test -n to test -z.
11063
11064 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
11065
11066         * modules/getloadavg (Files): Add m4/getloadavg.m4.
11067         (configure.ac): AC_FUNC_GETLOADAVG -> gl_GETLOADAVG, as
11068         the former is now obsolescent.
11069
11070         * modules/chdir-long (Depends-on): Add fcntl.
11071
11072 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
11073
11074         * m4/fnmatch.m4: Add comment that Autoconf AC_FUNC_FNMATCH is
11075         obsolescent, and programs should use gnulib instead.
11076         * m4/getloadavg.m4: New file, with contents taken from Autoconf
11077         but with prefixes changed.
11078
11079 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
11080
11081         * lib/getloadavg.c [defined gl_GETLOADAVG]: Don't include config.h
11082         or stdbool.h, because they might not exist while configuring.
11083
11084         * lib/chdir-long.c: Include <fcntl.h>, for O_DIRECTORY.
11085         Don't include unistd.h or limits.h; not needed, since chdir-long.h
11086         does that for us.
11087         (O_DIRECTORY): Remove.
11088
11089 2006-08-31  Eric Blake  <ebb9@byu.net>
11090
11091         * gnulib-tool: Don't let emacs change spaces to TAB.
11092
11093 2006-08-31  Bruno Haible  <bruno@clisp.org>
11094
11095         * gnulib-tool: When calling func_import more than once, do it in a
11096         subshell.
11097         Reported by Eric Blake <ebb9@byu.net>.
11098
11099 2006-08-31  Bruno Haible  <bruno@clisp.org>
11100
11101         * gnulib-tool (nl): Remove variable.
11102         (sed_transform_lib_file): Use more robust test for config-h module.
11103         (func_import): Fix typo in 2006-08-25 patch.
11104
11105 2006-08-31  Bruno Haible  <bruno@clisp.org>
11106
11107         * gnulib-tool (func_emit_lib_Makefile_am): When --makefile-name was
11108         specified, augment Makefile.am variables instead of assigning them.
11109
11110 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
11111
11112         Work around a bug in both the Linux and SunOS 64-bit kernels:
11113         nanosleep mishandles sleeps for longer than 2**31 seconds.
11114         Problem reported by Frank v Waveren in
11115         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00298.html>.
11116         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Require gl_CLOCK_TIME.
11117         Check for nanosleep bug.
11118         (LIB_NANOSLEEP): Append clock_gettime library if needed.
11119
11120 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
11121
11122         Work around a bug in both the Linux and SunOS 64-bit kernels:
11123         nanosleep mishandles sleeps for longer than 2**31 seconds.
11124         Problem reported by Frank v Waveren in
11125         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00298.html>.
11126         * lib/nanosleep.c (BILLION): New constant.
11127         (getnow) [HAVE_BUG_BIG_NANOSLEEP]: New functions.
11128         (rpl_nanosleep) [HAVE_BUG_BIG_NANOSLEEP]: Completely new
11129         implementation.
11130
11131 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
11132
11133         * modules/nanosleep (Depends-on): Add gettime.
11134
11135 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
11136         and Simon Josefsson  <jas@extundo.com>
11137         and Oskar Liljeblad  <oskar@osk.mine.nu>
11138
11139         * MODULES.html.sh (Support for building documentation): Add gpl, lgpl.
11140         * gnulib-tool (func_import): New license type 'unmodifiable license
11141         text'.
11142         * modules/fdl: Use it.  Longer description.
11143         * module/gpl, module/lgpl: New files.
11144
11145 2006-08-30  Jim Meyering  <jim@meyering.net>
11146
11147         * lib/isapipe.c (isapipe): Rename local s/fd/fd_pair/ to avoid
11148         shadowing the parameter.
11149
11150 2006-08-29  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
11151
11152         Sync from Libtool:
11153
11154         2006-08-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
11155
11156         * lib/libltdl/argz.c: Use `#ifdef HAVE_CONFIG_H', to facilitate code
11157         sharing with gnulib.  Report by Eric Blake.
11158
11159 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
11160
11161         * modules/isapipe: New file.
11162         * MODULES.html.sh (File descriptor based Input/Output): Add isapipe.
11163
11164 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
11165
11166         * modules/configmake (Makefile.am): Add a comment, and omit
11167         the CONFIGMAKE_ prefix from generated macro names.  Suggested
11168         by Bruno Haible.
11169
11170 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
11171
11172         * m4/isapipe.m4: New file.
11173
11174 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
11175
11176         * lib/isapipe.c, lib/isapipe.h: New files.
11177
11178 2006-08-29  Jim Meyering  <jim@meyering.net>
11179
11180         * modules/configmake (Makefile.am): Make configmake.h depend on
11181         Makefile.  Otherwise, a stale configmake.h could hang around.
11182
11183 2006-08-29  Eric Blake  <ebb9@byu.net>
11184
11185         * lib/error.c (error_at_line, print_errno_message): Match libc, after
11186         resolution of upstream bug 3044.
11187
11188 2006-08-29  Bruno Haible  <bruno@clisp.org>
11189
11190         * modules/localcharset (Depends-on): Add configmake.
11191         (Makefile.am): Remove setting of LIBDIR through DEFS.
11192
11193 2006-08-29  Bruno Haible  <bruno@clisp.org>
11194
11195         * lib/localcharset.c: Include configmake.h in order to get LIBDIR
11196         defined.
11197
11198 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
11199
11200         * modules/fcntl: New file.
11201         * modules/chdir-safer (Depends-on): Add fcntl.
11202         * modules/fts: Likewise.
11203         * modules/mkdir-p: Likewise.
11204
11205         * modules/stdint (Makefile.am): Do not substitute ABSOLUTE_INTTYPES_H.
11206         This undoes the most recent change, since we're now addressing the
11207         problem in a different way.
11208
11209         * gnulib-tool (emit_lib_Makefile_am): Don't put $makefile_name
11210         into output, since the output might be called Makefile.am even
11211         if $makefile_name is something different.
11212         (func_import): Use $makefile_am rather than
11213         ${makefile_name-Makefile.am}, to fix a bug where makefile_name was
11214         empty.
11215
11216         * modules/inttypes (Files): Add m4/inttypes-h.m4.
11217
11218 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
11219
11220         * m4/inttypes.m4 (gl_INTTYPES_H): Move ABSOLUTE_INTTYPES_H code here...
11221         * m4/stdint.m4 (gl_STDINT_H): ... from here.  This undoes the most
11222         recent change to stdint.m4, since we're now addressing the problem in a
11223         different way.
11224
11225 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
11226
11227         * m4/fcntl_h.m4: New file.
11228
11229 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
11230
11231         * lib/fcntl_.h: New file.
11232         * lib/chdir-safer.c (O_DIRECTORY, O_NOFOLLOW): Remove, now that we have
11233         the fcntl module.
11234         * lib/dirchownmod.c: Likewise.
11235         * lib/fts.c: Likewise.
11236
11237         * lib/inttypes_.h [defined _GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H]:
11238         Include @ABSOLUTE_INTTYPES_H@ if available, but do nothing else.
11239         * lib/stdint_.h (_GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H): Define
11240         just before including <inttypes.h>, to avoid circular inclusion.
11241
11242 2006-08-28  Jim Meyering  <jim@meyering.net>
11243
11244         * doc/visibility.texi: Actually read and correct the grammar of the
11245         sentence affected by yesterday's change.
11246
11247 2006-08-28  Eric Blake  <ebb9@byu.net>
11248
11249         * modules/inttypes (Makefile.am): Fix sed error when inttypes.h
11250         needs wrapper.
11251
11252 2006-08-28  Eric Blake  <ebb9@byu.net>
11253
11254         * m4/inttypes.m4 (gl_INTTYPES_H): Fix missing #endif.
11255
11256 2006-08-28  Eric Blake  <ebb9@byu.net>
11257
11258         * m4/codeset.m4 (AM_LANGINFO_CODESET): Avoid compiler warning.
11259
11260 2006-08-28  Bruno Haible  <bruno@clisp.org>
11261
11262         * modules/c-strstr: New file, from GNU gettext.
11263         * MODULES.html.sh (String handling): Add c-strstr.
11264
11265 2006-08-28  Bruno Haible  <bruno@clisp.org>
11266
11267         * m4/inttypes.m4 (gl_INTTYPES_H): Don't test for the existence of SCNX*
11268         macros.
11269         Reported by Eric Blake.
11270
11271 2006-08-28  Bruno Haible  <bruno@clisp.org>
11272
11273         * lib/vasnprintf.c (EOVERFLOW): Remove definition.
11274         (VASNPRINTF): Return a string of length > INT_MAX without failing.
11275         * lib/vasprintf.c: Include errno.h, limits.h.
11276         (EOVERFLOW): New fallback definition.
11277         (vasprintf): Test here whether the string length is > INT_MAX.
11278         * lib/vsnprintf.c: Include errno.h, limits.h.
11279         (EOVERFLOW): New fallback definition.
11280         (vsnprintf): Fix bug when generated string was too long for the buffer.
11281         Test here whether the string length is > INT_MAX.
11282
11283 2006-08-28  Bruno Haible  <bruno@clisp.org>
11284
11285         * lib/inttypes_.h (SCNX*): Remove definitions.
11286         Reported by Eric Blake.
11287
11288 2006-08-28  Bruno Haible  <bruno@clisp.org>
11289
11290         * lib/c-strstr.h: New file, from GNU gettext.
11291         * lib/c-strstr.c: New file, from GNU gettext.
11292
11293 2006-08-28  Bruno Haible  <bruno@clisp.org>
11294
11295         * gnulib-tool: Reorder some statements.
11296
11297 2006-08-28  Bruno Haible  <bruno@clisp.org>
11298
11299         * gnulib-tool: New option --makefile-name.
11300         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am): Use
11301         $makefile_name.
11302         (func_import): Write $makefile_name to the cache file, and read it from
11303         there unless explicitly specified. Use $makefile_name as file name
11304         instead of Makefile.am. Adjust the recommendations accordingly.
11305
11306 2006-08-28  Bruno Haible  <bruno@clisp.org>
11307
11308         * gnulib-tool (func_verify_module): Check against misapplying patch.
11309
11310 2006-08-28  Bruno Haible  <bruno@clisp.org>
11311
11312         * gnulib-tool (func_relativize, func_relconcat): New functions.
11313         Give an error if --local-dir is given with --update.
11314         Remove trailing slashes from $local_gnulib_dir.
11315         (func_import): Store the relativized $local_gnulib_dir in
11316         gnulib-cache.m4, and read it from there if not specified explicitly.
11317
11318 2006-08-28  Bruno Haible  <bruno@clisp.org>
11319
11320         * gnulib-tool (func_get_tests_module): Don't assume that $gnulib_dir
11321         is the current directory. Respect also $local_gnulib_dir.
11322
11323 2006-08-28  Bruno Haible  <bruno@clisp.org>
11324             Simon Josefsson  <jas@extundo.com>
11325
11326         BeOS portability.
11327         * lib/getaddrinfo.c (PF_INET, PF_UNSPEC): New macros.
11328
11329 2006-08-27  Jim Meyering  <jim@meyering.net>
11330
11331         * doc/visibility.texi: Remove duplicate word: "pointer".
11332
11333 2006-08-26  Bruno Haible  <bruno@clisp.org>
11334
11335         * modules/inttypes (Files): Add lib/inttypes_.h, remove lib/inttypes.h.
11336         Add m4/inttypes.m4, remove m4/_inttypes_h.m4 and m4/include_next.m4.
11337         (Makefile.am): Create inttypes.h from inttypes_.h.
11338         * modules/stdint (Makefile.am): Substitute also ABSOLUTE_INTTYPES_H.
11339
11340         * modules/imaxabs: New file.
11341
11342         * modules/imaxdiv: New file.
11343
11344 2006-08-26  Bruno Haible  <bruno@clisp.org>
11345
11346         * m4/inttypes.m4: New file.
11347         * m4/_inttypes_h.m4: Remove file.
11348         * m4/inttypes-pri.m4 (gt_INTTYPES_PRI): Also AC_SUBST
11349         PRI_MACROS_BROKEN.
11350         * m4/stdint.m4 (gl_STDINT_H): Define also ABSOLUTE_INTTYPES_H.
11351
11352         * m4/imaxabs.m4: New file.
11353
11354         * m4/imaxdiv.m4: New file.
11355
11356 2006-08-26  Bruno Haible  <bruno@clisp.org>
11357
11358         * lib/inttypes_.h: New file.
11359         * lib/inttypes.h: Remove file.
11360         * lib/stdint_.h: Include <inttypes.h> through its absolute filename.
11361
11362         * lib/imaxabs.c: New file.
11363
11364         * lib/imaxdiv.c: New file.
11365
11366 2006-08-25  Paul Eggert  <eggert@cs.ucla.edu>
11367
11368         New config-h module, so that "make" output needn't be cluttered
11369         by -DHAVE_CONFIG_H.
11370         * MODULES.html.sh (Support for building libraries and executables):
11371         Add config-h.
11372         * modules/config-h: New file.
11373         * gnulib-tool (nl, sed_transform_lib_file): New vars.
11374         (func_import): Turn "#ifdef HAVE_CONFIG_H" to "#if 1" if
11375         the config-h module is used.
11376
11377         New configmake module, so that "make" output needn't be cluttered
11378         by fluff like '-DLIBDIR=\"/usr/local/lib\"'.
11379         * MODULES.html.sh (Support for building libraries and executables):
11380         Add configmake.
11381         * modules/configmake: New file.
11382
11383 2006-08-25  Paul Eggert  <eggert@cs.ucla.edu>
11384
11385         * m4/config-h.m4: New file.
11386
11387 2006-08-24  Paul Eggert  <eggert@cs.ucla.edu>
11388
11389         * config/srclist.txt: Add elisp-comp.
11390
11391 2006-08-24  Paul Eggert  <eggert@cs.ucla.edu>
11392
11393         * MODULES.html.sh (Support for building libraries and executables):
11394         Add elisp-comp.
11395         * build-aux/elisp-comp: New file.
11396         * modules/elisp-comp: New file.
11397
11398 2006-08-24  Bruno Haible  <bruno@clisp.org>
11399
11400         * gnulib-tool (func_create_testdir): Use non-default values of
11401         sourcebase and m4base.
11402
11403 2006-08-24  Bruno Haible  <bruno@clisp.org>
11404
11405         * MODULES.html.sh (Compatibility checks for POSIX:2001 functions: Fix
11406         HTML structure.
11407
11408 2006-08-23  Paul Eggert  <eggert@cs.ucla.edu>
11409
11410         * modules/openat (Depends-on): Add lchown.
11411
11412 2006-08-23  Bruno Haible  <bruno@clisp.org>
11413
11414         * gnulib-tool (func_import, func_create_testdir): Emit an invocation
11415         of gl_LOCK_EARLY instead of gl_LOCK.
11416
11417 2006-08-23  Bruno Haible  <bruno@clisp.org>
11418
11419         * m4/lock.m4 (gl_LOCK_BODY): Change the default value of gl_use_threads
11420         on OSF/1 to no.
11421         Reported by Stephen Cartwright <sgcartwr@ucalgary.ca>.
11422
11423 2006-08-23  Bruno Haible  <bruno@clisp.org>
11424
11425         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Don't consider BeOS statvfs
11426         as unusable.
11427
11428         * m4/lock.m4 (gl_LOCK_EARLY): Renamed from gl_LOCK.
11429         (gl_LOCK_BODY): Remove gl_PREREQ_LOCK invocation.
11430         (gl_LOCK): New macro.
11431
11432 2006-08-22  Simon Josefsson  <jas@extundo.com>
11433
11434         * modules/gc-md5 (Makefile.am): Need to add md5.h, after changes
11435         to md5 module.
11436
11437 2006-08-22  Simon Josefsson  <jas@extundo.com>
11438
11439         * MODULES.html.sh: Add "Support for maintaining and release
11440         projects".
11441
11442         * build-aux/gnupload: New file, from coreutils.
11443
11444 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
11445
11446         Avoid the need for AC_LIBSOURCES in m4 macros.
11447         * modules/arcfour (EXTRA_DIST): Add arcfour.h.
11448         * modules/arctwo (EXTRA_DIST): Add arctwo.h.
11449         * modules/check-version (EXTRA_DIST): Add check-version.h.
11450         * modules/crc (EXTRA_DIST): Add crc.h.
11451         * modules/des (EXTRA_DIST): Add des.h.
11452         * modules/gc (EXTRA_DIST): Add gc.h.
11453         * modules/getdelim (EXTRA_DIST): Add getdelim.h.
11454         * modules/getline (EXTRA_DIST): Add getline.h.
11455         * modules/getlogin_r (EXTRA_DIST): Add getlogin_r.h.
11456         * modules/hmac-md5 (EXTRA_DIST): Add hmac.h.
11457         * modules/hmac-sha1 (EXTRA_DIST): Add hmac.h.
11458         * modules/md2 (EXTRA_DIST): Add md2.h.
11459         * modules/md4 (EXTRA_DIST): Add md4.h.
11460         * modules/pagealign_alloc (EXTRA_DIST): Add pagealign_alloc.h.
11461         * modules/read-file (EXTRA_DIST): Add read-file.h.
11462         * modules/readline (EXTRA_DIST): Add readline.h.
11463         * modules/rijndael (EXTRA_DIST): Add rijndael-alg-fst.h,
11464         rijndael-api-fst.h.
11465
11466 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
11467
11468         * m4/rijndael.m4 (gl_ARCFOUR):
11469         * m4/arctwo.m4 (gl_ARCTWO):
11470         * m4/check-version.m4 (gl_CHECK_VERSION):
11471         * m4/crc.m4 (gl_CRC):
11472         * m4/des.m4 (gl_DES):
11473         * m4/gc-pbkdf2-sha1.m4 (gl_GC_PBKDF2_SHA1):
11474         * m4/gc.m4 (gl_GC):
11475         * m4/getdelim.m4 (gl_FUNC_GETDELIM):
11476         * m4/getline.m4 (gl_FUNC_GETLINE):
11477         * m4/getlogin_r.m4 (gl_GETLOGIN_R_SUBSTITUTE):
11478         * m4/hmac-md5.m4 (gl_HMAC_MD5):
11479         * m4/hmac-sha1.m4 (gl_HMAC_SHA1):
11480         * m4/md2.m4 (gl_MD2):
11481         * m4/md4.m4 (gl_MD4):
11482         * m4/pagealign_alloc.m4 (gl_PAGEALIGN_ALLOC):
11483         * m4/read-file.m4 (gl_FUNC_READ_FILE):
11484         * m4/readline.m4 (gl_FUNC_READLINE):
11485         * m4/rijndael.m4 (gl_RIJNDAEL):
11486         Don't use AC_LIBSOURCES; instead, rely on the files in ../modules/
11487         to get the necessary .h files and whatnot.
11488
11489 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
11490
11491         * config/srclist.txt: Remove gnupload, since coreutils now syncs from
11492         gnulib rather than the other way around.
11493         * config/srclistvars.sh (COREUTILS): Remove.
11494
11495 2006-08-22  Jim Meyering  <jim@meyering.net>
11496
11497         * modules/mkdir-p (Makefile.am): Fix typo: s/lib+SOURCES/lib_SOURCES/.
11498
11499         * modules/getpass-gnu (Makefile.am): Add getpass.h to EXTRA_DIST.
11500
11501 2006-08-22  Eric Blake  <ebb9@byu.net>
11502
11503         * modules/regexprops-generic: New file.
11504         * MODULES.html.sh (Support for building documentation): List it.
11505
11506 2006-08-22  Eric Blake  <ebb9@byu.net>
11507
11508         * m4/stdint_h.m4 (gl_AC_HEADER_STDINT_H): Avoid compiler warning.
11509         * m4/inttypes_h.m4 (gl_AC_HEADER_INTTYPES_H): Likewise.
11510         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Likewise.
11511         * m4/intmax_t.m4 (gt_AC_TYPE_INTMAX_T): Likewise.
11512
11513 2006-08-22  Bruno Haible  <bruno@clisp.org>
11514
11515         * gnulib-tool (func_emit_lib_Makefile_am): Don't treat lib_LIBRARIES
11516         and lib_LTLIBRARIES like the other lib_* variables.
11517
11518 2006-08-22  Bruno Haible  <bruno@clisp.org>
11519
11520         * build-aux/x-to-1.in: New file, from GNU gettext.
11521
11522 2006-08-22  Bruno Haible  <bruno@clisp.org>
11523
11524         * m4/readutmp.m4 (gl_READUTMP): Compile readutmp.c only if <utmp.h> or
11525         <utmpx.h> exists.
11526
11527 2006-08-22  Bruno Haible  <bruno@clisp.org>
11528
11529         * lib/readutmp.h: Skip most definitions if neither <utmp.h> nor
11530         <utmpx.h> exists.
11531
11532 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
11533
11534         BeOS portability.
11535         * lib/dirchownmod.c (dirchownmod): Don't use fchmod if it doesn't
11536         exist.
11537         Problem reported by Bruno Haible.
11538
11539 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
11540
11541         Avoid the need for AC_LIBSOURCES in m4 macros.
11542         * modules/acl (EXTRA_DIST): Add acl.h.
11543         * modules/argmatch (Files): Add m4/argmatch.m4.
11544         (configure.ac): Add gl_ARGMATCH.
11545         (EXTRA_DIST): Renamed from lib_SOURCES, for
11546         consistency with the other modules.  Remove argmatch.c.
11547         * modules/backupfile (EXTRA_DIST): Add backupfile.h.
11548         * modules/c-strtod (EXTRA_DIST): Add c-strtod.h.
11549         * modules/c-strtold (EXTRA_DIST): Add c-strtod.c, c-strtod.h.
11550         * modules/canonhost (EXTRA_DIST): Add c-canonhost.h.
11551         * modules/canonicalize (EXTRA_DIST): Add canonicalize.h.
11552         * modules/chdir-long (EXTRA_DIST): Add chdir-long.h.
11553         * modules/chdir-safer (EXTRA_DIST): Add chdir-safer.h.
11554         * modules/cloexec (EXTRA_DIST): Add cloexec.h.
11555         * modules/close-stream (EXTRA_DIST): Add close-stream.h.
11556         * modules/closeout (EXTRA_DIST): Add closeout.h.
11557         * modules/cycle-check (EXTRA_DIST): Add cycle-check.h.
11558         * modules/dev-ino (EXTRA_DIST): Add dev-ino.h.
11559         * modules/dirfd (EXTRA_DIST): Add dirfd.h.
11560         * modules/dirname (EXTRA_DIST): Renamed from lib_SOURCES.  Add
11561         dirname.h; remove basename.c and stripslash.c.
11562         * modules/exclude (EXTRA_DIST): Add exclude.h.
11563         * modules/exitfail (EXTRA_DIST): Add exitfail.h.
11564         * modules/fcntl-safer (EXTRA_DIST): Add fcntl-safer.h fcntl--.h.
11565         * modules/file-type (EXTRA_DIST): Add file-type.h.
11566         * modules/filemode (EXTRA_DIST): Add filemode.h.
11567         * modules/filenamecat (EXTRA_DIST): Add filenamecat.h.
11568         * modules/fopen-safer (EXTRA_DIST): Add stdio-safer.h stdio--.h.
11569         * modules/fpending (EXTRA_DIST): Add __fpending.h.
11570         * modules/fprintftime (EXTRA_DIST): Add fprintftime.h.
11571         * modules/fsusage (EXTRA_DIST): Add fsusage.h.
11572         * modules/fts (EXTRA_DIST): Add fts_.h fts-cycle.c.
11573         * modules/getcwd (EXTRA_DIST): Add getcwd.h.
11574         * modules/getdate (EXTRA_DIST): Add getdate.c.
11575         * modules/gethrxtime (EXTRA_DIST): Add gethrxtime.h xtime.h.
11576         * modules/getpagesize (EXTRA_DIST): Add getpagesize.h.
11577         * modules/getpass (EXTRA_DIST): Add getpass.h.
11578         * modules/glob (EXTRA_DIST): Add glob_.h glob-libc.h.
11579         * modules/group-member (EXTRA_DIST): Add group-member.h.
11580         * modules/hard-locale (EXTRA_DIST): Add hard-locale.h.
11581         * modules/hash (EXTRA_DIST): Add hash.h.
11582         * modules/human (EXTRA_DIST): Add human.h.
11583         * modules/inttypes (EXTRA_DIST): Add inttypes.h.
11584         * modules/lchmod (EXTRA_DIST): Add lchmod.h.
11585         * modules/lchown (EXTRA_DIST): Add lchown.h.
11586         * modules/long-options (EXTRA_DIST): Add long-options.h.
11587         * modules/lstat (EXTRA_DIST): Add lstat.h.
11588         * modules/md5 (EXTRA_DIST): Add memcasecmp.h.
11589         * modules/memcoll (EXTRA_DIST): Add memcoll.h.
11590         * modules/mempcpy (EXTRA_DIST): Add mempcpy.h.
11591         * modules/memrchr (EXTRA_DIST): Add memrchr.h.
11592         * modules/memxor (EXTRA_DIST): Add memxor.h.
11593         * modules/mkancesdirs (EXTRA_DIST): Add mkancesdirs.h.
11594         * modules/mkdir-p (EXTRA_DIST): Add modechange.h.
11595         * modules/mountlist (EXTRA_DIST): Add mountlist.h.
11596         * modules/openat (EXTRA_DIST): Add at-func.c openat.h openat-priv.h.
11597         * modules/pathmax (EXTRA_DIST): Add pathmax.h.
11598         * modules/physmem (EXTRA_DIST): Add physmem.h.
11599         * modules/posixtm (EXTRA_DIST): Add posixtm.h.
11600         * modules/posixver (EXTRA_DIST): Add posixver.h.
11601         * modules/quote (EXTRA_DIST): Add quote.h.
11602         * modules/quotearg (EXTRA_DIST): Add quotearg.h.
11603         * modules/readtokens (EXTRA_DIST): Add readtokens.h.
11604         * modules/readutmp (EXTRA_DIST): Add readutmp.h.
11605         * modules/regex (EXTRA_DIST): Add regcomp.c regex.h regex_internal.c
11606         regex_internal.h regexec.c.
11607         * modules/safe-read (EXTRA_DIST): Add safe-read.h.
11608         * modules/safe-write (EXTRA_DIST): Add safe-write.h.
11609         * modules/same (EXTRA_DIST): Add same.h.
11610         * modules/same-inode (EXTRA_DIST): Add same-inode.h.
11611         * modules/save-cwd (EXTRA_DIST): Add save-cwd.h.
11612         * modules/savedir (EXTRA_DIST): Add savedir.h.
11613         * modules/sha1 (EXTRA_DIST): Add sha1.h.
11614         * modules/sig2str (EXTRA_DIST): Add sig2str.h.
11615         * modules/stat-macros (EXTRA_DIST): Add stat-macros.h.
11616         * modules/stat-time (EXTRA_DIST): Add stat-time.h.
11617         * modules/stdlib-safer (EXTRA_DIST): Add stdlib-safer.h stdlib--.h.
11618         * modules/strdup (EXTRA_DIST): Add strdup.h.
11619         * modules/strftime (EXTRA_DIST): Add strftime.h.
11620         * modules/strndup (EXTRA_DIST): Add strndup.h.
11621         * modules/strnlen (EXTRA_DIST): Add strnlen.h.
11622         * modules/strverscmp (EXTRA_DIST): Add strverscmp.h.
11623         * modules/time_r (EXTRA_DIST): Add time_r.h.
11624         * modules/timespec (EXTRA_DIST): Add timespec.h.
11625         * modules/tmpfile-safer (EXTRA_DIST): Add stdio-safer.h stdio--.h.
11626         * modules/unistd-safer (EXTRA_DIST): Add unistd-safer.h unistd--.h.
11627         * modules/unlinkdir (EXTRA_DIST): Add unlinkdir.h.
11628         * modules/unlocked-io (EXTRA_DIST): Add unlocked-io.h.
11629         * modules/userspec (EXTRA_DIST): Add userspec.h.
11630         * modules/utimecmp (EXTRA_DIST): Add utimecmp.h.
11631         * modules/utimens (EXTRA_DIST): Add utimens.h.
11632         * modules/xalloc (EXTRA_DIST): Add xalloc.h.
11633         * modules/xgetcwd (EXTRA_DIST): Add xgetcwd.h.
11634         * modules/xnanosleep (EXTRA_DIST): Add xnanosleep.h.
11635         * modules/xreadlink (EXTRA_DIST): Add xreadlink.h.
11636         * modules/xstrtod (EXTRA_DIST): Add xstrtod.h.
11637         * modules/xstrtol (EXTRA_DIST): Add xstrtol.h.
11638         * modules/xstrtold (EXTRA_DIST): Add xstrtod.c xstrtod.h.
11639         * modules/yesno (EXTRA_DIST): Add yesno.h.
11640
11641 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
11642
11643         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Check for fchmod.
11644
11645         * m4/argmatch.m4: New file, from coreutils with AC_LIBSOURCES removed.
11646         * m4/dev-ino.m4, same-inode.m4: Remove.
11647
11648         * m4/_inttypes_h.m4 (gl_INTTYPES_H):
11649         * m4/acl.m4 (AC_FUNC_ACL):
11650         * m4/backupfile.m4 (gl_BACKUPFILE):
11651         * m4/c-strtod.m4 (gl_C99_STRTOLD):
11652         * m4/canon-host.m4 (gl_CANON_HOST):
11653         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME):
11654         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG):
11655         * m4/chdir-safer.m4 (gl_CHDIR_SAFER):
11656         * m4/cloexec.m4 (gl_CLOEXEC):
11657         * m4/close-stream.m4 (gl_CLOSE_STREAM):
11658         * m4/closeout.m4 (gl_CLOSEOUT):
11659         * m4/dirfd.m4 (gl_FUNC_DIRFD):
11660         * m4/dirname.m4 (gl_DIRNAME):
11661         * m4/exclude.m4 (gl_EXCLUDE):
11662         * m4/exitfail.m4 (gl_EXITFAIL):
11663         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER):
11664         * m4/file-type.m4 (gl_FILE_TYPE):
11665         * m4/filemode.m4 (gl_FILEMODE):
11666         * m4/filenamecat.m4 (gl_FILE_NAME_CONCAT):
11667         * m4/fpending.m4 (gl_FUNC_FPENDING):
11668         * m4/fprintftime.m4 (gl_FPRINTFTIME):
11669         * m4/fts.m4 (gl_FUNC_FTS):
11670         * m4/getcwd.m4 (gl_FUNC_GETCWD_NULL):
11671         * m4/getdate.m4 (gl_GETDATE):
11672         * m4/gethrxtime.m4 (gl_GETHRXTIME):
11673         * m4/getpagesize.m4 (gl_GETPAGESIZE):
11674         * m4/getpass.m4 (gl_FUNC_GETPASS):
11675         * m4/gettime.m4 (gl_GETTIME):
11676         * m4/getugroups.m4 (gl_GETUGROUPS):
11677         * m4/glob.m4 (gl_GLOB_SUBSTITUTE):
11678         * m4/group-member.m4 (gl_FUNC_GROUP_MEMBER):
11679         * m4/hard-locale.m4 (gl_HARD_LOCALE):
11680         * m4/hash.m4 (gl_HASH):
11681         * m4/idcache.m4 (gl_IDCACHE):
11682         * m4/lchmod.m4 (gl_FUNC_LCHMOD):
11683         * m4/lchown.m4 (gl_FUNC_LCHOWN):
11684         * m4/long-options.m4 (gl_LONG_OPTIONS):
11685         * m4/lstat.m4 (gl_FUNC_LSTAT):
11686         * m4/md5.m4 (gl_MD5):
11687         * m4/memcasecmp.m4 (gl_MEMCASECMP):
11688         * m4/memcoll.m4 (gl_MEMCOLL):
11689         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY):
11690         * m4/memrchr.m4 (gl_FUNC_MEMRCHR):
11691         * m4/memxor.m4 (gl_MEMXOR):
11692         * m4/mkancesdirs.m4 (gl_MKANCESDIRS):
11693         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS):
11694         * m4/modechange.m4 (gl_MODECHANGE):
11695         * m4/mountlist.m4 (gl_MOUNTLIST):
11696         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP):
11697         * m4/openat.m4 (gl_FUNC_OPENAT):
11698         * m4/pathmax.m4 (gl_PATHMAX):
11699         * m4/physmem.m4 (gl_PHYSMEM):
11700         * m4/posixtm.m4 (gl_POSIXTM):
11701         * m4/posixver.m4 (gl_POSIXVER):
11702         * m4/quote.m4 (gl_QUOTE):
11703         * m4/quotearg.m4 (gl_QUOTEARG):
11704         * m4/readtokens.m4 (gl_READTOKENS):
11705         * m4/readutmp.m4 (gl_READUTMP):
11706         * m4/regex.m4 (gl_REGEX):
11707         * m4/safe-read.m4 (gl_SAFE_READ):
11708         * m4/safe-write.m4 (gl_SAFE_WRITE):
11709         * m4/same.m4 (gl_SAME):
11710         * m4/save-cwd.m4 (gl_SAVE_CWD):
11711         * m4/savedir.m4 (gl_SAVEDIR):
11712         * m4/settime.m4 (gl_SETTIME):
11713         * m4/sha1.m4 (gl_SHA1):
11714         * m4/sig2str.m4 (gl_FUNC_SIG2STR):
11715         * m4/stat-macros.m4 (gl_STAT_MACROS):
11716         * m4/stat-time.m4 (gl_STAT_TIME):
11717         * m4/stdio-safer.m4 (gl_FOPEN_SAFER):
11718         * m4/stdlib-safer.m4 (gl_STDLIB_SAFER):
11719         * m4/strdup.m4 (gl_FUNC_STRDUP):
11720         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME):
11721         * m4/strndup.m4 (gl_FUNC_STRNDUP):
11722         * m4/strnlen.m4 (gl_FUNC_STRNLEN):
11723         * m4/strverscmp.m4 (gl_FUNC_STRVERSCMP):
11724         * m4/time_r.m4 (gl_TIME_R):
11725         * m4/timespec.m4 (gl_TIMESPEC):
11726         * m4/unistd-safer.m4 (gl_UNISTD_SAFER):
11727         * m4/unlinkdir.m4 (gl_UNLINKDIR):
11728         * m4/unlocked-io.m4 (gl_FUNC_GLIBC_UNLOCKED_IO):
11729         * m4/userspec.m4 (gl_USERSPEC):
11730         * m4/utimecmp.m4 (gl_UTIMECMP):
11731         * m4/utimens.m4 (gl_UTIMENS):
11732         * m4/xalloc.m4 (gl_XALLOC):
11733         * m4/xgetcwd.m4 (gl_XGETCWD):
11734         * m4/xnanosleep.m4 (gl_XNANOSLEEP):
11735         * m4/xreadlink.m4 (gl_XREADLINK):
11736         * m4/xstrtod.m4 (gl_XSTRTOD):
11737         * m4/yesno.m4 (gl_YESNO):
11738         Don't use AC_LIBSOURCES; instead, rely on the files in ../modules/
11739         to get the necessary .h files and whatnot.
11740
11741 2006-08-21  Mark D. Baushke  <mdb@gnu.org>
11742             Bruno Haible  <bruno@clisp.org>
11743
11744         * gnulib-tool (func_verify_module): Work around Sun's non-POSIX 1003.2
11745         /bin/sh understanding of '!' conditional negation.
11746
11747 2006-08-21  Jim Meyering  <jim@meyering.net>
11748
11749         * modules/openat (Depends-on): Really alphabetize.
11750
11751         * modules/acl (Depends-on): Add error and quote.
11752
11753         * check-module (find_included_lib_files): Add at-func.c to the
11754         ok-to-include-more-than-once white list.
11755
11756         * modules/openat (Depends-on): Add lstat.  Alphabetize.
11757
11758 2006-08-21  Bruno Haible  <bruno@clisp.org>
11759
11760         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
11761         Emit a pkgdata_DATA variable only if some snippets add contents to it.
11762         Reported by Martin Lambers <marlam@marlam.de>.
11763
11764 2006-08-21  Bruno Haible  <bruno@clisp.org>
11765
11766         * gnulib-tool (func_emit_lib_Makefile_am): If the snippets already
11767         specify an installation location, don't emit a noinst_LIBRARIES or
11768         noinst_LTLIBRARIES assignment.
11769
11770 2006-08-21  Bruno Haible  <bruno@clisp.org>
11771
11772         BeOS portability.
11773         * modules/mbchar (Include): Don't test HAVE_WCTYPE_H any more, since
11774         BeOS has mbrtowc() but no <wctype.h>.
11775
11776 2006-08-21  Bruno Haible  <bruno@clisp.org>
11777
11778         BeOS portability.
11779         * m4/mbchar.m4 (gl_MBCHAR): Compile mbchar.c also if <wctype.h> doesn't
11780         exist.
11781
11782 2006-08-21  Bruno Haible  <bruno@clisp.org>
11783
11784         BeOS portability.
11785         * lib/mbchar.h: Include <wctype.h> only if it exists.
11786
11787 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
11788
11789         Remove files that are no longer needed by their respective modules.
11790         * m4/obstack.m4: Remove.
11791         * m4/strerror_r.m4: Remove.
11792         * m4/uint32_t.m4: Remove.
11793         * m4/uintptr_t.m4: Remove.
11794         * m4/ullong_max.m4: Remove.
11795         * m4/xstrtoimax.m4: Remove.
11796         * m4/xstrtoumax.m4: Remove.
11797
11798         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Do not require
11799         gl_AC_TYPE_UINTMAX_T, gl_STRUCT_DEV_INO, or gl_SAME_INODE, since gnulib
11800         dependencies now capture this.
11801
11802         * m4/cycle-check.m4 (gl_CYCLE_CHECK):
11803         Do not use AC_LIBSOURCES, since gnulib modules now do this.
11804         * m4/fsusage.m4 (gl_FSUSAGE): Likewise.
11805         * m4/human.m4 (gl_HUMAN): Likewise.
11806         * m4/inttostr.m4 (gl_INTTOSTR): Likewise.
11807         * m4/xstrtol.m4 (gl_XSTRTOL): Likewise.
11808
11809         * m4/filemode.m4 (gl_FILEMODE): Require AC_STRUCT_ST_DM_MODE.
11810
11811         * m4/filemode.m4 (gl_PREREQ_FSUSAGE_EXTRA): Do not require
11812         gl_AC_TYPE_INTMAX_T or gl_AC_TYPE_UINTMAX_T, since we now require
11813         stdint.
11814         * m4/human.m4 (gl_HUMAN): Likewise.
11815         * m4/inttostr.m4 (gl_PREREQ_INTTOSTR): Likewise.
11816         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Likewise.
11817         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Likewise.
11818         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Likewise.
11819         * m4/xstrtol (gl_XSTRTOL): Likewise.
11820
11821         * m4/gethrxtime.m4 (gl_XTIME): gl_AC_TYPE_LONG_LONG ->
11822         AC_TYPE_LONG_LONG_INT.
11823         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Likewise.
11824         * m4/strtoll.m4 (gl_FUNC_STRTOLL): Likewise.
11825         * m4/strtoull.m4 (gl_FUNC_STRTOULL): Likewise, for unsigned long.
11826         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Likewise.
11827
11828         * m4/human.m4 (gl_HUMAN): Do not require AM_STDBOOL_H since we depend
11829         on stdbool.
11830
11831         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL_H, gl_PREREQ_XSTRTOL): Remove.
11832         (gl_PREREQ_XSTRTOUL): Remove.
11833
11834         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Check for hasmntopt.
11835
11836         * m4/posixver.m4: Fix comment since head -1 now works even in POSIX
11837         mode.
11838
11839 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
11840
11841         Add and change modules to make it easier for coreutils to use
11842         gnulib-tool.
11843         * modules/backupfile (Files): Remove m4/d-ino.m4.
11844         (Depends-on): Add d-ino.
11845         * modules/cycle-check (Depends-on): Add stdint.
11846         (lib_SOURCES): Add cycle-check.h.
11847         * modules/d-ino: New module.
11848         * modules/d-type: New module.
11849         * modules/error (Files): Remove m4/strerror_r.m4.
11850         * modules/filemode (Files): Add m4/st_dm_mode.m4.
11851         * modules/fsuage (Files): Remove m4/ulonglong.m4, m4/stdint_h.m4,
11852         m4/inttypes_h.m4, m4/uintmax_t.m4.
11853         (Depends-on): Add stdint.
11854         (lib_SOURCES): Add fsusage.h.
11855         * modules/getcwd (Files): Remove d-ino.m4.
11856         (Depends-on): Add d-ino.
11857         * modules/getndelim2 (Depends-on): Add stdint.
11858         * modules/glob (Files): Remove m4/d-type.m4.
11859         (Depends-on): Add d-type.
11860         * modules/host-os: New module.
11861         * modules/human (Files):  Remove m4/ulonglong.m4, m4/stdint_h.m4,
11862         m4/inttypes_h.m4, m4/uintmax_t.m4.
11863         * Depends-on: Add stdint.
11864         (lib_SOURCES): Add human.h.
11865         * modules/inttostr (Files): Remove m4/intmax_t.m4,
11866         m4/inttostr.m4, m4/inttypes_h.m4, m4/longlong.m4, m4/stdint_h.m4,
11867         m4/uintmax_t.m4, m4/ulonglong.m4.
11868         (Depends-on): Add stdint.
11869         (EXTRA_DIST): Add inttostr.h.
11870         * modules/lchmod: New module.
11871         * modules/link-follow: New module.
11872         * modules/mkdir-p (Files): Remove lib/lchmod.h, m4/lchmod.m4.
11873         (Depends-on): Add lchmod.
11874         * modules/mkstemp (Files): Remove m4/ulonglong.m4,
11875         m4/stdint_h.m4, m4/inttypes_h.m4, m4/uintmax_t.m4.
11876         (Depends-on): Add stdint.
11877         * modules/obstack (Files): Remove m4/inttypes_h.m4, m4/obstack.m4,
11878         m4/stdint_h.m4, m4/uintmax_t.m4, m4/ulonglong.m4.
11879         (Depends-on): Add stdint.
11880         (configure.ac): Change gl_OBSTACK to AC_FUNC_OBSTACK.
11881         * modules/perl: New module.
11882         * modules/regex (Depends-on): Add stdint.
11883         * modules/rmdir-errno: New module.
11884         * modules/strtoimax (Files): Remove m4/stdint_h.m4, m4/inttypes_h.m4,
11885         m4/intmax_t.m4.
11886         (Depends-on): Add stdint.
11887         * modules/strtoumax (Files): Remove m4/stdint_h.m4, m4/inttypes_h.m4,
11888         m4/uintmax_t.m4.
11889         (Depends-on): Add stdint.
11890         * modules/unlink-busy: New module.
11891         * modules/utimecmp (Depends-on): Add stdint.
11892         * modules/uptime: New module.
11893         * modules/winsz-ioctl: New module.
11894         * modules/winsz-termios: New module.
11895         * modules/xnanosleep (Depends-on): Add nanosleep.
11896         * modules/ullong_max: Remove.
11897         * modules/xstrtoimax (Files): Remove m4/xstrtoimax.m4.
11898         (configure.ac): Remove gl_XSTRTOIMAX; no action needed now.
11899         * modules/xstrtol (Files): Remove m4/ulonglong.m4, m4/longlong.m4,
11900         m4/stdint_h.m4, m4/inttypes_h.m4, m4/uintmax_t.m4, m4/intmax_t.m4.
11901         (Depends-on): Add inttypes.
11902         (lib_SOURCES): Add xstrtol.h.
11903         * modules/xstrtoumax (Files): Remove m4/xstrtoumax.m4.
11904         (configure.ac): Remove gl_XSTRTOUMAX; no action needed now.
11905         * MODULES.html.sh: Move 'assert' into the assert section.
11906         Move 'dummy' into the linking section.
11907         Remove ullong_max.
11908         Add section for compatibility checks for POSIX:2001 functions,
11909         and put d-ino, d-type, link-follow, rmdir-errno, unlink-busy,
11910         winsz-ioctl, and winsz-termios into it.
11911         Add lchmod.
11912         Add top-level Misc section and put host-os, perl, and uptime
11913         into it.
11914
11915 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
11916
11917         * lib/cycle-check.h: Include <stdint.h> unconditionally, since we
11918         now assume the stdint module.  Do not include inttypes.h.
11919         * lib/fsusage.h: Likewise.
11920         * lib/getndelim2.c: Likewise.
11921         * lib/human.h: Likewise.
11922         * lib/inttostr.h: Likewise.
11923         * lib/obstack.c: Likewise.
11924         * lib/regex_internal.h: Likewise.
11925         * lib/tempname.c: Likewise.
11926         * lib/utimecmp.c: Likewise.
11927         * lib/xstrtol.h: Likewise.
11928
11929         * lib/stat_.h: Fix typo: HAVE_FUNC_LSTAT -> HAVE_LSTAT.
11930
11931         * lib/strtoimax.c: Adjust to macro name changes in Autoconf,
11932         e.g., HAVE_LONG_LONG -> HAVE_LONG_LONG_INT.
11933         * lib/xtime.h: Likewise.
11934
11935 2006-08-19  Paul Eggert  <eggert@cs.ucla.edu>
11936
11937         * modules/openat (Files): Add lib/fchmodat.c.
11938         Fixes problem reported by Jay Youngman.
11939
11940 2006-08-19  Paul Eggert  <eggert@cs.ucla.edu>
11941
11942         * lib/fchmodat.c: New file, from coreutils.  This was inadvertently
11943         omitted in the 2006-08-17 update.  Problem reported by Jay Youngman.
11944
11945 2006-08-18  Paul Eggert  <eggert@cs.ucla.edu>
11946             Bruno Haible  <bruno@clisp.org>
11947
11948         * m4/bison-i18n.m4 (BISON_I18N): Also handle the case where yacc exists
11949         and is a script that invokes bison. Tighten the code. Add comments.
11950
11951 2006-08-18  Jim Meyering  <jim@meyering.net>
11952
11953         * m4/gethrxtime.m4 (gl_PREREQ_GETHRXTIME): Also check for
11954         CLOCK_REALTIME, since gethrxtime may revert to using clock_gettime via
11955         gettime.c.  Gabor Z. Papp reported that gethrxtime-using programs
11956         failed to link due to unresolved clock_gettime on a linux-2.4.x system.
11957
11958 2006-08-18  Bruno Haible  <bruno@clisp.org>
11959
11960         * modules/bison-i18n: New file.
11961         * MODULES.html.sh (Internationalization functions): Add it.
11962
11963 2006-08-18  Bruno Haible  <bruno@clisp.org>
11964
11965         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Also check for
11966         sys/statvfs.h. When getmntinfo was found, check its declaration and
11967         set either MOUNTED_GETMNTINFO or MOUNTED_GETMNTINFO2 depending on it.
11968
11969 2006-08-18  Bruno Haible  <bruno@clisp.org>
11970
11971         * m4/bison-i18n.m4: New file, from bison.
11972
11973 2006-08-18  Bruno Haible  <bruno@clisp.org>
11974
11975         * lib/mountlist.c [MOUNTED_GETMNTINFO2]: Include sys/statvfs.h.
11976         (ME_DUMMY): Treat "kernfs" as a dummy.
11977         (read_file_system_list) [MOUNTED_GETMNTINFO2]: Implement.
11978
11979 2006-08-17  Paul Eggert  <eggert@cs.ucla.edu>
11980
11981         Update from coreutils.
11982
11983         2006-08-15  Jim Meyering  <jim@meyering.net>
11984
11985         * m4/openat.m4 (gl_FUNC_OPENAT): Add at-func.c via AC_LIBSOURCES.
11986
11987         2006-01-17  Jim Meyering  <jim@meyering.net>
11988
11989         * m4/fts.m4 (gl_FUNC_FTS_CORE): Depend on gl_FUNC_OPENAT.
11990
11991         2006-01-11  Jim Meyering  <jim@meyering.net>
11992
11993         * m4/openat.m4 (gl_FUNC_OPENAT): Require and compile fchmodat.c.
11994         Check for the lchmod function.
11995
11996 2006-08-17  Paul Eggert  <eggert@cs.ucla.edu>
11997
11998         Update from coreutils.
11999
12000         * lib/__fpending.h: Add copyright notice.
12001         * lib/fprintftime.h: Likewise.
12002         * lib/savedir.c: Use (C) in copyright notice.
12003         * lib/savedir.h: Likewise.
12004
12005         2006-08-15  Jim Meyering  <jim@meyering.net>
12006
12007         * lib/at-func.c: New file, with the logic of all emulated at-functions.
12008         * lib/openat-priv.h: Include <errno.h> and define ENOSYS,
12009         in support of the EXPECTED_ERRNO macro.
12010         * lib/openat.c (fstatat, unlinkat, fchownat): Remove function
12011         definitions.  Instead, define the appropriate symbols and include
12012         "at-func.c".
12013         * lib/mkdirat.c (mkdirat): Likewise.
12014         * lib/fchmodat.c (fchmodat): Likewise.
12015         (ENOSYS): Remove definition.
12016         * lib/openat.c: Don't include <errno.h>, now that "openat-priv.h" does
12017         it.  Don't include "unistd--.h" -- it wasn't ever used.
12018
12019         2006-01-17  Jim Meyering  <jim@meyering.net>
12020
12021         Rewrite fts.c not to change the current working directory,
12022         by using openat, fstatat, fdopendir, etc..
12023
12024         * lib/fts.c [! _LIBC]: Include "openat.h" and "unistd--.h".
12025         (HAVE_OPENAT_SUPPORT): Define.
12026         [_LIBC] (fchdir): Don't undef or define; no longer used.
12027         (FCHDIR): Define in terms of cwd_advance_fd rather than fchdir.
12028         Now, this `function' always succeeds, and consumes its file descriptor
12029         parameter -- so callers must not close such FDs.  Update callers.
12030         (diropen_fd, opendirat, cwd_advance_fd): New functions.
12031         (diropen): Add parameter, SP.  Adjust all callers.
12032         Implement using diropen_fd, rather than open.
12033         (fts_open): Initialize new member, fts_cwd_fd.
12034         Remove fts_rft-setting code.
12035         (fts_close): Close fts_cwd_fd, if necessary.
12036         (__opendir2): Define in terms of opendir or opendirat,
12037         depending on whether the FST_NOCHDIR flag is set.
12038         (fts_build): Since fts_safe_changedir consumes its FD, and since
12039         this code must do `closedir(dirp)', dup the dirfd(dirp) argument,
12040         and close the dup'd file descriptor upon failure.
12041         (fts_stat): Use fstatat(...AT_SYMLINK_NOFOLLOW) in place of lstat.
12042         (fts_safe_changedir): Tweak semantics to reflect that this function
12043         now calls cwd_advance_fd and hence consumes its FD argument.
12044         * lib/fts_.h [struct FTS] (fts_cwd_fd): New member.
12045         [struct FTS] (fts_rft): Remove now-unused member.
12046         [struct FTS] (fts_cycle.state): Improve comment.
12047
12048         * lib/openat.c (openat_needs_fchdir): New function.
12049         * lib/openat.h (openat_needs_fchdir): Declare it.
12050
12051 2006-08-16  Paul Eggert  <eggert@cs.ucla.edu>
12052
12053         * lib/memcoll.c (memcoll): Set errno = 0 in the shortcut case, too.
12054         Problem and fix reported by Pádraig Brady in
12055         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00099.html>.
12056
12057 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
12058
12059         * modules/cycle-check (configure.ac): Add gl_CYCLE_CHECK.
12060
12061 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
12062
12063         * lib/memcoll.c (memcoll): Optimize for the common case where the
12064         arguments are bytewise equal.
12065
12066 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
12067
12068         * doc/regexprops-generic.texi: Add a copyright notice.
12069
12070 2006-08-15  Bruno Haible  <bruno@clisp.org>
12071
12072         * modules/tmpdir (License): Change to LGPL.
12073
12074 2006-08-15  Bruno Haible  <bruno@clisp.org>
12075
12076         * gnulib-tool (func_all_modules, func_verify_module): COPYING is not a
12077         module.
12078
12079 2006-08-14  Simon Josefsson  <jas@extundo.com>
12080
12081         * config/srclist.txt: Add gnupload.
12082
12083 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
12084
12085         Change copyright notice from LGPL 2 to GPL 2, since that's the
12086         standard form used in the gnulib repository.
12087         * tests/test-lock.c: Likewise.
12088         * tests/test-stdint.c: Likewise.
12089         * tests/test-tls.c: Likewise.
12090
12091         * users.txt: Add bison, diffutils, libprelude, prelude-lml,
12092         prelude-manager.  User shorter URLs for GNU projects, without '?'.
12093         Add copyright notice.
12094
12095         * check-module: Add copyright notice.  Output a copyright
12096         notice if "--version" is specified.
12097         * modules/COPYING: New file.
12098         * tests/test-getaddrinfo.c: Add copyright notice.
12099         * tests/test-verify.c: Likewise.
12100
12101 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
12102
12103         Change copyright notice from LGPL 2 to GPL 2, since that's the
12104         standard form used in the gnulib repository.
12105         * lib/lock.c: LGPL -> GPL.
12106         * lib/lock.h: Likewise.
12107         * lib/strnlen1.c: Likewise.
12108         * lib/strnlen1.h: Likewise.
12109         * lib/tls.c: Likewise.
12110         * lib/tls.h: Likewise.
12111         * lib/tmpdir.c: Likewise.
12112
12113         * lib/TODO: Remove; this belongs only in coreutils.
12114
12115 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
12116
12117         Add copyright notices to long-enough files that lack them, since
12118         otherwise the files aren't clearly free.  Use the same notice that
12119         getdate.texi already uses.
12120         * doc/alloca-opt.texi: Add copyright notice.
12121         * doc/alloca.texi: Likewise.
12122         * doc/ctime.texi: Likewise.
12123         * doc/functions.texi: Likewise.
12124         * doc/gcd.texi: Likewise.
12125         * doc/gnulib-tool.texi: Likewise.
12126         * doc/inet_ntoa.texi: Likewise.
12127         * doc/visibility.texi: Likewise.
12128
12129         * doc/getdate.texi: Update FDL version from 1.1 to 1.2.
12130         * doc/quote.texi: Add copyright notice.
12131
12132         * doc/solaris-versions: Add SunOS 5.10, SunOS 1.x, SunOS 4.0, SunOS
12133         4.0.x, SunOS 4.1.1.1, SunOS 4.1.1_U1, SunOS 4.1.3B.  SunOS 4.1.3
12134         was Solaris 1.1A.  Remove space before B in Solaris 1.1.1B.
12135         Mention SunOS 5.11.  Mention that everything before SunOS 5.7
12136         is now obsolete, and give a pointer to the Sun list.
12137         Add copyright notice.
12138
12139 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
12140
12141         * config/srclistvars.sh: Add copyright notice.
12142
12143 2006-08-14  Eric Blake  <ebb9@byu.net>
12144
12145         Import the following change from libc:
12146
12147         2006-08-12  Ulrich Drepper  <drepper@redhat.com>
12148
12149         Upstream bug 2997.
12150         * lib/misc/error.c: Add space between program name and message if file
12151         name is missing.
12152
12153 2006-08-12  Karl Berry  <karl@gnu.org>
12154
12155         * config/srclist.txt (ssize_t.m4, sig_atomic_t.m4, signalblocking.m4):
12156         remove, these originate in gnulib now.
12157
12158 2006-08-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12159
12160         * doc/Makefile (standards.info standards.html standards.dvi):
12161         Also depend on make-stds.texi.
12162
12163 2006-08-11  Paul Eggert  <eggert@cs.ucla.edu>
12164
12165         * lib/pipe-safer.c (pipe_safer): Fix misspelling: HAVE_FUNC_PIPE ->
12166         HAVE_PIPE.  Fix a file descriptor leak when fd_safer fails.
12167
12168         * lib/regex_internal.c (re_string_skip_chars): Don't assume WEOF fits
12169         in wchar_t.  Problem reported by Eric Blake.
12170
12171         * lib/snprintf.c (snprintf): memcpy LEN bytes, not SIZE - 1, when
12172         LEN is smaller than SIZE.  Suggested by Bruno Haible.
12173         Also, help the compiler to keep LEN in a register.
12174
12175 2006-08-11  Eric Blake  <ebb9@byu.net>
12176
12177         * users.txt: Sort.  Add tar.
12178
12179 2006-08-11  Bruno Haible  <bruno@clisp.org>
12180
12181         * users.txt: New file.
12182
12183 2006-08-11  Bruno Haible  <bruno@clisp.org>
12184
12185         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Include <stdio.h> and <time.h>
12186         before <wchar.h>. Needed for OSF/1 and BSD/OS.
12187
12188 2006-08-10  Paul Eggert  <eggert@cs.ucla.edu>
12189
12190         * modules/snprintf (Depends-on): Remove minmax.
12191         (Maintainer): Add self and Bruno.
12192
12193 2006-08-10  Paul Eggert  <eggert@cs.ucla.edu>
12194
12195         * lib/.cppi-disable: Add snprintf.h, socket_.h.
12196         * lib/snprintf.c: Include <errno.h> and <limits.h>.
12197         (EOVERFLOW): Define if the system does not.
12198         Do not include "minmax.h"; it wasn't used.
12199         (snprintf): Don't assume size_t promotes to an unsigned type.
12200         Fix bug when generated string was too long for the buffer: the
12201         buffer's contents are supposed to be the initial prefix of the
12202         output.  Don't assume vasnprintf returns EOVERFLOW if the size
12203         exceeds INT_MAX; do the check ourselves.
12204
12205         Import the following changes from libc:
12206
12207         2006-06-02  Jakub Jelinek  <jakub@redhat.com>
12208
12209         * lib/posix/regex_internal.c (re_string_skip_chars): If no character
12210         has been converted at all, set *last_wc to WEOF.  If mbrtowc failed,
12211         set wc to the byte which couldn't be converted.
12212         (re_string_reconstruct): Don't clear valid_raw_len before calling
12213         re_string_skip_chars.  If wc is WEOF after re_string_skip_chars, set
12214         tip_context using re_string_context_at.
12215
12216         2006-05-02  Ulrich Drepper  <drepper@redhat.com>
12217
12218         * lib/posix/regex.h: g++ still cannot handled [restrict].
12219
12220         2006-04-21  Ulrich Drepper  <drepper@redhat.com>
12221
12222         * lib/posix/regex.h: Remove special handling for VMS.
12223
12224 2006-08-10  Jim Meyering  <jim@meyering.net>
12225
12226         * modules/same-inode: New module.
12227         * modules/dev-ino: New module.
12228         * modules/cycle-check: Depend on these modules, rather than simply
12229         including their .h files.
12230         (Makefile.am): Don't list cycle-check.[ch] here, now that they're
12231         required via m4/cycle-check.m4.
12232         * modules/same: Depend on new same-inode module, rather than
12233         including same-inode.h.
12234         * modules/chdir-safer: New file.
12235
12236         * modules/chown (Depends-on): Add stat-macros.
12237
12238 2006-08-10  Jim Meyering  <jim@meyering.net>
12239
12240         * m4/cycle-check.m4: New file.
12241         Require gl_STRUCT_DEV_INO and gl_SAME_INODE.
12242         * m4/dev-ino.m4, m4/same-inode.m4: New files.
12243
12244 2006-08-10  Eric Blake  <ebb9@byu.net>
12245
12246         * modules/verror (Depends-on): Remove bogus gl_VERROR that snuck
12247         in from original proposal.
12248
12249 2006-08-10  Eric Blake  <ebb9@byu.net>
12250         and Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
12251
12252         * gnulib-tool (func_import): Detect unexpanded macros in gnulib
12253         namespace.
12254
12255 2006-08-10  Bruno Haible  <bruno@clisp.org>
12256
12257         * gnulib-tool (func_create_testdir): Detect unexpanded macros here
12258         as well.
12259
12260 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
12261
12262         Sync from coreutils.
12263
12264         2006-07-19  Mike Frysinger  <vapier@gentoo.org>
12265
12266         * lib/mountlist.c [ME_REMOTE]: Filter out cifs.
12267         Reported by Toralf Förster in <http://bugs.gentoo.org/141012>.
12268
12269 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
12270
12271         * modules/restrict: Remove; no longer needed now that we assume
12272         Autoconf 2.59 or later.
12273         * MODULES.html.sh: Remove 'restrict'.
12274         * modules/argp (Depends-on): Remove 'restrict'.
12275         * modules/base64 (Depends-on): Likewise.
12276         * modules/gc (Depends-on): Likewise.
12277         * modules/getaddrinfo (Depends-on): Likewise.
12278         * modules/glob (Depends-on): Likewise.
12279         * modules/inet_ntop (Depends-on): Likewise.
12280         * modules/inet_pton (Depends-on): Likewise.
12281         * modules/memxor (Depends-on): Likewise.
12282         * modules/regex (Depends-on): Likewise.
12283         * modules/strtok_r (Depends-on): Likewise.
12284         * modules/time_r (Depends-on): Likewise.
12285
12286 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
12287
12288         * m4/argp.m4 (gl_ARGP): Require AC_C_RESTRICT.
12289         * m4/gc.m4 (gl_PREREQ_GC): Likewise.
12290         * m4/glob.m4 (gl_PREREQ_GLOB): Likewise.
12291         * m4/inet_ntop.m4 (gl_PREREQ_INET_NTOP): Likewise.
12292         * m4/inet_pton.m4 (gl_PREREQ_INET_PTON): Likewise.
12293         * m4/memxor.m4 (gl_MEMXOR): Likewise.
12294         * m4/restrict.m4: Remove; no longer needed.  All remaining uses of
12295         gl_C_RESTRICT replaced by AC_C_RESTRICT.
12296
12297         Merge from coreutils.
12298         * m4/regex.m4 (gl_PREREQ_REGEX): Require AC_C_RESTRICT, not
12299         gl_C_RESTRICT, now that we assume Autoconf 2.59 or later.
12300         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Likewise.
12301         * m4/time_r.m4 (gl_TIME_R): Likewise.
12302
12303 2006-08-09  Karl Berry  <karl@gnu.org>
12304
12305         * config/srclist.txt: no more gettext-tools, per Bruno.
12306
12307 2006-08-08  Eric Blake  <ebb9@byu.net>
12308
12309         * modules/verror: New module.
12310         * MODULES.html.sh: Document it.
12311
12312 2006-08-08  Eric Blake  <ebb9@byu.net>
12313
12314         * lib/verror.h, lib/verror.c: New files.
12315
12316 2006-08-08  Eric Blake  <ebb9@byu.net>
12317
12318         * lib/verror.c (verror_at_line): Work around glibc bug 2997, so that
12319         verror_at_line output complies with GNU Coding Standards even when
12320         file is NULL.
12321
12322 2006-08-07  Bruno Haible  <bruno@clisp.org>
12323
12324         * lib/allocsa.h (sa_alignof) [_AIX]: Also consider 'long long' in newer
12325         versions of AIX.
12326         Reported by Ralf Wildenhues.
12327
12328 2006-08-07  Bruno Haible  <bruno@clisp.org>
12329
12330         * gnulib-tool (func_create_testdir): Wrap the set of autoconf snippets
12331         in an AC_DEFUN. Needed so that the autoconf snippets can use
12332         AC_REQUIRE.
12333
12334 2006-08-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12335
12336         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
12337         Initialize pkgdata_DATA.
12338         * modules/javaversion (Makefile.am): Add to pkgdata_DATA, rather than
12339         overriding it.
12340
12341 2006-08-06  Eric Blake  <ebb9@byu.net>
12342
12343         * lib/error.h: Fold in some upstream changes from glibc.
12344         * lib/error.c: Likewise.
12345
12346 2006-08-04  Bruno Haible  <bruno@clisp.org>
12347
12348         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
12349         Make the mostlyclean-local rule depend on mostlyclean-generic.
12350         Reported by Jim Meyering. Solution suggested by Ralf Wildenhues.
12351
12352 2006-07-31  Bruno Haible  <bruno@clisp.org>
12353
12354         * m4/localcharset.m4 (gl_LOCALCHARSET): Remove tests for <stddef.h>,
12355         <stdlib.h>, <string.h>.
12356
12357 2006-07-30  Bruno Haible  <bruno@clisp.org>
12358
12359         * modules/readlink (License): Change to LGPL.
12360
12361 2006-07-30  Bruno Haible  <bruno@clisp.org>
12362
12363         * modules/javaversion (Makefile.am): Distribute javaversion.java and
12364         javaversion.class. Also install javaversion.class in $(pkgdatadir) and
12365         set PKGDATADIR to point to it.
12366
12367 2006-07-30  Bruno Haible  <bruno@clisp.org>
12368
12369         * modules/csharpexec (configure.ac): Comment out macro invocation.
12370         * modules/javaexec (configure.ac): Likewise.
12371         * modules/javacomp-script (configure.ac): Likewise.
12372
12373         * modules/csharpcomp-script (configure.ac): Use AC_REQUIRE.
12374
12375 2006-07-30  Bruno Haible  <bruno@clisp.org>
12376
12377         * modules/clean-temp (Depends-on): Add linkedhash-list, remove
12378         linked-list.
12379
12380 2006-07-30  Bruno Haible  <bruno@clisp.org>
12381
12382         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Assume <string.h> exists.
12383
12384 2006-07-30  Bruno Haible  <bruno@clisp.org>
12385
12386         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
12387         Initialize MOSTLYCLEANFILES to core and *.stackdump, so that core dumps
12388         get removed.
12389
12390 2006-07-29  Bruno Haible  <bruno@clisp.org>
12391
12392         Make it possible for gnulib-tool to work with locally modified or
12393         augmented gnulib repositories.
12394         * gnulib-tool (func_usage): Document --local-dir option.
12395         (local_gnulib_dir): New variable.
12396         Handle --local-dir option.
12397         (func_lookup_file): New function.
12398         (func_all_modules, func_verify_module): Look also in $local_gnulib_dir.
12399         (func_get_description, func_get_filelist, func_get_description,
12400         func_get_filelist, func_get_dependencies, func_get_autoconf_snippet,
12401         func_get_automake_snippet, func_get_include_directive,
12402         func_get_license, func_get_maintainer): Use func_lookup_file.
12403         (func_import, func_create_testdir): Use func_lookup_file.
12404
12405 2006-07-29  Bruno Haible  <bruno@clisp.org>
12406
12407         * modules/setenv (Depends-on): Add unistd.
12408
12409 2006-07-29  Bruno Haible  <bruno@clisp.org>
12410
12411         * lib/setenv.c: Undo unintended modification done on 2006-02-27.
12412
12413 2006-07-29  Bruno Haible  <bruno@clisp.org>
12414
12415         * lib/localcharset.c: Assume <stddef.h>, <stdlib.h>, <string.h> exist.
12416
12417 2006-07-29  Bruno Haible  <bruno@clisp.org>
12418
12419         * gnulib-tool (import, update): If there is no Makefile.am, look at
12420         aclocal.m4, instead of bailing out.
12421
12422 2006-07-29  Bruno Haible  <bruno@clisp.org>
12423
12424         * gnulib-tool (func_usage): Revert most of the 2006-07-15 change.
12425         Categorize the options by when they are useful.
12426
12427 2006-07-29  Bruno Haible  <bruno@clisp.org>
12428
12429         * gnulib-tool (func_usage): Document option --no-libtool.
12430         Handle option --no-libtool.
12431         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am): Update
12432         for changed semantics of $libtool variable.
12433         (func_import): Likewise. If libtool is not used, show this through
12434         an option --no-libtool.
12435         (func_create_testdir): Update.
12436
12437 2006-07-29  Bruno Haible  <bruno@clisp.org>
12438
12439         * gnulib-tool (func_import): Extend error message about missing
12440         --doc-base.
12441
12442 2006-07-29  Bruno Haible  <bruno@clisp.org>
12443
12444         * gnulib-tool (func_import): Don't create the $docbase directory if
12445         there is no file to store there.
12446
12447 2006-07-29  Bruno Haible  <bruno@clisp.org>
12448
12449         * gnulib-tool (autoconf_minversion): If a --dir option is given and
12450         relevant, look for configure.ac there, not in the current directory.
12451         Also use a simple search for AC_PREREQ, not "autoconf --trace".
12452
12453 2006-07-29  Bruno Haible  <bruno@clisp.org>
12454
12455         * gnulib-tool (SORT): New variable.
12456         (func_usage): Undocument --assume-autoconf option.
12457         Remove --assume-autoconf option handling.
12458         (autoconf_minversion): Determine from the contents of configure.ac.
12459         (func_import): Remove autoconf_minversion handling.
12460         Suggested by Eric Blake.
12461
12462 2006-07-29  Bruno Haible  <bruno@clisp.org>
12463
12464         * doc/gnulib-tool.texi (gl_LIBTOOL): Mention --no-libtool option.
12465
12466 2006-07-29  Bruno Haible  <bruno@clisp.org>
12467
12468         * config/srclist.txt (*setenv.[ch]): Remove rules.
12469
12470 2006-07-28  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
12471
12472         * m4/inet_pton.m4, inet_ntop.m4: Check for netinet/in.h too.
12473
12474 2006-07-28  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
12475
12476         * lib/inet_ntop.h, inet_pton.h: Need to include netinet/in.h before
12477         arpa/inet.h.
12478
12479 2006-07-28  Simon Josefsson  <jas@extundo.com>
12480
12481         * modules/inet_ntop (Depends-on): Depend on arpa_inet.
12482         * modules/inet_pton (Depends-on): Likewise.
12483
12484 2006-07-28  Simon Josefsson  <jas@extundo.com>
12485
12486         * m4/netinet_in_h.m4: New file.
12487
12488 2006-07-28  Simon Josefsson  <jas@extundo.com>
12489
12490         * lib/inet_ntop.h, inet_pton.h: No need to guard netinet/in.h
12491         #include's.
12492
12493 2006-07-28  Simon Josefsson  <jas@extundo.com>
12494
12495         * lib/inet_ntop.h, inet_pton.h: No need to guard arpa/inet.h
12496         #include's.
12497
12498 2006-07-28  Paul Eggert  <eggert@cs.ucla.edu>
12499
12500         * lib/modechange.c (mode_compile): Numeric modes now affect setuid and
12501         setgid on directories only if they set these bits.
12502         * lib/modechange.h: Remove obsolete comment about masks.
12503
12504 2006-07-28  Eric Blake  <ebb9@byu.net>
12505
12506         * lib/regex_internal.h (struct re_dfa_t) [!_LIBC]: Avoid invalid C89
12507         macro expansion.
12508
12509 2006-07-28  Bruno Haible  <bruno@clisp.org>
12510
12511         * lib/inet_ntop.h, inet_pton.h: Use #if HAVE* instead of #ifdef HAVE*.
12512
12513 2006-07-28  Bruno Haible  <bruno@clisp.org>
12514
12515         * m4/mbchar.m4 (gl_MBCHAR): Also test for iswcntrl.
12516
12517 2006-07-28  Bruno Haible  <bruno@clisp.org>
12518
12519         * lib/mbchar.h (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit,
12520         iswgraph, iswlower, iswprint, iswpunct, iswspace, iswupper, iswxdigit):
12521         Define fallbacks.
12522         Avoids link error on FreeBSD 4.x.
12523         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
12524
12525         * lib/wcwidth.h (iswprint): Assume an ASCII compatible wide character
12526         encoding.
12527         * lib/mbswidth.c (iswcntrl): Likewise.
12528
12529 2006-07-27  Bruno Haible  <bruno@clisp.org>
12530
12531         * m4/stdint.m4 (gl_STDINT_H): Define __STDC_CONSTANT_MACROS during the
12532         test.
12533
12534 2006-07-27  Bruno Haible  <bruno@clisp.org>
12535
12536         * lib/stdint_.h (INT*_C, UINT*_C) [C++]: Define these if
12537         __STDC_CONSTANT_MACROS is defined, not if __STDC_LIMIT_MACROS is
12538         defined.
12539
12540 2006-07-26  Eric Blake  <ebb9@byu.net>
12541
12542         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Check for missing pipe.
12543
12544 2006-07-26  Eric Blake  <ebb9@byu.net>
12545
12546         * lib/mkstemp-safer.c [! HAVE_MKSTEMP]: Add prototype for platforms
12547         like mingw that lack mkstemp.
12548         * lib/pipe-safer.c (pipe_safer) [!HAVE_FUNC_PIPE]: Provide fallback to
12549         avoid compilation warning on mingw.
12550
12551 2006-07-26  Bruno Haible  <bruno@clisp.org>
12552
12553         * m4/stdint.m4 (gl_STDINT_H): Also verify the existence of the macros
12554         INT*_MIN, INT_LEAST*_MAX, INT_LEAST*_MIN, UINT_LEAST*_MAX,
12555         INT_FAST*_MIN, INTPTR_MIN.
12556
12557 2006-07-25  Bruno Haible  <bruno@clisp.org>
12558
12559         * modules/version-etc (Depends-on): Add stdarg.
12560
12561 2006-07-25  Bruno Haible  <bruno@clisp.org>
12562
12563         * m4/stdint.m4 (gl_INTEGER_TYPE_SUFFIX): Avoid 'eval' in front of
12564         complex commands.
12565
12566 2006-07-25  Bruno Haible  <bruno@clisp.org>
12567
12568         * lib/version-etc.c (version_etc_va): Use va_copy, assumed to be
12569         defined in <stdarg.h> or config.h.
12570
12571 2006-07-24  Paul Eggert  <eggert@cs.ucla.edu>
12572
12573         * m4/stdio-safer.m4 (gl_FOPEN_SAFER, gl_TMPFILE_SAFER): New macros.
12574         (gl_STDIO_SAFER): Remove.
12575
12576 2006-07-24  Paul Eggert  <eggert@cs.ucla.edu>
12577
12578         * MODULES.html.sh (File stream based Input/Output):
12579         Add fopen-safer, tmpfile-safer; remove stdio-safer.
12580         * modules/getusershell (Depends-on): Change stdio-safer to fopen-safer.
12581         * modules/fopen-safer, modules/tmpfile-safer: New files.
12582         * modules/stdio-safer: Remove.
12583
12584 2006-07-24  Bruno Haible  <bruno@clisp.org>
12585
12586         * modules/tmpdir: New file.
12587         * MODULES.html.sh (File system functions): Add it.
12588
12589 2006-07-24  Bruno Haible  <bruno@clisp.org>
12590
12591         * modules/javacomp (Depends-on): Add unistd, javaversion, binary-io,
12592         getline, pathname, fwriteerror, clean-temp, xvasprintf, strstr.
12593
12594 2006-07-24  Bruno Haible  <bruno@clisp.org>
12595
12596         * modules/clean-temp: New file.
12597
12598 2006-07-24  Bruno Haible  <bruno@clisp.org>
12599
12600         * m4/tmpdir.m4: New file, from GNU gettext.
12601
12602 2006-07-24  Bruno Haible  <bruno@clisp.org>
12603
12604         * lib/tmpdir.h: New file, from GNU gettext.
12605         * lib/tmpdir.c: New file, from GNU gettext.
12606
12607 2006-07-24  Bruno Haible  <bruno@clisp.org>
12608
12609         * lib/clean-temp.h: New file, from GNU gettext.
12610         * lib/clean-temp.c: New file, from GNU gettext.
12611
12612 2006-07-23  Eric Blake  <ebb9@byu.net>
12613
12614         * modules/stdio-safer (Files): Add tmpfile-safer.c.
12615         (Depends-on): Add binary-io.
12616
12617 2006-07-23  Eric Blake  <ebb9@byu.net>
12618
12619         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Add tmpfile-safer.c.
12620
12621 2006-07-23  Eric Blake  <ebb9@byu.net>
12622
12623         * lib/tmpfile-safer.c: New file.
12624         * lib/stdio-safer.h (fopen_safer): Add prototype.
12625         * lib/stdio--.h (tmpfile): Make safer.
12626
12627 2006-07-23  Bruno Haible  <bruno@clisp.org>
12628
12629         * lib/gl_anylinked_list2.h (ASYNCSAFE): New macro.
12630         (gl_linked_add_first, gl_linked_add_last, gl_linked_add_before,
12631         gl_linked_add_after, gl_linked_add_at, gl_linked_remove_node,
12632         gl_linked_remove_at): Use it.
12633
12634 2006-07-22  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
12635         and Simon Josefsson <jas@extundo.com>
12636
12637         * lib/getaddrinfo.h (AI_PASSIVE): Make sure it is defined.
12638
12639         * lib/getaddrinfo.c (getaddrinfo): Support AI_PASSIVE.
12640
12641 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
12642
12643         * modules/close-stream: New file.
12644         * modules/closeout (Description): Make it clear that it exits
12645         with a diagnostic on error.
12646         (Depends-on): Add close-stream.  Remove fpending, stdbool.
12647         * MODULES.html.sh (File stream based Input/Output): Add close-stream.
12648
12649 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
12650
12651         * m4/close-stream.m4: New file.
12652
12653 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
12654
12655         * lib/close-stream.c, lib/close-stream.h: New files.
12656
12657 2006-07-22  Bruno Haible  <bruno@clisp.org>
12658
12659         Merge from GNU gettext 0.15.
12660
12661         2006-05-01  Bruno Haible  <bruno@clisp.org>
12662
12663                 * build-aux/javacomp.sh.in: Update for changed javacomp.m4.
12664
12665         2006-07-22  Bruno Haible  <bruno@clisp.org>
12666
12667                 * modules/javaversion: New file.
12668                 * MODULES.html.sh (Java): Add javaversion.
12669
12670         2006-03-12  Bruno Haible  <bruno@clisp.org>
12671
12672                 * build-aux/javaexec.sh.in: Update for changed javaexec.m4.
12673
12674         2005-12-04  Bruno Haible  <bruno@clisp.org>
12675
12676                 * build-aux/csharpexec.sh.in: Add support for 'clix' launcher
12677                 (untested).
12678
12679         2006-06-21  Bruno Haible  <bruno@clisp.org>
12680
12681                 Avoid warnings from recent versions of mcs.
12682                 * build-aux/csharpcomp.sh.in (options_mcs): Don't use options
12683                 -o, -L, -r any more. Use options documented since mcs-1.0
12684                 instead. Similarly for -g.
12685
12686         2005-12-04  Bruno Haible  <bruno@clisp.org>
12687
12688                 * build-aux/csharpcomp.sh.in: Suffix for resources is
12689                 .resources, not .resource.
12690
12691         2005-07-09  Bruno Haible  <bruno@clisp.org>
12692
12693                 * build-aux/csharpcomp.sh.in (options_csc): For -l option,
12694                 add a .dll suffix.
12695                 Reported by Mark Junker <mjscod@gmx.de>.
12696
12697         2006-07-22  Bruno Haible  <bruno@clisp.org>
12698
12699                 * modules/gettext: Upgrade to gettext-0.15.
12700                 (Files): Remove m4/isc-posix.m4. Add m4/lock.m4,
12701                 m4/visibility.m4.
12702                 Replace m4/inttypes.m4 with m4/inttypes-h.m4.
12703
12704 2006-07-22  Bruno Haible  <bruno@clisp.org>
12705
12706         Merge from GNU gettext 0.15.
12707
12708         2006-03-25  Bruno Haible  <bruno@clisp.org>
12709
12710                 * lib-link.m4 (AC_LIB_LINKFLAGS_FROM_LIBS): New macro.
12711
12712         2006-07-21  Bruno Haible  <bruno@clisp.org>
12713
12714                 * javacomp.m4 (gt_JAVACOMP): Convert target_version "null" to
12715                 "1.1".
12716
12717         2006-05-09  Bruno Haible  <bruno@clisp.org>
12718
12719                 * javacomp.m4 (gt_JAVACOMP): On Cygwin, set
12720                 CLASSPATH_SEPARATOR to a semicolon. Use CLASSPATH_SEPARATOR
12721                 for the conftestver execution.
12722
12723         2006-05-01  Bruno Haible  <bruno@clisp.org>
12724
12725                 * javacomp.m4 (gt_JAVACOMP): Accept a source-version and an
12726                 optional target-version argument. Verify that the compiler
12727                 groks source of the specified source-version, or add -source
12728                 option as necessary. Verify that the compiler produces
12729                 bytecode in the specified target-version, or add -target and
12730                 -source options as necessary. Make the result of the test
12731                 available as variable CONF_JAVAC. Also log error output in
12732                 config.log.
12733
12734         2006-03-11  Bruno Haible  <bruno@clisp.org>
12735
12736                 * javacomp.m4 (gt_JAVACOMP): Treat gcj-4.x like gcj-3.x.
12737
12738         2006-05-09  Bruno Haible  <bruno@clisp.org>
12739
12740                 * javaexec.m4 (gt_JAVAEXEC): On Cygwin, set
12741                 CLASSPATH_SEPARATOR to a semicolon.
12742
12743         2006-03-12  Bruno Haible  <bruno@clisp.org>
12744
12745                 * javaexec.m4 (gt_JAVAEXEC): Make the result of the test
12746                 available as variable CONF_JAVA, for subsequent autoconf
12747                 tests. Also log error output in config.log.
12748
12749         2006-07-19  Bruno Haible  <bruno@clisp.org>
12750
12751                 * getline.m4 (AM_FUNC_GETLINE): When cross-compiling, assume
12752                 that getline works on glibc2 systems. Needed to avoid trouble
12753                 in relocatable.c.
12754                 Reported by Nils Magnus Larsgard <nmlarsgaard@atmel.no>.
12755
12756         2005-12-04  Bruno Haible  <bruno@clisp.org>
12757
12758                 * csharpexec.m4 (gt_CSHARPEXEC): Add support for 'clix'
12759                 launcher (untested).
12760
12761         2005-12-04  Bruno Haible  <bruno@clisp.org>
12762
12763                 * csharpcomp.m4 (gt_CSHARPCOMP): Also set CSHARPCOMPFLAGS.
12764
12765         2006-07-22  Bruno Haible  <bruno@clisp.org>
12766
12767                 * gettext.m4: Update from GNU gettext-0.15.
12768                 * nls.m4: Likewise.
12769                 * po.m4: Likewise.
12770                 * inttypes-pri.m4: Likewise.
12771                 * inttypes-h.m4: Renamed from inttypes.m4.
12772                 (gl_HEADER_INTTYPES_H): Renamed from gt_HEADER_INTTYPES_H.
12773
12774 2006-07-22  Bruno Haible  <bruno@clisp.org>
12775
12776         Merge from GNU gettext 0.15.
12777
12778         2005-07-05  Bruno Haible  <bruno@clisp.org>
12779
12780                 * printf-args.c (printf_fetchargs): Work around broken
12781                 definition of wint_t on mingw.
12782
12783         2005-02-12  Bruno Haible  <bruno@clisp.org>
12784
12785                 * xallocsa.h: Add extern "C" for C++.
12786
12787         2006-05-17  Bruno Haible  <bruno@clisp.org>
12788
12789                 Cygwin portability.
12790                 * progreloc.c (WIN32_NATIVE): Renamed from WIN32.
12791
12792         2006-04-30  Bruno Haible  <bruno@clisp.org>
12793
12794                 * progreloc.c: Include <mach-o/dyld.h> if available.
12795                 (find_executable): Use _NSGetExecutablePath when possible.
12796
12797         2006-05-06  Charles Wilson  <cygwin@cwilson.fastmail.fm>
12798
12799                 * progreloc.c (maybe_executable) [CYGWIN]: Use the access()
12800                 function.
12801
12802         2005-12-29  Bruno Haible  <bruno@clisp.org>
12803
12804                 * progreloc.c (set_program_name_and_installdir): Fix
12805                 compilation error.
12806
12807         2005-12-04  Bruno Haible  <bruno@clisp.org>
12808
12809                 Cygwin portability.
12810                 * progreloc.c: Include <windows.h> also on Cygwin.
12811                 (find_executable): Add support for Cygwin.
12812                 (set_program_name_and_installdir): Handle also platforms with
12813                 nonempty EXEEXT.
12814
12815         2006-07-11  Bruno Haible  <bruno@clisp.org>
12816
12817                 * javacomp.c: Fix a comment.
12818                 Reported by Jim Meyering.
12819
12820         2006-04-30  Bruno Haible  <bruno@clisp.org>
12821
12822                 * javacomp.h (compile_java_class): Add source_version,
12823                 target_version arguments.
12824                 * javacomp.c: Rewritten to choose only a compiler that
12825                 respects the specified source_version and target_version.
12826
12827         2006-06-27  Bruno Haible  <bruno@clisp.org>
12828
12829                 Assume correct S_ISDIR macro.
12830                 * mkdtemp.c: Remove test of STAT_MACROS_BROKEN.
12831
12832         2006-07-22  Bruno Haible  <bruno@clisp.org>
12833
12834                 * javaversion.h: New file, from GNU gettext.
12835                 * javaversion.c: New file, from GNU gettext.
12836                 * javaversion.java: New file, from GNU gettext.
12837                 * javaversion.class: New file, from GNU gettext.
12838
12839         2006-05-17  Bruno Haible  <bruno@clisp.org>
12840
12841                 Cygwin portability.
12842                 * javaexec.c (execute_java_class): Test for jview program
12843                 also on Cygwin.
12844
12845         2006-04-09  Bruno Haible  <bruno@clisp.org>
12846
12847                 * fatal-signal.c: Don't include string.h.
12848                 (at_fatal_signal): Use a copying loop instead of memcpy.
12849
12850         2005-12-04  Bruno Haible  <bruno@clisp.org>
12851
12852                 * csharpexec.c: Add support for 'clix' launcher (untested).
12853                 (execute_csharp_using_sscli): New function.
12854                 (execute_csharp_program): Call it.
12855
12856         2006-06-21  Bruno Haible  <bruno@clisp.org>
12857
12858                 Avoid warnings from recent versions of mcs.
12859                 * csharpcomp.c (compile_csharp_using_mono): Don't use options
12860                 -o, -L, -r any more. Use options documented since mcs-1.0
12861                 instead. Similarly for -g.
12862
12863         2005-07-09  Bruno Haible  <bruno@clisp.org>
12864
12865                 * csharpcomp.c (compile_csharp_using_sscli): For -l option,
12866                 add a .dll suffix.
12867                 Reported by Mark Junker <mjscod@gmx.de>.
12868
12869         2006-06-17  Bruno Haible  <bruno@clisp.org>
12870
12871                 * config.charset: Update for NetBSD 3.0.
12872
12873         2006-05-17  Bruno Haible  <bruno@clisp.org>
12874
12875                 Cygwin portability.
12876                 * localcharset.c (WIN32_NATIVE): Renamed from WIN32.
12877
12878         2006-05-16  Bruno Haible  <bruno@clisp.org>
12879
12880                 * localcharset.c [CYGWIN]: Include <windows.h>.
12881                 (get_charset_aliases): For Cygwin, return the same CPxxx
12882                 aliases list as under WIN32.
12883                 (locale_charset) [CYGWIN]: Try to retrieve the encoding from
12884                 the environment variables. Fall back to GetACP().
12885
12886         2006-04-05  Bruno Haible  <bruno@clisp.org>
12887
12888                 * config.charset: Update Juan Manuel Guerrero's address.
12889
12890         2005-02-12  Bruno Haible  <bruno@clisp.org>
12891
12892                 * allocsa.h: Add extern "C" for C++.
12893
12894         2005-02-10  Bruno Haible  <bruno@clisp.org>
12895
12896                 * allocsa.h (sa_alignof): Define differently with AIX xlc, to
12897                 avoid a bug of this compiler on AIX 3.2.5 dealing with enums.
12898
12899         2006-07-22  Bruno Haible  <bruno@clisp.org>
12900
12901                 * gettext.h: Update to GNU gettext-0.15.
12902
12903 2006-07-22  Bruno Haible  <bruno@clisp.org>
12904
12905         * config/srclist.txt: Resync printf-args.c, vasnprintf.c,
12906         localcharset.c, mkdtemp.c, config.rpath, lib-ld.m4, lib-link.m4,
12907         lib-prefix.m4, longdouble.m4, ssize_t.m4.
12908
12909 2006-07-21  Eric Blake  <ebb9@byu.net>
12910
12911         * modules/stdlib-safer: New file.
12912         * MODULES.html.sh (File stream based Input/Output): Add
12913         stdlib-safer.
12914
12915 2006-07-21  Eric Blake  <ebb9@byu.net>
12916
12917         * lib/stdlib-safer.h: New file from coreutils, required by
12918         stdlib--.h.
12919
12920 2006-07-20  Paul Eggert  <eggert@cs.ucla.edu>
12921
12922         * gnulib-tool (func_usage): Document --assume-autoconf='latest-stable'.
12923
12924 2006-07-20  Bruno Haible  <bruno@clisp.org>
12925
12926         * gnulib-tool: Recognize new option --assume-autoconf.
12927         (autoconf_minversion): New variable.
12928         (func_get_filelist): Use it to decide whether to add onceonly_2_57.m4.
12929
12930 2006-07-20  Bruno Haible  <bruno@clisp.org>
12931
12932         * MODULES.html.sh (func_all_modules): Add a missing func_begin_table.
12933
12934 2006-07-19  Derek R. Price  <derek@ximbiot.com>
12935
12936         * lib/getaddrinfo.h: Don't define unimplemented AI_* flags.
12937         Reindent and repaginate.
12938
12939 2006-07-19  Derek Price  <derek@ximbiot.com>
12940
12941         * doc/gnulib.texi (Libtool and Windows):  Eliminate passive voice.
12942         Correct grammar.
12943
12944 2006-07-17  Bruno Haible  <bruno@clisp.org>
12945
12946         * modules/list: New file.
12947         * modules/array-list: New file.
12948         * modules/carray-list, modules/carray-list-tests: New files.
12949         * modules/linked-list, modules/linked-list-tests: New files.
12950         * modules/avltree-list, modules/avltree-list-tests: New files.
12951         * modules/rbtree-list, modules/rbtree-list-tests: New files.
12952         * modules/linkedhash-list, modules/linkedhash-list-tests: New files.
12953         * modules/avltreehash-list, modules/avltreehash-list-tests: New files.
12954         * modules/rbtreehash-list, modules/rbtreehash-list-tests: New files.
12955         * modules/oset: New file.
12956         * modules/array-oset: New file.
12957         * modules/avltree-oset, modules/avltree-oset-tests: New files.
12958         * modules/rbtree-oset, modules/rbtree-oset-tests: New files.
12959         * tests/test-carray_list.c: New file.
12960         * tests/test-linked_list.c: New file.
12961         * tests/test-avltree_list.c: New file.
12962         * tests/test-rbtree_list.c: New file.
12963         * tests/test-linkedhash_list.c: New file.
12964         * tests/test-avltreehash_list.c: New file.
12965         * tests/test-rbtreehash_list.c: New file.
12966         * tests/test-avltree_oset.c: New file.
12967         * tests/test-rbtree_oset.c: New file.
12968         * MODULES.html.sh (Container data structures): New section.
12969
12970 2006-07-17  Bruno Haible  <bruno@clisp.org>
12971
12972         * m4/gl_list.m4: New file.
12973
12974 2006-07-17  Bruno Haible  <bruno@clisp.org>
12975
12976         * lib/gl_list.h: New file.
12977         * lib/gl_list.c: New file.
12978         * lib/gl_array_list.h: New file.
12979         * lib/gl_array_list.c: New file.
12980         * lib/gl_carray_list.h: New file.
12981         * lib/gl_carray_list.c: New file.
12982         * lib/gl_linked_list.h: New file.
12983         * lib/gl_linked_list.c: New file.
12984         * lib/gl_anylinked_list1.h: New file.
12985         * lib/gl_anylinked_list2.h: New file.
12986         * lib/gl_avltree_list.h: New file.
12987         * lib/gl_avltree_list.c: New file.
12988         * lib/gl_anyavltree_list1.h: New file.
12989         * lib/gl_anyavltree_list2.h: New file.
12990         * lib/gl_rbtree_list.h: New file.
12991         * lib/gl_rbtree_list.c: New file.
12992         * lib/gl_anyrbtree_list1.h: New file.
12993         * lib/gl_anyrbtree_list2.h: New file.
12994         * lib/gl_anytree_list1.h: New file.
12995         * lib/gl_anytree_list2.h: New file.
12996         * lib/gl_linkedhash_list.h: New file.
12997         * lib/gl_linkedhash_list.c: New file.
12998         * lib/gl_anyhash_list1.h: New file.
12999         * lib/gl_anyhash_list2.h: New file.
13000         * lib/gl_avltreehash_list.h: New file.
13001         * lib/gl_avltreehash_list.c: New file.
13002         * lib/gl_rbtreehash_list.h: New file.
13003         * lib/gl_rbtreehash_list.c: New file.
13004         * lib/gl_anytreehash_list1.h: New file.
13005         * lib/gl_anytreehash_list2.h: New file.
13006
13007         * lib/gl_oset.h: New file.
13008         * lib/gl_oset.c: New file.
13009         * lib/gl_array_oset.h: New file.
13010         * lib/gl_array_oset.c: New file.
13011         * lib/gl_avltree_oset.h: New file.
13012         * lib/gl_avltree_oset.c: New file.
13013         * lib/gl_rbtree_oset.h: New file.
13014         * lib/gl_rbtree_oset.c: New file.
13015         * lib/gl_anytree_oset.h: New file.
13016
13017 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
13018
13019         * m4/mkancesdirs.m4: New file.
13020         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Mention dirchownmod.c,
13021         dirchownmod.h.  Don't require AC_FUNC_ALLOCA, gl_AFS, gl_CHDIR_SAFER;
13022         no longer needed.  Require gl_FUNC_LCHOWN, since dirchownmod.c needs
13023         it.
13024
13025 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
13026
13027         * lib/dirchownmod.c, lib/dirchownmod.h, lib/mkancesdirs.c:
13028         * lib/mkancesdirs.h: New files.
13029         * lib/mkdir-p.c: Don't include alloca.h, stdio.h, sys/types.h,
13030         unistd.h, string.h, chdir-safer.h, dirname.h, lchmod.h, lchown.h,
13031         save-cwd.h.  Instead, include dirchownmod.h and mkancesdirs.h.
13032         (make_dir_parents): New args MAKE_ANCESTOR, OPTIONS, ANNOUNCE,
13033         MODE_BITS.  Remove options VERBOSE_FMT_STRING, CWD_ERRNO.  All
13034         callers changed.  Revamp internals significantly, by not
13035         attempting to create directories that are temporarily more
13036         permissive than the final results.  Do not attempt to use
13037         save_cwd/restore_cwd; it isn't worth it for mkdir and install.
13038         This removes some race conditions, fixes some bugs, and simplifies
13039         things.  Use new dirchownmod function to do owner and mode changes.
13040         * lib/mkdir-p.h: Likewise.
13041         * lib/modechange.c (octal_to_mode): New function.
13042         (struct mode_change): New member mentioned.
13043         (make_node_op_equals): New arg mentioned.  All callers changed.
13044         (mode_compile): Keep track of which mode bits the user has explicitly
13045         mentioned.
13046         (mode_adjust): New arg DIR, so that we implement the X op correctly.
13047         New arg PMODE_BITS, to keep track of which mode bits the user
13048         mentioned; it treats S_ISUID and S_ISGID speciall.
13049         All callers changed.
13050         * lib/modechange.h: Likewise.
13051
13052 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
13053
13054         * MODULES.html.sh: Add mkancestors.
13055         * modules/mkancesdirs: New module.
13056         * modules/mkdir-p (Files): Remove lib/chdir-safer.c, lib/chdir-safer.h,
13057         lib/same-inode.h, m4/afs.m4, m4/chdir-safer.m4.
13058         The chdir-safer and afs files are now orphans; I'll remove them
13059         unless someone speaks up.
13060         Add lib/dirchownmod.c, lib/dirchownmod.h.
13061         (Depends-on): Remove alloca, chown, save-cwd, dirname.
13062         Add lchown, mkancesdirs.
13063         (Maintainer): Add self.
13064
13065 2006-07-15  Karl Berry  <karl@gnu.org>
13066
13067         * gnulib-tool: help message wording/arrangement.
13068
13069 2006-07-14  Simon Josefsson  <jas@extundo.com>
13070
13071         * doc/gnulib.texi (Libtool and Windows): New section.
13072
13073 2006-07-12  Simon Josefsson  <jas@extundo.com>
13074
13075         * modules/gendocs (License): Fix license, approved by Karl.
13076
13077 2006-07-12  Eric Blake  <ebb9@byu.net>
13078
13079         * MODULES.html.sh: Add gendocs.
13080
13081 2006-07-11  Eric Blake  <ebb9@byu.net>
13082
13083         * modules/fdl: New module, to install doc/fdl.texi.
13084         * MODULES.html.sh: Add new section for documentation modules.
13085         * gnulib-tool: Avoid space-tab.
13086         (--doc-base): New option, to manage files from doc.
13087
13088 2006-07-11  Eric Blake  <ebb9@byu.net>
13089
13090         * m4/absolute-header.m4: Fix comments to match recent change.
13091
13092 2006-07-11  Eric Blake  <ebb9@byu.net>
13093
13094         * gnulib-tool: List --doc-base before --tests-base.
13095
13096 2006-07-11  Derek R. Price  <derek@ximbiot.com>
13097
13098         * lib/glob.c: s/NAMLEN/_D_EXACT_NAMLEN/.
13099
13100 2006-07-11  Bruno Haible  <bruno@clisp.org>
13101
13102         * README: Mention where to put documentation.
13103
13104 2006-07-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
13105
13106         * doc/functions.texi, gnulib-tool.texi, gnulib.texi: Fix some typos.
13107
13108 2006-07-10  Paul Eggert  <eggert@cs.ucla.edu>
13109
13110         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Like today's change
13111         to stdint.m4.
13112
13113 2006-07-10  Paul Eggert  <eggert@cs.ucla.edu>
13114
13115         * m4/stdint.m4 (gl_STDINT_H): Like yesterday's change to
13116         absolute-header.m4.  Also, set ABSOLUTE_STDINT_H to a string
13117         "no/such/file/stdint.h" when there is no such file, so that
13118         the resulting C code can be parsed by dodgy compilers.
13119         Problems reported by Bob Proulx.
13120
13121 2006-07-10  Derek R. Price  <derek@ximbiot.com>
13122
13123         * lib/backupfile.c, dirfd.h, fts.c, getcwd.c, glob.c, glob_.h:
13124         Ignore the obsolescent !HAVE_DIRENT_H case.  Consolidate NAMLEN
13125         macros into the GNU _D_EXACT_NAMLEN.
13126         * lib/savedir.c:  Likewise.
13127         (savedirstream): Use _D_EXACT_NAMLEN in preference to strlen.
13128
13129 2006-07-10  Derek R. Price  <derek@ximbiot.com>
13130         and Paul Eggert  <eggert@cs.ucla.edu>
13131
13132         * m4/backupfile.m4, d-ino.m4, d-type.m4, dirfd.m4, fts.m4, getcwd.m4:
13133         * m4/savedir.m4:
13134         Ignore the obsolescent !HAVE_DIRENT_H case.  Consolidate NAMLEN
13135         macros into the GNU _D_EXACT_NAMLEN.
13136
13137 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
13138
13139         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Use "" rather than <>
13140         around the absolute name, to work around a problem with the HP-UX
13141         11.23 native C compiler, reported by Bob Proulx.
13142
13143 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
13144
13145         * doc/maintain.texi, make-stds.texi: Sync from
13146         <http://savannah.gnu.org/projects/gnustandards>.
13147
13148 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
13149
13150         * build-aux/depcomp, build-aux/install-sh: Sync from Automake.
13151
13152 2006-07-09  Jim Meyering  <jim@meyering.net>
13153
13154         * m4/glob.m4: Remove a doubled word in a comment.
13155
13156 2006-07-09  Jim Meyering  <jim@meyering.net>
13157
13158         * lib/argp-pv.c: Remove a doubled word in a comment.
13159         * lib/check-version.c (check_version): Likewise.
13160         * lib/javacomp.c (compile_java_class): Likewise.
13161
13162 2006-07-08  Paul Eggert  <eggert@cs.ucla.edu>
13163
13164         * gnulib-tool (func_get_filelist): Don't echo m4/onceonly_2_57.m4,
13165         for the benefit of people using Autoconf 2.60.  If you want to
13166         support older Autoconf versions you can copy m4/onceonly_2_57.m4
13167         (or m4/onceonly.m4, if pre-2.57) manually.
13168
13169 2006-07-08  Jim Meyering  <jim@meyering.net>
13170
13171         * m4/link-follow.m4: Remove one of two adjacent "whether"s in a
13172         comment.
13173         * m4/getopt.m4: Remove one of two adjacent "your"s in a comment.
13174         * m4/regex.m4 (gl_REGEX): Remove one of two adjacent "the"s in a
13175         comment.
13176
13177 2006-07-08  Jim Meyering  <jim@meyering.net>
13178
13179         * lib/getndelim2.h (getndelim2): Remove doubled "after" in comment.
13180
13181 2006-07-07  Simon Josefsson  <jas@extundo.com>
13182
13183         * tests/test-crc.c: Change expected crc value, the test vector
13184         were probably computed using the old broken crc.c?
13185
13186 2006-07-06  Simon Josefsson  <jas@extundo.com>
13187
13188         * modules/sys_socket (Files): Add m4/sockpfaf.m4 (this module is
13189         now the canonical place for the M4 file).
13190
13191         * modules/getaddrinfo (Files): Remove m4/sockpfaf.m4, we get it
13192         from the sys_socket dependency now.
13193
13194         * modules/inet_pton (Files): Ditto.
13195
13196         * modules/inet_ntop (Files): Ditto.
13197
13198 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
13199
13200         * modules/getusershell (configure.ac): Use gl_FUNC_GETUSERSHELL,
13201         not gl_PREREQ_GETUSERSHELL.
13202
13203 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
13204
13205         * m4/_inttypes_h.m4 (gl_INTTYPES_H): Use AC_CHECK_DECLS_ONCE
13206         with only one argument, for Autoconf 2.60.
13207         * m4/fileblocks.m4 (gl_PREREQ_FILEBLOCKS): AC_CHECK_DECLS_ONCE may
13208         expand to nothing, so add a shell command to avoid syntax error.
13209         * m4/getpass.m4 (gl_PREREQ_GETPASS): Likewise.
13210
13211 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
13212
13213         * lib/strtod.c (strtod): cast the argument of tolower to unsigned char.
13214
13215 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
13216
13217         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Don't check for getenv decl;
13218         no longer needed.  Check for isblank decl.
13219         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Don't check for getenv decl.
13220         * m4/regex.m4 (gl_PREREQ_REGEX): Dheck for isblank decl instead
13221         of existence.
13222
13223 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
13224
13225         * lib/getloadavg.c: Use __VMS, not VMS.
13226         * lib/getopt.c: Likewise.
13227         * lib/getpagesize.h: Likewise.
13228         * lib/glob.c: Remove most VMS cruft; it hasn't been tested for a while
13229         and probably does not work.
13230
13231 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
13232
13233         * lib/.cppi-disable: Add wcwidth.
13234         * lib/fnmatch.c (ISBLANK): Remove.  All uses changed to isblank.
13235         (isblank) [! (defined isblank || HAVE_DECL_ISBLANK)]: New macro.
13236         (ISGRAPH): Remove.  All uses changed to isgraph.
13237         (FOLD) [!defined _LIBC]: Remove special case.
13238         * lib/getdate.y (lookup_word): Remove no-longer-needed call to islower.
13239         * lib/regex_internal.h (isblank): Depend on HAVE_DECL_ISBLANK, not
13240         HAVE_ISBLANK.
13241         * lib/strftime.c (TOLOWER, TOUPPER) [!defined _LIBC]: Remove special
13242         case.
13243
13244 2006-07-06  Jim Hyslop  <jhyslop@dreampossible.ca>  (tiny change)
13245
13246         * lib/getaddrinfo.c: Changes to compile under MSVC6: changed
13247         '#if WIN32_NATIVE' to '#ifdef' & moved WSAAPI macro inside
13248         brackets.  Other minor changes to suppress some compiler
13249         warnings.
13250
13251 2006-07-06  Derek R. Price  <derek@ximbiot.com>
13252         and Paul Eggert  <eggert@cs.ucla.edu>
13253
13254         * m4/backupfile.m4 (gl_BACKUPFILE): Check for dirent.h, instead
13255         of invoking obsolescent AC_HEADER_DIRENT macro.
13256         * m4/d-ino.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_INO): Likewise.
13257         * m4/d-type.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Likewise.
13258         * m4/dirfd.m4 (gl_FUNC_DIRFD): Likewise.
13259         * m4/fts.m4 (gl_FUNC_FTS_CORE): Likewise.
13260         * m4/getcwd.m4 (gl_PREREQ_GETCWD): Likewise.
13261         * m4/glob.m4 (gl_PREREQ_GLOB): Likewise.
13262         * m4/savedir.m4 (gl_SAVEDIR): Likewise.
13263         * m4/readdir.m4: Remove; no longer needed.
13264
13265 2006-07-06  Derek R. Price  <derek@ximbiot.com>
13266         and Paul Eggert  <eggert@cs.ucla.edu>
13267
13268         * lib/backupfile.c [HAVE_DIRENT_H && ! HAVE_NDIR_H]:
13269         Don't worry about this obsolete case any more.
13270         (HAVE_DIR): Remove.  All uses removed; we now assume you can read
13271         directories.
13272         * lib/dirfd.h [HAVE_DIRENT_H && ! HAVE_NDIR_H]: Don't
13273         worry about this obsolete case any more.
13274         * lib/fts.c: Likewise.
13275         * lib/getcwd.c: Likewise.
13276         * lib/glob.h: Likewise.
13277         * lib/savedir.c: Likewise.
13278
13279 2006-07-05  Paul Eggert  <eggert@cs.ucla.edu>
13280
13281         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Use AC_CHECK_DECLS_ONCE
13282         rather than AC_CHECK_DECLS for strtoimax and strtoumax.
13283         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Remove; no longer
13284         needed.
13285         All uses removed.
13286         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
13287         * m4/strtoul.m4 (gl_PREREQ_STRTOUL): Likewise.
13288         * m4/exclude.m4 (gl_EXCLUDE): Don't check for isascii; no longer
13289         needed.
13290         * m4/getdate.m4 (gl_GETDATE): Likewise.
13291         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Likewise.
13292         * m4/memcasecmp.m4 (gl_MEMCASECMP): Likewise.
13293         * m4/strtod.m4 (gl_FUNC_STRTOD): Likewise.
13294         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
13295         * m4/strtoul.m4 (gl_PREREQ_STRTOUL): Likewise.
13296         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
13297         * m4/exclude.m4 (gl_EXCLUDE): Don't require AC_C_INLINE; no longer
13298         needed.
13299
13300 2006-07-05  Paul Eggert  <eggert@cs.ucla.edu>
13301
13302         * lib/memcasecmp.c: Include <limits.h>.
13303         (memcasecmp): Don't assume UCHAR_MAX <= INT_MAX.
13304         * lib/strtod.c (strtod): Don't assume isspace works on negative chars.
13305         Don't assume isdigit succeeds only on '0' through '9'.
13306
13307 2006-07-05  Eric Blake  <ebb9@byu.net>
13308
13309         * modules/getaddrinfo (Depends-on): Add snprintf.
13310
13311 2006-07-05  Eric Blake  <ebb9@byu.net>
13312
13313         * m4/sockpfaf.m4 (gl_SOCKET_FAMILIES): Use gl_HEADER_SYS_SOCKET
13314         to avoid 'header present but could not be compiled' on cygwin.
13315
13316 2006-07-05  Eric Blake  <ebb9@byu.net>
13317
13318         * lib/getaddrinfo.h (NI_NUMERICHOST, NI_NUMERICSERV): Define if
13319         missing from netdb.h.
13320         * lib/getaddrinfo.c (includes): Include inet_ntop and snprintf.
13321
13322 2006-07-05  Derek R. Price  <derek@ximbiot.com>
13323
13324         * m4/calloc.m4 (_AC_FUNC_CALLOC_IF): Don't require AC_HEADER_STDC;
13325         no longer needed.
13326         * m4/exclude.m4 (gl_EXCLUDE): Likewise.
13327         * m4/getdate.m4 (gl_GETDATE): Likewise.
13328         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Likewise.
13329         * m4/memcasecmp.m4 (gl_MEMCASECMP): Likewise.
13330         * m4/strtod.m4 (gl_FUNC_STRTOD): Likewise.
13331         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
13332         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
13333
13334 2006-07-05  Derek R. Price  <derek@ximbiot.com>
13335
13336         * lib/exclude.c (IN_CTYPE_DOMAIN, is_space): Remove; no longer needed.
13337         All uses of is_space replaced by isspace.
13338         * lib/exit.h: Don't talk about STDC_HEADERS.
13339         * lib/fnmatch.c (ISASCII): Remove; no longer needed.  All uses removed.
13340         (ISPRINT, ISDIGIT, ISALNUM, ISALPHA, ISCNTRL, ISLOWER, ISPUNCT):
13341         (ISSPACE, ISUPPER, ISXDIGIT): Remove; no longer needed.  All uses
13342         replaced by isprint etc.
13343         * lib/getdate.y (IN_CTYPE_DOMAIN, ISSPACE, ISALPHA, ISLOWER): Likewise.
13344         * lib/getusershell.c (IN_CTYPE_DOMAIN, ISSPACE): Likewise.
13345         * lib/memcasecmp.c (IN_CTYPE_DOMAIN, ISLOWER, TOUPPER): Likewise.
13346         * lib/strtod.c (IN_CTYPE_DOMAIN, ISSPACE, ISDIGIT, TOLOWER): Likewise.
13347         * lib/strtol.c (IN_CTYPE_DOMAIN): Likewise.
13348         * lib/xstrtol.c (IN_CTYPE_DOMAIN, ISSPACE): Likewise.
13349
13350 2006-07-05  Bruno Haible  <bruno@clisp.org>
13351
13352         * m4/strndup.m4 (gl_FUNC_STRNDUP): When cross-compiling, check whether
13353         the function exists, before testing against AIX.
13354         Reported by Martin Lambers <marlam@marlam.de>.
13355
13356 2006-07-04  Paul Eggert  <eggert@cs.ucla.edu>
13357
13358         * modules/cycle-check (lib_SOURCES): Add same-inode.h.
13359         From Mark D. Baushke.
13360
13361 2006-07-04  Paul Eggert  <eggert@cs.ucla.edu>
13362
13363         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Prepend three slashes
13364         to the absolute name, not just one, to bypass Sun C 5.8's
13365         "warning: #include of /usr/include/... may be non-portable".
13366
13367 2006-07-04  Eric Blake  <ebb9@byu.net>
13368
13369         * modules/dirname-tests: New test module.
13370         * tests/test-dirname.c: New file, replacing dirname.c
13371         TEST_DIRNAME section that was recently deleted.
13372
13373 2006-07-04  Bruno Haible  <bruno@clisp.org>
13374
13375         Assume ANSI C header files and <ctype.h> functions.
13376         * lib/mbswidth.c (IN_CTYPE_DOMAIN, ISPRINT, ISCNTRL): Remove macros.
13377         (mbsnwidth): Use isprint, iscntrl instead.
13378
13379 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
13380
13381         Merge from coreutils.
13382         * MODULES.html.sh: Add xstrtold.
13383         * modules/xstrtold: New file.
13384         * modules/cycle-check (Files): Add lib/same-inode.h.
13385         * modules/dirname (Files): Add m4/double-slash-root.m4.
13386         * modules/getcwd (Files): Add m4/getcwd-abort-bug.m4.
13387         * modules/mkdir-p (Files): Add lib/same-inode.h.
13388         * modules/same (Files): Add lib/same-inode.h.
13389
13390 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
13391
13392         * m4/absolute-header.m4: Renamed from full-header-path.m4.
13393         This is to keep the terminology clean; POSIX talks about
13394         "absolute pathnames", not "full pathnames", but the GNU
13395         Coding Standards say to use "path" for something else;
13396         so use "absolute" to keep both sides happy.
13397         (gl_ABSOLUTE_HEADER): Renamed from gl_FULL_HEADER_PATH.
13398         Set gl_absolute_header, not gl_full_header_path.
13399         Set gl_cv_absolute_<header>, not gl_full_path_<header>.
13400         Define ABSOLUTE_<HEADER>, not FULL_PATH_<HEADER>.
13401         All uses changed.
13402
13403         Merge from coreutils.
13404
13405         2006-06-30  Paul Eggert  <eggert@cs.ucla.edu>
13406
13407         * m4/c-strtod.m4 (gl_C_STRTOLD): Add c-strtod.c to LIBSOURCES.
13408         Require gl_USE_SYSTEM_EXTENSIONS, not gl_C_STRTOD, since we don't
13409         want to require the building of c-strtod.o.
13410         * m4/lib-check.m4 (cu_LIB_CHECK): Remove SEQ_LIBM, since seq no longer
13411         needs -lm directly.
13412         * m4/xstrtod.m4 (gl_XSTRTOLD): New macro.
13413
13414         2006-06-19  Paul Eggert  <eggert@cs.ucla.edu>
13415
13416         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Prefer binutils's
13417         --as-needed option if available.  Problem reported by Albert Chin in
13418         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00114.html>.
13419         However, use -Wl,--as-needed, not bare --as-needed, since HP-UX 11.11
13420         cc merely issues a bunch of annoying warnings for --as-needed
13421         (this problem was reported by Bob Proulx).  Also, try linking with
13422         -lm to detect a bug in binutils 2.16 (this problem was reported
13423         by Ralf Wildenhues).
13424
13425         2006-06-18  Jim Meyering  <jim@meyering.net>
13426
13427         Test for a bug that causes glibc's getcwd to suffer a failed assertion.
13428         * m4/getcwd-abort-bug.m4 (gl_FUNC_GETCWD_ABORT_BUG): New file and
13429         macro.
13430         * m4/getcwd.m4 (gl_FUNC_GETCWD): If we detect support for getcwd_null,
13431         also check for glibc-2.4's abort-inducing bug.
13432
13433         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Fix typo.
13434         Low-probability clean-up should be to use rmdir to get rid of
13435         the just-created directory, not unlink.
13436
13437         * m4/ftruncate.m4 (gl_FUNC_FTRUNCATE): If ftruncate is missing, make
13438         configure fail, and request a bug report to inform us about it.
13439         Add a comment that, barring reports to the contrary, in 2007 we'll
13440         assume ftruncate is universally available.
13441
13442         2006-04-17  Paul Eggert  <eggert@cs.ucla.edu>
13443
13444         * m4/filemode.m4 (gl_FILEMODE): Check for strmode declaration.
13445
13446         2006-03-12  Jim Meyering  <jim@meyering.net>
13447
13448         * m4/chdir-safer.m4 (gl_CHDIR_SAFER): Add same-inode.h to the list.
13449         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Likewise.
13450         * m4/same.m4 (gl_SAME): Likewise.
13451         * m4/root-dev-ino.m4 (gl_ROOT_DEV_INO): Likewise.
13452
13453         2006-03-11  Eric Blake  <ebb9@byu.net>
13454
13455         * m4/double-slash-root.m4: New file, provides gl_DOUBLE_SLASH_ROOT.
13456         * m4/dirname.m4 (gl_DIRNAME): Use gl_DOUBLE_SLASH_ROOT.
13457         * m4/dos.m4 (FILE_SYSTEM_PREFIX_LEN): Move from here to dirname.h.
13458         (FILE_SYSTEM_DRIVE_PREFIX_CAN_BE_RELATIVE): New define.
13459
13460 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
13461
13462         * lib/stdint_.h: Include <sys/types.h> after @FULL_PATH_STDINT_H@, for
13463         MacOS X 10.4.6.  Don't mention <sys/int_types.h>.  Problems
13464         reported by Mark D. Baushke, one in
13465         <http://lists.gnu.org/archive/html/bug-gnulib/2006-07/msg00015.html>.
13466
13467         Merge from coreutils.
13468
13469         * lib/.cppi-disable: Add stdint_.h.
13470         * lib/.cvsignore: Add stdint.h.
13471
13472         2006-06-30  Paul Eggert  <eggert@cs.ucla.edu>
13473
13474         * lib/xstrtod.c (XSTRTOD, DOUBLE): New macros, so that we can support
13475         both double and long double versions.
13476         (XSTRTOD): Renamed from xstrtod.  Use DOUBLE internally.
13477         * lib/xstrtold.c: New file.
13478         * lib/xstrtod.h (xstrtold): New decl.
13479
13480         2006-05-22  Paul Eggert  <eggert@cs.ucla.edu>
13481
13482         * lib/filemode.c (setst): Remove.
13483         (strmode): Rewrite to avoid setst.  This makes the code shorter,
13484         (arguably) clearer, and the generated code is a bit smaller on my
13485         Debian GNU/Linux stable x86 host.
13486
13487         2006-04-17  Paul Eggert  <eggert@cs.ucla.edu>
13488
13489         * lib/filemode.c: Include "filemode.h" first, to test the interface.
13490         Assume that filemode.h includes sys/types.h and sys/stat.h.
13491         (HAVE_ST_DM_MODE): New macro, moved here from ls.c.
13492         (ftypelet): Reorder to put common cases first, for efficiency.
13493         Add 'P', 'w'.  Remove 'M', since it's now the caller's responsibility
13494         to do 'M'.
13495         (strmode): Renamed from mode_string, and now stores 12 bytes instead
13496         of 10, for compatibility with FreeBSD.  All callers changed.
13497         (filemodestring): Now stores 12 bytes instead of 10, and sets file
13498         types that can't be deduced solely from st_mode.  First arg is now a
13499         const pointer.
13500         * lib/filemode.h (HAVE_DECL_STRMODE): Include <string.h> for strmode.
13501         (strmode): Renamed from mode_string.
13502         (filemodestring): New decl.
13503         * lib/stat-macros.h: Don't undef S_ISDOOR, since it's never buggy.
13504         (S_ISDOOR): Don't bother with S_IFDOOR, since that code is never
13505         needed.
13506         (S_ISPORT, S_ISWHT): New macros, if not already defined.
13507
13508         2006-04-12  Paul Eggert  <eggert@cs.ucla.edu>
13509
13510         * lib/fsusage.c: Don't include <inttypes.h> or <stdint.h>, since
13511         fsusage.h now does that.  Include fsusage.h first, to test interface.
13512         Prefer statvfs if it works, since it's blessed by POSIX.  Attempt
13513         at most one method (the old code could have generated decls that
13514         didn't conform to C89, not that this was ever exercised).
13515         * lib/fsusage.h: Include <inttypes.h> and <stdint.h> if they exist.
13516
13517         2006-03-19  Jim Meyering  <jim@meyering.net>
13518
13519         Work even in a chroot where d_ino values for entries in "/"
13520         don't match the stat.st_ino values for the same names.
13521         * lib/getcwd.c (__getcwd): When no d_ino value matches the target inode
13522         number, iterate through all entries again, using lstat instead.
13523         Reported by Kenshi Muto in http://bugs.debian.org/355810, and by
13524         Zouhir Hafidi in https://bugzilla.redhat.com/bugzilla/190656.
13525
13526         * lib/getcwd.c (__getcwd): Clarify a comment.
13527         Use memcpy in place of a call to strcpy.
13528
13529         2006-03-12  Jim Meyering  <jim@meyering.net>
13530
13531         * lib/fts-cycle.c (leave_dir): If cycle-check's saved dev-ino pair
13532         matches that of the current directory (which we're about to chdir ".."
13533         out of), then save the dev-ino of the parent, instead.
13534
13535         * lib/same-inode.h (SAME_INODE): New file/macro.
13536         * lib/chdir-safer.c (SAME_INODE): Remove definition.
13537         Include "same-inode.h", instead.
13538         * lib/same.c: Likewise.
13539         * lib/cycle-check.h: Include "same-inode.h".
13540         (CYCLE_CHECK_REFLECT_CHDIR_UP): Define.
13541         * lib/cycle-check.c (SAME_INODE): Remove definition.
13542         * lib/root-dev-ino.h: Include "same-inode.h".
13543
13544         2006-03-11  Eric Blake  <ebb9@byu.net>
13545
13546         * lib/same.c (same_name): s/base_name/last_component/
13547         * lib/backupfile.c (check_extension, numbered_backup): Likewise.
13548         * lib/filenamecat.c (file_name_concat): Likewise.
13549
13550         2006-03-11  Eric Blake  <ebb9@byu.net>,
13551                     Paul Eggert  <eggert@cs.ucla.edu>
13552
13553         * lib/dirname.h (FILE_SYSTEM_PREFIX_LEN): Move here from dos.m4.
13554         [FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX]: Don't treat 1: as a
13555         drive prefix.
13556         (IS_ABSOLUTE_FILE_NAME): Treat all drive letters as absolute on
13557         platforms like cygwin with FILE_SYSTEM_DRIVE_PREFIX_IS_ABSOLUTE.
13558         (last_component): New method.
13559         * lib/dirname.c (dir_len): Determine when drive letters need a
13560         subsequent slash.  Preserve // when it is special.
13561         (dir_name): Don't append dot when drive letter is absolute.
13562         [TEST_DIRNAME]: Move into a full-blown gnulib test.
13563         * lib/basename.c (base_name): New semantics - malloc the result.
13564         Preserve // when it is special.  Preserve relative files that look
13565         like drive letters.
13566         (base_len): Preserve // when it is special.
13567         (last_component): New method, similar to old base_name semantics.
13568         * lib/stripslash.c (strip_trailing_slashes): Use last_component, not
13569         base_name.  Strip redundant slashes from ///.
13570
13571 2006-07-03  Jim Meyering  <jim@meyering.net>
13572
13573         * lib/cycle-check.h (CYCLE_CHECK_REFLECT_CHDIR_UP): Abort if this
13574         macro is used before the first cycle_check call.
13575
13576 2006-07-03  Eric Blake  <ebb9@byu.net>
13577
13578         * modules/dirname (Depends-on): Add xstrndup.
13579
13580 2006-07-02  Paul Eggert  <eggert@cs.ucla.edu>
13581
13582         * m4/stdint.m4 (gl_STDINT_H): Use more-mnemonic identifiers for
13583         test cases, so that config.log is a bit easier to follow.
13584
13585 2006-07-02  Paul Eggert  <eggert@cs.ucla.edu>
13586
13587         * lib/stdint_.h (intmax_t, uintmax_t): Prefer long to long long if
13588         both are 64 bits, since this seems to be the tradition, and this
13589         prevents gcc -Wformat from warning about usages with PRIuMAX.  If
13590         we ever run into a host that prefers long long to long in this
13591         case, we'll need another configure-time test.  Problem reported by
13592         Jim Meyering.
13593
13594 2006-07-02  Eric Blake  <ebb9@byu.net>
13595
13596         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Simplify by using AC_CHECK_DECLS.
13597
13598 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
13599
13600         * modules/inttypes (Depends-on): No longer depends on stdint.
13601         * modules/stdint (Description): Say more about assumptions.
13602         Say that the fast types might differ.  Say macros are used.
13603         (Files): Remove m4/size_max.m4, m4/wchar_t.m4.  Add m4/longlong.m4.
13604         (Makefile.am): Revise list of substituted symbols to match
13605         new stdint.m4.
13606         * modules/stdint-tests (Files): Add m4/wchar_t.m4, m4/wint_t.m4.
13607         (configure.ac): Add gt_TYPE_WCHAR_T, gt_TYPE_WINT_T.
13608         * tests/test-stdint.c (verify_same_types)
13609         [! (__GNUC__ >= 2 && DO_PEDANTIC)]: Put in a decl, so that
13610         the code conforms to C99/C89.
13611         Test for WCHAR_MIN and WCHAR_MAX only if HAVE_WCHAR_T.
13612         Test for WINT_MIN and WINT_MAX only if HAVE_WINT_T.
13613
13614 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
13615
13616         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Backport from Autoconf 2.60,
13617         but fix a bug, by requiring at least 64 bits.
13618         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Likewise.
13619         * m4/longlong.m4 (gl_AC_TYPE_LONG_LONG): Now just call
13620         AC_TYPE_LONG_LONG_INT.  This macro is obsolete and will go soon.
13621         * m4/ulonglong.m4 (gl_AC_TYPE_UNSIGNED_LONG_LONG) Likewise.
13622
13623         * m4/stdint.m4 (gl_STDINT_H): Rewrite to accommodate stdint_.h
13624         changes.  Make 2.59 a prerequisite.  Check and substitute for
13625         HAVE_LONG_LONG_INT.  Rely on Autoconf to check for stdint.h and
13626         inttypes.h.  Do not use special include files; just use the
13627         defaults.  Check for sys/inttypes.h and sys/bitypes.h in the usual
13628         way now.  Remove no-longer-needed tests for HAVE_LONG_64BIT,
13629         HAVE_LONG_LONG_64BIT, int8_t, int16_t, int32_t, int64_t, uint8_t,
13630         uint16_t, uint32_t uint64_t, int_least8_t, int_least16_t,
13631         int_least32_t, int_least64_t, uint_least8_t, uint_least16_t,
13632         uint_least32_t, uint_least64_t, int_fast8_t, int_fast16_t,
13633         int_fast32_t, int_fast64_t, uint_fast8_t uint_fast16_t,
13634         uint_fast32_t, uint_fast64_t, intptr_t, uintptr_t, intmax_t,
13635         uintmax_t, INT8_MIN, INT8_MAX, UINT8_MAX, INT16_MIN, INT16_MAX,
13636         UINT16_MAX, INT32_MIN, INT32_MAX, UINT32_MAX, INT64_MIN,
13637         INT64_MAX, UINT64_MAX, INT_LEAST8_MIN, INT_LEAST8_MAX,
13638         UINT_LEAST8_MAX, INT_LEAST16_MIN, INT_LEAST16_MAX,
13639         UINT_LEAST16_MAX, INT_LEAST32_MIN, INT_LEAST32_MAX,
13640         UINT_LEAST32_MAX, INT_LEAST64_MIN, INT_LEAST64_MAX,
13641         UINT_LEAST64_MAX, INT_FAST8_MIN, INT_FAST8_MAX, UINT_FAST8_MAX,
13642         INT_FAST16_MIN, INT_FAST16_MAX, UINT_FAST16_MAX, INT_FAST32_MIN,
13643         INT_FAST32_MAX, UINT_FAST32_MAX, INT_FAST64_MIN, INT_FAST64_MAX,
13644         UINT_FAST64_MAX, INTPTR_MIN, INTPTR_MAX, UINTPTR_MAX, INTMAX_MIN,
13645         INTMAX_MAX, UINTMAX_MAX, PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN,
13646         SIG_ATOMIC_MAX, SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN,
13647         WINT_MAX.  Check for C99 conformance more strictly, by detecting
13648         bugs in glibc 2.4, Solaris 10, and OpenBSD 3.9.  On the other hand do
13649         not check for things that C99 does not require, e.g., int8_t.  If
13650         a test isn't needed unless <stdint.h> isn't working, and is
13651         unlikely to be needed for any other reason, then don't do it
13652         unless <stdint.h> isn't working.  Do not check for ptrdiff_t or
13653         size_t, since we assume C89 freestanding at least.  Do not check
13654         for sig_atomic_t, wchar_t, or wint_t, since the code now does
13655         the right thing even if the types are not defined.  Instead use:
13656         (gl_STDINT_TYPE_PROPERTIES): New macro.
13657         (gl_HEADER_STDINT_H, gl_HEADER_INTTYPES_H): Remove.  Don't bother
13658         testing whether <sys/types.h> clashes, as Autoconf does this for
13659         us now.  All uses removed.
13660         (gl_STDINT_CHECK_TYPES, gl_STDINT_MISSING_BOUND):
13661         (gl_STDINT_MISSING_BOUNDS, gl_STDINT_MISSING_BOUNDS2):
13662         (gl_CHECK_TYPE_SAME):
13663         Remove; no longer needed.
13664         (gl_STDINT_BITSIZEOF): Don't bother to check whether the type
13665         exists, since we'll return 0 anyway in that case.
13666         (gl_INTEGER_TYPE_SUFFIX, gl_STDINT_INCLUDES): New macros.
13667
13668 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
13669
13670         * lib/stdint_.h (_GL_STDINT_H): Renamed from _STDINT_H, to avoid
13671         possible collision with system files.
13672         (<stdio.h>, <time.h>, <wchar.h>) [defined __cplusplus && ! defined
13673         __STDC_CONSTANT_MACROS)]: Do not include, since we don't need
13674         WCHAR_MIN and WCHAR_MAX in this case.
13675         (<stddef.h>): Do not include; no longer needed.
13676         (<sys/types.h>): Include if @HAVE_SYS_TYPES_H@, not if
13677         (defined(__OpenBSD__) || defined(__bsdi__) || defined(__sgi)).
13678         (<sys/inttypes.h>): Include if @HAVE_SYS_INTTYPES_H@ &&
13679         !@HAVE_INTTYPES_H@, not if (defined(__FreeBSD__)
13680         && (__FreeBSD__ >= 3) && (__FreeBSD__ <= 4)).
13681         (__STDINT_H__) [@HAVE_STDINT_H@ && defined __sgi && ! defined
13682         __c99]: Define, to work around IRIX <stdint.h> incompatibility.
13683         (@FULL_PATH_STDINT_H@) [!(defined(__sgi) && @HAVE_INTTYPES_H@ &&
13684         !defined(__c99))]: Include in this case too, since it's harmless
13685         now.
13686         (<inttypes.h>) [@HAVE_INTTYPES_H@]: Include, since it's no longer
13687         dangerous to do so.
13688         (@FULL_PATH_INTTYPES_H@) [(defined(__hpux) || defined(_AIX)) &&
13689         @HAVE_INTTYPES_H@]: Do not include, since we now include <inttypes.h>.
13690         (_STDINT_MIN, _STDINT_MAX): New macros.
13691         (int8_t, uint8_t, int16_t, uint16_t, int32_t, uint32_t, int64_t):
13692         (uint64_t, int_least8_t, uint_least8_t, int_least16_t):
13693         (uint_least16_t, int_least32_t, uint_least32_t, int_least64_t):
13694         (uint_least64_t, int_fast8_t, uint_fast8_t, int_fast16_t):
13695         (uint_fast16_t, int_fast32_t, uint_fast32_t, int_fast64_t):
13696         (uint_fast64_t, intptr_t, uintptr_t, intmax_t, uintmax_t): Now
13697         macros, not typedefs; this simplifies things quite a bit.
13698         Use long int for all types narrower than int64_t.
13699         (intmax_t, uintmax_t, INTMAX_C, UINTMAX_C):
13700         Define in terms of long long int or int64_t or long int,
13701         not int64_t or int32_t.  This saves some compile-time testing.
13702         (INT8_MIN, INT8_MAX, UINT8_MAX, INT16_MIN, INT16_MAX, UINT16_MAX):
13703         (INT32_MIN, INT32_MAX, UINT32_MAX, INT64_MIN, INT64_MAX):
13704         (UINT64_MAX, INT_LEAST8_MIN, INT_LEAST8_MAX, UINT_LEAST8_MAX):
13705         (INT_LEAST16_MIN, INT_LEAST16_MAX, UINT_LEAST16_MAX):
13706         (INT_LEAST32_MIN, INT_LEAST32_MAX, UINT_LEAST32_MAX):
13707         (INT_LEAST64_MIN, INT_LEAST64_MAX, UINT_LEAST64_MAX, INT_FAST8_MIN):
13708         (INT_FAST8_MAX, UINT_FAST8_MAX, INT_FAST16_MIN, INT_FAST16_MAX):
13709         (UINT_FAST16_MAX, INT_FAST32_MIN, INT_FAST32_MAX, UINT_FAST32_MAX):
13710         (INT_FAST64_MIN, INT_FAST64_MAX, UINT_FAST64_MAX, INTPTR_MIN):
13711         (INTPTR_MAX, UINTPTR_MAX, INTMAX_MIN, INTMAX_MAX, UINTMAX_MAX):
13712         (PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX):
13713         (SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN, WINT_MAX):
13714         undef any previous version and define our own version, for
13715         simplicity and consistency with the new macros for types.
13716         (PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX):
13717         (SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN, WINT_MAX):
13718         Simplify definitions by using _STDINT_MIN and _STDINT_MAX
13719         where appropriate.  Rely on new symbols @PTRDIFF_T_SUFFIX@,
13720         @SIG_ATOMIC_T_SUFFIX@, @SIZE_T_SUFFIX@, @WCHAR_T_SUFFIX@,
13721         @WINT_T_SUFFIX@ to keep things simple here.
13722         (UINT8_C, UINT16_C, UINT32_C, INT64_C, UINT64_C):
13723         Simplify by assuming typical 8/16/32/64 host, since we're
13724         already doing that elsewhere anyway.
13725         Use (LONG_MAX >> 31 >> 31 == 1) rather than @HAVE_LONG_64BIT@,
13726         and assume long long int is 64 bits if available.  This
13727         speeds up 'configure'.
13728
13729 2006-07-01  Eric Blake  <ebb9@byu.net>
13730
13731         * m4/stdarg.m4 (gl_STDARG_H): Use proper AH_VERBATIM.
13732         Reported by Andreas Buening.
13733
13734 2006-07-01  Eric Blake  <ebb9@byu.net>
13735
13736         * m4/stdarg.m4 (gl_STDARG_H): Properly parenthesize gl_va_copy.
13737
13738 2006-06-30  Jim Hyslop  <jhyslop@dreampossible.ca>  (tiny change)
13739
13740         * lib/getaddrinfo.c: fixed typo
13741
13742 2006-06-29  Jim Meyering  <jim@meyering.net>
13743
13744         * modules/strftime (Maintainer): Add my name, since with the
13745         FPRINTFTIME changes strftime.c has forked from glibc.
13746
13747 2006-06-29  Eric Blake  <ebb9@byu.net>
13748
13749         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Use AC_C_INLINE.
13750
13751 2006-06-29  Eric Blake  <ebb9@byu.net>
13752
13753         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): New file.
13754
13755 2006-06-29  Eric Blake  <ebb9@byu.net>
13756
13757         * lib/stat_.h: New file.
13758
13759 2006-06-29  Eric Blake  <ebb9@byu.net>
13760
13761         * lib/stat_.h (rpl_mkdir): Declare inline, to avoid warnings about
13762         unused static function.
13763
13764 2006-06-29  Eric Blake  <ebb9@byu.net>
13765
13766         * doc/functions.texi (Function Portability): Document missing lstat
13767         on mingw.
13768
13769 2006-06-29  Eric Blake  <ebb9@byu.net>
13770
13771         * MODULES.html.sh: Add sys_stat.
13772         * modules/sys_stat: New module.
13773         * modules/mkstemp (Depends-on): Add sys_stat.
13774
13775 2006-06-29  Derek R. Price  <derek@ximbiot.com>
13776
13777         * m4/strftime.m4: Don't call AC_FUNC_STRFTIME.
13778
13779 2006-06-29  Derek R. Price  <derek@ximbiot.com>
13780
13781         * m4/c-bs-a.m4: Removed.
13782
13783 2006-06-29  Derek R. Price  <derek@ximbiot.com>
13784
13785         * lib/strftime.c: Assume strftime() exists.
13786
13787 2006-06-29  Derek Price  <derek@ximbiot.com>
13788
13789         * modules/c-bs-a: Removed - \a is C89.
13790         * MODULES.html.sh: Remove c-bs-a.
13791
13792 2006-06-29  Bruno Haible  <bruno@clisp.org>
13793
13794         * modules/wcwidth (License): Change to LGPL.
13795
13796 2006-06-28  Simon Josefsson  <jas@extundo.com>
13797
13798         * tests/test-getaddrinfo.c: Test getnameinfo too.  Call WSAStartup
13799         on _WIN32.
13800
13801         * modules/getaddrinfo (Depends-on): Add inet_ntop, needed by
13802         getnameinfo.
13803
13804 2006-06-28  Simon Josefsson  <jas@extundo.com>
13805
13806         * m4/getaddrinfo.m4: Look for getnameinfo prototypes too.
13807
13808 2006-06-28  Simon Josefsson  <jas@extundo.com>
13809
13810         * lib/getaddrinfo.c: Try to load ws2_32.dll on Windows, to find the
13811         functions there.  It will succeed on Windows XP, but on Windows
13812         2000 and (presumably) earlier, it will fail, and use the internal
13813         re-implementation.
13814         (use_win32_p): New function.
13815         (getaddrinfo): Use strtoul on servname, to support numeric ports.
13816         Support AI_NUMERICSERV to disable getservbyname.
13817         (getnameinfo): New function, only supports
13818         NI_NUMERICHOST|NI_NUMERICSERV for now.
13819
13820         * lib/getaddrinfo.h: Test and check for AI_* flags separately, MinGW
13821         only have some of them.  Add AI_NUMERICSERV.  Add prototype for
13822         getnameinfo.
13823
13824 2006-06-28  Eric Blake  <ebb9@byu.net>
13825
13826         * modules/wcwidth: New file.
13827         * modules/mbchar (Depends-on): Add wcwidth.
13828         * modules/mbswidth (Depends-on): Add wcwidth.
13829         * MODULES.html.sh: Add wcwidth.
13830
13831 2006-06-28  Eric Blake  <ebb9@byu.net>
13832
13833         * m4/mbswidth.m4 (gl_MBSDWIDTH): Move wcwidth from here...
13834         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): ...to this new file.
13835
13836 2006-06-28  Eric Blake  <ebb9@byu.net>
13837
13838         * lib/xvasprintf.h: Fix comments.
13839
13840 2006-06-28  Eric Blake  <ebb9@byu.net>
13841
13842         * lib/mbchar.h (wcwidth): Include wcwidth.h.
13843         * lib/mbswidth.c (wcwidth): Move from here...
13844         * lib/wcwidth.h: ...to this new file.
13845
13846 2006-06-28  Derek R. Price  <derek@ximbiot.com>
13847
13848         * m4/savedir.m4: Remove AC_FUNC_CLOSEDIR_VOID requirement.
13849
13850         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Don't require AC_C_CONST, since
13851         it's obsolete.
13852         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME): Likewise.
13853
13854 2006-06-28  Derek R. Price  <derek@ximbiot.com>
13855
13856         * lib/savedir.c (CLOSEDIR): Remove.  All uses changed to closedir.
13857         Autoconf 2.60 says this stuff was obsolete.
13858
13859 2006-06-28  Bruno Haible  <bruno@clisp.org>
13860
13861         * modules/wcwidth (Files): Add m4/wchar_t.m4.
13862
13863 2006-06-28  Bruno Haible  <bruno@clisp.org>
13864
13865         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Also require AC_C_INLINE and
13866         gt_TYPE_WCHAR_T.
13867
13868 2006-06-28  Bruno Haible  <bruno@clisp.org>
13869
13870         * lib/wcwidth.h: Declare nothing if !HAVE_WCHAR_T. Provide a fallback
13871         declaration for wcwidth.
13872         * lib/mbswidth.c: Restore the includes of <wchar.h> and <wctypes.h>.
13873
13874 2006-06-28  Bruno Haible  <bruno@clisp.org>
13875
13876         * lib/mkdtemp.c [MINGW]: Include <io.h>.
13877         (mkdir): Define using _mkdir.
13878
13879 2006-06-28  Bruno Haible  <bruno@clisp.org>
13880
13881         * lib/getaddrinfo.h: Fix POSIX URL.
13882         * lib/getaddrinfo.c (WIN32_NATIVE): New macro. Use it instead of
13883         _WIN32.
13884         (use_win32_p): Make static.
13885         (getaddrinfo): Reject service name if it is empty or does not consist
13886         solely of decimal digits, or if its value is > 65535.
13887         (getnameinfo): Remove useless casts.
13888
13889 2006-06-27  Simon Josefsson  <jas@extundo.com>
13890
13891         * modules/sys_select: New file, suggested by Bruno Haible, Paul
13892         Eggert and Martin Lambers.
13893
13894 2006-06-27  Simon Josefsson  <jas@extundo.com>
13895
13896         * m4/sys_select_h.m4: New file, suggested by Bruno Haible, Paul
13897         Eggert and Martin Lambers.
13898
13899 2006-06-27  Bruno Haible  <bruno@clisp.org>
13900
13901         * m4/stdint.m4 (gl_STDINT_BITSIZEOF): For nonexistent types, set the
13902         result to 0, not to empty.
13903         Reported by Martin Neitzel <neitzel@sco.gaertner.de>.
13904
13905 2006-06-27  Bruno Haible  <bruno@clisp.org>
13906
13907         * lib/stdint_.h (intmax_t, uintmax_t): Undefine before typedef.
13908
13909 2006-06-26  Simon Josefsson  <jas@extundo.com>
13910
13911         * m4/inet_ntop.m4: Don't check for sys/types.h, we assume it is
13912         present.
13913
13914 2006-06-26  Paul Eggert  <eggert@cs.ucla.edu>
13915
13916         * lib/base64.c (B64): Use _ as the formal parameter, not x, to avoid
13917         bug in IBM C V6 for AIX.  Problem reported by Larry Jones in
13918         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00181.html>.
13919
13920 2006-06-26  Mark D. Baushke  <mdb@gnu.org>
13921
13922         * m4/stdint.m4 (gl_STDINT_H): Treat BSD/OS like OpenBSD.
13923
13924 2006-06-26  Bruno Haible  <bruno@clisp.org>
13925
13926         * modules/stdint (Makefile.am): Also substitute HAVE_WCHAR_H.
13927
13928 2006-06-26  Bruno Haible  <bruno@clisp.org>
13929
13930         * m4/stdint.m4 (gl_STDINT_H): Test also for <wchar.h>.
13931
13932 2006-06-26  Bruno Haible  <bruno@clisp.org>
13933
13934         * m4/stdint.m4 (gl_STDINT_H): Don't include <stdint.h> when using the
13935         SGI C compiler in pre-C99 mode.
13936         Suggested by Mark D. Baushke and Larry Jones.
13937
13938 2006-06-26  Bruno Haible  <bruno@clisp.org>
13939
13940         * lib/stdint_.h: Include <wchar.h> if necessary for WCHAR_MIN or
13941         WCHAR_MAX.
13942         Reported by Mark D. Baushke and Larry Jones.
13943
13944 2006-06-26  Bruno Haible  <bruno@clisp.org>
13945
13946         * lib/stdint_.h: Don't include <stdint.h> when using the SGI C compiler
13947         in pre-C99 mode.
13948         Suggested by Mark D. Baushke and Larry Jones.
13949
13950 2006-06-23  Simon Josefsson  <jas@extundo.com>
13951             Bruno Haible  <bruno@clisp.org>
13952
13953         * gnulib-tool (func_emit_lib_Makefile_am): Define MOSTLYCLEANDIRS.
13954         Emit mostlyclean-local rule.
13955         (func_emit_tests_Makefile_am): Likewise.
13956         * modules/sys_socket (Makefile.am): Use MOSTLYCLEANDIRS.
13957
13958 2006-06-23  Mark D. Baushke  <mdb@gnu.org>
13959
13960         * lib/stdint_.h: Treat BSD/OS like OpenBSD.
13961
13962 2006-06-23  Bruno Haible  <bruno@clisp.org>
13963
13964         * tests/test-stdint.c: Update to match ISO C 99 Technical
13965         Corrigendum 1.
13966
13967 2006-06-23  Bruno Haible  <bruno@clisp.org>
13968
13969         * m4/stdint.m4 (gl_STDINT_H): Treat IRIX like OpenBSD.
13970
13971 2006-06-23  Bruno Haible  <bruno@clisp.org>
13972
13973         * lib/stdint_.h: Treat IRIX like OpenBSD.
13974
13975 2006-06-23  Bruno Haible  <bruno@clisp.org>
13976
13977         * lib/stdint_.h (UINT8_C, UINT16_C, UINT32_C): Define according to
13978         ISO C 99 Technical Corrigendum 1.
13979
13980 2006-06-22  Simon Josefsson  <jas@extundo.com>
13981
13982         * m4/sockpfaf.m4: Include winsock2.h too, to make it work under
13983         MinGW.
13984
13985 2006-06-22  Paul Eggert  <eggert@cs.ucla.edu>
13986
13987         * lib/glob.c (collated_compare): Remove 'const' uses that weren't
13988         needed.  Some compiler complained about some of them.  Problem reported
13989         by Larry Jones in
13990         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00172.html>.
13991
13992 2006-06-21  Simon Josefsson  <jas@extundo.com>
13993
13994         * tests/test-getaddrinfo.c: New file.
13995
13996         * modules/getaddrinfo-tests: New file.
13997
13998         * MODULES.html.sh: Add inet_pton.
13999
14000         * modules/inet_pton: New file.
14001
14002 2006-06-21  Simon Josefsson  <jas@extundo.com>
14003
14004         * m4/getaddrinfo.m4: Don't define WINVER.  Look for gethostbyname in
14005         -lws2_32 too.  Fixes getaddrinfo on Windows 2000, with the price
14006         of using the (limited) gnulib implementation on Windows XP.
14007
14008         * m4/inet_pton.m4: New file.
14009
14010 2006-06-21  Simon Josefsson  <jas@extundo.com>
14011
14012         * lib/getaddrinfo.c (getaddrinfo): Set ai_family in the return
14013         variable.
14014
14015         * lib/socket_.h: Don't define WINVER.
14016
14017         * lib/inet_pton.h, inet_pton.c: New file, taken from glibc but
14018         slightly modified to work in gnulib.
14019
14020 2006-06-21  Simon Josefsson  <jas@extundo.com>
14021
14022         * doc/gnulib.texi (Windows sockets): Add.
14023
14024 2006-06-21  Paul Eggert  <eggert@cs.ucla.edu>
14025
14026         * lib/read-file.c (fread_file): Start with buffer allocation of
14027         0 bytes rather than 1 byte; this simplifies the code.
14028         Don't invoke feof; it's not needed.  Refactor to avoid duplicate
14029         code to free buffer and save/restore errno.
14030         (internal_read_file): Remove unused local.
14031
14032 2006-06-20  Paul Eggert  <eggert@cs.ucla.edu>
14033
14034         * lib/openat.c (openat): Use ?:, not if, to work around GCC bug 4210
14035         <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=4210>.
14036         Problem reported by Denis Excoffier in
14037         <http://lists.gnu.org/archive/html/bug-tar/2006-06/msg00023.html>.
14038
14039 2006-06-19  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
14040
14041         * modules/sys_socket, modules/socklen: Include sys/types since
14042         FreeBSD 4.x's sys/socket.h needs it.
14043
14044 2006-06-19  Simon Josefsson  <jas@extundo.com>
14045
14046         * lib/inet_ntop.c: Always build inet_ntop4, since inet_ntop6 calls it.
14047
14048 2006-06-19  Paul Eggert  <eggert@cs.ucla.edu>
14049
14050         * lib/alloca_.h (alloca) [defined alloca]: Don't define or declare.
14051
14052 2006-06-19  Bruno Haible  <bruno@clisp.org>
14053
14054         * m4/stdint.m4 (gl_STDINT_H): Enclose the values of FULL_PATH_STDINT_H
14055         and FULL_PATH_INTTYPES_H in angle brackets.
14056         Reported by Mark D. Baushke <mdb@gnu.org>.
14057
14058 2006-06-17  Eric Blake  <ebb9@byu.net>
14059
14060         * m4/rmdir-errno.m4 (gl_FUNC_FMDIR_NOTEMPTY): Assume errno.h declares
14061         errno.
14062
14063 2006-06-17  Bruno Haible  <bruno@clisp.org>
14064
14065         * m4/stdint.m4 (gl_STDINT_H) [FreeBSD >= 5]: Don't include
14066         <sys/inttypes.h>.
14067
14068 2006-06-17  Bruno Haible  <bruno@clisp.org>
14069
14070         * m4/setenv.m4 (gl_PREREQ_SETENV, gl_PREREQ_UNSETENV): Remove test
14071         whether errno is declared. Assume <errno.h> declares errno.
14072
14073 2006-06-17  Bruno Haible  <bruno@clisp.org>
14074
14075         * lib/stdint_.h [FreeBSD >= 5]: Don't include <sys/inttypes.h>.
14076
14077 2006-06-17  Bruno Haible  <bruno@clisp.org>
14078
14079         * lib/stdint_.h (_UINT8_T, _UINT32_T, _UINT64_T): New macros. Fixes a
14080         problem on Solaris 2.5.1.
14081
14082 2006-06-16  Eric Blake  <ebb9@byu.net>
14083
14084         * lib/unsetenv.c [!defined errno]: Assume errno.h declares errno.
14085         * lib/unicodeio.c [!defined errno]: Likewise.
14086         * lib/strtol.c [!defined errno]: Likewise.
14087         * lib/strtod.c [!defined errno]: Likewise.
14088
14089 2006-06-15  Eric Blake  <ebb9@byu.net>
14090
14091         * m4/ssize_t.m4 (gt_TYPE_SSIZE_T): Work in spite of -Werror.
14092
14093 2006-06-15  Eric Blake  <ebb9@byu.net>
14094
14095         * config/srclist.txt (ssize_t.m4): Lose sync.
14096
14097 2006-06-15  Bruno Haible  <bruno@clisp.org>
14098
14099         * modules/stdint (Files): Include m4/full-header-path.m4,
14100         m4/size_max.m4, m4/wchar_t.m4.
14101         (Makefile.am): Many more substitutions.
14102         * modules/stdint-tests: New file.
14103         * tests/test-stdint.c: New file.
14104
14105 2006-06-15  Bruno Haible  <bruno@clisp.org>
14106
14107         * m4/stdint.m4 (gl_STDINT_H): Rewritten to produce a complete stdint.h.
14108         (gl_HEADER_STDINT_H, gl_HEADER_INTTYPES_H, gl_STDINT_CHECK_TYPES,
14109         gl_STDINT_MISSING_BOUND, gl_STDINT_MISSING_BOUNDS,
14110         gl_STDINT_MISSING_BOUNDS2, gl_STDINT_BITSIZEOF, gl_CHECK_TYPES_SIGNED,
14111         gl_CHECK_TYPE_SAME): New macros.
14112
14113 2006-06-15  Bruno Haible  <bruno@clisp.org>
14114
14115         * m4/size_max.m4 (gl_SIZE_MAX): Make it work also when cross-compiling.
14116
14117 2006-06-15  Bruno Haible  <bruno@clisp.org>
14118
14119         * lib/stdint_.h: Rewritten to be fully auto-configured.
14120         Fixes bug on HP-UX/IA64.
14121
14122 2006-06-11  Paul Eggert  <eggert@cs.ucla.edu>
14123
14124         * lib/getdate.y (__attribute__): Don't define if already defined.
14125         Problem reported by Larry Jones.
14126         * lib/utimens.c (__attribute__): Likewise.
14127
14128 2006-06-04  Paul Eggert  <eggert@cs.ucla.edu>
14129
14130         * lib/regexec.c (group_nodes_into_DFAstates): Fix a buffer overrun
14131         reported by Andreas Schwab.
14132
14133 2006-05-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
14134             Bruno Haible  <bruno@clisp.org>
14135
14136         * m4/strndup.m4 (gl_FUNC_STRNDUP): Replace the AC_REPLACE_FUNCS with a
14137         check for the declaration of strnlen and a run test that exposes the
14138         AIX 5.1 strnlen bug.  In the failure case, #define strndup to
14139         rpl_strndup.
14140
14141 2006-05-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
14142             Bruno Haible  <bruno@clisp.org>
14143
14144         * lib/strndup.c (strndup) [!_LIBC]: Don't undefine macro definition.
14145
14146 2006-05-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
14147
14148         * m4/c-strtod.m4 (gl_C99_STRTOLD): Use a link test rather than a
14149         compile test, for Tru64 4.0D.
14150
14151 2006-05-28  Karl Berry  <karl@gnu.org>
14152
14153         * config/srclist.txt (printf-args.c): lose sync.
14154
14155 2006-05-26  Martin Lambers  <marlam@marlam.de>
14156
14157         * lib/getpass.c: Updates the test for the native W32 API, and adds
14158         missing includes, thus fixing compilation warnings.
14159
14160 2006-05-25  Sergey Poznyakoff  <gray@gnu.org.ua>
14161
14162         * lib/exclude.c (exclude_fnmatch): New function.
14163         (excluded_file_name): Call exclude_fnmatch.
14164         * lib/exclude.h (excluded_file_name): New prototype
14165
14166 2006-05-25  Paul Eggert  <eggert@cs.ucla.edu>
14167
14168         * lib/tempname.c (small_open, large_open): New macros.
14169         (__open, __open64) [!_LIBC]: Remove.
14170         (__gen_tempname): Use small_open and large_open instead of __open
14171         and __open64.  This fixes a portability bug on HP-UX 11.11i
14172         reported by Simon Wing-Tang in
14173         <http://lists.gnu.org/archive/html/bug-coreutils/2006-05/msg00114.html>.
14174
14175 2006-05-24  Bruno Haible  <bruno@clisp.org>
14176
14177         * lib/printf-args.c (printf_fetchargs): Turn NULL pointers for
14178         TYPE_STRING and TYPE_WIDE_STRING into a non-NULL replacement.
14179         Reported by Thorsten Maerz <torte@netztorte.de> via
14180         Aaron Stone <aaron@serendipity.cx>.
14181
14182 2006-05-19  Paul Eggert  <eggert@cs.ucla.edu>
14183
14184         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Rename cache variables to use
14185         gl_ rather than jm_.  Link, don't run, so that cross-compiles are
14186         allowed.  Check that resulting type is arithmetic.  Move AC_REQUIRE
14187         and AC_CHECK_HEADERS_ONCE outside of AC_CACHE_CHECK, since they're
14188         not really conditional on the cache.
14189         (gl_PREREQ_NANOSLEEP): Check for sys/select.h.
14190
14191 2006-05-19  Paul Eggert  <eggert@cs.ucla.edu>
14192
14193         * lib/nanosleep.c [HAVE_SYS_SELECT_H]: Include <sys/select.h>.
14194         Use the usual Autoconf way to include <time.h> and/or sys/time.h.
14195         (my_usleep): Don't mishandle maximum value.
14196
14197 2006-05-19  Jim Meyering  <jim@meyering.net>
14198
14199         * lib/getugroups.c: Correct an outdated comment.  From Bruno Haible.
14200
14201 2006-05-17  Bruno Haible  <bruno@clisp.org>
14202
14203         Cygwin portability.
14204         * lib/classpath.c (PATH_SEPARATOR) [CYGWIN]: Define as ':'.
14205
14206 2006-05-17  Bruno Haible  <bruno@clisp.org>
14207
14208         * lib/stdint_.h: Fix recognition of Cygwin.
14209
14210 2006-05-15  Bruno Haible  <bruno@clisp.org>
14211
14212         * build-aux/config.rpath: Improve support for Sun C 5.9 on Linux, based
14213         on libtool patch by Ralf Wildenhues.
14214
14215 2006-05-14  Paul Eggert  <eggert@cs.ucla.edu>
14216
14217         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Fix overly-picky
14218         test for C99 conformance; (bool) 0.5 is an integer constant
14219         expression, but (bool) -0.5 is not.  Problem reported by Fedor
14220         Sergeev in <http://forum.sun.com/jive/thread.jspa?threadID=96202>.
14221
14222 2006-05-11  Simon Josefsson  <jas@extundo.com>
14223
14224         * m4/xvasprintf.m4: Fix obvious typo.
14225
14226 2006-05-11  Jim Meyering  <jim@meyering.net>
14227
14228         * lib/sha1.c (sha1_buffer): Correct comment: s/MD5/SHA1/.  From
14229         James Lemley.
14230
14231 2006-05-10  Simon Josefsson  <jas@extundo.com>
14232
14233         * lib/md4.c: Typo fix, update copyright years.
14234         (K1, K2): Don't use L because it turn computations into 64-bit on
14235         64-bit platforms.
14236
14237 2006-05-10  Paul Eggert  <eggert@cs.ucla.edu>
14238
14239         * lib/crc.c (crc32_update): Remove unnecessary L suffix.
14240         * lib/md4.c (rol): Cast right-shift arg to uint32_t to prevent
14241         unwanted sign propagation, e.g., on hosts with 64-bit int.
14242         There still are some problems with reeelly weird theoretical hosts
14243         (e.g., 33-bit int) but it's not worth worrying about now.
14244         * lib/sha1.c (rol): Likewise.
14245         (K1, K2, K3, K4): Remove unnecessary L suffix.
14246
14247 2006-05-10  Bruno Haible  <bruno@clisp.org>
14248
14249         * lib/des.c: Cast to avoid warnings.
14250
14251 2006-05-09  Bruno Haible  <bruno@clisp.org>
14252
14253         * modules/xvasprintf (Files): Add m4/xvasprintf.m4.
14254         (Depends-on): Depend also on xsize, stdarg.
14255         (configure.ac): Add gl_XVASPRINTF.
14256
14257 2006-05-09  Bruno Haible  <bruno@clisp.org>
14258
14259         * m4/xvasprintf.m4: New file.
14260
14261 2006-05-09  Bruno Haible  <bruno@clisp.org>
14262
14263         * lib/xvasprintf.c: Include limits.h, string.h, xsize.h.
14264         (EOVERFLOW): Define fallback value.
14265         (xstrcat): New function.
14266         (xvasprintf): Recognize the special case of a string concatenation.
14267
14268 2006-05-08  Eric Blake  <ebb9@byu.net>
14269
14270         * gnulib-tool (func_version): Base copyright year on CVS date.
14271         (func_emit_copyright_notice): New function.
14272         (func_emit_lib_Makefile_am): Use it.
14273         (func_emit_tests_Makefile_am): Likewise.
14274         (func_import): Likewise.
14275
14276 2006-05-08  Bruno Haible  <bruno@clisp.org>
14277
14278         * modules/stdarg: New file.
14279         * MODULES.html.sh (func_all_modules): Add section for <stdarg.h>.
14280
14281 2006-05-08  Bruno Haible  <bruno@clisp.org>
14282
14283         * m4/stdarg.m4: New file, from GNU gettext.
14284
14285 2006-05-08  Bruno Haible  <bruno@clisp.org>
14286
14287         * config/srclist.txt (build-aux/config.rpath): different from latest
14288         release.
14289
14290 2006-05-08  Bruno Haible  <bruno@clisp.org>
14291
14292         * build-aux/config.rpath: Add support for Sun C 5.9 on Linux.
14293
14294 2006-05-05  Jim Meyering  <jim@meyering.net>
14295
14296         * m4/warning.m4: New file, derived from bison's file by the same name.
14297
14298 2006-05-03  Bruno Haible  <bruno@clisp.org>
14299
14300         * lib/stdint_.h: Shorter URL.
14301         * lib/inttypes.h: Likewise.
14302
14303 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
14304
14305         * modules/inttypes (Maintainer): Change from Derek Price to 'all'.
14306
14307 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
14308
14309         * lib/verify.h: Document the internals better.  Most of this change
14310         was written by Bruno Haible.
14311
14312 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
14313
14314         * doc/verify.texi: New file, partly based on a proposal by
14315         Bruno Haible.
14316
14317 2006-05-02  Bruno Haible  <bruno@clisp.org>
14318
14319         * m4/full-header-path.m4 (gl_FULL_HEADER_PATH): Move the include_next
14320         test from here...
14321         * m4/_inttypes_h.m4 (gl_INTTYPES_H): ... to here.
14322
14323 2006-04-29  Bruno Haible  <bruno@clisp.org>
14324
14325         * lib/gcd.c: Use WORD_T and GCD instead of unsigned long and gcd.
14326         Suggested by Oskar Liljeblad <oskar@osk.mine.nu>.
14327
14328 2006-04-29  Bruno Haible  <bruno@clisp.org>
14329
14330         * gnulib-tool: Make --update option actually work.
14331
14332 2006-04-29  Bruno Haible  <bruno@clisp.org>
14333
14334         * doc/gcd.texi: New file.
14335         * doc/gnulib.texi: Include it.
14336
14337 2006-04-25  Paul Eggert  <eggert@cs.ucla.edu>
14338
14339         * lib/getdate.y (get_date): When adding relative date, start with the
14340         initial time, not with the result of the first mktime call.
14341
14342 2006-04-25  Bruno Haible  <bruno@clisp.org>
14343
14344         * gnulib-tool (func_import): Output the include directives in three
14345         blocks, sorted separately.
14346         Reported by Ben Pfaff <blp@cs.stanford.edu>.
14347
14348 2006-04-24  Paul Eggert  <eggert@cs.ucla.edu>
14349
14350         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Use prototype
14351         to define main with arguments, for C++.  Reported by Eric Blake.
14352         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC):
14353         Prefer 'int main ()' to 'int main (void)', for C++.
14354         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Likewise.
14355         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Specify a return type
14356         for 'main', for C99 and C++.
14357
14358 2006-04-24  Paul Eggert  <eggert@cs.ucla.edu>
14359
14360         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Use return, not exit.
14361         Don't assume that exit status -1 is valid.
14362         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
14363         * m4/putenv.m4 (gl_FUNC_PUTENV): Likewise.
14364         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Likewise.
14365         * m4/readdir.m4 (GL_FUNC_READDIR): Include <stdlib.h>.
14366         * m4/rename.m4 (vb_FUNC_RENAME): Likewise.
14367         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Use AC_RUN_IFELSE,
14368         not AC_TRY_RUN.  Use return, not exit.  Don't assume that
14369         functions can be used without declaring them, or that you can
14370         exit with status -1.
14371         * m4/utimes-null.m4 (gl_FUNC_UTIMES_NULL): Likewise.
14372
14373 2006-04-24  Karl Berry  <karl@gnu.org>
14374
14375         * config/srclist.txt (longdouble.m4): sync lost.
14376
14377 2006-04-24  Eric Blake  <ebb9@byu.net>
14378
14379         * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Avoid unused variable warning.
14380
14381 2006-04-24  Bruno Haible  <bruno@clisp.org>
14382
14383         * m4/poll.m4 (gl_FUNC_POLL): When cross-compiling, reject also the
14384         poll() implementation in AIX.
14385         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
14386
14387 2006-04-24  Bruno Haible  <bruno@clisp.org>
14388
14389         * m4/poll.m4 (gl_FUNC_POLL): Rearrange code, so that POLL_H gets
14390         assigned exactly once.
14391
14392 2006-04-23  Claudio Fontana  <claudio@gnu.org>
14393             Bruno Haible  <bruno@clisp.org>
14394
14395         * modules/gettext (Makefile.am): Add a -I flag for <libintl.h>.
14396         * gnulib-tool (func_emit_lib_Makefile_am): Emit empty default value
14397         for AM_CPPFLAGS.
14398
14399 2006-04-23  Bruno Haible  <bruno@clisp.org>
14400
14401         * modules/copy-file: Depend on unistd.
14402         * modules/execute: Likewise.
14403         * modules/fatal-signal: Likewise.
14404         * modules/findprog: Likewise.
14405         * modules/mkdtemp : Likewise.
14406         * modules/pipe: Likewise.
14407         * modules/wait-process: Likewise.
14408
14409 2006-04-23  Bruno Haible  <bruno@clisp.org>
14410
14411         * lib/fwriteerror.c (fwriteerror): Call fclose also when an error
14412         condition was already detected.
14413         Reported by Ben Pfaff <blp@cs.stanford.edu>.
14414
14415 2006-04-23  Bruno Haible  <bruno@clisp.org>
14416
14417         * lib/copy-file.c: Include <unistd.h> unconditionally.
14418         * lib/execute.c: Likewise.
14419         * lib/fatal-signal.c: Likewise.
14420         * lib/findprog.c: Likewise.
14421         * lib/mkdtemp.c: Likewise.
14422         * lib/pipe.h: Likewise.
14423         * lib/pipe.c: Likewise.
14424         * lib/wait-process.h: Likewise.
14425
14426 2006-04-23  Bruno Haible  <bruno@clisp.org>
14427
14428         * gnulib-tool (func_usage): Fix --import description. Document
14429         --update.
14430         (func_import): Create temporary file in a temporary directory, if
14431         --dry-run is specified. Silence errors from 'grep' when there are no
14432         m4 files in $m4dir.
14433         (func_create_testdir): Silence errors from 'grep' when there are no
14434         m4 files in $m4dir.
14435         Reported by Karl Berry <karl@freefriends.org>.
14436
14437 2006-04-20  Bruno Haible  <bruno@clisp.org>
14438
14439         * m4/argp.m4 (gl_ARGP): Don't call AC_CHECK_DECLS_ONCE with more than
14440         one argument, so that the code will be portable to Autoconf 2.60.
14441         * m4/getlogin_r.m4 (gl_PREREQ_GETLOGIN_R): Likewise.
14442         * m4/getpass.m4 (gl_PREREQ_GETPASS): Likewise.
14443         * m4/unlocked-io.m4 (gl_FUNC_GLIBC_UNLOCKED_IO): Likewise.
14444
14445 2006-04-19  Derek Price  <derek@ximbiot.com>
14446             Eric Blake  <ebb9@byu.net>
14447
14448         * m4/full-header-path.m4 (gl_FULL_HEADER_PATH): Use </full/path.h>
14449         rather than "/full/path.h".  Update comment to match.  Shorten &
14450         generalize m4_translit call via AS_TR_CPP.
14451
14452 2006-04-19  Derek Price  <derek@ximbiot.com>
14453             Eric Blake  <ebb9@byu.net>
14454
14455         * lib/inttypes.h: Correct grammar in comment.
14456
14457 2006-04-18  Derek Price  <derek@ximbiot.com>
14458             Paul Eggert  <eggert@cs.ucla.edu>
14459
14460         * modules/inttypes: New file.
14461         * modules/strtoimax, modules/strtoumax: Depend on inttypes.
14462
14463 2006-04-18  Derek Price  <derek@ximbiot.com>
14464             Paul Eggert  <eggert@cs.ucla.edu>
14465
14466         * m4/_inttypes_h.m4, m4/full-header-path.m4, m4/include_next.m4:
14467         New files.
14468
14469 2006-04-18  Derek Price  <derek@ximbiot.com>
14470             Paul Eggert  <eggert@cs.ucla.edu>
14471
14472         * lib/inttypes.h: New file.
14473         * lib/strtoimax.c: Assume <inttypes.h>.
14474
14475 2006-04-15  Paul Eggert  <eggert@cs.ucla.edu>
14476
14477         * lib/utimens.c (futimens): glibc futimesat messes up if /proc
14478         isn't mounted.  Problem reported by Kir Kolyshkin.
14479
14480 2006-04-13  Paul Eggert  <eggert@cs.ucla.edu>
14481
14482         * lib/regcomp.c (init_dfa): Don't use wchar_t or wctype_t if
14483         RE_ENABLE_I18N is not defined.  Problem reported by Mark D. Baushke via
14484         Derek R. Price.
14485         * lib/regex.h (RE_DUP_MAX): Update comment to match current
14486         implementation.
14487
14488 2006-04-12  Eric Blake  <ebb9@byu.net>
14489
14490         * modules/time_r (Makefile.am): Remove lib_SOURCES line, as this
14491         is now done automatically by the corresponding Autoconf macro.
14492
14493 2006-04-11  Paul Eggert  <eggert@cs.ucla.edu>
14494
14495         * m4/time_r.m4 (gl_TIME_R): Add AC_LIBSOURCES for time_r.c and
14496         time_r.h.
14497
14498 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
14499
14500         Merge regex changes from libc, removing some of our
14501         POSIX-conformance changes that were rejected and redoing them in a
14502         less-intrusive way.
14503
14504         * lib/regcomp.c (re_compile_internal, init_dfa):
14505         Length arg is now size_t, not Idx.  All uses changed.
14506         (peek_token): Forward decl now says internal_function.
14507         (__re_error_msgid, __re_error_msgid_idx):
14508         Now static rather than extern with attribute_hidden.
14509         (re_compile_pattern) [!defined _LIBC]: Use K&R-style defn.
14510         For some reason libc prefers K&R style defns for external functions.
14511         (regerror) [!defined _LIBC]: Likewise.
14512         (re_set_syntax, re_compile_fastmap, regcomp, regfree, re_comp):
14513         (seek_collating_symbol_entry, lookup_collation_sequence_value):
14514         (build_range_exp, build_collating_symbol):
14515         Use K&R-style defn.
14516         (re_compile_fastmap): Use '\0' to memset, not 0.
14517         (utf8_sb_map): Make the calculations more obvious.
14518         (init_dfa, parse_bracket_exp, build_charclass_op):
14519         Call calloc and cast result, as glibc does.
14520         (init_word_char, fetch_token, peek_token, peek_token_bracket):
14521         (build_range_exp, build_collating_symbol):
14522         Now internal functions.
14523
14524         * lib/regex.c [!defined _LIBC]: Allow compiling with C++ compilers.
14525
14526         * lib/regex.h (__USE_GNU_REGEX): New macro.  Don't depend on
14527         _REGEX_SOURCE any more; depend on _GNU_SOURCE instead.
14528         Don't depend on VMS; depend on __VMS instead, for POSIX
14529         namespace cleanness.
14530         (regoff_t): Define to ssize_t, not long int.
14531
14532         Remove the REG_ macros named below.  Instead, make the old names
14533         (e.g., RE_BACKSLASH_ESCAPE_IN_LISTS) visible only if
14534         __USE_GNU_REGEX.
14535         (REG_BACKSLASH_ESCAPE_IN_LISTS):
14536         (REG_BK_PLUS_QM, REG_CHAR_CLASSES, REG_CONTEXT_INDEP_ANCHORS):
14537         (REG_CONTEXT_INDEP_OPS, REG_CONTEXT_INVALID_OPS):
14538         (REG_DOT_NEWLINE, REG_DOT_NOT_NULL, REG_HAT_LISTS_NOT_NEWLINE):
14539         (REG_INTERVALS, REG_LIMITED_OPS, REG_NEWLINE_ALT):
14540         (REG_NO_BK_BRACES, REG_NO_BK_PARENS, REG_NO_BK_REFS):
14541         (REG_NO_BK_VBAR, REG_NO_EMPTY_RANGES):
14542         (REG_UNMATCHED_RIGHT_PAREN_ORD, REG_NO_POSIX_BACKTRACKING):
14543         (REG_NO_GNU_OPS, REG_DEBUG, REG_INVALID_INTERVAL_ORD):
14544         (REG_IGNORE_CASE, REG_CARET_ANCHORS_HERE):
14545         (REG_CONTEXT_INVALID_DUP, REG_NO_SUB, REG_SYNTAX_EMACS):
14546         (REG_SYNTAX_AWK, REG_SYNTAX_GNU_AWK, REG_SYNTAX_POSIX_AWK):
14547         (REG_SYNTAX_GREP, REG_SYNTAX_EGREP, REG_SYNTAX_POSIX_EGREP):
14548         (REG_SYNTAX_ED, REG_SYNTAX_SED, _REG_SYNTAX_POSIX_COMMON):
14549         (REG_SYNTAX_POSIX_BASIC, REG_SYNTAX_POSIX_MINIMAL_BASIC):
14550         (REG_SYNTAX_POSIX_EXTENDED, REG_SYNTAX_POSIX_MINIMAL_EXTENDED):
14551         (REG_DUP_MAX, REG_UNALLOCATED, REG_REALLOCATE, REG_FIXED):
14552         (REG_NREGS):
14553         Remove.  All uses replaced by the old RE_* names.
14554         (RE_BACKSLASH_ESCAPE_IN_LISTS):
14555         (RE_BK_PLUS_QM, RE_CHAR_CLASSES, RE_CONTEXT_INDEP_ANCHORS):
14556         (RE_CONTEXT_INDEP_OPS, RE_CONTEXT_INVALID_OPS):
14557         (RE_DOT_NEWLINE, RE_DOT_NOT_NULL, RE_HAT_LISTS_NOT_NEWLINE):
14558         (RE_INTERVALS, RE_LIMITED_OPS, RE_NEWLINE_ALT):
14559         (RE_NO_BK_BRACES, RE_NO_BK_PARENS, RE_NO_BK_REFS):
14560         (RE_NO_BK_VBAR, RE_NO_EMPTY_RANGES):
14561         (RE_UNMATCHED_RIGHT_PAREN_ORD, RE_NO_POSIX_BACKTRACKING):
14562         (RE_NO_GNU_OPS, RE_DEBUG, RE_INVALID_INTERVAL_ORD):
14563         (RE_IGNORE_CASE, RE_CARET_ANCHORS_HERE):
14564         (RE_CONTEXT_INVALID_DUP, RE_NO_SUB):
14565         Don't bother having these macros be independent of each others'
14566         values, since they no longer exist in the POSIX name space.
14567
14568         Rename the following member names back to their old names,
14569         unless !__USE_GNU_REGEX.  All uses changed back.
14570         (buffer): Renamed from re_buffer.
14571         (allocated): Renamed from re_allocated.
14572         (used): Renamed from re_used.
14573         (syntax): Renamed from re_syntax.
14574         (fastmap): Renamed from re_fastmap.
14575         (translate): Renamed from re_translate.
14576         (can_be_null): Renamed from re_can_be_null.
14577         (regs_allocated): Renamed from re_regs_allocated.
14578         (fastmap_accurate): Renamed from re_fastmap_accurate.
14579         (no_sub): Renamed from re_no_sub.
14580         (not_bol): Renamed from re_not_bol.
14581         (not_eol): Renamed from re_not_eol.
14582         (newline_anchor): Renamed from re_newline_anchor.
14583         (num_regs): Renamed from rm_num_regs.
14584         (start): Renamed from rm_start.
14585         (end): Renamed from rm_end.
14586
14587         (free_state): Move up a bit.
14588
14589         * lib/regex_internal.h (inline) [__GNUC__ < 3 && defined _LIBC]:
14590         #define to be empty.
14591         (ASCII_CHARS): New macro, replacing all uses of 0x80 and/or SBC_MAX / 2
14592         when that is what is intended.
14593         (SBC_MAX): Define to UCHAR_MAX + 1, not 256.
14594         (__re_error_msgid, __re_error_msgid_idx): Remove decls; not needed.
14595         (MAX): New macro.
14596         (re_xmalloc, re_calloc, re_xrealloc, re_x2realloc): Remove.
14597         All uses changed back to re_malloc, etc.  It's now the caller's
14598         responsibility to check for overflow; all callers changed.
14599         (re_alloc_oversized, re_x2alloc_oversized, re_xnmalloc, re_xnrealloc):
14600         (re_x2nrealloc): Remove.
14601         (free_state): Remove decl.
14602
14603         * lib/regexc.c (regexec, re_match, re_search, re_match_2, re_search_2):
14604         (re_set_registers, re_exec):
14605         Use K&R-style defn.
14606
14607         2006-01-31  Roland McGrath  <roland@redhat.com>
14608
14609         * lib/regcomp.c (calc_eclosure_iter): Remove dead variables.
14610         Reported by Mike Frysinger <vapier@gentoo.org>.
14611
14612         2006-01-15  Andreas Jaeger  <aj@suse.de>
14613
14614         [BZ #1950]
14615         * lib/regex_internal.c (re_string_reconstruct): Adjust for
14616         build_wcs_upper_buffer change.
14617         (build_wcs_upper_buffer): Change return type.
14618
14619         2005-12-10  Ulrich Drepper  <drepper@redhat.com>
14620
14621         * lib/regex_internal.h: Include <stdint.h> if available.
14622
14623         2005-12-06  Paolo Bonzini  <bonzini@gnu.org>
14624
14625         * lib/regex_internal.h (SIZE_MAX): Provide a default definition.
14626
14627         2005-10-14  Ulrich Drepper  <drepper@redhat.com>
14628
14629         * lib/regcomp.c: Adjust for changed secondary hash function.
14630
14631         2005-09-30  Ulrich Drepper  <drepper@redhat.com>
14632
14633         * lib/regex.h: Pretty printing.
14634         Clean up namespace a bit.
14635
14636         2005-09-30  Jakub Jelinek  <jakub@redhat.com>
14637
14638         * lib/regexec.c (update_cur_sifted_state, check_arrival,
14639         check_arrival_add_next_nodes): Avoid using uninitialized variable.
14640
14641         2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
14642                     Ulrich Drepper  <drepper@redhat.com>
14643
14644         [BZ #1302]
14645         * lib/regex_internal.h (bitset_t): Renamed from bitset.  All uses
14646         changed.
14647         (bitset_word_t): Renamed from bitset_word.  All uses changed.
14648
14649         2005-09-22  Ulrich Drepper  <drepper@redhat.com>
14650
14651         [BZ #281]
14652         * lib/regex.h: Define RE_TRANSLATE_TYPE as unsigned char *.
14653         * lib/regcomp.c: Remove unnecessary uses of
14654         unsigned RE_TRANSLATE_TYPE.
14655         * lib/regex_internal.h: Likewise.
14656         * lib/regex_internal.c: Likewise.
14657         * lib/regexec.c: Likewise.
14658         Based on a patch by Stepan Kasal <kasal@ucw.cz>.
14659
14660         2005-09-07  Ulrich Drepper  <drepper@redhat.com>
14661
14662         * lib/regexec.c (find_recover_state): Remove unnecessary
14663         initialization.
14664         (transit_state_bkref): Make DFA a const pointer.
14665         (get_subexp): Likewise.
14666         (check_arrival): Likewise.
14667         (update_cur_sifted_state): Likewise.
14668         (re_search_internal): Likewise.
14669         (prune_impossible_nodes): Likewise.
14670         (acquire_init_state_context): Likewise.
14671         (proceed_next_node): Likewise.
14672         (set_regs): Likewise.
14673         (free_fail_stack_return): Likewise.
14674         (check_arrival_expand_ecl): Mark DFA parameter as const.
14675         (check_arrival_expand_ecl_sub): Likewise.
14676         (check_subexp_limits): Likewise.
14677         (sub_epsilon_src_nodes):  Likewise.
14678         (add_epsilon_src_nodes):  Likewise.
14679         (merge_state_array): Likewise.
14680         (update_regs): Likewise.
14681         (build_trtable): Likewise.
14682         (sift_states_backward): Mark MCTX parameter as const.
14683         (build_sifted_states): Likewise.
14684         (update_cur_sifted_state): Likewise.
14685         (sift_states_mkref): Likewise.
14686         (check_arrival_expand_ecl): Mark eclosure as const.
14687         (check_dst_limits_calc_pos_1): Likewise.
14688         * lib/regex_internal.h (re_match_context_t): Make dfa a const
14689         pointer.
14690
14691         2005-09-06  Ulrich Drepper  <drepper@redhat.com>
14692
14693         * lib/regexec.c (merge_state_with_log): Define dfa as const pointer.
14694         (transit_state_sb): Likewise.
14695         (transit_state_mb): Likewise.
14696         (sift_states_iter_mb): Likewise.
14697         (check_arrival_add_next_nodes): Likewise.
14698         (check_node_accept_bytes): Change first parameter to pointer-to-const.
14699         [_LIBC] (re_search_2_stub): Use mempcpy.
14700
14701         * lib/regex_internal.c (re_string_reconstruct): Avoid calling
14702         mbrtowc for very simple UTF-8 case.
14703
14704         * lib/regex_internal.c (re_acquire_state): Make DFA pointer arg
14705         a pointer-to-const.
14706         (re_acquire_state_context): Likewise.
14707         * lib/regex_internal.h: Adjust prototypes.
14708
14709         * lib/regex.c: Prevent using C++ compilers.
14710
14711         * lib/regex_internal.c (re_acquire_state): Minor code rearrangement.
14712         (re_acquire_state_context): Likewise.
14713
14714 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
14715
14716         * modules/regex (Depends-on): Add ssize_t.
14717
14718 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
14719
14720         * m4/regex.m4 (gl_REGEX): Check for new glibc interface to
14721         translation table.
14722
14723 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
14724
14725         * doc/gnulib-tool.texi (Modified imports): pathname -> file name.
14726
14727 2006-03-29  Mark D. Baushke  <mdb@gnu.org>
14728             Bruno Haible  <bruno@clisp.org>
14729
14730         * lib/stdint_.h: On OpenBSD, don't redefine types already included in
14731         <sys/types.h> and <inttypes.h>.
14732
14733 2006-03-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
14734
14735         * m4/argz.m4 (gl_FUNC_ARGZ): If we define `error_t', also define
14736         `__error_t_defined', so argp.h will not typedef the former.
14737
14738 2006-03-25  Paul Eggert  <eggert@cs.ucla.edu>
14739
14740         * m4/regex.m4 (gl_REGEX): Don't insist on REG_SYNTAX_POSIX_EGREP,
14741         REG_SYNTAX_EMACS, and REG_IGNORE_CASE.  Settle for the traditional
14742         glibc names.  Even if glibc is changed to conform to POSIX, the
14743         traditional names will be available anyway, since regex depends on
14744         the extensions module.  Also, fix a longstanding typo in the
14745         implementation of Spencer ERE test #75 from grep 2.3.  Problems
14746         reported by Emanuele Giaquinta.  Also, change sense of cached
14747         variable, so that the message makes sense.
14748
14749 2006-03-24  Simon Josefsson  <jas@extundo.com>
14750
14751         * lib/base64.c: Fix problems reported by Eric Blake <ebb9@byu.net>,
14752         including some doc fixes.
14753         (base64_encode_alloc): Fix +1 bug on allocation failures.
14754
14755 2006-03-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
14756
14757         * lib/base64.c (base64_encode): Do not read past end of array with
14758         unsanitized input on systems with CHAR_BIT > 8.
14759
14760 2006-03-24  Eric Blake  <ebb9@byu.net>
14761
14762         * lib/time_r.c (copy_string_result): Remove, as it is no longer used.
14763
14764 2006-03-22  Karl Berry  <karl@gnu.org>
14765
14766         * config/srclist.txt (*setenv.[ch]): get from coreutils.
14767         * config/srclistvars.sh (COREUTILS): new var.
14768
14769 2006-03-17  Jim Meyering  <jim@meyering.net>
14770
14771         * m4/regex.m4 (gl_REGEX): Fix typo in last change:
14772         s/_REGEX_WIDE_OFFSETS/_REGEX_LARGE_OFFSETS/.
14773
14774 2006-03-16  Paul Eggert  <eggert@cs.ucla.edu>
14775
14776         * m4/regex.m4 (gl_REGEX): Don't check for off_t, since the code
14777         no longer needs it.  Instead, check that regoff_t is as least
14778         as wide as ptrdiff_t.
14779
14780         Don't define _REGEX_WIDE_OFFSETS unless using the included regex,
14781         so that our regex.h stays compatible with the installed regex.
14782         This is helpful for installers who configure --without-included-regex.
14783         Problem reported by Emanuele Giaquinta.
14784
14785 2006-03-16  Paul Eggert  <eggert@cs.ucla.edu>
14786
14787         * lib/regex.h (regoff_t) [defined _REGEX_LARGE_OFFSETS]:
14788         Typedef to long int, not to off_, as POSIX will likely change
14789         in that direction.
14790
14791 2006-03-15  Eric Blake  <ebb9@byu.net>
14792
14793         * m4/dirfd.m4 (gl_FUNC_DIRFD): Use AC_REQUIRE for AC_HEADER_DIRENT.
14794
14795 2006-03-13  Sergey Poznyakoff  <gray@gnu.org.ua>
14796
14797         * lib/argp-help.c (validate_uparams): Fix typo
14798         * lib/argp-parse.c (argp_default_options): Consistently begin help
14799         messages with a lowercase letter.
14800
14801 2006-03-11  Paul Eggert  <eggert@cs.ucla.edu>
14802
14803         * lib/time_r.h (asctime_r, ctime_r): Remove.  These functions can
14804         overrun buffers and shouldn't be used (much as gets shouldn't be
14805         used).
14806         * lib/time_r.c (asctime_r, ctime_r): Likewise.
14807
14808 2006-03-08  Simon Josefsson  <jas@extundo.com>
14809
14810         * m4/gc-random.m4: Permit 'no' as variable values and fix warnings,
14811         suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
14812
14813 2006-03-08  Simon Josefsson  <jas@extundo.com>
14814
14815         * m4/gc-random.m4: Call AC_CANONICAL_HOST and use $host_os instead of
14816         $target, suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
14817
14818 2006-03-08  Simon Josefsson  <jas@extundo.com>
14819
14820         * lib/gc-gnulib.c (randomize): Don't open files called 'no', they
14821         signal that configure disabled the device.
14822
14823 2006-03-08  Simon Josefsson  <jas@extundo.com>
14824
14825         * build-aux/maint.mk: Fix refresh-po, to handle no translated
14826         languages.
14827
14828 2006-03-07  Simon Josefsson  <jas@extundo.com>
14829
14830         * modules/getopt (Depends-on): Add unistd.
14831
14832         * modules/unistd: New file.
14833
14834 2006-03-07  Simon Josefsson  <jas@extundo.com>
14835
14836         * modules/gc-random: New file.
14837
14838 2006-03-07  Simon Josefsson  <jas@extundo.com>
14839
14840         * m4/unistd_h.m4: New file.
14841
14842 2006-03-07  Simon Josefsson  <jas@extundo.com>
14843
14844         * m4/readline.m4 (gl_FUNC_READLINE): Rewrite the cached part of the
14845         test to be side-effect free by storing the result in the cache
14846         variable gl_cv_lib_readline, and moving the assignment of
14847         LIBREADLINE and LTLIBREADLINE outside the COMMANDS-TO-SET-IT.
14848         From Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
14849
14850 2006-03-07  Simon Josefsson  <jas@extundo.com>
14851
14852         * m4/gc-random.m4: New file, mostly from gc.m4.  Warn instead of
14853         error on missing devices (the functions will return an error).
14854
14855         * m4/gc.m4: Move random stuff to gc-random.m4
14856
14857 2006-03-07  Simon Josefsson  <jas@extundo.com>
14858
14859         * lib/unistd_.h: New file.
14860
14861 2006-03-07  Simon Josefsson  <jas@extundo.com>
14862
14863         * lib/gc-libgcrypt.c, gc-gnulib.c: Use GC_USE_RANDOM.
14864
14865 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
14866
14867         * m4/unistd_h.m4 (gl_HEADER_UNISTD): Rename, to match modules file.
14868         Problem reported by Juan Manuel Guerrero.
14869
14870 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
14871
14872         * lib/c-stack.c: Include unistd.h unconditionally, since we now assume
14873         the unistd module.
14874         * lib/getlogin_r.c: Likewise.
14875         * lib/getlogin_r.h: Likewise.
14876         * lib/glob.c: Likewise.
14877         * lib/pagealign_alloc.c: Likewise.
14878         * lib/unistd_.h: Remove; no longer needed.
14879
14880 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
14881
14882         * MODULES.html.sh (Support for systems lacking POSIX:2001):
14883         Add unistd.
14884         * modules/c-stack (Depends-on): Add unistd.
14885         * modules/getlogin_r: Likewise.
14886         * modules/glob: Likewise.
14887         * modules/pagealign_alloc: Likewise.
14888         * modules/unistd (Files): Remove lib/unistd_.h.
14889         (EXTRA_DIST): Remove.
14890         (unistd.h): Create using 'echo' rather than 'cp', so that we don't
14891         need unistd_.h.
14892         (MOSTLYCLEANFILES): Remove unistd.h-t.
14893
14894 2006-03-03  Simon Josefsson  <jas@extundo.com>
14895
14896         * build-aux/maint.mk: Add several syntax checks from CoreUtils.
14897
14898 2006-03-03  Simon Josefsson  <jas@extundo.com>
14899
14900         * build-aux/maint.mk: Add refresh-po rule, based on ideas from
14901         libidn and bison.
14902
14903 2006-03-03  Simon Josefsson  <jas@extundo.com>
14904
14905         * build-aux/maint.mk: Add indent target.
14906
14907 2006-03-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de> (tiny change)
14908
14909         * m4/poll.m4 (gl_FUNC_POLL): If we deem poll(2) unacceptable, use
14910         our replacement poll.h in any case, to avoid a differing
14911         declaration from a system header.  Seen on AIX.
14912
14913 2006-03-01  Simon Josefsson  <jas@extundo.com>
14914
14915         * lib/readline.c: Fix typo, tiny patch from Stepan Kasal
14916         <kasal@ucw.cz>.
14917
14918 2006-03-01  Paul Eggert  <eggert@cs.ucla.edu>
14919
14920         * modules/gettime (Depends-on): Add extensions module.
14921         * modules/nanosleep (Depends-on): Likewise.
14922         * modules/settime (Depends-on): Likewise.
14923
14924 2006-03-01  Paul Eggert  <eggert@cs.ucla.edu>
14925
14926         * m4/clock_time.m4 (gl_CLOCK_TIME): Require gl_USE_SYSTEM_EXTENSIONS,
14927         not merely AC_GNU_SOURCE, for the benefit of Solaris 10 when compiled
14928         pedantically.
14929         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
14930         * m4/timespec.m4 (gl_TIMESPEC): Likewise.
14931
14932         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Use "=" with "test",
14933         not "==".  Reported by Ralf Wildenhues.
14934
14935 2006-03-01  Karl Berry  <karl@gnu.org>
14936
14937         * doc/Copyright/request-*: new files, synced from gnuorg.
14938
14939 2006-03-01  Karl Berry  <karl@gnu.org>
14940
14941         * config/srclist.txt (Copyright/*): new entries.
14942
14943 2006-02-28  Simon Josefsson  <jas@extundo.com>
14944
14945         * lib/getopt.c: Protect #include of unistd.h, for MSVS.
14946
14947 2006-02-27  Simon Josefsson  <jas@extundo.com>
14948
14949         * lib/base64.h: Indent #define's.  From Jim Meyering
14950         <jim@meyering.net>.
14951
14952 2006-02-27  Jim Meyering  <jim@meyering.net>
14953
14954         Revert the change of 2006-02-24, so these files can continue
14955         to be sync'd from gettext.
14956         * lib/mkdtemp.c, setenv.c, unsetenv.c: *Un*-normalize inclusion
14957         of `config.h'.
14958
14959 2006-02-26  Paul Eggert  <eggert@cs.ucla.edu>
14960
14961         * modules/intprops: New file.
14962         * MODULES.html.sh (Numeric conversion functions <stdlib.h>):
14963         Add intprops.
14964         * modules/getloadavg (Files): Remove lib/intprops.h.
14965         (Depends-on): Add intprops.
14966         * modules/human: Likewise.
14967         * modules/inttostr: Likewise.
14968         * modules/openat: Likewise.
14969         * modules/sig2str: Likewise.
14970         * modules/userspec: Likewise.
14971         * modules/utimecmp: Likewise.
14972         * modules/xnanosleep: Likewise.
14973         * modules/xstrtol: Likewise.
14974
14975 2006-02-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny changes)
14976
14977         * modules/xstrtod: Omit xstrtod.h, xstrtod.c; they're in LIB_SOURCES.
14978         * modules/lock-tests (TESTS): Use $(EXEEXT).
14979         * modules/tls-tests: Likewise.
14980         * modules/argp-tests: Likewise.
14981         (check_PROGRAMS): New var, replacing...
14982         (noinst_PROGRAMS, test_argp_SOURCES): Remove.
14983
14984 2006-02-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
14985
14986         * lib/mkdtemp.c, lib/setenv.c, lib/unsetenv.c: Normalize inclusion of
14987         `config.h'.
14988
14989 2006-02-24  Paul Eggert  <eggert@cs.ucla.edu>
14990
14991         * lib/glob.c: Say "invalid" rather than "illegal" in comments.
14992
14993 2006-02-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
14994
14995         Sync from coreutils.
14996         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Require gl_FUNC_LCHMOD and
14997         gl_CHDIR_SAFER.
14998
14999 2006-02-22  Jim Meyering  <jim@meyering.net>
15000
15001         Sync from coreutils.
15002         * m4/chdir-safer.m4: New file.
15003
15004 2006-02-20  Paul Eggert  <eggert@cs.ucla.edu>
15005
15006         * lib/getcwd.c (AT_FDCWD): Work around a bug in Solaris 9 and 10, where
15007         AT_FDCWD exceeds INT_MAX.
15008         * lib/openat.h (AT_FDCWD): Likewise.
15009
15010 2006-02-17  Eric Blake  <address@hidden>
15011
15012         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Fix caching error.
15013
15014 2006-02-16  Simon Josefsson  <jas@extundo.com>
15015
15016         * modules/getaddrinfo (Depends-on): Add sys_socket.
15017
15018 2006-02-15  Simon Josefsson  <jas@extundo.com>
15019
15020         * build-aux/maint.mk: Add dsyntax-check rule.
15021
15022 2006-02-15  Eric Blake  <ebb9@byu.net>
15023
15024         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Don't attempt using
15025         winsock2.h or ws2tcpip.h when sys/socket.h is present. Fixes
15026         'present but cannot compile' warnings on cygwin.
15027         * m4/socklen.m4 (gl_TYPE_SOCKLEN_T): Use gl_HEADER_SYS_SOCKET.  Don't
15028         use ws2tcpip.h if sys/socket.h works.
15029         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Use gl_HEADER_SYS_SOCKET.
15030         (gl_GETADDRINFO): Don't use ws2tcpip.h when sys/socket.h is present.
15031
15032 2006-02-14  Simon Josefsson  <jas@extundo.com>
15033
15034         * modules/maintainer-makefile (Files): Rename.
15035
15036         * build-aux/GNUmakefile: Rename Makefile.maint to maint.mk
15037         and (the local) Makefile.cfg to maint-cfg.mk.
15038
15039         * build-aux/Makefile.maint, build-aux/maint.mk: Renamed the former
15040         to the latter.
15041
15042         * modules/maintainer-makefile: New module.
15043
15044         * build-aux/Makefile.maint: New file, from GNU CoreUtils, although
15045         severaly stripped to make it possible to build it up from scratch
15046         with reliable tests.
15047
15048         * build-aux/GNUmakefile: New file, from GNU CoreUtils with some
15049         fixes to permit overriding the default actions when configure and
15050         makefile are not available.
15051
15052 2006-02-14  Paul Eggert  <eggert@cs.ucla.edu>
15053
15054         Sync from coreutils.
15055         * modules/lstat (Depends-on): Don't depend on xalloc.
15056         (License): Change from GPL to LGPL, since this is now simply a
15057         replacement for a libc function.
15058
15059 2006-02-14  Jim Meyering  <jim@meyering.net>
15060
15061         Sync from coreutils.
15062
15063         Eliminate the unwelcome (albeit unlikely) possibility of xmalloc
15064         failure on deficient systems, and simplify gnulib lgpl dependencies.
15065         * lib/lstat.c (rpl_lstat): Rewrite to use stat() in place of the
15066         xmalloc/lstat combination.  Based on a patch from Bruno Haible.
15067
15068         * lib/xalloc-die.c: Remove unused definition of N_.
15069
15070 2006-02-14  Jim Meyering  <jim@meyering.net>
15071
15072         Sync from coreutils.
15073         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): Invoke
15074         AC_CHECK_FUNCS(getmntent) unconditionally so that tests of
15075         $ac_cv_func_getmntent (e.g., in gl_LIST_MOUNTED_FILE_SYSTEMS) need not
15076         double-quote uses of that variable, to accommodate the rare case in
15077         which getmntent is available in none of the libraries checked.  This
15078         happens at least on FreeBSD 5.0.
15079
15080 2006-02-13  Simon Josefsson  <jas@extundo.com>
15081
15082         * gnulib-tool (Usage): Fix --import, from
15083         karl@freefriends.org (Karl Berry).
15084
15085 2006-02-13  Sergey Poznyakoff  <gray@gnu.org.ua>
15086
15087         * lib/argp-fmtstream.c: Restore another bugfix lost on 2005-12-12
15088
15089 2006-02-07  Sergey Poznyakoff  <gray@gnu.org.ua>
15090
15091         * lib/argp-namefrob.h: Restore changes accidentally lost during the
15092         "autoupdate" on 2005-12-12.
15093
15094 2006-02-07  Paul Eggert  <eggert@cs.ucla.edu>
15095
15096         * modules/closeout (Depends-on): Remove atexit.
15097
15098 2006-02-07  Paul Eggert  <eggert@cs.ucla.edu>
15099
15100         * lib/closeout.c (close_stdout): Don't assume 'bool' converts nonzero
15101         ints to 0 or 1, as this isn't true for the stdbool.h substitute.
15102
15103 2006-02-05  Paul Eggert  <eggert@cs.ucla.edu>
15104
15105         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Don't #define
15106         __EXTENSIONS__ if this causes compilation to fail.  Problem
15107         reported by Nelson H. F. Beebe with Solaris 10 and Sun C 5.7
15108         c89 -D_XOPEN_SOURCE -D_XOPEN_SOURCE_EXTENDED.
15109
15110 2006-01-27  Paul Eggert  <eggert@cs.ucla.edu>
15111
15112         * lib/fnmatch.c (L_): Renamed from L, to work around a bug in
15113         Mac OS X 10.3.9 with GCC 3 reported by Claudio Fontana in
15114         <http://lists.gnu.org/archive/html/bug-gnulib/2006-01/msg00074.html>.
15115         All uses changed.
15116
15117 2006-01-26  Simon Josefsson  <jas@extundo.com>
15118
15119         * lib/socket_.h: Set WINVER to 0x0501, to make sure getaddrinfo
15120         prototype is visible on mingw32.
15121
15122         * lib/getaddrinfo.h: Define EAI_ADDRFAMILY and EAI_SYSTEM if not set,
15123         for mingw32.
15124
15125         * lib/gai_strerror.c, getaddrinfo.h: Protect netdb.h #include (for
15126         mingw32).
15127
15128 2006-01-26  Paul Eggert  <eggert@cs.ucla.edu>
15129
15130         * lib/fts.c (diropen): Open with O_NOCTTY | O_NONBLOCK too.  Don't
15131         attempt to open for write; this always fails, at least on POSIX
15132         hosts.  This reinstates the 2006-01-09 change, which was
15133         inadvertently removed.
15134
15135 2006-01-26  Bruno Haible  <bruno@clisp.org>
15136
15137         * gnulib-tool (func_import): Use "trap 'exit $?' instead of "trap :".
15138         Reported by Paul Eggert.
15139
15140 2006-01-26  Bruno Haible  <bruno@clisp.org>
15141             Paul Eggert  <eggert@cs.ucla.edu>
15142
15143         * lib/stdbool_.h (_Bool)
15144         [(! (defined __cplusplus || defined __BEOS__)
15145           && !defined __GNUC__
15146           && !(defined __HP_cc || defined __xlc__
15147                || (defined __SUNPRO_C && (__SUNPRO_C < 0x550 || __STDC__ == 1))
15148                || defined __sgi))]:
15149         #define to signed char in these cases too; this simplifies
15150         the code (so that we don't have to worry about HP-UX, AIX, SunPRO,
15151         etc., separately) and makes it more conservative.
15152
15153 2006-01-25  Simon Josefsson  <jas@extundo.com>
15154
15155         * m4/getaddrinfo.m4: Look for getaddrinfo inside ws2tcip.h and
15156         -lws2_32.  Protect sys/socket.h and netdb.h #include's.  Include
15157         ws2tcpip.h with WINVER=0x0501.  All for mingw32.
15158
15159 2006-01-25  Sergey Poznyakoff  <gray@gnu.org.ua>
15160
15161         * lib/argp-namefrob.h: Bugfix. Remove stray #
15162
15163 2006-01-25  Paul Eggert  <eggert@cs.ucla.edu>
15164
15165         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check for xlc bug if __GCC__ too,
15166         so that we test the test.
15167         Check for yet another HP-UX cc bug involving *bool |= bool.
15168
15169 2006-01-25  Karl Berry  <karl@gnu.org>
15170
15171         * config/srclist.txt (vasnprintf.c): sync lost.
15172
15173 2006-01-25  Jim Meyering  <jim@meyering.net>
15174
15175         Sync from the stable (b5) branch of coreutils:
15176
15177         * lib/fts.c (fts_children): Don't let close() clobber errno from
15178         failed fchdir().
15179
15180         * lib/fts.c (fts_stat): When following a symlink-to-directory,
15181         don't necessarily interpret stat-fails+lstat-succeeds as indicating
15182         a dangling symlink.  That can also happen at least for ELOOP.
15183         The fix: return FTS_SLNONE only when the stat errno is ENOENT.
15184         FYI, this bug predates the inclusion of fts.c in coreutils.
15185
15186         * lib/fts.c (fts_open): Put new maxarglen declaration and uses
15187         in their own block, so pre-c99 compilers don't object.
15188
15189         Avoid the double-free (first in fts_read, second in fts_close) that
15190         would occur when an `active' directory is made inaccessible (e.g.,
15191         via chmod a-x) during a traversal.
15192         * lib/fts.c (fts_read): After a failed fchdir, update sp->fts_cur
15193         before returning.  Reproduce this failure by
15194         mkdir -p a/b; cd a; chmod a-x . b
15195         Reported by Stavros Passas.
15196
15197 2006-01-25  Jim Meyering  <jim@meyering.net>
15198
15199         * lib/fileblocks.c: Remove more useless parentheses.
15200         * lib/readutmp.h: Likewise.
15201
15202 2006-01-25  Bruno Haible  <bruno@clisp.org>
15203
15204         * lib/stdbool_.h (_Bool) [IRIX cc]: Define as 'signed char', to avoid
15205         warnings.
15206         Reported by Paul Eggert.
15207
15208 2006-01-25  Bruno Haible  <bruno@clisp.org>
15209
15210         * gnulib-tool (func_import): Use "trap :" instead of "trap -" to get
15211         rid of a trap command. For Solaris sh.
15212         Reported by Mark D. Baushke <mdb@gnu.org>.
15213
15214 2006-01-24  Simon Josefsson  <jas@extundo.com>
15215
15216         * lib/socket_.h (SHUT_WR, SHUT_RDWR): Don't hardcode, suggested by
15217         Bruno.
15218
15219 2006-01-24  Karl Berry  <karl@gnu.org>
15220
15221         * config/srclist.txt (argp-namefrob.h): sync lost.
15222
15223 2006-01-24  Jim Meyering  <jim@meyering.net>
15224
15225         * modules/openat (Files): Add lib/intprops.h.
15226         From Mark D. Baushke.
15227
15228 2006-01-24  Jim Meyering  <jim@meyering.net>
15229
15230         * m4/openat.m4 (gl_FUNC_OPENAT): Add AC_LIBSOURCES([intprops.h]).
15231         Reported by Mark D. Baushke.
15232
15233 2006-01-24  Jim Meyering  <jim@meyering.net>
15234
15235         * lib/socket_.h: Remove useless parentheses in uses of cpp `defined'.
15236
15237 2006-01-24  Bruno Haible  <bruno@clisp.org>
15238
15239         * modules/strnlen (Maintainer): Change from glibc to all.
15240
15241 2006-01-24  Bruno Haible  <bruno@clisp.org>
15242
15243         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check for IBM and HP-UX bugs.
15244         Patch by Paul Eggert.
15245
15246 2006-01-24  Bruno Haible  <bruno@clisp.org>
15247
15248         * lib/stdbool_.h (_Bool) [__cplusplus]: Don't define if the compiler
15249         already has it.
15250         Report and patch by Albert Chin-A-Young  <china@thewrittenword.com> on
15251         2005-11-26.
15252
15253         * lib/stdbool_.h (_Bool) [HP-UX cc, AIX cc,xlc]: Define as
15254         'signed char' to avoid problems with the built-in _Bool type.
15255         Reported by Paul Eggert on 2005-11-26.
15256
15257 2006-01-24  Bruno Haible  <bruno@clisp.org>
15258
15259         * gnulib-tool (func_import): Avoid constructing complicated sed
15260         expressions inside backquote.
15261         Report and solution by Mark D. Baushke <mdb@gnu.org>.
15262
15263 2006-01-23  Ulrich Drepper  <drepper@redhat.com>
15264
15265         These changes imported from libc.
15266         * lib/getopt.c: Use __fxprintf instead of inline stream orientation
15267         test and two separate function calls.
15268         * lib/strndup.c (__strndup): Add libc_hidden_def.
15269
15270 2006-01-23  Simon Josefsson  <jas@extundo.com>
15271
15272         * modules/lock-tests: Use check_PROGRAMS instead of noinst_PROGRAMS.
15273         Remove the test_*_SOURCES variable: automake infers it by default.
15274         * modules/tls-tests: Likewise.
15275
15276 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
15277
15278         Work around porting bugs reported by Dieter in
15279         <http://lists.gnu.org/archive/html/bug-bison/2006-01/msg00049.html>.
15280         * lib/getopt.c (_NOPROTO): Remove; no longer needed.
15281         Include <stdlib.h> and <unistd.h> in all environments; it's safe now.
15282         Include "getopt.h" first, to check interface.
15283         (getenv): Declare only if defined HAVE_DECL_GETENV &&
15284         !HAVE_DECL_GETENV.
15285         * lib/strndup.c [!_LIBC]: Include "strndup.h" to get prototype.
15286         (__strndup): Revert to K&R-style function dfns, the glibc style.
15287         * lib/strnlen.c: Don't claim it's taken from glibc; it's not.
15288         (strnlen, __strnlen): Remove #defines and #undefs; not needed.
15289         Include strnlen.h first, to get prototype properly.
15290         (strnlen): Renamed from __strnlen.
15291         Remove weak alias.
15292
15293 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
15294
15295         * m4/getopt.m4 (gl_PREREQ_GETOPT): Check for getenv decl.
15296
15297 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
15298
15299         * config/srclist.txt: Adjust to reflect glibc reorganization.
15300         This affects only comments.
15301
15302 2006-01-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
15303
15304          * gnulib-tool, build-aux/csharpcomp.sh.in: Do not pass `-q' to mktemp.
15305          Reported by Bruce Korb <bkorb@gnu.org>.
15306
15307 2006-01-22  Paul Eggert  <eggert@cs.ucla.edu>
15308
15309         * lib/quotearg.c (quotearg_buffer_restyled): Add "default: break;"
15310         to pacify gcc -Wswitch-default.
15311
15312 2006-01-22  Bruno Haible  <bruno@clisp.org>
15313
15314         * lib/vasnprintf.c (VASNPRINTF): In the computation of the size of the
15315         temporary buffer for sprintf, take into account the precision also
15316         for 'd', 'i', 'u', 'o', 'x', 'X'.
15317
15318 2006-01-21  Sergey Poznyakoff  <gray@gnu.org.ua>
15319
15320         * modules/argp-tests: New module
15321         * tests/test-argp.c: New file
15322         * tests/test-argp-2.sh: New file
15323
15324 2006-01-21  Sergey Poznyakoff  <gray@gnu.org.ua>
15325
15326         * lib/argp-help.c (usage_long_opt): Do not print DOC options.
15327         (__argp_base_name): Removed
15328         * lib/argp-namefrob.h (__argp_basename): Removed definition. Was a
15329         typo.
15330         (__argp_base_name): Provide macro definition or extern declaration
15331         depending on the configuration
15332
15333 2006-01-20  Simon Josefsson  <jas@extundo.com>
15334
15335         * modules/inet_ntop (Depends-on): Depend on sys_socket.
15336
15337 2006-01-20  Simon Josefsson  <jas@extundo.com>
15338
15339         * lib/inet_ntop.h: Unconditionally include sys/socket.h.
15340
15341 2006-01-20  Paul Eggert  <eggert@cs.ucla.edu>
15342
15343         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Use -Wl,-z,ignore
15344         rather than -Xlinker -z -Xlinker ignore, as it's more portable.
15345         Suggested by Bruno Haible.
15346
15347 2006-01-20  Karl Berry  <karl@gnu.org>
15348
15349         * config/srclist.txt (argp-fmtstream.h, localcharset.c): comment out
15350         until changes propagate, I guess.
15351
15352 2006-01-19  Simon Josefsson  <jas@extundo.com>
15353
15354         * m4/socklen.m4: Look in ws2tcpip.h too, for mingw32.
15355
15356 2006-01-19  Simon Josefsson  <jas@extundo.com>
15357
15358         * lib/socket_.h: Map SHUT_RD, SHUT_WR, SHUT_RDWR correctly.
15359
15360 2006-01-19  Simon Josefsson  <jas@extundo.com>
15361
15362         * gnulib-tool: Set check_PROGRAMS.
15363
15364         * modules/arcfour-tests, modules/arctwo-tests, modules/crc-tests,
15365         modules/des-tests, modules/gc-arcfour-tests,
15366         modules/gc-arctwo-tests, modules/gc-des-tests,
15367         modules/gc-hmac-md5-tests, modules/gc-hmac-sha1-tests,
15368         modules/gc-md2-tests, modules/gc-md4-tests, modules/gc-md5-tests,
15369         modules/gc-pbkdf2-sha1-tests, modules/gc-rijndael-tests,
15370         modules/gc-sha1-tests, modules/gc-tests, modules/hmac-md5-tests,
15371         modules/hmac-sha1-tests, modules/md2-tests, modules/md4-tests,
15372         modules/md5-tests, modules/readline, modules/rijndael-tests: Use
15373         check_PROGRAMS instead of noinst_PROGRAMS to be able to remove
15374         test_*_SOURCES.
15375
15376 2006-01-18  Simon Josefsson  <jas@extundo.com>
15377
15378         * modules/socklen (Depends-on): Depend on sys_socket.
15379
15380 2006-01-18  Simon Josefsson  <jas@extundo.com>
15381
15382         * modules/arcfour-tests, modules/arctwo-tests, modules/crc-tests,
15383         modules/des-tests, modules/gc-arcfour-tests,
15384         modules/gc-arctwo-tests, modules/gc-des-tests,
15385         modules/gc-hmac-md5-tests, modules/gc-hmac-sha1-tests,
15386         modules/gc-md2-tests, modules/gc-md4-tests, modules/gc-md5-tests,
15387         modules/gc-pbkdf2-sha1-tests, modules/gc-rijndael-tests,
15388         modules/gc-sha1-tests, modules/gc-tests, modules/hmac-md5-tests,
15389         modules/hmac-sha1-tests, modules/md2-tests, modules/md4-tests,
15390         modules/md5-tests, modules/readline, modules/rijndael-tests: Add
15391         $(EXEEXT) to automake TESTS variable, for mingw32.
15392
15393 2006-01-17  Simon Josefsson  <jas@extundo.com>
15394
15395         * modules/socklen (Include): Need sys/socket.h.
15396
15397 2006-01-17  Bruno Haible  <bruno@clisp.org>
15398
15399         * modules/ssize_t (Include): Add <sys/types.h>.
15400
15401 2006-01-16  Paul Eggert  <eggert@cs.ucla.edu>
15402
15403         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Don't use ldd, as
15404         it's not portable and it doesn't work with cross-compiles.
15405         Problem reported by Bruno Haible.  Fix missing-$ typo in
15406         'test "gl_cv_ignore_unused_libraries" ...' that prevented
15407         -zignore from being used with Sun's C compiler.
15408
15409 2006-01-12  Simon Josefsson  <jas@extundo.com>
15410
15411         * lib/base64.c: Fix warning, reported by Bruno Haible
15412         <bruno@clisp.org> and patch by Paul Eggert <eggert@CS.UCLA.EDU>.
15413
15414 2006-01-12  Bruno Haible  <bruno@clisp.org>
15415
15416         * modules/ldd: New file.
15417         * build-aux/ldd.sh.in: New file.
15418         * MODULES.html.sh (Support for building libraries and executables): Add
15419         ldd.
15420
15421 2006-01-12  Bruno Haible  <bruno@clisp.org>
15422
15423         * m4/ldd.m4: New file.
15424
15425 2006-01-12  Bruno Haible  <bruno@clisp.org>
15426
15427         * gnulib-tool (func_import, func_create_testdir): Don't go into an
15428         endless loop while replacing $auxdir with build-aux.
15429
15430 2006-01-11  Simon Josefsson  <jas@extundo.com>
15431
15432         * lib/stdint_.h (SIZE_MAX): Add missing (.
15433
15434 2006-01-11  Paul Eggert  <eggert@cs.ucla.edu>
15435
15436         Sync from coreutils.
15437         * lib/md5.c: Fix commentary typos.
15438         (alignof, UNALIGNED_P): No need for a GCC-specific version.
15439         * lib/md5.h (__attribute__): Remove; unused.
15440         * lib/sha1.c: Fix commentary to match md5 better.
15441         * lib/sha1.h (struct sha1_ctx): Use a word buffer, not a byte buffer,
15442         so that we don't need to worry about alignment.  All uses changed.
15443         This merges the 2005-10-28 md5 change into sha1.
15444
15445 2006-01-11  Jim Meyering  <jim@meyering.net>
15446
15447         Sync from coreutils.
15448         * lib/md5.c (OP): Fix spacing.
15449
15450 2006-01-11  Bruno Haible  <bruno@clisp.org>
15451
15452         Ensure automatic ordering between gl_LOCK and gl_ARGP.
15453         * m4/lock.m4 (gl_LOCK_BODY): Renamed from gl_LOCK.
15454         (gl_LOCK): New macro, requiring gl_LOCK_BODY.
15455
15456 2006-01-11  Bruno Haible  <bruno@clisp.org>
15457
15458         Ensure automatic ordering between gl_LOCK and gl_ARGP.
15459         * gnulib-tool (func_import, func_create_testdir): Put gl_LOCK into
15460         the "early" section as well.
15461
15462 2006-01-11  Bruno Haible  <bruno@clisp.org>
15463
15464         Avoid "ar: no archive members specified" error on MacOS X.
15465         * gnulib-tool (func_modules_add_dummy): New function.
15466         (func_import, func_create_testdir): Invoke it.
15467
15468 2006-01-11  Bruno Haible  <bruno@clisp.org>
15469
15470         * gnulib-tool (func_import, func_create_testdir): Replace build-aux
15471         with $auxdir in AC_CONFIG_FILES statements.
15472
15473 2006-01-11  Bruno Haible  <bruno@clisp.org>
15474
15475         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
15476         Initialize also noinst_HEADERS to empty.
15477
15478 2006-01-11  Bruno Haible  <bruno@clisp.org>
15479
15480         * gnulib-tool (AUTOMAKEPATH, AUTOCONF, ACLOCAL, AUTOMAKE): New
15481         variables.
15482         (func_create_megatestdir): Call aclocal, autoconf, automake here, not
15483         autoreconf.
15484
15485 2006-01-11  Bruno Haible  <bruno@clisp.org>
15486
15487         * gnulib-tool (AUTOCONF, ACLOCAL, AUTOMAKE, AUTORECONF): Make
15488         overridable by the user.
15489         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
15490
15491 2006-01-10  Simon Josefsson  <jas@extundo.com>
15492
15493         * modules/sys_socket: New file.
15494
15495 2006-01-10  Simon Josefsson  <jas@extundo.com>
15496
15497         * m4/sys_socket_h.m4: New file.
15498
15499 2006-01-10  Simon Josefsson  <jas@extundo.com>
15500
15501         * lib/socket_.h: New file.
15502
15503 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
15504
15505         * modules/readutmp (Maintainer): Add myself.
15506
15507 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
15508
15509         * m4/memcoll.m4 (gl_MEMCOLL): Don't require AC_FUNC_MEMCMP, undoing
15510         the 2002-12-31 change.  Problem and fix reported by Bruno Haible.
15511         People who are still concerned with buggy memcmp implementations
15512         can invoke gl_FUNC_MEMCMP themselves.
15513
15514 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
15515
15516         * lib/regex_internal.h (BITSET_WORD_BITS):
15517         Work around a bug in 64-bit PGC (before version 6.1-2), where the
15518         preprocessor mishandles large unsigned values as if they were signed.
15519         Problem reported by Claudio Fontana in
15520         <http://lists.gnu.org/archive/html/bug-gnulib/2005-12/msg00061.html>.
15521
15522 2006-01-10  Jim Meyering  <jim@meyering.net>
15523
15524         Avoid the double-free (first in fts_read, second in fts_close) that
15525         would occur when an `active' directory is made inaccessible (e.g.,
15526         via chmod a-x) during a traversal.
15527         * lib/fts.c (fts_read): After a failed fchdir, update sp->fts_cur
15528         before returning.  Reproduce this failure by
15529         mkdir -p a/b; cd a; chmod a-x . b
15530         Reported by Stavros Passas.
15531
15532         Sync from coreutils.
15533         * lib/sha1.c: Tweak grammar in a comment.
15534
15535 2006-01-10  Jim Meyering  <jim@meyering.net>
15536
15537         * m4/fpending.m4: Also include <stdio.h>, for Dragonfly.
15538         Patch by Joerg Sonnenberger.
15539
15540 2006-01-10  Bruno Haible  <bruno@clisp.org>
15541
15542         * modules/readutmp: Depend on module free.
15543         * modules/strtok_r: Depend on module restrict.
15544
15545 2006-01-10  Bruno Haible  <bruno@clisp.org>
15546
15547         * modules/gettext (configure.ac): Add an invocation of
15548         AM_GNU_GETTEXT_VERSION. Needed since autoreconf is used by gnulib-tool.
15549
15550 2006-01-10  Bruno Haible  <bruno@clisp.org>
15551
15552         * m4/localcharset.m4 (gl_LOCALCHARSET): Also test for getc_unlocked.
15553         Reported by Werner Lemberg <wl@gnu.org>.
15554
15555 2006-01-10  Bruno Haible  <bruno@clisp.org>
15556
15557         * lib/localcharset.c: Update from GNU gettext.
15558
15559 2006-01-10  Bruno Haible  <bruno@clisp.org>
15560
15561         * lib/argp.h (__const): Remove macro. Use const instead.
15562         * lib/argp-fmtstream.h (__const): Likewise.
15563         * lib/glob_.h (__const): Remove macro.
15564         * lib/glob-libc.h: Use const instead of __const.
15565
15566 2006-01-10  Bruno Haible  <bruno@clisp.org>
15567
15568         * gnulib-tool (func_emit_tests_Makefile_am): Emit an empty SUBDIR
15569         variable.
15570         Needed to avoid an automake error regarding the 'gettext' module.
15571
15572 2006-01-09  Simon Josefsson  <jas@extundo.com>
15573
15574         * modules/inet_ntop (Depends-on): Add restrict.
15575
15576 2006-01-09  Simon Josefsson  <jas@extundo.com>
15577
15578         * modules/gc-rijndael-tests (License): Put under LGPL.
15579
15580         * modules/gc-des-tests (License): Likewise.
15581
15582         * modules/gc-arcfour-tests (License): Likewise.
15583
15584         * modules/gc-arctwo-tests (License): Likewise.
15585
15586         * modules/gc-pbkdf2-sha1-tests (License): Likewise.
15587
15588         * modules/gc-hmac-sha1-tests (Files): Likewise.
15589
15590         * modules/gc-hmac-md5-tests (License): Likewise.
15591
15592         * modules/gc-sha1-tests (License): Likewise.
15593
15594         * modules/gc-md5-tests (License): Likewise.
15595
15596         * modules/gc-md4-tests (License): Likewise.
15597
15598         * modules/gc-md2-tests (License): Likewise.
15599
15600         * modules/gc-tests (License): Likewise.
15601
15602         * modules/des-tests (License): Likewise.
15603
15604         * modules/md4-tests (License): Likewise.
15605
15606         * modules/md2-tests (License): Likewise.
15607
15608 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
15609
15610         Sync from coreutils:
15611
15612         * MODULES.html.sh (build_lib): New section, with new lib-ignore module.
15613         * modules/lib-ignore: New file.
15614         * modules/mkdir-p (Files): Add chdir-safer.c, chdir-safer.h, lchmod.h,
15615         chdir-safer.m4, lchmod.m4.
15616         * modules/openat: Add mkdirat.c, openat-priv.h.
15617
15618 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
15619
15620         Sync from coreutils.
15621         * m4/lib-ignore.m4: New file.
15622         * m4/lchmod.m4: New file.
15623
15624 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
15625
15626         Sync from coreutils.
15627         * lib/chdir-long.c (cdb_free): Don't bother trying to open directory
15628         for write access: POSIX says that must fail.
15629         * lib/fts.c (diropen): Likewise.
15630         * lib/save-cwd.c (save_cwd): Likewise.
15631         * lib/chdir-long.c (cdb_free): Open with O_NOCTTY | O_NONBLOCK as
15632         well, for minor improvements on hosts that lack O_DIRECTORY.
15633         * lib/chown.c (rpl_chown) [CHOWN_MODIFIES_SYMLINK]:
15634         Don't try O_WRONLY unless O_RDONLY failed wth EACCES.
15635         Fall back on chown if open failed with EACCES.
15636
15637         * lib/gettime.c (gettime) [!defined OK_TO_USE_1S_CLOCK]:
15638         Report an error at compile-time if only a 1-second nominal clock
15639         resolution is found.
15640
15641         * lib/lchmod.h: New file.
15642         * lib/mkdir-p.c: Include lchmod.h, lchown.h.
15643         (make_dir_parents): Use lchown rather than chown, and
15644         lchmod rather than chmod.
15645
15646         * lib/mountlist.c (ME_DUMMY): "none" and "proc" file systems are
15647         dummies too.  Problem with "none" reported by Bob Proulx.  Problem with
15648         "proc" reported by n0dalus.
15649
15650         * lib/mountlist.c: Include <limits.h>.
15651         (dev_from_mount_options)
15652         [defined MOUNTED_GETMNTENT1 || defined MOUNTED_GETMNTENT2]:
15653         New function.  It no longer assumes "dev=" has the System V meaning
15654         on Linux (since it doesn't).  It also parses "dev=" more carefully.
15655         (read_file_system_list)
15656         [defined MOUNTED_GETMNTENT1 || defined MOUNTED_GETMNTENT2]: Use it.
15657         MOUNTED_GETMNTENT2 is new here; the code didn't used to look for
15658         dev= in that case.
15659
15660         * lib/posixtm.h (PDS_PRE_2000): New macro.
15661         * lib/posixtm.c (year): Arg is now syntax_bits rather than
15662         allow_century.  All usages changed.  Reject dates outside the range
15663         1969-1999 if PDS_PRE_2000 is used.
15664
15665 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
15666
15667         Sync from coreutils.
15668         * doc/getdate.texi (General date syntax): Invalid dates are rejected.
15669         (Time of day items): Mention the possibility of leap seconds.
15670         Problem reported by Dr. David Alan Gilbert.
15671
15672 2006-01-09  Jim Meyering  <jim@meyering.net>
15673
15674         Sync from coreutils.
15675
15676         * lib/version-etc.c (COPYRIGHT_YEAR): Update to 2006.
15677
15678         * lib/chdir-safer.h, lib/chdir-safer.c: New files.
15679
15680         * lib/modechange.c (mode_compile): Reject an invalid mode string
15681         that starts with an octal digit.  From Andreas Gruenbacher.
15682
15683         * lib/openat.c: Include "fcntl--.h" and "unistd--.h", to map open
15684         and dup to open_safer and dup_safer, respectively.
15685         (openat_permissive): Fix typo in comment.
15686
15687         * lib/openat.c: Don't include <stdlib.h>, <unistd.h>, <fcntl.h>,
15688         "gettext.h"; either no longer needed or are guaranteed by openat.h.
15689         (_): Remove; no longer needed.
15690         (openat): Renamed from rpl_openat; no need for rpl_openat
15691         since openat.h renames openat for us.
15692         Replace most of the body with a call to openat_permissive,
15693         to avoid duplicate code.
15694         Port to (probably hypothetical) environments were mode_t is
15695         wider than int.
15696         (openat_permissive): Require mode arg, so that we can check
15697         types better.  Put it just after flags.  Change cwd failure
15698         indicator from pointer-to-bool to pointer-to-errno-value.
15699         All callers changed.
15700         Invoke openat_save_fail and/or openat_restore_fail if
15701         cwd_errno is null, so that openat can call us.
15702         (openat_permissive, fdopendir, fstatat, unlinkat):
15703         Simplify errno handling to avoid some duplicate code,
15704         as it's OK to set errno on success.
15705         * lib/openat.h: Revamp code so that function macros depend on
15706         __OPENAT_PREFIX only, not also on AT_FDCWD.
15707         (openat_ro): Remove.  Caller changed to use openat_permissive.
15708         (openat_permissive): Now a macro, if not a function.
15709         (openat_restore_fail, openat_save_fail): Now always functions,
15710         since mkdirat needs them even if __OPENAT_PREFIX is defined.
15711
15712         * lib/openat-priv.h: New file, defining macros used by mkdirat.c
15713         and openat.c.
15714         * lib/mkdirat.c: Include openat-priv.h.
15715         Remove definitions of macros defined therein.
15716         * lib/openat.c: Likewise.
15717
15718         * lib/mkdirat.c (mkdirat): New file and function.
15719         * lib/openat.h (mkdirat): Declare.
15720
15721         * lib/openat.c (fdopendir): Don't change errno when returning non-NULL.
15722
15723         * lib/openat.h (openat_permissive): Declare.
15724         (openat_ro): Define.
15725
15726         * lib/openat.c (EXPECTED_ERRNO): New macro.
15727         (openat_permissive): New function -- used in remove.c rewrite.
15728         (all functions): Set errno just before returning, only if there
15729         was an actual failure.
15730         Use EXPECTED_ERRNO rather than comparing against only ENOTDIR.
15731
15732         Emulate openat-family functions using Linux's procfs, if possible.
15733         Idea and some code based on Ulrich Drepper's glibc changes.
15734
15735         * lib/openat.c: (BUILD_PROC_NAME): New macro.
15736         Include <stdio.h>, <string.h>, "alloca.h" and "intprops.h".
15737         (rpl_openat): Emulate by trying to open /proc/self/fd/%d/%s,
15738         before falling back on save_cwd and restore_cwd.
15739         (fdopendir, fstatat, unlinkat): Likewise.
15740
15741         * lib/openat.c (fstatat, unlinkat): Perform the syscall directly,
15742         skipping the save_cwd...restore_cwd overhead, if FILE is absolute.
15743
15744         * lib/openat.c (rpl_openat): Use the promoted type (int), not mode_t,
15745         as second argument to va_arg.  Otherwise, some versions of gcc
15746         warn that `if this code is reached, the program will abort'.
15747
15748 2006-01-09  Jim Meyering  <jim@meyering.net>
15749
15750         Sync from coreutils.
15751         * m4/openat.m4 (gl_FUNC_OPENAT): Require and compile mkdirat.c.
15752         Require openat-priv.h.
15753
15754 2006-01-09  Bruno Haible  <bruno@clisp.org>
15755
15756         * modules/strnlen (Include): Use strnlen.h.
15757
15758 2006-01-09  Bruno Haible  <bruno@clisp.org>
15759
15760         * m4/stdint.m4 (gl_STDINT_H): Also test for <sys/bitypes.h>.
15761
15762 2006-01-09  Bruno Haible  <bruno@clisp.org>
15763
15764         * lib/sysexit_.h (EX_OK): New macro.
15765         Suggested by Martin Lambers <marlam@marlam.de>.
15766
15767 2006-01-09  Bruno Haible  <bruno@clisp.org>
15768
15769         * lib/stdint_.h: On Linux libc4 and libc5, include <sys/bitypes.h> and
15770         don't define _STDINT_H_NEED_SIGNED_INT_TYPES.
15771
15772 2006-01-09  Bruno Haible  <bruno@clisp.org>
15773
15774         * lib/stdint_.h (SIZE_MAX): Write the value without involving negative
15775         numbers.
15776
15777 2006-01-09  Bruno Haible  <bruno@clisp.org>
15778
15779         * lib/javacomp.sh.in: Move to ../build-aux/javacomp.sh.in.
15780         * lib/javaexec.sh.in: Move to ../build-aux/javaexec.sh.in.
15781         * lib/csharpcomp.sh.in: Move to ../build-aux/csharpcomp.sh.in.
15782         * lib/csharpexec.sh.in: Move to ../build-aux/csharpexec.sh.in.
15783
15784 2006-01-09  Bruno Haible  <bruno@clisp.org>
15785
15786         * build-aux/javacomp.sh.in: New file, moved from lib/.
15787         * modules/javacomp-script (Files): Update.
15788         (configure.ac): Add AC_CONFIG_FILES invocation.
15789         (EXTRA_DIST): Remove variable.
15790
15791         * build-aux/javaexec.sh.in: New file, moved from lib/.
15792         * modules/javaexec (Files): Update.
15793         (configure.ac): Add AC_CONFIG_FILES invocation.
15794         (EXTRA_DIST): Remove javaexec.sh.in.
15795
15796         * build-aux/csharpcomp.sh.in: New file, moved from lib/.
15797         * modules/csharpcomp-script (Files): Update.
15798         (configure.ac): Add AC_CONFIG_FILES invocation.
15799         (EXTRA_DIST): Remove variable.
15800
15801         * build-aux/csharpexec.sh.in: New file, moved from lib/.
15802         * modules/csharpexec (Files): Update.
15803         (configure.ac): Add AC_CONFIG_FILES invocation.
15804         (EXTRA_DIST): Remove csharpexec.sh.in.
15805
15806 2006-01-09  Andreas Gruenbacher  <agruen@suse.de>
15807
15808         Sync from coreutils.
15809
15810         Add POSIX ACL support
15811         * lib/acl.h (copy_acl, set_acl): Add declarations.
15812         * lib/acl.c (acl_entries): Add fallback implementation for POSIX ACL
15813         systems other than Linux.
15814         (chmod_or_fchmod): New function: use fchmod when possible,
15815         and chmod otherwise.
15816         (file_has_acl): Add a POSIX ACL implementation, with a
15817         Linux-specific subcase.
15818         (copy_acl): Add: copy an acl and S_ISUID, S_ISGID, and
15819         S_ISVTX from one file to another.  Fall back to fchmod/chmod when
15820         acls are unsupported.
15821         (set_acl): Add: set a file's acl and S_ISUID, S_ISGID, and
15822         S_ISVTX to a defined value.  Fall back to fchmod/chmod when acls
15823         are unsupported.
15824
15825 2006-01-09  Andreas Gruenbacher  <agruen@suse.de>
15826
15827         Sync from coreutils.
15828         * m4/acl.m4 (AC_FUNC_ACL): Add POSIX ACL and Linux-specific acl tests.
15829
15830 2006-01-07  Bruno Haible  <bruno@clisp.org>
15831
15832         * gnulib-tool (func_import): Add an AC_PROG_RANLIB dependency to
15833         gl_EARLY.
15834
15835 2006-01-04  Paul Eggert  <eggert@cs.ucla.edu>
15836
15837         * lib/strftime.c (tzname): Don't declare if it is already #defined.
15838         Problem reported for Mingw by Mark Junker.
15839
15840 2006-01-04  Paul Eggert  <eggert@cs.ucla.edu>
15841
15842         * README: Gnulib normally doesn't generate a tarball.
15843
15844 2006-01-03  Paul Eggert  <eggert@cs.ucla.edu>
15845
15846         * lib/xtime.h (xtime_make, xtime_nonnegative_nsec, xtime_nsec): Use
15847         long int, not int, for nanosecond counts, so that people who are
15848         used to POSIX struct timespec won't be surprised.  Reported by Jim
15849         Meyering.
15850
15851 2005-12-28  Bruno Haible  <bruno@clisp.org>
15852
15853         * build-aux/config.rpath: Update from GNU gettext.
15854
15855 2005-12-16  Jim Meyering  <jim@meyering.net>
15856
15857         * modules/fprintftime: New module.
15858         * MODULES.html.sh (Date and time <time.h>): Add fprintftime.
15859
15860 2005-12-16  Jim Meyering  <jim@meyering.net>
15861
15862         * m4/fprintftime.m4: New file.
15863
15864 2005-12-16  Jim Meyering  <jim@meyering.net>
15865
15866         * lib/fprintftime.c, lib/fprintftime.h: New files.
15867
15868 2005-12-15  Simon Josefsson  <jas@extundo.com>
15869
15870         * modules/socklen (configure.ac): Fix M4 macro name, to align with
15871         new m4/socklen.m4.
15872
15873 2005-12-10  Sergey Poznyakoff  <gray@gnu.org.ua>
15874
15875         * m4/argp.m4: Define HAVE_DECL_PROGRAM_INVOCATION_NAME and
15876         HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME
15877
15878 2005-12-10  Sergey Poznyakoff  <gray@gnu.org.ua>
15879
15880         * lib/argp-fmtstream.c (__argp_fmtstream_update): Fix coredump
15881         * lib/argp-help.c (fill_in_uparams): Check if the constructed
15882         struct uparams is valid. Fall back to the default values if it is
15883         not.
15884
15885 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
15886
15887         * modules/argp (Files): Add argp-pin.c
15888         (Depends-on): dirname
15889         (lib_SOURCES): Add argp-pin.c
15890
15891 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
15892
15893         * m4/argp.m4:  Check if program_invocation_name and
15894         program_invocation_short_name are declared and define appropriate
15895         macros if they are not.
15896
15897 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
15898
15899         * lib/argp-help.c (__argp_base_name): New function
15900         (__argp_short_program_name): Rewrite using __argp_base_name
15901         * lib/argp-namefrob.h: Define program_invocation_name and
15902         program_invocation_short_name if requested
15903         (__argp_base_name): Add prototype
15904         * lib/argp-parse.c (argp_def): Use gettext wrappers
15905         (argp_default_parser): Use __argp_base_name
15906         * lib/argp-pin.c: New file. Defines program_invocation_name and
15907         program_invocation_short_name on systems that lack them.
15908
15909 2005-12-07  Paul Eggert  <eggert@cs.ucla.edu>
15910
15911         * m4/stat-time.m4 (gl_STAT_TIME): Add check for
15912         TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC, to fix IRIX 5.3
15913         porting problem reported by Georg Schwarz in
15914         <http://lists.gnu.org/archive/html/bug-coreutils/2005-12/msg00083.html>.
15915
15916 2005-12-07  Paul Eggert  <eggert@cs.ucla.edu>
15917
15918         * lib/stat-time.h (STATE_TIMESPEC, STAT_TIMESPEC_NS): Add check for
15919         TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC, to fix IRIX 5.3
15920         porting problem reported by Georg Schwarz in
15921         <http://lists.gnu.org/archive/html/bug-coreutils/2005-12/msg00083.html>.
15922
15923 2005-12-05  Bruno Haible  <bruno@clisp.org>
15924
15925         * lib/csharpcomp.sh.in (options_csc): For -l option, add a .dll suffix.
15926         * lib/csharpcomp.c (compile_csharp_using_sscli): Likewise.
15927         Reported by Mark Junker <mjscod@gmx.de>.
15928
15929 2005-12-02  Paul Eggert  <eggert@cs.ucla.edu>
15930
15931         * m4/socklen.m4 (gl_TYPE_SOCKLEN_T): Renamed from gl_SOCKLEN_T.
15932         Use implementation from Albert Chin, with some
15933         comments/corrections by Stepan Kasal and myself.
15934
15935 2005-12-02  Bruno Haible  <bruno@clisp.org>
15936
15937         * gnulib-tool (func_import): Accept GPLed build tool modules when
15938         --lgpl is given.
15939         * modules/csharpcomp-script: New file.
15940         * modules/csharpcomp: Depend on it.
15941         * modules/javacomp-script: New file.
15942         * modules/javacomp: Depend on it.
15943         Suggested by Simon Josefsson.
15944
15945 2005-12-01  Paul Eggert  <eggert@cs.ucla.edu>
15946
15947         * m4/regex.m4 (gl_REGEX): Check whether off_t can be used in a switch
15948         statement, to work around an HP-UX 10.20 compiler bug reported by
15949         Peter O'Gorman.
15950
15951 2005-11-29  Paul Eggert  <eggert@cs.ucla.edu>
15952
15953         * modules/savedir (Depends-on): Add openat.
15954
15955 2005-11-29  Paul Eggert  <eggert@cs.ucla.edu>
15956
15957         * lib/stdint_.h (intmax_t) [defined intmax_t]: Do not declare.
15958         (uintmax_t) [defined uintmax_t]: Do not declare.
15959         (SIZE_MAX) [defined SIZE_MAX]: Do not define.
15960         This works around a problem if intmax_t.m4 and/or uintmax_t.m4
15961         and/or size_max.m4 are also used.  Problem reported by Mark D. Baushke.
15962         (SIZE_MAX): Define to ((size_t) -1), not (~(size_t)0), for the
15963         sake of portability to weird hosts that C allows (though we don't
15964         know of any practical examples).
15965
15966         * lib/savedir.h (fdsavedir): New decl.
15967         * lib/savedir.c (fdsavedir, savedirstream): New functions; the latter
15968         contains most of the former guts of savedir.
15969         (savedir): Use savedirstream.
15970         Include "openat.h".
15971
15972 2005-11-25  Paul Eggert  <eggert@cs.ucla.edu>
15973
15974         * modules/obstack (Files): Add m4/ulonglong.m4.
15975         Problem reported by Davide Angelocola.
15976
15977 2005-11-15  Paul Eggert  <eggert@cs.ucla.edu>
15978
15979         * lib/xstrtod.c: Don't bother with #pragma STDC FENV_ACCESS ON, as
15980         coreutils no longer futzes with rounding modes.
15981
15982 2005-11-14  Jim Meyering  <jim@meyering.net>
15983
15984         * lib/mkstemp-safer.c: Include <config.h>, required for possible
15985         replacement of mkstemp.
15986
15987 2005-11-10  Simon Josefsson  <jas@extundo.com>
15988
15989         * lib/readline.c: Remove EOL.
15990
15991 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
15992
15993         * modules/gethrxtime (Depends-on): Add gettime.
15994
15995 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
15996
15997         * m4/gethrxtime.m4 (gl_PREREQ_GETHRXTIME): Don't require AC_HEADER_TIME
15998         or gettimeofday; no longer needed.
15999
16000 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
16001
16002         * lib/gethrxtime.c: Include "timespec.h" rather than the sys/time /
16003         time business.
16004         (gethrxtime) [! (HAVE_NANOUPTIME
16005         || (defined CLOCK_MONOTONIC && HAVE_CLOCK_GETTIME)
16006         || HAVE_MICROUPTIME)]: Fall back on gettime rather than rolling
16007         our own approximation.
16008
16009 2005-11-08  Eric Blake  <ebb9@byu.net>
16010
16011         * lib/inet_ntop.h: Use #if !, not #ifndef, for AC_CHECK_DECLS.
16012
16013 2005-11-08  Eric Blake  <ebb9@byu.net>
16014
16015         * lib/getaddrinfo.h: Use #if !, not #ifndef, for AC_CHECK_DECLS.
16016
16017 2005-11-04  Bruno Haible  <bruno@clisp.org>
16018
16019         * gnulib-tool: Implement --update mode.
16020
16021 2005-10-30  Paul Eggert  <eggert@cs.ucla.edu>
16022
16023         Fix porting problem reported by Theodoros V. Kalamatianos.
16024         * lib/utimens.c (futimens) [HAVE_WORKING_UTIMES && HAVE_FUTIMES]:
16025         Don't assume that futimes failing means we must fail.
16026
16027 2005-10-30  Paul Eggert  <eggert@cs.ucla.edu>
16028
16029         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Revamp wording and local
16030         variables to suggest the intended function of the PATH_MAX check.
16031
16032 2005-10-30  Kean Johnston  <jkj@sco.com>
16033
16034         Trivial changes to support SCO systems.
16035         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Check for MAXPATHLEN as well
16036         as PATH_MAX.
16037         * m4/fpending.m4 (gl_FUNC_FPENDING): Correct check for SCO systems,
16038         where __ptr is null when no I/O is pending.
16039
16040 2005-10-29  Paul Eggert  <eggert@cs.ucla.edu>
16041
16042         * lib/getcwd.c (__getcwd): Don't assume that system calls after readdir
16043         leave errno alone.  Problem reported by Dmitry V. Levin.
16044
16045 2005-10-28  Simon Josefsson  <jas@extundo.com>
16046
16047         * tests/test-gc-md4.c, tests/test-gc-md5.c, tests/test-gc-sha1.c:
16048         Test more.
16049
16050         * tests/test-gc-md2.c, tests/test-md2.c: New files.
16051
16052         * modules/md2, modules/md2-tests: New files.
16053
16054 2005-10-28  Simon Josefsson  <jas@extundo.com>
16055
16056         * m4/inet_ntop.m4: More tests.
16057
16058         * m4/gc-md2.m4, md2.m4: New file.
16059
16060 2005-10-28  Simon Josefsson  <jas@extundo.com>
16061
16062         * lib/inet_ntop.h, inet_ntop.c: Make it work under mingw32: Add
16063         "restrict" keywords, as per POSIX.  Protect the function
16064         declaration around HAVE_DECL_INET_NTOP rather than HAVE_INET_NTOP.
16065         Don't use K&R prototypes.  Check the sprintf return values.
16066         Re-define EAFNOSUPPORT if not present.  Indent.
16067
16068         * lib/md5.h, md5.c: Simplify buffer handling visavi alignment,
16069         suggested by Bruno Haible <bruno@clisp.org>.
16070
16071         * lib/gc-gnulib.c, gc-libgcrypt.c: Check calloc return value.
16072
16073         * lib/gc.h: Add MD2 and RMD160 length defines.  Add prototypes.
16074
16075         * lib/gc-libgcrypt.c: Add MD2 (which is not available through
16076         libgcrypt).
16077
16078         * lib/gc-gnulib.c: Add MD2.  Implement gc_hash_* API.
16079
16080         * lib/md2.h, lib/md2.c: New files.
16081
16082 2005-10-28  Paul Eggert  <eggert@cs.ucla.edu>
16083
16084         * lib/savedir.c (savedir): Don't assume that xrealloc etc. leave
16085         errno alone.  Problem reported by Frederic Jolliton.
16086
16087 2005-10-27  Paul Eggert  <eggert@cs.ucla.edu>
16088
16089         * modules/verify (License): Change from GPL to LGPL.  This is a
16090         tiny module and there are apparently near-equivalents that are
16091         under the BSD license.
16092
16093 2005-10-24  Simon Josefsson  <jas@extundo.com>
16094
16095         * modules/sha1: Relicense to LGPL.
16096
16097 2005-10-24  Simon Josefsson  <jas@extundo.com>
16098
16099         * lib/md4.h: Shrink buffer size, now that we changed the type.
16100
16101 2005-10-23  Simon Josefsson  <jas@extundo.com>
16102
16103         * gnulib-tool (func_import): Fix --tests-base.
16104
16105 2005-10-22  Simon Josefsson  <jas@extundo.com>
16106
16107         * modules/arcfour (Depends-on): Need stdint.
16108
16109 2005-10-22  Simon Josefsson  <jas@extundo.com>
16110
16111         * m4/gc.m4: Don't be fooled by --disable-*random-device parameters,
16112         suggested by Bruno Haible <bruno@clisp.org>.  Fix error messages.
16113
16114 2005-10-22  Simon Josefsson  <jas@extundo.com>
16115
16116         * lib/md4.h, md4.c: Simplify buffer handling visavi alignment,
16117         suggested by Bruno Haible <bruno@clisp.org>.
16118
16119 2005-10-22  Simon Josefsson  <jas@extundo.com>
16120
16121         * lib/crc.h: Include stddef.h, for size_t.
16122
16123 2005-10-22  Simon Josefsson  <jas@extundo.com>
16124
16125         * lib/arcfour.h, arcfour.c: Use fixed size indices in the
16126         arcfour_context struct (simplify test vector testing in GNU
16127         Shishi).
16128
16129 2005-10-21  Simon Josefsson  <jas@extundo.com>
16130
16131         * modules/des, modules/des-tests: New files.
16132
16133         * modules/gc-des, modules/gc-des-tests: New files.
16134
16135         * tests/test-des.c, tests/test-gc-des.c: New file.
16136
16137 2005-10-21  Simon Josefsson  <jas@extundo.com>
16138
16139         * modules/arctwo, modules/arctwo-tests: New files.
16140
16141         * tests/test-arctwo.c: New file.
16142
16143         * modules/gc-arctwo, modules/gc-arctwo-tests: New files.
16144
16145         * tests/test-gc-arctwo.c: New file.
16146
16147 2005-10-21  Simon Josefsson  <jas@extundo.com>
16148
16149         * m4/gc.m4: Don't use libgcrypt if gcrypt.h isn't found, suggested by
16150         Bruno Haible <bruno@clisp.org>.
16151
16152         * m4/gc-des.m4: New file.
16153
16154 2005-10-21  Simon Josefsson  <jas@extundo.com>
16155
16156         * m4/arctwo.m4: New file.
16157
16158         * m4/gc-arctwo.m4: New file.
16159
16160 2005-10-21  Simon Josefsson  <jas@extundo.com>
16161
16162         * lib/rijndael-api-fst.c: Fix bugs in CBC mode for more than one
16163         block.
16164
16165 2005-10-21  Simon Josefsson  <jas@extundo.com>
16166
16167         * lib/hmac-md5.c (hmac_md5): Add comments, suggested by Bruno Haible
16168         <bruno@clisp.org>.
16169
16170         * lib/hmac-sha1.c (hmac_sha1): Likewise.
16171
16172         * lib/crc.c (crc32_update): Actually use crc parameter, suggested by
16173         Bruno Haible <bruno@clisp.org>.
16174
16175         * lib/crc.h: Include stdint.h directly, suggested by Bruno Haible
16176         <bruno@clisp.org>.
16177
16178 2005-10-21  Simon Josefsson  <jas@extundo.com>
16179
16180         * lib/gc-libgcrypt.c (gc_cipher_open): Handle ECB.
16181
16182 2005-10-21  Simon Josefsson  <jas@extundo.com>
16183
16184         * lib/gc-gnulib.c: Support ARCTWO in CBC mode.
16185
16186 2005-10-21  Simon Josefsson  <jas@extundo.com>
16187
16188         * lib/des.h, lib/des.c: New files.
16189
16190         * lib/gc-gnulib.c: Support DES.c
16191
16192 2005-10-21  Simon Josefsson  <jas@extundo.com>
16193
16194         * lib/arctwo.h, lib/arctwo.c: New files.
16195
16196         * lib/gc-gnulib.c: Support ARCTWO.
16197
16198 2005-10-21  Simon Josefsson  <jas@extundo.com>
16199
16200         * lib/arctwo.h (arctwo_setkey): Protect variable in CPP macro,
16201         suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
16202
16203 2005-10-21  Simon Josefsson  <jas@extundo.com>
16204
16205         * gnulib-tool (func_import, func_create_testdir): Define automake
16206         conditional GL_COND_LIBTOOL if libtool is used (to be used by modules
16207         Makefile.am snippet),
16208         suggested by Bruno Haible <bruno@clisp.org>.
16209
16210         * modules/gc (Makefile.am): Use it.
16211
16212 2005-10-21  Bruno Haible  <bruno@clisp.org>
16213
16214         * gnulib-tool (func_import, func_create_testdir): Add quoting to last
16215         patch.
16216
16217 2005-10-19  Simon Josefsson  <jas@extundo.com>
16218
16219         * tests/test-gc-rijndael.c: New file.
16220
16221         * modules/gc-rijndael, modules/gc-rijndael-test: New files.
16222
16223 2005-10-19  Simon Josefsson  <jas@extundo.com>
16224
16225         * tests/test-gc-md4.c, tests/test-gc-md5.c: Test gc_hash_buffer
16226         interface too.
16227
16228 2005-10-19  Simon Josefsson  <jas@extundo.com>
16229
16230         * tests/test-gc-arcfour.c: New file.
16231
16232         * modules/gc-arcfour, modules/gc-arcfour-tests: New files.
16233
16234 2005-10-19  Simon Josefsson  <jas@extundo.com>
16235
16236         * modules/gc-md4, modules/gc-md4-tests: New file.
16237
16238         * tests/test-gc-md4.c: New file.
16239
16240 2005-10-19  Simon Josefsson  <jas@extundo.com>
16241
16242         * m4/gc-md4.m4: New file.
16243
16244 2005-10-19  Simon Josefsson  <jas@extundo.com>
16245
16246         * m4/gc-hmac-md5.m4, gc-hmac-sha1.m4, gc-md4.m4,
16247         gc-md5.m4, gc-sha1.m4: Fix typo, suggested by Stepan Kasal
16248         <kasal@ucw.cz>.
16249
16250 2005-10-19  Simon Josefsson  <jas@extundo.com>
16251
16252         * m4/gc-arcfour.m4: New file.
16253
16254         * m4/gc-rijndael.m4: New file.
16255
16256 2005-10-19  Simon Josefsson  <jas@extundo.com>
16257
16258         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Support MD4.
16259
16260 2005-10-19  Simon Josefsson  <jas@extundo.com>
16261
16262         * lib/gc-gnulib.c: Support ARCFOUR.
16263
16264 2005-10-19  Simon Josefsson  <jas@extundo.com>
16265
16266         * lib/gc-gnulib.c: Implement gc_cipher_* API, currently only with AES
16267         support.
16268
16269         * lib/gc.h: Add ECB enum type.
16270
16271         * lib/hmac-md5.c, hmac-sha1.c: Include memxor.h.
16272
16273 2005-10-18  Simon Josefsson  <jas@extundo.com>
16274
16275         * tests/test-md5.c: New file.
16276
16277         * modules/md5-tests: New file.
16278
16279 2005-10-18  Simon Josefsson  <jas@extundo.com>
16280
16281         * tests/test-md4.c: New file.
16282
16283         * modules/md4, modules/md4-tests: New files.
16284
16285 2005-10-18  Simon Josefsson  <jas@extundo.com>
16286
16287         * m4/md4.m4: New file.
16288
16289 2005-10-18  Simon Josefsson  <jas@extundo.com>
16290
16291         * lib/md4.h, lib/md4.c: New files, based on md5.?.
16292
16293 2005-10-17  Stepan Kasal  <kasal@ucw.cz>
16294
16295         * gnulib-tool (func_create_testdir): Omit the second check whether
16296         BUILT_SOURCES in nonempty.
16297
16298 2005-10-17  Simon Josefsson  <jas@extundo.com>
16299
16300         * tests/test-rijndael.c: New file.
16301
16302 2005-10-17  Simon Josefsson  <jas@extundo.com>
16303
16304         * modules/sha1: Depend on stdint instead of md5.
16305
16306         * modules/md5: Depend on stdint, remove uint32_t.
16307
16308 2005-10-17  Simon Josefsson  <jas@extundo.com>
16309
16310         * modules/gc-sha1-tests: New file.
16311
16312         * tests/test-gc-sha1.c: New file.
16313
16314 2005-10-17  Simon Josefsson  <jas@extundo.com>
16315
16316         * m4/md5.m4: Remove call to uint32_t.m4.
16317
16318 2005-10-17  Simon Josefsson  <jas@extundo.com>
16319
16320         * lib/sha1.c: Use uint32_t instead of md5_uint32.t
16321
16322         * lib/sha1.h: Use stdint.h and uint32_t instead of md5_uint32 from
16323         md5.h.
16324
16325         * lib/md5.c: Use uin32_t.  Fix non-gcc UNALIGNED_P macro.
16326
16327         * lib/md5.h: Use stdint.h and uint32_t.  Doc fix.
16328
16329 2005-10-17  Simon Josefsson  <jas@extundo.com>
16330
16331         * lib/gc.h, gc-libgcrypt.c: Add more hash types/functions.
16332
16333 2005-10-17  Simon Josefsson  <jas@extundo.com>
16334
16335         * lib/gc.h, gc-libgcrypt.c: Add ciphers.
16336
16337 2005-10-17  Simon Josefsson  <jas@extundo.com>
16338
16339         * lib/gc-libgcrypt.c (gc_hmac_sha1): Fix assert.
16340
16341         * lib/gc.h (gc_nonce, gc_pseudo_random, gc_random): Add prototypes.
16342
16343 2005-10-17  Bruno Haible  <bruno@clisp.org>
16344
16345         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Change the return statement so
16346         that it can also be used in a test.
16347
16348 2005-10-16  Bruno Haible  <bruno@clisp.org>
16349
16350         * gnulib-tool (func_emit_tests_Makefile_am): Also define
16351         TESTS_ENVIRONMENT, so that individual tests can augment it.
16352
16353         * gnulib-tool (func_create_testdir): Use an intermediate target for
16354         building $(BUILT_SOURCES). Needed because BUILT_SOURCES can contain
16355         macros, like $(ALLOCA_H), which cannot be passed through the command
16356         line.
16357
16358 2005-10-15  Simon Josefsson  <jas@extundo.com>
16359
16360         * modules/rijndael-tests: New file.
16361
16362         * modules/rijndael: New file.
16363
16364 2005-10-15  Simon Josefsson  <jas@extundo.com>
16365
16366         * m4/rijndael.m4: New file.
16367
16368 2005-10-15  Simon Josefsson  <jas@extundo.com>
16369
16370         * lib/rijndael-api-fst.h, lib/rijndael-api-fst.c: New files.
16371
16372         * lib/rijndael-alg-fst.h, lib/rijndael-alg-fst.c: New files.
16373
16374 2005-10-14  Simon Josefsson  <jas@extundo.com>
16375
16376         * tests/test-arcfour.c: New file.
16377
16378         * modules/arcfour, modules/arcfour-tests: New files.
16379
16380 2005-10-14  Simon Josefsson  <jas@extundo.com>
16381
16382         * m4/arcfour.m4: New file.
16383
16384 2005-10-14  Simon Josefsson  <jas@extundo.com>
16385
16386         * lib/arcfour.h, lib/arcfour.c: New files.
16387
16388 2005-10-14  Roland McGrath  <roland@redhat.com>
16389
16390         Import from libc.  [BZ #1331]
16391         * lib/obstack.h [!__STDC__] (obstack_int_grow_fast): Fix misnamed
16392         macro argument.
16393         Reported by Matej Vela <vela@debian.org>.
16394
16395 2005-10-14  Paul Eggert  <eggert@cs.ucla.edu>
16396
16397         * lib/obstack.c [defined _LIBC && defined USE_IN_LIBIO]: Don't
16398         include <wchar.h>; no longer needed.
16399
16400 2005-10-14  Paul Eggert  <eggert@cs.ucla.edu>
16401
16402         * config/srclist.txt: Add glibc bug 321 for obstack.c, obstack.h.
16403
16404 2005-10-14  Jakub Jelinek  <jakub@redhat.com>
16405         and  Ulrich Drepper  <drepper@redhat.com>
16406
16407         Import from libc.
16408         * lib/obstack.c (print_and_abort) [defined _LIBC]: Use __fxprintf
16409         instead of inline stream orientation test and two separate
16410         function calls.  Pay no attention to USE_IN_LIBIO.
16411
16412 2005-10-13  Simon Josefsson  <jas@extundo.com>
16413
16414         * modules/gc-hmac-md5-tests: New file.
16415
16416         * tests/test-gc-hmac-sha1.c: New file.
16417
16418         * tests/test-gc.c (main): Remove MD5 and HMAC-MD5 tests.
16419
16420         * modules/gc-hmac-md5-tests: New file.
16421
16422         * tests/test-gc-md5.c: New file.
16423
16424         * modules/gc-md5-tests: New file.
16425
16426 2005-10-13  Simon Josefsson  <jas@extundo.com>
16427
16428         * lib/gc-pbkdf2-sha1.c (gc_pbkdf2_sha1): Optimize CEIL computation.
16429         Move memory allocation outside of loop.
16430
16431 2005-10-13  Paul Eggert  <eggert@cs.ucla.edu>
16432
16433         * lib/mkdir-p.c (make_dir_parents): Don't report an error if an
16434         intermediate directory is in a read-only file system.  Problem
16435         reported by Eric Blake.
16436
16437 2005-10-13  Oskar Liljeblad  <oskar@osk.mine.nu>
16438
16439         * modules/human (Depends-on): Depend on xstrtoumax, not xstrtol.
16440
16441 2005-10-12  Simon Josefsson  <jas@extundo.com>
16442
16443         * tests/test-hmac-sha1.c: New file.
16444
16445         * modules/hmac-sha1-tests: New file.
16446
16447         * modules/hmac-sha1: New file.
16448
16449 2005-10-12  Simon Josefsson  <jas@extundo.com>
16450
16451         * modules/gc-sha1: New file.
16452
16453 2005-10-12  Simon Josefsson  <jas@extundo.com>
16454
16455         * modules/gc-pbkdf2-sha1, modules/gc-pbkdf2-sha1-tests: New files.
16456
16457         * tests/test-gc-pbkdf2-sha1.c: New file.
16458
16459 2005-10-12  Simon Josefsson  <jas@extundo.com>
16460
16461         * modules/gc-md5, modules/gc-hmac-md5: New files.
16462
16463         * modules/gc (Files): Remove md5, memxor and hmac files.
16464
16465 2005-10-12  Simon Josefsson  <jas@extundo.com>
16466
16467         * m4/gc-pbkdf2-sha1.m4: New file.
16468
16469         * m4/gc-hmac-sha1.m4: New file.
16470
16471         * m4/gc-sha1: New file.
16472
16473         * m4/hmac-sha1.m4: New file.
16474
16475 2005-10-12  Simon Josefsson  <jas@extundo.com>
16476
16477         * m4/gc-md5.m4, m4/gc-hmac-md5.m4: New files.
16478
16479         * m4/gc.m4: Don't call gl_MD5, gl_MEMXOR or gl_HMAC_MD5.
16480
16481 2005-10-12  Simon Josefsson  <jas@extundo.com>
16482
16483         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Use Gc_rc for return types,
16484         suggested by Bruno Haible <bruno@clisp.org>.
16485
16486 2005-10-12  Simon Josefsson  <jas@extundo.com>
16487
16488         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Support SHA-1.
16489
16490 2005-10-12  Simon Josefsson  <jas@extundo.com>
16491
16492         * lib/gc-pbkdf2-sha1.c: New file.
16493
16494         * lib/gc.h: Add gc_pbkdf2_sha1 prototype.
16495
16496 2005-10-12  Simon Josefsson  <jas@extundo.com>
16497
16498         * lib/gc-libgcrypt.c (gc_hmac_sha1): New function.
16499
16500         * lib/gc-gnulib.c (gc_hmac_sha1): New function.
16501
16502 2005-10-12  Simon Josefsson  <jas@extundo.com>
16503
16504         * lib/gc-gnulib.c: Condition MD5 and HMAC-MD5 use on GC_USE_MD5 and
16505         GC_USE_HMAC_MD5, respectively.
16506
16507         * lib/gc-libgcrypt.c (gc_md5): Fix assert call.
16508         (gc_md5): Fix typo.
16509
16510         * lib/gc.h (gc_hash_buffer): Use gc_hash in prototype.
16511
16512         * lib/gc-libgcrypt.c (gc_hash_buffer): Ditto.
16513
16514         * lib/gc-gnulib.c (gc_hash_buffer): Ditto.
16515
16516 2005-10-12  Bruno Haible  <bruno@clisp.org>
16517
16518         * m4/stdbool.m4 (gl_STDBOOL_H): Define as an alias of AM_STDBOOL_H.
16519         Reported by Stepan Kasal <kasal@ucw.cz>.
16520
16521 2005-10-11  Simon Josefsson  <jas@extundo.com>
16522
16523         * tests/test-crc.c: New file.
16524
16525         * modules/crc, modules/crc-tests: New files.
16526
16527 2005-10-11  Simon Josefsson  <jas@extundo.com>
16528
16529         * m4/crc.m4: New file.
16530
16531 2005-10-11  Simon Josefsson  <jas@extundo.com>
16532
16533         * lib/gc.h: Add gc_hash and gc_hash_buffer.
16534
16535         * lib/gc-gnulib.c (gc_hash_buffer): Add.  Reorder #include's.
16536
16537         * lib/gc-libgcrypt.c (gc_hash_buffer): Add.
16538
16539 2005-10-11  Simon Josefsson  <jas@extundo.com>
16540
16541         * lib/crc.h, lib/crc.c: New files.
16542
16543         * lib/gc.h (gc_hash_buffer): Add doc.
16544
16545 2005-10-11  Bruno Haible  <bruno@clisp.org>
16546
16547         * modules/c-strcasestr: New file.
16548         * MODULES.html.sh (String handling <string.h>): Add c-strcasestr.
16549
16550 2005-10-11  Bruno Haible  <bruno@clisp.org>
16551
16552         * modules/c-strcase: New file.
16553         * MODULES.html.sh (String handling <string.h>): Add c-strcase.
16554
16555 2005-10-11  Bruno Haible  <bruno@clisp.org>
16556
16557         * lib/strcasecmp.c: Include limits.h.
16558         (strcasecmp): Avoid integer overflow on exotic platforms.
16559         * lib/strncasecmp.c: Include limits.h.
16560         (strncasecmp): Avoid integer overflow on exotic platforms.
16561         Reported by Paul Eggert.
16562
16563 2005-10-11  Bruno Haible  <bruno@clisp.org>
16564
16565         * lib/c-strcasestr.h: New file, from GNU gettext.
16566         * lib/c-strcasestr.c: New file, from GNU gettext.
16567
16568 2005-10-11  Bruno Haible  <bruno@clisp.org>
16569
16570         * lib/c-strcase.h: New file, from GNU gettext.
16571         * lib/c-strcasecmp.c: New file, from GNU gettext.
16572         * lib/c-strncasecmp.c: New file, from GNU gettext.
16573
16574 2005-10-10  Paul Eggert  <eggert@cs.ucla.edu>
16575
16576         * modules/mempcpy (License): GPL -> LGPL.
16577         * modules/strchrnul (License): Likewise.
16578         * modules/sysexits (License): Likewise.
16579
16580 2005-10-08  Simon Josefsson  <jas@extundo.com>
16581
16582         * config/srclist.txt: Bug 1423 is closed, but 1439 remains.
16583
16584 2005-10-07  Simon Josefsson  <jas@extundo.com>
16585
16586         * m4/memxor.m4: Remove gl_C_RESTRICT call.
16587
16588 2005-10-06  Simon Josefsson  <jas@extundo.com>
16589
16590         * tests/test-hmac-md5.c: New file.
16591
16592         * modules/hmac-md5-tests: New file.
16593
16594         * modules/hmac-md5: New file.
16595
16596 2005-10-06  Simon Josefsson  <jas@extundo.com>
16597
16598         * m4/hmac-md5.m4: New file.
16599
16600         * m4/memxor.m4: Require gl_C_RESTRICT.
16601
16602 2005-10-06  Simon Josefsson  <jas@extundo.com>
16603
16604         * lib/memxor.c (memxor): Avoid casts and warnings.
16605
16606 2005-10-06  Simon Josefsson  <jas@extundo.com>
16607
16608         * lib/hmac-md5.c: New file.
16609
16610         * lib/hmac.h: New file.
16611
16612 2005-10-06  Paul Eggert  <eggert@cs.ucla.edu>
16613
16614         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check that bool
16615         promotes to int, not unsigned int, to catch the AIX 5.3
16616         compiler bug.
16617
16618 2005-10-05  Simon Josefsson  <jas@extundo.com>
16619
16620         * modules/memxor: New file.
16621
16622         * modules/iconv (Files): Move config.rpath to havelib, it is used
16623         there.
16624
16625         * modules/havelib (Files): Add config.rpath.
16626
16627 2005-10-05  Simon Josefsson  <jas@extundo.com>
16628
16629         * m4/memxor.m4: New file.
16630
16631 2005-10-05  Simon Josefsson  <jas@extundo.com>
16632
16633         * lib/memxor.c (memxor): Fix compiler error.
16634
16635         * lib/md5.h (MD5_DIGEST_SIZE, MD5_BLOCK_SIZE): Add, see also
16636         <http://sourceware.org/bugzilla/show_bug.cgi?id=1423>.
16637
16638         * lib/memxor.h, lib/memxor.c: New files.
16639
16640         * lib/getaddrinfo.h: Don't protect sys/types.h with HAVE_SYS_TYPES_H,
16641         we assume all systems have it, suggested by Jim Meyering
16642         <jim@meyering.net>.  Remove HAVE_SYS_SOCKET_H test too, to see if
16643         any systems lack sys/socket.h; mingw32 is known to lack it, but we
16644         don't support it yet anyway.  Also remove HAVE_NETDB_H test, for
16645         same reasons.
16646
16647 2005-10-05  Simon Josefsson  <jas@extundo.com>
16648
16649         * config/srclist.txt: Add glibc bug 1423 for md5.h.
16650
16651 2005-10-05  Paul Eggert  <eggert@cs.ucla.edu>
16652
16653         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Don't check for
16654         sys/socket.h, netdb.h, sys/types.h; the checks areno longer
16655         needed, since the source code now assumes these .h files.
16656
16657 2005-10-05  Derek Price  <derek@ximbiot.com>
16658
16659         * lib/getdelim.c (SIZE_MAX): New macro, if not already defined.
16660
16661 2005-10-05  Bruno Haible  <bruno@clisp.org>
16662
16663         * modules/stdint (License): Change to LGPL.
16664
16665 2005-10-04  Simon Josefsson  <jas@extundo.com>
16666
16667         * lib/getaddrinfo.h: Move sys/types.h include first, reported by "Mark
16668         D. Baushke" <mdb@gnu.org>.
16669
16670 2005-10-04  Bruno Haible  <bruno@clisp.org>
16671
16672         * lib/verify.h (verify_true): Provide alternative definition for C++.
16673
16674 2005-10-03  Paul Eggert  <eggert@cs.ucla.edu>
16675
16676         * lib/getdelim.c: Include getdelim.h first.  Include <limits.h>.
16677         (SSIZE_MAX): New macro, if not already defined.
16678         (getdelim): Fix buffer overrun on 64-bit hosts with lines longer
16679         than 2 GiB.
16680
16681 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
16682
16683         Sync from coreutils.
16684         * m4/openat.m4 (gl_FUNC_OPENAT): Check for fdopendir.
16685         * m4/ullong_max.m4 (gl_ULLONG_MAX): Simplify so that it merely
16686         defines ULONG_MAX_LT_ULLONG_MAX.  Thomas M.Ott reports that
16687         ULLONG_MAX doesn't work with 2.7.2.1.
16688
16689 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
16690
16691         * modules/xreadlink (Makefile.am): Remove lib_SOURCES.
16692         From Ben Pfaff.
16693
16694         * modules/exclude (Depends-on): Depend on verify.
16695         * modules/strtoimax (Depends-on): Likewise.
16696         * modules/utimecmp (Depends-on): Likewise.
16697
16698 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
16699
16700         * lib/exclude.c: Include verify.h.
16701         (verify): Remove.  All callers changed to use verify.h's version.
16702         * lib/strtoimax.c: Likewise.
16703         * lib/utimecmp.c: Likewis.e
16704
16705         Sync from coreutils.
16706         * lib/.cppi-disable: Add getaddrinfo.h, getdelim.h, getline.h,
16707         getpass.c, mbchar.h, mbuiter.h, strcase.h, strnlen.h, strnlen1.h.
16708         * lib/.cvsignore: Add fts.h, search.h, t-fpending.
16709         * lib/settime.c (settime): Fix { typo in previous patch.  Also, don't
16710         bother returning ENOSYS if settimeofday or stime fails; just let
16711         them return whatever errno they want to return.
16712         * lib/utimens.c: Include unistd.h, for dup2.
16713         (futimens): Fix typo: HAVE_FUTIMESAT was misspelled in an #if.
16714         (futimens) [! HAVE_FUTIMESAT]: If !file, set errno before returning -1.
16715
16716 2005-10-02  Jim Meyering  <jim@meyering.net>
16717
16718         Sync from coreutils.
16719         * m4/utimes.m4 (gl_FUNC_UTIMES): Detect the version of utimes
16720         from glibc-2.2.5 that fails for read-only files.
16721
16722 2005-10-02  Jim Meyering  <jim@meyering.net>
16723
16724         Sync from coreutils.
16725         * lib/fts-cycle.c [HAVE_CONFIG_H]: Include <config.h>.
16726         * lib/openat-die.c: Use `#ifdef HAVE_CONFIG_H', not
16727         `#if HAVE_CONFIG_H'.
16728         * lib/openat.c (fdopendir): Do not define if HAVE_FDOPENDIR.
16729         Remove AT_FDCWD test.
16730         Do not consume the fd unless successful.
16731         * lib/openat.h (fdopendir): Do not define if HAVE_FDOPENDIR.
16732         * lib/settime.c (settime): Move the HAVE_STIME block `up' into an #elif
16733         block, so that we don't even try to compile it if settimeofday is
16734         available.  This works around a compilation failure on OSF1 V5.1,
16735         due to stime requiring a `long int*' while tv_sec is `int'.
16736
16737 2005-10-02  Alfred M. Szmidt  <ams@gnu.org>
16738
16739         Sync from coreutils.
16740         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Compare $gl_have_path...
16741         against `yes', rather than just testing for nonempty.
16742
16743 2005-10-01  Simon Josefsson  <jas@extundo.com>
16744
16745         * m4/getaddrinfo.m4: Include sys/types.h for sys/socket.h, on FreeBSD
16746         and Darwin.
16747
16748         * m4/getaddrinfo.m4: Use AC_GNU_SOURCE, GNU only declare getaddrinfo
16749         as an (POSIX) extension.  Check for sys/types.h, sys/socket.h, and
16750         netdb.h too, needed by getaddrinfo.h.  Check if getaddrinfo,
16751         freeaddrinfo and gai_strerror are declared by the POSIX headers.
16752         Check if struct addrinfo is declared.
16753
16754 2005-10-01  Simon Josefsson  <jas@extundo.com>
16755
16756         * lib/getaddrinfo.h: Protect #include's of sys/socket.h and netdb.h.
16757         Only define struct addrinfo if !HAVE_STRUCT_ADDRINFO.  Protect
16758         AI_* and EAI_* definitions.  Protect function declarations.
16759
16760 2005-10-01  Jim Meyering  <jim@meyering.net>
16761
16762         Sync from coreutils.
16763
16764         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Look for getservbyname in these
16765         libraries [inet nsl socket xnet].  Nelson Beebe reported that with
16766         native cc on Solaris 7, getaddrinfo.c requires -lsocket.
16767         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Check for gethostbyname
16768         in the inet and nsl libraries.  Required on Solaris 5.7.
16769
16770 2005-10-01  Jim Meyering  <jim@meyering.net>
16771
16772         Sync from coreutils.
16773         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Check for gethostbyname
16774         in the inet and nsl libraries.  Required on Solaris 5.7.
16775
16776 2005-10-01  Eric Blake  <ebb9@byu.net>  (tiny change)
16777
16778         * lib/getdelim.c (getdelim): Remove unused variables.
16779
16780 2005-09-29  Paul Eggert  <eggert@cs.ucla.edu>
16781
16782         * lib/xtime.h (XTIME_PRECISION): Now of type int, not long long int,
16783         so that the code works even with ancient cpp.  Portability problem
16784         with GCC 2.7.2.1 reported by Thomas M.Ott.
16785
16786 2005-09-27  Paul Eggert  <eggert@cs.ucla.edu>
16787
16788         * modules/regex (Depends-on): Add strcase.
16789
16790         * modules/gethostname (Licence): Change from GPL to LGPL, since
16791         gethostname.c is a trivial implementation of a standard library
16792         function.
16793         * modules/poll (License): Change from GPL to LGPL, since it's
16794         derived from LGPL code.
16795
16796 2005-09-27  Jim Meyering  <jim@meyering.net>
16797
16798         * lib/getcwd.c: Change #ifdef<TAB>HAVE_CONFIG_H to #ifdef
16799         HAVE_CONFIG_H.
16800
16801         * lib/intprops.h (signed_type_or_expr__): Define.
16802         (INT_STRLEN_BOUND) [__GNUC__]: Use a slightly tighter bound
16803         for unsigned types.
16804
16805 2005-09-26  Paul Eggert  <eggert@cs.ucla.edu>
16806
16807         * lib/verify.h (verify_expr): Remove, replacing with:
16808         (verify_true): New macro that returns true instead of void.
16809         (verify_type__): Remove.
16810         (verify): Use verify_true rather than verify_type__.
16811
16812 2005-09-26  Bruno Haible  <bruno@clisp.org>
16813
16814         * modules/mbchar (Include): Mention that HAVE_WCHAR_H && HAVE_WCTYPE_H
16815         is necessary.
16816         (lib_SOURCES): Remove mbchar.c.
16817         * modules/mbfile (Include): Mention that HAVE_MBRTOWC is necessary.
16818         (Files): Add m4/mbrtowc.m4.
16819         * modules/mbiter: Likewise.
16820         * modules/mbuiter: Likewise.
16821
16822 2005-09-26  Bruno Haible  <bruno@clisp.org>
16823
16824         * m4/mbchar.m4 (gl_MBCHAR): Check for wchar.h and wctype.h. Don't
16825         compile mbchar.c if they are not both present.
16826         * m4/mbfile.m4 (gl_MBFILE): Require gl_FUNC_MBRTOWC.
16827         * m4/mbiter.m4 (gl_MBITER): Likewise.
16828         * m4/strstr.m4 (gl_PREREQ_STRSTR): Use AC_REQUIRE.
16829         * m4/strcasestr.m4 (gl_PREREQ_STRCASESTR): Likewise.
16830         * m4/strcase.m4 (gl_PREREQ_STRCASECMP): Likewise.
16831
16832 2005-09-25  Jim Meyering  <jim@meyering.net>
16833
16834         * modules/inet_ntop (Depends-on): Add socklen, since inet_ntop.c
16835         also uses socklen_t.
16836
16837 2005-09-24  Paul Eggert  <eggert@cs.ucla.edu>
16838
16839         * lib/utimens.c (ENOSYS): Define if not already defined.
16840         (futimens): Support having a null PATH if the file descriptor
16841         is nonnegative.
16842
16843         * lib/regex_internal.h (__GNUC_PREREQ, always_inline, inline, pure):
16844         Remove.
16845         (__attribute): Define to empty unless GCC 3.1 or later.
16846         This works around a core dump on OpenBSD 3.4, which has GCC
16847         2.95.3, which dumps core when given __attribute__(()).  It also
16848         simplifies other tests, since we really don't want to bother with
16849         worrying about which ancient version of GCC supported what.
16850         Original problem reported by Yoann Vandoorselaere, with part of
16851         the fix suggested by Derek Price.
16852
16853 2005-09-24  Jim Meyering  <jim@meyering.net>
16854
16855         * lib/verify.h (verify_type__): Use `unsigned int' as the bitfield type
16856         so we can once again use a positive bitfield width of 1 -- now we
16857         don't have to explain why we were using a bitfield width of 2.
16858
16859 2005-09-23  Paul Eggert  <eggert@cs.ucla.edu>
16860
16861         * m4/regex.m4 (gl_REGEX): If replacing, define regcomp to rpl_regcomp,
16862         and similarly for the other external symbols.  Problem reported
16863         by James Gallager.
16864
16865         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Catch Sun Studio 10u1 on Linux
16866         bug reported by Jim Meyering.
16867
16868         * m4/utimens.m4 (gl_UTIMENS): Check for futimesat.
16869         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Undo previous change;
16870         not needed, since socklen is a prerequisite module.
16871
16872 2005-09-23  Paul Eggert  <eggert@cs.ucla.edu>
16873
16874         * lib/getaddrinfo.c [HAVE_NETINET_IN_H]: Include <netinet/in.h>.
16875         Problem reported by Eric Blake.
16876         (getaddrinfo): Initialize se so that it's not garbage.
16877         Redo internal storage allocation so that it doesn't make unportable
16878         assumptions about alignment.
16879         Fix a memory leak.
16880
16881         * lib/utimens.c (futimens): Use futimesat if available.
16882         Prefer it to futimes since it doesn't have the futimes bug.
16883
16884         * lib/verify.h (GL_CONCAT0, GL_CONCAT): Remove.
16885         (verify): Don't use the __LINE__ trick, as it doesn't work in general.
16886         Instead, declare a function that returns a pointer to an array,
16887         and use verify_type__ to declare the size of the array.
16888         Problem and germ of a solution reported by Bruno Haible.
16889         (verify_type__): Use 2, not 1, for bitfield size, to avoid
16890         a warning with Irix 6.5 cc.  Problem reported by Bruno Haible.
16891
16892 2005-09-23  Jim Meyering  <jim@meyering.net>
16893
16894         Sync from coreutils.
16895         Correct build failure (socklen_t not defined) on at least
16896         mips-sgi-irix6.5 and alphaev67-dec-osf5.1.
16897         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Require gl_SOCKLEN_T.
16898
16899 2005-09-23  Jim Meyering  <jim@meyering.net>
16900
16901         * modules/getaddrinfo (Depends-on): Add socklen.
16902
16903 2005-09-23  Bruno Haible  <bruno@clisp.org>
16904
16905         * tests/test-verify.c: New file.
16906
16907 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
16908
16909         Sync from coreutils.
16910
16911         * modules/argmatch (Depends-on): Add verify.
16912         * modules/getloadavg (Depends-on): Depend on fcntl-safer, not
16913         unistd-safer.
16914         * modules/save-cwd (Depends-on): Likewise.
16915
16916         * modules/openat (Files): Add lib/openat-die.c.
16917         (Depends-on): Remove error, exitfail.
16918         Add dirname.
16919
16920         * modules/verify: New file.
16921         * MODULES.html.sh (Diagnostics <assert.h>): New section,
16922         with "verify" module.
16923
16924 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
16925
16926         Sync from coreutils.
16927
16928         * m4/backupfile.m4, calloc.m4, chown.m4, cloexec.m4, dup2.m4:
16929         * m4/fileblocks.m4, free.m4, ftruncate.m4, getcwd.m4, getpagesize.m4:
16930         * m4/getugroups.m4, group-member.m4, idcache.m4, link-follow.m4:
16931         * m4/mkstemp.m4, mktime.m4, mountlist.m4, nanosleep.m4, pathmax.m4:
16932         * m4/physmem.m4, posixver.m4, putenv.m4, safe-read.m4, same.m4:
16933         * m4/save-cwd.m4, stdio-safer.m4, unistd-safer.m4, unlinkdir.m4:
16934         * m4/userspec.m4, xgetcwd.m4, xreadlink.m4:
16935         Don't bother checking for string.h, stdlib.h, unistd.h.
16936         * m4/fts.m4 (gl_FUNC_FTS_CORE): Don't require
16937         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK; that's now the lstat
16938         module's job.
16939         * m4/jm-macros.m4 (gl_MACROS): Likewise.
16940         * m4/prereq.m4 (gl_PREREQ): Add gl_FUNC_LSTAT.
16941
16942         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): New macro.
16943         (gl_GETDATE): Use it.
16944
16945         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Don't bother checking for unistd.h.
16946
16947 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
16948
16949         Sync from coreutils.
16950
16951         * lib/.cppi-disable: Add regcomp.c, regex_internal.c, regex_internal.h,
16952         stat-time.h.
16953         * lib/argmatch.h: Include verify.h
16954         (ARGMATCH_VERIFY): Use verify rather than rolling our own.
16955         (ARGMATCH_ASSERT): Remove; unused.
16956         * lib/canonicalize.c: Assume STDC_HEADERS.
16957         * lib/exclude.c: Include "strcase.h".
16958         * lib/regex_internal.h [!defined _LIBC]: Likewise.
16959         * lib/getusershell.c: Include stdio--.h rather than stdio.h
16960         and stdio-safer.h.
16961         (getusershell): Call fopen, not fopen_safer.
16962         * lib/save-cwd.c: Include fcntl--.h rather than fcntl.h.
16963         Do not include unistd-safer.h.
16964         (save_cwd): Don't call fd_safer; no longer needed
16965         now that we include fcntl--.h.
16966
16967         * lib/getdate.y (relative_time): New type.
16968         (RELATIVE_TIME_0): New constant.
16969         (parser_control): Use relative_time instead of doing it ourselves.
16970         (%union): Add new relative_time rel member.
16971         (tYEAR_UNIT, tMONTH_UNIT, tHOUR_UNIT, tMINUTE_UNIT, tSEC_UNIT):
16972         Now typeless.
16973         (relunit, relunit_snumber): Now of type rel.
16974         (zone, rel, relunit, get_date): Adjust to above changes.
16975
16976         * lib/getloadavg.c: Include fcntl--.h rather than fcntl.h.
16977         Do not include unistd-safer.h.
16978         (getloadavg): Don't call fd_safer; no longer needed
16979         now that we include fcntl--.h.
16980
16981         * lib/mkdir-p.c (ENOSYS): Define to EEXIST if not defined.
16982         (make_dir_parents): Treat ENOSYS like EEXIST.
16983
16984         Improve quality of diagnostics on restore_cwd failure.
16985         * lib/mkdir-p.h (make_dir): Remove.  All uses replaced by mkdir.
16986         (make_dir_parents): Last arg is now int * (for errno), not bool *.
16987         * lib/mkdir-p.c (make_dir, make_dir_parents): Likewise.
16988         Rewrite "mkdir -p" algorithm to avoid the need for "stat"
16989         each time through the loop.  Do not diagnose restore_cwd failure;
16990         that is the caller's job (and perhaps the caller does not care).
16991
16992         * lib/mkdir-p.c (CLEANUP_CWD, CLEANUP): Remove.
16993         (make_dir_parents): Revamp to avoid need for CLEANUP_CWD, CLEANUP.
16994         If the file already exists but is not a directory, don't bother
16995         to try to make its parents.
16996         Close potential file descriptor leak if we can't chdir("/") (!).
16997         Don't always return true if chdir($PWD) fails; return true only
16998         if the requested action was done successfully (except for the
16999         chdir($PWD)).
17000         Don't log final directory unless we actually made it.
17001         Refactor to avoid duplicate code to fix up permissions.
17002         Don't attempt to fix up parent permissions if chdir($PWD) fails.
17003
17004         * lib/strftime.c (my_strftime): Rewrite the previous change slightly,
17005         to make it a bit faster and (I hope) clearer.
17006         * lib/strftime.c (my_strftime): Add support for %:z, %::z, %:::z.
17007         Fix bug in formats like %2N.
17008
17009         * lib/verify.h: New file.
17010
17011 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
17012
17013         Sync from coreutils.
17014         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Check for netinet/in.h.
17015
17016 2005-09-22  Jim Meyering  <jim@meyering.net>
17017
17018         Sync from coreutils.
17019
17020         * m4/lstat.m4 (gl_FUNC_LSTAT):
17021         Use AC_LIBSOURCES to require lstat.c and lstat.h.
17022         Remove obsolete comment.
17023         * m4/xreadlink.m4: Use AC_LIBSOURCES and AC_LIBOBJ.
17024         * m4/xstrtod.m4: Likewise.
17025
17026         * m4/openat.m4 (gl_FUNC_OPENAT): Add openat-die.c.
17027
17028 2005-09-22  Jim Meyering  <jim@meyering.net>
17029
17030         Sync from coreutils.
17031
17032         * lib/backupfile.c: Use ARGMATCH_VERIFY, just in case.
17033
17034         * lib/posixtm.c (posixtime) [lint]: Initialize *all* of tm0, not just
17035         the .tm_year member, since otherwise gcc-4.0 would now warn about
17036         tm_zone, tm_gmtoff, tm_isdst, tm_yday, tm_wday.
17037
17038         * lib/quotearg.c (quotearg_n_options): Change code to be suboptimal, in
17039         order to avoid an unsuppressible warning from gcc on 64-bit systems.
17040
17041         * lib/getdate.y (get_date): Undo part of the 2005-04-04 change, so that
17042         the command "date -d'2005-03-27 +1 day'" succeeds once again, even
17043         when run in a time zone for which daylight savings time is in effect
17044         for the starting date.
17045
17046         * lib/mkdir-p.c (make_dir_parents): Don't let a failed chdir($PWD)
17047         stop us from restricting permissions of just-created absolute-named
17048         directories.
17049         * lib/mkdir-p.c (CLEANUP_CWD): Return *true*, not false when failing
17050         to restore initial working directory.
17051         * lib/mkdir-p.c (make_dir_parents): New parameter:
17052         different_working_dir, to tell caller if/when we change the working
17053         directory and are unable to return to the initial one.
17054         * lib/mkdir-p.h (make_dir_parents): Update prototype.
17055         * lib/mkdir-p.c (CLEANUP_CWD): Change one more `return 1' to
17056         `return false'.  This fixes a bug introduced on 2004-07-30.
17057
17058         * lib/openat.c (fdopendir): Be sure to close the supplied
17059         file descriptor before returning.  This makes our replacement
17060         implementation a little closer to Solaris's, where fdopendir
17061         ties the file descriptor to the returned DIR* pointer.
17062         * lib/openat.c (unlinkat): New function.
17063         * lib/openat.h (unlinkat): Add prototype.
17064         * lib/openat-die.c (openat_save_fail): Rename from openat_save_die.
17065         (openat_restore_fail): Rename from openat_restore_die.
17066         * lib/openat.c, openat.h: Reflect s/_die/_fail/ renaming.
17067
17068         Provide an alternative to exiting immediately upon save_cwd or
17069         restore_cwd failure.  Now, an application can arrange e.g.,
17070         to perform a longjump in that case.
17071         * lib/openat.c: Include dirname.h.
17072         Use IS_ABSOLUTE_FILE_NAME rather than testing for leading slash.
17073         (rpl_openat, fdopendir, fstatat): Call openat_save_die
17074         and openat_restore_die rather than calling error directly.
17075         Don't include "error.h" or "exitfail.h"; they're no longer needed.
17076
17077         * lib/openat-die.c (openat_save_die, openat_restore_die): New file.
17078         * lib/openat.h (openat_save_die, openat_restore_die): Declare and
17079         define.
17080
17081         * lib/strftime.c [FPRINTFTIME] (fprintftime): Provide a new interface:
17082         size_t fprintftime (FILE *fp, char const *fmt, struct tm const *tm,
17083                             int utc, int nanoseconds);
17084         Background:
17085         date should not have to allocate a megabyte of virtual memory to
17086         handle a format argument like +%1048575T.  When implemented with
17087         strftime, it must allocate such a buffer, use strftime to fill it
17088         in, print it, then free it.
17089         With fprintftime, it simply prints everything and exits.
17090         With no need for memory allocation, that's one fewer way to fail.
17091         * lib/strftime.c (my_strftime): Parse the colons of %:::z *after* the
17092         optional field width, not before, so we accept %9:z, not %:9z.
17093         (my_strftime): Be sure to use L_('x') for literals.
17094
17095         * lib/backupfile.c, lib/canon-host.c, lib/canonicalize.c, lib/chown.c:
17096         * lib/cloexec.c, lib/dup-safer.c, lib/dup2.c, lib/euidaccess.c:
17097         * lib/fd-safer.c, lib/fileblocks.c, lib/fopen-safer.c, lib/fsusage.c:
17098         * lib/ftruncate.c, lib/getcwd.c, lib/getcwd.h, lib/getloadavg.c:
17099         * lib/getopt_.h, lib/getpagesize.h, lib/getugroups.c:
17100         * lib/group-member.c, lib/human.h, lib/idcache.c, lib/mkdir-p.c:
17101         * lib/mountlist.c, lib/nanosleep.c, lib/pathmax.h, lib/physmem.c:
17102         * lib/posixver.c, lib/putenv.c, lib/raise.c, lib/safe-read.c:
17103         * lib/same.c, lib/save-cwd.c, lib/setenv.c, lib/settime.c:
17104         * lib/tempname.c, lib/unlinkdir.c, lib/unsetenv.c, lib/userspec.c:
17105         * lib/xgethostname.c, lib/xreadlink.c:
17106         Assume HAVE_UNISTD_H, i.e., include <unistd.h> unconditionally.
17107
17108         * lib/chown.c, lib/cloexec.c, lib/dup-safer.c, lib/dup2.c:
17109         * lib/fsusage.c, lib/getcwd.c, lib/getloadavg.c, lib/mountlist.c:
17110         * lib/openat.h, lib/save-cwd.c, lib/tempname.c:
17111         Assume HAVE_FCNTL_H (i.e., include <fcntl.h> unconditionally,
17112         and don't include <sys/file.h>).
17113
17114 2005-09-22  Eric Blake  <ebb9@byu.net>  (tiny change)
17115
17116         Sync from coreutils.
17117
17118         * lib/getloadavg.c (getloadavg) [__CYGWIN__]: Port to cygwin.
17119         [__linux__]: Allocate a big enough buffer for /proc/loadavg.
17120         [!LDAV_DONE]: Avoid unused variable warning.
17121
17122 2005-09-21  Bruno Haible  <bruno@clisp.org>
17123
17124         * lib/unicodeio.h (unicode_to_mb): New declaration.
17125
17126 2005-09-20  Derek Price  <derek@ximbiot.com>
17127
17128         * lib/getaddrinfo.c: Don't include <netdb.h> included from
17129         getaddrinfo.h.
17130
17131 2005-09-20  Bruno Haible  <bruno@clisp.org>
17132
17133         * gnulib-tool: Remove trailing slashes from the values specified for
17134         --source-base, --m4-base, --tests-base, --aux-dir.
17135         Suggested by Simon Josefsson <jas@extundo.com>.
17136
17137 2005-09-20  Bruno Haible  <bruno@clisp.org>
17138
17139         * gnulib-tool (func_all_modules, func_modules_transitive_closure,
17140         func_modules_to_filelist, func_import, func_create_testdir): Make all
17141         sorting results locale-independent, so that gnulib-cache.m4 doesn't
17142         change when gnulib-tool is invoked in a different locale.
17143
17144 2005-09-19  Simon Josefsson  <jas@extundo.com>
17145
17146         * m4/socklen.m4: Fix typo.
17147
17148 2005-09-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
17149
17150         Use a consistent style for including <config.h>.
17151         * lib/__fpending.c, lib/acl.c, lib/argmatch.c, lib/argp-help.c,
17152         lib/argp-parse.c, lib/argp-pvh.c, lib/backupfile.c, lib/basename.c,
17153         lib/c-stack.c, lib/calloc.c, lib/check-version.c, lib/cloexec.c,
17154         lib/closeout.c, lib/copy-file.c, lib/creat-safer.c, lib/cycle-check.c,
17155         lib/dirfd.c, lib/dirname.c, lib/dup-safer.c, lib/dup2.c,
17156         lib/euidaccess.c, lib/exclude.c, lib/exitfail.c, lib/fatal-signal.c,
17157         lib/fd-safer.c, lib/file-type.c, lib/fileblocks.c, lib/filemode.c,
17158         lib/filenamecat.c, lib/findprog.c, lib/fnmatch.c, lib/fopen-safer.c,
17159         lib/free.c, lib/fsusage.c, lib/ftruncate.c, lib/full-write.c,
17160         lib/fwriteerror.c, lib/getaddrinfo.c, lib/getcwd.c, lib/getdelim.c,
17161         lib/getline.c, lib/getlogin_r.c, lib/getndelim2.c, lib/getnline.c,
17162         lib/getopt1.c, lib/getpass.c, lib/group-member.c, lib/hard-locale.c,
17163         lib/hash-pjw.c, lib/hash.c, lib/human.c, lib/idcache.c,
17164         lib/inet_ntop.c, lib/isdir.c, lib/long-options.c, lib/malloc.c,
17165         lib/memcasecmp.c, lib/memcmp.c, lib/memcoll.c, lib/memcpy.c,
17166         lib/memmove.c, lib/mkdir-p.c, lib/modechange.c, lib/mountlist.c,
17167         lib/open-safer.c, lib/physmem.c, lib/pipe-safer.c, lib/pipe.c,
17168         lib/poll.c, lib/posixver.c, lib/progname.c, lib/progreloc.c,
17169         lib/putenv.c, lib/quote.c, lib/quotearg.c, lib/readline.c,
17170         lib/readlink.c, lib/realloc.c, lib/regex.c, lib/rename.c, lib/rmdir.c,
17171         lib/rpmatch.c, lib/safe-read.c, lib/same.c, lib/save-cwd.c,
17172         lib/savedir.c, lib/sig2str.c, lib/strcspn.c, lib/strerror.c,
17173         lib/stripslash.c, lib/strncasecmp.c, lib/strndup.c, lib/strnlen.c,
17174         lib/strnlen1.c, lib/strsep.c, lib/strstr.c, lib/strtod.c,
17175         lib/strtoimax.c, lib/strtol.c, lib/strverscmp.c, lib/tempname.c,
17176         lib/time_r.c, lib/userspec.c, lib/utimecmp.c, lib/version-etc-fsf.c,
17177         lib/version-etc.c, lib/wait-process.c, lib/xalloc-die.c, lib/xgetcwd.c,
17178         lib/xmalloc.c, lib/xmemcoll.c, lib/xnanosleep.c, lib/xreadlink.c,
17179         lib/xsetenv.c, lib/xstrndup.c, lib/xstrtoimax.c, lib/xstrtol.c,
17180         lib/xstrtoumax.c, lib/yesno.c:
17181         Standardize inclusion of config.h.
17182         * lib/__fpending.h, lib/dirfd.h, lib/getdate.h, lib/human.h,
17183         lib/inttostr.h:  Removed inclusion of config.h from header files.
17184         * lib/inttostr.c:  Adjusted in-tree users.
17185         * lib/timespec.h: Remove superfluous warning to include config.h.
17186         * lib/atexit.c, lib/chdir-long.c, lib/chown.c, lib/fchown-stub.c,
17187         lib/getgroups.c, lib/gettimeofday.c, lib/lchown.c, lib/lstat.c,
17188         lib/mkdir.c, lib/mkstemp.c, lib/nanosleep.c, lib/openat.c, lib/raise.c,
17189         lib/readtokens0.c, lib/readutmp.c, lib/unlinkdir.c: Guard inclusion of
17190         config.h with HAVE_CONFIG_H.
17191
17192 2005-09-19  Jim Meyering  <jim@meyering.net>
17193
17194         * modules/pathmax (License): Change to LGPL.
17195
17196 2005-09-19  Derek Price  <derek@ximbiot.com>
17197
17198         * config/srclist.txt: glibc's glob.h is now in lib/glob-libc.h.
17199
17200 2005-09-19  Bruno Haible  <bruno@clisp.org>
17201
17202         * gnulib-tool (import): Provide default for --tests-base.
17203
17204 2005-09-19  Bruno Haible  <bruno@clisp.org>
17205
17206         * doc/quote.texi: New file, extracted from gnulib.texi.
17207         * doc/ctime.texi: New file, extracted from gnulib.texi.
17208         * doc/inet_ntoa.texi: New file, extracted from gnulib.texi.
17209         * doc/gnulib-tool.texi: New file, extracted from gnulib.texi.
17210         * doc/gnulib.texi: Include them.
17211
17212 2005-09-18  Bruno Haible  <bruno@clisp.org>
17213
17214         Portability fix.
17215         * gnulib-tool (func_readlink): New function.
17216         (func_ln_if_changed): Use it.
17217
17218 2005-09-18  Bruno Haible  <bruno@clisp.org>
17219
17220         * gnulib-tool: Support --with-tests also with --import.
17221         (func_emit_tests_Makefile_am): Use variables $m4base and $testsbase.
17222         (func_import): Use variables $testsbase and $inctests. Emit a
17223         gl_TESTS_BASE form into gnulib-cache.m4. Create $testsbase/Makefile.am.
17224         Remind the user to add AC_CONFIG_FILES($testsdir/Makefile) and
17225         SUBDIRS += $testsdir.
17226         (func_create_testdir): Update.
17227
17228 2005-09-18  Bruno Haible  <bruno@clisp.org>
17229
17230         * gnulib-tool: Revise --dry-run implementation. Use variable $doit
17231         instead of $dry_run.
17232         (func_cp_if_changed, func_mv_if_changed): Remove functions.
17233         (func_ln_if_changed): Don't handle dry-run here.
17234         (func_import): In dry-run mode, detect more precisely which actions
17235         would be performed, and don't use "...ing" verbs.
17236
17237 2005-09-18  Bruno Haible  <bruno@clisp.org>
17238
17239         * gnulib-tool (func_tmpdir): New function, taken from GNU gettextize.
17240         (func_import): Use join on two temporary files instead of three nested
17241         loops, in order to determine which files are new or old.
17242
17243 2005-09-18  Bruno Haible  <bruno@clisp.org>
17244
17245         * gnulib-tool (func_import): Comment out code that spits out the
17246         new files with --dry-run.
17247
17248 2005-09-18  Bruno Haible  <bruno@clisp.org>
17249
17250         * doc/gnulib.texi (Invoking gnulib-tool): 50% rewritten.
17251
17252 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
17253
17254         * lib/stat-time.h: New file.
17255         * lib/timespec.h (ST_TIME_CMP_NS, ST_TIME_CMP, ATIME_CMP, CTIME_CMP):
17256         (MTIME_CMP, TIMESPEC_NS): Remove.  Now done by stat-time.h,
17257         in a different way.
17258         (timespec_cmp): New function.
17259         * lib/utimecmp.c: Include stat-time.h.
17260         (SYSCALL_RESOLUTION): Depend on whether various struct stat
17261         members exist, not on the obsolescent ST_MTIM_NSEC.
17262         (utimecmp): Use the new stat-time functions rater than TIMESPEC_NS.
17263
17264 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
17265
17266         * config/srclist.txt: Remove glibc bug 1033 and uncomment mktime.c.
17267
17268 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
17269
17270         * MODULES.html.sh (File system functions): Add stat-time.
17271         * modules/stat-time: New file.
17272         * modules/timespec (Files): Remove m4/st_mtim.m4; this
17273         is now done in a different way, by the stat-time module.
17274         * modules/utimecmp (Depends-on): Add stat-time.
17275
17276 2005-09-15  Paul Eggert  <eggert@cs.ucla.edu>
17277
17278         * m4/st_mtim.m4: Remove.  Superseded by...
17279         * m4/stat-time.m4: New file.
17280         * m4/timespec.m4 (gl_TIMESPEC): Require AC_C_INLINE.
17281         Do not invoke AC_STRUCT_ST_MTIM_NSEC; no longer needed.
17282
17283 2005-09-15  Derek Price  <derek@ximbiot.com>
17284
17285         * m4/strstr.m4 (gl_FUNC_STRSTR): Don't define strstr here.
17286
17287 2005-09-15  Derek Price  <derek@ximbiot.com>
17288
17289         * lib/regex_internal.h: Blank `pure' for GNUC < 3.
17290         * lib/regex_internal.c: Ditto, using this...
17291         (__GNUC_PREREQ): ...new macro.
17292         * lib/regcomp.c, regexec.c: Blank `always_inline' for GNUC < 3.1
17293         using...
17294         (__GNUC_PREREQ): ...this new macro.
17295
17296         * lib/strstr.h: Include string.h. Define strstr as a macro here.
17297
17298 2005-09-15  Derek Price  <derek@ximbiot.com>
17299             Paul Eggert  <eggert@cs.ucla.edu>
17300
17301         * lib/regcomp.c, regexec.c, regex_internal.c: Back out previous
17302         changes, consolidating in...
17303         * lib/regex_internal.h: ...this file.
17304
17305 2005-09-13  Jim Meyering  <jim@meyering.net>
17306
17307         * lib/canon-host.c: Filter through gnu indent and reword comments
17308         slightly.
17309         * lib/canon-host.h (ch_strerror_r): Tweak cpp indentation and spacing.
17310
17311 2005-09-13  Derek Price  <derek@ximbiot.com>
17312
17313         * lib/canon-host.c (canon_host_r): Set *cherror on memory allocation
17314         failure.
17315         Reported by Jim Meyering  <jim@meyering.net>.
17316
17317 2005-09-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
17318
17319         * lib/base64.c: Typo.
17320         (base64_encode): Put b64str in initialized data section.
17321
17322 2005-09-12  Paul Eggert  <eggert@cs.ucla.edu>
17323
17324         Merge glibc and coreutils changes into gnulib, plus a few
17325         extra fixes.
17326         * lib/md5.c: Use #error rather than a string.
17327         (CYCLIC): New macro, from glibc source.  Use it instead of rol.
17328         * lib/md5.h (__GNUC_PREREQ, __THROW): Define if not defined already.
17329         (__attribute__): Define to empty for non recent-GCC.
17330         (__md5_buffer, __md5_finish_ctx, __md5_init_ctx, __md5_process_block):
17331         (__md5_process_bytes, __md5_read_ctx, __md5_stream):
17332         Renamed from their non-__ counterparts, with new macros replacing
17333         them if not _LIBC.  Add __THROW attribute.
17334         (rol): Remove.
17335         (struct md5_ctx): Align buffer if using GCC.
17336         * lib/sha1.h (struct sha1_ctx): Likewise.
17337         * lib/sha1.c (SWAP): Renamed from the NOTSWAP.  All uses changed.
17338         The old name was backwards.
17339         (NOTSWAP): Remove; not used.
17340         (rol): New macro, moved here from md5.h.
17341         (sha1_process_block): Remove a FIXME that doesn't make sense.
17342
17343 2005-09-12  Derek Price  <derek@ximbiot.com>
17344
17345         Return usable errors from canon-host.
17346         * lib/canon-host.h: New file.
17347         * lib/canon-host.c (canon_host): Wrap...
17348         (canon_host_r): ...this new function, which now relies exclusively on
17349         getaddrinfo.
17350         (ch_strerror): New function.
17351         (last_cherror): New global.
17352         * lib/getaddrinfo.c: Move include of getaddrinfo.h first to test
17353         interface.
17354         (getaddrinfo): Add AI_CANONNAME functionality.  Don't do arithmetic on
17355         void *.
17356         (freeaddrinfo): Free ai->ai_canonname when set.
17357
17358 2005-09-12  Derek Price  <derek@ximbiot.com>
17359
17360         Make canon-host require getaddrinfo.
17361         * m4/canon-host.m4 (gl_CANON_HOST): Remove most dependencies.
17362         AC_LIBSOURCE canon-host.h.  Call...
17363         (gl_PREREQ_CANON_HOST): ...this new function, which requires
17364         gl_GETADDRINFO.
17365         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Compile gai_strerror when needed.
17366
17367 2005-09-12  Derek Price  <derek@ximbiot.com>
17368
17369         * modules/canon-host: Add canon-host.h.  Depend on getaddrinfo.  Make
17370         LGPL.
17371         * modules/getaddrinfo: Add link to opengroup spec.  Depend on strdup.
17372
17373 2005-09-12  Derek Price  <derek@ximbiot.com>
17374
17375         * lib/gai_strerror.c: Include config.h when available.  Include
17376         getaddrinfo.h before other headers to test interface.
17377         Reported by Larry Jones <lawrence.jones@ugs.com>.
17378
17379 2005-09-12  Derek Price  <derek@ximbiot.com>
17380             Paul Eggert  <eggert@cs.ucla.edu>
17381
17382         * modules/glob (Files): Add glob-libc.h.
17383
17384 2005-09-12  Derek Price  <derek@ximbiot.com>
17385             Paul Eggert  <eggert@cs.ucla.edu>
17386
17387         * m4/glob.m4 (gl_GLOB_SUBSTITUTE): AC_LIBSOURCES for glob.c,
17388         glob_.h, glob-libc.h.
17389         (gl_PREREQ_GLOB): Remove _SYS_CDEFS_H hack; no longer needed.
17390
17391 2005-09-12  Derek Price  <derek@ximbiot.com>
17392             Paul Eggert  <eggert@cs.ucla.edu>
17393
17394         * lib/glob-libc.h: Renamed from glob_.h.  The new version is
17395         taken from libc's glob.h, except with '#ifdef __GLOB_GNULIB'
17396         protecting things that should be done only in gnulib contexts.
17397         * lib/glob_.h: New file, containing only the glob things needed for
17398         gnulib.
17399         (GLOB_PREFIX): Remove.  All uses changed to look for __GLOB_GNULIB.
17400         (__GLOB_CONCAT, __GLOB_XCONCAT, __GLOB_ID): Remove; no longer needed.
17401         (glob, globfree, glob_pattern_p): Now defined simply in terms of
17402         rpl_glob, rpl_globfree, rpl_glob_pattern_p.
17403         (__GLOB_GNULIB): New macro, to keep the glob.h changes clearer
17404         and to respect the namespace rules better.
17405
17406 2005-09-08  Simon Josefsson  <jas@extundo.com>
17407
17408         * modules/socklen: New file.
17409
17410 2005-09-08  Simon Josefsson  <jas@extundo.com>
17411
17412         * m4/socklen.m4: New file.
17413
17414 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
17415
17416         * modules/utimens (Files): Add m4/utimbuf.m4, since
17417         m4/utimens.m4 requires gl_CHECK_TYPE_STRUCT_UTIMBUF.
17418         Reported by Sergey Poznyakoff.
17419
17420 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
17421
17422         * lib/glob.c (glob, globfree, __glob_pattern_p): Use old-style function
17423         definitions, since that's the preferred style in glibc.
17424         Fix a minor spacing issue, and update copyright notice to match
17425         glibc's.
17426
17427 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
17428
17429         * config/srclist.txt: Remove glibc bug 1061; it's been fixed.
17430
17431 2005-09-06  Simon Josefsson  <jas@extundo.com>
17432
17433         * lib/getpass.c (getpass): Fix typo, test for HAVE_TCSETATTR and not
17434         TCSETATTR.  Reported by Derek Price <derek@ximbiot.com>.
17435
17436 2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
17437
17438         * lib/regex_internal.h (bitset_not): Add parens to avoid gcc -Wall
17439         warning.
17440
17441 2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
17442
17443         * config/srclist.txt: Add glibc bug 1302.
17444
17445 2005-09-05  Paul Eggert  <eggert@cs.ucla.edu>
17446
17447         Change bitset word type from unsigned int to unsigned long int,
17448         as this has better performance on typical 64-bit hosts.
17449         Port bitset code to hosts with unusual word sizes.
17450         * lib/regcomp.c (build_equiv_class, build_charclass, build_range_exp):
17451         (build_collating_symbol):
17452         Prefer bitset to re_bitset_ptr_t in prototypes, when the actual
17453         argument is a bitset.  This is merely a style issue, but it makes
17454         it clearer that an entire array is expected.
17455         (re_compile_fastmap_iter, init_dfa, init_word_char, optimize_subexps):
17456         * lib/regcomp.c (lower_subexp, parse_bracket_exp, built_charclass_op):
17457         Port to the case where bitset_word is not the same as unsigned int.
17458         * lib/regex_internal.h (bitset_set, bitset_clear, bitset_contain):
17459         (bitset_not, bitset_merge, bitset_set_all, bitset_mask):
17460         Likewise.
17461         * lib/regexec.c (check_dst_limits_calc_pos_1,
17462         check_subexp_matching_top):
17463         (build_trtable, group_nodes_into_DFAstates):
17464         Likewise.
17465         * lib/regcomp.c (re_compile_fastmap_iter, utf8_sb_map, optimize_utf8):
17466         Don't assume that SBC_MAX is a multiple of BITSET_WORD_BITS.
17467         * lib/regex_internal.h (bitset_set_all, bitset_not): Likewise.
17468         * lib/regexec.c (group_nodes_into_DFAstates): Likewise.
17469         * lib/regcomp.c (utf8_sb_map): Don't assume UINT_MAX == 0xffffffff.
17470         * lib/regcomp.c (optimize_subexps, lower_subexp):
17471         Work even if bitset_word has holes in its bitwise representation.
17472         * lib/regex_internal.h (BITSET_WORD_BITS): Likewise.
17473         * lib/regexec.c (check_dst_limits_calc_pos_1,
17474         check_subexp_matching_top):
17475         Likewise.
17476         * lib/regex_internal.c (re_string_reconstruct):
17477         Don't assume UCHAR_MAX == 255.
17478         * lib/regex_internal.h (bitset_set_all): Likewise.
17479         * lib/regex_internal.h (BITSET_WORD_BITS): Renamed from UINT_BITS.
17480         All uses changed.
17481         (BITSET_WORDS): Renamed from BITSET_UINTS.  All uses changed.
17482         (bitset_word): New type, replacing 'unsigned int' for bitset uses.
17483         All uses changed.
17484         (BITSET_WORD_MAX): New macro.
17485         (bitset_set, bitset_clear, bitset_contain, bitset_empty):
17486         (bitset_set_all, bitset_copy):  Now inline functions, not macros.
17487         (bitset_empty, bitset_copy):
17488         Prefer sizeof (bitset) to multiplying it out ourselves.
17489         (bitset_not_merge): Remove; unused.
17490         (bitset_contain): Return bool, not unsigned int with one bit on.
17491         All callers changed.
17492         * lib/regexec.c (build_trtable): Don't assume bitset has no stricter
17493         alignment than re_node_set; do this by defining a new internal
17494         type struct dests_alloc and using it to allocate memory.
17495
17496 2005-09-05  Bruno Haible  <bruno@clisp.org>
17497
17498         * gnulib-tool (func_import): Fix comparison in handling of symbolic
17499         links.
17500
17501 2005-09-04  Martin Lambers  <marlam@marlam.de>  (tiny change)
17502
17503         * modules/size_max (Makefile.am): Add size_max.h
17504
17505 2005-09-04  Derek Price  <derek@ximbiot.com>
17506
17507         * gnulib-tool (func_import): Fix reversed $symbolic logic.
17508
17509 2005-09-03  Simon Josefsson  <jas@extundo.com>
17510
17511         * gnulib-tool: Fix typo.
17512
17513 2005-09-03  Simon Josefsson  <jas@extundo.com>
17514
17515         * config/srclist.txt: Add glibc bug 1293.
17516
17517 2005-09-03  Derek Price  <derek@ximbiot.com>
17518
17519         * m4/getlogin_r (gl_GETLOGIN_R): Fix cut & paste error.
17520         From Larry Jones <lawrence.jones@ugs.com>.
17521
17522 2005-09-02  Simon Josefsson  <jas@extundo.com>
17523
17524         * modules/socklen: New file.
17525
17526 2005-09-02  Simon Josefsson  <jas@extundo.com>
17527
17528         * modules/havelib: New module.
17529
17530         * modules/gettext, modules/iconv, modules/lock, modules/readline:
17531         Use havelib.
17532
17533 2005-09-02  Paul Eggert  <eggert@cs.ucla.edu>
17534
17535         Check for arithmetic overflow when calculating sizes, to prevent
17536         some buffer-overflow issues.  These patches are conservative, in the
17537         sense that when I couldn't determine whether an overflow was possible,
17538         I inserted a run-time check.
17539         * lib/regex_internal.h (re_xmalloc, re_xrealloc, re_x2realloc): New
17540         macros.
17541         (SIZE_MAX) [!defined SIZE_MAX]: New macro.
17542         (re_alloc_oversized, re_x2alloc_oversized, re_xnmalloc):
17543         (re_xnrealloc, re_x2nrealloc): New inline functions.
17544         * lib/regcomp.c (init_dfa, analyze, build_range_exp,
17545         parse_bracket_exp):
17546         (build_equiv_class, build_charclass): Check for arithmetic overflow
17547         in size expression calculations.
17548         * lib/regex_internal.c (re_string_realloc_buffers):
17549         (build_wcs_upper_buffer, re_node_set_add_intersect):
17550         (re_node_set_init_union, re_node_set_insert, re_node_set_insert_last):
17551         (re_dfa_add_node, register_state): Likewise.
17552         * lib/regexec.c (re_search_stub, re_copy_regs, re_search_internal):
17553         (prune_impossible_nodes, push_fail_stack, set_regs, check_arrival):
17554         (build_trtable, extend_buffers, match_ctx_init, match_ctx_add_entry):
17555         (match_ctx_add_subtop, match_ctx_add_sublast): Likewise.
17556
17557 2005-09-02  Paul Eggert  <eggert@cs.ucla.edu>
17558
17559         * modules/inttostr (Files): Add m4/inttypes_h.m4, m4/stdint_h.m4,
17560         m4/ulonglong.m4.  Problem reported by Martin Lambers.
17561
17562 2005-09-02  Bruno Haible  <bruno@clisp.org>
17563
17564         Support for lib vs. lib64 distinction on biarch platforms.
17565         * m4/lib-prefix.m4 (AC_LIB_PREPARE_MULTILIB): New macro.
17566         (AC_LIB_PREFIX): Require it. Use $acl_libdirstem instead of 'lib'.
17567         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Likewise.
17568
17569 2005-09-02  Bruno Haible  <bruno@clisp.org>
17570
17571         * gnulib-tool (import): In the other first-use case, provide defaults
17572         as well.
17573
17574 2005-09-02  Bruno Haible  <bruno@clisp.org>
17575
17576         * config/srclist.txt: lib-link.m4 and lib-prefix.m4 currently have
17577         patches not yet found in the latest gettext release.
17578
17579 2005-09-01  Paul Eggert  <eggert@cs.ucla.edu>
17580
17581         * lib/glob.c (GET_LOGIN_NAME_MAX): Renamed from LOGIN_NAME_MAX,
17582         to avoid a collision with bits/local_lim.h in glibc.
17583         All uses changed.  Problem reported by Dmitry V. Levin in
17584         <http://sources.redhat.com/bugzilla/show_bug.cgi?id=1060>.
17585
17586         * lib/regex_internal.c (build_wcs_upper_buffer): Fix portability
17587         bugs in int versus size_t comparisons.
17588         (re_string_context_at): Fix bug where the code assumed that
17589         Idx is signed.
17590
17591         Use bool where appropriate.
17592         * lib/regcomp.c (re_set_fastmap): ICASE arg is bool, not int.
17593         All callers changed.
17594         (calc_eclosure_iter): Likewise, for ROOT arg.
17595         (parse_bracket_element): Likewise, for ACCEPT_HYPHEN arg.
17596         (build_charclass_op): Likewise, for NON_MATCH arg.
17597         * lib/regex_internal.c (re_string_allocate, re_string_construct):
17598         (re_string_construct_common): Likewise, for ICASE arg.
17599         * lib/regexec.c (re_search_2_stub, re_search_stub):
17600         Likewise, for RET_LEN arg.
17601         (check_matching): Likewise, for FL_LONGEST_MATCH arg.
17602         (set_regs): Likewise, for FL_BACKTRACK arg.
17603         * lib/regcomp.c (re_compile_fastmap_iter, optimize_utf8):
17604         (duplicate_node_closure, calc_inveclosure, calc_eclosure):
17605         (calc_eclosure_iter, parse_bracket_exp):
17606         Use bool for internal variables that are booleans.
17607         * lib/regexec.c (re_search_internal, check_matching,
17608         proceed_next_node):
17609         (set_regs, build_sifted_states, sift_states_bkref):
17610         (check_arrival_add_next_nodes, check_arrival_expand_ecl_sub):
17611         (expand_bkref_cache, build_trtable, group_nodes_into_DFAstates):
17612         (find_collation_sequence_value):
17613         Likewise.
17614         * lib/regex_internal.c (re_node_set_insert, re_node_set_insert_last):
17615         (re_node_set_compare):
17616         Return bool, not int. All callers changed.
17617         * lib/regexec.c (check_halt_node_context, check_dst_limits):
17618         (build_trtable, check_node_accept): Likewise.
17619         * lib/regex_internal.h: Include stdbool.h.
17620
17621         Fix bugs uncovered when converting to bool.
17622         * lib/regcomp.c (calc_eclosure_iter): Check for storage allocation
17623         failure instead of charging ahead blindly.
17624         * lib/regex_internal.c (register_state): Likewise.
17625         * lib/regexec.c (re_search_2_stub): Use simpler method than boolean
17626         for freeing internal storage.
17627         (group_nodes_into_DFA_states): Use unsigned int, not int, for
17628         bitset pieces used as boolean, to avoid undefined behavior
17629         on hosts that do int overflow checking.
17630
17631 2005-09-01  Paul Eggert  <eggert@cs.ucla.edu>
17632
17633         * config/srclist.txt: Add glibc bugs 1285-1287.
17634
17635 2005-09-01  Jim Meyering  <jim@meyering.net>
17636
17637         * m4/lchown.m4: Require gl_FUNC_CHOWN, for the definition of
17638         CHOWN_MODIFIES_SYMLINK, which is used by lchown.c.
17639         Require gl_STAT_MACROS, too.
17640
17641 2005-09-01  Bruno Haible  <bruno@clisp.org>
17642
17643         * gnulib-tool (import): In the first-use case, provide defaults.
17644
17645 2005-09-01  Bruno Haible  <bruno@clisp.org>
17646
17647         * gnulib-tool (func_import): Remove the .tmp files.
17648
17649 2005-09-01  Bruno Haible  <bruno@clisp.org>
17650
17651         * gnulib-tool (func_import): Fix handling of symbolic links.
17652
17653 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
17654
17655         On 64-bit hosts (where size_t is 64 bits and int is 32 bits), the
17656         old glibc regex code mishandles strings longer than 2**31 bytes.
17657         This patch fixes this when the regex code is used in gnulib
17658         (i.e., outside glibc).
17659
17660         This patch should not affect the use of the regex code inside
17661         glibc.  No doubt this problem also needs to be handled for glibc
17662         as well, but the result will be an incompatible change to the
17663         glibc ABI, and the old ABI will have to be supported too.  That
17664         can be the the subject for another patch.
17665
17666         * lib/regex.h (_REGEX_LARGE_OFFSETS): New feature-test macro,
17667         governing whether the rest of this patch is active.  By default,
17668         the macro is disabled and the patch has no effect.
17669         (regoff_t) [defined _REGEX_LARGE_OFFSETS]: Define to off_t, not int.
17670         (__re_idx_t, __re_size_t, __re_long_size_t): New types.
17671         (struct re_pattern_buffer, re_search, re_search_2, re_match):
17672         (re_match_2, re_set_registers): Use the new types.
17673         * lib/regex_internal.h (Idx, re_hashval_t): New types.
17674         (REG_MISSING, REG_ERROR, REG_VALID_INDEX, REG_VALID_NONZERO_INDEX):
17675         New macros.
17676         (re_node_set, re_charset_t, re_token_t, re_string_realloc_buffers):
17677         (re_string_context_at, bin_tree_t, re_dfastate_t):
17678         (struct re_state_table_entry, state_array_t, re_sub_match_last_t):
17679         (re_sub_match_top_t, re_match_context_t, re_sift_context_t):
17680         (struct re_fail_stack_ent_t, struct re_fail_stack_t, struct re_dfa_t):
17681         (re_string_char_size_at, re_string_wchar_at):
17682         (re_string_elem_size_at):
17683         Use the new types and macros to port to 64-bit hosts.
17684         Use unsigned types for internal values, so that the code
17685         mostly works even for arrays larger than SSIZE_MAX.
17686         * lib/regcomp.c (re_compile_internal, init_dfa, duplicate_node):
17687         (search_duplicated_node, calc_eclosure_iter, fetch_number):
17688         (parse_reg_exp, parse_branch, parse_expression, parse_sub_exp):
17689         (build_equiv_class, build_charclass, re_compile_fastmap_iter):
17690         (free_dfa_content, create_initial_state, optimize_utf8, analyze):
17691         (optimize_subexps, calc_first, link_nfa_nodes, duplicate_node_closure):
17692         (calc_inveclosure, parse_dup_op, build_range_exp):
17693         (build_collating_symbol, parse_bracket_exp, build_charclass_op):
17694         (fetch_number, create_token_tree, mark_opt_subexp):
17695         Likewise.
17696         * lib/regex_internal.c (re_string_construct_common,
17697         create_ci_newstate):
17698         (create_cd_newstate, re_string_allocate, re_string_construct):
17699         (re_string_realloc_buffers, build_wcs_upper_buffer):
17700         (re_string_skip_chars, build_upper_buffer, re_string_translate_buffer):
17701         (re_string_reconstruct, re_string_peek_byte_case):
17702         (re_string_fetch_byte_case, re_string_context_at):
17703         (re_node_set_alloc, re_node_set_init_1, re_node_set_init_2):
17704         (re_node_set_init_copy, re_node_set_add_intersect):
17705         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
17706         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
17707         (re_node_set_remove_at, re_dfa_add_node, calc_state_hash):
17708         (re_acquire_state, re_acquire_state_context, register_state):
17709         Likewise.
17710         * lib/regex.c (match_ctx_init, match_ctx_add_entry,
17711         search_cur_bkref_entry):
17712         (match_ctx_add_subtop, match_ctx_add_sublast, sift_ctx_init):
17713         (re_search_internal, re_search_2_stub, re_search_stub)
17714         (re_copy_regs, check_matching, check_halt_state_context, update_regs):
17715         (push_fail_stack, sift_states_iter_mb, build_sifted_states):
17716         (update_cur_sifted_state, check_dst_limits):
17717         (check_dst_limits_calc_pos_1, check_dst_limits_calc_pos):
17718         (check_subexp_limits, sift_states_bkref, merge_state_array):
17719         (check_subexp_matching_top, get_subexp, get_subexp_sub):
17720         (find_subexp_node, check_arrival, check_arrival_add_next_nodes):
17721         (check_arrival_expand_ecl, check_arrival_expand_ecl_sub):
17722         (expand_bkref_cache, check_node_accept_bytes):
17723         (group_nodes_into_DFAstates, check_node_accept, regexec, re_match):
17724         (re_search, re_match_2, re_search_2, prune_impossible_nodes):
17725         (acquire_init_state_context, check_halt_node_context):
17726         (proceed_next_node, pop_fail_stack, set_regs, free_fail_stack_return):
17727         (sift_states_backward, clean_state_log_if_needed):
17728         (sub_epsilon_src_nodes, add_epsilone_src_nodes, merge_state_with_log):
17729         (find_recover_state, transit_state_sb, transit_state_mb):
17730         (transit_state_bkref, build_trtable, match_ctx_clean):
17731         Likewise.
17732         * lib/regcomp.c (parse_dup_op): Add an extra test if Idx is unsigned,
17733         to work around an assumption that REG_MISSING is negative.
17734
17735         * lib/regcomp.c (re_comp) [defined _REGEX_RE_COMP || defined _LIBC]:
17736         (seek_collating_symbol_entry) [defined _LIBC]:
17737         (lookup_collation_sequence_value) [defined _LIBC]:
17738         (build_range_exp, build_collating_symbol) [defined _LIBC]:
17739         Use prototypes rather than old-style function definitions.
17740         * lib/regexec.c (re_exec) [defined _REGEX_RE_COMP || defined _LIBC]:
17741         (transit_state_sb) [0]:
17742         (find_collation_sequence_value) [defined _LIBC]: Likewise.
17743
17744         * lib/regexec.c (re_search_internal): Simplify update of rm_so and
17745         rm_eo.
17746
17747         * lib/regcomp.c (re_compile_fastmap_iter, init_dfa, init_word_char):
17748         (optimize_subexps, lower_subexp):
17749         Don't assume 1<<31 has defined behavior on hosts with 32-bit int,
17750         since the signed shift might overflow.  Use 1u<<31 instead.
17751         * lib/regex_internal.h (bitset_set, bitset_clear, bitset_contain):
17752         Likewise.
17753         * lib/regexec.c (check_dst_limits_calc_pos_1,
17754         check_subexp_matching_top): Likewise.
17755
17756         * lib/regcomp.c (optimize_subexps, lower_subexp):
17757         Use CHAR_BIT rather than 8, for clarity.
17758         * lib/regexec.c (check_dst_limits_calc_pos_1):
17759         (check_subexp_matching_top): Likewise.
17760         * lib/regcomp.c (init_dfa): Make table_size unsigned, so that we don't
17761         have to worry about portability issues when shifting it left.
17762         Remove no-longer-needed test for table_size > 0.
17763         * lib/regcomp.c (parse_sub_exp): Do not shift more bits than there are
17764         in a word, as the resulting behavior is undefined.
17765         * lib/regexec.c (check_dst_limits_calc_pos_1): Likewise;
17766         in one case, a <= should have been an <, and in another case the
17767         whole test was missing.
17768         * lib/regex_internal.h (BYTE_BITS): Remove.  All uses changed to
17769         the standard name CHAR_BIT.
17770         * lib/regexec.c (match_ctx_add_entry): Don't assume that ~0 == -1;
17771         this is not true on one's complement and signed-magnitude hosts.
17772
17773         * lib/regex_internal.h (re_sub_match_top_t): Remove unused member
17774         next_last_offset.
17775         (struct re_dfa_t): Remove unused member states_alloc.
17776         * lib/regcomp.c (init_dfa): Don't initialize unused members.
17777
17778 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
17779
17780         * m4/regex.m4 (gl_REGEX): Require AC_SYS_LARGEFILE, Define
17781         _REGEX_LARGE_OFFSETS).  Test for regoff_t/off_t bug in 64-bit
17782         and large-file glibc and in 32-bit large-file Solaris.
17783
17784 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
17785
17786         * lib/regex_internal.c (re_string_reconstruct): Don't assume buffer
17787         lengths fit in regoff_t; this isn't true if regoff_t is the same
17788         width as size_t.
17789         * lib/regex.c (re_search_internal): 5th arg is LAST_START
17790         (= START + RANGE) instead of RANGE.  This avoids overflow
17791         problems when regoff_t is the same width as size_t.
17792         All callers changed.
17793         (re_search_2_stub): Check for overflow when adding the
17794         sizes of the two strings.
17795         (re_search_stub): Check for overflow when adding START
17796         to RANGE; if it occurs, substitute the extreme value.
17797
17798 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
17799
17800         * config/srclist.txt: Add glibc bugs 1273, 1278-1282, 1284.
17801
17802 2005-08-31  Jim Meyering  <jim@meyering.net>
17803
17804         * lib/regcomp.c (search_duplicated_node): Make first pointer arg
17805         a pointer-to-const.
17806         * lib/regex_internal.c (create_ci_newstate, create_cd_newstate):
17807         (register_state): Likewise.
17808         * lib/regexec.c (search_cur_bkref_entry, check_dst_limits):
17809         (check_dst_limits_calc_pos_1, check_dst_limits_calc_pos):
17810         (group_nodes_into_DFAstates): Likewise.
17811
17812 2005-08-31  Jim Meyering  <jim@meyering.net>
17813
17814         * check-module: Add a FIXME comment.
17815
17816 2005-08-31  Eric Blake  <ebb9@byu.net>
17817
17818         * modules/unistd-safer (Files): Add unistd--.h.
17819         * modules/stdio-safer (Files): Add stdio--.h.
17820
17821 2005-08-31  Derek Price  <derek@ximbiot.com>
17822
17823         * lib/getdelim.c (getdelim): Return EOF on EOF.
17824         Reported by Larry Jones <lawrence.jones@ugs.com>.
17825
17826 2005-08-31  Bruno Haible  <bruno@clisp.org>
17827
17828         Avoid unnecessary diffs in the generated lib/Makefile.am.
17829         * gnulib-tool (func_emit_lib_Makefile_am): Don't write the cmd into
17830         the generated files.
17831         (func_import): Don't set cmd.
17832
17833 2005-08-31  Bruno Haible  <bruno@clisp.org>
17834
17835         * lib/strstr.c: Include <stddef.h>, for NULL.
17836         * lib/strcasestr.c: Likewise.
17837         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
17838
17839 2005-08-31  Bruno Haible  <bruno@clisp.org>
17840
17841         * gnulib-tool: New option --macro-prefix.
17842         (func_import): Use macro_prefix.
17843         (import): Handle option --macro-prefix.
17844
17845 2005-08-31  Bruno Haible  <bruno@clisp.org>
17846
17847         * gnulib-tool (import): Rename most ac_* variables to cached_*.
17848         Also use new variables cached_lgpl, cached_libtool.
17849
17850 2005-08-31  Bruno Haible  <bruno@clisp.org>
17851
17852         * gnulib-tool (func_import): Require AC_GNU_SOURCE etc. instead of
17853         always instantiating them.
17854
17855 2005-08-31  Bruno Haible  <bruno@clisp.org>
17856
17857         * gnulib-tool (func_import): Read the previous cached settings
17858         from gnulib-cache.m4 and gnulib-comp.m4. Remove files that were
17859         earlier added by gnulib but are now dropped. Warn when a gnulib file
17860         overwrites a non-gnulib file.
17861
17862 2005-08-31  Bruno Haible  <bruno@clisp.org>
17863
17864         * gnulib-tool (func_import): Generate two files gnulib-cache.m4 and
17865         gnulib-comp.m4 instead of a single gnulib.m4, to make it easy for
17866         projects that don't keep autogenerated files in CVS. Put into
17867         actioncmd only the specified modules, not the transitive closure.
17868
17869 2005-08-31  Bruno Haible  <bruno@clisp.org>
17870
17871         * gnulib-tool (func_import): Fix defaulting of $libname and $libtool.
17872         Create directories that shall be filled.
17873         (import): Don't look for gl_* macros in configure.ac. Recurse across
17874         all directories containing a gnulib-cache.m4 files, if meaningful.
17875
17876 2005-08-31  Bruno Haible  <bruno@clisp.org>
17877
17878         * gnulib-tool (func_import): Emit also a stub for gl_LIBTOOL.
17879         (import): Set seen_libtool when we see gl_LIBTOOL.
17880
17881 2005-08-31  Bruno Haible  <bruno@clisp.org>
17882
17883         * gnulib-tool (func_import): Also copy m4/gnulib-tool.m4. Omit
17884         declaration macro definitions from generated gnulib.m4.
17885
17886 2005-08-30  Oskar Liljeblad  <oskar@osk.mine.nu>
17887
17888         * lib/iconvme.h: Add prototype for iconv_alloc.
17889
17890 2005-08-29  Simon Josefsson  <jas@extundo.com>
17891
17892         * lib/iconvme.c: Fix errno.
17893
17894 2005-08-29  Bruno Haible  <bruno@clisp.org>
17895
17896         * gnulib-tool: Enclose all occurrences of $destdir in "...", so
17897         that it works when the directory contains spaces.
17898
17899 2005-08-29  Bruno Haible  <bruno@clisp.org>
17900
17901         * gnulib-tool (import): Avoid unnecessary spaces in $avoidlist.
17902
17903 2005-08-29  Bruno Haible  <bruno@clisp.org>
17904
17905         * gnulib-tool (func_import): Emit more comments into gnulib.m4.
17906         Emit more advice.
17907
17908 2005-08-29  Bruno Haible  <bruno@clisp.org>
17909         and Stepan Kasal  <kasal@ucw.cz>
17910
17911         * check-module: If more parameters are given, check each of them
17912         separately; add more exceptions, as noted by Jim Meyering.
17913         (check_module): New procedure.
17914         (%exempt_header): Now contains all exceptions.
17915
17916 2005-08-29  Ben Pfaff  <blp@cs.stanford.edu>
17917
17918         * modules/byteswap (Makefile.am): Fix rule to not assume GNU make.
17919
17920 2005-08-29  Oskar Liljeblad  <oskar@osk.mine.nu>
17921
17922         * lib/iconvme.c: Split iconv_string into iconv_alloc.
17923
17924 2005-08-28  Bruno Haible  <bruno@clisp.org>
17925
17926         * m4/gnulib-tool.m4: New file.
17927
17928 2005-08-27  Jim Meyering  <jim@meyering.net>
17929
17930         * modules/unistd-safer (Files): Add pipe-safer.c.
17931         * modules/fcntl-safer (Files): Add creat-safer.c.
17932
17933 2005-08-27  Jim Meyering  <jim@meyering.net>
17934
17935         * m4/stdlib-safer.m4: New file.  From coreutils.
17936         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Add stdio--.h.
17937         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Add creat-safer.c to the
17938         AC_LIBSOURCES list and arrange to compile it via AC_LIBOBJ.
17939         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Likewise, add pipe-safer.c.
17940         Add pipe-safer.c and unistd--.h to the AC_LIBSOURCES list.
17941
17942 2005-08-27  Jim Meyering  <jim@meyering.net>
17943
17944         * lib/fopen-safer.c: Merge minor changes from coreutils.
17945         * lib/dup-safer.c: Likewise.
17946         * lib/fd-safer.c: Likewise.
17947
17948         Merge from coreutils.
17949         * lib/stdio--.h: New file.
17950         * lib/stdlib--.h: New file.
17951         * lib/mkstemp-safer.c: New file.
17952
17953         GNU tar needs these.
17954         * lib/pipe-safer.c: New file.
17955         * lib/creat-safer.c: New file.
17956         * lib/fcntl--.h (creat): Define to creat_safer.
17957         * lib/fcntl-safer.h: Include <sys/types.h> and declare creat_safer.
17958         * lib/unistd--.h (pipe): Define to pipe_safer.
17959         * lib/unistd-safer.h: Declare pipe_safer.
17960
17961 2005-08-26  Simon Josefsson  <jas@extundo.com>
17962
17963         * lib/getpass.c: Use _WIN32 instead of WIN32, suggested by Bruno
17964         Haible <bruno@clisp.org>.
17965
17966 2005-08-26  Paul Eggert  <eggert@cs.ucla.edu>
17967
17968         * lib/regex_internal.h: Remove all references to
17969         RE_NO_INTERNAL_PROTOTYPES; no longer neeeded now that we assume C89
17970         or better.
17971         (bitset_not, bitset_merge, bitset_not_merge):
17972         (bitset_mask, re_string_allocate, re_string_construct):
17973         (re_string_reconstruct, re_string_destruct, re_string_elem_size_at):
17974         (re_string_char_size_at, re_string_wchar_at, re_string_peek_byte_case):
17975         (re_string_fetch_byte_case, re_node_set_alloc, re_node_set_init_1):
17976         (re_node_set_init_2, re_node_set_init_copy, re_node_set_add_intersect):
17977         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
17978         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
17979         (re_node_set_remove_at, re_dfa_add_node, re_acquire_state):
17980         (re_acquire_state_context):
17981         Remove unnecessary forward decls.
17982         (re_string_char_size_at, re_string_wchar_at, re_string_elem_size_at):
17983         Put __attribute at function definition,
17984         now that the function decl has been removed.
17985         * lib/regex_internal.c (re_string_peek_byte_case):
17986         (re_string_fetch_byte_case, re_node_set_compare, re_node_set_contains):
17987         Likewise.
17988
17989 2005-08-25  Stepan Kasal  <kasal@ucw.cz>
17990
17991         * m4/regex.m4: Add AC_PREREQ(2.50).
17992         (gl_REGEX): If --with-included-regex was given, skip the autodetection.
17993
17994 2005-08-25  Simon Josefsson  <jas@extundo.com>
17995
17996         * m4/getpass.m4: Check for termios.h, tcgetattr, tcsetattr, and
17997         __fsetlocking.
17998
17999 2005-08-25  Simon Josefsson  <jas@extundo.com>
18000
18001         * lib/getpass.c: Add WIN32 implementation.  Conditionalize use of
18002         termios.h, tcgetattr, tcsetattr and __fsetlocking.  Remove some
18003         GLIBC specific code.
18004
18005 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
18006
18007         Make regex safe for g++.  This fixes one real bug (an "err"
18008         that should have been "*err").  g++ problem reported by
18009         Sam Steingold.
18010         * lib/regex_internal.h (re_calloc): New macro, consistent with
18011         re_malloc etc.  All callers of calloc changed to use re_calloc.
18012         * lib/regex_internal.c (build_wcs_upper_buffer): Return reg_errcode_t,
18013         not int.  All callers changed.
18014         * lib/regcomp.c (re_compile_fastmap_iter): Don't use
18015         alloca (mb_cur_max); just use an array of size MB_LEN_MAX.
18016         * lib/regexec.c (push_fail_stack): Use re_realloc, not realloc.
18017         (find_recover_state): Change "err" to "*err"; this fixes what
18018         appears to be a real bug.
18019         (check_arrival_expand_ecl_sub): Be consistent about reg_errcode_t
18020         versus int.
18021
18022 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
18023
18024         * modules/regex (Depends-on): Add malloc, since the code
18025         assumes that !malloc(0) means failure.
18026
18027 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
18028
18029         * lib/regexec.c (set_regs): Don't alloca with an unbounded size.
18030
18031         alloca modernization/simplification for regex.
18032         * lib/regex.c: Remove portability cruft for alloca.  This no longer
18033         needs to be at the start of the file, and can be moved into
18034         regex_internal.h and simplified.
18035         * lib/regex_internal.h: Include <alloca.h>.
18036         (__libc_use_alloca) [!defined _LIBC]: New macro.
18037         * lib/regexec.c (build_trtable): Remove "#ifdef _LIBC", since the code
18038         now works outside glibc.
18039
18040 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
18041
18042         * config/srclist.txt: Add glibc bugs 1241, 1245.
18043
18044 2005-08-25  Jim Meyering  <jim@meyering.net>
18045
18046         * lib/open-safer.c: Include <config.h>.
18047         Otherwise, we'd lose LARGEFILE support in any file using
18048         e.g. "fcntl--.h"
18049
18050 2005-08-25  Bruno Haible  <bruno@clisp.org>
18051
18052         * m4/minmax.m4: Require autoconf 2.52.
18053         (gl_MINMAX_IN_HEADER): Add comments. Use m4_pushdef/m4_popdef instead
18054         of define/undefine. Use AS_TR_SH and AS_TR_CPP as more robust
18055         alternatives of translit over the alphabet.
18056         Based on a patch from Stepan Kasal <kasal@ucw.cz>.
18057
18058 2005-08-24  Simon Josefsson  <jas@extundo.com>
18059
18060         * tests/test-getpass.c: New file.
18061
18062 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
18063
18064         * m4/regex.m4 (gl_REGEX): Use POSIX-compliant spellings when testing
18065         for GNU regex features.
18066
18067 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
18068
18069         * lib/regcomp.c (regerror): 2nd arg is 'restrict', as per POSIX.
18070         * lib/regex.h (regerror): Likewise.
18071
18072         * lib/regex.c: Do not include <sys/types.h>, as POSIX no longer
18073         requires this.  (The code never needed it.)
18074
18075         * lib/regcomp.c, regex_internal.c, regex_internal.h, regexec.c:
18076         All uses of recently-renamed identifiers changed to use the new,
18077         POSIX-compliant names.  The code will build and run just fine
18078         without these changes, but it's better to eat our own dog food
18079         and use the standard-conforming names.
18080
18081         * lib/regex.h: Fix a multitude of POSIX name space violations.
18082         These changes have an effect only for programs that define
18083         _POSIX_C_SOURCE, _POSIX_SOURCE, or _XOPEN_SOURCE; they
18084         do not change anything for programs compiled in the normal way.
18085         Also, there is no effect on the ABI.
18086
18087         (_REGEX_SOURCE): New macro.
18088         Do not include <stddef.h> if _XOPEN_SOURCE and VMS are both
18089         defined and _GNU_SOURCE is not; this fixes a name space violation.
18090
18091         Rename the following macros to obey POSIX requirements.
18092         The old names are still visible as macros if _REGEX_SOURCE is defined.
18093         (REG_BACKSLASH_ESCAPE_IN_LISTS): renamed from
18094         RE_BACKSLASH_ESCAPE_IN_LISTS.
18095         (REG_BK_PLUS_QM): renamed from RE_BK_PLUS_QM.
18096         (REG_CHAR_CLASSES): renamed from RE_CHAR_CLASSES.
18097         (REG_CONTEXT_INDEP_ANCHORS): renamed from RE_CONTEXT_INDEP_ANCHORS.
18098         (REG_CONTEXT_INDEP_OPS): renamed from RE_CONTEXT_INDEP_OPS.
18099         (REG_CONTEXT_INVALID_OPS): renamed from RE_CONTEXT_INVALID_OPS.
18100         (REG_DOT_NEWLINE): renamed from RE_DOT_NEWLINE.
18101         (REG_DOT_NOT_NULL): renamed from RE_DOT_NOT_NULL.
18102         (REG_HAT_LISTS_NOT_NEWLINE): renamed from RE_HAT_LISTS_NOT_NEWLINE.
18103         (REG_INTERVALS): renamed from RE_INTERVALS.
18104         (REG_LIMITED_OPS): renamed from RE_LIMITED_OPS.
18105         (REG_NEWLINE_ALT): renamed from RE_NEWLINE_ALT.
18106         (REG_NO_BK_BRACES): renamed from RE_NO_BK_BRACES.
18107         (REG_NO_BK_PARENS): renamed from RE_NO_BK_PARENS.
18108         (REG_NO_BK_REFS): renamed from RE_NO_BK_REFS.
18109         (REG_NO_BK_VBAR): renamed from RE_NO_BK_VBAR.
18110         (REG_NO_EMPTY_RANGES): renamed from RE_NO_EMPTY_RANGES.
18111         (REG_UNMATCHED_RIGHT_PAREN_ORD): renamed from
18112         RE_UNMATCHED_RIGHT_PAREN_ORD.
18113         (REG_NO_POSIX_BACKTRACKING): renamed from RE_NO_POSIX_BACKTRACKING.
18114         (REG_NO_GNU_OPS): renamed from RE_NO_GNU_OPS.
18115         (REG_DEBUG): renamed from RE_DEBUG.
18116         (REG_INVALID_INTERVAL_ORD): renamed from RE_INVALID_INTERVAL_ORD.
18117         (REG_IGNORE_CASE): renamed from RE_ICASE.  This renaming is a bit
18118         unusual, since we can't clash with the POSIX REG_ICASE.
18119         (REG_CARET_ANCHORS_HERE): renamed from RE_CARET_ANCHORS_HERE.
18120         (REG_CONTEXT_INVALID_DUP): renamed from RE_CONTEXT_INVALID_DUP.
18121         (REG_NO_SUB): renamed from RE_NO_SUB.
18122         (REG_SYNTAX_EMACS): renamed from RE_SYNTAX_EMACS.
18123         (REG_SYNTAX_AWK): renamed from RE_SYNTAX_AWK.
18124         (REG_SYNTAX_GNU_AWK): renamed from RE_SYNTAX_GNU_AWK.
18125         (REG_SYNTAX_POSIX_AWK): renamed from RE_SYNTAX_POSIX_AWK.
18126         (REG_SYNTAX_GREP): renamed from RE_SYNTAX_GREP.
18127         (REG_SYNTAX_EGREP): renamed from RE_SYNTAX_EGREP.
18128         (REG_SYNTAX_POSIX_EGREP): renamed from RE_SYNTAX_POSIX_EGREP.
18129         (REG_SYNTAX_ED): renamed from RE_SYNTAX_ED.
18130         (REG_SYNTAX_SED): renamed from RE_SYNTAX_SED.
18131         (_REG_SYNTAX_POSIX_COMMON): renamed from _RE_SYNTAX_POSIX_COMMON.
18132         (REG_SYNTAX_POSIX_BASIC): renamed from RE_SYNTAX_POSIX_BASIC.
18133         (REG_SYNTAX_POSIX_MINIMAL_BASIC): renamed from
18134         RE_SYNTAX_POSIX_MINIMAL_BASIC.
18135         (REG_SYNTAX_POSIX_EXTENDED): renamed from RE_SYNTAX_POSIX_EXTENDED.
18136         (REG_SYNTAX_POSIX_MINIMAL_EXTENDED): renamed from
18137         RE_SYNTAX_POSIX_MINIMAL_EXTENDED.
18138         (REG_DUP_MAX): renamed from RE_DUP_MAX.  No need to undef it.
18139         (REG_UNALLOCATED): Renamed from REGS_UNALLOCATED.
18140         (REG_REALLOCATE): Renamed from REGS_REALLOCATE.
18141         (REG_FIXED): Renamed from REGS_FIXED.
18142         (REG_NREGS): Renamed from RE_NREGS.
18143
18144         (REG_ICASE, REG_NEWLINE, REG_NOSUB): Do not depend on the values
18145         of other REG_* macros, since POSIX says the user is allowed to
18146         #undef these macros selectively.
18147
18148         (reg_errcode_t): Update comment stating what other tables need
18149         to be consistent.
18150
18151         Rename the following enum values to obey POSIX requirements.
18152         The old names are still visible as macros.
18153         (_REG_ENOSYS): Renamed from REG_ENOSYS.  Define even if _XOPEN_SOURCE
18154         is not defined, since GNU is supposed to be a superset of POSIX as
18155         much as possible, and since we want reg_errcode_t to be a signed
18156         type for implementation consistency.
18157         (_REG_NOERROR): Renamed from REG_NOERROR.
18158         (_REG_NOMATCH): Renamed from REG_NOMATCH.
18159         (_REG_BADPAT): Renamed from REG_BADPAT.
18160         (_REG_ECOLLATE): Renamed from REG_ECOLLATE.
18161         (_REG_ECTYPE): Renamed from REG_ECTYPE.
18162         (_REG_EESCAPE): Renamed from REG_EESCAPE.
18163         (_REG_ESUBREG): Renamed from REG_ESUBREG.
18164         (_REG_EBRACK): Renamed from REG_EBRACK.
18165         (_REG_EPAREN): Renamed from REG_EPAREN.
18166         (_REG_EBRACE): Renamed from REG_EBRACE.
18167         (_REG_BADBR): Renamed from REG_BADBR.
18168         (_REG_ERANGE): Renamed from REG_ERANGE.
18169         (_REG_ESPACE): Renamed from REG_ESPACE.
18170         (_REG_BADRPT): Renamed from REG_BADRPT.
18171         (_REG_EEND): Renamed from REG_EEND.
18172         (_REG_ESIZE): Renamed from REG_ESIZE.
18173         (_REG_ERPAREN): Renamed from REG_ERPAREN.
18174         (REG_ENOSYS, REG_NOERROR, REG_NOMATCH, REG_BADPAT, REG_ECOLLATE):
18175         (REG_ECTYPE, REG_EESCAPE, REG_ESUBREG, REG_EBRACK, REG_EPAREN):
18176         (REG_EBRACE, REG_BADBR, REG_ERANGE, REG_ESPACE, REG_BADRPT, REG_EEND):
18177         (REG_ESIZE, REG_ERPAREN): Now macros, not enum constants.
18178
18179         (_REG_RE_NAME, _REG_RM_NAME): New macros.
18180         (REG_TRANSLATE_TYPE): Renamed from RE_TRANSLATE_TYPE.  All uses
18181         changed.  But support the old name if the new one is not defined
18182         and if _REGEX_SOURCE.
18183
18184         Change the following member names in struct re_pattern_buffer.
18185         The old names are still supported if !_REGEX_SOURCE.
18186         The new names are always supported, regardless of _REGEX_SOURCE.
18187         (re_buffer): Renamed from buffer.
18188         (re_allocated): Renamed from allocated.
18189         (re_used): Renamed from used.
18190         (re_syntax): Renamed from syntax.
18191         (re_fastmap): Renamed from fastmap.
18192         (re_translate): Renamed from translate.
18193         (re_can_be_null): Renamed from can_be_null.
18194         (re_regs_allocated): Renamed from regs_allocated.
18195         (re_fastmap_accurate): Renamed from fastmap_accurate.
18196         (re_no_sub): Renamed from no_sub.
18197         (re_not_bol): Renamed from not_bol.
18198         (re_not_eol): Renamed from not_eol.
18199         (re_newline_anchor): Renamed from newline_anchor.
18200
18201         Change the following member names in struct re_registers.
18202         The old names are still supported if !_REGEX_SOURCE.
18203         The new names are always supported, regardless of _REGEX_SOURCE.
18204         (rm_num_regs): Renamed from num_regs.
18205         (rm_start): Renamed from start.
18206         (rm_end): Renamed from end.
18207
18208         (re_set_syntax, re_compile_pattern, re_compile_fastmap):
18209         (re_search, re_search_2, re_match, re_match_2, re_set_registers):
18210         Prepend __ to parameter names.
18211
18212         Undo yesterday's changes.
18213
18214 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
18215
18216         * config/srclist.txt: Remove glibc bug 1233 and add 1236, which
18217         supersedes it. Add glibc bugs 1237, 1238, 1240.  Comment out
18218         lib/regex.c.
18219
18220 2005-08-24  Jim Meyering  <jim@meyering.net>
18221
18222         Sync from coreutils.
18223         * m4/fcntl-safer.m4: New file.
18224
18225         * m4/xgetcwd.m4: Use AC_LIBSOURCES and AC_LIBOBJ to indicate source
18226         and object files for this module.
18227
18228 2005-08-24  Jim Meyering  <jim@meyering.net>
18229
18230         Sync from coreutils.
18231         * lib/fcntl--.h, lib/fcntl-safer.h, lib/open-safer.c: New files.
18232
18233 2005-08-24  Jim Meyering  <jim@meyering.net>
18234
18235         * modules/xgetcwd (Makefile.am): Remove `lib_SOURCES += ...' line,
18236         now that xgetcwd.m4 requires xgetcwd.c and xgetcwd.h.
18237
18238 2005-08-24  Jim Meyering  <jim@meyering.net>
18239
18240         * modules/fcntl-safer: New module.
18241         * modules/fts (Depends-on): Add fcntl-safer.
18242         * MODULES.html.sh (File descriptor based Input/Output):
18243         Add fcntl-safer.
18244
18245 2005-08-24  Bruno Haible  <bruno@clisp.org>
18246
18247         Support for unit test modules.
18248         * modules/README: Mention tests modules.
18249         * modules/TEMPLATE-TESTS: New file.
18250         * gnulib-tool: New options --extract-tests-module, --with-tests and
18251         --tests-base (unused for the moment).
18252         (testsbase, inctests): New variables.
18253         (func_all_modules): Exclude TEMPLATE-TESTS and *-tests.
18254         (func_verify_module): Exclude TEMPLATE-TESTS.
18255         (func_verify_nontests_module, func_verify_tests_module): New functions.
18256         (func_get_dependencies): Add implicit dependency for tests modules.
18257         (func_get_tests_module): New function.
18258         (func_modules_transitive_closure): When --with-tests was specified,
18259         include the unit tests as well, unless explicitly avoided.
18260         (func_emit_lib_Makefile_am): Ignore the tests modules here.
18261         (func_emit_tests_Makefile_am): New function.
18262         (func_create_testdir): When --with-tests was specified, emit a
18263         tests/ directory.
18264         * MODULES.html.sh (Future developments): Update.
18265
18266 2005-08-24  Bruno Haible  <bruno@clisp.org>
18267
18268         * modules/tls-tests: New file.
18269         * tests/test-tls.c: New file, from GNU gettext.
18270
18271 2005-08-24  Bruno Haible  <bruno@clisp.org>
18272
18273         * modules/lock-tests: New file.
18274         * tests/test-lock.c: New file, from GNU gettext.
18275
18276 2005-08-24  Bruno Haible  <bruno@clisp.org>
18277
18278         * lib/lock.h: Add multiple inclusion guard.
18279         * lib/tls.h: Add multiple inclusion guard.
18280
18281 2005-08-24  Bruno Haible  <bruno@clisp.org>
18282
18283         * gnulib-tool: Add support for the --aux-dir option to
18284         --create-testdir, --create-megatestdir, --test, --megatest.
18285         (func_create_testdir, func_create_megatestdir): Optionally emit a
18286         AC_CONFIG_AUX_DIR directive.
18287         (create-testdir, create-megatestdir, test, megatest): Provide a
18288         default value for $auxdir.
18289
18290 2005-08-24  Bruno Haible  <bruno@clisp.org>
18291
18292         * gnulib-tool (import): Use compound statement instead of subshell
18293         where possible.
18294
18295 2005-08-24  Bruno Haible  <bruno@clisp.org>
18296
18297         * gnulib-tool (import): Change --aux-dir default to "build-aux".
18298
18299 2005-08-24  Bruno Haible  <bruno@clisp.org>
18300
18301         * gnulib-tool (func_version): Update.
18302
18303 2005-08-24  Bruno Haible  <bruno@clisp.org>
18304
18305         * gnulib-tool (func_import, func_create_testdir,
18306         func_create_megatestdir): Quote all autoconf macro arguments.
18307
18308 2005-08-24  Bruno Haible  <bruno@clisp.org>
18309
18310         * gnulib-tool (func_create_megatestdir): Call autoreconf without the
18311         option --force, because --force causes the aclocal.m4 of each
18312         subdirectory to be newer than the corresponding config.h.in.
18313
18314 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
18315
18316         * m4/regex.m4 (gl_INCLUDED_REGEX): Remove; no longer used.
18317         All contents moved to gl_REGEX.
18318         (gl_REGEX): Don't bother checking whether lib/regex.c exists;
18319         assume that it does.
18320
18321 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
18322
18323         * lib/regex.h (REG_NOSYS)
18324         [!defined _XOPEN_SOURCE && 200112L <= _POSIX_C_SOURCE]:
18325         Define, since POSIX requires it as of 2001.
18326         (_REG_ENOSYS)
18327         [! (defined _XOPEN_SOURCE || 200112L <= _POSIX_C_SOURCE)]:
18328         New private symbol, used to keep the enum signed in all cases.
18329         * lib/regex.h (RE_NO_EMPTY_RANGES): Fix doc bug reported by James
18330         Youngman in
18331         <http://lists.gnu.org/archive/html/bug-gnulib/2005-07/msg00132.html>.
18332
18333         * lib/regex_internal.c (re_string_skip_chars, register_state):
18334         (calc_state_hash):
18335         Remove forward decls; no longer needed now that we use prototypes.
18336         * lib/regexec.c (acquire_init_state_context, check_halt_node_context):
18337         (proceed_next_node, pop_fail_stack, sub_epsilon_src_nodes):
18338         (clean_state_log_if_needed): Likewise.
18339
18340 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
18341
18342         * config/srclist.txt: Add glibc bugs 1231-1233.
18343
18344 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
18345
18346         Fix problems reported by Sam Steingold in
18347         <http://lists.gnu.org/archive/html/bug-gnulib/2005-08/msg00007.html>.
18348         * lib/regexec.c (sift_states_bkref): Fix portability bug: the code
18349         assumed that reg_errcode_t is a signed type, which is not
18350         necessarily true if _XOPEN_SOURCE is not defined.
18351         * lib/regex_internal.c (calc_state_hash): Put 'inline' before type,
18352         since some compilers warn about it otherwise.
18353
18354 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
18355
18356         * lib/regcomp.c (create_initial_state): Remove duplicate decl.
18357         (init_word_char, create_initial_state, duplicate_node_closure):
18358         (fetch_token, peek_token_bracket, build_range_exp):
18359         (build_collating_symbol): Remove forward decls; no longer needed
18360         now that we use prototypes.
18361
18362         * lib/regcomp.c:
18363         (re_compile_pattern, re_set_syntax, re_compile_fastmap):
18364         (re_compile_fastmap_iter, regcomp, regerror, regfree):
18365         (re_compile_internal, init_dfa, init_word_char, free_workarea_compile):
18366         (create_initial_state, optimize_utf8, analyze, postorder, preorder):
18367         (optimize_subexps, lower_subexps, lower_subexp, calc_first, calc_next):
18368         (link_nfa_nodes, duplicate_node_closure, search_duplicated_node):
18369         (duplicate_node, calc_inveclosure, calc_eclosure, calc_eclosure_iter):
18370         (fetch_token, peek_token, peek_token_bracket, parse, parse_reg_exp):
18371         (parse_branch, parse_expression, parse_sub_exp, parse_dup_op):
18372         (build_range_exp, build_collating_symbol, parse_bracket_exp):
18373         (parse_bracket_element, parse_bracket_symbol, build_equiv_class):
18374         (build_charclass, build_charclass_op, fetch_number, create_tree):
18375         (create_token_tree, mark_opt_subexp, duplicate_tree):
18376         Use prototypes rather than old-style definitions.
18377
18378         * lib/regex_internal.c:
18379         (re_string_allocate, re_string_construct, re_string_realloc_buffers):
18380         (re_string_construct_common, build_wcs_buffer, build_wcs_upper_buffer):
18381         (re_string_skip_chars, build_upper_buffer, re_string_translate_buffer):
18382         (re_string_reconstruct, re_string_peek_byte_case):
18383         (re_string_fetch_byte_case, re_string_destruct, re_string_context_at):
18384         (re_node_set_alloc, re_node_set_init_1, re_node_set_init_2):
18385         (re_node_set_init_copy, re_node_set_add_intersect):
18386         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
18387         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
18388         (re_node_set_remove_at, re_dfa_add_node, calc_state_hash):
18389         (re_acquire_state, re_acquire_state_context, register_state):
18390         (create_ci_newstate, create_cd_newstate, free_state):
18391         Likewise.
18392         * lib/regexec.c (regexec, re_match, re_search, re_match_2,
18393         re_search_2):
18394         (re_search_2_stub, re_search_stub, re_copy_regs, re_set_registers):
18395         (re_search_internal, prune_impossible_nodes):
18396         (acquire_init_state_context, check_matching, static):
18397         (check_halt_node_context, check_halt_state_context, proceed_next_node):
18398         (push_fail_stack, pop_fail_stack, set_regs, free_fail_stack_return):
18399         (update_regs, sift_states_backward, build_sifted_states):
18400         (clean_state_log_if_needed, merge_state_array):
18401         (update_cur_sifted_state, add_epsilon_src_nodes):
18402         (sub_epsilon_src_nodes, check_dst_limits, check_dst_limits_calc_pos_1):
18403         (check_dst_limits_calc_pos, check_subexp_limits, sift_states_bkref):
18404         (sift_states_iter_mb, transit_state, merge_state_with_log, static):
18405         (find_recover_state, check_subexp_matching_top, transit_state_mb):
18406         (transit_state_bkref, get_subexp, get_subexp_sub, find_subexp_node):
18407         (check_arrival, check_arrival_add_next_nodes):
18408         (check_arrival_expand_ecl, check_arrival_expand_ecl_sub):
18409         (expand_bkref_cache, build_trtable, group_nodes_into_DFAstates):
18410         (check_node_accept_bytes, check_node_accept, extend_buffers):
18411         (match_ctx_init, match_ctx_clean, match_ctx_free, match_ctx_add_entry):
18412         (search_cur_bkref_entry, match_ctx_add_subtop, match_ctx_add_sublast):
18413         (sift_ctx_init):
18414         Likewise.
18415
18416         * lib/regex_internal.h:
18417         (re_string_allocate, re_string_construct, re_string_reconstruct):
18418         (re_string_realloc_buffers, build_wcs_buffer, build_wcs_upper_buffer):
18419         (build_upper_buffer, re_string_translate_buffer, re_string_destruct):
18420         (re_string_elem_size_at, re_string_char_size_at, re_string_wchar_at):
18421         (re_string_context_at, re_string_peek_byte_case):
18422         (re_string_fetch_byte_case): Declare even if RE_NO_INTERNAL_PROTOTYPES
18423         is defined, since we now use prototypes always.
18424
18425         * lib/regex.h (_RE_ARGS): Remove.  No longer needed, since we assume
18426         C89 or better.  All uses removed.
18427
18428 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
18429
18430         * config/srclist.txt: Add glibc bugs 1220-1227.
18431
18432 2005-08-20  Jim Meyering  <jim@meyering.net>
18433
18434         * lib/regexec.c (regexec, re_search_stub) [!_LIBC]: Omit declaration
18435         of unused local, dfa.
18436
18437 2005-08-20  Bruno Haible  <bruno@clisp.org>
18438
18439         * m4/regex.m4 (gl_PREREQ_REGEX): Require AC_GNU_SOURCE.
18440
18441 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
18442
18443         * lib/regex_internal.c (re_string_realloc_buffers, re_node_set_insert):
18444         (re_node_set_insert_last, re_dfa_add_node):
18445         Rename local variables to avoid GCC shadowing warnings.
18446
18447 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
18448
18449         * lib/regex_internal.c (re_acquire_state, re_acquire_state_context)
18450         [defined lint]: Suppress bogus uninitialized-variable warnings.
18451
18452         * lib/regcomp.c (duplicate_node): Return new index, not an error code,
18453         and let the caller return REG_ESPACE if out of space.  This
18454         removes an uninitialied-variable warning with GCC 4.0.1, and also
18455         avoids taking the address of a local variable.  All callers
18456         changed.
18457
18458 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
18459
18460         * config/srclist.txt: Comment out $LIBCSRC/posix/regex_internal.c,
18461         $LIBCSRC/posix/regexec.c.
18462         Add glibc bug 1217 for regcomp.c.
18463
18464 2005-08-19  Jim Meyering  <jim@meyering.net>
18465
18466         * lib/regexec.c (proceed_next_node): Redo local variables to
18467         avoid GCC shadowing warnings.
18468
18469 2005-08-18  Bruno Haible  <bruno@clisp.org>
18470
18471         * lib/strstr.c (strstr): Fix return value in multibyte case.
18472         * lib/strcasestr.c (strcasestr): Likewise.
18473
18474 2005-08-17  Paul Eggert  <eggert@cs.ucla.edu>
18475
18476         * lib/regex.h: Remove useless space-before-tab.  From coreutils.
18477
18478 2005-08-17  Jim Meyering  <jim@meyering.net>
18479
18480         Make the %s format (seconds since the epoch) work for a negative
18481         number and when used with a zero-padded field width, e.g. %015s.
18482
18483         * lib/strftime.c (my_strftime): Move the `do_number_sign_and_padding'
18484         label so that it precedes the code to set `digits'.  Otherwise,
18485         %0Ns wouldn't work.  Before this change, `date -d @-22 +%05s' would
18486         print `00-22'.  Now, it prints `-0022', as it should.
18487
18488 2005-08-17  Bruno Haible  <bruno@clisp.org>
18489
18490         * modules/strstr (Files): Add m4/mbrtowc.m4.
18491         (Depends-on): Add mbuiter.
18492
18493 2005-08-17  Bruno Haible  <bruno@clisp.org>
18494
18495         * modules/strcasestr: New file.
18496         * MODULES.html.sh (String handling, based on ANSI C 89): Add
18497         strcasestr.
18498
18499 2005-08-17  Bruno Haible  <bruno@clisp.org>
18500
18501         * modules/strcase (Depends-on): Add mbuiter. Remove strnlen1, mbchar.
18502
18503 2005-08-17  Bruno Haible  <bruno@clisp.org>
18504
18505         * modules/mbuiter: New file.
18506         * MODULES.html.sh (Extended multibyte and wide character utilities):
18507         Add mbuiter.
18508
18509 2005-08-17  Bruno Haible  <bruno@clisp.org>
18510
18511         * m4/strstr.m4 (gl_FUNC_STRSTR): Use the replacement function always.
18512         (gl_PREREQ_STRSTR): Use gl_FUNC_MBRTOWC.
18513
18514 2005-08-17  Bruno Haible  <bruno@clisp.org>
18515
18516         * m4/strcasestr.m4: New file.
18517
18518 2005-08-17  Bruno Haible  <bruno@clisp.org>
18519
18520         * lib/strstr.h: Ignore HAVE_STRSTR, always declare the gnulib function.
18521         * lib/strstr.c: Completely rewritten, with multibyte locale support.
18522
18523 2005-08-17  Bruno Haible  <bruno@clisp.org>
18524
18525         * lib/strcasestr.h: New file.
18526         * lib/strcasestr.c: New file.
18527
18528 2005-08-17  Bruno Haible  <bruno@clisp.org>
18529
18530         * lib/strcasecmp.c: Use mbuiter.h.
18531
18532 2005-08-17  Bruno Haible  <bruno@clisp.org>
18533
18534         * lib/mbuiter.h: New file.
18535
18536 2005-08-16  Paul Eggert  <eggert@cs.ucla.edu>
18537
18538         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Do not override the results
18539         of gl_GETOPT_SUBSTITUTE.  That way, if both gl_GETOPT_SUBSTITUTE
18540         and gl_GETOPT are both invoked via different paths (as happens
18541         with GNU tar CVS because it uses both argp and getopt), the former
18542         wins.
18543
18544 2005-08-16  Bruno Haible  <bruno@clisp.org>
18545
18546         * modules/tls: New file.
18547         * MODULES.html.sh (Multithreading): Add tls.
18548
18549 2005-08-16  Bruno Haible  <bruno@clisp.org>
18550
18551         * modules/strnlen1: New file.
18552         * MODULES.html.sh (String handling): Add strnlen1.
18553
18554 2005-08-16  Bruno Haible  <bruno@clisp.org>
18555
18556         * modules/strcase (Files): Add m4/mbrtowc.m4.
18557         (Depends-on): Add strnlen1, mbchar.
18558
18559 2005-08-16  Bruno Haible  <bruno@clisp.org>
18560
18561         * modules/mbiter: New file.
18562         * MODULES.html.sh (Extended multibyte and wide character utilities):
18563         Add mbiter.
18564
18565 2005-08-16  Bruno Haible  <bruno@clisp.org>
18566
18567         * modules/mbfile: New file.
18568         * MODULES.html.sh (Extended multibyte and wide character utilities):
18569         Add mbfile.
18570
18571 2005-08-16  Bruno Haible  <bruno@clisp.org>
18572
18573         * modules/mbchar: New file.
18574         * MODULES.html.sh (Extended multibyte and wide character utilities):
18575         New section.
18576
18577 2005-08-16  Bruno Haible  <bruno@clisp.org>
18578
18579         * m4/tls.m4: New file, from GNU gettext.
18580
18581 2005-08-16  Bruno Haible  <bruno@clisp.org>
18582
18583         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Use the replacement function
18584         always.
18585         (gl_PREREQ_STRCASECMP): Use gl_FUNC_MBRTOWC.
18586
18587 2005-08-16  Bruno Haible  <bruno@clisp.org>
18588
18589         * m4/mbiter.m4: New file.
18590
18591 2005-08-16  Bruno Haible  <bruno@clisp.org>
18592
18593         * m4/mbfile.m4: New file.
18594
18595 2005-08-16  Bruno Haible  <bruno@clisp.org>
18596
18597         * m4/mbchar.m4: New file.
18598
18599 2005-08-16  Bruno Haible  <bruno@clisp.org>
18600
18601         * lib/tls.h: New file, from GNU gettext.
18602         * lib/tls.c: New file, from GNU gettext.
18603
18604 2005-08-16  Bruno Haible  <bruno@clisp.org>
18605
18606         * lib/strnlen1.h: New file.
18607         * lib/strnlen1.c: New file.
18608
18609 2005-08-16  Bruno Haible  <bruno@clisp.org>
18610
18611         * lib/strcasecmp.c (struct mbiter_multi): Remove at_end field.
18612         (mbi_init): Update.
18613         (mbi_avail, mbi_advance): Let the iteration end before the terminating
18614         NUL byte, not after it.
18615
18616 2005-08-16  Bruno Haible  <bruno@clisp.org>
18617
18618         * lib/strcase.h (strcasecmp): Add note in comments.
18619         * lib/strncasecmp.c: Use code from strcasecmp.c.
18620         * lib/strcasecmp.c: Use mbchar module. Define private mbiter variant.
18621         (strcasecmp): Work correctly in multibyte locales.
18622
18623 2005-08-16  Bruno Haible  <bruno@clisp.org>
18624
18625         * lib/mbiter.h: New file.
18626
18627 2005-08-16  Bruno Haible  <bruno@clisp.org>
18628
18629         * lib/mbfile.h: New file.
18630
18631 2005-08-16  Bruno Haible  <bruno@clisp.org>
18632
18633         * lib/mbchar.h: New file.
18634         * lib/mbchar.c: New file.
18635
18636 2005-08-16  Bruno Haible  <bruno@clisp.org>
18637
18638         * lib/mbchar.h (mb_cmp, mb_casecmp): Order the invalid characters after
18639         the valid ones. Makes the comparison operations transitive:
18640         cmp (a, b) < 0 && cmp (b, c) < 0 ==> cmp (a, c) < 0.
18641         * lib/strcasecmp.c (strcasecmp): Use mb_casecmp.
18642
18643 2005-08-15  Simon Josefsson  <jas@extundo.com>
18644
18645         * modules/ssize_t (License): Change to 'unlimited'.
18646
18647         * gnulib-tool (sed_extract_prog): Recognize 'unlimited' license.
18648
18649 2005-08-15  Paul Eggert  <eggert@cs.ucla.edu>
18650
18651         * config/srclist.txt: Comment out $LIBCSRC/posix/regex.h.
18652         Add comments for each pending glibc patch.
18653
18654 2005-08-15  Bruno Haible  <bruno@clisp.org>
18655
18656         * lib/regex.h (__restrict_arr): Don't define to __restrict if
18657         __cplusplus is defined.
18658
18659 2005-08-14  Jim Meyering  <jim@meyering.net>
18660
18661         Sync from coreutils.
18662
18663         * lib/fts-cycle.c (setup_dir, enter_dir, leave_dir, free_dir):
18664         Use the hash-table-based cycle-detection code not just when
18665         FTS_TIGHT_CYCLE_CHECK if specified, but also with FTS_LOGICAL.
18666         Reported by James Youngman in
18667         <http://lists.gnu.org/archive/html/bug-gnulib/2005-08/msg00011.html>.
18668         * lib/fts_.h: Mention that with FTS_LOGICAL, we use
18669         FTS_TIGHT_CYCLE_CHECK.
18670         * lib/fts.c (fts_cross_check) [FTS_DEBUG]:
18671         s/active_dir_ht/fts_cycle.ht/. This lets us compile with -DFTS_DEBUG,
18672         once again.
18673         * lib/fts.c [! _LIBC]: Include "lstat.h" rather than rolling our own.
18674         * lib/fts.c (fd_safer): Remove decl.
18675         Include fcntl--.h rather than unistd-safer.h
18676         (fts_safe_changedir): Don't call fd_safer; no longer needed
18677         now that we include fcntl--.h.
18678
18679 2005-08-12  Simon Josefsson  <jas@extundo.com>
18680
18681         * modules/getndelim2: Use ssize_t module.
18682         * modules/getnline: Likewise.
18683         * modules/safe-read: Likewise.
18684         * modules/xreadlink: Likewise.
18685
18686         * modules/ssize_t: New file.
18687
18688 2005-08-12  Simon Josefsson  <jas@extundo.com>
18689
18690         * m4/readline.m4: Look for termcap, curses or ncurses if required.
18691
18692 2005-08-12  Simon Josefsson  <jas@extundo.com>
18693
18694         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
18695         ssize_t.
18696
18697 2005-08-12  Simon Josefsson  <jas@extundo.com>
18698
18699         * MODULES.html.sh (Extra functions based on ANSI C 89: Misc): Add
18700         readline, getdelim and check_version.
18701         (Support for systems lacking ISO C 99: Sizes of integer types):
18702         Add size_max.
18703
18704 2005-08-12  Bruno Haible  <bruno@clisp.org>
18705
18706         * m4/readline.m4 (gl_FUNC_READLINE): Look for ncurses first.
18707
18708 2005-08-11  Simon Josefsson  <jas@extundo.com>
18709
18710         * modules/readline: New file.
18711
18712         * modules/strnlen (Files): Add strnlen.h.
18713
18714 2005-08-11  Simon Josefsson  <jas@extundo.com>
18715
18716         * m4/readline.m4: New file.
18717
18718 2005-08-11  Simon Josefsson  <jas@extundo.com>
18719
18720         * lib/readline.h, readline.c: New file.
18721
18722 2005-08-11  Simon Josefsson  <jas@extundo.com>
18723
18724         * doc/gnulib.texi (Initial import, Finishing touches): Mention
18725         gl_AVOID.
18726
18727 2005-08-11  Bruno Haible  <bruno@clisp.org>
18728
18729         * lib/strnlen.h (strnlen): Change parameter name to match comment.
18730
18731 2005-08-10  Stepan Kasal  <kasal@ucw.cz>
18732
18733         * m4/onceonly_2_57.m4: Really require Autoconf 2.57.
18734
18735 2005-08-10  Simon Josefsson  <jas@extundo.com>
18736
18737         * tests/test-iconvme.c: New file.
18738
18739 2005-08-10  Simon Josefsson  <jas@extundo.com>
18740
18741         * m4/strnlen.m4: New file.
18742
18743         * m4/strndup.m4: Don't check for strnlen declaration, done in
18744         strnlen.m4.
18745
18746 2005-08-10  Simon Josefsson  <jas@extundo.com>
18747
18748         * lib/strndup.c: Use strnlen.h.
18749
18750         * lib/strnlen.h: New file.
18751
18752 2005-08-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
18753
18754         * README: Typos.
18755
18756 2005-08-02  Simon Josefsson  <jas@extundo.com>
18757
18758         * modules/readline: New file.
18759
18760 2005-08-02  Simon Josefsson  <jas@extundo.com>
18761
18762         * modules/getdelim: New file.
18763
18764         * modules/getline: Rewrite, don't use getndelim2.
18765
18766 2005-08-02  Simon Josefsson  <jas@extundo.com>
18767
18768         * m4/getline.m4: Separate out getdelim stuff into separate module.
18769
18770         * m4/getdelim.m4: New file.
18771
18772 2005-08-02  Simon Josefsson  <jas@extundo.com>
18773
18774         * lib/getline.h, getline.c: Rewrite.
18775
18776         * lib/getdelim.h, lib/getdelim.c: New files, ported from glibc.
18777
18778 2005-07-31  Bruno Haible  <bruno@clisp.org>
18779
18780         * lib/lock.h (gl_lock_initializer): New macro.
18781         (gl_lock_define_initialized): Use it.
18782         (gl_rwlock_initializer): New macro.
18783         (gl_rwlock_define_initialized): Use it.
18784         (gl_recursive_lock_initializer): New macro.
18785         (gl_recursive_lock_define_initialized): Use it.
18786
18787 2005-07-30  Karl Berry  <karl@gnu.org>
18788
18789         * doc/gnulib.texi (Initial import): mention -I$(top_builddir)/lib.
18790         Report from Ben Pfaff, regarding getopt.
18791
18792 2005-07-26  Paul Eggert  <eggert@cs.ucla.edu>
18793
18794         Add support to getopt for Emacs, which doesn't use LIBOBJS in the
18795         normal way.
18796         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE_HEADER): New macro.
18797         (gl_GETOPT_SUBSTITUTE): Use it.  Invoke gl_PREREQ_GETOPT.
18798         (gl_GETOPT_IFELSE, gl_GETOPT_CHECK_HEADERS): New macros.
18799         (gl_GETOPT): Use the new macros.  Most of the implementation
18800         is moved to the new macros.  This is for programs like Emacs
18801         that don't want all the functionality of gl_GETOPT.
18802
18803 2005-07-26  Bruno Haible  <bruno@clisp.org>
18804
18805         * m4/lock.m4: Update from GNU gettext.
18806
18807 2005-07-26  Bruno Haible  <bruno@clisp.org>
18808
18809         * lib/lock.h: Update from GNU gettext.
18810         * lib/lock.c: Update from GNU gettext.
18811
18812 2005-07-25  Paul Eggert  <eggert@cs.ucla.edu>
18813
18814         * m4/regex.m4 (gl_INCLUDED_REGEX): Use AC_RUN_IFELSE instead of the
18815         obsolescent AC_TRY_RUN.  Include the default includes files, for
18816         'exit'.
18817
18818 2005-07-24  Bruno Haible  <bruno@clisp.org>
18819
18820         * modules/visibility: New file.
18821         * MODULES.html.sh (Misc): Add visibility.
18822
18823 2005-07-24  Bruno Haible  <bruno@clisp.org>
18824
18825         * m4/visibility.m4: New file.
18826
18827 2005-07-24  Bruno Haible  <bruno@clisp.org>
18828
18829         * doc/visibility.texi: New file.
18830
18831 2005-07-22  Bruno Haible  <bruno@clisp.org>
18832
18833         * modules/alloca-opt (Makefile.am): Remove explicit dependency on
18834         $(ALLOCA_H), redundant through BUILT_SOURCES.
18835         * modules/argz (Makefile.am): Remove explicit dependency on $(ARGZ_H),
18836         redundant through BUILT_SOURCES.
18837         * modules/byteswap (Makefile.am): Remove explicit dependency on
18838         $(BYTESWAP_H), redundant through BUILT_SOURCES.
18839         * modules/fnmatch (Makefile.am): Remove explicit dependency on
18840         $(FNMATCH_H), redundant through BUILT_SOURCES.
18841         * modules/getopt (Makefile.am): Remove explicit dependency on
18842         $(GETOPT_H), redundant through BUILT_SOURCES.
18843         * modules/glob (Makefile.am): Remove explicit dependency on $(GLOB_H),
18844         redundant through BUILT_SOURCES.
18845         * modules/poll (Makefile.am): Remove explicit dependency on $(POLL_H),
18846         redundant through BUILT_SOURCES.
18847         * modules/stdbool (Makefile.am): Remove explicit dependency on
18848         $(STDBOOL_H), redundant through BUILT_SOURCES.
18849         * modules/stdint (Makefile.am): Remove explicit dependency on
18850         $(STDINT_H), redundant through BUILT_SOURCES.
18851         * modules/sysexits (Makefile.am): Add $(SYSEXITS_H) to BUILT_SOURCES.
18852         Remove explicit dependency on $(SYSEXITS_H).
18853         Reported by Alexandre Duret-Lutz <adl@src.lip6.fr>.
18854
18855 2005-07-18  Simon Josefsson  <jas@extundo.com>
18856
18857         * lib/check-version.c (check_version): Accept identical versions too.
18858
18859 2005-07-18  Bruno Haible  <bruno@clisp.org>
18860
18861         * modules/lock: New file.
18862         * MODULES.html.sh (Multithreading): New section.
18863
18864 2005-07-18  Bruno Haible  <bruno@clisp.org>
18865
18866         * m4/lock.m4: New file, from GNU gettext.
18867
18868 2005-07-18  Bruno Haible  <bruno@clisp.org>
18869
18870         * lib/lock.h: New file, from GNU gettext.
18871         * lib/lock.c: New file, from GNU gettext.
18872
18873 2005-07-18  Bruno Haible  <bruno@clisp.org>
18874
18875         * lib/lock.h (gl_once_t): New type.
18876         (gl_once_define, gl_once): New macros.
18877         * lib/lock.c (fresh_once): New variable.
18878         (glthread_once, glthread_once_call, glthread_once_singlethreaded): New
18879         functions.
18880
18881 2005-07-16  Simon Josefsson  <jas@extundo.com>
18882
18883         * doc/gnulib.texi (Library version handling): Add ELF symbol collision
18884         workaround, suggested by Bruno.
18885
18886 2005-07-15  Paul Eggert  <eggert@cs.ucla.edu>
18887
18888         * modules/xalloc (Depends-on): Add xalloc-die.
18889         * modules/xvasprintf (Depends-on): Add xalloc-die.
18890
18891 2005-07-15  Paul Eggert  <eggert@cs.ucla.edu>
18892
18893         * lib/quotearg.c: Add translator comment suggested by Bruno Haible,
18894         with a minor change.
18895
18896 2005-07-15  Bruno Haible  <bruno@clisp.org>
18897
18898         * m4/poll.m4 (gl_FUNC_POLL): Check against MacOS X 10.4 poll() bug.
18899         When using lib/poll.c, define poll as rpl_poll.
18900
18901 2005-07-14  Paul Eggert  <eggert@cs.ucla.edu>
18902
18903         * modules/argp (Depends-on): Remove unlocked-io.
18904
18905 2005-07-14  Derek Price  <derek@ximbiot.com>
18906
18907         * m4/glob.m4 (gl_GLOB): Cache glob interface check result.  Add check
18908         for glob symlink bug.
18909
18910 2005-07-14  Bruno Haible  <bruno@clisp.org>
18911
18912         * m4/argp.m4 (gl_ARGP): Remove invocation of gl_FUNC_GLIBC_UNLOCKED_IO.
18913         Instead, test for *_unlocked function declarations directly.
18914
18915 2005-07-11  Simon Josefsson  <jas@extundo.com>
18916
18917         * modules/size_max: New file.
18918
18919         * modules/xsize: Depend on size_max module for size_max.m4.
18920
18921 2005-07-11  Simon Josefsson  <jas@extundo.com>
18922
18923         * lib/size_max.h: New file.
18924
18925 2005-07-11  Paul Eggert  <eggert@cs.ucla.edu>
18926
18927         * lib/version-etc-fsf.c (version_etc_copyright): Parameterize the
18928         copyright symbol and the year.
18929         * lib/version-etc.c (COPYRIGHT_YEAR): New constant.
18930         (version_etc_va): Use parameterized copyright notice.
18931         Reword to conform to the current GNU coding standards.
18932
18933 2005-07-11  Karl Berry  <karl@gnu.org>
18934
18935         * doc/gnulib.texi (Quoting): new node.
18936         (Initial import): more info, from Patrice.
18937
18938 2005-07-11  Bruno Haible  <bruno@clisp.org>
18939
18940         * gnulib-tool (func_usage): Document option --avoid.
18941         (Command line options): Handle --avoid.
18942         (func_acceptable): New function.
18943         (func_modules_transitive_closure): Use it.
18944
18945 2005-07-11  Bruno Haible  <bruno@clisp.org>
18946
18947         * MODULES.html.sh: Use shortcut URLs to the www.opengroup.org site.
18948         Reported by Jim Meyering.
18949
18950 2005-07-10  Bruno Haible  <bruno@clisp.org>
18951
18952         * m4/size_max.m4 (gl_SIZE_MAX): Cast ~(size_t)0 back to size_t.
18953         Needed when size_t is smaller than 'unsigned int'.
18954         Reported by Paul Eggert.
18955
18956 2005-07-09  Sergey Poznyakoff  <gray@gnu.org.ua>
18957
18958         * modules/argp (Depends-on): Add unlocked-io
18959
18960 2005-07-09  Sergey Poznyakoff  <gray@gnu.org.ua>
18961
18962         * lib/argp-namefrob.h: Include unlocked-io.h. Removed unnecessary
18963         block of defines.
18964
18965 2005-07-08  Paul Eggert  <eggert@cs.ucla.edu>
18966
18967         * config/srclist.txt: Comment out regcomp.c, since we have a porting
18968         fix now.
18969
18970 2005-07-08  Eric Blake  <ebb9@byu.net>  (tiny change)
18971         and Paul Eggert  <eggert@cs.ucla.edu>
18972
18973         * lib/regcomp.c (init_dfa, build_range_exp): Store __btowc value
18974         in wint_t, not wchar_t.  Remove now-unnecessary cast.
18975
18976 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
18977
18978         * modules/regex (Files): Add lib/regex_internal.c,
18979         lib/regex_internal.h, lib/regexec.c, lib/regcomp.c, m4/codeset.m4.
18980         (Depends-on): Add extensions.
18981         (Makefile.am): Remove lib_SOURCES; now done by m4 code.
18982
18983 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
18984
18985         * m4/backupfile.m4 (gl_BACKUPFILE): Use AC_CHECK_FUNCS_ONCE on
18986         pathconf.
18987         * m4/same.m4 (gl_SAME): Likewise.
18988         Require AC_SYS_LONG_FILE_NAMES; bug reported by Gerrit P. Haase.
18989
18990         * m4/regex.m4: Adjust to new libc regex implementation.
18991         (gl_INCLUDED_REGEX): Add AC_LIBSOURCES for
18992         all the .c and .h parts of (the new) regex.
18993         Quote the m4 stuff better.
18994         Check for RE_ICASE bug of old gnulib.
18995         Check for REG_STARTEND of recent libc.
18996         Rename local variables from jm_* to gl_*.
18997         Quote operand of "test -f".
18998         Say "recent enough" version of libc, not "version 2".
18999         (gl_PREREQ_REGEX): Remove AC_FUNC_ALLOCA, since alloca is a
19000         prerequisite module.  Remove AC_HEADER_STDC; no longer needed.
19001         Check for locale.h, isblank, mbrtowc, wcrtomb, wcscoll.
19002         Remove check for btowc, isascii.
19003         Require AM_LANGINFO_CODESET.
19004
19005 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
19006
19007         * lib/regex.c, regex.h: Sync from libc.
19008         * lib/regcomp.c, lib/regexec_internal.c, lib/regex_internal.h:
19009         * lib/regexec.c:
19010         New files, synced from libc, except that regex_internal.h
19011         currently has a small porting fix.
19012
19013 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
19014
19015         * config/srclist.txt: Add regcomp.c, regex.c, regex.h,
19016         regex_internal.c, regexec.c.
19017         Add regex_internal.h too, but as a comment, since the libc version
19018         is currently broken in gnulib mode.
19019
19020 2005-07-06  Paul Eggert  <eggert@cs.ucla.edu>
19021
19022         Support programs like Emacs that use gnulib but not gettext.
19023         * MODULES.html.sh (Internationalization functions): Add gettext-h.
19024         * modules/gettext-h: New file.
19025         * modules/gettext (Files): Remove lib/gettext.h.
19026         (Depends-on): Add gettext-h.
19027         (Makefile.am): Remove lib_SOURCES.
19028         * modules/argmatch, modules/c-stack, modules/closeout:
19029         * modules/copy-file, modules/csharpcomp, modules/csharpexec:
19030         * modules/execute, modules/file-type, modules/getaddrinfo:
19031         * modules/getopt, modules/human, modules/javacomp:
19032         * modules/javaexec, modules/mkdir-p, modules/obstack:
19033         * modules/openat, modules/pagealign_alloc, modules/pipe:
19034         * modules/quotearg, modules/regex, modules/rpmatch:
19035         * modules/unicodeio, modules/userspec, modules/version-etc:
19036         * modules/wait-process, modules/xalloc-die, modules/xmemcoll:
19037         * modules/xsetenv:
19038         Depend on gettext-h, not gettext.
19039
19040 2005-07-05  Paul Eggert  <eggert@cs.ucla.edu>
19041
19042         * gnulib-tool (func_import): Add support for 'public domain' license.
19043         * modules/alloca, modules/atexit, modules/memmove:
19044         Now public domain, not GPL.
19045         * modules/dup2, modules/getpagesize, modules/malloc, modules/memset:
19046         * modules/realloc, modules/strerror, modules/strtod:
19047         Now LGPL, not GPL.
19048
19049 2005-07-05  Bruno Haible  <bruno@clisp.org>
19050
19051         * m4/mbrtowc.m4 (gl_FUNC_MBRTOWC): Upgrade to version from current
19052         autoconf CVS. Needed for mingw.
19053
19054 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
19055
19056         Remove the dependency of the strftime module on the tzset module.
19057         * modules/strftime (Depends-on): Remove dependency on tzset.
19058
19059 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
19060
19061         Remove the dependency of the strftime module on the tzset module.
19062         * m4/strftime.m4 (gl_FUNC_STRFTIME): Don't require
19063         gl_FUNC_TZSET_CLOBBER.
19064
19065 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
19066
19067         Remove the dependency of the strftime module on the tzset module.
19068         * lib/strftime.c (my_strftime)
19069         [! defined _LIBC && ! HAVE_RUN_TZSET_TEST]:
19070         Copy the input structure, to work around some of the bug with
19071         Solaris 2.5.1 and Solaris 2.6.  If you still care about these old
19072         Solaris releases, you should also use the tzset module, but we won't
19073         require it as a dependency any more since we don't want LGPLed code
19074         to depend on GPLed code.
19075
19076 2005-07-02  Jim Meyering  <jim@meyering.net>
19077
19078         * m4/chown.m4, cloexec.m4, dup2.m4, fsusage.m4:
19079         * m4/getcwd-path-max.m4, getcwd.m4, mkstemp.m4, mountlist.m4:
19080         * m4/pagealign_alloc.m4, save-cwd.m4, unistd-safer.m4:
19081         Don't check for fcntl.h, and don't test for HAVE_FCNTL_H.
19082
19083 2005-07-02  Jim Meyering  <jim@meyering.net>
19084
19085         * lib/backupfile.c (backup_args): Change a `0' to NULL.
19086
19087 2005-07-01  Paul Eggert  <eggert@cs.ucla.edu>
19088
19089         * lib/xnanosleep.c: Include timespec.h, since OpenBSD 3.4 <time.h>
19090         declares only 'struct timespec;' (!).
19091
19092 2005-07-01  Jim Meyering  <jim@meyering.net>
19093
19094         * lib/chown.c, cloexec.c, dup-safer.c, dup2.c, fsusage.c, getcwd.c:
19095         * lib/getloadavg.c, mountlist.c, openat.h, pagealign_alloc.c:
19096         * lib/save-cwd.c, tempname.c:
19097         Assume HAVE_FCNTL_H (i.e., include <fcntl.h> unconditionally,
19098         and don't include <sys/file.h>).
19099
19100 2005-06-29  Jim Meyering  <jim@meyering.net>
19101
19102         * lib/mkdir-p.c (make_dir_parents): Don't apply sizeof to a hard-coded
19103         type name.  Use the variable name instead.
19104         * lib/idcache.c (getuser, getuidbyname, getgroup, getgidbyname):
19105         Likewise.
19106
19107 2005-06-28  Simon Josefsson  <jas@extundo.com>
19108
19109         * modules/check-version (Files): Add check-version.m4.
19110
19111 2005-06-28  Simon Josefsson  <jas@extundo.com>
19112
19113         * m4/check-version.m4: New file, suggested by Jim Meyering
19114         <jim@meyering.net>.
19115
19116 2005-06-28  Simon Josefsson  <jas@extundo.com>
19117
19118         * lib/check-version.h, lib/check-version.c: New files.
19119
19120 2005-06-28  Simon Josefsson  <jas@extundo.com>
19121
19122         * lib/base64.c (base64_encode): Indent.  Rename 'b64' to avoid
19123         collision with global variable.  Better indentation.  Don't
19124         increment buffer pointer beyond buffer end.  Based on comments
19125         from Paul Eggert <eggert@cs.ucla.edu>.
19126
19127         * lib/base64.h: Indent.
19128
19129 2005-06-28  Simon Josefsson  <jas@extundo.com>
19130
19131         * doc/gnulib.texi (Library version handling): New section.
19132
19133 2005-06-28  Jim Meyering  <jim@meyering.net>
19134
19135         * check-module (find_included_lib_files): Hard-code another
19136         pair of exceptions: fts.c includes fts-cycle.c and unistd-safer.h
19137         but modules/fts-lgpl (correctly) does not list those files.
19138
19139         * modules/canonicalize (Files): Add lib/pathmax.h.
19140
19141 2005-06-25  Simon Josefsson  <jas@extundo.com>
19142
19143         * modules/check-version: New file.
19144
19145 2005-06-24  Paul Eggert  <eggert@cs.ucla.edu>
19146
19147         * lib/canon-host.c (canon-host): Append trailing "," to 0 in
19148         initializer of struct addrinfo, as an indication that we don't
19149         care how many members the structure has.
19150
19151 2005-06-24  Derek Price  <derek@ximbiot.com>
19152         and Bruno Haible  <bruno@clisp.org>
19153
19154         Remove stat module & update lstat.
19155         * m4/lstat.m4 (gl_FUNC_LSTAT): Drop AC_FUNC_LSTAT in favor of
19156         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
19157         * m4/stat.m4: Remove this file.
19158
19159 2005-06-24  Derek Price  <derek@ximbiot.com>
19160         and Bruno Haible  <bruno@clisp.org>
19161
19162         Remove stat module & update lstat.
19163         * lib/stat.c: Remove this file...
19164         (slash_aware_lstat): ...moving this content and its support...
19165         * lib/lstat.c (rpl_lstat): ...into here.
19166         * lib/lstat.h: New file.
19167
19168 2005-06-24  Derek Price  <derek@ximbiot.com>
19169         and Bruno Haible  <bruno@clisp.org>
19170
19171         Remove stat module & update lstat.
19172         * config/srclist.txt (libc sources): Remove stat.
19173
19174 2005-06-24  Derek Price  <derek@ximbiot.com>
19175         and Bruno Haible  <bruno@clisp.org>
19176
19177         Remove stat module & update lstat.
19178         * MODULES.html.sh (stat): Remove.
19179         * MODULES.html: Regenerated.
19180         * modules/lstat (Description): Correct function name.
19181         (Files): Add "lstat.h".
19182         (Depends-on): Remove stat, add xalloc, stat-macros.
19183         * modules/stat: Remove this file.
19184         (Include): Add "lstat.h", remove <sys/stat.h>.
19185
19186 2005-06-23  Paul Eggert  <eggert@cs.ucla.edu>
19187
19188         * lib/mktime.c: Include <string.h> even if !DEBUG.  (From glibc.)
19189         (ranged_convert): Don't save conversion in a temporary struct.
19190         This causes a warning with GCC 4.0.0, and anyway in the typical
19191         case it's not worth the extra 100 bytes or so of code.
19192         (ranged_convert, __mktime_internal): When calling a function via a
19193         pointer P, use P () rather than (*P) (), as we now assume C89 or
19194         better.
19195
19196 2005-06-22  Paul Eggert  <eggert@cs.ucla.edu>
19197
19198         * lib/readutmp.c (desirable_utmp_entry): Fix bug where "who -b" and
19199         "who -r" failed to give output.  Problem reported by Tim Waugh.
19200
19201         * lib/xmalloc.c (HAVE_GNU_CALLOC): New constant.
19202         (xcalloc): Use it to avoid needless tests.
19203         Problem reported by Jim Meyering.
19204
19205 2005-06-20  Derek Price  <derek@ximbiot.com>
19206
19207         * m4/bison.m4: Note that precious decls of YACC & YFLAGS will be
19208         unnecessary for Autoconfs > 2.59c.
19209
19210 2005-06-16  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
19211
19212         * lib/argp.h (__option_is_short): Check upper limit of
19213         __key. Isprint() requires its argument to have the value
19214         of an unsigned char or EOF.
19215
19216 2005-06-16  Jim Meyering  <jim@meyering.net>
19217
19218         * lib/calloc.c (rpl_calloc): Allocate a 1-byte buffer (not 1xS or Nx1)
19219         when either N or S is zero.
19220
19221 2005-06-16  Derek Price  <derek@ximbiot.com>
19222
19223         * m4/bison.m4: Declare YACC & YFLAGS precious.
19224
19225 2005-06-10  Paul Eggert  <eggert@cs.ucla.edu>
19226
19227         * lib/fnmatch.c (fnmatch): If there is an encoding error in a
19228         multibyte string or pattern, fall back on unibyte matching.
19229         Problem reported by James Youngman.
19230
19231 2005-06-08  Bruno Haible  <bruno@clisp.org>
19232
19233         * modules/csharpcomp: New file.
19234         * MODULES.html.sh (C#): Add csharpcomp.
19235
19236 2005-06-08  Bruno Haible  <bruno@clisp.org>
19237
19238         * m4/csharpcomp.m4: New file, from GNU gettext.
19239
19240 2005-06-08  Bruno Haible  <bruno@clisp.org>
19241
19242         * lib/csharpcomp.h: New file, from GNU gettext.
19243         * lib/csharpcomp.c: New file, from GNU gettext.
19244         * lib/csharpcomp.sh.in: New file, from GNU gettext.
19245
19246 2005-06-08  Bruno Haible  <bruno@clisp.org>
19247
19248         * lib/binary-io.h (fileno): Undefine before defining it. Avoids a gcc
19249         warning on mingw.
19250
19251 2005-06-07  Derek Price  <derek@ximbiot.com>
19252
19253         Sync from CVS.
19254         * lib/glob_.h: Indent nested #ifdef.
19255
19256 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
19257
19258         Sync from coreutils.
19259         Use "file name" when talking about file names, instead of "filename"
19260         or "path", as per the GNU coding standards.
19261         * lib/mkdir-p.c: Renamed from makepath.c.
19262         (make_dir_parents): Renamed from make_path.  All callers changed.
19263         * lib/mkdir-p.h: Likewise.  All includers changed.
19264         * lib/filenamecat.c: Renamed from path-concat.c.
19265         (file_name_concat): Renamed from path_concat.  All callers changed.
19266         [TEST_FILE_NAME_CONCAT]: Renamed from TEST_PATH_CONCAT.
19267         * lib/filenamecat.h: Likewise.  All includers changed.
19268         * lib/acl.c: Don't use "path" or "filename" to mean "file name"
19269         in comments or local variable names.
19270         * lib/basename.c: Likewise.
19271         * lib/canonicalize.c, canonicalize.h: Likewise.
19272         * lib/dirname.c, dirname.h: Likewise.
19273         * lib/euidaccess.c: Likewise.
19274         * lib/exclude.c: Likewise
19275         * lib/fnmatch_.h, fnmatch_loop.c: Likewise.
19276         * lib/fsusage.c, fsuage.h: Likewise.
19277         * lib/fts.c, fts_.h: Likewise.
19278         * lib/getcwd.c: Likewise.
19279         * lib/getloadavg.c: Likewise.
19280         * lib/mkstemp.c: Likewise.
19281         * lib/mountlist.c, mountlist.h: Likewise.
19282         * lib/openat.c, openat.h: Likewise.
19283         * lib/readlink-stub.c: Likewise.
19284         * lib/readutmp.c, readutmp.h: Likewise.
19285         * lib/rename.c: Likewise.
19286         * lib/rmdir.c: Likewise.
19287         * lib/same.c: Likewise.
19288         * lib/savedir.c: Likewise.
19289         * lib/stripslash.c: Likewise.
19290         * lib/tempname.c: Likewise.
19291         * lib/xreadlink.c: Likewise.
19292         * lib/exclude.c (excluded_file_name): Renamed from excluded_filename.
19293         All uses changed.
19294         * lib/exclude.h: Likewise.
19295
19296         * lib/euidaccess.c (getuid, getgid, getuid, getegid)
19297         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
19298         * lib/idcache.c (getpwuid, getpwnam, getgrgid, getgrnam)
19299         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
19300         * lib/pathmax.h: Include <limits.h> unconditionally, since other
19301         files have been getting away with it for years (MORE/BSD 4.3
19302         is extinct now).
19303         * lib/userspec.c (getpwnam, getgrnam, getgrgid)
19304         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
19305
19306         * lib/pathmax.h (_POSIX_PATH_MAX) [!defined _POSIX_PATH_MAX]:
19307         Define to 256, not 255, as per modern POSIX.
19308
19309 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
19310
19311         Sync from coreutils.
19312         Use "file name" when talking about file names, instead of "filename"
19313         or "path", as per the GNU coding standards.
19314         * MODULES.html.sh: mkdir-p renamed from makepath.
19315         filenamecat renamed from path-concat.
19316         * modules/filenamecat: Renamed from modules/path-concat.
19317         (Files): filenamecat.h and filenamecat.c renamed from
19318         path-concat.h and path-concat.c.
19319         (configure.ac): gl_FILE_NAME_CONCAT, not gl_PATH_CONCAT.
19320         (Include): filenamecat.h, not path-concat.h.
19321         * modules/mkdir-p: Renamed from modules/makepath.
19322         (Files): mkdir-p.h and mkdir-p.c renamed from makepath.h and
19323         makepath.c.
19324         (configure.ac): gl_MKDIR_PARENTS, not gl_MAKEPATH.
19325         (Include): mkdir-p.h, not makepath.h.
19326
19327 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
19328
19329         Sync from coreutils.
19330         * m4/mkdir-p.m4: Renamed from makepath.m4.
19331         (gl_MKDIR_PARENTS): Renamed from gl_MAKEPATH.  All uses changed.
19332         Rename files from makepath.c to mkdir-p.c, and from
19333         makepath.h to mkdir-p.h.
19334         * m4/filenamecat.m4: Renamed from path-concat.m4.
19335         (gl_FILE_NAME_CONCAT): Renamed from gl_PATH_CONCAT.  All uses changed.
19336         Rename files from path-concat.c to filenamecat.c,
19337         and from path-concat.h to filenamecat.h.
19338         * m4/getcwd-path-max.m4: Don't use "path" or "filename" to mean
19339         "file name" in local variables or comments.
19340         * m4/rename.m4: Likewise.
19341
19342 2005-06-01  Bruno Haible  <bruno@clisp.org>
19343
19344         * modules/csharpexec: New file.
19345         * MODULES.html.sh (C#): New section.
19346
19347 2005-06-01  Bruno Haible  <bruno@clisp.org>
19348
19349         * m4/csharp.m4: New file, from GNU gettext.
19350         * m4/csharpexec.m4: New file, from GNU gettext.
19351
19352 2005-06-01  Bruno Haible  <bruno@clisp.org>
19353
19354         * lib/csharpexec.h: New file, from GNU gettext.
19355         * lib/csharpexec.c: New file, from GNU gettext.
19356         * lib/csharpexec.sh.in: New file, from GNU gettext.
19357
19358 2005-05-31  Derek Price  <derek@ximbiot.com>
19359             Paul Eggert  <eggert@cs.ucla.edu>
19360
19361         Sync from cvs.
19362         * m4/glob.m4: s/MISSING_SYS_CDEFS_H/_SYS_CDEFS_H/ and comment.
19363
19364 2005-05-31  Derek Price  <derek@ximbiot.com>
19365             Paul Eggert  <eggert@cs.ucla.edu>
19366
19367         Sync from cvs.
19368         * lib/glob_.h: s/MISSING_SYS_CDEFS_H/_SYS_CDEFS_H/ and comment.
19369
19370 2005-05-29  Derek Price  <derek@ximbiot.com>
19371
19372         * config/srclist.txt (glob_.h, glob.c): Add these files.
19373
19374 2005-05-29  Derek Price  <derek@ximbiot.com>
19375
19376         * MODULES.html.sh: Add glob to Enhanced POSIX.2001 section.
19377         * modules/glob: New file.
19378         * modules/getlogin_r: Add link to POSIX spec in description.
19379
19380 2005-05-29  Derek Price  <derek@ximbiot.com>
19381             Paul Eggert  <eggert@cs.ucla.edu>
19382
19383         * m4/glob.m4: New file.
19384
19385 2005-05-29  Derek Price  <derek@ximbiot.com>
19386             Paul Eggert  <eggert@cs.ucla.edu>
19387
19388         * lib/glob_.h, lib/glob.c: New files.
19389
19390 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
19391
19392         * modules/fts (Files): Remove m4/inttypes-pri.m4.
19393         * modules/fts-lgpl (Depends-on): Remove gettext.
19394
19395 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
19396
19397         * m4/fts.m4 (gl_FUNC_FTS_CORE): Don't check for inttypes.h or stdint.h,
19398         and don't require gt_INTTYPES_PRI.
19399
19400 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
19401
19402         * lib/getlogin_r.c (getlogin_r): Don't set errno to 0 on return.
19403
19404         * lib/fts.c: Don't worry about debugging on pre-C99-compatible hosts;
19405         the configuration hassle isn't worth it.
19406         Include inttypes.h and stdint.h unconditionally if FTS_DEBUG.
19407         (LONGEST_MODIFIER, PRIuMAX): Remove.
19408
19409 2005-05-27  Bruno Haible  <bruno@clisp.org>
19410
19411         * lib/getlogin_r.h: Remove second include of <stddef.h>.
19412
19413 2005-05-26  Paul Eggert  <eggert@cs.ucla.edu>
19414
19415         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Define
19416         _POSIX_PTHREAD_SEMANTICS for Solaris.
19417
19418 2005-05-25  Derek Price  <derek@ximbiot.com>
19419
19420         * MODULES.html.sh: Add getlogin_r to POSIX.2001 support section.
19421
19422 2005-05-25  Derek Price  <derek@ximbiot.com>
19423             Paul Eggert  <eggert@cs.ucla.edu>
19424
19425         * modules/getlogin_r, m4/getlogin_r.m4: New files.
19426         * lib/getlogin_r.c, getlogin_r.h: New files.
19427
19428 2005-05-25  Bruno Haible  <bruno@clisp.org>
19429             Derek Price  <derek@ximbiot.com>
19430
19431         * lib/getlogin_r.h: Simplify API documentation.
19432
19433 2005-05-23  Derek Price  <derek@ximbiot.com>
19434
19435         * modules/minmax (Files): Add m4/minmax.m4.
19436         (configure.ac): Add gl_MINMAX.
19437
19438 2005-05-22  Paul Eggert  <eggert@cs.ucla.edu>
19439
19440         * lib/fts.c (fd_safer) [_LGPL_PACKAGE]: New static function,
19441         so that unistd-safer.h (GPL'ed code) need not be included.
19442
19443 2005-05-22  Bruno Haible  <bruno@clisp.org>
19444
19445         * m4/minmax.m4: New file.
19446         Based on a patch by Derek Price <derek@ximbiot.com>.
19447
19448 2005-05-22  Bruno Haible  <bruno@clisp.org>
19449
19450         * lib/stdint_.h (_STDINT_H_HAVE_INT64): New macro. Use it in #ifdefs.
19451         (INT64_MIN): Fix definition.
19452         Suggested by Paul Eggert <eggert@cs.ucla.edu>.
19453
19454         * lib/stdint_.h (_STDINT_H_NEED_SIGNED_INT_TYPES): Renamed from
19455         NEED_SIGNED_INT_TYPES.
19456
19457         * lib/stdint_.h (_STDINT_H_HAVE_SYSTEM_INTTYPES): Renamed from
19458         HAVE_SYSTEM_INTTYPES.
19459
19460 2005-05-22  Bruno Haible  <bruno@clisp.org>
19461
19462         * lib/minmax.h: Include <limits.h> only when it defines MIN, MAX.
19463         Also include <sys/param.h> if it defines MIN, MAX.
19464         Based on a patch by Derek Price <derek@ximbiot.com>.
19465
19466 2005-05-21  Jim Meyering  <jim@meyering.net>
19467
19468         * modules/fts (Files): Add m4/inttypes-pri.m4.
19469         (Depends-on): Add lstat and remove gettext.  Alphabetize.
19470
19471 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
19472
19473         New fts module.
19474         * lib/fts.c: Don't include "cycle-check.h" or "hash.h".
19475         (setup_dir, free_dir): New functions.
19476         (enter_dir, leave_dir): Define trivial
19477         alternatives of _LGPL_PACKAGE.  Move to fts-cycle.c if !_LGPL_PACKAGE.
19478         (HT_INITIAL_SIZE, ENTER_DIR): Remove.  All uses removed.
19479         (LEAVE_DIR): Fix typo: pass Fts and Ent to leave_dir.
19480         (struct Active_dir, AD_compare, AD_hash, enter_dir, leave_dir):
19481         Move to fts-cycle.c.
19482         (fts_open): Use setup_dir.
19483         (fts_close): Use free_dir.
19484         (fts_read): Have just one copy of the ENTER_DIR code rather than three.
19485         This adds a label and some gotos, but the alternatives were messier.
19486         Check for memory allocation failure when entering a dir.
19487         (fts_stat) [_LGPL_PACKAGE]: Bring back glibc cycle detection code.
19488         * lib/fts_.h (_LGPL_PACKAGE) [defined _LIBC]: New macro.
19489         (FTS): New member fts_cycle, that is a union that contains the
19490         old active_dir_ht and cycle_state.  All uses changed to mention
19491         fts_cycle.ht and fts_cycle.state.
19492         * lib/fts-cycle.c: New file, containing GPL'ed code migrated out of
19493         fts.c, with the following changes:
19494         (setup_dir, free_dir): New functions.
19495         (enter_dir): Now returns bool.  Return true if successful, false
19496         if memory exhausted.  All callers changed.
19497         Do not bother partly cleaning up on
19498         memory allocation failure; that is free_dir's job.
19499         However, free ad if hash_insert fails, to avoid memory leak.
19500         (enter_dir, leave_dir): Accommodate change to FTS by inspecting
19501         fts->fts_options to see which union member to use.
19502
19503 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
19504
19505         * m4/fts.m4 (gl_FUNC_FTS_CORE): Renamed from gl_FUNC_FTS.
19506         (gl_FUNC_FTS, gl_FUNC_FTS_LGPL): New macros.
19507
19508 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
19509
19510         * MODULES.html.sh (File system functions): Add fts, fts-lgpl.
19511
19512 2005-05-20  Jim Meyering  <jim@meyering.net>
19513
19514         * lib/unlinkdir.h (cannot_unlink_dir) [UNLINK_CANNOT_UNLINK_DIR]:
19515         Now a macro, to pacify GCC.
19516
19517 2005-05-20  Eric Blake  <ebb9@byu.net>  (tiny change)
19518
19519         * m4/chown.m4 (gl_FUNC_CHOWN): Correct sense of test for honoring IDs
19520         of -1.
19521
19522 2005-05-20  Eric Blake  <ebb9@byu.net>  (tiny change)
19523
19524         * lib/chown.c (rpl_chown): Return -1 on failure.
19525
19526 2005-05-18  Paul Eggert  <eggert@cs.ucla.edu>
19527
19528         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME]):
19529         Don't check for stddef.h.
19530         * m4/fts.m4 (gl_FUNC_FTS): Don't require AC_HEADER_STDC, as we
19531         don't use its results.
19532         Don't check for fcntl.h, stddef.h, stdlib.h, string.h, unistd.h,
19533         since we include them unconditionally.  Don't require
19534         AM_STDBOOL_H, since stdbool is a prerequisite.
19535         Don't require AC_C_CONST, AC_TYPE_SIZE_T or check for ptrdiff_t
19536         since we assume C89 or better.
19537         Don't require AC_FUNC_CLOSEDIR_VOID, AC_FUNC_LSTAT, or AC_FUNC_STAT,
19538         as we don't use their results.
19539         Don't check for fchdir, memmove, memset, strrchr, as we use
19540         them unconditionally.
19541         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER): Don't define
19542         GETTIMEOFDAY_CLOBBERS_LOCALTIME_BUFFER, since nobody uses it.
19543
19544 2005-05-18  Paul Eggert  <eggert@cs.ucla.edu>
19545
19546         * lib/canonicalize.c: Include canonicalize.h first, to test interface.
19547         Include <stddef.h> unconditionally, since we assume C89 now.
19548         All uses of PTR_INT_TYPE replaced by ptrdiff_t.
19549         * lib/fts.c: Include fts_.h first, to check interface.
19550         Do not include intprops.h; no longer needed.
19551         Include cycle-check.h and hash.h, since fts_.h no longer does.
19552         Remove unnecessary casts of closedir to void.
19553         (fts_build): Use a simpler method (not involving TYPE_SIGNED) to
19554         decide whether to decrement nlinks.
19555         * lib/fts_.h: Do not include hash.h or cycle-check.h; no longer needed.
19556         (FTS): Use struct hash_table * instead of Hash_table, so that
19557         we no longer need to include hash.h here.
19558
19559 2005-05-18  Jim Meyering  <jim@meyering.net>
19560
19561         * modules/dirfd (License): Change to LGPL.  Most of the code
19562         is already in the public domain.
19563
19564 2005-05-18  Jim Meyering  <jim@meyering.net>
19565
19566         * m4/fts.m4 (AC_LIBSOURCES): Add intprops.h to the list.
19567         Reported by Yoann Vandoorselaere.
19568
19569 2005-05-17  Jim Meyering  <jim@meyering.net>
19570
19571         * m4/fts.m4: New file, from coreutils.
19572
19573 2005-05-17  Jim Meyering  <jim@meyering.net>
19574
19575         * lib/fts.c, lib/fts_.h: New files, from coreutils.
19576
19577 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
19578
19579         Sync from coreutils.
19580         * m4/unlinkdir.m4: New file.
19581
19582 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
19583
19584         Sync from coreutils.
19585         * lib/unlinkdir.c, lib/unlinkdir.h: New files.
19586         * lib/gethrxtime.c, lib/gethrxtime.h, lib/getpass.h, lib/mountlist.h,
19587         lib/path-concat.c, lib/regex.h, lib/unlocked-io.h, lib/xtime.h:
19588         White space changes only.
19589         * lib/makepath.c (make_path): Port to hosts where leading "//" is
19590         special.
19591         * lib/yesno.c: Include getline.h, not ctype.h.
19592         (yesno): Don't remove leading white space; POSIX doesn't allow it.
19593         Use getline to remove arbitrary restriction on response length.
19594
19595 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
19596
19597         * config/srclist-update: Spell out "Street" in FSF postal
19598         mail address; this is the style the FSF seems to prefer.
19599
19600         * build-aux/depcomp, build-aux/install-sh, build-aux/mdate-sh,
19601         build-aux/missing, build-aux/mkinstalldirs: Sync from Automake;
19602         this updates FSF postal mail address.
19603
19604         Sync from coreutils.
19605         * modules/unlinkdir: New file.
19606         * modules/yesno (Depends-on): Add getline.
19607         * MODULES.html.sh (File system functions): Add unlinkdir.
19608
19609 2005-05-13  Paul Eggert  <eggert@cs.ucla.edu>
19610
19611         * lib/byteswap_.h, lib/getsubopt.h, lib/iconvme.h, lib/strsep.c,
19612         lib/strsep.h:
19613         Change the initial comment to refer to GPL, not LGPL.
19614         gnulib-tool will change it to LGPL as needed.
19615
19616         * lib/__fpending.c, lib/acl.c, lib/acl.h, lib/alloca_.h, lib/allocsa.c,
19617         lib/allocsa.h, lib/argmatch.c, lib/argmatch.h, lib/argp-ba.c,
19618         lib/argp-eexst.c, lib/argp-fmtstream.c, lib/argp-fmtstream.h,
19619         lib/argp-fs-xinl.c, lib/argp-help.c, lib/argp-namefrob.h,
19620         lib/argp-parse.c, lib/argp-pv.c, lib/argp-pvh.c, lib/argp-xinl.c,
19621         lib/argp.h, lib/argz.c, lib/argz_.h, lib/asnprintf.c, lib/asprintf.c,
19622         lib/atanl.c, lib/backupfile.c, lib/backupfile.h, lib/base64.c,
19623         lib/base64.h, lib/basename.c, lib/binary-io.h, lib/byteswap_.h,
19624         lib/c-ctype.c, lib/c-ctype.h, lib/c-stack.c, lib/c-stack.h,
19625         lib/c-strtod.c, lib/calloc.c, lib/canon-host.c, lib/canonicalize.c,
19626         lib/canonicalize.h, lib/ceill.c, lib/chdir-long.c, lib/chdir-long.h,
19627         lib/chown.c, lib/classpath.c, lib/classpath.h, lib/cloexec.c,
19628         lib/closeout.c, lib/closeout.h, lib/concatpath.c, lib/config.charset,
19629         lib/copy-file.c, lib/copy-file.h, lib/cycle-check.c, lib/cycle-check.h,
19630         lib/diacrit.c, lib/diacrit.h, lib/dirfd.c, lib/dirfd.h, lib/dirname.c,
19631         lib/dirname.h, lib/dummy.c, lib/dup-safer.c, lib/dup2.c, lib/eealloc.h,
19632         lib/error.c, lib/error.h, lib/euidaccess.c, lib/exclude.c,
19633         lib/exclude.h, lib/execute.c, lib/execute.h, lib/exit.h,
19634         lib/exitfail.c, lib/exitfail.h, lib/expl.c, lib/fatal-signal.c,
19635         lib/fatal-signal.h, lib/fd-safer.c, lib/file-type.c, lib/file-type.h,
19636         lib/fileblocks.c, lib/filemode.c, lib/filemode.h, lib/findprog.c,
19637         lib/findprog.h, lib/floorl.c, lib/fnmatch.c, lib/fnmatch_.h,
19638         lib/fnmatch_loop.c, lib/fopen-safer.c, lib/free.c, lib/frexpl.c,
19639         lib/fsusage.c, lib/fsusage.h, lib/full-read.c, lib/full-read.h,
19640         lib/full-write.c, lib/full-write.h, lib/fwriteerror.c,
19641         lib/fwriteerror.h, lib/gai_strerror.c, lib/gcd.c, lib/gcd.h,
19642         lib/getaddrinfo.c, lib/getaddrinfo.h, lib/getcwd.c, lib/getcwd.h,
19643         lib/getdate.h, lib/getdate.y, lib/getdomainname.c, lib/getdomainname.h,
19644         lib/getgroups.c, lib/gethostname.c, lib/gethrxtime.c, lib/gethrxtime.h,
19645         lib/getline.c, lib/getline.h, lib/getloadavg.c, lib/getndelim2.c,
19646         lib/getndelim2.h, lib/getnline.c, lib/getnline.h, lib/getopt.c,
19647         lib/getopt1.c, lib/getopt_.h, lib/getopt_int.h, lib/getpagesize.h,
19648         lib/getpass.c, lib/getpass.h, lib/getsubopt.c, lib/getsubopt.h,
19649         lib/gettext.h, lib/gettime.c, lib/gettimeofday.c, lib/getugroups.c,
19650         lib/getusershell.c, lib/group-member.c, lib/group-member.h,
19651         lib/hard-locale.c, lib/hard-locale.h, lib/hash-pjw.c, lib/hash-pjw.h,
19652         lib/hash.c, lib/hash.h, lib/human.c, lib/human.h, lib/iconvme.c,
19653         lib/iconvme.h, lib/idcache.c, lib/inet_ntop.h, lib/intprops.h,
19654         lib/inttostr.c, lib/inttostr.h, lib/isdir.c, lib/javacomp.c,
19655         lib/javacomp.h, lib/javacomp.sh.in, lib/javaexec.c, lib/javaexec.h,
19656         lib/javaexec.sh.in, lib/lbrkprop.h, lib/lchown.c, lib/ldexpl.c,
19657         lib/linebreak.c, lib/linebreak.h, lib/linebuffer.c, lib/linebuffer.h,
19658         lib/localcharset.c, lib/localcharset.h, lib/logl.c, lib/long-options.c,
19659         lib/long-options.h, lib/lstat.c, lib/makepath.c, lib/makepath.h,
19660         lib/malloc.c, lib/mathl.h, lib/mbswidth.c, lib/mbswidth.h, lib/md5.c,
19661         lib/md5.h, lib/memcasecmp.c, lib/memcasecmp.h, lib/memchr.c,
19662         lib/memcmp.c, lib/memcoll.c, lib/memcoll.h, lib/memcpy.c, lib/memmem.c,
19663         lib/memmem.h, lib/mempcpy.c, lib/mempcpy.h, lib/memrchr.c,
19664         lib/memrchr.h, lib/memset.c, lib/minmax.h, lib/mkdir.c, lib/mkdtemp.c,
19665         lib/mkdtemp.h, lib/mkstemp.c, lib/mktime.c, lib/modechange.c,
19666         lib/modechange.h, lib/mountlist.c, lib/mountlist.h, lib/nanosleep.c,
19667         lib/obstack.c, lib/obstack.h, lib/openat.c, lib/openat.h,
19668         lib/pagealign_alloc.c, lib/pagealign_alloc.h, lib/path-concat.c,
19669         lib/path-concat.h, lib/pathmax.h, lib/pathname.h, lib/physmem.c,
19670         lib/physmem.h, lib/pipe.c, lib/pipe.h, lib/poll.c, lib/poll_.h,
19671         lib/posixtm.c, lib/posixtm.h, lib/posixver.c, lib/printf-args.c,
19672         lib/printf-args.h, lib/printf-parse.c, lib/printf-parse.h,
19673         lib/progname.c, lib/progname.h, lib/progreloc.c, lib/putenv.c,
19674         lib/quote.c, lib/quote.h, lib/quotearg.c, lib/quotearg.h, lib/raise.c,
19675         lib/readlink.c, lib/readtokens.c, lib/readtokens.h, lib/readtokens0.c,
19676         lib/readtokens0.h, lib/readutmp.c, lib/readutmp.h, lib/realloc.c,
19677         lib/ref-add.sin, lib/ref-del.sin, lib/regex.c, lib/regex.h,
19678         lib/rename.c, lib/rmdir.c, lib/rpmatch.c, lib/safe-read.c,
19679         lib/safe-read.h, lib/safe-write.c, lib/safe-write.h, lib/same.c,
19680         lib/same.h, lib/save-cwd.c, lib/save-cwd.h, lib/savedir.c,
19681         lib/savedir.h, lib/setenv.c, lib/setenv.h, lib/settime.c,
19682         lib/sh-quote.c, lib/sh-quote.h, lib/sha1.c, lib/sha1.h, lib/sig2str.c,
19683         lib/sig2str.h, lib/sincosl.c, lib/snprintf.c, lib/snprintf.h,
19684         lib/sqrtl.c, lib/stat-macros.h, lib/stat.c, lib/stdbool_.h,
19685         lib/stdint_.h, lib/stdio-safer.h, lib/stpcpy.c, lib/stpcpy.h,
19686         lib/stpncpy.c, lib/stpncpy.h, lib/strcase.h, lib/strcasecmp.c,
19687         lib/strchrnul.c, lib/strchrnul.h, lib/strcspn.c, lib/strdup.c,
19688         lib/strdup.h, lib/strerror.c, lib/strftime.c, lib/strftime.h,
19689         lib/stripslash.c, lib/strndup.c, lib/strndup.h, lib/strnlen.c,
19690         lib/strpbrk.c, lib/strpbrk.h, lib/strsep.c, lib/strsep.h, lib/strstr.c,
19691         lib/strstr.h, lib/strtod.c, lib/strtoimax.c, lib/strtok_r.c,
19692         lib/strtok_r.h, lib/strtol.c, lib/strtoll.c, lib/strtoul.c,
19693         lib/strtoull.c, lib/strverscmp.c, lib/strverscmp.h, lib/sysexit_.h,
19694         lib/tempname.c, lib/time_r.c, lib/time_r.h, lib/timegm.c, lib/timegm.h,
19695         lib/timespec.h, lib/trigl.c, lib/trigl.h, lib/ucs4-utf16.h,
19696         lib/ucs4-utf8.h, lib/unicodeio.c, lib/unicodeio.h, lib/unistd-safer.h,
19697         lib/unlocked-io.h, lib/unsetenv.c, lib/userspec.c, lib/utf16-ucs4.h,
19698         lib/utf8-ucs4.h, lib/utime.c, lib/utimecmp.c, lib/utimecmp.h,
19699         lib/utimens.c, lib/vasnprintf.c, lib/vasnprintf.h, lib/vasprintf.c,
19700         lib/vasprintf.h, lib/version-etc-fsf.c, lib/version-etc.c,
19701         lib/version-etc.h, lib/vsnprintf.c, lib/vsnprintf.h, lib/w32spawn.h,
19702         lib/wait-process.c, lib/wait-process.h, lib/xalloc-die.c, lib/xalloc.h,
19703         lib/xallocsa.c, lib/xallocsa.h, lib/xasprintf.c, lib/xgetcwd.c,
19704         lib/xgetcwd.h, lib/xgetdomainname.c, lib/xgetdomainname.h,
19705         lib/xgethostname.c, lib/xmalloc.c, lib/xmemcoll.c, lib/xnanosleep.c,
19706         lib/xreadlink.c, lib/xreadlink.h, lib/xsetenv.c, lib/xsetenv.h,
19707         lib/xsize.h, lib/xstrndup.c, lib/xstrndup.h, lib/xstrtod.c,
19708         lib/xstrtod.h, lib/xstrtoimax.c, lib/xstrtol.c, lib/xstrtol.h,
19709         lib/xstrtoumax.c, lib/xtime.h, lib/xvasprintf.c, lib/xvasprintf.h,
19710         lib/yesno.c, lib/yesno.h:
19711         Update FSF postal mail address.
19712
19713 2005-05-13  Paul Eggert  <eggert@cs.ucla.edu>
19714
19715         * MODULES.html.sh, README, gnulib-tool, tests/test-base64.c,
19716         tests/test-memmem.c, tests/test-stpncpy.c:
19717         Update FSF postal mail address.
19718
19719 2005-05-13  Bruno Haible  <bruno@clisp.org>
19720
19721         * lib/stdint_.h (int64_t, uint64_t, int_least64_t, uint_least64_t,
19722         int_fast64_t, uint_fast64_t, intmax_t, uintmax_t, INT64_MIN, INT64_MAX,
19723         UINT64_MAX, INT_LEAST64_MIN, INT_LEAST64_MAX, UINT_LEAST64_MAX,
19724         INT_FAST64_MIN, INT_FAST64_MAX, UINT_FAST64_MAX, INTMAX_MIN,
19725         INTMAX_MAX, UINTMAX_MAX, INT64_C, UINT64_C, INTMAX_C, UINTMAX_C):
19726         Add support for 64-bit integers in the MSVC compiler.
19727
19728 2005-05-12  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
19729
19730         * modules/getdate (Makefile.am): Add getdate.c to EXTRA_DIST
19731
19732 2005-05-12  Eric Blake  <ebb9@byu.net>  (tiny change)
19733
19734         * gnulib-tool (func_import): Sort and uniquify recommended includes.
19735
19736 2005-05-11  Paul Eggert  <eggert@cs.ucla.edu>
19737
19738         * doc/getdate.texi (General date syntax): Don't say that date
19739         date --iso-8601=ns generates acceptable dates; it doesn't yet.
19740         Problem reported by Nic Ferrier.
19741
19742 2005-05-10  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
19743
19744         * lib/getaddrinfo.c: Don't fail when SOCK_STREAM or SOCK_DGRAM are
19745         specified in ai_socktype. Fix invalid ai_protocol
19746         check. ai_protocol is usually set to 0 or depending on
19747         ai_family/ai_socktype to IPPROTO_TCP / IPPROTO_UDP.  Checking for
19748         SOCK_STREAM / SOCK_DGRAM in ai_protocol was invalid.  Set
19749         ai_socktype / ai_protocol in the returned addrinfo structure.
19750
19751 2005-05-10  Simon Josefsson  <jas@extundo.com>
19752
19753         * m4/getaddrinfo.m4: Look in libnsl/libsocket for getaddrinfo, from
19754         Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
19755
19756 2005-05-10  Karl Berry  <karl@gnu.org>
19757
19758         * doc/fdl.texi, gpl.texi, lgpl.texi, COPYING: update FSF address
19759         (from http://www.gnu.org/licenses).
19760         * doc/COPYING.LIB: also rename to COPYING.LESSER.
19761         * doc/COPYING.DOC: remove; per rms, only needed in doc files, so
19762         fdl.texi suffices.
19763
19764 2005-05-10  Karl Berry  <karl@gnu.org>
19765
19766         * config/srclist.txt (COPYING.LESSER): rename from COPYING.LIB.
19767         (COPYING.DOC): remove.
19768
19769         * config/srclist-update: new FSF address.
19770
19771 2005-05-10  Derek Price  <derek@ximbiot.com>
19772
19773         * m4/getopt.m4 (gl_GETOPT): Check for Solaris 10 bug, not decl, when
19774         possible.
19775
19776 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
19777             Bruno Haible  <bruno@clisp.org>
19778
19779         * modules/inet_ntop: New file.
19780         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
19781         inet_ntop.
19782
19783 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
19784             Bruno Haible  <bruno@clisp.org>
19785
19786         * m4/inet_ntop.m4: New file.
19787
19788 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
19789             Bruno Haible  <bruno@clisp.org>
19790
19791         * lib/inet_ntop.h: New file.
19792         * lib/inet_ntop.c: New file, from glibc with modifications.
19793
19794 2005-05-09  Paul Eggert  <eggert@cs.ucla.edu>
19795
19796         * modules/time_r (License): Change to LGPL.
19797         * modules/extensions (License): Change to LGPL.  Actually,
19798         the license is more permissive than that, but currently gnulib-tool
19799         doesn't know how to handle more-permissive licenses.
19800
19801         * modules/stat-macros (Depends-on): Don't depend on stat-macros (!).
19802         Problem reported by Dave Love.
19803
19804 2005-05-08  Jim Meyering  <jim@meyering.net>
19805
19806         * lib/classpath.c (PATH_SEPARATOR): Remove insignificant trailing
19807         blank.
19808
19809 2005-05-06  Paul Eggert  <eggert@cs.ucla.edu>
19810
19811         * modules/argmatch (Depends-on): Add stdbool.
19812         * modules/backupfile (Depends-on): Likewise.
19813         * modules/chdir-long (Depends-on): Likewise.
19814         * modules/closeout (Depends-on): Likewise.
19815         * modules/cycle-check (Depends-on): Likewise.
19816         * modules/dirname (Depends-on): Likewise.
19817         * modules/fnmatch (Depends-on): Likewise.
19818         * modules/fsusage (Depends-on): Likewise.
19819         * modules/fwriteerror (Depends-on): Likewise.
19820         * modules/getcwd (Depends-on): Likewise.
19821         * modules/getloadavg (Depends-on): Likewise.
19822         * modules/hard-locale (Depends-on): Likewise.
19823         * modules/makepath (Depends-on): Likewise.
19824         * modules/mountlist (Depends-on): Likewise.
19825         * modules/nanosleep (Depends-on): Likewise.
19826         * modules/posixtm (Depends-on): Likewise.
19827         * modules/quotearg (Depends-on): Likewise.
19828         * modules/readtokens (Depends-on): Likewise.
19829         * modules/readtokens0 (Depends-on): Likewise.
19830         * modules/readutmp (Depends-on): Likewise.
19831         * modules/save-cwd (Depends-on): Likewise.
19832         * modules/strftime (Depends-on): Likewise.
19833         * modules/userspec (Depends-on): Likewise.
19834         * modules/utimecmp (Depends-on): Likewise.
19835         * modules/xgetcwd (Depends-on): Likewise.
19836         * modules/xnanosleep (Depends-on): Likewise.
19837         * modules/xstrtod (Depends-on): Likewise.
19838         * modules/yesno (Depends-on): Likewise.
19839
19840 2005-05-05  Paul Eggert  <eggert@cs.ucla.edu>
19841
19842         * m4/getopt.m4 (gl_GETOPT): Check for Solaris 10 getopt, and avoid
19843         needless checks.
19844
19845 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
19846
19847         Merge from coreutils.  Among other things,
19848         add bulletproofing for cases where stdin, stdout, or stderr are closed.
19849         * lib/fd-safer.c: New file.
19850         * lib/fcntl-safer.h, open-safer.c: Remove.
19851         * lib/chdir-long.c: Fix comment "fetish" -> "coreutils".
19852         * lib/dup-safer.c: Include unistd-safer.h first.
19853         Don't include errno.h.
19854         (dup_safer) [!defined F_DUPFD]: Let fd_safer do the real work.
19855         * lib/file-type.h: Don't assume invoker included sys/stat.h first.
19856         * lib/file-type.c: Rely on file-type.h change.
19857         * lib/getloadavg.c: Include unistd-safer.h.
19858         (getloadavg): Use safer open.
19859         * lib/getusershell.c: Include "stdio-safer.h".
19860         (getusershell): Use safer fopen.
19861         * lib/long-options.c (long_options): Use NULL rather than 0.
19862         * lib/modechange.h (mode_free): Remove; all callers changed to invoke
19863         'free'.
19864         * lib/modechange.c: Likewise.
19865         xstrtol.h, stdbool.h, stddef.h: Don't include; no longer needed.
19866         (MODE_DONE): New constant.
19867         (struct mode_change): Remove 'next' member.
19868         (make_node_op_equals): New function; like the old one of the
19869         same name, except it allocates an array.
19870         (mode_compile, mode_create_from_ref): Use it.
19871         (mode_compile): Allocate result as an array, not a linked list.
19872         Parse octal string ourself, so that we catch mistakes like "+0".
19873         (mode_adjust): Arg is an array, not a linked list.
19874         * lib/modechange.c: Include stat-macros.h, xalloc.h.
19875         (S_ISDIR, S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR):
19876         (S_IRGRP, S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH, S_IRXWU):
19877         (S_IRWXG, S_IRWXO, CHMOD_MODE_BITS):
19878         Remove.  This is now stat-macros.h's job.
19879         (talloc): Remove.  All callers replaced by xalloc, so that
19880         our invokers don't have to worry about reporting memory failures.
19881         (make_node_op_equals): Remove.
19882         (MODE_ORDINARY_CHAGE, MODE_X_IF_ANY_X, MODE_COPY_EXISTING):
19883         New constants.
19884         (struct mode_change): Moved here from modechange.h.
19885         (mode_append_entry): Remove.
19886         (mode_compile): Remove MASKED_OPS arg, since it encouraged
19887         apps to have incorrect behavior.  Use simpler algorithm for head
19888         and tail.  Don't futz with umask; that's now the job of mode_adjust.
19889         Detect more invalid usages rather than having somewhat-random behavior.
19890         Don't insert an "a=" action, as that leads to incorrect behavior.
19891         (mode_compile, mode_create_from_ref): Return NULL on error instead
19892         of an enum, since now there's only one way to have an error.  All
19893         callers changed.
19894         (mode_adjust): Accept new arg UMASK_VALUE, and interpret it
19895         at the correct time.  Simplify calculation of "+u" and its ilk.
19896         Don't mishandle "+X".
19897         (mode_free): Remove "register" and localize decls.
19898         * lib/modechange.h (MODE_X_IF_ANY_X, MODE_COPY_EXISTING):
19899         (struct mode_change): Move to modechange.c; callers don't
19900         need to see this stuff.
19901         (MODE_MASK_EQUALS, MODE_MASK_PLUS, MODE_MASK_MINUS, MODE_MASK_ALL):
19902         (MODE_INVALID, MODE_MEMORY_EXHAUSTED, MODE_BAD_REFERENCE): Remove.
19903         (mode_change, mode_adjust): Reflect the new signatures noted above.
19904         * lib/nanosleep.c (rpl_nanosleep): Include "timespec.h" before macros
19905         that might redefine system include files.
19906         (siginterrupt) [!HAVE_SIGINTERRUPT]: New macro.
19907         (my_usleep): Use NULL rather than (void *) 0.
19908         (rpl_nanosleep) [!defined SA_NOCLDSTOP]:
19909         Use siginterrupt to specify that system calls should be interrupted.
19910         (rpl_nanosleep): Move initialization of suspended closer to call of
19911         my_usleep.
19912         * lib/readutmp.h (read_utmp): New arg OPTIONS.  All uses changed.
19913         * lib/readutmp.c: Likewise.  Include signal.h, stdbool.h.
19914         (desirable_utmp_entry): New function.
19915         (read_utmp) [defined UTMP_NAME_FUNCTION]: Redo memory allocation
19916         using x2nrealloc, to simplify logic.
19917         (read_utmp) [!defined UTMP_NAME_FUNCTION]: Check for overflow in
19918         size calculation.  Do not assume utmp file is a regular file.
19919         * lib/readutmp.h (UT_PID): Moved here from ../src/who.c.
19920         (READ_UTMP_CHECK_PIDS): New constant.
19921         * lib/save-cwd.c: Include unistd-safer.h.
19922         (save_cwd): Use fd_safer.
19923         * lib/tempname.c (S_ISDIR, S_IRUSR, S_IRUSR, S_IWUSR, S_IXUSR): Remove.
19924         [!_LIBC] Include "stat-macros.h" instead.
19925         * lib/unistd-safer.h (fd_safer): New decl.
19926
19927 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
19928
19929         * modules/getloadavg (Depends-on): Add unistd-safer.
19930         * modules/getusershell (Depends-on): Add stdio-safer.
19931         * modules/lstat (Depends-on): Remove xalloc.
19932         * modules/mkstemp (Depends-on): Add stat-macros.
19933         * modules/modechange (Depends-on): Remove xstrtol.
19934         Add stat-macros, xalloc.
19935         * modules/save-cwd (Depends-on): Add unistd-safer.
19936         * modules/stdio-safer (Makefile.am): Remove lib_SOURCES.
19937         * modules/unistd-safer (Files): Add lib/fd-safer.c
19938         (Makefile.am): Remove lib_SOURCES.
19939
19940         * MODULES.html.sh (Enhancements for POSIX:2001 functions):
19941         Remove fcntl-safer; unistd-safer supersedes it.
19942
19943 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
19944
19945         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Don't require
19946         AC_HEADER_STAT.
19947         * m4/lchown.m4 (gl_FUNC_CHOWN): Likewise.
19948         (gl_PREREQ_CHOWN): Remove.
19949         * m4/lstat.m4 (gl_FUNC_LSTAT): Require AC_FUNC_LSTAT instead of calling
19950         it.  Don't require AC_HEADER_STAT.
19951         (gl_PREREQ_LSTAT): Remove.
19952         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Check stdint.h only once.
19953         Don't require AC_HEADER_STAT.
19954         * m4/rmdir.m4 (gl_FUNC_RMDIR): Don't require AC_HEADER_STAT.
19955         (gl_PREREQ_RMDIR): Remove.
19956         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME): Don't
19957         mention stat-macros.h or AC_HEADER_STAT, since we'll make
19958         the stat-macros module a prerequisite.
19959         * m4/file-type.m4 (gl_FILE_TYPE): Likewise.
19960         * m4/filemode.m4 (gl_FILEMODE): Likewise.
19961         * m4/makepath.m4 (gl_MAKEPATH): Likewise.
19962         * m4/modechange.m4 (gl_MODECHANGE): Likewise.
19963         * m4/clock_time.m4 (gl_CLOCK_TIME): Use gl_ rather than fetish_ for
19964         variable names.
19965         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Renamed from
19966         fetish_FUNC_RMDIR_NOTEMPTY.  All uses changed.  Use gl_ for
19967         variable prefixes.
19968         * m4/fcntl-safer.m4: Remove.
19969         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Use AC_LIBSOURCES and AC_LIBOBJ.
19970         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Likewise.
19971         Invoke gl_PREREQ_FD_SAFER.
19972         (gl_PREREQ_FD_SAFER): New macro.
19973         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): Check for siginterrupt.
19974         * m4/readutmp.m4 (gl_READUTMP): Require AC_C_INLINE.
19975         Use AC_CHECK_HEADERS_ONCE and AC_CHECK_FUNCS_ONCE when possible.
19976         Remove duplicate call to AC_LIBOBJ(readutmp).
19977         (gl_PREREQ_READUTMP): Remove.  All uses inlined.
19978
19979         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Check for message, not for
19980         MAP_ANON.  Problem reported by Moriyoshi Koizumi to bug-cvs.
19981
19982 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
19983
19984         * MODULES.html.sh (Misc): Add byteswap.
19985
19986 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
19987
19988         * modules/getcwd (Depends-on): Add extensions.
19989         * modules/openat (Depends-on): Likewise.
19990
19991 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
19992
19993         * modules/byteswap: New file.
19994
19995 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
19996
19997         * m4/byteswap.m4: New file.
19998
19999 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
20000
20001         * lib/byteswap_.h: New file.
20002
20003 2005-04-25  Karl Berry  <karl@gnu.org>
20004
20005         * m4/gettext.m4: Update from GNU gettext 0.14.4.
20006
20007 2005-04-25  Albert Chin  <china@thewrittenword.com>
20008
20009         * lib/regex.c: Include <stdio.h>, as a workaround to a Compaq Desktop
20010         Toolkit C bug.
20011
20012 2005-04-21  Oskar Liljeblad  <oskar@osk.mine.nu>
20013
20014         * gnulib-tool (Options): Add -s for --symlink/--symbolic.
20015         (func_ln_if_changed) Remove forcibly for no error message
20016         in case file does not exist.
20017
20018 2005-04-19  Simon Josefsson  <jas@extundo.com>
20019
20020         * gnulib-tool (Options): Make --symlink mean --symbolic.
20021
20022 2005-04-18  Oskar Liljeblad  <oskar@osk.mine.nu>
20023
20024         * doc/gnulib.texi (Initial import): Fix.  Mention --aux-dir.
20025
20026 2005-04-16  Simon Josefsson  <jas@extundo.com>
20027
20028         * modules/getpass-gnu (Makefile.am): Don't mention getpass.h.
20029
20030 2005-04-15  Simon Josefsson  <jas@extundo.com>
20031
20032         * m4/getpass.m4 (gl_FUNC_GETPASS): Use AC_LIBSOURCES.
20033
20034 2005-04-15  Simon Josefsson  <jas@extundo.com>
20035
20036         * gnulib-tool: Rename --symlink to --symbolic.
20037
20038 2005-04-15  Oskar Liljeblad  <oskar@osk.mine.nu>
20039
20040         * gnulib-tool: Add -s, --symlink option to gnulib-tool to make
20041         symbolic links to files instead of copying/moving.  Add --aux-dir,
20042         specifying directory relative --dir where auxiliary build tools
20043         are placed.
20044
20045 2005-04-14  Bruno Haible  <bruno@clisp.org>
20046
20047         * modules/allocsa (License): Change to LGPL.
20048         Requested by Yoann Vandoorselaere <yoann@prelude-ids.org>.
20049
20050 2005-04-13  Paul Eggert  <eggert@cs.ucla.edu>
20051
20052         * lib/getdate.y (zone): Allow relunit_snumber after tZONE, so
20053         that "UTC +1 second" continues to work.  Problem reported
20054         by Dmitry V. Levin.
20055         (relunit_snumber): New rule.
20056         (relunit): Use it.
20057
20058 2005-04-12  Paul Eggert  <eggert@cs.ucla.edu>
20059
20060         * lib/getdate.y (universal_time_zone_table): New constant.
20061         (time_zone_table): Remove GMT, UT, UTC entries; they're now in
20062         universal_time_zone_table.
20063         (lookup_zone): Prefer universal_time_zone_table to
20064         local_time_zone_table, so that "GMT" time stamps are allowed in
20065         London during the summer.  Problem reported by Ian Abbott.
20066
20067 2005-04-12  Jim Meyering  <jim@meyering.net>
20068
20069         * lib/human.c (humblock): Set *options even when returning due to
20070         xstrtoumax conversion failure.  Thanks to a used-uninitialized
20071         warning from gcc-4.
20072
20073 2005-04-09  Jim Meyering  <jim@meyering.net>
20074
20075         * lib/posixtm.c (posixtime) [lint]: Avoid spurious warning from gcc-4's
20076         -Wuninitialized: initialize tm0.tm_year.
20077
20078 2005-04-04  Paul Eggert  <eggert@cs.ucla.edu>
20079
20080         * lib/getdate.y (parser_control): rels_seen is now a boolean, not a
20081         count, since there's no maximum.  All uses changed.
20082         Add member dsts_seen.
20083         (local_zone): Accumulate dsts_seen rather than relying on tm_isdst
20084         not being INT_MAX.
20085         (get_date): Initialize dsts_seen, and check that it doesn't go over 1.
20086         Use pc_rels_seen to decide whther a date is absolute.
20087
20088         * lib/getdate.y (number): Don't overwrite year.
20089         (get_date): Initialize pc.year.digits to 0, not 4, to enable above
20090         check.
20091
20092 2005-04-02  Simon Josefsson  <jas@extundo.com>
20093
20094         * lib/getaddrinfo.h: Fix OpenBSD compilation failure, inspired by tiny
20095         patch from Yoann Vandoorselaere <yoann@prelude-ids.org>.
20096
20097 2005-03-28  Eric Blake  <ebb9@byu.net>  (tiny change)
20098
20099         * m4/getcwd-path-max.m4: Return success on systems such as Cygwin
20100         where no absolute path name can be longer than PATH_MAX.
20101
20102 2005-03-27  Jim Meyering  <jim@meyering.net>
20103
20104         * lib/argmatch.c: Clarify comment: null-terminated -> NULL-terminated.
20105
20106 2005-03-26  Paul Eggert  <eggert@cs.ucla.edu>
20107
20108         * lib/intprops.h (INT_STRLEN_BOUND, INT_BUFSIZE_BOUND):
20109         "one's complement" -> "ones' complement" in comment, as per Knuth.
20110         "value of type" -> "type or expression" in comment.
20111         * lib/mktime.c, strftime.c: Propagate intprops.h comment nits.
20112
20113 2005-03-26  Jim Meyering  <jim@meyering.net>
20114
20115         Comment nits.
20116         * lib/intprops.h: Add the apostrophe in `(one|two)'s complement'.
20117         Correct typos: s/or/of/.
20118
20119 2005-03-26  Jim Meyering  <jim@meyering.net>
20120
20121         * modules/check-include-files: Move to ../ and rename to...
20122         * check-module: ...this.
20123
20124 2005-03-25  Jim Meyering  <jim@meyering.net>
20125
20126         * modules/xvasprintf (Files): Add xalloc.h.
20127
20128 2005-03-23  Paul Eggert  <eggert@cs.ucla.edu>
20129
20130         * modules/gettext (Files): config/config.rpath ->
20131         build-aux/config.rpath
20132         * modules/iconv (Files): Likewise.
20133         Problem reported by Oskar Liljeblad.
20134
20135 2005-03-23  Jim Meyering  <jim@meyering.net>
20136
20137         * modules/check-include-files: New script to check for
20138         missing dependencies, multiple includes, etc.
20139
20140         * modules/c-strtold (Depends-on): Add xalloc.
20141         * modules/c-strtod (Depends-on): Add xalloc.
20142         * modules/hash (Depends-on): Add xalloc.
20143         (Files): Remove lib/xalloc.h.
20144
20145         * modules/gethrxtime (Files): Add lib/gethrxtime.h.
20146         * modules/userspec (Files): Add lib/inttostr.h.
20147
20148 2005-03-23  Jim Meyering  <jim@meyering.net>
20149
20150         * lib/canonicalize.c: Remove duplicate `#include "stat-macros.h"'.
20151
20152 2005-03-22  Jim Meyering  <jim@meyering.net>
20153
20154         * modules/stat-macros: New module.
20155         * modules/canonicalize, modules/euidaccess, modules/file-type,
20156         * modules/filemode, modules/lchown, modules/makepath,
20157         * modules/rmdir, modules/stat: Depend on new stat-macros module
20158         rather than listing lib/stat-macros.h manually.
20159         Don't add stat-macros.h to lib_SOURCES or list it in Files: section.
20160
20161 2005-03-22  Jim Meyering  <jim@meyering.net>
20162
20163         * m4/stat-macros.m4 (gl_STAT_MACROS): New file/macro.
20164
20165 2005-03-22  Bruno Haible  <bruno@clisp.org>
20166
20167         * config/srclist.txt: Replace target directory 'config' with
20168         'build-aux'.
20169         * config/config.guess, config.sub, config.rpath, depcomp, install-sh:
20170         * config/mdate-sh, missing, mkinstalldirs, texinfo.tex: Move to
20171         ../build-aux/.
20172
20173 2005-03-21  Paul Eggert  <eggert@cs.ucla.edu>
20174
20175         * modules/chdir-long (Depends-on): Add mempcpy.
20176
20177         * modules/acl, modules/backupfile, modules/c-strtod,
20178         modules/c-strtold, modules/canon-host, modules/canonicalize,
20179         modules/cloexec, modules/closeout, modules/dirfd, modules/dirname,
20180         modules/exclude, modules/exitfail, modules/file-type,
20181         modules/filemode, modules/fpending, modules/fsusage, modules/getcwd,
20182         modules/getdate, modules/getline, modules/getpagesize,
20183         modules/getpass, modules/getugroups, modules/group-member,
20184         modules/hard-locale, modules/hash, modules/human, modules/idcache,
20185         modules/inttostr, modules/long-options, modules/makepath,
20186         modules/md5, modules/memcasecmp, modules/memcoll,
20187         modules/modechange, modules/mountlist, modules/path-concat,
20188         modules/pathmax, modules/physmem, modules/posixtm, modules/posixver,
20189         modules/quote, modules/quotearg, modules/readtokens, modules/readutmp,
20190         modules/safe-read, modules/safe-write, modules/same, modules/savedir,
20191         modules/settime, modules/sha1, modules/sig2str, modules/strdup,
20192         modules/strftime, modules/strndup, modules/strverscmp,
20193         modules/timespec, modules/unlocked-io, modules/userspec,
20194         modules/utimecmp, modules/utimens, modules/xalloc, modules/xstrtol,
20195         modules/yesno:
20196         Remove lib_SOURCES line from Makefile.am section, as this is now
20197         done automatically by the corresponding Autoconf macro.
20198
20199 2005-03-21  Jim Meyering  <jim@meyering.net>
20200
20201         Changes imported from coreutils.
20202
20203         * lib/cycle-check.c: Don't include xalloc.h.
20204
20205         * lib/path-concat.c: Don't include assert.h.
20206         (path_concat): Remove assertion that would have triggered
20207         for ABASE starting with more than one slash.
20208         Reported by Andreas Schwab.
20209
20210         * lib/path-concat.c (path_concat): Set *BASE_IN_RESULT
20211         properly when ABASE is an absolute file name.
20212         Correct the description of this function.
20213         Include <assert.h>.
20214         Add an assertion and a test driver.
20215         This fixes a bug introduced on 2004-07-02.
20216         Andreas Schwab reported the resulting failure of cp --parents:
20217         http://lists.gnu.org/archive/html/bug-coreutils/2005-01/msg00130.html
20218
20219 2005-03-21  Jim Meyering  <jim@meyering.net>
20220
20221         * m4/chdir-long.m4 (gl_PREREQ_CHDIR_LONG): Invoke gl_FUNC_MEMRCHR.
20222         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Check for memrchr decl.
20223
20224 2005-03-21  Jim Meyering  <jim@meyering.net>
20225         and  Paul Eggert  <eggert@cs.ucla.edu>
20226
20227         * m4/acl.m4, m4/backupfile.m4, m4/c-strtod.m4, m4/canon-host.m4,
20228         m4/canonicalize.m4, m4/cloexec.m4, m4/closeout.m4, m4/dirfd.m4,
20229         m4/dirname.m4, m4/exclude.m4, m4/exitfail.m4, m4/file-type.m4,
20230         m4/filemode.m4, m4/fpending.m4, m4/fsusage.m4, m4/getcwd.m4,
20231         m4/getdate.m4, m4/getline.m4, m4/getpagesize.m4, m4/getpass.m4,
20232         m4/getugroups.m4, m4/group-member.m4, m4/hard-locale.m4, m4/hash.m4,
20233         m4/human.m4, m4/idcache.m4, m4/inttostr.m4, m4/long-options.m4,
20234         m4/makepath.m4, m4/md5.m4, m4/memcasecmp.m4, m4/memcoll.m4,
20235         m4/modechange.m4, m4/mountlist.m4, m4/nanosleep.m4, m4/path-concat.m4,
20236         m4/pathmax.m4, m4/physmem.m4, m4/posixtm.m4, m4/posixver.m4,
20237         m4/quote.m4, m4/quotearg.m4, m4/readtokens.m4, m4/readutmp.m4,
20238         m4/safe-read.m4, m4/safe-write.m4, m4/same.m4, m4/savedir.m4,
20239         m4/settime.m4, m4/sha1.m4, m4/sig2str.m4, m4/strdup.m4, m4/strftime.m4,
20240         m4/strndup.m4, m4/strverscmp.m4, m4/timespec.m4, m4/unlocked-io.m4,
20241         m4/userspec.m4, m4/utimecmp.m4, m4/utimens.m4, m4/xalloc.m4,
20242         m4/xnanosleep.m4, m4/xstrtol.m4, m4/yesno.m4:
20243         Use AC_LIBSOURCES and AC_LIBOBJ to indicate source and object files
20244         for these modules.
20245
20246 2005-03-18  Paul Eggert  <eggert@cs.ucla.edu>
20247
20248         * lib/strftime.c (my_strftime): If the underlying strftime returns 0
20249         (which shouldn't happen), generate nothing instead of returning 0
20250         immediately, so that nstrftime (NULL, ...) doesn't return 0.
20251
20252 2005-03-16  Bruno Haible  <bruno@clisp.org>
20253
20254         * modules/stdint (Makefile.am): Use HAVE_LONG_LONG_64BIT instead of
20255         HAVE_LONGLONG_64BIT.
20256
20257 2005-03-16  Bruno Haible  <bruno@clisp.org>
20258
20259         * m4/stdint.m4 (gl_STDINT_H): Define HAVE_LONG_LONG_64BIT instead of
20260         HAVE_LONGLONG_64BIT.
20261
20262 2005-03-16  Bruno Haible  <bruno@clisp.org>
20263
20264         * lib/stdint_.h: Use HAVE_LONG_LONG_64BIT instead of
20265         HAVE_LONGLONG_64BIT.
20266
20267 2005-03-15  Paul Eggert  <eggert@cs.ucla.edu>
20268
20269         * lib/strftime.c (my_strftime): Prepend space to format so that we can
20270         reliably distinguish strftime failure from empty output on POSIX
20271         hosts.
20272
20273 2005-03-15  Paul Eggert  <eggert@cs.ucla.edu>
20274
20275         * lib/iconvme.c (SIZE_MAX): New macro, if not already defined.
20276         (iconv_string): Don't guess a size-zero buffer, as that might cause
20277         buffer overrun.  Instead, avoid multiplying by MB_LEN_MAX if the
20278         result would be 'too large', where 'too large' is (heuristically)
20279         the square root of SIZE_MAX, divided by MB_LEN_MAX to allay
20280         overflow concerns.  This will prevent some unwanted malloc failures
20281         when the inputs are very large.
20282
20283 2005-03-15  Karl Berry  <karl@gnu.org>
20284
20285         * config/srclist.txt (config.rpath): from gettext.
20286         * config/config.rpath: update.
20287
20288 2005-03-15  Bruno Haible  <bruno@clisp.org>
20289
20290         * lib/regex.c (byte_re_match_2_internal): Rename local variable 'not'
20291         to 'negate'.
20292
20293         * lib/regex.c (byte_re_match_2_internal): Reduce scope of same_str_p
20294         variable.
20295
20296         * lib/regex.c (EXTEND_BUFFER, regcomp): Cast the realloc/malloc
20297         results.
20298
20299 2005-03-14  Simon Josefsson  <jas@extundo.com>
20300
20301         * lib/timegm.h: Use proper prototype CPP guards, reported by Dave Love
20302         <fx@gnu.org>.
20303
20304 2005-03-14  Paul Eggert  <eggert@cs.ucla.edu>
20305
20306         * lib/mktime.c (TYPE_TWOS_COMPLEMENT, TYPE_ONES_COMPLEMENT,
20307         TYPE_SIGNED_MAGNITUDE, TYPE_MINIMUM, TYPE_MAXIMUM): Sync from
20308         intprops.h.
20309         * lib/strtol.c: Likewise.
20310
20311 2005-03-14  Jim Meyering  <jim@meyering.net>
20312
20313         * lib/strftime.c (my_strftime) [HAVE_STRFTIME && ! (_NL_CURRENT
20314         && HAVE_STRUCT_ERA_ENTRY)]: Initialize the first byte of ubuf[]
20315         to be nonzero so that we (and caller) can detect the difference
20316         between a valid zero-length expansion and an error return, even
20317         when the underlying strftime fails before writing anything into
20318         that location.
20319
20320 2005-03-14  Bruno Haible  <bruno@clisp.org>
20321
20322         * m4/lib-link.m4, gettext.m4, nls.m4, po.m4:
20323         Update from GNU gettext 0.14.3.
20324
20325 2005-03-10  Jim Meyering  <jim@meyering.net>
20326
20327         * m4/save-cwd.m4 (gl_SAVE_CWD): Check for fchdir.
20328
20329 2005-03-10  Jim Meyering  <jim@meyering.net>
20330
20331         * lib/save-cwd.c [!HAVE_FCHDIR]: Define open, fchdir, and chdir_long
20332         so that this module works on systems without fchdir.
20333
20334 2005-03-09  Paul Eggert  <eggert@cs.ucla.edu>
20335
20336         Factor int-properties macros into a single file, except for
20337         glibc-related files.
20338         * lib/intprops.h: New file.
20339         * lib/getloadavg.c: Include it instead of limits.h.
20340         (INT_STRLEN_BOUND): Remove.
20341         * lib/human.c: Include intprops.h.
20342         (group_number): Use INT_STRLEN_BOUND instead of rolling it ourself.
20343         * lib/human.h (LONGEST_HUMAN_READABLE): Use 146/485 rather than
20344         302/1000.
20345         * lib/inttostr.h: Include intprops.h instead of limits.h.
20346         (INT_STRLEN_BOUND, INT_BUFSIZE_BOUND): Remove.
20347         * lib/mktime.c (TYPE_IS_INTEGER, TYPE_TWOS_COMPLEMENT): New macros,
20348         for consistency with intprops.h.
20349         (time_t_is_integer, twos_complement_arithmetic): Use them.
20350         * lib/sig2str.h: Include <signal.h>, intprops.h.
20351         (INT_STRLEN_BOUND): Remove.
20352         * lib/strftime.c (TYPE_SIGNED): Remove.
20353         (INT_STRLEN_BOUND): Switch to same implementation as intprops.h.
20354         * lib/strtol.c: Adjust comments to match intprops.h.
20355         * lib/userspec.c: Include intprops.h.
20356         (TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Remove.
20357         * lib/utimecmp.c, xnanosleep.c, xstrtol.c: Likewise.
20358         * lib/utimecmp.c (utimecmp): Use TYPE_IS_INTEGER, TYPE_TWOS_COMPLEMENT
20359         instead of rolling our own expressions.
20360         * lib/xstrtol.c: Include xstrtol.h first, to test interface.
20361
20362         * lib/strftime.c: Include <stdbool.h>.  Use bool where appropriate,
20363         instead of int.
20364         (my_strftime): Do not mishandle years close to INT_MAX, by doing
20365         the right thing even if adding 1900 would overflow.  Similarly
20366         for tm_mon + 1 and tm_yday + 1.
20367         Make %Y always equivalent to %C%y, and similarly for %G and %g.
20368         (DO_NUMBER, DO_NUMBER_SPACEPAD): Set digits to d, not a conditional.
20369         (DO_SIGNED_NUMBER): New macro.
20370         (my_strftime) [HAVE_TZNAME]: Don't dump core if tp->tm_dst > 1.
20371
20372 2005-03-07  Bruno Haible  <bruno@clisp.org>
20373
20374         * m4/mmap-anon.m4 (MAP_FILE, MAP_FAILED): Remove definitions.
20375
20376 2005-03-07  Bruno Haible  <bruno@clisp.org>
20377
20378         * lib/pagealign_alloc.c (MAP_FILE, MAP_FAILED): Define fallbacks.
20379
20380 2005-03-04  Derek R. Price  <derek@ximbiot.com>
20381
20382         * gnulib-tool (func_cp_if_changed, func_mv_if_changed): New functions.
20383         (func_import): Only replace files via --import when they have actually
20384         changed.
20385
20386 2005-03-03  Derek R. Price  <derek@ximbiot.com>
20387
20388         * m4/mmap-anon.m4: New file.
20389         * m4/pagealign_alloc.m4: New file.
20390
20391 2005-03-03  Derek R. Price  <derek@ximbiot.com>
20392             Bruno Haible  <bruno@clisp.org>
20393
20394         * modules/pagealign_alloc: New file.
20395         * MODULES.html.sh (Memory management functions): Add pagealign_alloc.
20396
20397 2005-03-03  Derek R. Price  <derek@ximbiot.com>
20398             Bruno Haible  <bruno@clisp.org>
20399
20400         * lib/pagealign_alloc.h: New file.
20401         * lib/pagealign_alloc.c: New file.
20402
20403 2005-03-03  Bruno Haible  <bruno@clisp.org>
20404
20405         * m4/inttypes.m4, isc-posix.m4, once-only.m4:
20406         Use an all-permissive copyright notice, recommended by RMS.
20407
20408 2005-03-02  Bruno Haible  <bruno@clisp.org>
20409
20410         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Undo the replacement here. Because
20411         of AIX, the replacement has to be done only after <string.h> is
20412         included, therefore not in config.h. stpncpy.h does the replacement,
20413         and stpncpy.c uses it.
20414
20415 2005-03-02  Bruno Haible  <bruno@clisp.org>
20416
20417         * lib/stpncpy.h (stpncpy): Define as a macro without arguments, so that
20418         stpncpy.c uses it.
20419
20420 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
20421
20422         Remove workaround for bug in Linux kernel 2.6.8 or thereabouts.
20423         The workaround isn't strictly needed for POSIX conformance, and
20424         it's too much of a pain to configure and maintain.  We'll ask
20425         people to fix their kernels instead.
20426         * lib/xnanosleep.c: Don't include gethrxtime.h or xtime.h.
20427         (NANOSLEEP_BUG_WORKAROUND): Remove.
20428         (xnanosleep): Remove the workaround.
20429
20430 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
20431
20432         * modules/gettime (Makefile.am): Remove lib_SOURCES line.
20433         Reported by Derek Price.
20434         (Include): Add "timespec.h".
20435
20436         * modules/xnanosleep (Depends-on): Remove gethrxtime.
20437
20438 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
20439
20440         * m4/xnanosleep.m4 (gl_XNANOSLEEP): Remove configuration attempting
20441         to detect nanosleep bug.
20442
20443 2005-03-01  Bruno Haible  <bruno@clisp.org>
20444
20445         * lib/vasnprintf.c (EOVERFLOW): Define to a fallback if needed.
20446
20447 2005-02-26  Paul Eggert  <eggert@cs.ucla.edu>
20448
20449         * modules/gethrxtime: New file.
20450         * modules/xnanosleep (Files): Add m4/xnanosleep.m4.
20451         (Depends-on): Add gethrxtime.
20452         (configure.ac): Add gl_XNANOSLEEP.
20453         (Makefile.am): Remove lib_SOURCES line.
20454
20455 2005-02-25  Paul Eggert  <eggert@cs.ucla.edu>
20456
20457         * m4/gethrxtime.m4, m4/xnanosleep.m4: New files.
20458         * m4/gettime.m4 (gl_GETTIME): Check for nanotime.
20459
20460 2005-02-25  Paul Eggert  <eggert@cs.ucla.edu>
20461
20462         * lib/gethrxtime.h, lib/gethrxtime.c, lib/xtime.h: New files.
20463         * lib/timespec.h (gettime): Return void, since it always
20464         succeeds now.  All uses changed.
20465         * lib/gettime.c (gettime) Likewise.
20466         [HAVE_NANOTIME]: Prefer nanotime.
20467         Assume gettimeofday succeeds, as POSIX requires.
20468         Assime time () succeeds, since other code already does.
20469         * lib/xnanosleep.c: Include xtime.h and gethrxtime.h, not xalloc.h.
20470         (timespec_subtract): Remove.
20471         (NANOSLEEP_BUG_WORKAROUND): New constant.
20472         (xnanosleep): Use gethrxtime rather than gettime; this simplifies
20473         things considerably.  Use it only on GNU/Linux hosts, since the
20474         workaround shouldn't be needed elsewhere.
20475
20476 2005-02-24  Bruno Haible  <bruno@clisp.org>
20477
20478         * modules/gettext (Files): Add m4/glibc2.m4.
20479
20480 2005-02-24  Bruno Haible  <bruno@clisp.org>
20481
20482         * m4/gettext.m4, intdiv0.m4, intmax.m4, inttypes-pri.m4, lcmessage.m4:
20483         * m4/lib-link.m4, lib-prefix.m4, nls.m4, po.m4, printf-posix.m4:
20484         * m4/progtest.m4:
20485         Update from GNU gettext 0.14.2.
20486         * m4/glibc2.m4: New file, from GNU gettext 0.14.2.
20487
20488 2005-02-24  Bruno Haible  <bruno@clisp.org>
20489
20490         * lib/localcharset.c: Update from GNU gettext 0.14.2.
20491         * lib/config.charset: Update from GNU gettext 0.14.2.
20492
20493 2005-02-24  Bruno Haible  <bruno@clisp.org>
20494
20495         * lib/gettext.h: Update from GNU gettext 0.14.2.
20496
20497 2005-02-23  Simon Josefsson  <jas@extundo.com>
20498
20499         * m4/iconvme.m4: New file.
20500
20501 2005-02-23  Jim Meyering  <jim@meyering.net>
20502
20503         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Revert yesteday's
20504         change.
20505         Thanks to Bruno Haible for catching it.
20506
20507 2005-02-22  Simon Josefsson  <jas@extundo.com>
20508
20509         * modules/iconvme: New file.
20510
20511         * MODULES.html.sh: Add iconvme.
20512
20513 2005-02-22  Simon Josefsson  <jas@extundo.com>
20514
20515         * lib/iconvme.h, lib/iconvme.c: New files, from libc.
20516
20517 2005-02-22  Simon Josefsson  <jas@extundo.com>
20518
20519         * config/srclist.txt: Sync iconvme.h, iconvme.c from libc.
20520
20521 2005-02-22  Jim Meyering  <jim@meyering.net>
20522
20523         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Fix typo:
20524         s/ifndef/ifdef/.
20525
20526 2005-02-20  Neil Conway  <neilc@samurai.com>
20527
20528         * lib/xgethostname.c (xgethostname): Check for ENOMEM, which is
20529         returned by OSX/Darwin if the specified buffer is not large
20530         enough for the hostname.
20531
20532 2005-02-03  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
20533
20534         * lib/argp-help.c (__argp_help): Create a fake struct argp_state and
20535         pass it to _help, otherwise the latter coredumps trying to
20536         dereference state.root_argp.
20537
20538 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
20539
20540         * modules/chdir-long (Depends-on): Add memrchr.
20541         * modules/memrchr (Files): Add lib/memrchr.h.
20542         (Include): "memrchr.h".
20543
20544 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
20545
20546         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Add AC_LIBSOURCES, for memrchr.h.
20547
20548 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
20549
20550         * lib/memrchr.h: New file.
20551         * lib/chdir-long.c: Include it.
20552         * lib/memrchr.c [!defined _LIBC]: Include it rather than <string.h>
20553         Don't bother including stddef.h.
20554
20555 2005-02-01  Paul Eggert  <eggert@cs.ucla.edu>
20556
20557         * lib/mountlist.h (MOUNTLIST_H_): New macro, to protect against double
20558         inclusion.
20559         Include <sys/types.h>, for dev_t.
20560         (ME_DUMMY, ME_REMOTE): Move from here....
20561         * lib/mountlist.c (ME_DUMMY, ME_REMOTE): To here.
20562         (ME_DUMMY): Count "subfs" as a dummy.  Problem reported by
20563         Dmitry V. Levin.
20564         Include mountlist.h first, to test the interface.
20565
20566 2005-01-29  Bruno Haible  <bruno@clisp.org>
20567
20568         * lib/progname.c (program_name): Initialize.
20569         Needed when linking statically on MacOS X.
20570
20571 2005-01-28  Paul Eggert  <eggert@cs.ucla.edu>
20572
20573         Sync from coreutils.
20574         * modules/getloadavg (Files): Remove m4/getloadavg.m4.
20575         (Depends-on): Add c-strtod.
20576         (configure.ac): Replace gl_FUNC_GETLOADAVG with AC_FUNC_GETLOADAVG.
20577
20578 2005-01-28  Paul Eggert  <eggert@cs.ucla.edu>
20579
20580         Sync from coreutils.
20581         * m4/getloadavg.m4, glibc.m4, search-libs.m4: Remove.
20582
20583         Remove files that are specific to coreutils.
20584         * m4/check-decl.m4, jm-macros.m4, lib-check.m4, prereq.m4: Remove.
20585
20586 2005-01-28  Bruno Haible  <bruno@clisp.org>
20587
20588         * modules/javacomp: New file.
20589         * MODULES.html.sh (Java): Add javacomp.
20590
20591 2005-01-28  Bruno Haible  <bruno@clisp.org>
20592
20593         * m4/javacomp.m4: New file, from GNU gettext.
20594
20595 2005-01-28  Bruno Haible  <bruno@clisp.org>
20596
20597         * lib/javacomp.sh.in: New file, from GNU gettext.
20598         * lib/javacomp.h: New file, from GNU gettext.
20599         * lib/javacomp.c: New file, from GNU gettext.
20600
20601 2005-01-26  Simon Josefsson  <jas@extundo.com>
20602
20603         * lib/gai_strerror.c: Use GPL in header.
20604
20605 2005-01-26  Bruno Haible  <bruno@clisp.org>
20606
20607         * modules/javaexec: New file.
20608         * MODULES.html.sh (Java): Add javaexec.
20609
20610 2005-01-26  Bruno Haible  <bruno@clisp.org>
20611
20612         * m4/javaexec.m4: New file, from GNU gettext.
20613
20614 2005-01-26  Bruno Haible  <bruno@clisp.org>
20615
20616         * lib/javaexec.sh.in: New file, from GNU gettext.
20617         * lib/javaexec.h: New file, from GNU gettext.
20618         * lib/javaexec.c: New file, from GNU gettext.
20619
20620 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
20621
20622         * modules/lchown (Depends-on): Remove lchown.h
20623
20624 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
20625
20626         * m4/sysexits.m4 (gl_SYSEXITS): Reverted logic. SYSEXITS_H
20627         must be defined if the header file was not found, in order
20628         to provide a replacement. Reported by Todd Vierling <tv@duh.org>
20629
20630 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
20631
20632         * lib/argp-help.c (hol_entry_help): Avoid using non-constant
20633         initializers for struct pentry_state.
20634         (__argp_error): Check return value of __asprintf
20635         (__argp_failure): Translate error message
20636
20637         * lib/argp-parse.c: Removed braces around the expansion of N_()
20638
20639 2005-01-23  Paul Eggert  <eggert@cs.ucla.edu>
20640
20641         * m4/acl.m4, afs.m4, alloca.m4, argp.m4, assert.m4, atexit.m4,
20642         backupfile.m4, base64.m4, bison.m4, c-bs-a.m4, c-stack.m4,
20643         c-strtod.m4, calloc.m4, canon-host.m4, canonicalize.m4,
20644         clock_time.m4, cloexec.m4, closeout.m4, d-ino.m4, d-type.m4,
20645         dirfd.m4, dirname.m4, dos.m4, dup2.m4, error.m4, euidaccess.m4,
20646         exclude.m4, exitfail.m4, extensions.m4, fcntl-safer.m4,
20647         file-type.m4, fileblocks.m4, filemode.m4, fnmatch.m4, fpending.m4,
20648         free.m4, fstypename.m4, fsusage.m4, ftruncate.m4, getaddrinfo.m4,
20649         getcwd-path-max.m4, getcwd.m4, getdate.m4, getdomainname.m4,
20650         getgroups.m4, gethostname.m4, getline.m4, getndelim2.m4,
20651         getnline.m4, getopt.m4, getpagesize.m4, getpass.m4, getsubopt.m4,
20652         gettime.m4, gettimeofday.m4, getugroups.m4, getusershell.m4,
20653         group-member.m4, hard-locale.m4, hash.m4, host-os.m4, human.m4,
20654         idcache.m4, inttostr.m4, isdir.m4, jm-winsz1.m4, jm-winsz2.m4,
20655         link-follow.m4, long-options.m4, ls-mntd-fs.m4, lstat.m4,
20656         makepath.m4, mathl.m4, md5.m4, memcasecmp.m4, memchr.m4,
20657         memcmp.m4, memcoll.m4, memcpy.m4, memmem.m4, memmove.m4,
20658         memrchr.m4, memset.m4, mkdir-slash.m4, mkstemp.m4, mktime.m4,
20659         modechange.m4, mountlist.m4, nanosleep.m4, obstack.m4,
20660         path-concat.m4, pathmax.m4, perl.m4, physmem.m4, poll.m4,
20661         posixtm.m4, posixver.m4, putenv.m4, quote.m4, quotearg.m4,
20662         readdir.m4, readtokens.m4, readutmp.m4, regex.m4, rename.m4,
20663         restrict.m4, rmdir-errno.m4, rmdir.m4, rpmatch.m4, same.m4,
20664         savedir.m4, settime.m4, sha1.m4, sig2str.m4, snprintf.m4,
20665         sockpfaf.m4, st_dm_mode.m4, st_mtim.m4, stat.m4, stdint.m4,
20666         stdio-safer.m4, strchrnul.m4, strdup.m4, strerror.m4,
20667         strerror_r.m4, strftime.m4, strndup.m4, strnlen.m4, strsep.m4,
20668         strtod.m4, strtoimax.m4, strtok_r.m4, strtol.m4, strtoll.m4,
20669         strtoul.m4, strtoull.m4, strtoumax.m4, strverscmp.m4, sysexits.m4,
20670         time_r.m4, timegm.m4, timespec.m4, tm_gmtoff.m4, tzset.m4,
20671         uint32_t.m4, uintptr_t.m4, unistd-safer.m4, unlink-busy.m4,
20672         unlocked-io.m4, uptime.m4, userspec.m4, utimbuf.m4, utime.m4,
20673         utimecmp.m4, utimens.m4, utimes-null.m4, vsnprintf.m4, xalloc.m4,
20674         xgetcwd.m4, xreadlink.m4, xstrndup.m4, xstrtod.m4, xstrtoimax.m4,
20675         xstrtol.m4, xstrtoumax.m4, yesno.m4:
20676         Use an all-permissive copyright notice, recommended by RMS.
20677
20678 2005-01-21  Paul Eggert  <eggert@cs.ucla.edu>
20679
20680         * modules/chdir-long (Depends-on): Remove mempcpy.
20681
20682 2005-01-21  Jim Meyering  <jim@meyering.net>
20683
20684         * lib/openat.h (AT_SYMLINK_NOFOLLOW): Define to 4096, so it's the
20685         same value as for Solaris 9.
20686
20687         * lib/chdir-long.c (chdir_long): Rewrite to remove limitation on
20688         component length.  This included changing the parameter to be
20689         of type `char *' rather than `char const *'.
20690         * lib/chdir-long.h (chdir_long): Update prototype.
20691
20692         * lib/openat.c (fdopendir, fstatat): New functions.
20693         * lib/openat.h: Include headers required for use of DIR and struct
20694         stat.
20695         [AT_SYMLINK_NOFOLLOW]: Define.
20696         (fdopendir, fstatat): Add prototypes.
20697
20698 2005-01-21  Bruno Haible  <bruno@clisp.org>
20699
20700         * modules/classpath: New file.
20701         * MODULES.html.sh (Java): Add classpath.
20702
20703 2005-01-21  Bruno Haible  <bruno@clisp.org>
20704
20705         * lib/classpath.h: New file, from GNU gettext.
20706         * lib/classpath.c: New file, from GNU gettext.
20707
20708 2005-01-20  Simon Josefsson  <jas@extundo.com>
20709
20710         * modules/version-etc-fsf: New file.
20711
20712 2005-01-20  Simon Josefsson  <jas@extundo.com>
20713
20714         * lib/version-etc-fsf.c: New file, with version_etc_copyright.
20715         * lib/version-etc.c: Remove version_etc_copyright.
20716         * lib/version-etc.h (version_etc_copyright): Use [] instead of * in
20717         prototype, suggested by Paul Eggert <eggert@CS.UCLA.EDU>.
20718
20719 2005-01-20  Simon Josefsson  <jas@extundo.com>
20720
20721         * lib/base64.h (isbase64): Add.
20722
20723         * lib/base64.c (isb64): Rename to isbase64, use to_uchar instead of
20724         using a unsigned prototype, don't inline.
20725         (base64_decode): Use it.
20726
20727 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
20728
20729         * m4/save-cwd.m4 (gl_SAVE_CWD): Remove check for fcntl; we now assume
20730         it.
20731
20732 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
20733
20734         * lib/save-cwd.c (save_cwd): Remove code to support the case
20735         where fchdir is missing or flaky.
20736
20737 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
20738
20739         * MODULES.html.sh (Command-line arguments): Add version-etc-fsf.
20740
20741 2005-01-19  Paul Eggert  <eggert@cs.ucla.edu>
20742
20743         * modules/mempcpy (Makefile.am): Remove mention of mempcpy.h;
20744         AC_LIBSOURCES now does this.
20745         * MODULES.html.sh (Sizes of integer types <limits.h>): New element,
20746         with new ullong_max module.
20747
20748 2005-01-19  Bruno Haible  <bruno@clisp.org>
20749
20750         * modules/sh-quote: New file.
20751         * MODULES.html.sh (Executing programs): Add sh-quote.
20752
20753 2005-01-19  Bruno Haible  <bruno@clisp.org>
20754
20755         * lib/sh-quote.h: New file, from GNU gettext.
20756         * lib/sh-quote.c: New file, from GNU gettext.
20757
20758 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
20759
20760         Merge from coreutils.
20761         * m4/ullong_max.m4: New file.
20762         * m4/jm-macros.m4 (gl_MACROS): Require gl_ULLONG_MAX.
20763         (gl_MACROS): Assume localeconv exists.
20764
20765 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
20766
20767         Merge changes from coreutils, as described below in several
20768         changelogs dated today.
20769
20770         * lib/save-cwd.c: Include "save-cwd.h" before other include files.
20771         (O_DIRECTORY): Remove; not needed here, since "." must be
20772         a directory.  All uses removed.
20773         (save_cwd): Use __sgi || __sun, not sun || __sun.  __sun is
20774         universal on Suns, and we also need to test for IRIX.
20775         Revamp code to use 'if' rather than '#if'.
20776         Avoid unnecessary comparison of cwd->desc to 0.
20777
20778         * lib/utimens.c (futimens): Robustify the previous patch, by checking
20779         for known valid error numbers rather than observed invalid ones.
20780
20781 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
20782
20783         * modules/ullong_max: New file.
20784
20785         * modules/chdir-long, modules/openat: New files.
20786         * modules/save-cwd (Depends-on): Depend on chdir-long.
20787         (Makefile.am): Remove lib_SOURCES; now handled by AC_LIBSOURCES.
20788
20789 2005-01-18  Jim Meyering  <jim@meyering.net>
20790
20791         Merge from coreutils.
20792         * m4/chdir-long.m4, m4/openat.m4: New files.
20793         * m4/save-cwd.m4 (gl_SAVE_CWD): Add AC_LIBSOURCES for save-cwd.c,
20794         save-cwd.h.  Add AC_LIBOBJ for save-cwd.
20795         * m4/chown.m4 (gl_FUNC_CHOWN): When cross-compiling, assume that chown
20796         is sane and DOES follow symlinks.  Besides, testing 20 different
20797         systems found no broken chown implementations.
20798         Prompted by a change in rsync's copy of this macro.
20799         * m4/jm-macros.m4 (gl_MACROS): Require gl_FUNC_CHDIR_LONG.
20800
20801         * m4/lchown.m4 (gl_FUNC_LCHOWN): Use AC_LIBSOURCES.
20802
20803         * m4/utimes.m4: Work around tests/touch/empty-file failure on a system
20804         (sparc64, Linux-2.4.28, glibc-2.3.3) that didn't honor utimes'
20805         NULL-means-set-to-current-time semantics.
20806         Remove temporary file immediately, rather than waiting
20807         for configure's at-exit trap code to do it.
20808
20809 2005-01-18  Jim Meyering  <jim@meyering.net>
20810
20811         * lib/version-etc.c (version_etc_copyright): Update copyright date.
20812
20813         * lib/utimens.c (futimens): Account for the fact that futimes
20814         can also fail with errno == ENOSYS or errno == ENOENT.
20815         Patch from Dmitry V. Levin.
20816
20817         Change the name of the robust chdir function from chdir to chdir_long.
20818         * lib/save-cwd.c: Include chdir-long.h rather than chdir.h.
20819         (restore_cwd): Use chdir_long, not chdir.
20820         * lib/chdir-long.c: Renamed from chdir.c.
20821         * lib/chdir-long.h: Renamed from chdir.h.
20822         [!defined PATH_MAX]: Define chdir_long to chdir on systems like the
20823         Hurd.
20824
20825 2005-01-18  Bruno Haible  <bruno@clisp.org>
20826
20827         * m4/allocsa.m4, m4/codeset.m4, m4/copy-file.m4, m4/eaccess.m4:
20828         * m4/eealloc.m4, m4/eoverflow.m4, m4/execute.m4, m4/fatal-signal.m4:
20829         * m4/findprog.m4, m4/glibc21.m4, m4/iconv.m4, m4/intmax_t.m4:
20830         * m4/inttypes_h.m4, m4/lib-ld.m4, m4/lib-link.m4, m4/lib-prefix.m4:
20831         * m4/linebreak.m4, m4/localcharset.m4, m4/longdouble.m4:
20832         * m4/longlong.m4, m4/mbrtowc.m4, m4/mbstate_t.m4, m4/mbswidth.m4:
20833         * m4/mkdtemp.m4, m4/pipe.m4, m4/readlink.m4, m4/safe-read.m4:
20834         * m4/safe-write.m4, m4/setenv.m4, m4/sig_atomic_t.m4:
20835         * m4/signalblocking.m4, m4/signed.m4, m4/size_max.m4, m4/ssize_t.m4:
20836         * m4/stdbool.m4, m4/stdint_h.m4, m4/stpcpy.m4, m4/stpncpy.m4:
20837         * m4/strcase.m4, m4/strcspn.m4, m4/strpbrk.m4, m4/strstr.m4:
20838         * m4/ucs4-utf.m4, m4/uintmax_t.m4, m4/ulonglong.m4, m4/unicodeio.m4:
20839         * m4/utf-ucs4.m4, m4/vasnprintf.m4, m4/vasprintf.m4:
20840         * m4/wait-process.m4, m4/wchar_t.m4, m4/wint_t.m4, m4/xsize.m4:
20841         Use an all-permissive copyright notice, recommended by RMS.
20842
20843 2005-01-18  Bob Proulx  <bob@proulx.com>
20844
20845         * lib/obstack.c [DEFAULT_ALIGNMENT]: Use an intermediate type to
20846         simplify offsetof() macro construct to avoid compile failure with
20847         native HP-UX 11.0 ANSI C compiler.
20848
20849 2005-01-17  Bruno Haible  <bruno@clisp.org>
20850
20851         * lib/stpncpy.c: Remove HAVE_STPNCPY and gnu_stpncpy renaming,
20852         redundant because stpncpy.m4 takes care of it.
20853
20854 2005-01-17  Bruno Haible  <bruno@clisp.org>
20855
20856         * lib/progreloc.c: Include xalloc.h instead of xmalloc.h.
20857
20858 2005-01-17  Bruno Haible  <bruno@clisp.org>
20859
20860         * lib/progreloc.c (xstrdup): Define as strdup if no xmalloc should be
20861         used.
20862
20863 2005-01-17  Bruno Haible  <bruno@clisp.org>
20864
20865         * lib/fwriteerror.h (fwriteerror): Change specification to include
20866         fclose.
20867         * lib/fwriteerror.c: Include <stdbool.h>.
20868         (fwriteerror): At the end, close the file stream. Record whether
20869         stdout was already closed.
20870
20871 2005-01-17  Bruno Haible  <bruno@clisp.org>
20872
20873         * lib/execute.c (environ): Declare if needed.
20874         * lib/pipe.c (environ): Likewise.
20875         Reported by Michael Schloh von Bennewitz <michael.schloh@cw.com>.
20876
20877 2005-01-11  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
20878
20879         * modules/argp: Depend on vsnprintf
20880
20881 2005-01-10  Jim Meyering  <jim@meyering.net>
20882
20883         * modules/closeout (Depends-on): Add atexit.
20884
20885 2005-01-06  Bruno Haible  <bruno@clisp.org>
20886
20887         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Rename stpncpy to gnu_stpncpy here.
20888
20889 2005-01-04  Paul Eggert  <eggert@cs.ucla.edu>
20890
20891         * lib/human.c (SIZE_MAX, UINTMAX_MAX): Move these conditional
20892         definitions to be after all include files, to avoid collisions.
20893         Problem reported by Bob Proulx.
20894
20895 2005-01-04  Jim Meyering  <jim@meyering.net>
20896
20897         Changes imported from coreutils.
20898         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Rather than using "conftestXXXXXX"
20899         as the mkstemp template, use a temporary directory and an
20900         8.3-friendly template to avoid trouble on systems like DJGPP.
20901         Reported by Juan M. Guerrero via Stepan Kasal.
20902         * m4/(gl_FUNC_MKSTEMP): Include <unistd.h> for the declaration of
20903         close. Remove the temporary directory right away, rather than waiting
20904         for configure's at-exit trap code to do it.
20905         Suggestion from Stepan Kasal.
20906
20907 2005-01-01  Simon Josefsson  <jas@extundo.com>
20908
20909         * gnulib-tool: Print #include directives when --import'ing.
20910
20911 2004-12-28  Simon Josefsson  <jas@extundo.com>
20912
20913         * tests/test-base64.c: Include required header files.  Remove
20914         unused variables.
20915
20916 2004-12-28  Paul Eggert  <eggert@cs.ucla.edu>
20917
20918         * modules/error (Depends-on): Remove gettext.
20919
20920 2004-12-28  Paul Eggert  <eggert@cs.ucla.edu>
20921
20922         * lib/error.c [!_LIBC && !ENABLE_NLS]: Do not include "gettext.h";
20923         not needed.  This removes a dependency on the gettext module.
20924         [defined _LIBC]: Do not include <libintl.h>; not needed.
20925
20926 2004-12-24  Paul Eggert  <eggert@cs.ucla.edu>
20927
20928         * m4/c-strtod.m4 (gl_C99_STRTOLD): New macro.
20929         (gl_C_STRTOD): Use it instead of AC_CHECK_DECLS_ONCE(strtold).
20930
20931 2004-12-24  Paul Eggert  <eggert@cs.ucla.edu>
20932
20933         * lib/c-strtod.c (STRTOD): Depend on HAVE_C99_STRTOLD, not
20934         HAVE_DECL_STRTOLD.
20935
20936 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
20937
20938         * modules/getdate (Depends-on): Remove alloca-opt.
20939
20940 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
20941
20942         * m4/getdate.m4 (gl_GETDATE): Remove AC_FUNC_ALLOCA.
20943
20944 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
20945
20946         * lib/argp-parse.c: Include <stddef.h>.
20947         (alignof, alignto): New macros.
20948         (parser_init): Don't assume that void * is aligned sufficiently
20949         for struct option.
20950
20951         * lib/getdate.y (YYSTACK_USE_ALLOCA): Define to 0, since there's no
20952         need to extend the stack.
20953         (YYINITDEPTH): New macro, so that the initial stack isn't overly
20954         large.
20955
20956 2004-12-22  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
20957
20958         * lib/argp-parse.c (parser_init): Avoid arithmetics on void pointers.
20959
20960 2004-12-19  Paul Eggert  <eggert@cs.ucla.edu>
20961
20962         * modules/regex (lib_SOURCES): Remove regex.c, undoing previous
20963         (2004-10-24) change.  Apparently this was a false alarm.
20964
20965         * modules/getdate: Depend on alloca-opt, not alloca.
20966
20967 2004-12-19  Paul Eggert  <eggert@cs.ucla.edu>
20968
20969         * lib/alloca_.h: Conditionalize on _GNULIB_ALLOCA_H, not _ALLOCA_H.
20970         Remove now-obsolete comment about AIX.
20971         * lib/getdate.y: Include <alloca.h> only if HAVE_ALLOCA.
20972         (YYSTACK_USE_ALLOCA): Define to 0 if !HAVE_ALLOCA.
20973         (YYMAXDEPTH): New macro.
20974
20975 2004-12-18  Simon Josefsson  <jas@extundo.com>
20976
20977         * modules/alloca: Depend on alloca-opt, instead of duplicating it.
20978
20979 2004-12-18  Bruno Haible  <bruno@clisp.org>
20980
20981         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Also test for sigaction.
20982
20983 2004-12-18  Bruno Haible  <bruno@clisp.org>
20984
20985         * lib/fatal-signal.c (fatal_signals): Make non-const.
20986         (init_fatal_signals): New function.
20987         (uninstall_handlers, install_handlers): Ignore signals that were set to
20988         SIG_IGN.
20989         (at_fatal_signal): Call init_fatal_signals.
20990         (init_fatal_signal_set): Likewise. Ignore signals that were set to
20991         SIG_IGN.
20992         Reported by Paul Eggert.
20993
20994 2004-12-18  Bruno Haible  <bruno@clisp.org>
20995
20996         * doc/alloca.texi: New file.
20997         * doc/alloca-opt.texi: New file.
20998
20999 2004-12-17  Jim Meyering  <jim@meyering.net>
21000
21001         * config/install-sh: Use `(exit N); exit N', not `(exit N); exit'.
21002         Otherwise, install-sh could exit with improper exit status when
21003         exiting via a trapped interrupt.  Thanks to a report from Bob Proulx.
21004
21005 2004-12-16  Simon Josefsson  <jas@extundo.com>
21006
21007         * tests/test-base64.c: Add license.
21008
21009 2004-12-15  Stepan Kasal  <address@hidden>
21010
21011         * gnulib-tool (func_emit_lib_Makefile_am): Shorten a long sed command.
21012
21013 2004-12-12  Paul Eggert  <eggert@cs.ucla.edu>
21014
21015         * modules/getcwd (Files): Add m4/d-ino.m4.
21016         Suggested by Mark D. Baushke.
21017
21018 2004-12-08  Paul Eggert  <eggert@cs.ucla.edu>
21019
21020         * lib/getdate.y (textint): New member "negative".
21021         (time_zone_hhmm): New function.
21022         Expect 14 shift-reduce conflicts, not 13.
21023         (o_colon_minutes): New rule.
21024         (time, zone): Use it to add support for +HH:MM, UTC+HH:MM.
21025         (yylex): Set the "negative" member of signed numbers.
21026
21027 2004-12-08  Paul Eggert  <eggert@cs.ucla.edu>
21028
21029         * doc/getdate.texi (Time of day items, Time zone items):
21030         Describe new formats +00:00, UTC+00:00.
21031
21032 2004-12-07  Paul Eggert  <eggert@cs.ucla.edu>
21033
21034         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): Fix typo in previous change:
21035         spurious "-l"s.  Problem reported by Stepan Kasal.
21036
21037 2004-12-06  Paul Eggert  <eggert@cs.ucla.edu>
21038
21039         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): New macro, to work around bug
21040         in Autoconf 2.59.  Problem reported by Mark D. Baushke.
21041
21042 2004-12-04  Simon Josefsson  <jas@extundo.com>
21043
21044         * modules/getaddrinfo (License): Add LGPL, reported by Yoann
21045         Vandoorselaere <yoann@prelude-ids.org>.
21046
21047 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
21048
21049         Changes imported from coreutils.
21050         * m4/hard-locale.m4 (gl_HARD_LOCALE): Assume locale.h and setlocale
21051         exist.
21052         * m4/human.m4 (gl_HUMAN): Assume locale.h and localeconv exist.
21053
21054 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
21055
21056         Changes imported from coreutils.
21057         * lib/hard-locale.c: Assume <locale.h> exists.
21058         Include "strdup.h".
21059         (GLIBC_VERSION): New macro.
21060         (hard_locale): Assume setlocale exists.
21061         Rewrite to avoid #ifdef.
21062         Use strdup rather than malloc + strcpy.
21063         * lib/human.c: Assume <locale.h> exists.
21064         (human_readable): Assume localeconv exists.
21065
21066 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
21067
21068         * modules/hard-locale (Depends-on): Add strdup.
21069
21070 2004-12-01  Jakub Jelinek  <jakub@redhat.com>
21071
21072         * lib/mktime.c (__mktime_internal): If SEC_REQUESTED != SEC,
21073         convert T2, not T.  (Imported from libc.)
21074
21075 2004-11-30  Simon Josefsson  <jas@extundo.com>
21076
21077         * modules/restrict (License): Change to LGPL.
21078
21079 2004-11-30  Simon Josefsson  <jas@extundo.com>
21080
21081         * m4/restrict.m4: Add copyright and copying conditions.
21082
21083 2004-11-30  Simon Josefsson  <jas@extundo.com>
21084
21085         * m4/base64.m4: New file.
21086
21087 2004-11-30  Simon Josefsson  <jas@extundo.com>
21088
21089         * MODULES.html.sh (Extra functions based on ANSI C 89): Add
21090         base64.
21091
21092         * tests/test-base64.c: New file.
21093
21094         * modules/base64: New file.
21095
21096 2004-11-30  Paul Eggert  <eggert@cs.ucla.edu>
21097
21098         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX):
21099         Define HAVE_PARTLY_WORKING_GETCWD if getcwd is partly working.
21100
21101         * m4/readutmp.m4 (gl_READUTMP): Don't check for sys/param.h.
21102
21103 2004-11-30  Paul Eggert  <eggert@cs.ucla.edu>
21104
21105         * lib/getcwd.c (is_ENAMETOOLONG): New macro.
21106         (__getcwd.c): Don't restore errno; glibc doesn't.
21107         [HAVE_PARTLY_WORKING_GETCWD && !defined AT_FDCWD]: Try system getcwd
21108         first, falling back to our code only if its results look suspicious.
21109         Ensure that the resulting buffer is only as large as necessary.
21110
21111         * lib/readutmp.c: Include readutmp.h first.
21112         Include <errno.h>, since readutmp.h no longer does that.
21113         * lib/readutmp.h: Don't include <errno.h>,
21114         <sys/param.h>, <time.h>; not needed to establish interface.
21115         (errno): Remove decl.
21116         (HAVE_STRUCT_XTMP_UT_TYPE): Remove; no longer needed.
21117         (UT_TYPE_EQ, UT_TYPE_NOT_DEFINED, UT_TYPE_BOOT_TIME,
21118         UT_TYPE_USER_PROCESS, IS_USER_PROCESS): New macros.
21119
21120 2004-11-28  Simon Josefsson  <jas@extundo.com>
21121
21122         * lib/base64.h, base64.c: New file.
21123
21124 2004-11-27  Paul Eggert  <eggert@cs.ucla.edu>
21125
21126         * lib/getcwd.h: New file, which I forgot to check in on 2004-11-25.
21127
21128 2004-11-26  Paul Eggert  <eggert@cs.ucla.edu>
21129
21130         * modules/getcwd (Files): Add lib/getcwd.h, m4/getcwd.m4.
21131         (Depends-on): Remove pathmax, same.  Add mempcpy.
21132         (configure.ac): GL_FUNC_GETCWD_PATH_MAX -> gl_FUNC_GETCWD.
21133         (Makefile.am): Append getcwd.h to lib_SOURCES.
21134         (Include): Add getcwd.h.
21135         (Maintainer): Change from Jim Meyering to "all, glibc",
21136         since getdate now uses intended-for-glibc code.
21137         * modules/xgetcwd (Files): Remove m4/getcwd.m4.
21138         (Depends-on): Depend on getcwd.  Do not depend on pathmax.
21139
21140 2004-11-25  Paul Eggert  <eggert@cs.ucla.edu>
21141
21142         Fix problems reported by Scott S. Tinsley for HP-UX 11.11 using
21143         HP's ANSI C compiler.
21144         * lib/fsusage.c (statvfs) [HAVE_SYS_STATVFS_H]: Remove decl.
21145         Declaring int functions causes warnings on some modern systems and
21146         shouldn't be needed to compile on ancient ones.
21147         * lib/same.c (MIN) [defined MIN]: Don't define, since it's already
21148         defined.
21149
21150         * lib/getcwd.c: Replace by a copy of glibc/sysdeps/posix/getcwd.c, but
21151         with the following changes.
21152         (__set_errno): Parenthesize properly.
21153         Include <stdbool.h>.
21154         (MIN, MAX, MATCHING_INO): New macros.
21155         (__getcwd): Define with prototype, not K&R form.
21156         Use heuristics to allocate default buffer on stack if possible.
21157         If AT_FDCWD is defined, use openat and fstatat to avoid O(N**2)
21158         behavior, and to avoid the PATH_MAX limit when computing
21159         ../../../../...
21160         Use MATCHING_INO to compare inode number to file.
21161         Check for arithmetic overflow in size calculations.
21162         Fix bug in reallocation of dot array that caused getcwd to fail
21163         on directories nested deeper than 75.
21164         Be more careful about saving errno on error.
21165         Do not use realloc; use only free+malloc, as this is a bit
21166         more flexible and avoids a needless copy operation.
21167         Do not inspect st_dev and st_ino for symbolic links; POSIX
21168         doesn't specify the latter.
21169         Check for closedir errors.
21170         Avoid needless casts.
21171         Use "#ifdef weak_alias" around weak_alias, to be like other
21172         glibc code.
21173         The following changes to getcwd.c have effect only when used in
21174         gnulib; they have no effect inside glibc proper.
21175         (#pragma alloca) [defined _AIX && !defined __GNUC__]: Remove,
21176         as alloca isn't used.
21177         (alloca, __alloca): Likewise.
21178         [!_LIBC]: Include "getcwd.h", "mempcpy.h".
21179         Include <stddef.h>, <stdlib.h>, <string.h>, <limits.h>
21180         unconditionally, as gnulib assumes C89 or better.
21181         Do not include <sys/param.h>.
21182         (errno) [!defined __GNU_LIBRARY__ && !defined STDC_HEADERS]: Remove
21183         no-longer-necessary 'extern int errno' decl; gnulib assumes C89 or
21184         better.
21185         (NULL) [!defined NULL]: Remove; we assume C89 or better.
21186         Include <dirent.h> in a way that is compatible with modern Autoconf.
21187         (_D_ALLOC_NAMELEN, _D_EXACT_NAMLEN):
21188         New macros, if not already defined.
21189         Include <unistd.h> if _LIBC, not if __GNU_LIBRARY__.
21190         Use "_LIBC", not "defined _LIBC", for consistency.
21191         (HAVE_MEMPCPY): Remove; no longer needed now that gnulib has
21192         a mempcpy module.
21193         (__lstat, __closedir, __opendir, __readdir) [!_LIBC]: New macros.
21194         (GETCWD_RETURN_TYPE): Remove.  All uses replaced by char *.
21195         * lib/xgetcwd.c: David MacKenzie's old code was removed, so give
21196         credit only to Jim Meyering and adjust the copyright dates.
21197         Do not include <limits.h>, <stdio.h>, <sys/types.h>,
21198         <stdlib.h>, <unistd.h>, "pathmax.h".
21199         Instead, include "xgetcwd.h" (first) and "getcwd.h".
21200         (INITIAL_BUFFER_SIZE): Remove.
21201         (xgetcwd): Rely on getcwd, since we now depend on a reliable one.
21202
21203 2004-11-25  Paul Eggert  <eggert@cs.ucla.edu>
21204
21205         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Renamed from
21206         GL_FUNC_GETCWD_PATH_MAX for consistency.  All uses changed.
21207         Use the _ONCE methods, for efficiency.
21208         Check for fcntl.h.  In test program, include <errno.h>
21209         and <fcntl.h> if available.  Remove old K&R cruft from
21210         test program.  Check for common errors in GNU/Linux,
21211         OpenBSD, and Solaris.  Just set gl_cv_func_getcwd_path_max;
21212         don't do AC_LIBOBJ, as that's getcwd.m4's job.
21213         * m4/getcwd.m4 (gl_FUNC_GETCWD_NULL): Renamed from
21214         AC_FUNC_GETCWD_NULL.  All used changed.  Change cache variable
21215         name accordingly.
21216         (gl_FUNC_GETCWD, gl_PREREQ_GETCWD): New macros.  Revamp to
21217         accommodate new getcwd.c.
21218         * m4/jm-macros.m4 (gl_MACROS): Don't require GL_FUNC_GETCWD_PATH_MAX.
21219         * m4/prereq.m4 (gl_PREREQ): Add gl_FUNC_MEMPCPY.
21220         * m4/xgetcwd.m4 (gl_XGETCWD): Replace with gl_FUNC_GETCWD, since
21221         that's all we need now.
21222
21223 2004-11-23  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
21224
21225         * m4/argp.m4 (gl_ARGP): Require gl_GETOPT_SUBSTITUTE unconditionally:
21226         argp-parse.c depends on getopt internals, that means we should
21227         always use our getopt, to be on the safe side.
21228         * m4/getopt.m4 (gl_GETOPT): Check if GETOPT_H is already set, in
21229         order not to spoil the result of an eventual previous invocation
21230         of gl_GETOPT_SUBSTITUTE.
21231
21232 2004-11-23  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
21233
21234         * lib/getopt_.h: Re-addition of __getopt_argv_const caused
21235         redefinition warnings. To avoid them, include the defines
21236         in `#if !defined __need_getopt ... #endif'. The only place
21237         where __getopt_argv_const is used is in definitions
21238         of getopt_long and getopt_long_only below, which are as well
21239         protected by `#ifndef __need_getopt'.
21240         [defined __GETOPT_PREFIX && !defined __need_getopt]: Undef
21241         __need_getopt after including <stdio.h> and <unistd.h> These
21242         headers might have defined it.
21243
21244 2004-11-23  Paul Eggert  <eggert@cs.ucla.edu>
21245
21246         * m4/utimens.m4 (gl_UTIMENS): Check for futimes function.
21247
21248 2004-11-23  Paul Eggert  <eggert@cs.ucla.edu>
21249
21250         * lib/utimens.c (__attribute__, ATTRIBUTE_UNUSED): New macros.
21251         (futimens): New function, which uses futimes if available.
21252         (futimens, utimens): Support timespec==NULL, with same semantics
21253         as utime and utimens.
21254         * lib/utimens.h (futimens): New decl.
21255
21256 2004-11-23  Jim Meyering  <jim@meyering.net>
21257
21258         * lib/getopt_.h: Remove trailing blanks.
21259
21260 2004-11-23  Jim Meyering  <jim@meyering.net>
21261
21262         * lib/__fpending.c: Add comment.
21263
21264 2004-11-22  Paul Eggert  <eggert@cs.ucla.edu>
21265
21266         * modules/canonicalize (Depends-on): Add xreadlink.
21267         Problem reported by James Youngman.
21268
21269 2004-11-20  Paul Eggert  <eggert@cs.ucla.edu>
21270
21271         * lib/getopt_.h (__GETOPT_CONCAT, __GETOPT_XCONCAT, __GETOPT_ID):
21272         New macros.
21273         (getopt, getopt_long, getopt_long_only, optarg, opterr, optind,
21274         optopt): Use them instead of invoking ## directly; otherwise, the
21275         symbols will be __GETOPT_PREFIXgetopt rather than rpl_getopt.
21276
21277 2004-11-19  Bruno Haible  <bruno@clisp.org>
21278
21279         * lib/strtok_r.c: Move comments from here...
21280         * lib/strtok_r.h: ... to here.
21281
21282 2004-11-17  Paul Eggert  <eggert@cs.ucla.edu>
21283
21284         * m4/calloc.m4 (_AC_FUNC_CALLOC_IF): Check for buggy calloc
21285         implementations that mishandle size_t overflow.
21286
21287 2004-11-17  Paul Eggert  <eggert@cs.ucla.edu>
21288
21289         * lib/realloc.c (rpl_realloc): Call 'free' if n==0, since realloc
21290         might fail.  Problem reported by Yoann Vandoorselaere.
21291         * lib/calloc.c (rpl_calloc): Defend against buggy calloc
21292         implementations that mishandle size_t overflow.
21293
21294 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
21295
21296         * modules/canon-host (Depends-on): Add strdup.
21297
21298 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
21299
21300         * m4/canon-host.m4 (gl_CANON_HOST): Check for getaddrinfo.
21301
21302 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
21303
21304         * lib/canon-host.c: Include "strdup.h".
21305         (canon_host): Use getaddrinfo if available, so that IPv6 works.
21306         Use strdup instead of malloc/strcpy to duplicate strings.
21307
21308         * lib/human.h (LONGEST_HUMAN_READABLE): Add 1 for space before unit.
21309         (human_space_before_unit): New constant.
21310         * lib/human.c (human_readable): Support it.
21311
21312         * lib/xgetcwd.c: Include <limits.h>, for PATH_MAX.
21313         (xgetcwd): Set errno correctly when failing.
21314         Work around Solaris 9 bug: getcwd sets errno==ERANGE even though
21315         the failure is actually due to a PATH_MAX problem.
21316
21317         Further getopt changes to make it more likely that glibc will
21318         buy the changes back.
21319         * lib/getopt.c (POSIXLY_CORRECT): New constant.
21320         (getopt): Use it, so to preserve glibc semantic
21321         * lib/getopt1.c (getopt_long, getopt_long_only): Arg is char * const *
21322         when compiling for libc.
21323         * lib/getopt_.h (__getopt_argv_const): Bring it back.
21324         (getopt_long, getopt_long_only): Use it.
21325
21326         * lib/getopt.c (_getopt_initialize, _getopt_internal_r,
21327         _getopt_internal): New arg POSIXLY_CORRECT.  All callers changed.
21328         (getopt): Argv is now char * const *, as per standard.
21329         (_getopt_internal_r, _getopt_internal): Argv is now char **,
21330         not char *__getopt_argv_const *.
21331         * lib/getopt1.c (getopt_long, _getopt_long_r, getopt_long_only,
21332         _getopt_long_only_r): Likewise.
21333         * lib/getopt_.h (getopt, getopt_long, geopt_long_only): Likewise.
21334         * lib/getopt_int.h (_getopt_internal, _getopt_internal_r,
21335         _getopt_long_r, _getopt_long_only_r): Likewise.
21336         * lib/getopt_.h (__getopt_argv_const): Remove.
21337         (getopt): Argv is now char * const *, as per standard.
21338
21339         * lib/getdate.y (tORDINAL): New token.
21340         (day, relunit): Allow it for relative times.
21341         (relative_time_table): Use tORDINAL for ordinals.
21342
21343 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
21344
21345         * doc/getdate.texi (General date syntax): "next" is 1, not 2.
21346         Document that "second" isn't allowed as an ordinal number.
21347
21348 2004-11-16  Jim Meyering  <jim@meyering.net>
21349
21350         * modules/closeout (Depends-on): Add fpending.
21351
21352 2004-11-15  Jim Meyering  <jim@meyering.net>
21353
21354         * lib/closeout.c: Include "__fpending.h" once again.
21355         Include <stdbool.h>.
21356         (close_stdout): Don't fail just because stdout was closed initially,
21357         since some programs don't write to stdout in the normal course of
21358         operation (other than --version and --help), and we don't want this
21359         function to make e.g. `touch file >&-' fail.
21360         But do fail if it was closed and someone has tried to write to it.
21361         E.g., `printf foo >&-' must fail.
21362
21363 2004-11-13  Jim Meyering  <jim@meyering.net>
21364
21365         * m4/jm-macros.m4: Do require gl_FUNC_FPENDING.
21366
21367 2004-11-12  Simon Josefsson  <jas@extundo.com>
21368
21369         * config/srclist.txt: Add strtok_r.c, glibc bought our changes, but a
21370         small doc fix is still pending.
21371
21372 2004-11-11  Simon Josefsson  <jas@extundo.com>
21373
21374         * modules/strtok_r: New file.
21375
21376         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
21377         strtok_r.
21378
21379 2004-11-11  Simon Josefsson  <jas@extundo.com>
21380
21381         * m4/strtok_r.m4: New file.
21382
21383         * m4/getopt.m4: Replace opterr.
21384
21385 2004-11-11  Simon Josefsson  <jas@extundo.com>
21386
21387         * lib/strtok_r.h, strtok_r.c: New file.
21388
21389 2004-11-11  Paul Eggert  <eggert@cs.ucla.edu>
21390
21391         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE): Define __GETOPT_PREFIX instead
21392         of replacing opterr, getopt, etc.  This should handle the
21393         powerpc-apple-darwin5.5 problem recently noted by Simon Josefsson.
21394
21395 2004-11-11  Paul Eggert  <eggert@cs.ucla.edu>
21396
21397         * lib/getopt_.h (__getopt_argv_const): New macro, to be used so that
21398         we can stop lying to compilers about the constness of argv when we
21399         are compiled outside glibc.
21400         (getopt, getopt_long, getopt_long_only): Use it.
21401         * lib/getopt.c (_getopt_initialize, _getopt_internal_r,
21402         _getopt_internal, getopt): Likewise.
21403         * lib/getopt1.c (getopt_long, _getopt_long_r, getopt_long_only,
21404         _getopt_long_only_r): Likewise.
21405         * lib/getopt_int.h (_getopt_internal, _getopt_internal_r,
21406         _getopt_long_r, _getopt_long_only_r): Likewise.
21407
21408         * lib/getopt_.h [defined __GETOPT_PREFIX && !defined __need_getopt]:
21409         Include <stdlib.h> and <stdio.h>, and <unistd.h> if available.
21410         Then rename getopt to __GETOPT_PREFIX##getopt, and so forth for
21411         the other external symbols.
21412         (getopt) [!defined __GNU_LIBRARY]: Use prototype, not old-style
21413         declaration, since the above renaming now works around collisions.
21414
21415 2004-11-11  Jim Meyering  <jim@meyering.net>
21416
21417         * lib/linebreak.c: Remove trailing blanks.
21418         * lib/alloca_.h: Likewise.
21419         * lib/acosl.c: Likewise.
21420         * lib/euidaccess.c: Likewise.
21421         * lib/allocsa.h: Likewise.
21422
21423 2004-11-10  Simon Josefsson  <jas@extundo.com>
21424
21425         * m4/getaddrinfo.m4: New file.
21426
21427 2004-11-10  Simon Josefsson  <jas@extundo.com>
21428
21429         * lib/getaddrinfo.h, lib/getaddrinfo.c: New files.
21430
21431 2004-11-10  Simon Josefsson  <jas@extundo.com>
21432
21433         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
21434         getaddrinfo.
21435
21436         * modules/getaddrinfo: New file.
21437
21438 2004-11-10  Paul Eggert  <eggert@cs.ucla.edu>
21439
21440         * m4/prereq.m4 (gl_PREREQ): Require gt_FUNC_SETENV.
21441
21442 2004-11-10  Paul Eggert  <eggert@cs.ucla.edu>
21443
21444         * lib/mktime.c (SHR): New macro, which is a portable
21445         substitute for >> that should work even on Crays.
21446         (TIME_T_MIDPOINT, ydhms_diff, __mktime_internal): Use it.
21447         Problem reported by Mark D. Baushke in
21448         <http://lists.gnu.org/archive/html/bug-gnulib/2004-11/msg00071.html>.
21449         * lib/getdate.y (SHR): Likewise.
21450         (tm_diff): Use it.
21451         * lib/strftime.c (SHR): Likewise.
21452         (tm_diff): Use it.
21453         * lib/quotearg.c (struct quoting_options): Use unsigned int for
21454         quote_these_too, so that right shifts are well defined.  All uses
21455         changed.
21456
21457 2004-11-10  Jim Meyering  <jim@meyering.net>
21458
21459         Ensure that no close failure goes unreported.
21460         * lib/closeout.c (close_stdout): Always close stdout.  I.e., don't
21461         return early when it seems there's nothing to flush.
21462         Don't include __fpending.h.
21463
21464 2004-11-10  Jim Meyering  <jim@meyering.net>
21465
21466         * modules/closeout (Depends-on): Remove fpending.
21467
21468 2004-11-10  Jim Meyering  <jim@meyering.net>
21469
21470         * m4/jm-macros.m4 (gl_MACROS): Don't require gl_FUNC_FPENDING.
21471
21472 2004-11-09  Paul Eggert  <eggert@cs.ucla.edu>
21473
21474         * m4/strftime.m4 (_gl_STRFTIME_PREREQS): Remove.  Move its body to
21475         gl_FUNC_STRFTIME.
21476         (gl_FUNC_STRFTIME): Use AC_CHECK_FUNCS_ONCE and AC_CHECK_HEADERS_ONCE
21477         and AC_REQUIRE when possible, to avoid duplicate checks.
21478         Check for <wchar.h>.
21479
21480 2004-11-09  Paul Eggert  <eggert@cs.ucla.edu>
21481
21482         * lib/strftime.c (DO_MULTIBYTE): Check for wchar.h, too.
21483
21484 2004-11-09  Bruno Haible  <bruno@clisp.org>
21485
21486         * m4/sockpfaf.m4: New file.
21487
21488 2004-11-05  Bruno Haible  <bruno@clisp.org>
21489
21490         * lib/readlink.c: Include stddef.h, needed for size_t on Woe32.
21491         Reported by Mark D. Baushke <mdb@cvshome.org>.
21492
21493 2004-11-04  Bruno Haible  <bruno@clisp.org>
21494
21495         2004-09-11  Bruno Haible  <bruno@clisp.org>
21496                 * allocsa.valgrind: New file.
21497         2004-02-06  Bruno Haible  <bruno@clisp.org>
21498                 * allocsa.h (sa_alignof): Define differently with HP-UX cc, to
21499                 avoid a bug of this cc on HP-UX 10.20 dealing with enums.
21500                 Reported by Christopher Seip <chris.seip@hp.com>.
21501
21502 2004-11-04  Bruno Haible  <bruno@clisp.org>
21503
21504         * modules/allocsa (Files): Add lib/allocsa.valgrind.
21505         (Makefile.am): Distribute it.
21506
21507 2004-11-03  Paul Eggert  <eggert@cs.ucla.edu>
21508
21509         * lib/xreadlink.c (xreadlink): AIX and HP-UX readlink return -1
21510         with errno == ERANGE if the buffer is too small.
21511         Problem reported by Mark D. Baushke.
21512
21513 2004-11-03  Albert Chin  <china@thewrittenword.com>
21514             Paul Eggert  <eggert@cs.ucla.edu>
21515
21516         * m4/uint32_t.m4 (gl_AC_TYPE_UINT32_T): When determining uint32_t
21517         equivalent, substitute $ac_type for equivalent type rather than
21518         blindly using uint32_t *always* which won't work if uint32_t is not
21519         available.  Define _UINT32_T to work around typedef of uint32_t if
21520         <sys/sched.h>, <pthread.h>, or <semaphore.h> used on Solaris
21521         2.5.1.
21522
21523 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
21524
21525         * m4/jm-macros.m4: Sync from coreutils.
21526         (gl_MACROS): Check for mbrlen, for pathchk.
21527         (gl_CHECK_ALL_TYPES): Require AC_TYPE_MBSTATE_T, for pathchk.
21528
21529 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
21530
21531         * lib/xreadlink.c (MAXSIZE): New macro.
21532         (xreadlink): Use it instead of SSIZE_MAX.  Ensure initial buffer
21533         size does not exceed MAXSIZE.  Avoid cast.
21534         As suggested by Mark D. Baushke in
21535         <http://lists.gnu.org/archive/html/bug-gnulib/2004-11/msg00009.html>,
21536         if readlink fails with buffer size just under MAXSIZE, try again
21537         with MAXSIZE.
21538
21539 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
21540
21541         * config/srclist.txt: Add mktime.c; glibc bought all our changes.
21542
21543 2004-11-02  Derek R. Price  <derek@ximbiot.com>
21544         and  Paul Eggert  <eggert@cs.ucla.edu>
21545
21546         * lib/getdate.y [!TEST]: Include <stdio.h>, since we use sprintf now.
21547         (get_date): Overparenthesize to avoid GCC warning.
21548
21549 2004-11-02  Bruno Haible  <bruno@clisp.org>
21550
21551         * m4/setenv.m4 (gt_FUNC_SETENV): Define VOID_UNSETENV if unsetenv()
21552         returns void.
21553
21554 2004-11-02  Bruno Haible  <bruno@clisp.org>
21555
21556         * lib/setenv.h (unsetenv): Define as a macro if the system's unsetenv()
21557         function returns void.
21558
21559 2004-11-01  Paul Eggert  <eggert@cs.ucla.edu>
21560
21561         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for declarations of
21562         fflush_unlocked, flockfile, funlockfile, funlockfile,
21563         fputs_unlocked, putc_unlocked.
21564
21565 2004-11-01  Paul Eggert  <eggert@cs.ucla.edu>
21566
21567         * lib/getpass.c (fflush_unlocked, flockfile, funlockfile)
21568         (funlockfile, fputs_unlocked, putc_unlocked): Don't define if
21569         already declared.
21570
21571 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
21572
21573         * modules/getdate (Files): Add doc/getdate.texi.
21574         (Depends-on): Add setenv, xalloc.
21575
21576 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
21577
21578         * lib/getdate.y: Add support for TZ="foo" within a date string.
21579         Fix some bugs near time_t boundaries.  Reject dates with
21580         out-of-range components, e.g., "Sept 31".
21581         Include <stdlib.h>, "setenv.h", "xalloc.h".
21582         (ISDIGIT_LOCALE): Remove; unused.
21583         Note that the TZ and time functions used here are not reentrant.
21584         (mktime_ok, get_tz): New functions.
21585         (TZBUFSIZE): New constant.
21586         (get_date): Parse leading TZ="foo".  Reject out-of-range components;.
21587         This requires that we sometimes generate our own TZ="XXX..." setting.
21588
21589 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
21590
21591         * doc/getdate.texi: New file, from coreutils with modifications for
21592         the new TZ parsing.
21593
21594 2004-10-27  Derek R. Price  <derek@ximbiot.com>
21595
21596         * lib/mktime.c (not_equal_tm): Remove redundant check.
21597
21598 2004-10-24  Paul Eggert  <eggert@cs.ucla.edu>
21599
21600         * modules/regex (lib_SOURCES): Add regex.c.
21601         Reported by James Youngman in
21602         <http://lists.gnu.org/archive/html/bug-gnulib/2004-10/msg00199.html>.
21603
21604 2004-10-24  Paul Eggert  <eggert@cs.ucla.edu>
21605
21606         * lib/getdate.y: Use Bison 1.875 features, and some minor
21607         code cleanups.  This change does not affect semantics.
21608         Don't include <stdlib.h>; no longer needed.
21609         Don't include unlocked-io.h; only the "#if TEST" code uses
21610         stdio, and performance isn't crucial there.
21611         (PC, YYLEX_PARAM, YYPARSE_PARAM): Remove; replaced by
21612         Bison 1.875 features as described below.
21613         All uses of "PC." replaced by "pc->".
21614         (YYSTYPE): Add a forward declaration.
21615         (yylex, yyerror): Use full prototypes in forward decls.
21616         Use "%pure-parser" rather than obsolescent "%pure_parser".
21617         Use %parse-param and %lex-param instead of obsolescent
21618         YYPARSE_PARAM and YYLEX_PARAM.
21619         (meridian_table, month_and_day_table, time_units_table,
21620         relative_time_table, time_zone_table, military_table,
21621         lookup_zone, lookup_word, get_date):
21622         Use NULL instead of 0 where appropriate.
21623         (to_hour): Avoid abort (), to avoid a dependency on
21624         stdlib.h.
21625         (yyerror, yylex): Now accepts parser_control * arg.
21626         (main) [TEST]: Use '\0' rather than 0 for char.
21627
21628 2004-10-22  Paul Eggert  <eggert@cs.ucla.edu>
21629
21630         * m4/getpagesize.m4 (gl_GETPAGESIZE): Check for <sys/param.h>.
21631
21632 2004-10-22  Paul Eggert  <eggert@cs.ucla.edu>
21633
21634         * lib/getpagesize.c (getpagesize): Don't assume <sys/param.h> exists.
21635         It's now the caller's responsibility to handle the case where
21636         !HAVE_GETPAGESIZE && !defined getpagesize.
21637
21638         * lib/mktime.c (leapyear): Arg is long int, not int.
21639
21640 2004-10-18  Paul Eggert  <eggert@cs.ucla.edu>
21641
21642         * lib/argp-fs-xinl.c, argp-xinl.c: Update from glibc.
21643
21644 2004-10-17  Paul Eggert  <eggert@cs.ucla.edu>
21645
21646         * gnulib-tool (func_emit_lib_Makefile_am): Fix typo: a $ was
21647         missing.  Problem reported by James Youngman.
21648
21649 2004-10-16  Simon Josefsson  <jas@extundo.com>
21650
21651         * gnulib-tool: Fix comments.  Fix parse problem.
21652         (func_emit_lib_Makefile_am): Don't hard code a in libgl_a_SOURCES.
21653
21654 2004-10-15  Paul Eggert  <eggert@cs.ucla.edu>
21655
21656         * m4/getopt.m4 (gl_GETOPT): Detect and reject the incompatible BSD
21657         implementation of getopt_long.  Problem reported by Alexander Taler in:
21658         http://lists.gnu.org/archive/html/bug-gnulib/2004-10/msg00103.html
21659
21660 2004-10-15  Bruno Haible  <bruno@clisp.org>
21661
21662         * gnulib-tool: Untabify. Initialize supplied_libname.
21663         (func_usage): More homogenous output.
21664         (func_modules_transitive_closure, func_modules_to_filelist,
21665         func_emit_lib_Makefile_am): New functions.
21666         (func_import): New function, extracted from big case statement. Use
21667         func_get_license, func_modules_transitive_closure,
21668         func_modules_to_filelist, func_emit_lib_Makefile_am. Initialize
21669         opt_lgpl. Don't use test -a, as it's not portable.
21670         (func_create_testdir): Use func_modules_transitive_closure,
21671         func_modules_to_filelist, func_emit_lib_Makefile_am.
21672
21673 2004-10-15  Bruno Haible  <bruno@clisp.org>
21674
21675         * gnulib-tool (func_import): Let gl_INIT define LTALLOCA when needed.
21676
21677 2004-10-15  Bruno Haible  <bruno@clisp.org>
21678
21679         * gnulib-tool (func_emit_lib_Makefile_am): Add markers to separate
21680         the portions belonging to each module.
21681         Suggested by Derek Robert Price <derek@ximbiot.com>.
21682
21683 2004-10-12  Simon Josefsson  <jas@extundo.com>
21684
21685         * lib/getpass.c (fflush_unlocked, flockfile, funlockfile)
21686         (fputs_unlocked, putc_unlocked) [!_LIBCS && !USE_UNLOCKED_IO]: Map
21687         to real functions.
21688
21689 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
21690
21691         * modules/vsnprintf: New file.
21692
21693 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
21694
21695         * m4/vsnprintf.m4: New file.
21696
21697 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
21698
21699         * lib/vsnprintf.h: New file.
21700         * lib/vsnprintf.c: New file.
21701
21702 2004-10-11  Bruno Haible  <bruno@clisp.org>
21703
21704         * MODULES.html.sh (Support for systems lacking ISO C 99): Add
21705         vsnprintf.
21706
21707 2004-10-10  Paul Eggert  <eggert@cs.ucla.edu>
21708
21709         * config/srclistvars.sh: Add GNUSTANDARDS (for eggert only).
21710
21711 2004-10-07  Bruno Haible  <bruno@clisp.org>
21712
21713         * lib/snprintf.c (snprintf): Avoid a memory allocation if the result
21714         fits into the provided buffer.
21715
21716 2004-10-06  Paul Eggert  <eggert@cs.ucla.edu>
21717
21718         * lib/diacrit.c, diacrit.h: Add GPL notice.
21719
21720         * lib/atanl.c, logl.c: Add GPL notice, to match glibc's added LGPL
21721         notice.
21722         * lib/atanl.c (atanl): Keep the code as similar to glibc as possible.
21723         * lib/logl.c (logl): Keep the code as similar to glibc as possible.
21724         This avoids a potential constant-folding bug.
21725
21726 2004-10-05  Bruno Haible  <bruno@clisp.org>
21727
21728         * m4/strsep.m4 (gl_FUNC_STRSEP): Require AC_GNU_SOURCE. Don't check
21729         for the declaration of strsep.
21730
21731 2004-10-05  Bruno Haible  <bruno@clisp.org>
21732
21733         * lib/strsep.h: Don't declare strsep() if HAVE_STRSEP.
21734
21735 2004-10-04  Simon Josefsson  <jas@extundo.com>
21736
21737         * modules/memmem: New file.
21738         * tests/test-memmem.c: New file.
21739         * MODULES.html.sh (Extra functions based on ANSI C 89): Add memmem.
21740
21741 2004-10-04  Simon Josefsson  <jas@extundo.com>
21742
21743         * m4/memmem.m4: New file.
21744
21745 2004-10-04  Simon Josefsson  <jas@extundo.com>
21746
21747         * lib/memmem.h: New file.
21748         * lib/memmem.c: New file, taken from glibc.
21749
21750 2004-10-04  Simon Josefsson  <jas@extundo.com>
21751
21752         * lib/error.c, md5.c, regex.c: Use '#if USE_UNLOCKED_IO' instead of
21753         '#ifdef USE_UNLOCKED_IO'.
21754
21755 2004-10-04  Simon Josefsson  <jas@extundo.com>
21756
21757         * config/srclist.txt: Add memmem from glibc.
21758
21759 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
21760
21761         * modules/xalloc (Files, Makefile.am): Remove xstrdup.c.
21762
21763         * modules/argmatch, modules/argp, modules/closeout, modules/error,
21764         modules/exclude, modules/getdate, modules/getline,
21765         modules/getndelim2, modules/getpass, modules/getpass-gnu,
21766         modules/getusershell, modules/linebuffer, modules/md5,
21767         modules/mountlist, modules/posixtm, modules/readtokens,
21768         modules/readutmp, modules/regex, modules/sha1,
21769         modules/version-etc, modules/yesno:
21770         Remove dependency on unlocked-io.
21771
21772 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
21773
21774         * m4/xalloc.m4 (gl_PREREQ_XSTRDUP): Remove.  All uses removed.
21775
21776         * m4/unlocked-io.m4: Add copyright notice.
21777         (gl_FUNC_GLIBC_UNLOCKED_IO): Define USE_UNLOCKED_IO.
21778
21779 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
21780
21781         * lib/xalloc.h (xmemdup): Renamed from xclone.  All uses changed.
21782         * lib/xmalloc.c (xmemdup): Likewise.
21783         * lib/xalloc.h (CCLONE, CLONE, NEW, XCALLOC, XMALLOC, XREALLOC,
21784         XFREE): Remove these long-obsolescent macros.
21785         * lib/xmalloc.c (xstrdup): Implementation moved here from xstrdup.c
21786         * lib/xstrdup.c: Remove.
21787
21788         * lib/regex.c (re_comp): Cast gettext return value to char *,
21789         Problem reported by Martin Neitzel via Mark D. Baushke.
21790
21791 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
21792
21793         * lib/argmatch.c, closeout.c, error.c, exclude.c, getdate.y,
21794         getndelim2.c, getpass.c, getusershell.c, linebuffer.c,
21795         md5.c, mountlist.c, posixtm.c, readtokens.c, readutmp.c,
21796         regex.c, sha1.c, version-etc.c, yesno.c:
21797         Include "unlocked-io.h" only if USE_UNLOCKED_IO.
21798         * lib/unlocked-io.h: Don't worry about USE_UNLOCKED_IO; that's now
21799         the includer's responsibility.
21800
21801         Sync from coreutils.
21802
21803         * lib/modechange.c (mode_compile): Don't decrement a pointer that
21804         points to the start of a string, as the C Standard says the
21805         resulting behavior is undefined.
21806
21807         * lib/backupfile.h (enum backuptype): Rename none -> no_backups,
21808         simple -> simple_backups, numbered_existing ->
21809         numbered_existing_backups, numbered -> numbered_backups
21810         to avoid shadowing problems.  All uses changed.
21811         * lib/argmatch.c (enum backuptype) [defined TEST]: Likewise.
21812         * lib/backupfile.c (check_extension, numbered_backup):
21813         Rename locals to avoid shadowing 'basename'.
21814         * lib/backupfile.h (VALID_BACKUP_TYPE): Don't evaluate arg more than
21815         once.
21816
21817         * lib/.cppi-disable: Add getopt_.h, getopt_int.h.
21818         * lib/.cvsignore: Add getopt.h.
21819
21820 2004-10-04  Bruno Haible  <bruno@clisp.org>
21821
21822         * modules/README: New file.
21823         * gnulib-tool (func_all_modules, func_verify_module): modules/README is
21824         not a module.
21825
21826 2004-10-02  Jim Meyering  <jim@meyering.net>
21827
21828         * lib/dirfd.h, getpagesize.h: Add copyright notice.
21829
21830 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
21831
21832         * modules/strsep: New file.
21833
21834 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
21835
21836         * m4/strsep.m4: New file.
21837
21838 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
21839
21840         * lib/strsep.h: New file.
21841         * lib/strsep.c: New file.
21842
21843 2004-10-01  Simon Josefsson  <jas@extundo.com>
21844
21845         * lib/snprintf.c (snprintf): Handle size==0.
21846
21847 2004-10-01  Simon Josefsson  <jas@extundo.com>
21848             Bruno Haible  <bruno@clisp.org>
21849
21850         * lib/snprintf.c: Include <stdarg.h>, <stdlib.h>, <string.h>.
21851         (snprintf): Declare 'args'.
21852
21853 2004-10-01  Paul Eggert  <eggert@cs.ucla.edu>
21854
21855         * lib/snprintf.c: Remove comments as to why each header is needed.
21856
21857 2004-10-01  Bruno Haible  <bruno@clisp.org>
21858
21859         * MODULES.html.sh: Add strsep.
21860
21861 2004-09-30  Simon Josefsson  <jas@extundo.com>
21862
21863         * modules/snprintf: New file.
21864
21865 2004-09-30  Simon Josefsson  <jas@extundo.com>
21866
21867         * m4/snprintf.m4: New file.
21868
21869 2004-09-30  Simon Josefsson  <jas@extundo.com>
21870
21871         * lib/snprintf.h, lib/snprintf.c: New files.
21872
21873 2004-09-30  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
21874
21875         * lib/argp-help.c (canon_doc_option): Fixed coredump if *name==NULL
21876         (hol_entry_help): Never translate an empty string.
21877         Do not translate option tag (opt->name) if OPTION_NO_TRANS is set
21878         * lib/argp.h (OPTION_NO_TRANS): New option.
21879
21880 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
21881
21882         * modules/argp (Maintainer): Replace Simon Josefsson
21883         by Sergey Poznyakoff.
21884
21885 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
21886
21887         * config/srclist.txt: Comment-out argp/argp.h, until we get the argp
21888         changes merged back into glibc.
21889
21890 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
21891
21892         * MODULES.html.sh (Support for systems lacking ISO C 99): Add snprintf.
21893
21894 2004-09-29  Oskar Liljeblad  <oskar@osk.mine.nu>
21895
21896         * lib/xvasprintf.c: Include xalloc.h.
21897         (xvasprintf): Use xalloc_die, not xmalloc_die.
21898
21899 2004-09-29  Bruno Haible  <bruno@clisp.org>
21900
21901         * modules/alloca-opt: New file, derived from modules/alloca.
21902         * modules/allocsa: Depend on alloca-opt instead of alloca.
21903         * modules/setenv: Likewise.
21904         * modules/vasnprintf: Likewise.
21905         * MODULES.html.sh: Add alloca-opt.
21906
21907 2004-09-28  Simon Josefsson  <jas@extundo.com>
21908
21909         * gnulib-tool: New parameter --lgpl, to asseert that modules are
21910         LGPL, and to replace license template from GPL to LGPL.
21911
21912 2004-09-28  Paul Eggert  <eggert@cs.ucla.edu>
21913
21914         * modules/dummy: Change license to LGPL.
21915
21916 2004-09-28  Paul Eggert  <eggert@cs.ucla.edu>
21917
21918         * lib/dummy.c: Change copyright notice to FSF, and license to GPL.
21919
21920 2004-09-24  Simon Josefsson  <jas@extundo.com>
21921
21922         * modules/minmax (License): Change from GPL to LGPL.
21923
21924 2004-09-23  Simon Josefsson  <jas@extundo.com>
21925
21926         * gnulib-tool (--import): Typo.
21927
21928 2004-09-23  Simon Josefsson  <jas@extundo.com>
21929
21930         * gnulib-tool (--import): Make sure *.m4 end up in m4/ by default.
21931
21932 2004-09-22  Bruno Haible  <bruno@clisp.org>
21933
21934         * modules/*: Add 'License' field.
21935         * gnulib-tool: Accept --extract-license option.
21936         (func_get_license): New function.
21937
21938 2004-09-21  Bruno Haible  <bruno@clisp.org>
21939
21940         * modules/vasnprintf (Files): Add m4/stdint_h.m4, m4/inttypes_h.m4.
21941         Reported by Simon Josefsson.
21942
21943 2004-09-20  Paul Eggert  <eggert@cs.ucla.edu>
21944
21945         * modules/inttostr (Files): Add m4/longlong.m4, since it uses
21946         gl_AC_TYPE_LONG_LONG.
21947
21948 2004-09-20  Paul Eggert  <eggert@cs.ucla.edu>
21949
21950         * config/srclist.txt: Add getsubopt.c, since libc bought our changes.
21951
21952 2004-09-18  Simon Josefsson  <jas@extundo.com>
21953         and  Paul Eggert  <eggert@cs.ucla.edu>
21954
21955         * gnulib-tool: Replace various ad-hoc automake/autoconf/aclocal
21956         calls with autoreconf.  Define GL_LIB.
21957
21958 2004-09-14  Karl Berry  <karl@gnu.org>
21959
21960         * config/srclist.txt: unsync setenv.c, sigh.
21961
21962 2004-09-13  Paul Eggert  <eggert@cs.ucla.edu>
21963
21964         * lib/argp-pvh.c (argp_program_version_hook): Provide initial value.
21965         Problem reported by Bruno Haible in:
21966         http://lists.gnu.org/archive/html/bug-tar/2004-09/msg00023.html
21967
21968 2004-09-13  Paul Eggert  <eggert@cs.ucla.edu>
21969
21970         * config/srclist.txt: Comment out argp-pvh.c.
21971
21972 2004-09-11  Paul Eggert  <eggert@cs.ucla.edu>
21973
21974         * lib/mempcpy.h: Wrap the entire include file inside #ifndef mempcpy,
21975         in case some system header has #define'd it.  Problem reported by
21976         Soeren D. Schulze in
21977         <http://lists.gnu.org/archive/html/bug-gnulib/2004-09/msg00017.html>.
21978
21979 2004-09-09  Karl Berry  <karl@gnu.org>
21980
21981         * regex.[ch]: delete from the root.  These were supposed to be
21982                 synced with emacs cvs, but this has not happened for about
21983                 a year, and anyway nothing else uses emacs regex.[ch].
21984                 bug-gnulib mail from Jeff Bailey, 9 Sep 2004 15:49:24 -0700.
21985                 lib/regex[.ch] is untouched.
21986
21987 2004-09-09  Bruno Haible  <bruno@clisp.org>
21988
21989         * modules/vasnprintf (Files): Add m4/eoverflow.m4.
21990
21991 2004-09-09  Bruno Haible  <bruno@clisp.org>
21992
21993         * m4/eoverflow.m4: New file, taken from GNU libiconv eilseq.m4 with
21994         modifications.
21995         * m4/vasnprintf.m4 (gl_FUNC_VASNPRINTF): Require gl_EOVERFLOW.
21996
21997 2004-09-08  Oskar Liljeblad  <oskar@osk.mine.nu>
21998
21999         * modules/xvasprintf: New file.
22000         * MODULES.html.sh (Extra functions based on ANSI C 89): Add vasprintf.
22001
22002 2004-09-08  Oskar Liljeblad  <oskar@osk.mine.nu>
22003
22004         * lib/xvasprintf.h: New file.
22005         * lib/xvasprintf.c: New file.
22006         * lib/xasprintf.c: New file.
22007
22008 2004-09-08  Bruno Haible  <bruno@clisp.org>
22009
22010         * m4/stdint.m4: New file, taken from GNU clisp with modifications.
22011
22012 2004-09-08  Bruno Haible  <bruno@clisp.org>
22013
22014         * lib/vasnprintf.c (VASNPRINTF): Signal EOVERFLOW if the resulting
22015         length is > INT_MAX.
22016         * lib/vasprintf.c (vasprintf): Don't test for length > INT_MAX any
22017         more.
22018
22019 2004-09-08  Bruno Haible  <bruno@clisp.org>
22020
22021         * lib/stdint_.h: New file, taken from GNU clisp.
22022
22023 2004-09-08  Bruno Haible  <bruno@clisp.org>
22024             Oskar Liljeblad  <oskar@osk.mine.nu>
22025
22026         * modules/stdint: New file.
22027         * MODULES.html.sh (Support for systems lacking ISO C 99): Add stdint.
22028
22029 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
22030
22031         Import from coreutils.
22032         * lib/userspec.c: Don't use <alloca.h>, so that we don't use alloca on
22033         strings on unbounded length.  alloca's performance benefits aren't
22034         that important here.
22035         (V_STRDUP): Remove.
22036         (parse_with_separator): New function, with most of the internals
22037         of the old parse_user_spec.  Allow user to omit both user and group,
22038         for compatibility with FreeBSD.
22039         Clone only the user name, not the entire spec.
22040         Do not set *uid, *gid unless entirely successful.
22041         Avoid memory leak in some failing cases.
22042         Fix regression for USER.GROUP reported by Dmitry V. Levin in
22043         <http://lists.gnu.org/archive/html/bug-coreutils/2004-08/msg00102.html>
22044         (parse_user_spec): Rewrite to use parse_with_separator.
22045
22046 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
22047
22048         * modules/userspec: Don't depend on alloca.
22049
22050 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
22051
22052         * m4/userspec.m4 (gl_USERSPEC): Don't require AC_FUNC_ALLOCA.
22053
22054 2004-08-17  Paul Eggert  <eggert@cs.ucla.edu>
22055
22056         * MODULES.html.sh: Add xalloc-die, c-strtod, c-strtold, raise,
22057         readtokens0, getcwd, fcntl-safer, canonicalize, cycle-check,
22058         utimecmp, utimens, xnanosleep.  Rename sha to sha1.
22059
22060 2004-08-16  Simon Josefsson  <jas@extundo.com>
22061
22062         * gnulib-tool: Use sed instead of autoconf --trace, inspired by
22063         libtoolize behaviour by "Gary V. Vaughan" <gary@gnu.org>.
22064         Add --dry-run for --import.
22065         Let user provided command line parameters override configure.ac
22066         settings.
22067
22068 2004-08-12  Simon Josefsson  <jas@extundo.com>
22069
22070         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE): New macro,
22071         as discussed with Paul Eggert in threads rooted at
22072         <http://lists.gnu.org/archive/html/bug-gnulib/2004-06/msg00039.html>
22073         and
22074         <http://lists.gnu.org/archive/html/bug-gnulib/2004-07/msg00001.html>.
22075         Before, the test was empty, and relied on ELIDE_CODE in source
22076         code.)
22077         (gl_PREREQ_GETOPT): New macro.
22078         (gl_GETOPT): Use them.
22079
22080 2004-08-12  Simon Josefsson  <jas@extundo.com>
22081
22082         * lib/getopt.c, getopt1.c: Remove ELIDE_CODE hack.
22083         * lib/getopt_.h: Renamed from getopt.h.
22084
22085 2004-08-12  Simon Josefsson  <jas@extundo.com>
22086
22087         * gnulib-tool: Add --source-base, --m4-base, --libtool options.
22088         Change default library name from libfoo to libgnu.
22089         Now, if you have a configure.ac that says:
22090                 gl_SOURCE_BASE(gl)
22091                 gl_M4_BASE(gl/m4)
22092                 gl_MODULES(error getopt etcetera)
22093                 gl_INIT
22094         you can import all you need by running:
22095                 ../gnulib/gnulib-tool --import
22096
22097         * modules/getopt (Files): Rename getopt.h to getopt_.h.
22098         (Makefile.am): Rewrite, use logic from argz.
22099         (Include): Use <getopt.h> instead of "getopt.h".
22100
22101 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
22102
22103         * modules/argp (Files): Add m4/unlocked-io.m4.
22104         (Depends-on): Add extensions.
22105
22106 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
22107
22108         * m4/argp.m4 (gl_ARGP): Do not check for argp.h or argp_parse; nobody
22109         uses HAVE_ARGP_H or HAVE_ARGP_PARSE.
22110         Require gl_FUNC_GLIBC_UNLOCKED_IO, gl_USE_SYSTEM_EXTENSIONS.
22111         Check for program_invocation_name, program_invocation_short_name,
22112         flockfile, funlockfile, features.h, _getopt_long_only_r.
22113
22114 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
22115
22116         * lib/argp-help.c, argp-parse.c: Use "gettext.h" instead of
22117         its complicated substitute.
22118         * lib/argp-help.c: Include <errno.h>, for program_invocation_short_name
22119         and program_invocation_name.
22120         (__argp_basename) [!_LIBC]: Remove; the only use was
22121         replaced by its body.
22122         (__argp_short_program_name): Change condition from
22123         !defined __argp_short_program_name to
22124         ! (defined _LIBC || HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME),
22125         to match argp-namefrob.h.
22126         (__argp_failure): Don't assume strerror_r returns char *.
22127         * lib/argp-parse.c (N_): Define unconditionally.
22128         (argp_default_options): Fill out initializers with 0 to avoid
22129         gcc warnings.
22130
22131 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
22132
22133         * config/srclist.txt: Remove getopt.c, getopt.h (renamed to getopt_.h),
22134         getopt1.c.
22135
22136 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
22137
22138         Merge from coreutils.
22139
22140         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for wmemchr and wmemcpy.
22141
22142         * m4/obstack.m4 (gl_PREREQ_OBSTACK): Require
22143         gl_AC_HEADER_INTTYPES_H, gl_AC_HEADER_STDINT_H, gl_AC_TYPE_UINTMAX_T.
22144
22145 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
22146
22147         Merge from coreutils.
22148
22149         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Don't set to 1 if missing
22150         wmemchr or wmemcpy.  Problem reported by Robert Dahlem
22151         for Reliant Unix 5.43.
22152
22153         * lib/obstack.c: Include <inttypes.h> and <stdint.h> if available.
22154         (union fooround): Use uintmax_t, not long int.
22155         The rest is a merge from libc:
22156         [defined _LIBC]: Include <shlib-compat.h>.
22157         (_obstack) [defined _LIBC]: Remove after 2.3.4.
22158
22159         * lib/settime.c (settime): Recode to avoid warning with
22160         Sun Forte C 6U2.
22161
22162         * lib/strverscmp.c: Convert to UTF-8.
22163
22164 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
22165
22166         * modules/obstack (Files): Add m4/inttypes_h.m4, m4/stdint_h.m4,
22167         m4/uintmax_t.m4.
22168
22169 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
22170
22171         * modules/xalloc-die: New file.
22172         * modules/xalloc: Remove dependencies on error, gettext, exitfail.
22173
22174         * modules/md5 (Files): Add m4/uint32_t.m4.
22175         * modules/sha1: Renamed from modules/sha.
22176         (Files):
22177         Rename lib/sha.h to lib/sha1.h.
22178         Rename lib/sha.c to lib/sha1.c.
22179         Rename m4/sha.m4 to m4/sha1.m4.
22180         (lib_SOURCES): Likewise.
22181         (configure.ac): Rename gl_SHA to gl_SHA1.
22182         (Include): sha.h -> sha1.h.
22183
22184 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
22185
22186         * m4/uint32_t.m4, m4/uintptr_t.m4: New files.
22187         * m4/sha1.m4: Renamed from sha.m4.
22188         (gl_SHA1): Renamed from gl_SHA.  All uses changed.
22189
22190 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
22191
22192         * lib/obstack.h (obstack_empty_p):
22193         Don't assume that chunk->contents is suitably aligned.
22194         * lib/obstack.c (_obstack_begin, _obstack_begin_1, _obstack_newchunk):
22195         Likewise. Problem reported by Benno in
22196         <http://sources.redhat.com/ml/libc-alpha/2004-08/msg00055.html>.
22197
22198         * lib/chown.c (rpl_chown): Work even if the file is writeable but not
22199         readable.  This could be improved further but it'd take some work.
22200
22201 2004-08-08  Simon Josefsson  <jas@extundo.com>
22202
22203         * modules/xgethostname (Depends-on): Remove exit and error (not
22204         used).
22205
22206         * modules/getpass-gnu: Add getpass.h.
22207         (Depends-on): Add stdbool.
22208         * modules/getpass: Add getpass.h.
22209
22210 2004-08-08  Simon Josefsson  <jas@extundo.com>
22211
22212         * m4/getpass.m4 (gl_FUNC_GETPASS, gl_FUNC_GETPASS_GNU):
22213         Check getpass declaration.
22214
22215 2004-08-08  Simon Josefsson  <jas@extundo.com>
22216
22217         * lib/xgethostname.c: Don't include error.h (not used).
22218
22219         * lib/getpass.h: Add.
22220         * lib/getpass.c: Include getpass.h first.
22221
22222 2004-08-08  Paul Eggert  <eggert@cs.ucla.edu>
22223
22224         * lib/xalloc-die.c: New file.
22225         * lib/xalloc.h (xalloc_fail_func, xalloc_msg_memory_exhausted): Remove.
22226         All uses removed.
22227         * lib/xmalloc.c (xalloc_fail_func, xalloc_msg_memory_exhausted):
22228         Likewise. Move inclusions of gettext.h, error.h, exitfail.h to
22229         xalloc-die.c.
22230         (_, N_, xalloc_die): Move to xalloc-die.c.
22231         * lib/userspec.c (parse_user_spaec): Use xstrdup rather than strdup,
22232         so that we needn't mess with xalloc_msg_memory_exhausted.
22233
22234         * lib/sha1.h: Renamed from sha.h.
22235         (SHA1_H): Renamed from _SHA_H.
22236         (sha1_ctx): Renamed from sha_ctx.
22237         (sha1_init_ctx): Renamed from sha_init_ctx.
22238         (sha1_process_block): Renamed from sha_process_block.
22239         (sha1_process_bytes): Renamed from sha_process_bytes.
22240         (sha1_finish_ctx): Renamed from sha_finish_ctx.
22241         (sha1_read_ctx): Renamed from sha_read_ctx.
22242         (sha1_stream): Renamed from sha_stream.
22243         (sha1_buffer): Renamed from sha_buffer.
22244         * lib/sha1.c: Likewise; renamed from sha.c.
22245         Do not include <sys/types.h>.
22246         Include <stddef.h> rather than <stdlib.h>.
22247
22248 2004-08-08  Bruno Haible  <bruno@clisp.org>
22249
22250         * lib/pathname.h (FILE_SYSTEM_PREFIX_LEN): Renamed from
22251         FILESYSTEM_PREFIX_LEN.
22252         * lib/progreloc.c: Likewise.
22253         * lib/concatpath.c (concatenated_pathname): Use FILE_SYSTEM_PREFIX_LEN.
22254
22255 2004-08-06  Simon Josefsson  <jas@extundo.com>
22256
22257         * modules/progname (Depends-on): Don't depend on stdbool.
22258
22259 2004-08-06  Simon Josefsson  <jas@extundo.com>
22260
22261         * modules/getsubopt: New file.
22262         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
22263         getsubopt.
22264
22265 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
22266
22267         More merge from coreutils.
22268
22269         * m4/utimens.m4, m4/utimecmp.m4: New files.
22270         * m4/backupfile.m4, euidacces.m4, acl.m4, afs.m4, calloc.m4, dirfd.m4,
22271         fsusage.m4, jm-macros.m4, ls-mntd-fs.m4, md5.m4, mountlist.m4,
22272         prereq.m4, sha.m4: Import changes from coreutils.
22273
22274 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
22275
22276         More merge from coreutils.
22277         * modules/raise, modules/readtokens0, modules/utimens:
22278         * modules/utimecmp, module/xnanosleep: New files.
22279         * modules/strftime: Add lib/strftime.h.
22280         Change include from <time.h> to "strftime.h".
22281         * modules/yesno: Add lib/yesno.h.
22282         * modules/backupfile: Remove lib/addext.c.
22283         * modules/euidaccess: Add stat-macros.h.
22284         * modules/canonicalize, modules/euidaccess,
22285         modules/filemode, modules/lchown, modules/makepath,
22286         modules/rmdir, modules/stat: Likewise.
22287
22288 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
22289
22290         Merge from tar.
22291         * lib/argp-help.c (make_hol, hol_append): Don't assume that
22292         SIZE_MAX is a valid preprocessor constant.
22293         (__argp_basename): Change from "#ifndef _LIBC"
22294         to "#ifndef __argp_short_program_name", so that
22295         we don't compile these functions for tar.
22296
22297         More merges from coreutils.
22298         * lib/raise.c, lib/readtokens0.h, lib/readtokens0.c, lib/strftime.h:
22299         * lib/utimens.h, lib/utimens.c, lib/utimecmp.h, lib/utimecmp.c:
22300         * lib/xnanosleep.h, lib/xnanosleep.c, lib/yesno.h: New files.
22301         * lib/addext.c: Remove; no longer needed.
22302         * lib/yesno.c, lib/argmatch.h, lib/argmatch.c, lib/backupfile.h,
22303         lib/backupfile.c, lib/euidaccess.c, lib/filemode.c, lib/closeout.c,
22304         lib/dup2.c, lib/exclude.c, lib/fileblocks.c, lib/filemode.c,
22305         lib/fnmatch.c, lib/fnmtahc_loop.c, lib/fopen-safer.c, lib/fsusage.c,
22306         lib/fsusage.h, lib/ftruncate.c, lib/full-write.c, lib/getdate.y,
22307         lib/getloadavg.c, lib/getugroups.c, lib/hard-locale.c,
22308         lib/hard-locale.h, lib/hash.c, lib/human.c, lib/human.h, lib/lchown.c,
22309         lib/lchown.h, lib/makepath.c, lib/makepath.h, lib/md5.c, lib/md5.h,
22310         lib/memchr.c, lib/memcoll.c, lib/memrchr.c, lib/modechange.c,
22311         lib/modechange.h, lib/mountlist.c, lib/mountlist.h, lib/nanosleep.c,
22312         lib/posixtm.c, lib/putenv.c, quotearg.c, lib/quotearg.h,
22313         lib/readtokens.c, lib/readutmp.c, lib/readutmp.h, lib/rmdir.c,
22314         lib/safe-read.c, lib/save-cwd.c, lib/savedir.c, lib/setenv.c,
22315         lib/sig2str.c, lib/stat.c, lib/strtoimax.c, lib/strverscmp.c,
22316         lib/userspec.c, lib/utime.c, lib/version-etc.c., lib/xgethostname.c,
22317         lib/xmemcoll.c, lib/xreadlink.c, lib/xstrtod.c, lib/xstrtod.h,
22318         lib/xstrtoimax.c, lib/xstrtol.c, lib/xstrtol.h, lib/xstrtoumax.c:
22319         Import changes from coreutils.
22320
22321 2004-08-05  Simon Josefsson  <jas@extundo.com>
22322
22323         * m4/strdup.m4: Always run gl_PREREQ_STRDUP, since strdup.h need it.
22324
22325 2004-08-05  Simon Josefsson  <jas@extundo.com>
22326
22327         * m4/getsubopt.m4: New file.
22328
22329 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
22330
22331         Merge from coreutils.
22332
22333         * m4/c-strtod.m4, m4/canonicalize.m4, m4/fcntl-safer.m4:
22334         * m4/getcwd-path-max.m4: New files.
22335
22336         * m4/dos.m4 (gl_AC_DOS): filesystem -> file system renaming.
22337         FILESYSTEM_PREFIX_LEN ->
22338         FILE_SYSTEM_PREFIX_LEN.
22339         FILESYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX ->
22340         FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX.
22341         FILESYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR ->
22342         FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR.
22343
22344         * m4/path-concat.m4 (gl_PATH_CONCAT): Don't require gl_AC_DOS, the
22345         prerequisite modules now handle the DOS stuff.
22346         Don't check for unistd.h.
22347
22348 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
22349
22350         Merge from coreutils.
22351
22352         * lib/.gdb-history: Remove; this doesn't belong here.
22353
22354         * lib/c-strtod.c, lib/c-strtod.h, lib/c-strtold.c, lib/cycle-check.c:
22355         * lib/cycle-check.h, lib/dev-ino.h, lib/canonicalize.h:
22356         * lib/canonicalize.c, lib/fcntl-safer.h, lib/fcntl-safer.c:
22357         * lib/getcwd.c: New files.
22358
22359         * lib/dirname.h: Include <stdbool.h>.
22360         (FILE_SYSTEM_PREFIX_LEN): Renamed from FILESYSTEM_PREFIX_LEN,
22361         for consistency with POSIX terminology.  All uses changed.
22362         (IS_ABSOLUTE_FILE_NAME, IS_RELATIVE_FILE_NAME): New macros.
22363         (strip_trailing_slashes): Use bool for booleans.
22364         * lib/stripslash.c (strip_trailing_slashes): Likewise.
22365
22366         * lib/error.c: Work around bug in OpenBSD 3.4 sterror_r: it
22367         sometimes returns a positive errno value even when it succeeds.
22368         (print_errno_message) [!LIBC]: Fall back on strerror if
22369         __strerror_r fails.
22370
22371         * lib/path-concat.c (mempcpy): Don't define if a system header defines
22372         it. Don't include stdio.h, stdlib.h, unistd.h, strdup.h.
22373         (longest_relative_suffix): New function.
22374         (path_concat): Use it.  Assume first argument is not NULL.
22375         Port to DOS.  Omit redundant separators.
22376         Report an error instead of returning NULL.
22377         Use mempcpy instead of memcpy.
22378         (xpath_concat): Remove: not declared or used.
22379
22380         * lib/same.h: Include <stdbool.h>
22381         (same_name): Return bool, not int.
22382         * lib/same.c (same_name): Likewise.
22383         (errno): Don't declare; we assume C89 or better now.
22384
22385         * lib/stat-macros (S_ISCTG, S_ISOFD, S_ISOFL): New macros,
22386         if not already defined.
22387
22388         * lib/xgetcwd.c (errno): Don't declare; we assume C89 or better now.
22389         * lib/dup-safer.c (errno): Likewise.
22390
22391 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
22392
22393         Merge from coreutils.
22394         * modules/c-strtod, modules/c-strtold, modules/canonicalize:
22395         * modules/cycle-check, modules/fcntl-safer, modules/getcwd: New files.
22396         * modules/path-concat: Don't depend on strdup.
22397
22398 2004-08-03  Simon Josefsson  <jas@extundo.com>
22399
22400         * lib/strdup.h: Only use HAVE_DECL_STRDUP if defined.
22401         * lib/progname.h: Don't include stdbool.h.
22402
22403 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
22404
22405         * modules/fatal: Remove, as the "fatal" module wasn't used or working.
22406         * MODULES.html.sh (func_all_modules): Remove fatal.
22407
22408 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
22409
22410         * m4/fatal.m4: Remove, as the "fatal" module wasn't used or working.
22411
22412 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
22413
22414         * lib/fatal.c, fatal.h: Remove as the "fatal" module wasn't used or
22415         working.
22416
22417 2004-08-02  Simon Josefsson  <jas@extundo.com>
22418
22419         * lib/getsubopt.h: New file, with comments from Bruno Haible.
22420         * lib/getsubopt.c: New file, from glibc, but slightly modified based on
22421         suggestions from Paul Eggert <eggert@cs.ucla.edu>.
22422
22423 2004-08-01  Simon Josefsson  <jas@extundo.com>
22424
22425         * lib/xgetdomainname.c: Include stdlib.h, for free().
22426
22427 2004-07-19  Bruno Haible  <bruno@clisp.org>
22428
22429         * MODULES.html.sh (func_all_modules): Add dummy.
22430
22431 2004-07-16  Simon Josefsson  <jas@extundo.com>
22432
22433         * modules/dummy: New file.
22434
22435 2004-07-16  Simon Josefsson  <jas@extundo.com>
22436
22437         * lib/dummy.c: New file.
22438
22439 2004-07-16  Bruno Haible  <bruno@clisp.org>
22440
22441         * lib/backupfile.h: Add extern "C" for C++.
22442         * lib/closeout.h: Likewise.
22443         * lib/copy-file.h: Likewise.
22444         * lib/findprog.h: Likewise.
22445         * lib/full-write.h: Likewise.
22446         * lib/pathname.h: Likewise.
22447         * lib/progname.h: Likewise.
22448         * lib/stpcpy.h: Likewise.
22449         * lib/stpncpy.h: Likewise.
22450         * lib/strcase.h: Likewise.
22451         * lib/strstr.h: Likewise.
22452         * lib/xalloc.h: Likewise.
22453
22454         * lib/mbswidth.h: Add extern "C" for C++.
22455         Reported by Albert Chin-A-Young <china@thewrittenword.com>.
22456
22457 2004-07-13  Robert Millan  <robertmh@gnu.org>
22458
22459         * m4/host-os.m4: s/KNetBSD/kNetBSD/g and s/KFreeBSD/kFreeBSD/g.
22460
22461 2004-07-09  Simon Josefsson  <jas@extundo.com>
22462
22463         * lib/getndelim2.c: Include stddef.h, for ptrdiff_t.  (FreeBSD 4.9
22464         failed without this.)
22465
22466 2004-07-09  Paul Eggert  <eggert@cs.ucla.edu>
22467
22468         * modules/chown (Files): Add lib/fchown-stub.c, since
22469         gl_PREREQ_CHOWN invokes AC_LIBOBJ(fchown-stub).
22470
22471 2004-07-09  Paul Eggert  <eggert@cs.ucla.edu>
22472
22473         * lib/fchown-stub.c: New file.
22474
22475 2004-06-24  Jim Meyering  <jim@meyering.net>
22476
22477         * lib/obstack.h (obstack_base): Cast to (void *), per documentation.
22478
22479 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
22480
22481         * modules/argz: Omit "#include".
22482
22483         * MODULES.html.sh (func_all_modules): Add calloc, to match
22484         2004-06-01 addition of calloc module.
22485
22486 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
22487
22488         * m4/argz.m4: New file, which is autoupdated from libtool.
22489
22490 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
22491
22492         * lib/argz.c, lib/argz_.h: New files, which are autoupdated from
22493         libtool.
22494
22495 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
22496
22497         * config/srclist-update: Don't insist on "USA." before the
22498         close-comment, as libtool omits the period and puts the */ on a
22499         separate line.
22500         * config/srclist.txt: Add argz.c, argz_.h, argz.m4.
22501         * config/srclistvars.sh: Add LIBTOOL (for eggert only).
22502
22503 2004-06-22  Gary V. Vaughan  <gary@gnu.org>
22504
22505         * modules/argz: New file.
22506         * MODULES.html.sh (func_all_modules): Add argz.
22507
22508 2004-06-12  Jim Meyering  <jim@meyering.net>
22509         and  Paul Eggert  <eggert@cs.ucla.edu>
22510
22511         * modules/hash (Files): Add lib/xalloc.h.
22512         * modules/pipe (Depends-on): Add wait-process.
22513         * modules/stat (Depends-on): Add xalloc.
22514         * modules/userspec (Files): Add lib/userspec.h.
22515         * modules/xstrto
22516
22517         Upgrade from gettext-0.13.
22518         * modules/gettext (Files): Add m4/intmax.m4, m4/longdouble.m4,
22519         m4/longlong.m4, m4/printf-posix.m4, m4/signed.m4, m4/size_max.m4,
22520         m4/wchar_t.m4, m4/wint_t.m4, m4/xsize.m4.
22521
22522 2004-06-10  Jim Meyering  <jim@meyering.net>
22523
22524         * lib/calloc.c: New file.
22525
22526 2004-06-06  Paul Eggert  <eggert@cs.ucla.edu>
22527
22528         * lib/getdate.y (yylex): Allow space between sign and number.
22529         Problem reported by Dan Jacobson.
22530
22531 2004-06-01  Paul Eggert  <eggert@cs.ucla.edu>
22532
22533         Merge from coreutils CVS.
22534
22535         * m4/backupfile.m4, dirname.m4, human.m4, inttypes.m4, longlong.m4,
22536         makepath.m4, memchr.m4, memcmp.m4, mountlist.m4, path-concat.m4,
22537         putenv.m4, quotearg.m4, readutmp.m4, strtoimax.m4, strtoll.m4,
22538         strtoull.m4, strtoumax.m4, ulonglong.m4, vasnprintf.m4,
22539         xstrtol.m4: Fix copyright date and/or serial number.
22540
22541         * m4/chown.m4 (gl_PREREQ_CHOWN): Check for fcntl.h.
22542         See if we need an fchown replacement.
22543         (gl_FUNC_CHOWN_FOLLOWS_SYMLINK): New macro.
22544         (gl_FUNC_CHOWN): Require gl_FUNC_CHOWN_FOLLOWS_SYMLINK,
22545         and use the replacement function if we detect either defect.
22546
22547         * m4/prereq.m4 (gl_PREREQ): Add gl_ALLOCSA, gl_CLOEXEC, gl_INTTOSTR,
22548         gl_UTIMECMP.
22549
22550 2004-06-01  Paul Eggert  <eggert@cs.ucla.edu>
22551         and  Jim Meyering  <jim@meyering.net>
22552
22553         Merge from coreutils CVS.
22554
22555         * lib/stat-macros.h: New file, with contents from file-type.h
22556         and coreutils' system.h.
22557         * lib/file-type.c: Include "stat-macros.h".
22558         * lib/file-type.h (file_type): Move all macro definitions to new file,
22559         stat-macros.h.
22560
22561         * lib/chown.c (rpl_chown) [CHOWN_FAILS_TO_HONOR_ID_OF_NEGATIVE_ONE]:
22562         Wrap old code with this conditional.
22563         [CHOWN_MODIFIES_SYMLINK]: Try to work around a chown
22564         function that does not dereference symlinks.
22565         * lib/lchown.c (lchown) [CHOWN_MODIFIES_SYMLINK]: Just call chown.
22566
22567         * lib/xreadlink.c: Include xreadlink.h first, to catch .h file
22568         dependency problems.
22569         (xreadlink): Accept new arg SIZE, for efficiency.
22570         All decls and uses changed.
22571         * lib/xreadlink.h: Include <stddef.h>, for size_t.
22572
22573         * lib/.cppi-disable: Add alloca_.h, allocsa.h, exit.h, getndelim2.h,
22574         gettext.h, localcharset.h, strdup.h, strndup.h, strtoul.c, time_r.h.
22575
22576         * lib/.cvsignore: Add alloca.h, fnmatch.h, poll.h, stdbool.h,
22577         sysexits.h.
22578
22579 2004-06-01  Jim Meyering  <jim@meyering.net>
22580
22581         * m4/calloc.m4: New file.
22582
22583 2004-05-31  Paul Eggert  <eggert@cs.ucla.edu>
22584
22585         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Detect _Bool bug in HP aC++/ANSI
22586         C B3910B A.05.55 [Dec 04 2003].  Problem reported by Jim Meyering.
22587         Also, fix a typo in a diagnostic.
22588
22589 2004-05-30  Paul Eggert  <eggert@cs.ucla.edu>
22590
22591         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Do not require AC_FUNC_MALLOC
22592         or AC_FUNC_REALLOC.
22593
22594 2004-05-30  Paul Eggert  <eggert@cs.ucla.edu>
22595
22596         * lib/xmalloc.c (HAVE_MALLOC, HAVE_REALLOC): Do not require these
22597         macros to be defined.
22598         (xnmalloc_inline, xnrealloc_inline, xcalloc): Do not die if
22599         the allocator returns NULL because the requested size is zero.
22600
22601 2004-05-20  Paul Eggert  <eggert@cs.ucla.edu>
22602
22603         * lib/malloc/obstack.c (_obstack) [defined _LIBC]: Bring back this
22604         var.  Add comment explaining why libc still defines it.  This
22605         merges the following patch from glibc:
22606         http://sources.redhat.com/ml/libc-alpha/2004-05/msg00157.html
22607
22608 2004-05-20  Andreas Schwab  <schwab@suse.de>
22609
22610         * m4/free.m4: Replace free if it not known to work, not the other
22611         way round.
22612
22613 2004-05-19  Paul Eggert  <eggert@cs.ucla.edu>
22614
22615         * lib/obstack.c (_obstack): Remove unused variable.  It hasn't been
22616         present in glibc since revision 1.1 of this file.
22617         * lib/obstack.h (_obstack_free, obstack_1grow, obstack_1grow_fast,
22618         obstack_alignment_mask, obstack_alloc, obstack_base,
22619         obstack_blank, obstack_blank_fast, obstack_chunk_size,
22620         obstack_copy, obstack_copy0, obstack_finish, obstack_grow,
22621         obstack_grow0, obstack_init, obstack_int_grow,
22622         obstack_int_grow_fast, obstack_make_room, obstack_memory_used,
22623         obstack_next_free, obstack_object_size, obstack_ptr_grow,
22624         obstack_ptr_grow_fast, obstack_room): Remove declarations of
22625         nonexistent functions.
22626
22627 2004-05-18  Karl Berry  <karl@gnu.org>
22628
22629         * config/srclist.txt: break link for vasnprintf.c.
22630
22631 2004-05-17  Paul Eggert  <eggert@cs.ucla.edu>
22632
22633         Port obstack to the AS/400, where pointers are 16 bytes wide and
22634         you cannot cast an integer to a valid pointer.  This patch is
22635         currently waiting to be integrated into glibc; see
22636         <http://sources.redhat.com/ml/libc-alpha/2004-05/msg00073.html>.
22637
22638         * lib/obstack.h (__PTR_TO_INT, __INT_TO_PTR): Remove.
22639         All uses of __INT_TO_PTR (PTR_TO_INT ...) replaced by __PTR_ALIGN.
22640         (__BPTR_ALIGN, __PTR_ALIGN): New macros.
22641         (struct obstack): temp member is now a union of a pointer and
22642         an integer, instead of an integer.  All integer uses changed.
22643         This does not affect the physical layout of struct obstack,
22644         except on hosts (like the AS/400) where the size or alignment of
22645         void * is greater than that of ptrdiff_t.
22646         (obstack_finish) [! (defined __GNUC__ && defined __STDC__ &&
22647         __STDC__)]: Store temporary in pointer member of union, not
22648         integer member.
22649         * lib/obstack.c: Include <stddef.h>, for offsetof.
22650         (struct fooalign): Remove; it doesn't need a name.
22651         (union fooround): Change double to long double, and add void *.
22652         (DEFAULT_ALIGNMENT): Use offsetof to compute.
22653         (DEFAULT_ALIGNMENT, DEFAULT_ROUNDING): Now an enum constant,
22654         not a macro.  Hence the values are always int; so remove all
22655         casts-to-int in uses.
22656
22657 2004-05-17  Paul Eggert  <eggert@cs.ucla.edu>
22658
22659         * config/srclist.txt: Break link for argp-help.c and argp-parse.c until
22660         we can get this patch merged into glibc.
22661
22662 2004-05-17  Derek R. Price  <derek@ximbiot.com>
22663             Paul Eggert  <eggert@cs.ucla.edu>
22664
22665         * m4/argp: Depend on alloca.
22666
22667 2004-05-17  Derek R. Price  <derek@ximbiot.com>
22668             Paul Eggert  <eggert@cs.ucla.edu>
22669
22670         * lib/argp-help.c, argp-parse.c: Assume <alloca.h> rather than
22671         freecoding.
22672
22673 2004-05-17  Bruno Haible  <bruno@clisp.org>
22674
22675         * lib/vasnprintf.c (VASNPRINTF): Correctly handle the case of a
22676         precision that consists of a '.' followed by an empty digit string.
22677         Patch by Tor Lillqvist <tml@iki.fi>.
22678
22679 2004-05-16  Paul Eggert  <eggert@cs.ucla.edu>
22680
22681         * m4/alloca.m4 (gl_FUNC_ALLOCA): Define HAVE_ALLOCA_H always,
22682         for backward compatibility with older code.  We need our own
22683         alloca.h if _AIX is defined.  Define HAVE_ALLOCA if we discover
22684         it under some other name, and our alloca.h will define it.
22685
22686 2004-05-16  Paul Eggert  <eggert@cs.ucla.edu>
22687             Derek Price  <derek@ximbiot.com>
22688
22689         * lib/alloca.c: Include <alloca.h>, to get our interface.
22690         * lib/alloca_.h: Use __alloca on AIX, so that we don't have to
22691         include <alloca.h> first.  Use C89 prototype for alloca; this
22692         requires including <stddef.h> for size_t.  Use extern "C" if C++.
22693         Use #elif for simplicity, since we can assume C89 now.
22694         Don't try to source the system alloca.h since it will not be found
22695         and to prevent recursively including its replacement.
22696         * lib/fnmatch.c: Include <alloca.h> instead of opencoding.
22697         * lib/regex.c: Likewise.
22698
22699 2004-05-16  Derek Price  <derek@ximbiot.com>
22700             Paul Eggert  <eggert@cs.ucla.edu>
22701
22702         getline cleanup.  This changes the getndelim2 API: both order of
22703         arguments, and meaning of delim2 (now uses EOF, not 0, to indicate
22704         no delimiter).
22705
22706         * lib/getline.c: Don't include stddef.h or stdio.h, since our
22707         interface does that.
22708         (getline): Always use getdelim, so that we don't have two
22709         copies of this code.
22710         * lib/getndelim2.c: Include <limits.h>, <inttypes.h>, <stdint.h>
22711         if available.
22712         (PTRDIFF_MAX, SIZE_MAX, SSIZE_MAX): Define if not defined.
22713         (GETNDELIM2_MAXIMUM): New macro.
22714         (getndelim2): Reorder arguments.  delim==EOF now means no delimiter,
22715         instead of the old practice of delim2==0.  All callers changed.
22716         Return -1 on overflow, instead of returning junk.
22717         Do not set *linesize unless allocation succeeds.
22718         * lib/getndelim2.h: Do not include stddef.h; no longer needed, now
22719         that we include sys/types.h.
22720         * lib/getnline.h: Likewise.
22721         * lib/getndelim2.h (GETNLINE_NO_LIMIT): New macro.
22722         (getndelim2): Reorder arguments.
22723         * lib/getnline.c (getnline, getndelim):
22724         Don't discard the NMAX argument.
22725         (getnline): Invoke getndelim, to avoid code duplication.
22726         * lib/getnline.h (GETNLINE_NO_LIMIT): New macro, used instead
22727         of (size_t) -1 by callers of the getnline family.
22728
22729 2004-05-13  Paul Eggert  <eggert@cs.ucla.edu>
22730
22731         * m4/gettime.m4 (gl_GETTIME): Require gl_TIMESPEC.
22732         Check for gettimeofday.
22733         * m4/settime.m4 (gl_SETTIME): Require gl_TIMESPEC.
22734         Check for settimeofday, stime.
22735
22736 2004-05-13  Paul Eggert  <eggert@cs.ucla.edu>
22737
22738         * lib/nanosleep.c (suspended): Change its type from int to
22739         sig_atomic_t volatile.
22740         (first_call): Make it private to rpl_nanosleep, and have it
22741         be zero initially as that's a bit faster.
22742         (my_usleep): Round up fractional times instead of truncating them,
22743         as this is the usual meaning for 'sleep'.
22744
22745         * lib/gettime.c (gettime): Fall back on `time' if `gettimeofday'
22746         doesn't work.
22747         * lib/settime.c: Include <unistd.h>, for stime (on Solaris 8, anyway).
22748         (ENOSYS): Define if not defined.
22749         (settime): Fall back on stime if it exists and settimeofday fails.
22750         But don't bother with fallbacks if a method fails with errno == EPERM.
22751
22752 2004-05-11  Jim Meyering  <jim@meyering.net>
22753
22754         Prior to this change, the save_cwd caller required read access to the
22755         current directory on most systems (ones with the fchdir function).
22756
22757         * lib/save-cwd.c (save_cwd) [HAVE_FCHDIR]: If opening `.' read-only
22758         fails, try write-only, and finally, resort to using xgetcwd.
22759
22760 2004-05-06  Paul Eggert  <eggert@cs.ucla.edu>
22761
22762         * lib/obstack.c, obstack.h: Import changes from libc.
22763
22764 2004-04-28  Bruno Haible  <bruno@clisp.org>
22765
22766         * lib/findprog.c (find_in_path): Treat Cygwin like Windows, since it
22767         also implicitly appends .exe to executables.
22768         * lib/localcharset.c (ISSLASH): Treat Cygwin like Windows, since it now
22769         accepts Windows pathnames.
22770         * lib/pathname.h (ISSLASH, IS_PATH_WITH_DIR, FILESYSTEM_PREFIX_LEN):
22771         Treat Cygwin like Windows, since it now accepts Windows pathnames.
22772         * lib/progreloc.c (ISSLASH, IS_PATH_WITH_DIR, FILESYSTEM_PREFIX_LEN):
22773         Treat Cygwin like Windows, since it now accepts Windows pathnames.
22774         Reported by Derek Robert Price <derek@ximbiot.com>.
22775
22776 2004-04-21  Karl Berry  <karl@gnu.org>
22777
22778         * config/srclist.txt (localcharset.c): break sync.
22779
22780 2004-04-20  Paul Eggert  <eggert@twinsun.com>
22781
22782         * m4/host-os.m4: Add a copyright notice.
22783
22784 2004-04-20  Jim Meyering  <jim@meyering.net>
22785
22786         Change UTILS_ to gl_ in AC_DEFINE'd names.
22787         Change utils_- and jm_-prefixed variables, too.
22788         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Renamed from
22789         UTILS_FUNC_MKDIR_TRAILING_SLASH.
22790         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Renamed from UTILS_FUNC_MKSTEP.
22791
22792         * m4/dirfd.m4 (gl_FUNC_DIRFD): Rename from UTILS_FUNC_DIRFD.
22793         Don't emit trailing blanks.
22794         Also rename jm_-prefixed variables to have gl_ prefix.
22795
22796         * m4/host-os.m4 (gl_HOST_OS): Rename from UTILS_HOST_OS.
22797         Also rename jm_-prefixed variables to have gl_ prefix.
22798
22799         * m4/jm-macros.m4: Reflect the renamings.
22800         * m4/prereq.m4: Likewise.
22801
22802 2004-04-20  Jim Meyering  <jim@meyering.net>
22803
22804         * lib/getndelim2.c (getndelim2): Upon realloc failure, don't leak
22805         memory.
22806
22807 2004-04-20  Jim Meyering  <jim@meyering.net>
22808             Bruno Haible  <bruno@clisp.org>
22809
22810         * lib/localcharset.c (get_charset_aliases) [!VMS && !WIN32]: Don't leak
22811         memory when realloc fails.
22812
22813 2004-04-19  Jim Meyering  <jim@meyering.net>
22814
22815         * m4/readutmp.m4 (gl_PREREQ_READUTMP): Require gl_FUNC_FREE,
22816         now that readutmp.c may call `free (0)'.
22817
22818 2004-04-19  Bruno Haible  <bruno@clisp.org>
22819
22820         * m4/mbrtowc.m4: Change jm_ to gl_ in cache variables as well.
22821         * m4/inttypes_h.m4: Likewise.
22822         * m4/stdint_h.m4: Likewise.
22823         * m4/intmax_t.m4: Likewise.
22824         * m4/uintmax_t.m4: Likewise.
22825
22826 2004-04-18  Jim Meyering  <jim@meyering.net>
22827
22828         * m4/prereq.m4: Don't forbid jm_ prefix.
22829
22830         * m4/afs.m4, m4/allocsa.m4, m4/assert.m4, m4/backupfile.m4:
22831         * m4/bison.m4, m4/check-decl.m4, m4/chown.m4, m4/d-ino.m4:
22832         * m4/d-type.m4, m4/dirname.m4, m4/dos.m4, m4/error.m4, m4/fpending.m4:
22833         * m4/fstypename.m4, m4/fsusage.m4, m4/ftruncate.m4, m4/getdate.m4:
22834         * m4/getgroups.m4, m4/gettext.m4, m4/glibc21.m4, m4/group-member.m4:
22835         * m4/human.m4, m4/intmax.m4, m4/intmax_t.m4, m4/inttostr.m4:
22836         * m4/inttypes.m4, m4/inttypes_h.m4, m4/jm-macros.m4, m4/jm-winsz1.m4:
22837         * m4/jm-winsz2.m4, m4/lchown.m4, m4/lib-check.m4, m4/link-follow.m4:
22838         * m4/localcharset.m4, m4/longlong.m4, m4/ls-mntd-fs.m4, m4/lstat.m4:
22839         * m4/makepath.m4, m4/mbrtowc.m4, m4/mbswidth.m4, m4/memchr.m4:
22840         * m4/memcmp.m4, m4/mkdtemp.m4, m4/mkstemp.m4, m4/mountlist.m4:
22841         * m4/nanosleep.m4, m4/path-concat.m4, m4/perl.m4, m4/prereq.m4:
22842         * m4/putenv.m4, m4/quotearg.m4, m4/regex.m4, m4/stat.m4:
22843         * m4/stdint_h.m4, m4/strftime.m4, m4/strtoimax.m4, m4/strtoll.m4:
22844         * m4/strtoull.m4, m4/strtoumax.m4, m4/timespec.m4, m4/uintmax_t.m4:
22845         * m4/ulonglong.m4, m4/unlink-busy.m4, m4/unlocked-io.m4, m4/uptime.m4,
22846         * m4/utimbuf.m4, m4/utime.m4, m4/utimes-null.m4, m4/vasnprintf.m4:
22847         * m4/xstrtoimax.m4, m4/xstrtol.m4, m4/xstrtoumax.m4:
22848         Change jm_ to gl_ in AC_DEFINE'd names. Update all uses.
22849
22850 2004-04-18  Jim Meyering  <jim@meyering.net>
22851
22852         * lib/readutmp.c (read_utmp) [UTMP_NAME_FUNCTION]: Upon realloc
22853         failure, don't leak memory and do call END_UTMP_ENT.
22854
22855 2004-04-16  Jim Meyering  <jim@meyering.net>
22856
22857         * m4/prereq.m4 (jm_PREREQ_STAT): Remove macro.  It is specific to
22858         coreutils' stat program.
22859         (gl_PREREQ): Don't require jm_PREREQ_STAT.
22860
22861 2004-04-11  Paul Eggert  <eggert@twinsun.com>
22862
22863         * lib/inttostr.h: Include <limits.h> unconditionally, since we assume
22864         C89.
22865         (CHAR_BIT): Remove, since we assume C89.
22866         Include <stdint.h> if available, as per current Autoconf CVS advice.
22867
22868 2004-03-31  Jim Meyering  <jim@meyering.net>
22869
22870         * m4/prereq.m4: Require AC_FUNC_MALLOC, not jm_FUNC_MALLOC.
22871         Require AC_FUNC_REALLOC, not jm_FUNC_REALLOC.
22872         * m4/xalloc.m4: Likewise.
22873
22874 2004-03-30  Paul Eggert  <eggert@twinsun.com>
22875
22876         Merge from coreutils.
22877
22878         * m4/inttostr.m4: New file.
22879         * m4/getdate.m4 (gl_GETDATE): Remove time-related stuff.
22880         Require AM_STDBOOL_H and gl_TIMESPEC instead.
22881         Require gl_CLOCK_TIME.
22882         * m4/clock_time.m4 (gl_CLOCK_TIME): Require AC_GNU_SOURCE.
22883
22884 2004-03-30  Paul Eggert  <eggert@twinsun.com>
22885
22886         * lib/cloexec.h, cloexec.c (set_cloexec_flag): Return int
22887         not bool, to be more consistent with Unix conventions.
22888         Suggested by Bruno Haible.
22889
22890         Merge from coreutils.
22891
22892         * lib/imaxtostr.c, lib/inttostr.c, lib/inttostr.h, lib/offtostr.c:
22893         * lib/umaxtostr.c: New files.
22894
22895         * lib/getdate.h: Include stdbool.h, and timespec.h instead of
22896         the usual <time.h> dance.
22897         (get_date): Change signature to support fractional time stamps.
22898         All callers changed.
22899         * lib/getdate.y: Include "getdate.h" first, as we can now
22900         assume C89 and don't need to worry about 'const'.
22901         Similarly, include "unlocked-io.h" near start, not in middle.
22902         Include <limits.h>.
22903         (textint.value): Use long int rather than int.
22904         (textint.digits): Use size_t rather than int.
22905         (BILLION, LOG10_BILLION): New constants.
22906         (parser_control): New member rel_ns.  Members day_ordinal,
22907         time_zone, month, day, hour, minutes, rel_year, rel_month,
22908         rel_day, rel_hour, rel_minutes, rel_seconds
22909         are now long int, not int.  Member seconds is now struct timespec,
22910         not int.  New member timespec_seen.  Members dates_seen, days_seen,
22911         local_zones_seen, rels_seen, times_seen, zones_seen are now size_t,
22912         not int.
22913         (%union.intval): Now long int, not int.
22914         New member timespec.
22915         (tSDECIMAL_NUMBER, tUDECIMAL_NUMBER): New tokens.
22916         (seconds, signed_seconds, unsigned_seconds): New nonterminals.
22917         (spec): Now is a timespec or an item list.
22918         (timespec, items): New nonterminals.
22919         (time, rel, relunit, number, get_date):
22920         Add support for fractional seconds.
22921         (time): Fix bug: seconds weren't cleared in "00:00 +0000" syntax.
22922         (gmtime, localtime, mktime): Remove decls; not needed with C89.
22923         (to_hour): First arg is now long int, not int.
22924         (to_year): Returns long int, not int.
22925         Don't treat year -70 like 70.
22926         (tm_diff): Returns long int, not int.
22927         (lookup_word): Use bool instead of int when appropriate.
22928         (yylex): Use size_t for count, not int.
22929         Detect overflow when parsing large integer constants.
22930         Add support for fractions.
22931         (get_date): Make pointers 'const' if possible.
22932         Use more-portable code to detect integer overflow.
22933         (main) [TEST]: Adjust to above changes.  Test for localtime failure.
22934         Don't use ctime; it's not reliable if the year has >4 digits.
22935
22936         * lib/human.c (humblock): Inspect BLOCKSIZE if BLOCK_SIZE isn't set.
22937         This is for compatibility with BSD.
22938
22939         * lib/timespec.h (ST_TIME_CMP_NS, ST_TIME_CMP): Define.
22940         (ATIME_CMP, CTIME_CMP, MTIME_CMP, TIMESPEC_NS): Likewise.
22941         From coreutils' system.h.
22942
22943         * lib/userspec.c: Don't include "posixver.h".
22944         (parse_user_spec): Fall back on USER.GROUP parsing, regardless
22945         of POSIX version, as POSIX 1003.1-2001 allows that behavior as a
22946         compatible extension.  Simplify code by removing a boolean int
22947         that was always nonzero if a string was nonnull.
22948
22949 2004-03-30  Jim Meyering  <jim@meyering.net>
22950
22951         Merge from coreutils.
22952
22953         Avoid a configure-time warning about sys/ucred.h on OSF V4.0.
22954         * m4/ls-mntd-fs.m4: Test for sys/ucred.h separately, since
22955         on some systems one must include <grp.h> before it.
22956         Reported by Christian Krackowizer.
22957
22958 2004-03-30  Jim Meyering  <jim@meyering.net>
22959
22960         Merge from coreutils.
22961
22962         * lib/mountlist.c [HAVE_SYS_UCRED_H]: Include grp.h before sys/ucred.h.
22963
22964         * lib/readtokens.c (readtoken): Don't leak 64 bytes when reading
22965         an empty input stream.
22966
22967         * lib/readtokens.c: Include <stdbool.h>.
22968         (readtoken): Use `size_t' rather than int/long.
22969         All callers adjusted.
22970         Use `bool' rather than `int' where appropriate.
22971         Use memset rather than an explicit loop.
22972         Use x2nrealloc rather than xrealloc.
22973         Allow the use of `\0' as a delimiter.
22974         (readtokens): Likewise.
22975         * lib/readtokens.h (readtoken, readtokens): Update prototypes.
22976
22977 2004-03-30  Jim Meyering  <jim@meyering.net>
22978
22979         * m4/realloc.m4: Remove file, since now it does no more than
22980         AC_REQUIRE([AC_FUNC_REALLOC]), and that can be done via
22981         the `configure.ac' section of module/realloc.
22982         * m4/malloc.m4: Likewise, but for AC_FUNC_MALLOC.
22983
22984 2004-03-30  Bruno Haible  <bruno@clisp.org>
22985
22986         * lib/getloadavg.c (getloadavg): Don't assume setlocale returns
22987         nonnull.
22988
22989 2004-03-29  Paul Eggert  <eggert@twinsun.com>
22990
22991         Merge changes to getloadavg.c from coreutils and Emacs.
22992
22993         * lib/getloadavg.c [!defined HAVE_SETLOCALE] (setlocale):
22994         Define to an expression, not to the empty string.
22995         Include cloexec.h and xalloc.h.
22996         (getloadavg): Restore LC_NUMERIC locale after setting it temporarily.
22997         Use set_cloexec_flag rather than rolling our own.
22998         * lib/cloexec.c, lib/cloexec.h: New files.
22999
23000 2004-03-29  Paul Eggert  <eggert@twinsun.com>
23001
23002         * m4/cloexec.m4: New file.
23003
23004 2004-03-18  Paul Eggert  <eggert@twinsun.com>
23005
23006         * lib/getopt.h: Sync with libc CVS.
23007
23008 2004-03-18  Paul Eggert  <eggert@twinsun.com>
23009             Bruno Haible  <bruno@clisp.org>
23010
23011         * m4/mbswidth.m4 (gl_MBSWIDTH): Also test whether <wchar.h> declares
23012         mbswidth.
23013
23014 2004-03-18  Paul Eggert  <eggert@twinsun.com>
23015             Bruno Haible  <bruno@clisp.org>
23016
23017         * lib/mbswidth.h: Include <wchar.h> only if
23018         HAVE_DECL_MBSWIDTH_IN_WCHAR_H, not on all platforms that have
23019         <wchar.h>.
23020         * lib/mbswidth.c: Include <stdio.h> and <time.h> before <wchar.h>.
23021
23022 2004-03-09  Paul Eggert  <eggert@twinsun.com>
23023
23024         * lib/argp-parse.c, getopt.c, getopt.h, getopt1.c:
23025         Sync with libc CVS.
23026         * lib/getopt_int.h: New file, also synced from libc.
23027
23028 2004-03-09  Paul Eggert  <eggert@twinsun.com>
23029
23030         * config/srclistvars.sh: Add GNUWWWLICENSES for eggert.
23031         * config/srclist.txt: Sync getopt with libc.  Add getopt_int.h.
23032         Bring back getopt.c, getopt.h, getopt1.c.
23033
23034 2004-03-07  Paul Eggert  <eggert@twinsun.com>
23035
23036         * m4/c-stack.m4 (gl_PREREQ_C_STACK): Renamed from jm_PREREQ_C_STACK.
23037         All uses changed.  Check for sa_sigaction member; this fixes
23038         a bug first reported by Jason Andrade in
23039         <http://mail.gnu.org/archive/html/bug-textutils/2003-03/msg00027.html>.
23040
23041 2004-03-07  Paul Eggert  <eggert@twinsun.com>
23042
23043         * lib/c-stack.c (SIGACTION_WORKS): New macro.  Use it instead of long
23044         '#if' expressions.  Unlike the code it replaces, it does not
23045         depend on (defined _SC_PAGESIZE).  However, it does depend on
23046         HAVE_STRUCT_SIGACTION_SA_SIGACTION; this last change fixes a bug
23047         first reported by Jason Andrade in
23048         <http://mail.gnu.org/archive/html/bug-textutils/2003-03/msg00027.html>.
23049
23050 2004-02-25  Simon Josefsson  <jas@extundo.com>
23051
23052         * m4/strdup.m4 (gl_PREREQ_STRDUP): Check whether strdup is declared.
23053
23054 2004-02-25  Simon Josefsson  <jas@extundo.com>
23055
23056         * lib/strdup.h: New file.
23057         * lib/strdup.c: Include it.
23058         * lib/path-concat.c: Include strdup.h. Drop strdup declaration.
23059         * lib/userspec.c: Include strdup.h. Drop strdup declaration.
23060
23061 2004-02-23  Karl Berry  <karl@gnu.org>
23062
23063         * doc/maintain.texi, doc/standards.texi, doc/make-stds.texi: new files
23064         (from fencepost.gnu.org:/gd/gnuorg).
23065
23066 2004-02-23  Karl Berry  <karl@gnu.org>
23067
23068         * config/srclistvars.sh (GNUORG) [karl]: redefine.
23069         * config/srclist.txt: add maintain/standards documents.
23070
23071 2004-02-18  Bruno Haible  <bruno@clisp.org>
23072
23073         * m4/xsize.m4 (gl_XSIZE): Require AC_C_INLINE.
23074         Reported by Derek Robert Price <derek@ximbiot.com>.
23075
23076 2004-02-16  Karl Berry  <karl@gnu.org>
23077
23078         * config/mkinstalldirs, install-sh: update from automake.
23079
23080 2004-02-06  Karl Berry  <karl@gnu.org>
23081
23082         * m4/po.m4: update from gettext 0.14.1.
23083
23084 2004-02-06  Karl Berry  <karl@gnu.org>
23085
23086         * lib/config.charset: update from gettext 0.14.1.
23087
23088 2004-02-05  Paul Eggert  <eggert@twinsun.com>
23089
23090         Add comments and code, prompted by suggestions from Bruno Haible
23091         for sh-quote.
23092         * lib/quotearg.h (quotearg_alloc): New decl.  Improve the comments
23093         describing the enum quoting_style values.
23094         * lib/quotearg.c (quotearg_alloc): New function.
23095         (quotearg_buffer_restyled): Treat lone { and } as special.
23096         Treat = as special.  Work around bug with older shells
23097         that "see" a '\' that is really the 2nd byte of a multibyte char.
23098         Quote empty string with shell_quoting_style.
23099
23100 2004-02-03  Bruno Haible  <bruno@clisp.org>
23101
23102         * m4/pipe.m4: New file, from GNU gettext.
23103
23104 2004-02-03  Bruno Haible  <bruno@clisp.org>
23105
23106         * lib/pipe.h: New file, from GNU gettext.
23107         * lib/pipe.c: New file, from GNU gettext.
23108
23109 2004-01-27  Bruno Haible  <bruno@clisp.org>
23110
23111         * m4/execute.m4: New file, from GNU gettext.
23112
23113 2004-01-27  Bruno Haible  <bruno@clisp.org>
23114
23115         * lib/execute.h: New file, from GNU gettext.
23116         * lib/execute.c: New file, from GNU gettext.
23117         * lib/w32spawn.h: New file, from GNU gettext.
23118
23119 2004-01-24  Paul Eggert  <eggert@twinsun.com>
23120
23121         Merge from diffutils.
23122
23123         * lib/file-type.c (file_type): Add typed memory objects.
23124         * lib/file-type.h (S_TYPEISTMO): New macro.
23125
23126         * lib/c-stack.h (c_stack_action): Remove argv argument.
23127         * lib/c-stack.c (c_stack_action): Likewise.  All uses changed.
23128         (die): Don't calculate message unless segv_action returns.
23129         (get_stack_location, min_address_from_argv, max_address_from_argv,
23130         volatile stack_base, volatile_stack_size): Remove.
23131         (segv_handler): If ! HAVE_XSI_STACK_OVERFLOW_HEURISTIC, assume
23132         that every segmentation violation is a stack overflow.  (Ouch!)
23133         See Debian bug 136249 (still outstanding) for more info about why
23134         HAVE_XSI_STACK_OVERFLOW_HEURISTIC fails on Linux kernels.
23135
23136 2004-01-24  Paul Eggert  <eggert@twinsun.com>
23137
23138         Exit-status fix from coreutils.
23139
23140         Use exit_failure consistently in place of EXIT_FAILURE,
23141         so that program exit statuses are consistent on failure.
23142
23143         * lib/argmatch.c (ARGMATCH_DIE) [! defined ARGMATCH_DIE]:
23144         Include "exitfail.h", and use exit_failure rather than EXIT_FAILURE.
23145         * lib/argmatch.h: Comment fix to match the above.
23146         * lib/obstack.c (obstack_exit_failure) [!defined _LIBC]:
23147         Now a macro referring to exit_failure, instead of a separate
23148         variable.  Include "exitfail.h" to get it.
23149         * lib/xstrtol.h: Include "exitfail.h".
23150         (STRTOL_FATAL_ERROR): Exit with status exit_failure, not 2.
23151
23152         * lib/long-options.c (parse_long_options): Use prototype
23153         for usage function arg.  Pass it EXIT_SUCCESS rather than 0,
23154         for clarity.
23155
23156 2004-01-21  Jim Meyering  <jim@meyering.net>
23157
23158         * lib/mktime.c (__mktime_internal) [!_LIBC]: Define to mktime_internal
23159         so as not to conflict with a different-sized __mktime_internal
23160         function in GNU libc.
23161         * lib/timegm.c (__mktime_internal) [!_LIBC]: Likewise.
23162         Problem building statically-linked `ls' reported by Michael Brunnbauer.
23163
23164 2004-01-20  Karl Berry  <karl@gnu.org>
23165
23166         * config/config.guess: update from config.
23167
23168         * config/srclistvars.sh: GNUWWWLICENSES for karl.
23169
23170 2004-01-20  Bruno Haible  <bruno@clisp.org>
23171
23172         Safer stack allocation.
23173         * lib/setenv.c: Include allocsa.h.
23174         (alloca): Remove fallback definition.
23175         (freea): Remove macro.
23176         (__add_to_environ) [!_LIBC]: Use allocsa instead of alloca. Use freesa
23177         instead of freea.
23178
23179 2004-01-20  Bruno Haible  <bruno@clisp.org>
23180
23181         * m4/eealloc.m4: New file, from GNU gettext.
23182
23183 2004-01-20  Bruno Haible  <bruno@clisp.org>
23184
23185         * m4/allocsa.m4: New file, from GNU gettext.
23186
23187 2004-01-20  Bruno Haible  <bruno@clisp.org>
23188
23189         * lib/xallocsa.h: New file, from GNU gettext.
23190         * lib/xallocsa.c: New file, from GNU gettext.
23191
23192 2004-01-20  Bruno Haible  <bruno@clisp.org>
23193
23194         * lib/wait-process.c: On Windows, include windows.h. Needed on mingw.
23195
23196 2004-01-20  Bruno Haible  <bruno@clisp.org>
23197
23198         * lib/wait-process.c (wait_subprocess): Add ignore_sigpipe argument.
23199         * lib/wait-process.c (wait_subprocess): Likewise. Handle SIGPIPE
23200         specially.
23201
23202 2004-01-20  Bruno Haible  <bruno@clisp.org>
23203
23204         * lib/wait-process.c (wait_process): Disable the 2003-10-31 waitid()
23205         patch.
23206
23207 2004-01-20  Bruno Haible  <bruno@clisp.org>
23208
23209         * lib/wait-process.c (cleanup_slaves): Use ANSI C declaration.
23210
23211 2004-01-20  Bruno Haible  <bruno@clisp.org>
23212
23213         * lib/eealloc.h: New file.
23214
23215 2004-01-20  Bruno Haible  <bruno@clisp.org>
23216
23217         * lib/binary-io.h: Avoid warnings on Cygwin.
23218
23219 2004-01-20  Bruno Haible  <bruno@clisp.org>
23220
23221         * lib/allocsa.h: New file, from GNU gettext.
23222         * lib/allocsa.c: New file, from GNU gettext.
23223
23224 2004-01-18  Karl Berry  <karl@gnu.org>
23225
23226         * doc/gpl.texi, doc/lgpl.texi: new files.
23227
23228 2004-01-18  Karl Berry  <karl@gnu.org>
23229
23230         * config/srclistvars.sh (GNUWWWLICENSES): new variable.
23231         * config/srclist.txt ({fdl,gpl,lgpl}.text): get from there.
23232
23233 2004-01-15  Paul Eggert  <eggert@twinsun.com>
23234
23235         Merge from coreutils.
23236
23237         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Check for uintptr_t.
23238         * m4/posixver.m4 (gl_POSIXVER): Require gl_DEFAULT_POSIX2_VERSION.
23239         (gl_DEFAULT_POSIX2_VERSION): Move
23240         the documentation from 'configure' into 'config.hin',
23241         so that 'configure --help' isn't burdened by it and
23242         we don't have to worry about its formatting there.
23243         Reword the documentation so that it's more succinct
23244         and can be run together into a single paragraph.
23245         * m4/same.m4 (gl_SAME): Check for pathconf.
23246
23247 2004-01-15  Paul Eggert  <eggert@twinsun.com>
23248
23249         Merge from coreutils.
23250
23251         * lib/posixver.c: Include posixver.h.
23252
23253         * lib/same.c: Include <stdbool.h>, <limits.h>.
23254         (_POSIX_NAME_MAX): Define if not defined.
23255         (MIN): New macro.
23256         (same_name): If file names are silently truncated, report
23257         that the file names are the same if they are the same after
23258         the silent truncation.
23259
23260         * lib/xstrtod.h (xstrtod): Accept an extra arg, specifying the
23261         conversion function.
23262         * lib/xstrtod.c (xstrtod): Likewise.  All callers changed to
23263         include c-strtod.h and use c_strtod.  Don't include stdlib.h; no
23264         longer needed.
23265
23266 2004-01-15  Jim Meyering  <jim@meyering.net>
23267
23268         Merge from coreutils.
23269
23270         * m4/clock_time.m4 (gl_CLOCK_TIME): Don't set LIB_CLOCK_GETTIME
23271         if no library is required.
23272         * m4/jm-macros.m4: Don't require UTILS_SYS_OPEN_MAX.
23273         * m4/jm-macros.m4 (jm_MACROS): Require gl_FUNC_FREE.
23274         * m4/jm-macros.m4 (jm_MACROS): Require autoconf-2.58.
23275         (AC_LANG_SOURCE): Remove definition, now that we require autoconf-2.58.
23276         * m4/jm-macros.m4 (jm_MACROS): Don't require AC_FUNC_FTW.
23277         * m4/lib-check.m4 (jm_LIB_CHECK): Do not set LIB_CRYPT to the
23278         value, $ac_cv_search_crypt, if it's "none required".
23279         * m4/posixver.m4 (gl_DEFAULT_POSIX2_VERSION): New macro.
23280         * m4/prereq.m4 (jm_PREREQ): Require AC_FUNC_GETLOADAVG,
23281         not gl_FUNC_GETLOADAVG.
23282         * m4/prereq.m4 (jm_PREREQ): Require gl_READTOKENS, gl_MD5, gl_MAKEPATH,
23283         gl_LONG_OPTIONS, and gl_IDCACHE, gl_GETUGROUPS.
23284
23285 2004-01-15  Jim Meyering  <jim@meyering.net>
23286
23287         Merge from coreutils.
23288
23289         * lib/md5.h (rol) [__GNUC__ && __i386__]: Don't use `asm' code.  These
23290         days, gcc-3.x does better all by itself.  Patch from Dean Gaudet:
23291         http://mail.gnu.org/archive/html/bug-coreutils/2003-11/msg00144.html
23292
23293         * lib/posixver.c (DEFAULT_POSIX2_VERSION): Use definition of new,
23294         optional configure-time default.
23295
23296         * lib/version-etc.c (version_etc_copyright): Update copyright date.
23297
23298         * lib/xreadlink.c (xreadlink): Correct outdated comment.
23299
23300 2004-01-15  Alexandre Duret-Lutz  <adl@gnu.org>
23301
23302         Merge from coreutils.
23303
23304         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Do not set LIB_NANOSLEEP to the
23305         value, $ac_cv_search_nanosleep, if it's "none required".
23306
23307 2004-01-14  Paul Eggert  <eggert@twinsun.com>
23308
23309         * lib/fnmatch_loop.c (ALLOCA_LIMIT): Remove macro, which collided
23310         with like-named macro in fnmatch.c.
23311         (EXT): Use an internal constant instead.
23312
23313         Merge fnmatch patches from glibc.
23314         * lib/fnmatch.c (mbsinit): Remove define.
23315         Add libc_hidden_ver (__fnmatch, fnmatch).
23316         * lib/fnmatch_loop.c (FCT): Cast to int32_t and UCHAR when appropriate.
23317         Adjust to renaming of collseq_table_lookup to __collseq_table_lookup.
23318
23319 2004-01-14  Karl Berry  <karl@gnu.org>
23320
23321         * config/install-sh: update from automake.
23322
23323 2004-01-13  Karl Berry  <karl@gnu.org>
23324
23325         * config/install-sh: update from automake.
23326
23327 2004-01-09  Karl Berry  <karl@gnu.org>
23328
23329         * config/install-sh: update from automake.
23330
23331 2004-01-05  Karl Berry  <karl@gnu.org>
23332
23333         * config/config.{sub,guess}: update from config.
23334
23335 2003-12-31  Karl Berry  <karl@gnu.org>
23336
23337         * config/depcomp: update from automake.
23338
23339 2003-12-14  Karl Berry  <karl@gnu.org>
23340
23341         * lib/config.charset: update from gettext-runtime.
23342
23343 2003-12-03  Paul Eggert  <eggert@twinsun.com>
23344
23345         * lib/getgroups.c (getgroups): xmalloc takes one argument, not two.
23346         Bug reported by Alfred M. Szmidt.
23347
23348 2003-12-03  Bruno Haible  <bruno@clisp.org>
23349
23350         * m4/gettext.m4: Upgrade from gettext-0.13.
23351         * m4/po.m4: Upgrade from gettext-0.13.
23352         * m4/size_max.m4 (gl_SIZE_MAX): Don't use the _ONCE macros here.
23353         * m4/intmax.m4: New file, from gettext-0.13.
23354         * m4/printf-posix.m4: New file, from gettext-0.13.
23355
23356 2003-11-29  Karl Berry  <karl@gnu.org>
23357
23358         * lib/argp-{help.c,parse.c,namefrob.h}, argp.h: update from libc.
23359
23360 2003-11-25  Paul Eggert  <eggert@twinsun.com>
23361             Bruno Haible  <bruno@clisp.org>
23362
23363         * lib/printf-parse.h: Don't include sys/types.h.
23364         (ARG_NONE): New macro.
23365         (char_directive): Change type of *arg_index fields to size_t.
23366         * lib/printf-parse.c: Don't include sys/types.h.
23367         (SSIZE_MAX): Remove macro.
23368         (PRINTF_PARSE): Change the type of the arg_index variables to size_t.
23369         Remove unnecessary overflow check.
23370         * lib/vasnprintf.c (VASNPRINTF): Update for type change of *arg_index
23371         fields.
23372
23373 2003-11-25  Bruno Haible  <bruno@clisp.org>
23374
23375         * modules/vasnprintf (Files): Remove m4/ssize_t.m4.
23376
23377 2003-11-25  Bruno Haible  <bruno@clisp.org>
23378
23379         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_PARSE): Don't require
23380         gt_TYPE_SSIZE_T.
23381
23382 2003-11-24  Paul Eggert  <eggert@twinsun.com>
23383
23384         * modules/alloca: Remove dependency on xalloc.
23385
23386 2003-11-24  Paul Eggert  <eggert@twinsun.com>
23387
23388         * lib/alloca.c: Remove dependency on xalloc module.
23389         (xalloc_die): Remove.
23390         (memory_full) [!defined emacs]: New macro.
23391         [!defined emacs]: Don't include xalloc.h.
23392         (alloca): Invoke memory_full, not xalloc_die, if malloc fails or
23393         address arithmetic overflows.  Change datatypes a bit to avoid
23394         unnecessary casts.
23395
23396 2003-11-22  Jim Meyering  <jim@meyering.net>
23397
23398         * lib/xmalloc.c (x2nrealloc_inline): Fix typos in comments:
23399         s/size/size_t/.
23400
23401 2003-11-21  Karl Berry  <karl@gnu.org>
23402
23403         * config/config.{sub,guess}: update from config.
23404
23405 2003-11-18  Karl Berry  <karl@gnu.org>
23406
23407         * config/config.{sub,guess}: update from config.
23408
23409         * config/(printf-{parse,args}.[ch]): sync broken, sigh.
23410
23411 2003-11-17  Paul Eggert  <eggert@twinsun.com>
23412
23413         * README: Mention that S+T cannot overflow if S is the size of
23414         an existing object and T is sufficiently small.
23415
23416 2003-11-17  Jim Meyering  <jim@meyering.net>
23417
23418         On systems without utime and without a utimes function capable of
23419         dealing with a NULL struct utimbuf* argument, this utime replacement
23420         could -- in unusual circumstances -- leak a file descriptor.
23421         * lib/utime.c: Include <unistd.h> and <errno.h>.
23422         (utime_null): Be sure to close `fd' and to preserve errno.
23423         Reported by Geoff Collyer via Arnold Robbins.
23424
23425 2003-11-17  Bruno Haible  <bruno@clisp.org>
23426
23427         * modules/vasnprintf (Files): Add m4/ssize_t.m4.
23428         (Depends-on): Add xsize.
23429
23430 2003-11-17  Bruno Haible  <bruno@clisp.org>
23431
23432         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_PARSE): Require gt_TYPE_SSIZE_T.
23433
23434 2003-11-17  Bruno Haible  <bruno@clisp.org>
23435
23436         * lib/vasnprintf.c (alloca): Remove fallback definition.
23437         (freea): Remove definition.
23438         (VASNPRINTF): Use alloca only for small sizes, say <= 4000 bytes.
23439         Reported by Paul Eggert.
23440
23441 2003-11-16  Paul Eggert  <eggert@twinsun.com>
23442             Bruno Haible  <bruno@clisp.org>
23443
23444         Protect against address arithmetic overflow.
23445         * lib/printf-args.h: Include stddef.h.
23446         (arguments): Change type of field 'count' to size_t.
23447         * lib/printf-args.c (printf_fetchargs): Use size_t instead of
23448         'unsigned int' where appropriate.
23449         * lib/printf-parse.h: Include sys/types.h.
23450         (char_directive): Change type of *arg_index fields to ssize_t.
23451         (char_directives): Change type of fields 'count', max_*_length to
23452         size_t.
23453         * lib/printf-parse.c: Include sys/types.h and xsize.h.
23454         (SSIZE_MAX): Define fallback value.
23455         (PRINTF_PARSE): Use size_t instead of 'unsigned int' and ssize_t
23456         instead of 'int' where appropriate. Check a_allocated, d_allocated
23457         against overflow. Reject %m$ argument numbers > SSIZE_MAX + 1.
23458         * lib/vasnprintf.c: Include xsize.h.
23459         (VASNPRINTF): Use size_t instead of 'unsigned int' where appropriate.
23460         Check alloca, malloc, realloc, ENSURE_ALLOCATION arguments against
23461         overflow. Avoid wraparound when converting a width or precision from
23462         decimal to binary.
23463
23464 2003-11-16  Bruno Haible  <bruno@clisp.org>
23465
23466         Update from GNU gettext.
23467         * lib/printf-parse.c: Generalize to it can be compiled for wide
23468         strings.
23469         (PRINTF_PARSE, CHAR_T, DIRECTIVE, DIRECTIVES): New macros.
23470         * lib/vasnprintf.c: Generalize to it can be compiled for wide strings.
23471         (VASNPRINTF, CHAR_T, DIRECTIVE, DIRECTIVES, PRINTF_PARSE, USE_SNPRINTF,
23472         SNPRINTF): New macros.
23473         Don't include <alloca.h> if the file is used inside libintl.
23474         (local_wcslen): New function, for Solaris 2.5.1.
23475         (VASNPRINTF): Use it instead of wcslen.
23476
23477 2003-11-16  Bruno Haible  <bruno@clisp.org>
23478
23479         * lib/xsize.h (xmax): New function.
23480         (xsum, xsum3, xsum4): Declare as "pure" functions.
23481
23482 2003-11-12  Paul Eggert  <eggert@twinsun.com>
23483
23484         * modules/xalloc (Files): Undo latest change, since xalloc.h
23485         no longer needs SIZE_MAX or PTRDIFF_MAX.
23486
23487 2003-11-12  Paul Eggert  <eggert@twinsun.com>
23488
23489         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Do not require gl_SIZE_MAX or
23490         gl_PTRDIFF_MAX.
23491
23492 2003-11-12  Paul Eggert  <eggert@twinsun.com>
23493
23494         * lib/xstrtol.c (__xstrtol): Remove "break" immediately after
23495         "return", to pacify some unknown compiler.  Problem reported
23496         by Joerg Schilling.
23497
23498 2003-11-12  Paul Eggert  <eggert@twinsun.com>
23499
23500         * lib/xalloc.h: Do not include <limits.h> or <stdint.h>.
23501         (xalloc_oversized): Use sizeof (ptrdiff_t) and sizeof (size_t) for
23502         the heuristic, rather than PTRDIFF_MAX and SIZE_MAX.  This
23503         heuristic is just as accurate as far as we know, and it removes a
23504         dependency on size_max.m4 and ptrdiff_max.m4.
23505
23506 2003-11-11  Bruno Haible  <bruno@clisp.org>
23507
23508         * modules/xsize (Files): Add m4/size_max.m4.
23509         * modules/xalloc (Files): Add m4/size_max.m4, m4/ptrdiff_max.m4.
23510
23511 2003-11-11  Bruno Haible  <bruno@clisp.org>
23512
23513         * m4/size_max.m4: New file.
23514         * m4/ptrdiff_max.m4: New file.
23515         * m4/xsize,m4 (gl_XSIZE): Require gl_SIZE_MAX.
23516         * m4/xalloc.m4 (gl_PREREQ_XALLOC): New macro.
23517         (gl_XALLOC): Invoke it.
23518
23519 2003-11-11  Bruno Haible  <bruno@clisp.org>
23520
23521         * lib/xsize.h (SIZE_MAX): Remove fallback definition.
23522         * lib/xalloc.h: Include limits.h. Assume SIZE_MAX and PTRDIFF_MAX are
23523         defined.
23524
23525 2003-11-10  Paul Eggert  <eggert@twinsun.com>
23526
23527         * lib/xalloc.h (xalloc_oversized): [! (defined PTRDIFF_MAX &&
23528         PTRDIFF_MAX < SIZE_MAX)]: Fix off-by-one error that would have
23529         rejected some allocations of exactly SIZE_MAX - 2 bytes.
23530         From Bruno Haible.
23531         [defined PTRDIFF_MAX && PTRDIFF_MAX < SIZE_MAX]: Use SIZE_MAX,
23532         not (size_t) -1, since it's defined here.
23533
23534 2003-11-09  Karl Berry  <karl@gnu.org>
23535
23536         * config/mkinstalldirs, depcomp, mdate-sh: update from automake.
23537
23538 2003-11-06  Paul Eggert  <eggert@twinsun.com>
23539
23540         * lib/xalloc.h [HAVE_STDINT_H]: Include <stdint.h>.
23541         (xalloc_oversized) [! (PTRDIFF_MAX < SIZE_MAX)]:
23542         Reject sizes of exactly SIZE_MAX bytes.
23543         * lib/xreadlink.c: Include "xalloc.h" before checking whether SIZE_MAX
23544         is defined, since "xalloc.h" now defines SIZE_MAX on modern hosts.
23545
23546 2003-11-05  Bruno Haible  <bruno@clisp.org>
23547
23548         * lib/xsize.h: Include limits.h, to avoid a possible collision with
23549         SIZE_MAX defined in <limits.h> on Solaris.
23550
23551 2003-11-04  Jim Meyering  <jim@meyering.net>
23552
23553         * modules/sysexits: Use the `$(VAR)' notation for AC_SUBST'd
23554         variable names, rather than @VAR@.
23555         * modules/poll: Likewise.
23556
23557 2003-11-04  Bruno Haible  <bruno@clisp.org>
23558
23559         * modules/xsize: New file.
23560         * modules/linebreak: Depend on xsize.
23561         * MODULES.html.sh (func_all_modules): Add xsize.
23562
23563 2003-11-04  Bruno Haible  <bruno@clisp.org>
23564
23565         * m4/xsize.m4: New file.
23566
23567 2003-11-04  Bruno Haible  <bruno@clisp.org>
23568
23569         * lib/xsize.h: New file.
23570         * lib/linebreak.c: Include xsize.h.
23571         (mbs_possible_linebreaks, mbs_width_linebreaks): Check malloc()
23572         argument for overflow.
23573         Suggested by Paul Eggert.
23574
23575 2003-11-03  Karl Berry  <karl@gnu.org>
23576
23577         * config/config.{guess,sub}: update from config.
23578
23579 2003-11-03  Jim Meyering  <jim@meyering.net>
23580
23581         * modules/userspec (lib_SOURCES): Add userspec.h.
23582         (Include): Add "userspec.h".
23583         Improve description.
23584
23585 2003-11-03  Jim Meyering  <jim@meyering.net>
23586
23587         * lib/userspec.c: Include "userspec.h".
23588         * lib/userspec.h: New file.
23589
23590 2003-11-03  Bruno Haible  <bruno@clisp.org>
23591
23592         * m4/wait-process.m4 (gl_WAIT_PROCESS): Also check for waitid.
23593
23594 2003-11-03  Bruno Haible  <bruno@clisp.org>
23595
23596         * lib/wait-process.c (wait_process): Use waitid with WNOWAIT if
23597         available, to avoid (extremely rare) race condition.
23598         Suggested by Paul Eggert.
23599
23600 2003-11-02  Karl Berry  <karl@gnu.org>
23601
23602         * config/srclist.txt (vasprintf.c): sync broken, sigh.
23603
23604 2003-10-31  Paul Eggert  <eggert@twinsun.com>
23605
23606         * lib/mountlist.h (struct mount_entry.me_type_malloced): New member.
23607         * lib/mountlist.c (SIZE_MAX): Define if not defined already.
23608         (read_filesystem_list): Set and use me_type_malloced.
23609         Use "sizeof *me" rather than "sizeof (struct mount_entry)" (or
23610         whatever the type happens to be), for brevity and consistency.
23611         Check for size calculation overflow on Alphas running OSF/1.
23612
23613 2003-10-31  Jim Meyering  <jim@meyering.net>
23614
23615         * lib/hash.c: Include "xalloc.h" for use of xalloc_oversized.
23616
23617         * lib/linebuffer.c: Include <string.h> for declaration of memset.
23618
23619 2003-10-30  Paul Eggert  <eggert@twinsun.com>
23620             Bruno Haible  <bruno@clisp.org>
23621
23622         * lib/vasprintf.c: Include <limits.h>, <stdlib.h>.
23623         (vasprintf): Fail if the resulting length doesn't fit in an 'int'.
23624
23625 2003-10-30  Paul Eggert  <eggert@cs.ucla.edu>
23626
23627         * m4/host-os.m4 (UTILS_HOST_OS): Change netbsd*-gnu pattern back to
23628         netbsd*-gnu*.  Suggested by Robert Millan.
23629
23630 2003-10-29  Paul Eggert  <eggert@twinsun.com>
23631
23632         * modules/group-member: Depend on stdbool.
23633
23634 2003-10-29  Paul Eggert  <eggert@twinsun.com>
23635
23636         * m4/xalloc.m4 (gl_XALLOC): Undo previous change.
23637
23638 2003-10-29  Paul Eggert  <eggert@twinsun.com>
23639
23640         * m4/host-os.m4 (UTILS_HOST_OS): Resurrect netbsd*-gnu.  Add comments
23641         to it, and to knetbsd*-gnu and kfreebsd*-gnu.  Remove the '*' from
23642         after the 'gnu' in these cases.  This fixes some bugs in the
23643         previous change, and is based on suggestions by Robert Millan.
23644
23645 2003-10-29  Paul Eggert  <eggert@twinsun.com>
23646
23647         * lib/xalloc.h (xalloc_oversized): Now a macro, not a function,
23648         so that it works even if SIZE_MAX < N.  Do not include <stdbool.h>;
23649         no longer needed.
23650         * lib/quotearg.c (quotearg_n_options): Use it.
23651         * lib/group-member.c: Include <stdbool.h>.
23652         (free_group_info): Arg is now const *; don't free arg.
23653         (get_group_info): Now returns bool and accepts struct group_info *,
23654         rather than returning a malloc'ed struct group_info *.
23655         All uses changed.  Check for overflow in internal size calculation.
23656
23657         * lib/getusershell.c (readname): Simplify the code by using x2nrealloc
23658         rather than xmalloc/xrealloc.
23659         * lib/linebuffer.c (initbuffer, readlinebuffer): Simplify the code by
23660         using x2realloc rather than xmalloc/xrealloc.  Also, fix a C
23661         conformance bug: the old code used a pointer after freeing the
23662         storage that it addressed.
23663         * lib/hash.c (hash_initialize): Simplify the code by using
23664         xalloc_oversized rather than doing it by hand.
23665         * lib/getgroups.c (getgroups): Don't use xrealloc, since we don't need
23666         the buffer preserved.  Use free and xmalloc instead.
23667         * lib/quotearg.c (quotearg_n_options): Likewise.
23668         Use a simpler test for size overflow.  Don't use xalloc_oversized
23669         because unsigned int might be wider than size_t (!); this suggests
23670         that we should switch from unsigned int to size_t for slot numbers.
23671
23672 2003-10-28  Paul Eggert  <eggert@twinsun.com>
23673
23674         * m4/host-os.m4 (UTILS_HOST_OS): Identify GNU/KFreeBSD and
23675         GNU/KNetBSD.  These implementations use glibc atop the FreeBSD and
23676         NetBSD kernels.  Requested by Richard Stallman.
23677
23678 2003-10-27  Paul Eggert  <eggert@twinsun.com>
23679
23680         * lib/exclude.c (new_exclude): Use xzalloc rather than xmalloc
23681         to allocate the returned structure.  Do not allocate a subarray,
23682         as x2nrealloc will do that.
23683         (add_exclude): Use x2nrealloc to reallocate ex->exclude,
23684         instead of xnrealloc.
23685         (add_exclude_file): Use x2realloc instead of malloc + xnrealloc.
23686
23687 2003-10-27  Bruno Haible  <bruno@clisp.org>
23688
23689         * lib/stdbool_.h: Better support for BeOS.
23690
23691 2003-10-26  Paul Eggert  <eggert@twinsun.com>
23692
23693         * m4/xalloc.m4 (gl_XALLOC): Requore AC_C_INLINE, since xalloc.h
23694         now uses inline.
23695
23696 2003-10-26  Paul Eggert  <eggert@twinsun.com>
23697
23698         * lib/xalloc.h (xalloc_oversized): New static inline function, for
23699         callers that want to do their own size-overflow checking.  Include
23700         <stdbool.h>, since xalloc_oversized returns bool.
23701         * lib/xalloc.c (array_size_overflow): Remove.  All callers changed
23702         to use xalloc_oversized.
23703
23704         Add two functions x2realloc, x2nrealloc, for programs that grow
23705         arrays dynamically by doubling their sizes.
23706         * lib/xalloc.h (x2realloc, x2nrealloc): New decls.
23707         * lib/xmalloc.c (x2nrealloc_inline, x2nrealloc, x2realloc):
23708         New functions.
23709
23710         Port to C99 semantics for 'inline' of external functions.
23711         Bug reported by Bruno Haible.
23712         * lib/xmalloc.c (xnmalloc_inline): New static inline function,
23713         with the old contents of xnmalloc.
23714         (xnmalloc, xmalloc): Use it.
23715         (xnrealloc_inline): New static inline function,
23716         with the old contents of xnrealloc.
23717         (xnrealloc, xrealloc): Use it.
23718
23719         * lib/alloc.c (alloca): xmalloc cannot return NULL, so don't test for
23720         that.
23721
23722 2003-10-26  Karl Berry  <karl@gnu.org>
23723
23724         * config/srclist.txt (COPYING.DOC): no longer available from
23725         /gd/gnuorg; don't know where the ultimate source is.
23726
23727 2003-10-25  Paul Eggert  <eggert@twinsun.com>
23728
23729         Fix several address-calculation bugs in the hash modules,
23730         plus some minor code cleanup.
23731
23732         * lib/hash.h: Include <stdbool.h>, for bool.
23733         * lib/hash.c: Don't include <stdbool.h>, since hash.h does it now.
23734         * lib/hash.h (Hash_hasher, hash_get_n_buckets, hash_get_n_buckets_used,
23735         hash_get_n_entries, hash_get_max_bucket_length,
23736         hash_get_entries, hash_do_for_each, hash_string, hash_initialize,
23737         hash_rehash): Use size_t rather than unsigned.
23738         * lib/hash.c (struct hash_table, hash_get_n_buckets,
23739         hash_get_n_buckets_used, hash_get_n_entries,
23740         hash_get_max_bucket_length, hash_table_ok, hash_print_statistics,
23741         hash_get_entries, hash_do_for_each, hash_string, is_prime,
23742         next_prime, hash_initialize, hash_rehash, hash_delete, hash_print):
23743         Likewise.
23744         (SIZE_MAX): Define if not defined.
23745         (hash_get_max_bucket_length, hash_table_ok, hash_lookup,
23746         hash_get_first, hash_get_next, hash_get_entries, hash_do_for_each,
23747         hash_print):
23748         Use const * when possible.
23749         (hash_string): Use (unsigned char) *P rather than *(unsigned char *) P.
23750         (check_tuning): Fix bug: if tuning parameters were very close to
23751         0 or 1, rounding errors could have caused subscript violations.
23752         (hash_initialize, allocate_entry, hash_print): Remove unnecessary cast.
23753         (hash_initialize): Add 'fail:' label
23754         to free table and return NULL, and use it to simplify code.
23755         Use calloc rather than clearing the storage ourself.
23756         (hash_initialize, hash_rehash): Check for arithmetic overflow in
23757         buffer size calculations.
23758         * lib/hash-pjw.h (hash_pjw): Use size_t, not unsigned.
23759         Include <stddef.h>, for size_t.
23760         * lib/hash-pjw.c (hash_pjw): Likewise.
23761         Switch to method described by Bruno Haible.
23762         Include <limits.h>, for CHAR_BIT.
23763         (SIZE_BITS): New macro.
23764
23765 2003-10-23  Paul Eggert  <eggert@twinsun.com>
23766
23767         * m4/getline.m4 (AM_FUNC_GETLINE):
23768         Don't include getndelim2.o twice into LIBOBJS; this breaks on some
23769         hosts.  Problem reported by Derek Robert Price in
23770         <http://mail.gnu.org/archive/html/bug-gnulib/2003-10/msg00092.html>.
23771         This patch can be withdrawn after Autoconf 2.58 is required for gnulib.
23772         * m4/getndelim2.m4 (gl_GETNDELIM2): Likewise.
23773
23774 2003-10-21  Paul Eggert  <eggert@twinsun.com>
23775
23776         * lib/getndelim2.c (getndelim2): When size calculation overflows,
23777         ceiling the allocation at NMAX bytes rather than silently
23778         discarding input bytes before NMAX is reached.  This makes
23779         a difference only if NMAX exceeds SIZE_MAX / 2.
23780
23781         * lib/obstack.c: Merge from glibc.
23782         [defined _LIBC]: Include <obstack.h>, not "obstack.h".
23783         Add libc_hidden_def (_obstack_newchunk).
23784         (_obstack_free) [! defined _LIBC]: Remove.
23785         [defined _LIBC]: Make a strong alias from obstack_free, rather than
23786         a clone of the function body.
23787         (fputs) [defined _LIBC && defined USE_IN_LIBIO]: Remove.
23788         [defined _LIBC && !defined USE_IN_LIBIO]: Include <libio/iolibio.h>.
23789
23790         * lib/obstack.h: Indenting cleanup, to make it easier to merge with
23791         glibc.
23792         (obstack_grow, obstack_grow0): Remove unnecessary parentheses around
23793         arg to memcpy.
23794
23795         * lib/obstack.h (obstack_1grow_fast): Properly parenthesize arg.
23796         (obstack_ptr_grow_fast, obstack_int_grow_fast):
23797         Don't use lvalue casts, as GCC plans to remove support for them
23798         in GCC 3.5.  Reported by Joseph S. Myers.  This bug
23799         was also present in the non-GCC version, indicating that this
23800         code had always been buggy and had never been widely used.
23801         (obstack_1grow, obstack_ptr_grow, obstack_int_grow, obstack_blank):
23802         Use the fast variant of each macro, rather than copying the
23803         definiens of the fast variant; that way, we'll be more likely to
23804         catch future bugs in the fast variants.
23805
23806 2003-10-20  Bruno Haible  <bruno@clisp.org>
23807
23808         * modules/wait-process: New file.
23809         * MODULES.html.sh (func_all_modules): Add wait-process.
23810
23811 2003-10-20  Bruno Haible  <bruno@clisp.org>
23812
23813         * m4/wait-process.m4: New file.
23814
23815 2003-10-20  Bruno Haible  <bruno@clisp.org>
23816
23817         * lib/wait-process.h: New file, from GNU gettext.
23818         * lib/wait-process.c: New file, from GNU gettext.
23819
23820 2003-10-19  Jim Meyering  <jim@meyering.net>
23821
23822         * lib/vasnprintf.c (vasnprintf): Work around losing snprintf on
23823         HPUX 10.20.
23824
23825 2003-10-18  Karl Berry  <karl@gnu.org>
23826
23827         * config/config.guess: update from config.
23828
23829 2003-10-16  Paul Eggert  <eggert@twinsun.com>
23830
23831         * lib/getgroups.c: Include <errno.h>, <stdlib.h>.
23832         (getgroups): First arg is int, not size_t.
23833         Don't let 'free' mangle errno.
23834
23835 2003-10-16  Paul Eggert  <eggert@twinsun.com>
23836
23837         * README: Mention that gnulib assumes that (foo *) NULL + 0 == NULL.
23838
23839 2003-10-16  Karl Berry  <karl@gnu.org>
23840
23841         * config/config.{guess,sub}: update from config.
23842
23843 2003-10-16  Jim Meyering  <jim@meyering.net>
23844
23845         * lib/xmalloc.c: Include <string.h>, for declarations of memset and
23846         memcpy.
23847
23848 2003-10-15  Paul Eggert  <eggert@twinsun.com>
23849
23850         * lib/exclude.c: Do not include <inttypes.h> or <stdint.h>.
23851         (SIZE_MAX): Remove.
23852         (new_exclude, add_exclude_file): Initial size no longer needs to
23853         be a power of 2.
23854         (add_exclude, add_exclude_file): Use xnrealloc instead of rolling
23855         our own address arithmetic overflow checking.
23856
23857         * lib/fnmatch.c (SIZE_MAX): Define if standard headers don't.
23858         (fnmatch): Do not alloca more than 2000 wide characters;
23859         instead, use malloc for large buffers.
23860         Check for address arithmetic overflow, and return -1
23861         with errno set to ENOMEM in that case.
23862         * lib/fnmatch_loop.c (ALLOCA_LIMIT): New macro.
23863         (NEW_PATTERN): Do not alloca more than 8000 bytes;
23864         instead, return -1.  Check for address arithmetic overflow.
23865
23866 2003-10-14  Paul Eggert  <eggert@twinsun.com>
23867
23868         Handle invalid suffixes and overflow independently, so that
23869         callers can treat them independently as needed.  Fix some bugs in
23870         suffix handling, e.g., "100k@" was not diagnosed as an invalid
23871         suffix for a human-readable blocksize.  The major caller-visible
23872         change is the addition of a new
23873         LONGINT_INVALID_SUFFIX_CHAR_WITH_OVERFLOW enum value, indicating
23874         that both overflow and suffix chars were found.
23875
23876         * lib/human.c (humblock): Don't check separately for invalid suffix
23877         char; that is xstrtoumax's job (now that its bug is fixed).
23878         * lib/xstrtoimax.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM) [defined
23879         INTMAX_MAX]: New macros.
23880         * lib/xstrtol.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM, TYPE_MINIMUM,
23881         TYPE_MAXIMUM): New macros.
23882         (bkm_scale, bkm_scale_by_power): Return strtol_error, not int.
23883         (bkm_scale, bkm_scale_by_power, __xstrtol): Return maximal values
23884         if overflow occurs, as it's what __strtol does and it's more useful
23885         in practice.
23886         (__xstrtol): If __strtol reports some error other than ERANGE,
23887         reflect it to the caller as LONGINT_INVALID.  If it reports
23888         ERANGE, continue the rest of parsing, and report LONGINT_OVERFLOW
23889         | LONGINT_INVALID_SUFFIX_CHAR if both errors occur.
23890         * lib/xstrtol.h (LONGINT_INVALID_SUFFIX_CHAR_WITH_OVERFLOW): New enum
23891         value.
23892         (_STRTOL_ERROR): Handle it.  Abort when given unknown error codes.
23893         * lib/xstrtoul.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM): New macros.
23894         * lib/xstrtoumax.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM)
23895         [defined UINTMAX_MAX]: New macros.
23896
23897 2003-10-14  Bruno Haible  <bruno@clisp.org>
23898
23899         * modules/fatal-signal: Add m4/sig_atomic_t.m4 to file list.
23900
23901 2003-10-14  Bruno Haible  <bruno@clisp.org>
23902
23903         * m4/sig_atomic_t: New file, from GNU gettext.
23904         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Require gt_TYPE_SIG_ATOMIC_T.
23905
23906 2003-10-14  Bruno Haible  <bruno@clisp.org>
23907
23908         * lib/fatal-signal.h: Improved comments. Suggested by Paul Eggert.
23909         * lib/fatal-signal.c: Use sig_atomic_t. Suggested by Paul Eggert.
23910         Also use volatile where needed.
23911
23912 2003-10-12  Paul Eggert  <eggert@twinsun.com>
23913
23914         * modules/xalloc: Do not depend on 'exit'.  Depend on 'stdbool'.
23915         Change maintainer from Bruno Haible to 'all'.
23916
23917 2003-10-12  Paul Eggert  <eggert@twinsun.com>
23918
23919         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Require AC_C_INLINE.
23920
23921 2003-10-12  Paul Eggert  <eggert@twinsun.com>
23922
23923         * lib/xalloc.h (xnmalloc, xzalloc, xnrealloc, xclone): New decls.
23924         (XMALLOC, XCALLOC, XREALLOC, XFREE, CCLONE, CLONE): Deprecate,
23925         and define in terms of the other primitives.
23926         * lib/xmalloc.c: Include stdbool.h; do not include exit.h.
23927         (SIZE_MAX): Define if not already defined.
23928         (array_size_overflow): New function.
23929         (xalloc_die): Abort instead of exiting if 'error' returns.
23930         (xnmalloc, xnrealloc, xzalloc, xclone): New functions.
23931         (xmalloc, xrealloc): Use them.
23932         (xcalloc): Check for address arithmetic overflow.
23933         * lib/xstrdup.c (xstrdup): Use xclone, since memcpy should be
23934         a bit faster than strcpy.
23935
23936 2003-10-10  Simon Josefsson  <jas@extundo.com>
23937
23938         * modules/argp (Depends-on): Add restrict and strcase.
23939
23940 2003-10-10  Simon Josefsson  <jas@extundo.com>
23941
23942         * m4/argp.m4: Add AC_C_INLINE.
23943
23944 2003-10-08  Paul Eggert  <eggert@twinsun.com>
23945
23946         Merge getpass from libc, plus a few fixes.
23947
23948         * lib/getpass.c (HAVE_STDIO_EXT) [_LIBC]: Define to 1.
23949         Include <stdbool.h>.
23950         Include <stdio_ext.h> if HAVE_STDIO_H, otherwise define
23951         __fsetlocking to empty.
23952         [_LIBC]: Do not include "getline.h" or "unlocked-io.h", but
23953         do include <bits/libc-lock.h>.
23954         Do not include <fcntl.h>; not needed.
23955         [_LIBC]: Include <wchar.h>.
23956         (NOTCANCEL_MODE): New macro.
23957         (flockfile, funlockfile) [_LIBC]: New macros.
23958         (__libc_cleanup_push, __libc_cleanup_pop, __getline, __tcgetattr)
23959         [!_LIBC]: New macros.
23960         (call_fclose): New function.
23961         (getpass): Use it.  Save tty stream separately; this simplifies the
23962         code and makes it more reliable if stdin happens to equal stdout.
23963         Invoke __fsetlocking on tty.
23964         Handle thread cancellation if needed.
23965         Namespace cleanup (use __tcgetattr, __getline).
23966         Use bool for Booleans.
23967         [USE_IN_LIBIO]: Handle wide streams.
23968         [!_LIBC]: Unconditionally do the fseek, since we don't know what
23969         stream might go where.
23970
23971         * lib/unlocked-io.h: Include <stdio.h>, so that the caller
23972         doesn't have to include <stdio.h> before us.
23973         (clearerr_unlocked, feof_unlocked, ferror_unlocked,
23974         fflush_unlocked, fgets_unlocked, fputc_unlocked, fputs_unlocked,
23975         fread_unlocked, fwrite_unlocked, getc_unlocked, getchar_unlocked,
23976         putc_unlocked, putchar_unlocked): Define to the unlocked counterpart
23977         if not declared, so that we can use getpass.c code from libc without
23978         rewriting it.
23979         (flockfile, ftrylockfile, funlockfile): New macros.
23980
23981 2003-10-08  Paul Eggert  <eggert@twinsun.com>
23982
23983         * modules/getpass: Depend on stdbool.
23984
23985 2003-10-08  Paul Eggert  <eggert@twinsun.com>
23986
23987         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for stdio_ext.h.
23988
23989 2003-10-07  Karl Berry  <karl@gnu.org>
23990
23991         * config/config.{guess,sub}: update from config.
23992
23993 2003-10-06  Jim Meyering  <jim@meyering.net>
23994             Bruno Haible  <bruno@clisp.org>
23995
23996         This lets translators provide better translations for the
23997         "Written by ..." part of --version output.
23998         * lib/version-etc.h: Include stdarg.h.
23999         (version_etc_copyright): Declare as readonly.
24000         (version_etc): Make this function variadic with a NULL-terminated list
24001         of author name strings.
24002         (version_etc_va): New declaration.
24003         * lib/version-etc.c: Include stdarg.h, stdlib.h.
24004         (version_etc_copyright): Declare as readonly.
24005         (version_etc_va): New function. Provide a different translatable string
24006         for each possible number of authors < 10. Abbreviate when there are 10
24007         authors or more.
24008         (version_etc): Make this function variadic. Call version_etc_va.
24009         Suggestion from Gary V. Vaughan.
24010
24011         * lib/long-options.h (parse_long_options): Change prototype: the
24012         authors string is moved to the end and becomes variadic.
24013         * lib/long-options.c: Include stdarg.h.
24014         (parse_long_options): Make this function variadic, too.
24015         Call version_etc_va, not version_etc.
24016
24017 2003-10-06  Bruno Haible  <bruno@clisp.org>
24018
24019         * modules/version-etc-2: Remove file.
24020         * MODULES.html.sh (func_all_modules): Remove version-etc-2.
24021
24022 2003-10-06  Bruno Haible  <bruno@clisp.org>
24023
24024         * modules/fatal-signal: New file.
24025         * MODULES.html.sh (func_all_modules): Add fatal-signal.
24026
24027 2003-10-06  Bruno Haible  <bruno@clisp.org>
24028
24029         * m4/fatal-signal.m4: New file.
24030         * m4/signalblocking.m4: New file, from GNU gettext.
24031
24032 2003-10-06  Bruno Haible  <bruno@clisp.org>
24033
24034         * lib/version-etc-2.h: Remove file.
24035         * lib/version-etc-2.c: Remove file.
24036
24037 2003-10-06  Bruno Haible  <bruno@clisp.org>
24038
24039         * lib/fatal-signal.h: New file, from GNU gettext.
24040         * lib/fatal-signal.c: New file, from GNU gettext.
24041
24042 2003-10-05  Paul Eggert  <eggert@twinsun.com>
24043
24044         * README: Rework advice for preventing empty .o files.
24045         Don't recommend ELIDE constructs.  Recommend <stddef.h>,
24046         not <sys/types.h>.
24047
24048 2003-10-04  Karl Berry  <karl@gnu.org>
24049
24050         * lib/argp*: update from libc.
24051
24052 2003-10-04  Karl Berry  <karl@gnu.org>
24053
24054         * config/config.{guess,sub}: update from config.
24055
24056 2003-10-02  Bruno Haible  <bruno@clisp.org>
24057
24058         * modules/lchown (Include): Add lchown.h.
24059         * modules/time_r (Include): Use "..." syntax.
24060         * modules/xgetdomainname (Include): Add xgetdomainname.h.
24061
24062 2003-10-01  Simon Josefsson  <jas@extundo.com>
24063
24064         * MODULES.html.sh (func_all_modules): Move gethostname from section
24065         'based on' to section 'lacking' POSIX:2001.
24066
24067 2003-10-01  Larry Jones  <lawrence.jones@eds.com>
24068
24069         * lib/getpass.c (getpass): Use a no-op fseek when switching from input
24070         to output mode on the same stream.
24071
24072 2003-09-29  Paul Eggert  <eggert@twinsun.com>
24073
24074         * lib/strftime.c (tm_diff) [! HAVE_TM_GMTOFF]:
24075         Fix arg typo in previous patch.
24076
24077 2003-09-28  Jim Meyering  <jim@meyering.net>
24078
24079         * lib/error.c: Correct cpp indentation.
24080
24081 2003-09-27  Paul Eggert  <eggert@twinsun.com>
24082
24083         * modules/free: New file.
24084
24085 2003-09-27  Paul Eggert  <eggert@twinsun.com>
24086
24087         * m4/free.m4: New file.
24088
24089 2003-09-27  Paul Eggert  <eggert@twinsun.com>
24090
24091         * lib/minmax.h (MIN, MAX)
24092         [__STDC__ && defined __GNUC__ && __GNUC__ >= 2]:
24093         Omit the special code that used __typeof__, since we worry that
24094         it could be more trouble than it's worth.  See:
24095         http://mail.gnu.org/archive/html/bug-gnulib/2003-01/msg00090.html
24096         http://mail.gnu.org/archive/html/bug-gnulib/2003-01/msg00095.html
24097
24098         * lib/free.c: New file.
24099
24100 2003-09-27  Oskar Liljeblad  <oskar@osk.mine.nu>
24101
24102         Trivial fixes to Makefile.am parts of module listings.
24103         * modules/strstr: Append strstr.h to lib_SOURCES.
24104         * modules/strcase: Likewise, for strcase.h.
24105
24106 2003-09-27  Karl Berry  <karl@gnu.org>
24107
24108         * config/mkinstalldirs: update from automake.
24109
24110 2003-09-26  Paul Eggert  <eggert@twinsun.com>
24111
24112         * lib/error.c (SIZE_MAX) [!defined SIZE_MAX]: Define.
24113         (error_tail): Do not loop, reallocating temporary buffer, since
24114         the output cannot contain more wide characters than the input
24115         contains bytes, the size must be big enough already.  This avoids
24116         one potential size overflow calculation.  Check for size overflow
24117         when calculating temporary buffer size.  Free temporary buffer
24118         when done, if it was allocated with malloc; this plugs a memory
24119         leak.  Remove casts from void * to pointers, that are no longer
24120         needed now that we're assuming C89 or better.
24121
24122         Merge error changes from glibc.
24123
24124         * lib/error.c, error.h: Update copyright notice header to match glibc.
24125         * lib/error.c [defined _LIBC]: Include <errno.h>, <bits/libc-lock.h>.
24126         (error, error_at_line) [defined _LIBC && defined __libc_ptf_call]:
24127         Disable cancellation while printing error.
24128         * lib/error.h: Prepend __ to parameter names.
24129
24130 2003-09-26  Jim Meyering  <jim@meyering.net>
24131
24132         * lib/error.c (error_tail): Move some declarations
24133         into inner scope where the local variables are used.
24134
24135 2003-09-26  Bruno Haible  <bruno@clisp.org>
24136
24137         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Add comments about the AIX
24138         stpncpy().
24139         Don't define stpncpy through config.h; it's now done through stpncpy.h.
24140
24141 2003-09-26  Bruno Haible  <bruno@clisp.org>
24142
24143         * lib/stpncpy.h (gnu_stpncpy): New declaration.
24144         (stpncpy): Define as alias for gnu_stpncpy.
24145         * lib/stpncpy.c [!_LIBC]: Define gnu_stpncpy, not stpncpy.
24146
24147 2003-09-25  Simon Josefsson  <jas@extundo.com>
24148
24149         * lib/xgetdomainname.h: New file.
24150         * lib/xgetdomainname.c: New file.
24151
24152 2003-09-25  Simon Josefsson  <jas@extundo.com>
24153             Bruno Haible  <bruno@clisp.org>
24154
24155         * modules/getdomainname: New file.
24156         * modules/xgetdomainname: New file.
24157         * MODULES.html.sh (func_all_modules): Add getdomainname,
24158         xgetdomainname.
24159
24160 2003-09-25  Simon Josefsson  <jas@extundo.com>
24161             Bruno Haible  <bruno@clisp.org>
24162
24163         * m4/getdomainname.m4: New file.
24164
24165 2003-09-25  Simon Josefsson  <jas@extundo.com>
24166             Bruno Haible  <bruno@clisp.org>
24167
24168         * lib/getdomainname.h: New file.
24169         * lib/getdomainname.c: New file.
24170
24171 2003-09-25  Karl Berry  <karl@gnu.org>
24172
24173         * lib/argp-fmtstream.c, argp-help.c: update from libc.
24174
24175 2003-09-25  Karl Berry  <karl@gnu.org>
24176
24177         * config/install-sh: update from automake.
24178
24179 2003-09-25  Bruno Haible  <bruno@clisp.org>
24180
24181         * modules/version-etc-2: New file, from modules/version-etc with
24182         modifications.
24183         * MODULES.html.sh (func_all_modules): Add version-etc-2.
24184
24185 2003-09-25  Bruno Haible  <bruno@clisp.org>
24186
24187         * lib/version-etc-2.h: New file, from version-etc.h with modifications.
24188         * lib/version-etc-2.c: New file, from version-etc.c with modifications.
24189
24190 2003-09-24  Simon Josefsson  <jas@extundo.com>
24191
24192         * modules/xgethostname: Add xgethostname.h.
24193
24194 2003-09-24  Paul Eggert  <eggert@twinsun.com>
24195
24196         * lib/linebuffer.c (freebuffer): Don't free the argument, just
24197         the buffer associated with the argument.  Bug reported by
24198         Simon Josefsson.
24199
24200 2003-09-24  Paul Eggert  <eggert@twinsun.com>
24201
24202         * README: Document assumptions that 'int' is at least 32 bits
24203         wide, that integer arithmetic is 2's complement without overflow,
24204         that there are no holes in integer values, that adding sizes of
24205         two nonoverlapping objects can't overflow, and that all-bits-zero
24206         yields scalar zero.  Fix spelling and capitalization typos.
24207
24208 2003-09-19  Karl Berry  <karl@gnu.org>
24209
24210         * lib/argp.h: update from libc.
24211
24212 2003-09-17  Paul Eggert  <eggert@twinsun.com>
24213
24214         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Call AC_BEFORE first,
24215         to avoid spurious warnings like "AC_RUN_IFELSE was called before
24216         gl_USE_SYSTEM_EXTENSIONS" from autoreconf.
24217
24218 2003-09-17  Paul Eggert  <eggert@twinsun.com>
24219
24220         * gnulib-tool: Use "test -h", not "test -L", for portability
24221         to Solaris 8 /bin/sh.  (This bug is fixed in Solaris 9.)
24222         (tags_regexp): Remove, since \| doesn't conform to POSIX.
24223         (sed_extract_prog): Issue s commands one-by-one, rather than
24224         using \| in one s command.
24225
24226 2003-09-16  Paul Eggert  <eggert@twinsun.com>
24227
24228         * lib/linebuffer.c (readlinebuffer): Return NULL immediately upon
24229         input error, instead of returning NULL the next time we are called
24230         (and therefore losing track of errno).
24231
24232 2003-09-16  Bruno Haible  <bruno@clisp.org>
24233
24234         * gnulib-tool (func_create_testdir): Warn about duplicated
24235         dependencies.
24236
24237 2003-09-15  Paul Eggert  <eggert@twinsun.com>
24238
24239         * modules/argmatch, modules/fatal, modules/obstack,
24240         modules/xalloc, modules/xgethostname: Sort dependencies by
24241         importance, not alphabetically.
24242
24243 2003-09-15  Paul Eggert  <eggert@twinsun.com>
24244
24245         * lib/getndelim2.c (getndelim2): Don't trash errno when a read
24246         fails, so that the caller gets the proper errno.
24247
24248         * lib/readutmp.c (read_utmp): Likewise.
24249         Check for fstat error.  Close stream and free storage
24250         when failing.
24251
24252 2003-09-14  Karl Berry  <karl@gnu.org>
24253
24254         * config/srclist.txt (strdup.c): disable for c89 changes.
24255
24256 2003-09-14  Jim Meyering  <jim@meyering.net>
24257
24258         * lib/getloadavg.c: Correct cpp indentation.
24259         * lib/strdup.c: Likewise.
24260         * lib/vasnprintf.c: Likewise.
24261
24262 2003-09-14  Bruno Haible  <bruno@clisp.org>
24263
24264         * modules/fwriteerror: New file.
24265         * MODULES.html.sh (func_all_modules): Add fwriteerror.
24266
24267 2003-09-14  Bruno Haible  <bruno@clisp.org>
24268
24269         * lib/fwriteerror.h: New file.
24270         * lib/fwriteerror.c: New file.
24271
24272 2003-09-12  Paul Eggert  <eggert@twinsun.com>
24273
24274         * modules/argmatch, modules/exitfail, modules/fatal, modules/obstack,
24275         modules/xgethostname, modules/xalloc: Depend on exit.
24276
24277 2003-09-12  Paul Eggert  <eggert@twinsun.com>
24278
24279         * m4/error.m4: Require AC_FUNC_STRERROR_R rather than invoking it.
24280
24281         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Require AC_AIX
24282         and AC_MINIX, too, so that their extensions are available.
24283
24284         * m4/prereq.m4 (jm_PREREQ_ADDEXT): Remove.  All uses removed.
24285         This macro has been superseded by gl_BACKUPFILE.
24286
24287         More patches to assume C89 or better.
24288
24289         * m4/error.m4 (gl_ERROR): Don't check for vprintf.
24290
24291         * m4/check-decl.m4 (jm_CHECK_DECLS): Include <string.h>, <stdlib.h>
24292         unconditionally.
24293         * m4/closeout.m4 (gl_CLOSEOUT): Don't check for stdlib.h.
24294         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER):
24295         Include <string.h>, <stdlib.h> unconditionally.
24296         * m4/lstat.m4 (gl_PREREQ_LSTAT): Don't check for stdlib.h, free.
24297         * m4/readdir.m4 (GL_FUNC_READDIR): Don't check for string.h.
24298         * m4/readutmp.m4 (gl_PREREQ_READUTMP): Don't check for standard C
24299         headers or for string.h.
24300         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Don't check for stdlib.h
24301         or strtoul.
24302
24303         * m4/mkstemp.m4 (jm_PREREQ_TEMPNAME): Do not require standard C
24304         headers.
24305         * m4/strdup.m4 (gl_PREREQ_STRDUP): Likewise.
24306         * m4/userspec.m4 (gl_USERSPEC): Likewise.
24307         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Likewise.
24308         * m4/xstrtod.m4 (gl_XSTRTOD): Likewise.
24309         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
24310         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't check for limits.h,
24311         memcpy, memset.
24312         (jm_FUNC_GNU_STRFTIME): Don't require standard C headers.
24313         * m4/strtod.m4 (gl_FUNC_STRTOD): Do not check for float.h.
24314         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Do not check for stdlib.h,
24315         strtol.
24316         * m4/strtol.m4 (gl_FUNC_STRTOL): Do not check for limits.h.
24317         * m4/userspec.m4 (gl_USERSPEC): Do not check for string.h.
24318         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Do not check for string.h, strtol,
24319         strtoul.
24320
24321 2003-09-12  Paul Eggert  <eggert@twinsun.com>
24322
24323         * lib/argmatch.c, fatal.c, xgethostname.c, xmalloc.c: Include exit.h.
24324         * lib/obstack.c [!defined _LIBC]: Likewise.
24325         * lib/argmatch.c (EXIT_FAILURE): Remove; now done by exit.h
24326         * lib/exitfail.c, fatal.c, xgethostname.c, xmalloc.c: Likewise.
24327         * lib/exitfail.c: Don't include stdlib.h; no longer needed.
24328
24329         More changes to assume C89 or better.
24330
24331         * lib/error.c (error_tail): Assume vprintf.
24332
24333         * lib/argmatch.c (getenv): Remove decl.
24334         * lib/progreloc.c (get_full_program_name): Define via prototype.
24335         * lib/setenv.c (clearenv): Likewise.
24336         * lib/stpncpy.c: Do not include <string.h> or <sys/types.h>; not
24337         needed.
24338         * lib/strdup.c: Include <stdlib.h>, <string.h> unconditionally.
24339         (malloc, memcpy): Remove decls.
24340         * lib/strftime.c (HAVE_LIMITS_H, STDC_HEADERS) [defined _LIBC]: Remove.
24341         (HAVE_MEMCPY) [defined emacs && !defined HAVE_BCOPY]: Remove.
24342         Include <limits.h>, <stddef.h>, <stdlib.h>, <string.h> unconditionally.
24343         (memcpy): Remove macro.
24344         (MEMCPY) [!defined COMPILE_WIDE]: Define to memcpy unconditionally.
24345         (__P): Remove.  All uses removed.
24346         (PTR): Remove.  All uses changed to void *.
24347         (CHAR_BIT, NULL): Remove.
24348         (spaces, zeros, memset_space, memset_zero)
24349         [!defined memset && !defined HAVE_MEMSET && !defined _LIBC]:
24350         Remove.
24351         (LOCALE_PARAM, LOCALE_PARAM_DECL): Remove.
24352         (memcpy_lowcase, memcpy_uppcase, tm_diff, iso_week_days):
24353         Define with prototype.
24354         Remove now-unnecessary prototype decl.
24355         (extra_args_spec): Assume ANSI C.  All uses changed.
24356         (extra_args_spec_iso): Remove.
24357         (my_strftime, emacs_strftimeu): Define via prototype.
24358         * lib/strtod.c: Include <float.h>, <stdlib.h>, <string.h>
24359         unconditionally.
24360         (DBL_MAX, DBL_MIN, HUGE_VAL, NULL): Remove decls.
24361         * lib/strtoimax.c: Include <stdlib.h> unconditionally.
24362         (strtoul, strtol): Remove decls.
24363         * lib/strtol.c (STDC_HEADERS, HAVE_LIMITS_H, NULL, ULONG_MAX,
24364         LONG_MAX): Remove.
24365         Include <limits.h>, <stddef.h>, <stdlib.h>, <string.h> unconditionally.
24366         (LOCALE_PARAM_DECL): Remove.  All uses changed to LOCALE_PARAM_PROTO.
24367         (LOCALE_PARAM_PROTO): New macro.
24368         (INTERNAL, INTERNAL1, WEAKNAME): Assume ANSI C, not K&R.
24369         (INTERNAL (strtol), strtol): Define with a prototype.
24370         (PARAMS): Remove.  All uses removed.
24371         * lib/tempname.c: Include <string.h> unconditionally.
24372         * lib/userspec.c: Include <stdlib.h>, <string.h> unconditionally.
24373         * lib/xgethostname.c (main): Define with a prototype.
24374         * lib/xmalloc.c: Include "xalloc.h" first, to check interface.
24375         Include <stdlib.h> unconditionally.
24376         (calloc, malloc, realloc, free): Remove decls.
24377         * lib/xstrtod.c: Include "xstrtod.h" first, to check interface.
24378         Include <stdlib.h> unconditionally.  Sort include file names.
24379         (strtod): Remove.
24380         (xstrtod): Define with a prototype.
24381         * lib/xstrtol.c: Include <stdlib.h>, <string.h> unconditionally.
24382         (strtol, strtoul): Remove decls.
24383
24384 2003-09-11  Paul Eggert  <eggert@twinsun.com>
24385
24386         More patches to assume C89 or better.
24387         * m4/strndup.m4 (gl_PREREQ_STRNDUP): Remove STDC_HEADERS check.
24388         * m4/strnlen.m4 (gl_PREREQ_STRNLEN): Don't check for memory.h,
24389         string.h, memchr, STDC_HEADERS.
24390
24391 2003-09-11  Paul Eggert  <eggert@twinsun.com>
24392
24393         * lib/strndup.c: Don't include <stdio.h>, <sys/types.h>.
24394         Include <stdlib.h>, <string.h> unconditionally.
24395         Remove now-unnecessary cast to char *.
24396         * lib/strnlen.c: Include <string.h> unconditionally.
24397         * lib/yesno.c (yesno): Define with a prototype.
24398
24399 2003-09-11  Bruno Haible  <bruno@clisp.org>
24400
24401         * config/srclist.txt (setenv.c, unsetenv.c): Disable for the moment.
24402
24403 2003-09-10  Jim Meyering  <jim@meyering.net>
24404
24405         * lib/error.c: Correct indentation of cpp directives.
24406
24407 2003-09-10  Bruno Haible  <bruno@clisp.org>
24408
24409         * m4/strcspn.m4 (gl_PREREQ_STRCSPN): Remove <string.h> check.
24410         * m4/strpbrk.m4 (gl_PREREQ_STRPBRK): Remove <string.h> check.
24411         * m4/strstr.m4 (gl_PREREQ_STRSTR): Remove <string.h> check.
24412         * m4/unicodeio.m4 (gl_UNICODEIO): Remove <string.h> check.
24413         * m4/setenv.m4 (gl_PREREQ_SETENV, gl_PREREQ_UNSETENV): Remove
24414         <stdlib.h> and <string.h> checks.
24415         * m4/xreadlink.m4 (gl_XREADLINK): Remove <stdlib.h> check.
24416         * m4/yesno.m4 (gl_YESNO): Remove <stdlib.h> check.
24417
24418 2003-09-10  Bruno Haible  <bruno@clisp.org>
24419
24420         * lib/strcspn.c: Include <string.h> unconditionally.
24421         * lib/strpbrk.c: Include <string.h> unconditionally.
24422         * lib/strstr.c: Include <string.h> unconditionally.
24423         * lib/unicodeio.c: Include <string.h> unconditionally.
24424         * lib/setenv.c: Include <stdlib.h> and <string.h> unconditionally.
24425         * lib/unsetenv.c: Likewise.
24426         * lib/xreadlink.c: Include <stdlib.h> unconditionally.
24427         * lib/yesno.c: Include <stdlib.h> unconditionally.
24428         (rpmatch): Add prototype.
24429
24430 2003-09-09  Paul Eggert  <eggert@twinsun.com>
24431
24432         More patches to assume C89 or better.
24433         * m4/getcwd.m4 (AC_FUNC_GETCWD_NULL): Don't check for stdlib.h.
24434         * m4/getopt.m4 (gl_GETOPT): Don't check for string.h.
24435         * m4/getugroups.m4 (gl_GETUGROUPS): Do not check for standard C headers
24436         or for string.h.
24437         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Do not check for
24438         stdlib.h.
24439         * m4/group-member.m4 (gl_PREREQ_GROUP_MEMBER): Do not require standard
24440         C headers.
24441         * m4/hard-locale.m4 (gl_HARD_LOCALE): Do not check for stdlib.h,
24442         string.h.
24443         * m4/hash.m4 (gl_HASH): Do not check for stdlib.h, malloc, free.
24444         * m4/human.m4 (gl_HUMAN): Do not check for stdlib.h, string.h, getenv.
24445         * m4/idcache.m4 (gl_IDCACHE): Do not check for standard C headers,
24446         or for string.h.
24447         * m4/long-options.m4 (gl_LONG_OPTIONS): Do not check for stdlib.h.
24448         * m4/makepath.m4 (gl_MAKEPATH): Do not check for string.h or standard
24449         C headers.
24450         * m4/md5.m4 (gl_MD5): Don't check for limits.h, standard C headers,
24451         memcpy.
24452         * m4/sha.m4 (gl_SHA): Don't check for standard Cheaders, memcpy.
24453         * m4/memchr.m4 (jm_PREREQ_MEMCHR): Don't check for limits.h, stdlib.h.
24454         * m4/memcmp.m4 (gl_PREREQ_MEMCMP): Don't check for string.h.
24455         * m4/memcoll.m4 (gl_MEMCOLL): Likewise.
24456         * m4/memrchr.c (gl_PREREQ_MEMRCHR): Don't check for limits.h.
24457         * m4/mkdir-slash.m4 (gl_PREREQ_MKDIR): Don't check for stdlib.h,
24458         string.h, free.
24459         * m4/mktime.m4 (gl_PREREQ_MKTIME): Don't check for standard C headers.
24460         * m4/modechange.m4 (gl_MODECHANGE): Don't check for standard C headers.
24461         * m4/mountlist.m4 (gl_PREREQ_MOUNTLIST_EXTRA): Don't check for standard
24462         C headers, or for string.h.
24463         * m4/obstack.m4 (gl_OBSTACK): Don't check for stddefe.h, string.h.
24464         (gl_PREREQ_OBSTACK): Don't check for stdlib.h.
24465         * m4/path-concat.m4 (gl_PATH_CONCAT): Don't check for standard C
24466         headers, memory.h, stdlib.h, string.h, strings.h.
24467         * m4/posixtm.m4 (gl_POSIXTM): Don't check for stdlib.h, string.h.
24468         * m4/posixver.m4 (gl_POSIXVER): Don't check for getenv.
24469         * m4/putenv.m4 (gl_PREREQ_PUTENV): Don't check for string.h, memcpy,
24470         strchr.
24471         * m4/readtokens.m4 (gl_READTOKENS): Don't check for standard C
24472         headers, memory.h, string.h.
24473         * m4/regex.m4 (jm_PREREQ_REGEX): Do not check for limits.h, string.h.
24474         * m4/rename.m4 (gl_PREREQ_RENAME): Do not check for stdlib.h, string.h,
24475         free.
24476         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Don't check for standard C
24477         headers.
24478         * m4/same.m4 (gl_SAME): Don't check for stdlib.h, string.h, free.
24479         * m4/save-cwd.m4 (gl_SAVE_CWD): Don't check for standard C headers.
24480         * m4/savedir.m4 (gl_SAVEDIR): Don't check for standard C headers.
24481         * m4/strchrnul.m4 (gl_PREREQ_STRCHRNUL): Don't check for string.h.
24482         * m4/xgetcwd.m4 (gl_XGETCWD): Don't check for stdlib.h.
24483
24484 2003-09-09  Paul Eggert  <eggert@twinsun.com>
24485
24486         More K&R removal.
24487
24488         * lib/acosl.c (main): Use a prototype.
24489         * lib/asinl.c, cosl.c, expl.c, frexpl.c, ldexpl.c, sinl.c,
24490         tanl.c: Likewise.
24491
24492         * lib/getloadavg.c (getloadavg, main): Define via prototypes.
24493
24494         * lib/getopt.h (struct option.name): Assume C89, and use 'const'.
24495         (getopt, etopt_long, getopt_long_only, _getopt_internal)
24496         [defined __GNU_LIBRARY__]: Assume C89, so we can always declare
24497         with a prototype.
24498         * lib/getopt.c (const): Remove macro.
24499         Include <string.h> unconditionally.
24500         (my_index): Remove; all uses changed to strchr.
24501         (strlen): Remove decl.
24502         (exchange): Remove forward decl; no longer needed.
24503         (exchange, _getopt_initialize, _getopt_internal, getopt, main):
24504         Define with prototype.
24505         * lib/getopt1.c (const): Remove macro.
24506         (getopt_long, getopt_long_only, main): Define with prototype.
24507
24508         * lib/getugroups.c: Include <string.h> unconditionally.
24509
24510         * lib/getusershell.c: Include <stdlib.h> unconditionally.
24511         (getusershell, setusershell, endusershell, readname, main):
24512         Define with prototypes.
24513
24514         * lib/group-member.c: Include group-member.h first.
24515         Include <stdlib.h> unconditionally.
24516
24517         * lib/hard-locale.c: Include hard-locale.h first.
24518         Include <stdlib.h>, <string.h> unconditionally.
24519
24520         * lib/hash.c (free, malloc): Remove decls.
24521         Include <stdlib.h> unconditionally.
24522
24523         * lib/human.c: Include <stdlib.h>, <string.h> unconditionally.
24524         (getenv): Do not declare.
24525
24526         * lib/idcache.c: Include <string.h> unconditionally.
24527
24528         * lib/long-options.c: Include long-options.h first, to test interface.
24529         Include <stdlib.h> unconditionally.
24530
24531         * lib/makepath.c: Include makepath.h first, to test interface.
24532         Include <stdlib.h> and <string.h> unconditionally.
24533
24534         * lib/linebuffer.c: Include <stdlib.h>.
24535         (free): Remove decl.
24536
24537         * lib/malloc.c: Include <stdlib.h>, for malloc; don't bother with
24538         stddef.h. rpl_malloc returns void *, not char *.
24539         * lib/realloc.c (rpl_realloc): Likewise.  Also, define with a
24540         prototype.
24541
24542         * lib/md5.h: Include <limits.h> unconditionally.
24543         (UINT_MAX_32_BITS): Don't worry about non-__STDC__ case.
24544         (__P): Remove; all uses removed.
24545         * lib/md5.c: Include "md5.h" first.
24546         (md5_init_ctx, md5_read_ctx, md5_finish_ctx, md5_stream,
24547         md5_buffer, md5_process_bytes, md5_process_block):
24548         Define with prototypes.
24549         * lib/sha.h (__P): Remove all uses.  (It wasn't defined??)
24550         * lib/sha.c: Include "sha.h" first.
24551         Include <stdlib.h>, <string.h> unconditionally.
24552
24553         * lib/memchr.c (__ptr_t): Remove; all uses changed to void *.
24554         * lib/memcmp.c (__ptr_t): Likewise.
24555         * lib/memrchr.c (__ptr_t): Likewise.
24556         * lib/memchr.c, memcmp.c, memcoll.c, memrchr.c:
24557         Include <string.h> unconditionally.
24558         * lib/memchr.c, memrchr.c: Include <limits.h> unconditionally.
24559         * lib/memchr.c: Include <stdlib.h> unconditionally.
24560         * lib/memchr.c (LONG_MAX): Remove.
24561         * lib/memrchr.c (LONG_MAX): Likewise.
24562         * lib/memchr.c (__memchr): Define via a prototype.
24563         * lib/memrchr.c (__memrchr): Likewise.
24564         * lib/memcmp.c (__P): Remove, and remove all uses.
24565         (memcmp_bytes, memcmp_common_alignment, memcmp_not_common_alignment):
24566         Remove forward decls; no longer needed.
24567         * lib/memcpy.c, memmove.c, memset.c: Include <stddef.h>.
24568         Use types required by C89 in prototype.
24569
24570         * lib/mkdir.c: Include <stdlib.h>, <string.h> unconditionally.
24571         * lib/savedir.c: Likewise.
24572         * lib/mkdir.c (free): Remove decl.
24573         * lib/rmdir.c (rmdir): Define with a prototype.
24574         * lib/savedir.c: Include savedir.h first, to test interface.
24575
24576         * lib/mktime.c (STDC_HEADERS): Remove.
24577         Include <stdlib.h>, <string.h> unconditionally.
24578
24579         * lib/modechange.c: Include <stdlib.h> unconditionally.
24580         (malloc): Remove decl.
24581
24582         * lib/mountlist.c: Include <stdlib.h>, <string.h> unconditionally.
24583         (free): Remove decl.
24584
24585         * lib/obstack.h (PTR_INT_TYPE) [!defined __PTRDIFF_TYPE__]:
24586         Define to ptrdiff_t, without bothering to check HAVE_STDDEF_H.
24587         (This type really should be intptr_t, but that's a C99ism.)
24588         (_obstack_memcpy): Remove: all uses changed to memcpy.
24589         Include <string.h> unconditionally.
24590         (struct obstack): Assume __STDC__ for types of members
24591         chunkfun, freefun, extra_arg.
24592         (_obstack_newchunk, _obstack_free, _obstack_begin, _obstack_begin_1,
24593         _obstack_memory_used, obstack_alloc_failed_handler, obstack_init,
24594         obstack_begin, obstack_specify_allocation,
24595         obstack_specify_allocation_with_arg, obstack_chunkfun,
24596         obstack_freefun, obstack_free) [! (defined __STDC__ && __STDC__)]:
24597         Remove unprototyped decls and the macros that use them.
24598         * lib/obstack.c (POINTER): Remove.  All uses changed to void *.
24599         (obstack_alloc_failed_handler, CALL_CHUNKFUN, CALL_FREEFUN,
24600         _obstack_begin, _obstack_begin_1, _obstack_allocated_p)
24601         (defined __STDC__ && __STDC__)]:
24602         Remove nonprototyped code.
24603         Include <stdlib.h> unconditionally.
24604         (_obstack_begin, _obstack_begin_1, _obstack_newchunk,
24605         _obstack_allocated_p, _obstack_free, obstack_free,
24606         _obstack_memory_used, print_and_abort):
24607         Define using prototypes.
24608         (obstack_1grow, obstack_1grow_fast, obstack_alloc, obstack_base,
24609         obstack_blank, obstack_blank_fast, obstack_copy, obstack_copy0,
24610         obstack_finish, obstack_grow, obstack_grow0, obstack_make_room,
24611         obstack_next_free, obstack_object_size, obstack_room) [0]:
24612         Remove unused, unprototyped code.
24613
24614         * lib/path-concat.c: Include <stdlib.h>, <string.h> unconditionally.
24615
24616         * lib/physmem.c (physmem_total, physmem_available, main): Define
24617         with prototypes.
24618
24619         * lib/posixtm.c: Include <stdlib.h>, <string.h> unconditionally.
24620         (main): Define with a prototype.
24621
24622         * lib/posixver.c (getenv): Remove decl.
24623
24624         * lib/putenv.c (malloc): Returns void *, not char *.
24625         Include <string.h> unconditionally.
24626         (strchr, memcpy, NULL): Do not define.
24627
24628         * lib/readtokens.c: Include readtokens.h first, to test interface.
24629         Include <stdlib.h>, <string.h> unconditionally.
24630         (init_tokenbuffer): Define with a prototype.
24631
24632         * lib/regex.c (PARAMS): Remove.  All uses removed.
24633         All uses of _RE_ARGS removed, too.
24634         Include <stddef.h>, <stdlib.h>, <string.h>, <limits.h>
24635         unconditionally.
24636         (bzero): Assume memset exists.
24637         (memcmp, memcpy, NULL): Remove.
24638         (SIGN_EXTEND_CHAR): Remove; all uses replaced by casts to signed
24639         char, or assignments to local vars of type signed char.
24640         (init_syntax_once, PREFIX(extract_number_and_incr),
24641         PREFIX(print_partial_compiled_pattern),
24642         PREFIX(print_compiled_pattern), PREFIX(print_double_string),
24643         convert_mbs_to_wcs, print_fastmap, re_set_syntax,
24644         PREFIX(regex_grow_registers), PREFIX(regex_compile),
24645         PREFIX(store_op1), PREFIX(store_op2), PREFIX(insert_op1),
24646         PREFIX(insert_op2), PREFIX(at_begline_loc_p),
24647         PREFIX(at_endline_loc_p), group_in_compile_stack, insert_space,
24648         wcs_compile_range, byte_compile_range, truncate_wchar,
24649         PREFIX(re_compile_fastmap), re_compile_fastmap, re_set_registers,
24650         re_search, re_search_2, PREFIX(re_search_2), re_match, re_match_2,
24651         count_mbs_length, wcs_re_match_2_internal,
24652         byte_re_match_2_internal, PREFIX(group_match_null_string_p),
24653         PREFIX(alt_match_null_string_p),
24654         PREFIX(common_op_match_null_string_p), PREFIX(bcmp_translate),
24655         re_compile_pattern, re_comp, re_exec, regcomp, regexec, regerror,
24656         regfree, PREFIX(extract_number)): Define with prototype.  Remove
24657         now-unnecessary declaration, if any.
24658         (byte_compile_range, PREFIX(regex_compile), re_comp, re_exec,
24659         regcomp, regexec):
24660         Remove now-unnecessary casts among pointer types.
24661         * lib/regex.h (_RE_ARGS): Remove.  All uses removed.
24662
24663         * lib/rename.c: Include <stdlib.h>, <string.h> unconditionally.
24664         (free): Remove decl.
24665
24666         * lib/rpmatch.c: Include <stdlib.h> unconditionally.
24667
24668         * lib/same.c: Include <stdlib.h>, <string.h> unconditionally.
24669         (free): Remove decl.
24670
24671         * lib/save-cwd.c: Include <stdlib.h> unconditionally.
24672         * lib/xgetcwd.c: Likewise.
24673
24674         * lib/stat.c: Include <stdlib.h>, <string.h> unconditionally.
24675         (free): Remove decl.
24676
24677         * lib/strchrnul.c (strchrnul): Define with a prototype.
24678         Fix bug: c_in was not converted to char before searching.
24679
24680         The following changes are not K&R related:
24681
24682         * lib/group-member.h: Include <sys/types.h>, so that this file is
24683         self-contained.
24684         * lib/makepath.h: Likewise.
24685
24686         * lib/getusershell.c (readname, default_index, line_size, readname):
24687         Use size_t, not int, for sizes.
24688         (readname): If the size overflows, report an error instead of
24689         looping forever.
24690
24691 2003-09-09  Paul Eggert  <eggert@twinsun.com>
24692
24693         * config/srclist.txt: Do not get getopt.h, getopt1.c, or regex.h from
24694         libc.
24695
24696 2003-09-09  Paul Eggert  <eggert@twinsun.com>
24697
24698         * README: New section: portability guidelines.
24699
24700 2003-09-09  Derek Robert Price  <derek@ximbiot.com>
24701
24702         * m4/getndelim2.m4 (gl_PREREQ_GETNDELIM2): Assume stdlib.h per the
24703         C89 spec.
24704
24705 2003-09-09  Derek Robert Price  <derek@ximbiot.com>
24706
24707         * lib/getndelim2.c: Assume stdlib.h per the C89 spec.
24708
24709 2003-09-08  Paul Eggert  <eggert@twinsun.com>
24710
24711         Assume C89 or better; remove K&R cruft.
24712         A few of these changes were first proposed by Derek Robert Price
24713         in <http://mail.gnu.org/archive/html/bug-gnulib/2003-07/msg00105.html>.
24714
24715         * lib/addext.c: Include <string.h> unconditionally.
24716         * lib/backupfile.c: Include <string.h>, <stdlib.h> unconditionally.
24717         Don't declare getenv or malloc.
24718
24719         * lib/alloca.c: Include <string.h>, <stdlib.h> unconditionally.
24720         (POINTER_TYPE, pointer): Remove; all uses changed to void *.
24721         (NULL): Remove.
24722         (find_stack_direction, alloca): Use prototypes.
24723
24724         * lib/atexit.c (atexit): Define using a prototype.
24725
24726         * lib/basename.c, dirname.c, stripslash.c:
24727         Include <string.h> unconditionally.
24728
24729         * lib/bcopy.c: Include <stddef.h>.
24730         (bcopy): Define with prototype, using 'const' and 'void' and 'size_t'.
24731
24732         * lib/canon-host.c: Include <stdlib.h>, <string.h> unconditionally.
24733
24734         * lib/error.h (error, error_at_line, error_print_progname)
24735         [! (defined (__STDC__) && __STDC__)]: Remove decls.
24736         * lib/error.c: Include error.h first, to check interface.
24737         Include <stdarg.h>, <stdlib.h>, <string.h> unconditionally.
24738         (VA_START): Remove; all uses changeed to va_start.
24739         (exit, strerror): Remove decls.
24740         (error_print_progname): Prototype uncondionally.
24741         Don't include <errno.h>; no longer needed.
24742         (private_strerror): Remove.
24743         (error_tail): Always define.
24744         (error, error_at_line): Assume C89 or better; always use prototypes.
24745         * lib/fatal.c: Include "fatal.h" first, to test interface.
24746         Include <stdarg.h>, <stdlib.h>, <string.h> unconditionally.
24747         (VA_START): Remove; all uses changed to va_start.
24748         [! (HAVE_VPRINTF || HAVE_DOPRNT || _LIBC)]: Remove support for
24749         this case.
24750         (exit): Remove decl.
24751         (fatal): Prototype unconditionally.  Assume va_start works.
24752         Abort at end, to pacify gcc.
24753
24754         * lib/euidaccess.c (main): Define with a prototype.
24755
24756         * lib/exclude.c: Include <stdlib.h>, <string.h> unconditionally.
24757
24758         * lib/exitfail.c: Include <stdlib.h> unconditionally.
24759
24760         * lib/fnmatch_.h (__P): Remove.  All uses changed to assume
24761         prototypes.
24762         * lib/fnmatch.c: Include fnmatch.h first, to test interface.
24763         Include <string.h>, <stddef.h>, <stdlib.h> unconditionally.
24764         (getenv): Remove decl.
24765         (fnmatch): Define using a prototype.
24766         * lib/fnmatch_loop.c (FCT): Remove forward decl; no longer needed.
24767         (FCT): Define using a prototype.
24768
24769         * lib/getdate.y: Include <stdlib.h>, <string.h> unconditionally.
24770
24771         * lib/gethostname.c: Include <stddef.h>.
24772         (gethostname): Define with prototype.  Length is size_t, not int.
24773
24774 2003-09-08  Paul Eggert  <eggert@twinsun.com>
24775
24776         Assume C89 or better; remove K&R cruft.
24777         * m4/alloca.m4 (gl_PREREQ_ALLOCA): Don't check for stdlib.h, string.h.
24778         * m4/backupfile.m4 (gl_BACKUPFILE): Don't check for stdlib.h,
24779         string.h, getenv, malloc.
24780         * m4/dirname.m4 (gl_DIRNAME): Don't check for string.h or C standard
24781         headers.
24782         * m4/canon-host.m4 (gl_CANON_HOST): Don't check for string.h, stdlib.h.
24783         * m4/error.m4 (jm_PREREQ_ERROR): Do not require STDC headers, and
24784         do not check for strerror.
24785         * m4/exclude.m4: Do not check for stdlib.h, string.h, strings.h.
24786         * m4/exitfail.m4 (gl_EXITFAIL): Do not check for stdlib.h.
24787         * m4/fatal.m4 (gl_FATAL): Do not require STDC headers, and
24788         do not check for doprnt or vprintf.
24789         * m4/fnmatch.m4 (gl_PREREQ_FNMATCH_EXTRA): Remove.  All uses removed.
24790         * m4/getdate.m4 (gl_GETDATE): Don't check for stdlib.h or string.h.
24791
24792 2003-09-08  Paul Eggert  <eggert@twinsun.com>
24793
24794         * lib/getversion.c: Remove; was migrated to backupfile.c in 1997.
24795         getversion.c should have been removed then, but was accidentally
24796         preserved.
24797
24798         * lib/utime.c [!HAVE_UTIMES_NULL]: Include <sys/stat.h>, <fcntl.h>.
24799         (utime_null): Fix typo: 'st' was sometimes called 'sb'.
24800
24801 2003-09-08  Karl Berry  <karl@gnu.org>
24802
24803         * config/config.sub, config.guess, srclistvars.sh: update from savannah
24804                 config, forget about prep.
24805
24806         * config/depcomp, missing: update from automake.
24807
24808 2003-09-07  Paul Eggert  <eggert@twinsun.com>
24809
24810         * modules/time_r: Depend on 'restrict'.  Fix from Simon Josefsson in
24811         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00028.html>.
24812
24813 2003-09-07  Paul Eggert  <eggert@twinsun.com>
24814
24815         * lib/time_r.c (gmtime_r, localtime_r): Fix silly typo: missing arg to
24816         copy_tm_result.  Bug reported by Simon Josefsson in
24817         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00028.html>.
24818
24819 2003-09-06  Paul Eggert  <eggert@twinsun.com>
24820
24821         * m4/time_r.m4: New file.
24822         * m4/mktime.m4 (gl_PREREQ_MKTIME): Remove check for limits.h.
24823         * m4/timegm.m4 (gl_FUNC_TIMEGM): Assume that timegm is buggy if mktime
24824         is. Check for timegm declaration.
24825         (gl_PREREQ_TIMEGM): Require gl_FUNC_MKTIME.
24826         Do not check for gmtime_r.
24827         Replace mktime if __mktime_internal does not exist and if mktime
24828         hasn't been replaced already.
24829
24830 2003-09-06  Paul Eggert  <eggert@twinsun.com>
24831
24832         * lib/time_r.c, lib/time_r.h: New files.
24833
24834         * lib/mktime.c (my_mktime_localtime_r): Remove; all uses changed to
24835         __localtime_r.
24836         (__localtime_r) [!defined _LIBC]: New macro.  Include <time_r.h>.
24837         (__mktime_internal) [!defined _LIBC]: Now extern, not static.
24838
24839         * lib/strftime.c (my_strftime_gmtime_r): Remove; all uses changed to
24840         __gmtime_r.
24841         (my_strftime_localtime_r): Remove; all uses changed to __localtime_r.
24842         (__gtime_r, __localtime_r) [!HAVE_TM_GMTOFF]: New macros.
24843         Include <time_r.h>.
24844
24845         * lib/timegm.c: Switch to glibc implementation, with the following
24846         changes:
24847         [defined HAVE_CONFIG_H]: Include <config.h>.
24848         [!defined _LIBC]: Include "timegm.h" rather than <time.h>.
24849         (__mktime_internal) [!defined _LIBC]: New decl.
24850         (__gmtime_r) [!defined _LIBC]: New macro and function.
24851         (timegm): Use a prototype, since gnulib assumes C89.
24852         Do not bother declaring tmp to be const, as it's not really usefu.
24853         * lib/timegm.h: Hoist "#include <time.h>" out of #ifdef.
24854         (timegm): Declare only if HAVE_DECL_TIMEGM.
24855
24856 2003-09-06  Paul Eggert  <eggert@twinsun.com>
24857
24858         * MODULES.html.sh (func_all_modules): Add time_r.
24859         * modules/time_r: New file.
24860         * modules/mktime, modules/strftime, modules/timegm: Depend on time_r.
24861         * modules/timegm: Depend on mktime.  Change maintainer to "all, glibc".
24862
24863 2003-09-03  Paul Eggert  <eggert@twinsun.com>
24864
24865         * lib/human.c (human_readable): Fix bug that rounded 10501 to 10k.
24866         Bug reported by Lute Kamstra in
24867         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00003.html>.
24868
24869         * lib/getdate.y (relative_time_table): Use tDAY_UNIT for "tomorrow",
24870         "yesterday", "today", and "now" rather than tMINUTE_UNIT.  Of
24871         course with correspondingly smaller numbers for tomorrow and
24872         yesterday.  From Tadayoshi Funaba.  Originally installed into
24873         sh-utils on 1999-08-07, but the patch got lost (I guess during the
24874         coreutils merge?).
24875
24876 2003-08-31  Simon Josefsson  <jas@extundo.com>
24877
24878         * modules/timegm: New file.
24879         * MODULES.html.sh (func_all_modules): Add timegm.
24880
24881 2003-08-31  Simon Josefsson  <jas@extundo.com>
24882
24883         * m4/timegm.m4: New file.
24884
24885 2003-08-31  Simon Josefsson  <jas@extundo.com>
24886
24887         * lib/timegm.h: New file.
24888         * lib/timegm.c: New file.  Based on
24889         wget-1.8.2/src/http.c:mktime_from_utc.
24890
24891 2003-08-31  Karl Berry  <karl@gnu.org>
24892
24893         * lib/argp.h: update from libc.
24894
24895 2003-08-28  Bruno Haible  <bruno@clisp.org>
24896
24897         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Remove AC_DEFINE of fnmatch here.
24898         This avoids havoc on compilers for which '#define fnmatch rpl_fnmatch'
24899         followed by '#define fnmatch fnmatch_posix' gives an error.
24900
24901 2003-08-28  Bruno Haible  <bruno@clisp.org>
24902
24903         * lib/binary-io.h: Undefine O_BINARY before defining it. This avoids a
24904         warning on QNX, which defines O_BINARY to 000000.
24905
24906 2003-08-27  Jim Meyering  <jim@meyering.net>
24907
24908         * m4/mkstemp.m4: Require that the system mkstemp be able to create
24909         70 temporary files, not just 30.  Tru64 V4.0F's mkstemp function
24910         would fail after 32.  Reported by Danny Levinson.  Details here:
24911         http://mail.gnu.org/archive/html/bug-coreutils/2003-08/msg00124.html
24912
24913 2003-08-24  Bruno Haible  <bruno@clisp.org>
24914
24915         * lib/binary-io.h: Include <stdio.h>, to avoid a compilation error when
24916         MSVC7 <stdio.h> is included later.
24917
24918 2003-08-22  Simon Josefsson  <jas@extundo.com>
24919
24920         * modules/strndup (Makefile.am): Add strndup.h to lib_SOURCES.
24921
24922 2003-08-20  Karl Berry  <karl@gnu.org>
24923
24924         * m4/lib-ld.m4: serial 1003 from gettext, no changes besides serial.
24925
24926 2003-08-20  Bruno Haible  <bruno@clisp.org>
24927
24928         * modules/progname: New file.
24929         * MODULES.html.sh (func_all_modules): Add progname.
24930
24931 2003-08-20  Bruno Haible  <bruno@clisp.org>
24932
24933         * lib/progname.h: New file, from GNU gettext.
24934         * lib/progname.c: New file, from GNU gettext.
24935         * lib/progreloc.c: New file, from GNU gettext.
24936
24937 2003-08-19  Jim Meyering  <jim@meyering.net>
24938
24939         * m4/lib-ld.m4: Revert yesterday's change, per Bruno's request here:
24940         http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00155.html
24941
24942 2003-08-19  Bruno Haible  <bruno@clisp.org>
24943
24944         * m4/xalloc.m4 (gl_PREREQ_XSTRDUP): Don't check for <string.h> any
24945         more.
24946
24947 2003-08-19  Bruno Haible  <bruno@clisp.org>
24948
24949         * lib/xstrdup.c: Assume <string.h> exists.
24950
24951 2003-08-18  Paul Eggert  <eggert@twinsun.com>
24952
24953         * modules/stdbool: Add BUILT_SOURCES.  Prefer $@ to target name
24954         in makefile rules.
24955
24956 2003-08-18  Jim Meyering  <jim@meyering.net>
24957
24958         * m4/getloadavg.m4: Use [\t ], not [ \t] (where \t is a literal TAB).
24959         * m4/lib-ld.m4: Likewise.
24960
24961 2003-08-18  Jim Meyering  <jim@meyering.net>
24962
24963         * lib/setenv.h: Indent nested cpp directive.
24964         * lib/vasnprintf.c: Remove trailing blanks.
24965
24966 2003-08-17  Simon Josefsson  <jas@extundo.com>
24967
24968         * modules/xstrndup: New file.
24969         * MODULES.html.sh (func_all_modules): Add xstrndup.
24970
24971 2003-08-17  Simon Josefsson  <jas@extundo.com>
24972
24973         * modules/argp: Fix autoconf macro name. Add more dependencies.
24974
24975 2003-08-17  Simon Josefsson  <jas@extundo.com>
24976
24977         * m4/xstrndup.m4: New file.
24978
24979 2003-08-17  Simon Josefsson  <jas@extundo.com>
24980
24981         * m4/argp.m4: New file.
24982
24983 2003-08-17  Simon Josefsson  <jas@extundo.com>
24984             Bruno Haible  <bruno@clisp.org>
24985
24986         * lib/xstrndup.h: New file.
24987         * lib/xstrndup.c: New file.
24988
24989 2003-08-17  Bruno Haible  <bruno@clisp.org>
24990
24991         * modules/strndup (Files, Include): Add lib/strndup.h.
24992
24993 2003-08-17  Bruno Haible  <bruno@clisp.org>
24994
24995         * modules/euidaccess (Files): Add lib/euidaccess.h.
24996
24997 2003-08-17  Bruno Haible  <bruno@clisp.org>
24998
24999         * lib/strndup.h: New file.
25000
25001 2003-08-17  Bruno Haible  <bruno@clisp.org>
25002
25003         * gnulib-tool (func_create_testdir): Handle gl_USE_SYSTEM_EXTENSIONS
25004         like AC_GNU_SOURCE.
25005         * modules/extensions (configure.ac): Comment out the invocation of
25006         gl_USE_SYSTEM_EXTENSIONS.
25007
25008 2003-08-16  Paul Eggert  <eggert@twinsun.com>
25009
25010         Merges from coreutils, etc.
25011         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Insert ':' to prevent a syntax
25012         error in gl_FUNC_MATCH.  This fixes a bug I introduced on 2003-05-28.
25013         * m4/readlink.m4 (gl_PREREQ_READLINK): Renamed from gl_PREREQ_READLINE,
25014         fixing a typo.
25015         * m4/host-os.m4 (UTILS_HOST_OS): Add GNU/NetBSD, GNU/FreeBSD.
25016         * m4/hash.m4 (gl_HASH): Use AM_STDBOOL_H, not AC_HEADER_STDBOOL.
25017
25018 2003-08-16  Paul Eggert  <eggert@twinsun.com>
25019
25020         Document merge from coreutils.
25021         * modules/alloca: Append $(ALLOCA_H) to BUILT_SOURCES.
25022         * modules/fnmatch: Append $(FNMATCH_H) to BUILT_SOURCES.
25023         * modules/utime: Add m4/utimes-null.m4.
25024
25025 2003-08-16  Paul Eggert  <eggert@twinsun.com>
25026
25027         * lib/regex.h, strdup.c, strtoll.c, strtoul.c: Do not normalize white
25028         space, undoing this 2003-08-12 change:
25029         <http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00080.html>
25030
25031 2003-08-16  Paul Eggert  <eggert@twinsun.com>
25032
25033         * config/srclist.txt: Get regex.h, strdup.c, strtoll.c,
25034         strtoul.c from libc, undoing this 2003-08-12 change:
25035         <http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00080.html>
25036
25037 2003-08-16  Jim Meyering  <jim@meyering.net>
25038
25039         Merges from coreutils.
25040         * m4/readdir.m4 (GL_FUNC_READDIR): Change name to have GL_ (not jm_)
25041         prefix.  Adjust cache variables similarly.  Create 500 rather than
25042         just 300 files, to exercise bug on Darwin6.5, too.
25043         * m4/perl.m4 (jm_PERL): Use $am_missing_run, not undefined
25044         $missing_dir.
25045         * m4/jm-winsz1.m4: Require AC_SYS_POSIX_TERMIOS, not
25046         AM_SYS_POSIX_TERMIOS.
25047         Reported by mkc@mathdogs.com.
25048         Also change use of $am_cv_sys_posix_termios
25049         to $ac_cv_sys_posix_termios.  Reported by Andreas Schwab.
25050         * m4/getgroups.m4 (jm_FUNC_GETGROUPS): Rewrite to use AC_FUNC_GETGROUPS
25051         and (if needed) to call AC_LIBOBJ and to set GETGROUPS_LIB.
25052         * m4/fsusage.m4 [__GLIBC__]: GNU libc's statvfs stats each mount point
25053         in /proc/mounts until it finds one with matching device number.  This
25054         is unnecessary when the FILE argument *is* a mount point.  No stat call
25055         is necessary in that case.  So, disable the statvfs-testing code on
25056         systems with GNU libc.  Reported by Andrei Gaponenko via Tim Waugh
25057         as RedHat bug# 84846.
25058         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Limit stack size
25059         to 1MB, so as not to render systems with no stack size limit (e.g.,
25060         linux-2.2.x) unusable.  Suggestion and code from Bruno Haible.
25061         Include <unistd.h>.  On some systems,
25062         it is required for the definition of _SC_PAGESIZE.
25063
25064 2003-08-16  Jim Meyering  <jim@meyering.net>
25065
25066         Merge from coreutils.
25067         * lib/xstrtoimax.c: #else #if -> #elif.
25068         * lib/xstrtoumax.c: Likewise.
25069
25070 2003-08-16  Jim Meyering  <jim@meyering.net>
25071
25072         * m4/utimes.m4 (gl_FUNC_UTIMES): New file.
25073         * m4/utimes.m4: Removed.
25074         * m4/utimes-null.m4: Renamed from utimes.m4.
25075
25076         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Limit stack size
25077         to 1MB, so as not to render systems with no stack size limit (e.g.,
25078         linux-2.2.x) unusable.  Suggestion and code from Bruno Haible.
25079         Include <unistd.h>.  On some systems,
25080         it is required for the definition of _SC_PAGESIZE.
25081
25082 2003-08-16  Jim Meyering  <jim@meyering.net>
25083         and Paul Eggert  <eggert@cs.ucla.edu>
25084
25085         Merges from coreutils, etc.
25086
25087         * m4/jm-macros.m4 (AC_LANG_SOURCE(C)): New macro, undefine, then define
25088         using the latest version from cvs.  This avoids problems with #line
25089         directives using a vendor (Sun) compiler.
25090         (jm_MACROS): Bump prerequisite from 2.52g to 2.57.
25091         Don't set GETGROUPS_LIB here; now it's
25092         done via getgroups.m4's wrapper function.
25093         AC_SUBST OPTIONAL_BIN_PROGS, OPTIONAL_BIN_ZCRIPTS, and MAN here,
25094         rather than just in sh-util/configure.in, so that the
25095         now-shared-by-fileutils-and-textutils lib/Makefile.am are all the
25096         same.
25097         Use AC_CONFIG_LIBOBJ_DIR(lib) to tell the new
25098         AC_FUNC_GETLOADAVG where to find getloadavg.c.
25099         Require AC_FUNC_FTW, gt_INTTYPES_PRI, gl_CLOCK_TIME,
25100         UTILS_SYS_OPEN_MAX, GL_FUNC_GETCWD_PATH_MAX, GL_FUNC_READDIR,
25101         gl_FSUSAGE, gl_MOUNTLIST, AC_FUNC_CANONICALIZE_FILE_NAME.
25102         Remove code that is now done by the newly-required macros.
25103         Append $(EXEEXT) to DF_PROG.
25104         AC_LIBOBJ fchdir-stub if fchdir doesn't exist; similarly for fchown.
25105         Do not invoke or require the following here,
25106         since prereq.m4 or some gnulib .m4 now does this for us:
25107         gl_REGEX, UTILS_FUNC_MKDIR_TRAILING_SLASH, jm_BISON, gl_FUNC_MKTIME,
25108         jm_FUNC_LSTAT, jm_FUNC_STAT, jm_FUNC_REALLOC, jm_FUNC_MALLOC,
25109         jm_FUNC_NANOSLEEP, jm_FUNC_READDIR, jm_FUNC_MEMCMP,
25110         jm_FUNC_GLIBC_UNLOCKED_IO, AC_FUNC_FNMATCH_GNU, jm_FUNC_PUTENV,
25111         jm_AC_PREREQ_XSTRTOUMAX, jm_AC_PREREQ_XSTRTOIMAX,
25112         AC_FUNC_ERROR_AT_LINE, jm_FUNC_GNU_STRFTIME, AC_FUNC_VPRINTF,
25113         vb_FUNC_RENAME, UTILS_FUNC_MKSTEP, jm_FUNC_UTIME, AM_FUNC_GETLINE,
25114         AC_FUNC_OBSTACK.
25115         Do not replace the following functions, as this is now the job
25116         of some gnulib .m4: strcasecmp, strncasecmp, dup2, gethostname,
25117         getusershell, sig2str, strcspn, stpcpy, strstr, strtol, strtoul
25118         strpbrk, euidaccess, memcmp, rmdir, rpmatch, strndup, strverscmp,
25119         atexit getpass, strdup, getpagesize.
25120         Replace 'raise'.
25121         Do not check for the following functions, as this is now the job
25122         of some gnulib .m4: bcopy, canonicalize_file_name, fchdir, ftime,
25123         getcwd, getmntinfo, resolvepath.  But check for sysctl, setreuid,
25124         setregid.
25125         (jm_CHECK_ALL_HEADERS): Do not check for fenv.h.
25126         Check for sys/sysctl.h.
25127         (jm_CHECK_ALL_TYPES): Do not require AC_STRUCT_TM, AC_STRUCT_TIMEZONE,
25128         jm_CHECK_TYPE_STRUCT_TIMESPEC.  Invoke gt_TYPE_SSIZE_T instead
25129         of checking for ssize_t ourselves.
25130
25131         * m4/prereq.m4 (jm_PREREQ): Don't invoke macros; AC_REQUIRE them.
25132         Require every macro that gnulib/modules/* suggests for us.
25133         (jm_PREREQ_ADDEXT): New macro.
25134         (jm_PREREQ_STAT): Check for 'struct statfs' on Ultrix 4.4.
25135         Require jm_AC_TYPE_LONG_LONG instead of invoking it.
25136
25137         * m4/physmem.m4 (gl_SYS__SYSTEM_CONFIGURATION): New macro.
25138         (gl_PHYSMEM): Use it.
25139         Also check for `table' function.
25140         Check for new headers and functions.
25141         Add check for sys/sysmp.h.
25142         With suggestions from Kaveh Ghazi.
25143         Ignore headers that are present but cannot be compiled.  This
25144         avoids spurious warnings on Solaris 9 sparc with Forte Developer 7
25145         C 5.4.
25146
25147 2003-08-15  Paul Eggert  <eggert@twinsun.com>
25148
25149         Document merge from coreutils.
25150         * modules/userspec: Depend on posixver.
25151         * modules/strftime: Depend on tzset.
25152
25153 2003-08-15  Paul Eggert  <eggert@twinsun.com>
25154
25155         * lib/config.charset, ref-add.sin, ref-del.sin: Use three spaces,
25156         rather than tab, after '#' in shell-script copyright notices.
25157         Suggested by Bruno Haible.
25158
25159 2003-08-15  Paul Eggert  <eggert@twinsun.com>
25160
25161         * config/srclist-update: Use three spaces, rather than tab, after '#'
25162         in shell-script copyright notices.  Suggested by Bruno Haible.
25163         Remove unnecessary parenthesization in regular expression.
25164
25165 2003-08-15  Jim Meyering  <jim@meyering.net>
25166
25167         Merge from coreutils.
25168         * lib/xgethostname.c: Include <stdlib.h>.
25169         (xghostname): Don't exit for anything other than memory-related
25170         failure; just return NULL.
25171         * lib/userspec.c: Include "posixver.h".
25172         (parse_user_spec): Accept `.' as a separator only
25173         in pre-POSIX-200112 mode.
25174         * lib/strtoimax.c: Use #elif rather than #else #if.
25175         * lib/strftime.c (my_strftime) [!_LIBC && HAVE_TZNAME && HAVE_TZSET]:
25176         Remove function, now that we can rely on a working tzset function.
25177         [!_LIBC]: Ensure that the required autoconf test has been run.
25178         [!defined _NL_CURRENT && HAVE_STRFTIME]:
25179         Use underlying_strftime for %r.
25180         * lib/sha.c: Merge in some clean-up and optimization changes from
25181         glibc.
25182         * lib/sha.c (sha_stream) [BLOCKSIZE]: Move definition to top of file.
25183         Ensure that it is a multiple of 64.
25184         Rearrange loop exit tests so as to avoid performing an
25185         additional fread after encountering an error or EOF.
25186         * lib/realloc.c: Update copyright date.
25187
25188 2003-08-15  Jim Meyering  <jim@meyering.net>
25189         and Paul Eggert  <eggert@twinsun.com>
25190
25191         Merge from coreutils.
25192         * lib/readutmp.h (HAVE_UTMPX_H): Undef if struct utmp has the ut_exit
25193         member but strut utmpx does not.  Needed for AIX 4.3.3.
25194         (UT_EXIT_E_TERMINATION, UT_EXIT_E_EXIT): Define.
25195
25196 2003-08-15  Jim Meyering  <jim@meyering.net>
25197         and Paul Eggert  <eggert@cs.ucla.edu>
25198
25199         Merges from coreutils, etc.
25200         * m4/strftime.m4 (_jm_STRFTIME_PREREQS):
25201         Require gl_FUNC_TZSET_CLOBBER.
25202         * m4/readutmp.m4 (gl_READUTMP): Check for ut_exit.ut_exit,
25203         ut_exit.e_exit, ut_exit.ut_termination, and ut_exit.e_termination
25204         members.
25205
25206 2003-08-14  Paul Eggert  <eggert@twinsun.com>
25207
25208         Help the merge from coreutils.
25209         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): New macro.
25210         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Use it.
25211         * m4/tzset.m4: Use it too.
25212
25213 2003-08-14  Paul Eggert  <eggert@twinsun.com>
25214
25215         * modules/tzset: New file.
25216
25217 2003-08-14  Jim Meyering  <jim@meyering.net>
25218
25219         Merges from coreutils.
25220         * modules/fnmatch: Use the `$(FNMATCH_H)' notation for AC_REPLACED
25221         variable names, rather than @FNMATCH_H@.
25222         * modules/alloca: Likewise for $(ALLOCA_H).
25223
25224         * modules/fnmatch (fnmatch.h): Use `$@' in the commands, in place of
25225         the three copies of the literal target, `fnmatch.h'.
25226         * modules/alloca (alloca.h): Likewise.
25227
25228 2003-08-14  Jim Meyering  <jim@meyering.net>
25229
25230         Merge from coreutils.
25231         * m4/tzset.m4: New file.
25232         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Move the
25233         MOUNTED_VMOUNT test to precede the MOUNTED_GETMNTENT1 tests, since
25234         otherwise, AIX 5.1 systems would end up using the latter.
25235         MOUNTED_GETMNTENT1 support is inadequate on such systems: 1) detecting
25236         whether a file system is remote doesn't work  2) the MOUNTED_VMOUNT
25237         code reports the HOSTNAME:/MOUNT_POINT, while the MOUNTED_GETMNTENT1
25238         code reports merely /MOUNT_POINT.  Reported by Mike Jetzer.
25239
25240 2003-08-14  Jim Meyering  <jim@meyering.net>
25241
25242         Merge from coreutils.
25243         * lib/obstack.h: Whitespace changes.
25244         * lib/mountlist.c: Remove anachronistic casts of xmalloc, xrealloc,
25245         and xcalloc return values.
25246         (read_filesystem_list) [MOUNTED_GETFSSTAT]:
25247         Use MNT_NOWAIT, rather than MNT_WAIT.  Otherwise, `df DIR' could
25248         hang on OSF/1 5.1 for DIR on both local and remote file systems.
25249         Reported by (and fix confirmed by) Nelson H. F. Beebe.
25250         (read_filesystem_list) [MOUNTED_VMOUNT]: Detect any
25251         error from mntctl.
25252         Use mntctl's return value to drive the entry-processing loop, since
25253         we can't rely on the value of the vmt_length member in the last
25254         entry.  On some systems doing so could result in exhausting
25255         virtual memory.  Based in part on a patch from Mike Jetzer.
25256
25257 2003-08-14  Jim Meyering  <jim@meyering.net>
25258         and Paul Eggert  <eggert@twinsun.com>
25259
25260         Merges from coreutils, plus other fixes.
25261         * lib/physmem.c: Merge in portability changes from gcc/libiberty
25262         to support AIX, IRIX, Tru64, and Windows.  See the ChangeLog there
25263         for credits and details.  Thanks to Kaveh Ghazi for helping
25264         to keep these files in sync.
25265         (ARRAY_SIZE): Define it.
25266         (physmem_total, physmem_available): Add comments. From Kaveh Ghazi.
25267         * lib/memcasecmp.c: Remove unnecessary parentheses after 'defined'.
25268         (memcasecmp): Don't assume size_t fits in unsigned int.
25269         Remove casts and duplicate code.
25270         * lib/md5.c: Include <string.h> and <stdlib.h> unconditionally.
25271         (memcpy): Remove definition.
25272         Merge in some clean-up and optimization changes from glibc.
25273         [BLOCKSIZE]: Move definition to top of file.
25274         Ensure that it is a multiple of 64.
25275         Rearrange loop exit tests so as to avoid performing an
25276         additional fread after encountering an error or EOF.
25277         * lib/md5.h (md5_uintptr): Define.
25278         * lib/makepath.c (CLEANUP_CWD): Report an error if we failed to
25279         return to the initial working directory.  Preserve errno
25280         for caller.
25281         * lib/idcache.c: Include "xalloc.h".
25282         (xmalloc, xrealloc): Remove decls.
25283         (getuser): Remove casts no longer required in C89.
25284         * lib/human.c: Include stdio.h, for sprintf.
25285         * lib/group-member.c: Include "xalloc.h".
25286         (xmalloc, xrealloc): Remove decls.
25287         (get_group_info): Remove casts no longer required in C89.
25288         * lib/getusershell.c (readname): Remove casts no longer required in
25289         C89.
25290         * lib/gettimeofday.c (rpl_gmtime, rpl_tzset): New functions.
25291         * lib/getline.c: Whitespace fix, from coreutils.
25292
25293 2003-08-13  Paul Eggert  <eggert@twinsun.com>
25294
25295         * m4/exclude.m4 (gl_EXCLUDE): Require AC_C_INLINE, AC_HEADER_STDC.
25296         Check for isascii.
25297
25298         * m4/gettext.m4, iconv.m4, intdiv0.m4, inttypes-pri.m4, lib-link.m4,
25299         lib-prefix.m4, longdouble.m4, po.m4, progtest.m4, signed.m4:
25300         Undo previous (whitespace-only) change.
25301
25302 2003-08-13  Paul Eggert  <eggert@twinsun.com>
25303
25304         * lib/exclude.c: Include <ctype.h>
25305         (IN_CTYPE_DOMAIN): New macro.
25306         (is_space): New fn.
25307         (add_exclude_file): If LINE_END is a space, ignore trailing spaces
25308         and empty lines.
25309
25310         * lib/argp-help.c, argp-parse.c, config.charset, getopt.h:
25311         Undo previous (whitespace-only) change.
25312
25313 2003-08-13  Paul Eggert  <eggert@twinsun.com>
25314
25315         * config/srclist-update: Change update back to the old behavior,
25316         leaving whitespace alone.  Use one 'sed' command rather than a
25317         pipeline.
25318         (fixlicense): Now a variable, not a function.
25319         (remove_trailing_blanks): Remove.
25320         (fixfile): Don't invoke unexpand or cat, or remove trailing blanks.
25321         * config/config.guess, config.sub, install-sh, missing, texinfo.tex:
25322         Undo previous (whitespace-only) change.
25323
25324 2003-08-12  Paul Eggert  <eggert@twinsun.com>
25325
25326         Merge from coreutils.
25327         * modules/euidaccess: Add lib_SOURCES, include for new
25328         file euidaccess.h
25329
25330 2003-08-12  Paul Eggert  <eggert@twinsun.com>
25331
25332         * m4/gettext.m4, iconv.m4, intdiv0.m4, inttypes-pri.m4, lib-link.m4,
25333         lib-prefix.m4, longdouble.m4, po.m4, progtest.m4, signed.m4:
25334         Normalize leading white space and remove trailing white space.
25335
25336         Merge from coreutils
25337         * m4/euidaccess.m4 (gl_FUNC_EUIDACCESS): Check for euidaccess decl.
25338
25339         * m4/lib-ld.m4, lib-link.m4, lib-prefix.m4: Regenerate from gettext
25340         0.12.1.  These files are now being upgraded automatically by
25341         ../config/srclist-update.
25342
25343 2003-08-12  Paul Eggert  <eggert@twinsun.com>
25344
25345         * lib/argp-help.c, argp-parse.c, config.charset, getopt.h:
25346         Normalize leading white space and remove trailing white space.
25347         * lib/ref-add.sin, ref-del.sin: Use '#' before empty line in copyright
25348         notice, as per ../config/srclist-update.
25349
25350         Merge from coreutils.
25351         * lib/euidaccess.h: New file.
25352         * lib/euidaccess.c: Include it.
25353         * lib/.cppi-disable: Add printf-args.h, printf-parse.h, stdbool_.h,
25354         vasnprintf.h, vasprintf.h.  Remove strdup.c, gettext.h.
25355         * lib/regex.h, strdup.c, strtoll.c, strtoul.c: Normalize white space.
25356
25357 2003-08-12  Paul Eggert  <eggert@twinsun.com>
25358
25359         * config/srclist-update: Add copyright notice.
25360         (remove_id_lines, remove_trailing_blanks): New constants.
25361         (fixfile): Use them to normalize spacing a bit in copied files.
25362         * config/config.guess, config.sub, install-sh, missing, texinfo.tex:
25363         Normalize leading white space and remove trailing white space.
25364
25365         * config/texinfo.tex: Sync with texinfo.
25366
25367         * config/srclist.txt: Don't get regex.h, strdup.c, strtoll.c,
25368         strtoul.c from libc, to merge coreutils whitespace changes.
25369
25370         * config/srclist.txt: Get the following m4 files from gettext:
25371         codeset.m4, gettext.m4, glibc21.m4, iconv.m4, intdiv0.m4,
25372         inttypes-pri.m4, lcmessage.m4, lib-ld.m4, lib-link.m4, lib-prefix.m4,
25373         longdouble.m4, nls.m4, po.m4, progtest.m4, signed.m4, wchar_t.m4,
25374         wint_t.m4.
25375
25376 2003-08-12  Karl Berry  <karl@gnu.org>
25377
25378         * config/srclist.txt: can't sync vasnprintf.c any more, changes have
25379         been made.
25380
25381 2003-08-11  Paul Eggert  <eggert@twinsun.com>
25382
25383         * modules/gnu-source, m4/gnu-source.m4:
25384         Remove; we're assuming Autoconf 2.54 or later now.
25385         Suggested by Bruno Haible.
25386         * MODULES.html.sh (func_all_modules): Remove gnu-source.
25387
25388 2003-08-11  Bruno Haible  <bruno@clisp.org>
25389
25390         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF): Also check for wcslen.
25391
25392 2003-08-11  Bruno Haible  <bruno@clisp.org>
25393
25394         * lib/vasnprintf.c (local_wcslen): New function, for Solaris 2.5.1.
25395         (vasnprintf): Use it instead of wcslen.
25396
25397 2003-08-11  Bruno Haible  <bruno@clisp.org>
25398
25399         * lib/stdbool_.h (_Bool): Undo last change; instead use a negative enum
25400         value to ensure that _Bool promotes to int. Use #define for _Bool when
25401         using the Solaris C compiler. Adds comments suggested by Paul Eggert.
25402
25403 2003-08-10  Karl Berry  <karl@gnu.org>
25404
25405         * lib/regex.h: update from libc (whitespace fix).
25406
25407 2003-08-09  Paul Eggert  <eggert@twinsun.com>
25408
25409         Merge some files from coreutils.  These changes were
25410         originally made by Jim Meyering.
25411         * lib/acl.c: Include <sys/types.h> before <sys/stat.h>;
25412         many older Unixes require this.
25413         * lib/alloca.c (alloca): Remove cast to argument of free;
25414         no longer needed in C89.
25415         * lib/alloca_.h, regex.h: Fix white space to match
25416         what GNU indent does.
25417
25418 2003-08-09  Paul Eggert  <eggert@twinsun.com>
25419
25420         * m4/regex.m4 (jm_INCLUDED_REGEX): Change "\201" to "\371";
25421         apparently Emacs's Unicode mode got confused before my 2003-08-05
25422         checkin.
25423
25424 2003-08-08  Paul Eggert  <eggert@twinsun.com>
25425
25426         * m4/extensions.m4: New file.
25427         * m4/timespec.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC):
25428         Require gl_USE_SYSTEM_EXTENSIONS.
25429         * m4/unlocked-io.m4 (jm_FUNC_GLIBC_UNLOCKED_IO):
25430         Require gl_USE_SYSTEM_EXTENSIONS rather than AC_GNU_SOURCE.
25431
25432 2003-08-08  Paul Eggert  <eggert@twinsun.com>
25433
25434         * MODULES.html.sh (func_all_modules): Add extensions, gnu-source.
25435         * modules/extensions, modules/gnu-source: New files.
25436         * modules/timespec, modules/unlocked-io: Depend on extensions.
25437
25438 2003-08-07  Paul Eggert  <eggert@twinsun.com>
25439
25440         * modules/restrict: New file.
25441         * MODULES.html.sh (func_all_modules): Add restrict.
25442         * modules/regex: Depend on restrict.
25443
25444 2003-08-07  Paul Eggert  <eggert@twinsun.com>
25445
25446         * m4/restrict.m4: New file.
25447         * m4/regex.m4 (jm_PREREQ_REGEX): Add gl_C_RESTRICT.
25448
25449 2003-08-07  Bruno Haible  <bruno@clisp.org>
25450
25451         * modules/getndelim2 (Makefile.am): Add the files to EXTRA_DIST, not
25452         lib_SOURCES, because getndelim2.m4 now uses AC_LIBOBJ(getndelim2).
25453
25454 2003-08-07  Bruno Haible  <bruno@clisp.org>
25455
25456         * m4/getndelim2.m4 (gl_GETNDELIM2): Use AC_LIBOBJ(getndelim2). This
25457         makes the module 'getndelim2' compatible with the module 'getline'.
25458
25459 2003-08-05  Paul Eggert  <eggert@twinsun.com>
25460
25461         * m4/regex.m4 (jm_INCLUDED_REGEX): Replace a single non-ASCII
25462         byte with "\201" to avoid glitches when editing that source file
25463         with multi-gnome-terminal.
25464
25465 2003-08-05  Paul Eggert  <eggert@twinsun.com>
25466
25467         * lib/bumpalloc.h: Remove.
25468
25469 2003-08-05  Paul Eggert  <eggert@twinsun.com>
25470
25471         * MODULES.html.sh (func_all_modules): Remove bumpalloc.
25472         * modules/bumpalloc: Remove.
25473
25474 2003-08-04  Paul Eggert  <eggert@twinsun.com>
25475
25476         * lib/getloadavg.c: Change copyright notice and spacing to conform to
25477         GNU coding style.
25478
25479         Merge from coreutils.
25480         * lib/error.c [!USE_IN_LIBIO]: Omit this case; assume USE_IN_LIBIO is
25481         1. From glibc.
25482         * lib/getdate.y (date): Also accept dates like May-23-2003; suggestion
25483         from Karl Berry, implemented by Jim Meyering.
25484         * lib/getgroups.c: Include "xalloc.h" instead of declaring xalloc fns;
25485         from Dmitry V. Levin.
25486         Remove anachronistic cast of xrealloc.
25487         * lib/fnmatch_.h (__const): Remove.  Use 'const'.
25488         * lib/fnmatch_loop.c (NEW_PATTERN): Cast alloca return value to proper
25489         type. Otherwise, it wouldn't compile with at least /bin/cc on
25490         ymp-cray-unicos9.0.2.X.
25491         Combine two mostly-identical uses of alloca into one.
25492         Thanks to the Cray-Cyber project for access to a Cray Y-MP.
25493
25494 2003-08-04  Dave Love  <d.love@dl.ac.uk>
25495
25496         [From Emacs.]
25497
25498         * lib/getloadavg.c: Check `__unix' as well as `unix'.  Use #ifdef, not
25499         #if.  Check HAVE_LIBKSTAT as well as LOAD_AVE_TYPE.  Check
25500         F_SETFD, not FD_SETFD.  Use HAVE_STRUCT_NLIST_N_UN_N_NAME, not
25501         obsolete NLIST_NAME_UNION.
25502         [__GNU__]: Undef BSD and FSCALE.
25503         [!NLIST_STRUCT]: Remove conditional definition of NLIST_STRUCT.
25504
25505 2003-08-03  Paul Eggert  <eggert@twinsun.com>
25506
25507         * lib/stdbool_.h (_Bool): Make it signed char, instead of
25508         an enum type, so that it's guaranteed to promote to int.  See:
25509         <http://mail.gnu.org/archive/html/bug-gnulib/2003-07/msg00124.html>
25510
25511 2003-08-03  Karl Berry  <karl@gnu.org>
25512
25513         * config/depcomp: update from automake.
25514
25515 2003-07-31  Paul Eggert  <eggert@twinsun.com>
25516
25517         * lib/strerror.c: Include config.h, limits.h.  Declare sprintf.
25518         (strerror): Don't assume that a printable int fits in 14 bytes.
25519
25520 2003-07-31  Bruno Haible  <bruno@clisp.org>
25521
25522         * modules/getpass-gnu: New file.
25523         * MODULES.html.sh (func_all_modules): Add getpass-gnu.
25524
25525 2003-07-31  Bruno Haible  <bruno@clisp.org>
25526
25527         * m4/getpass.m4 (gl_FUNC_GETPASS_GNU): New macro.
25528
25529 2003-07-24  Karl Berry  <karl@gnu.org>
25530
25531         * config/missing: update from automake.
25532
25533 2003-07-24  Derek Robert Price  <derek@ximbiot.com>
25534             Bruno Haible  <bruno@clisp.org>
25535
25536         * lib/getline.h (getline, getdelim): Change return type to ssize_t.
25537         * lib/getline.c (getline, getdelim): Likewise.
25538         Remove _GNU_SOURCE define; now it's defined in config.h through
25539         m4/getline.m4.
25540
25541 2003-07-23  Karl Berry  <karl@gnu.org>
25542
25543         * config/config.sub: update from prep.
25544
25545 2003-07-22  Paul Eggert  <eggert@twinsun.com>
25546
25547         * modules/xalloc (Depends-on): Add exitfail.
25548         * modules/xmemcoll: Likewise.
25549
25550 2003-07-22  Paul Eggert  <eggert@twinsun.com>
25551
25552         * lib/xalloc.h (XCALLOC, XREALLOC, CCLONE): Fix under- and
25553         over-parenthesization in macros.
25554
25555         Sync with coreutils.
25556
25557         * lib/xalloc.h (XMALLOC, XCALLOC, XREALLOC): Remove casts not
25558         required by C99.
25559
25560         Use `exit_failure' for xalloc and xmemcoll instead of their own
25561         private exit-failure variables.
25562         * lib/xalloc.h (xalloc_exit_failure): Remove.
25563         * lib/xmalloc.c: Likewise.  Include exitfail.h.
25564         (xalloc_die): Use exit_failure instead of xalloc_exit_failure.
25565         * lib/xmemcoll.h (xmemcoll_exit_failure): Remove.
25566         * lib/xmemcoll.c: Likewise.  Include exitfail.h.
25567         (xmemcoll): Use exit_failure instead of xalloc_exit_failure.
25568
25569 2003-07-20  Jim Meyering  <jim@meyering.net>
25570
25571         * modules/closeout (Depends-on): Add exitfail.
25572         Suggestion from Bruno Haible.
25573
25574 2003-07-19  Karl Berry  <karl@gnu.org>
25575
25576         * config/config.sub: update from prep.
25577
25578 2003-07-18  Paul Eggert  <eggert@twinsun.com>
25579
25580         * lib/closeout.h (close_stdout_set_status, close_stdout_status):
25581         Remove.
25582         * lib/closeout.c: Likewise.  Include "closeout.h" right after config.h,
25583         to test that it can stand by itself.  Include "exitfail.h".
25584         Clients should set exit_failure instead.
25585         (EXIT_FAILURE): Remove; no longer needed.  Do not include <stdlib.h>.
25586
25587 2003-07-18  Bruno Haible  <bruno@clisp.org>
25588
25589         * modules/getndelim2: New file.
25590         * modules/getline: Share files with module getndelim2.
25591         * modules/getnline: Depend on getndelim2 instead of sharing files with
25592         it. Add getnline.c to lib_SOURCES.
25593         * MODULES.html.sh (func_all_modules): Add getndelim2.
25594
25595 2003-07-18  Bruno Haible  <bruno@clisp.org>
25596
25597         * m4/getndelim2.m4: New file.
25598         * m4/getline.m4 (AM_FUNC_GETLINE): Add AC_LIBOBJ of getndelim2.c and
25599         invoke gl_PREREQ_GETNDELIM2.
25600         (gl_PREREQ_GETLINE): Drop AC_HEADER_STDC, now done by
25601         gl_PREREQ_GETNDELIM2.
25602         * m4/getnline.m4 (gl_GETNLINE): Drop AC_HEADER_STDC, now done by
25603         gl_GETNDELIM2.
25604
25605 2003-07-18  Bruno Haible  <bruno@clisp.org>
25606
25607         * lib/getndelim2.h: New file.
25608         * lib/getndelim2.c: Make into a module of its own. Include config.h,
25609         getndelim2.h.
25610         (getndelim2): Make non-static. Change return type to ssize_t.
25611         * lib/getline.h: Change argument names.
25612         * lib/getline.c: Include getndelim2.h instead of getndelim2.c.
25613         * lib/getnline.c: Include getndelim2.h.
25614
25615 2003-07-18  Andreas Schwab  <schwab@suse.de>
25616
25617         * lib/memcoll.c (memcoll) [!HAVE_STRCOLL]: Clear errno.
25618
25619 2003-07-17  Karl Berry  <karl@gnu.org>
25620
25621         * config/config.sub: update from prep.
25622
25623 2003-07-17  Bruno Haible  <bruno@clisp.org>
25624
25625         * modules/getnline: New file.
25626         * modules/getline: Add lib/getndelim2.c to source file list.
25627         * MODULES.html.sh (func_all_modules): Add getnline.
25628
25629 2003-07-17  Bruno Haible  <bruno@clisp.org>
25630
25631         * m4/getnline.m4: New file.
25632
25633 2003-07-17  Bruno Haible  <bruno@clisp.org>
25634
25635         * m4/Makefile.am.in: Remove file.
25636         * m4/Makefile.am: Remove file.
25637         * m4/Makefile.in: Remove file.
25638
25639 2003-07-17  Bruno Haible  <bruno@clisp.org>
25640
25641         * lib/getnline.h: New file.
25642         * lib/getnline.c: New file.
25643         * lib/getndelim2.c: New file, extracted from getline.c.
25644         (getndelim2): Renamed from getdelim2, with added nmax argument.
25645         * lib/getline.c: Include getndelim2.c.
25646         (getdelim2): Moved out to getndelim2.c.
25647         (getline, getdelim): Update.
25648
25649 2003-07-17  Bruno Haible  <bruno@clisp.org>
25650
25651         * lib/Makefile.am: Remove file.
25652         * lib/Makefile.in: Remove file.
25653
25654 2003-07-17  Bruno Haible  <bruno@clisp.org>
25655
25656         * configure.in: Remove file.
25657         * Makefile.in: Remove file.
25658
25659 2003-07-17  Bruno Haible  <bruno@clisp.org>
25660
25661         * MODULES.html.sh: Put the </BODY> right before </HTML>.
25662
25663 2003-07-16  Karl Berry  <karl@gnu.org>
25664
25665         * config/srclist-update: was running fixlicense twice, which caused
25666                 texinfo.tex to be nullified for some reason.  Simplify,
25667                 $gplsrc is no longer needed as far as I can see?
25668
25669 2003-07-16  Jim Meyering  <jim@meyering.net>
25670
25671         * modules/save-cwd: Depend on xgetcwd.  From Derek Price.
25672
25673 2003-07-15  Paul Eggert  <eggert@twinsun.com>
25674
25675         * config/srclist.txt: Get the following files from gettext-runtime/intl
25676         instead: config.charset, localcharset.c, localcharset.h, ref-add.sin,
25677         ref-del.sin.  From Bruno Haible.
25678         * config/srclist-update (fixfile): Change grep pattern again, since the
25679         previous fix didn't work (there was another trailing $).  Use
25680         '[$]' to escape the $s.
25681
25682 2003-07-15  Karl Berry  <karl@gnu.org>
25683
25684         * lib/vasnprintf.c: update from gettext.
25685
25686 2003-07-15  Karl Berry  <karl@gnu.org>
25687
25688         * config/srclist-update (fixfile): Change grep pattern, since 'Id'
25689         gets expanded when surrounded by '$'.
25690
25691 2003-07-15  Jim Meyering  <jim@meyering.net>
25692
25693         * modules/save-cwd: Don't depend on error.  From Derek Price.
25694
25695 2003-07-15  Jim Meyering  <jim@meyering.net>
25696
25697         * lib/makepath.c (make_path): Enclose diagnostic in _(...).
25698
25699 2003-07-14  Simon Josefsson  <jas@extundo.com>
25700
25701         * modules/mempcpy: New file.
25702         * MODULES.html.sh (func_all_modules): Add mempcpy.
25703
25704 2003-07-14  Simon Josefsson  <jas@extundo.com>
25705
25706         * m4/mempcpy.m4: New file.
25707
25708 2003-07-14  Simon Josefsson  <jas@extundo.com>
25709
25710         * lib/mempcpy.h: New file.
25711         * lib/mempcpy.c: New file.
25712
25713 2003-07-14  Paul Eggert  <eggert@twinsun.com>
25714
25715         * modules/getdate, modules/posixtm: Depend on mktime.
25716
25717 2003-07-14  Paul Eggert  <eggert@twinsun.com>
25718
25719         * lib/ceill.c, expl.c, floorl.c, frexpl.c, ldexpl.c, mathl.h,
25720         sincosl.c, sqrtl.c, trigl.c, trigl.h, poll.c, poll_.h, mkstemp.c,
25721         unicodeio.c, unicodeio.h, unlocked-io.h:
25722         Switch from LGPL to GPL.
25723
25724 2003-07-14  Paul Eggert  <eggert@twinsun.com>
25725
25726         * lib/asnprintf.c, asprintf.c, config.charset, gettext.h,
25727         localcharset.c, localcharset.h, mkdtemp.c, printf-args.c,
25728         printf-args.h, printf-parse.c, printf-parse.h, ref-add.sin,
25729         ref-del.sin, setenv.c, unsetenv.c, vasnprintf.c, vasnprintf.h,
25730         vasprintf.c, vasprintf.h: Regenerate.  These files are now being
25731         updated automatically by ../config/srclist-update.  This changes
25732         their license from LPGL to GPL.
25733
25734 2003-07-14  Paul Eggert  <eggert@twinsun.com>
25735
25736         * config/srclist.txt: Add tons more gettext files.  $GETTEXT is now
25737         assumed to refer to the root of the most recent stable gettext version.
25738         * config/srclistvars.sh: Add defaults for eggert.
25739         * config/srclist-update: Convert LGPL to GPL in shell scripts, too.
25740         Match "This program" as well as "The program".  This is needed
25741         for gettext.
25742
25743 2003-07-14  Jim Meyering  <jim@meyering.net>
25744
25745         Don't emit diagnostics.  Let callers do that.
25746         * lib/save-cwd.c: Don't include "error.h".
25747         (save_cwd): Don't call error.  Ensure that errno is valid
25748         when returning nonzero.
25749
25750         * lib/save-cwd.h (restore_cwd): Update prototype.
25751         * lib/save-cwd.c (restore_cwd): Remove two parameters.
25752         Simplify.  Don't call error upon failure.  Let callers do that.
25753         (save_cwd): Mention that Irix 5.3 has the same problem as SunOS 4
25754         when auditing is enabled.  But don't bother updating the #if.
25755
25756 2003-07-11  Alexandre Duret-Lutz  <adl@gnu.org>
25757
25758         * lib/obstack.h (__INT_TO_PTR): Revert change of 2003-03-13;
25759         it breaks C++ compilation.
25760         [!__GNUC__ || !__STDC__] (obstack_finish): Cast result to void*.
25761
25762 2003-07-10  Simon Josefsson  <jas@extundo.com>
25763
25764         * modules/strchrnul (Makefile.am): Add strchrnul.h.
25765
25766 2003-07-10  Jim Meyering  <jim@meyering.net>
25767
25768         * m4/clock_time.m4: Remove trailing blank.
25769         * m4/intmax_t.m4: Likewise.
25770
25771 2003-07-10  Jim Meyering  <jim@meyering.net>
25772
25773         * lib/vasnprintf.c: Remove trailing blanks.
25774         Make cpp indentation consistent.
25775
25776 2003-07-09  Paul Eggert  <eggert@twinsun.com>
25777
25778         * lib/alloca_.h, euidaccess.c, getpass.c, memrchr.c, obstack.h,
25779         posixver.c, strftime.c, strnlen.c, strverscmp.c:
25780         Switch from LGPL to GPL.
25781
25782 2003-07-09  Paul Eggert  <eggert@twinsun.com>
25783
25784         * config/srclist.txt: Sort sublists.  Add
25785         $LIBCSRC/sysdeps/generic/strtoul.c. In comments, add more libc files
25786         that differ from gnulib for one reason or another; we'd like this list
25787         to be smaller but for now let's document what we have.
25788
25789 2003-07-08  Paul Eggert  <eggert@twinsun.com>
25790
25791         * config/srclist-update: Port to POSIX 1003.1-2001 hosts by avoiding
25792         the use of GNU extensions.  Change "x=`eval echo $x`" to the shorter
25793         and sweeter "eval x=$x".
25794         * config/srclist.txt: Get lib/argp* from glibc.
25795
25796 2003-07-07  Paul Eggert  <eggert@twinsun.com>
25797
25798         * lib/mktime.c: Fix some boundary cases and remove need for floating
25799         point.
25800
25801         Issue a compile-time diagnostic if time_t is floating point, or if
25802         two's complement arithmetic is not in effect, or if arithmetic
25803         right shift does not propagate the sign.  These assumptions were
25804         all in the original code but they weren't checked.
25805
25806         (TIME_T_MIDPOINT, verify): New macros.
25807         (__isleap): Remove; it has integer overflow problems.
25808         (leapyear): New function, without those problems.
25809         (ydhms_tm_diff): Remove; splitting into two parts.
25810         (ydhms_diff): New function, containing the arithmetic part of
25811         the old ydhms_tm_diff function.  Issue a compile-time
25812         diagnostic if we are not using C99 integer division.
25813         Avoid casts when possible.
25814         (guess_time_tm): New function, containing the checking part of
25815         the old ydhms_tm_diff function.  Return the new value, rather than
25816         the difference between it and the old.  Accept a new argument T
25817         so that *T specifies the old value.  Check for overflow in the result.
25818
25819         (__mktime_internal): Use a time_t offset, not a long int offset.
25820         This undoes the 2003-06-04 change, which is no longer needed now
25821         that we have better overflow checking.
25822         (localtime_offset): Likewise.
25823
25824         (__mktime_internal): Avoid harmful overflow on hosts where time_t
25825         and long are 64-bit but int is only 32-bit.
25826         (ydhms_diff): Use long int to store year1 and yday1.
25827         Issue a compile-time diagnostic if long int is not wide enough.
25828
25829         (__mktime_internal): Use long int to store adjusted year and yday.
25830         Use plain C rather than preprocessor commands, if that doesn't
25831         affect efficiency.
25832         Check for overflow (and try to repair) after each probe
25833         rather than checking only at the very end.  This avoids some bugs
25834         (e.g., southern hemisphere, behind GMT, and GMT offset at minimum time
25835         does not equal GMT offset at maximum time).
25836         Use integer to check for overflow rather than floating point; this
25837         is more portable to non-IEEE hosts, and is a tad faster.
25838         When we detect that we are oscillating between two values,
25839         don't check whether tm_isdst has the requested value, since
25840         we already know the answer.  When tm_isdst has the wrong value,
25841         use a different heuristic to find the right one, based on the
25842         extreme values actually observed in practice in tz2003a,
25843         rather than the (overly optimistic) "previous 3 calendar quarters".
25844
25845         (not_equal_tm, print_tm, check_result): Use "const T" rather than
25846         "T const" to accommodate glibc style.
25847         (check_result): Use less-confusing report format.  "long" -> "long int.
25848         (main): Likewise.
25849         Don't loop if the iteration overflows time_t.
25850         Allow a negative step in the iteration.
25851
25852 2003-07-06  Karl Berry  <karl@gnu.org>
25853
25854         * config/depcomp: update from automake.
25855         * config/config.sub: update from prep.
25856
25857 2003-07-03  Karl Berry  <karl@gnu.org>
25858
25859         * config/config.guess: update from prep.
25860
25861 2003-07-01  Paul Eggert  <eggert@twinsun.com>
25862
25863         * m4/xreadlink.m4 (gl_XREADLINK): Don't check for sys/types.h, since
25864         xreadlink.c now includes it unconditionally.
25865
25866 2003-07-01  Paul Eggert  <eggert@twinsun.com>
25867
25868         * lib/xreadlink.c: Include <sys/types.h> unconditionally, instead of
25869         having it depend on HAVE_SYS_TYPES_H.
25870
25871 2003-07-01  Bruno Haible  <bruno@clisp.org>
25872
25873         * m4/ssize_t.m4 (gt_TYPE_SSIZE_T): Don't include <unistd.h>.
25874         <sys/types.h> should be sufficient.
25875         Reported by Paul Eggert.
25876
25877 2003-06-26  Karl Berry  <karl@gnu.org>
25878
25879         * config/depcomp: update from automake.
25880
25881 2003-06-26  Bruno Haible  <bruno@clisp.org>
25882
25883         * modules/human: Depend on module stdbool.
25884
25885 2003-06-25  Bruno Haible  <bruno@clisp.org>
25886
25887         * modules/readlink: New file.
25888         * modules/xreadlink: Depend on it.
25889         * MODULES.html.sh (func_all_modules): Add readlink.
25890
25891 2003-06-25  Bruno Haible  <bruno@clisp.org>
25892
25893         * m4/readlink.m4: New file.
25894
25895 2003-06-25  Bruno Haible  <bruno@clisp.org>
25896
25897         * lib/readlink.c: New file.
25898
25899 2003-06-22  Karl Berry  <karl@gnu.org>
25900
25901         * config/srclist.txt: update mkinstalldirs from automake.
25902         * config/mkinstalldirs: update.
25903
25904 2003-06-22  Bruno Haible  <bruno@clisp.org>
25905
25906         Portability to mingw32.
25907         * m4/ssize_t.m4: New file, from GNU gettext.
25908         * m4/safe-read.m4 (gl_PREREQ_SAFE_READ): Require gt_TYPE_SSIZE_T.
25909         * m4/xreadlink.m4 (gl_XREADLINK): Require gt_TYPE_SSIZE_T.
25910
25911 2003-06-22  Bruno Haible  <bruno@clisp.org>
25912
25913         * modules/safe-read: Add m4/ssize_t.m4.
25914         * modules/xreadlink: Add m4/ssize_t.m4.
25915
25916 2003-06-20  Bruno Haible  <bruno@clisp.org>
25917
25918         Assume C89, so PARAMS isn't needed.
25919         * lib/unicodeio.h (PARAMS): Remove.
25920         * lib/unicodeio.c: Don't use PARAMS.
25921
25922 2003-06-18  Karl Berry  <karl@gnu.org>
25923
25924         * config/config.{guess,sub}: update from prep.
25925
25926 2003-06-18  Jim Meyering  <jim@meyering.net>
25927
25928         Merge changes from coreutils.
25929         * lib/readutmp.c: Include <string.h> and <stdlib.h> unconditionally.
25930         Remove explicit declarations of xmalloc and realloc.
25931         Include xalloc.h.
25932         (read_utmp): Remove anachronistic cast of xmalloc.
25933
25934 2003-06-17  Paul Eggert  <eggert@twinsun.com>
25935
25936         Assume C89, so PARAMS isn't needed.
25937         * lib/backupfile.h (PARAMS): Remove.  All uses removed.
25938         * lib/closeout.h, lib/dirname.h, lib/filemode.h, lib/fsusage.h,
25939         lib/getdate.h, lib/getline.h, lib/group-member.h, lib/hard-locale.h,
25940         lib/hash.h, lib/linebuffer.h, lib/long-options.h, lib/makepath.h,
25941         lib/memcasecmp.h, lib/memcoll.h, lib/modechange.h, lib/mountlist.h,
25942         lib/path-concat.h, lib/physmem.h, lib/posixtm.h, lib/quote.h,
25943         lib/readutmp.h, lib/same.h, lib/save-cwd.h, lib/savedir.h,
25944         lib/stdio-safer.h, lib/strtoimax.c, lib/strverscmp.h,
25945         lib/unistd-safer.h, lib/version-etc.h, lib/xalloc.h, lib/xreadlink.h,
25946         lib/xstrtod.h, lib/xstrtol.h: Likewise.
25947         * lib/filemode.h, lib/hard-locale.h, lib/memcoll.h, lib/modechange.h,
25948         lib/physmem.h, lib/same.h, lib/strverscmp.h: Do not include config.h;
25949         no longer needed. Anyway, config.h should always be included before any
25950         other file.
25951
25952 2003-06-11  Simon Josefsson  <jas@extundo.com>
25953
25954         * modules/sysexits: New file.
25955         * MODULES.html.sh (func_all_modules): Add sysexits.
25956
25957 2003-06-11  Simon Josefsson  <jas@extundo.com>
25958
25959         * lib/sysexit_.h: New file.
25960
25961 2003-06-11  Derek Price  <derek@ximbiot.com>
25962
25963         * lib/stat.c [LSTAT]: Compile/use slash_aware_lstat only if it is
25964         necessary.
25965
25966 2003-06-11  Bruno Haible  <bruno@clisp.org>
25967
25968         * m4/sysexits.m4: New file.
25969
25970 2003-06-10  Simon Josefsson  <jas@extundo.com>
25971
25972         * lib/argp.h: New file, from glibc.
25973         * lib/argp-ba.c: New file, from glibc.
25974         * lib/argp-eexst.c: New file, from glibc.
25975         * lib/argp-fmtstream.c: New file, from glibc.
25976         * lib/argp-fmtstream.h: New file, from glibc.
25977         * lib/argp-fs-xinl.c: New file, from glibc.
25978         * lib/argp-help.c: New file, from glibc.
25979         * lib/argp-namefrob.h: New file, from glibc.
25980         * lib/argp-parse.c: New file, from glibc.
25981         * lib/argp-pv.c: New file, from glibc.
25982         * lib/argp-pvh.c: New file, from glibc.
25983         * lib/argp-xinl.c: New file, from glibc.
25984
25985 2003-06-10  Simon Josefsson  <jas@extundo.com>
25986
25987         * modules/strchrnul: New file.
25988
25989 2003-06-10  Simon Josefsson  <jas@extundo.com>
25990
25991         * modules/argp: New file.
25992
25993 2003-06-10  Simon Josefsson  <jas@extundo.com>
25994
25995         * m4/strchrnul.m4: New file.
25996
25997 2003-06-10  Simon Josefsson  <jas@extundo.com>
25998
25999         * lib/strchrnul.h: New file.
26000         * lib/strchrnul.c: New file.
26001
26002 2003-06-10  Bruno Haible  <bruno@clisp.org>
26003
26004         * MODULES.html.sh (func_all_modules): Add strchrnul and argp.
26005
26006 2003-06-07  Karl Berry  <karl@gnu.org>
26007
26008         * config/config.{guess,sub}: update from prep.
26009
26010 2003-06-07  Jim Meyering  <jim@meyering.net>
26011
26012         * modules/strtod: Use $(...) notation, not @...@ for
26013         AC_REPLACE'd variables.
26014         * modules/localcharset: Likewise.
26015
26016 2003-06-07  Jim Meyering  <jim@meyering.net>
26017
26018         * lib/readtokens.h: Put `Free Software Foundation, Inc.'
26019         in place of my name in the copyright comment.
26020         Remove definition and uses of __P.
26021
26022         From coreutils.
26023         * lib/stat.c: Don't declare xmalloc explicitly.
26024         Instead, include "xalloc.h".
26025         * lib/readtokens.c (readtokens): Remove anachronistic casts of xmalloc,
26026         xrealloc, and xcalloc return values.
26027         * lib/xgetcwd.c (xgetcwd): Include "xgetcwd.h".
26028         Improve comment.
26029         * lib/xgetcwd.h: Remove definition/uses of PARAMS.
26030
26031 2003-06-07  Bruno Haible  <bruno@clisp.org>
26032
26033         * modules/poll (Makefile.am): Use explicit creation rule for poll.h, to
26034         avoid AC_CONFIG_LINKS.
26035         * modules/fnmatch (Makefile.am): Use explicit creation rule for
26036         fnmatch.h, to avoid AC_CONFIG_LINKS.
26037         * modules/alloca (Makefile.am): Make creation of alloca.h Ctrl-C safe.
26038
26039 2003-06-07  Bruno Haible  <bruno@clisp.org>
26040
26041         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH, gl_FUNC_FNMATCH_POSIX,
26042         gl_FUNC_FNMATCH_GNU): Set FNMATCH_H instead of invoking
26043         AC_CONFIG_LINKS. Needed to allow for a different name of the lib
26044         directory.
26045         * m4/poll.m4 (gl_FUNC_POLL): Set POLL_H instead of invoking
26046         AC_CONFIG_LINKS. Needed to allow for a different name of the lib
26047         directory.
26048
26049 2003-06-06  Jim Meyering  <jim@meyering.net>
26050
26051         Merge from coreutils.
26052         * lib/same.c: (same_name): Declare *_basename locals to be `const'.
26053         Consolidate declarations and initializations of *_base* locals.
26054
26055         Merge from coreutils.
26056         This avoids a core dump on systems without GNU putenv,
26057         when running `env -u SOME_ALREADY_UNSET_VARIABLE'.
26058         * lib/putenv.c (__set_errno, LOCK, UNLOCK): Define.
26059         (unsetenv): New static function, from GNU libc.
26060         (rpl_putenv): Use it.
26061
26062         * lib/modechange.c: Remove trailing blanks.
26063
26064         Merge from coreutils.
26065         * lib/fsusage.c: Remove declaration of statfs.
26066         It conflicted with one from OSF/1 5.1 in <sys/mount.h>.
26067
26068         * lib/posixtm.c: Include <stdbool.h> unconditionally.
26069
26070 2003-06-06  Jim Meyering  <jim@meyering.net>
26071
26072         * lib/stdbool_.h: Renamed from stdbool.h.in.
26073
26074 2003-06-06  Jim Meyering  <jim@meyering.net>
26075             Bruno Haible  <bruno@clisp.org>
26076
26077         * modules/stdbool: Reflect renaming: stdbool.h.in -> stdbool_.h.
26078         Adjust Makefile.am snippet not to redirect directly to target.
26079         Use $(STDBOOL_H) notation, not @STDBOOL_H@ for AC_REPLACE'd variables.
26080
26081 2003-06-05  Paul Eggert  <eggert@twinsun.com>
26082
26083         * lib/mktime.c (__mktime_internal): When resolving a tm_isdst
26084         mismatch, look in future quarters as well as past.  This fixes a
26085         bug when processing fall-backwards gaps immediately after a long
26086         period of daylight-saving time.
26087
26088         * lib/mktime.c: Assume freestanding C89 or better.
26089         (HAVE_LIMITS_H): Remove.  Assume it's 1.
26090         (__P): Remove; not used.
26091         (CHAR_BIT, INT_MIN, INT_MAX): Remove; <limits.h> defines them.
26092         (mktime, not_equal_tm, print_tm, check_result,
26093         main): Use prototypes.  Use const * where appropriate.
26094         (main): Fix typo in testing code that uncovered by above changes.
26095         (Local Variables): Remove -DHAVE_LIMITS_H from compile-command.
26096
26097 2003-06-04  Paul Eggert  <eggert@twinsun.com>
26098
26099         * m4/human.m4 (gl_HUMAN): Require AM_STDBOOL_H.  Check for
26100         locale.h, localeconv.  This merges changes from coreutils.
26101
26102         * m4/mktime.m4 (AC_FUNC_MKTIME): New macro, taken from Autoconf CVS.
26103         It can be removed after the next Autoconf is released.
26104         * m4/exclude.m4 (gl_EXCLUDE): Don't check for sys/types.h; no loner
26105         needed.
26106
26107 2003-06-04  Paul Eggert  <eggert@twinsun.com>
26108
26109         * lib/mktime.c: Fix Debian bug 177940
26110         <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=177940>.
26111         (localtime_offset): Now long int, not time_t, because we want it
26112         to be guaranteed to be signed.  All uses changed.
26113         (__mktime_internal): If overflow would occur when adding offset,
26114         don't add it.
26115
26116         Merge 'human' changes from coreutils.  Rewrite to support
26117         locale-specific notations like thousands separators.
26118         * lib/human.c: Simplify authorship notice.
26119         Include human.h immediately after config.h.
26120         <sys/types.h>, <stdio.h>: Do not include; no longer needed.
26121         <limits.h>: Do not include, since human.h does.
26122         (SIZE_MAX, UINTMAX_MAX): New macros.
26123         <strings.h>: Include if HAVE_STRINGS_H, not if !HAVE_STRING_H.
26124         <locale.h>: Include if HAVE_LOCALE_H and HAVE_LOCALECONV.
26125         (HUMAN_READABLE_SUFFIX_LENGTH_MAX): New macro.
26126         (power_letter): Renamed from suffixes.
26127         (generate_suffix_backwards): Remove.
26128         (adjust_value): Now takes int style (because of human.h changes)
26129         and long double value (for greater precision on some platforms).
26130         (group_number): New function.
26131         (human_readable): Use it.  Use integer options, not enum.
26132         Put the options before the sizes in the arg list.
26133         Support all the new options.
26134         The old human_readable function has been removed;
26135         use inttostr.h instead.
26136         (human_readable, default_block_size, humblock):
26137         Use uintmax_t, not int, for block sizes.
26138         (human_readable_inexact, block_size_types): Remove.
26139         (block_size_opts): New constant.
26140         (human_options): Renamed from human_block_size, with new signature
26141         that allows block sizes up to UINTMAX_MAX.  All callers changed.
26142         * lib/human.h: Add copyright and authorship notice.
26143         Include <limits.h> and <stdbool.h> unconditionally.
26144         (PARAMS): Remove.  All uses removed.
26145         (LONGEST_HUMAN_READABLE): Add support for thousands separator.
26146         (enum human_inexact_style): Remove tag; now a nameless enum.
26147         (human_floor, human_ceiling, human_round_to_even): Now have
26148         values 2, 0, 1 rather than -1, 1, 0.
26149         (human_group_digits, human_suppress_point_zero, human_autoscale,
26150         human_base_1024, human_SI, human_B): New constants.
26151         (human_readable_inexact, human_block_size): Remove.
26152         (human_readable): Size args are now uintmax_t, not int.
26153         (human_options): New decl.
26154
26155         * lib/exclude.c: (new_exclude, add_exclude): Remove casts that are
26156         unnecessary now that we assume C89 or better.  This change
26157         imported from coreutils.
26158
26159         * lib/mktime.c (__mktime_internal): Do not reject negative timestamps
26160         arbitrarily.  This is the same patch as 2003-05-28, but it got lost
26161         in the 2003-05-30 sync from glibc.
26162
26163         .h files should stand alone, but we shouldn't include <sys/types.h>
26164         if we can get away with just <stddef.h>.
26165
26166         * lib/__fpending.h, addext.c, backupfile.c, exclude.c, getline.c,
26167         malloc.c, putenv.c, realloc.c, strcasecmp.c: Include <stddef.h>
26168         rather than <sys/types.h>, as we merely need size_t.
26169         * lib/dirname.h, memcoll.h, xalloc.h, xmemcoll.h: Include <stddef.h>,
26170         to get size_t.
26171         * lib/hash.h, linebuffer.h, readtokens.h, stdio-safer.h, version-etc.h:
26172         Include <stdio.h>, to get FILE.
26173         * lib/memcasecmp.c: Don't include <sys/types.h>, as we can assume
26174         memcasecmp.h has included <stddef.h> and all we need is size_t.
26175         * lib/memcoll.c: Include "memcoll.h", which gets us size_t and checks
26176         our interface, instead of including <sys/types.h>
26177
26178 2003-06-04  Paul Eggert  <eggert@twinsun.com>
26179
26180         * config/srclist.txt ($LIBCSRC/time/mktime.c lib gpl): Comment out for
26181         now, as glibc mktime is buggy on non-glibc systems.
26182
26183 2003-06-03  Karl Berry  <karl@gnu.org>
26184
26185         * config/config.sub: update from prep.
26186
26187 2003-06-02  Paul Eggert  <eggert@twinsun.com>
26188
26189         [from coreutils]
26190         Fix some minor time-related bugs with POSIX time arguments.
26191         Some valid time stamps were being rejected (notably -1, and
26192         time stamps before 1900 on 64-bit hosts).  And some invalid
26193         time stamps were being accepted, e.g. September 31.
26194
26195         * lib/posixtm.h (posixtime): Return bool instead of time_t, so
26196         that we can return (time_t) -1 successfully.
26197         * lib/posixtm.c: Likewise.
26198         [HAVE_STDBOOL_H]: Include <stdbool.h>.
26199         (bool, false, true) [!HAVE_STDBOOL_H]: New type.
26200         (t): Remove static var.
26201         (year, posix_time_parse): Now takes struct tm * arg to modify, instead
26202         of static var.  All uses changed.
26203         (year): Do not reject years before 1900; they can occur with
26204         64-bit time_t.
26205         (posix_time_parse): Do not check for out-of-range components;
26206         that is now the caller's responsibility, since our checks were
26207         only approximations.
26208         (posixtime): Use mktime to check for out-of-range components,
26209         since it knows them exactly.
26210         If mktime returns (time_t) -1, check whether an error actually occurred
26211         by invoking localtime on -1.
26212         (main) [TEST_POSIXTIME]: Check for input data errors, and report
26213         posixtime failures better.
26214         Improve the test data (in comments only).
26215
26216 2003-06-02  Karl Berry  <karl@gnu.org>
26217
26218         * config/mkinstalldirs (version): new variable.
26219         (--version): new option.
26220         (usage): improve message.
26221
26222 2003-05-30  Karl Berry  <karl@gnu.org>
26223
26224         * lib/mktime.c: update from libc.
26225
26226 2003-05-30  Bruno Haible  <bruno@clisp.org>
26227
26228         * modules/gettext: Add files m4/nls.m4 and m4/po.m4.
26229         * config/config.rpath: Upgrade to gettext-0.12.1.
26230
26231 2003-05-30  Bruno Haible  <bruno@clisp.org>
26232
26233         * m4/gettext.m4: Upgrade to gettext-0.12.1.
26234         * m4/nls.m4: New file, from gettext-0.12.1.
26235         * m4/po.m4: New file, from gettext-0.12.1.
26236         * m4/progtest.m4: Upgrade to gettext-0.12.1.
26237
26238 2003-05-30  Bruno Haible  <bruno@clisp.org>
26239
26240         * lib/config.charset: Upgrade to gettext-0.12.1 and libiconv-1.9.1.
26241         * lib/localcharset.h: Likewise.
26242         * lib/localcharset.c: Likewise.
26243
26244 2003-05-29  Karl Berry  <karl@gnu.org>
26245
26246         * config/config.rpath: update from gettext.
26247
26248 2003-05-28  Paul Eggert  <eggert@twinsun.com>
26249
26250         Assume the headers required for C89 freestanding compilers.
26251         * m4/backupfile.m4 (gl_BACKUPFILE): Don't check for limits.h.
26252         * m4/fsusage.m4 (gl_PREREQ_FSUSAGE_EXTRA): Likewise.
26253         * m4/human.m4 (gl_HUMAN): Likewise.
26254         * m4/pathmax.m4 (gl_PATHMAX): Likewise.
26255         * m4/rpmatch.m4 (gl_FUNC_RPMATCH): Likewise.
26256         * m4/userspec.m4 (gl_USERSPEC): Likewise.
26257         * m4/xreadlink.m4 (gl_XREADLINK): Likewise.
26258         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
26259         * m4/quote.m4 (gl_QUOTE): Don't check for stddef.h.
26260
26261 2003-05-28  Paul Eggert  <eggert@twinsun.com>
26262
26263         Assume the headers required for C89 freestanding compilers.
26264         * lib/addext.c, lib/backupfile.c, lib/fsusage.c, lib/human.c,
26265         lib/pathmax.h, lib/rpmatch.c, lib/userspec.c, lib/xreadlink.c,
26266         lib/xstrtol.c: Include <limits.h> without checking for HAVE_LIMITS_H.
26267         * lib/backupfile.c, lib/fsusage.c, lib/hash.c, lib/human.c,
26268         lib/safe-read.c, lib/userspec.c, lib/xstrtol.c (CHAR_BIT): Don't
26269         define, since <limits.h> is guaranteed to do that.
26270         * lib/fatal.c: Include <stdarg.h> without checking for __STDC__.
26271         * lib/exclude.c: Include <stdbool.h> unconditionally.
26272         * lib/tempname.c: Include <stddef.h> unconditionally.
26273         * lib/hash.c: Include <limits.h>, since we no longer define CHAR_BIT.
26274         * lib/modechange.c, rpmatch.c (NULL): Don't define, since
26275         <stddef.h> does that.
26276         * lib/quote.c: Dont include <stddef.h> or <sys/types.h>; not needed.
26277         * lib/safe-read.c (INT_MAX): Don't define, since <limits.h> does that.
26278         * lib/safe-read.c (TYPE_MINIMUM, TYPE_MAXIMUM): Remove; no longer
26279         needed.
26280         * lib/xstrtol.c: Likewise.
26281         * lib/safe-read.c: Remove TYPE_SIGNED; no longer needed.
26282         * lib/savedir.c: Include <stddef.h> instead of defining NULL.
26283
26284         * lib/addext.c (addext): Use assignment rather than cast, to avoid
26285         warnings on some platforms.
26286
26287         * lib/mktime.c (__mktime_internal): Do not reject negative timestamps
26288         arbitrarily.
26289
26290 2003-05-26  Jim Meyering  <jim@meyering.net>
26291
26292         Merge in a change from coreutils:
26293         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Test the cache variable, not one
26294         that is guaranteed to be `no'.  Use `no_such_member' to indicate
26295         that condition, rather than `-1' which is slightly misleading.
26296         Change the name of the cache variable to have the gl_ prefix.
26297         Prompted by a patch from Richard Dawe for DJGPP.
26298
26299 2003-05-24  Karl Berry  <karl@gnu.org>
26300
26301         * config/config.guess: update from prep.
26302
26303 2003-05-22  Karl Berry  <karl@gnu.org>
26304
26305         * gnulib-tool (func_usage): =LIBRARY not =libRARY in help msg.
26306
26307 2003-05-20  Karl Berry  <karl@gnu.org>
26308
26309         * config/config.guess: update from prep.
26310
26311 2003-05-18  Karl Berry  <karl@gnu.org>
26312
26313         * config/srclistvars.sh (TEXMF): use TEXMFROOT instead, since TEXMF
26314         might actually be set by the user.
26315
26316         * config/depcomp, install-sh, mdate-sh: update from automake.
26317
26318 2003-05-17  Bruno Haible  <bruno@clisp.org>
26319
26320         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Fix a quoting bug leading to an
26321         invalid expansion for AC_EGREP_CPP.
26322         * m4/strtoimax.m4 (gl_FUNC_STRTOIMAX): Likewise.
26323         * m4/strtoumax.m4 (gl_FUNC_STRTOUMAX): Likewise.
26324         Suggested by Akim Demaille <akim@epita.fr> in
26325         http://mail.gnu.org/archive/html/bug-autoconf/2003-05/threads.html
26326
26327 2003-05-12  Jim Meyering  <jim@meyering.net>
26328
26329         * lib/strftime.c (my_strftime): Let the `-' (no-pad) flag affect
26330         the space-padded-by-default conversion specifiers, %e, %k, %l.
26331
26332 2003-05-12  Bruno Haible  <bruno@clisp.org>
26333
26334         * lib/linebreak.c (iconv_string_length): Don't return -1 just because
26335         the string is longer than 4 KB.
26336
26337 2003-05-11  Karl Berry  <karl@gnu.org>
26338
26339         * config/config.{guess,sub}: update from prep.
26340
26341 2003-05-09  Bruno Haible  <bruno@clisp.org>
26342
26343         * modules/error: Add m4/strerror_r.m4 to file list.
26344
26345 2003-05-03  Bruno Haible  <bruno@clisp.org>
26346
26347         Upgrade to Unicode-4.0.
26348         * lib/linebreak.c (nonspacing_table_data): Change width of U+00AD,
26349         U+0350..U+0357, U+035D..U+035F, U+0600..U+0603, U+0610..U+0615,
26350         U+0656..U+0658, U+0A01, U+0AE2..U+0AE3, U+0CBC, U+17B4..U+17B5,
26351         U+17DD, U+1920..U+1922, U+1927..U+192B, U+1932, U+1939..U+193B
26352         from 1 to 0. Change width of U+0CBF, U+0CC6, U+180E from 0 to 1.
26353         (uc_width): Change width of U+4DC0..U+4DFF from 2 to 1. Change width
26354         of U+2A6D7..U+2F7FF, U+2FA1E..U+2FFFD, U+30000..U+3FFFD from 1 to 2.
26355         Change width of U+E0100..U+E01EF from 1 to 0.
26356
26357 2003-04-25  Jim Meyering  <jim@meyering.net>
26358
26359         * lib/copy-file.c (copy_file_preserving): Declare buf_size to be
26360         of type size_t, not int.
26361
26362 2003-04-25  Bruno Haible  <bruno@clisp.org>
26363
26364         * lib/copy-file.c: Include <stddef.h>, for size_t.
26365
26366 2003-04-21  Paul Eggert  <eggert@twinsun.com>
26367
26368         * m4/error.m4 (gl_ERROR): Do not put under dynamic conditions some
26369         code which expansion is under static control.  Patch imported from
26370         Akim Demaille's patch to Bison; see
26371         <http://mail.gnu.org/archive/html/bison-patches/2003-03/msg00057.html>.
26372
26373 2003-04-14  Bruno Haible  <bruno@clisp.org>
26374
26375         * m4/error.m4 (jm_PREREQ_ERROR): Use AC_FUNC_VPRINTF.
26376
26377 2003-04-11  Jim Meyering  <jim@meyering.net>
26378
26379         Merge changes from Coreutils.
26380
26381         2003-03-22  Jim Meyering  <jim@meyering.net>
26382
26383         * lib/strftime.c (widen): Cast alloca return value to proper type.
26384
26385         2003-01-19  Ulrich Drepper  <drepper@redhat.com>
26386
26387         From GNU libc.
26388         * lib/strftime.c (my_strftime): Handle very large width
26389         specifications for numeric values correctly.  Improve checks for
26390         overflow.
26391
26392         2003-01-19  Jim Meyering  <jim@meyering.net>
26393
26394         * lib/strftime.c (widen) [COMPILE_WIDE]: Merge nearly-identical
26395         definitions.
26396         (nl_get_alt_digit) [! defined my_strftime]: Define.
26397         (my_strftime) [_NL_CURRENT]: Merge nearly-identical uses of
26398         _nl_get_alt_digit and _nl_get_walt_digit.
26399
26400         * lib/strftime.c (my_strftime): Merge in locale-related changes from
26401         libc. These changes have no effect outside of _LIBC.
26402
26403 2003-04-10  Bruno Haible  <bruno@clisp.org>
26404
26405         * modules/findprog: New file.
26406         * MODULES.html.sh (func_all_modules): Add it.
26407
26408 2003-04-10  Bruno Haible  <bruno@clisp.org>
26409
26410         * m4/findprog.m4: New file.
26411         * m4/eaccess.m4: New file.
26412
26413 2003-04-10  Bruno Haible  <bruno@clisp.org>
26414
26415         * lib/findprog.h: New file, from GNU gettext.
26416         * lib/findprog.c: New file, from GNU gettext.
26417
26418 2003-04-05  Jim Meyering  <jim@meyering.net>
26419
26420         Merge changes from Coreutils.
26421
26422         * lib/exclude.h (PARAMS): Remove definition and uses.
26423         * lib/exclude.c: Remove uses of `PARAMS'.
26424
26425         * lib/dirname.c [TEST_DIRNAME]: Update build instructions for test.
26426         Add test-cases for DOS filenames. Declare program_name.
26427         (main): Set up program_name.  Patch by Rich Dawe.
26428
26429         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Detect any
26430         error from mntctl.
26431         Use mntctl's return value to drive the entry-processing loop, since
26432         we can't rely on the value of the vmt_length member in the last
26433         entry.  On some systems doing so could result in exhausting
26434         virtual memory.  Based in part on a patch from Mike Jetzer.
26435
26436 2003-04-04  Bruno Haible  <bruno@clisp.org>
26437
26438         * modules/linebreak: New file.
26439         * MODULES.html.sh (func_all_modules): Add it.
26440
26441 2003-04-04  Bruno Haible  <bruno@clisp.org>
26442
26443         * m4/linebreak.m4: New file.
26444
26445 2003-04-04  Bruno Haible  <bruno@clisp.org>
26446
26447         * lib/linebreak.h: New file, from GNU gettext.
26448         * lib/linebreak.c: New file, from GNU gettext with slight
26449         modifications.
26450         * lib/lbrkprop.h: New file, from GNU gettext.
26451
26452 2003-04-03  Bruno Haible  <bruno@clisp.org>
26453
26454         * modules/utf8-ucs4: New file.
26455         * modules/utf16-ucs4: New file.
26456         * modules/ucs4-utf8: New file.
26457         * modules/ucs4-utf16: New file.
26458         * MODULES.html.sh (func_all_modules): Add them.
26459
26460 2003-04-03  Bruno Haible  <bruno@clisp.org>
26461
26462         * m4/utf-ucs4.m4: New file.
26463         * m4/ucs4-utf.m4: New file.
26464
26465 2003-04-03  Bruno Haible  <bruno@clisp.org>
26466
26467         * lib/utf8-ucs4.h: New file, from GNU gettext.
26468         * lib/utf16-ucs4.h: New file, from GNU gettext.
26469         * lib/ucs4-utf8.h: New file, from GNU gettext.
26470         * lib/ucs4-utf16.h: New file, from GNU gettext.
26471
26472 2003-04-02  Bruno Haible  <bruno@clisp.org>
26473
26474         * modules/binary-io: New file.
26475         * MODULES.html.sh (func_all_modules): Add it.
26476
26477 2003-04-02  Bruno Haible  <bruno@clisp.org>
26478
26479         * lib/binary-io.h: New file, from GNU gettext.
26480
26481 2003-04-01  Bruno Haible  <bruno@clisp.org>
26482
26483         * modules/pathname: New file.
26484         * MODULES.html.sh (func_all_modules): Add it.
26485
26486 2003-04-01  Bruno Haible  <bruno@clisp.org>
26487
26488         * lib/pathname.h: New file, from GNU gettext.
26489         * lib/concatpath.c: New file, from GNU gettext.
26490
26491 2003-03-30  Bruno Haible  <bruno@clisp.org>
26492
26493         * m4/copy-file.m4 (gl_COPY_FILE): Add check for chown().
26494
26495 2003-03-30  Bruno Haible  <bruno@clisp.org>
26496
26497         * lib/copy-file.c (copy_file_preserving): Don't set owner if the
26498         function chown() doesn't exist.
26499
26500 2003-03-28  Bruno Haible  <bruno@clisp.org>
26501
26502         * modules/copy-file: New file.
26503         * MODULES.html.sh (func_all_modules): Add it.
26504
26505 2003-03-28  Bruno Haible  <bruno@clisp.org>
26506
26507         * m4/copy-file.m4: New file.
26508
26509 2003-03-28  Bruno Haible  <bruno@clisp.org>
26510
26511         * lib/copy-file.h: New file, from GNU gettext.
26512         * lib/copy-file.c: New file, from GNU gettext.
26513
26514 2003-03-18  Jim Meyering  <jim@meyering.net>
26515
26516         * lib/quote.c (quote_n): Fix typo in comment.
26517
26518 2003-03-18  Bruno Haible  <bruno@clisp.org>
26519
26520         * m4/onceonly.m4: Use m4_defn instead of defn, for better error
26521         checking.
26522         * m4/onceonly_2_57.m4: Likewise.
26523
26524 2003-03-17  Bruno Haible  <bruno@clisp.org>
26525
26526         * m4/onceonly.m4: Require autoconf 2.54 or newer.
26527         (m4_quote): Remove macro.
26528         * m4/onceonly_2_57.m4: Require autoconf 2.54 or newer.
26529
26530 2003-03-14  Jim Meyering  <jim@meyering.net>
26531
26532         Merge changes from Coreutils.
26533         * lib/obstack.h (obstack_object_size): Declare temporary, __o,
26534         to be const, in order to avoid warnings.
26535         (obstack_room): Likewise.
26536         (obstack_empty_p): Likewise.
26537
26538 2003-03-14  Bruno Haible  <bruno@clisp.org>
26539
26540         * m4/onceonly_2_57.m4 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE,
26541         AC_CHECK_DECLS_ONCE): Quote AC_FOREACH variable-expansions properly.
26542
26543 2003-03-13  Paul Eggert  <eggert@twinsun.com>
26544
26545         Merge changes from Bison.
26546         * lib/obstack.h: (__INT_TO_PTR) [__STDC__]: Cast result to
26547         (void *) to avoid diagnostic with native c89 on SGI IRIX 6.5
26548         when compiling Bison 1.875's `bitset bset = obstack_alloc
26549         (bobstack, bytes);'.  Problem reported by Nelson H. F. Beebe.
26550         * lib/hash.c: Include <stdbool.h> unconditionally.
26551
26552 2003-03-13  Paul Eggert  <eggert@twinsun.com>
26553
26554         * m4/onceonly.m4 (m4_quote): New macro.
26555         (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE, AC_CHECK_DECLS_ONCE):
26556         Quote AC_FOREACH variable-expansions properly.
26557
26558 2003-03-13  Paul Eggert  <eggert@twinsun.com>
26559
26560         * doc/COPYING.DOC, fdl.texi: Sync with latest FSF version.
26561
26562 2003-03-09  Paul Eggert  <eggert@twinsun.com>
26563
26564         * lib/argmatch.c (EXIT_FAILURE): Define if the system doesn't.
26565         Reported by Bruce Becker; see:
26566         http://mail.gnu.org/archive/html/bug-bison/2003-03/msg00017.html
26567
26568 2003-03-03  Paul Eggert  <eggert@twinsun.com>
26569             Bruno Haible  <bruno@clisp.org>
26570
26571         * lib/mbswidth.h: Include <wchar.h>. Needed for UnixWare 7.1.1.
26572         Reported by John Hughes, see
26573         http://mail.gnu.org/archive/html/bug-bison/2003-02/msg00030.html
26574
26575 2003-02-20  Bruno Haible  <bruno@clisp.org>
26576
26577         * MODULES.html.sh (func_all_modules): Add poll.
26578
26579 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
26580
26581         * modules/poll: New file.
26582
26583 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
26584
26585         * lib/poll_.h: New file.
26586         * lib/poll.c: New file.
26587
26588 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
26589
26590         * m4/poll.m4: New file.
26591
26592 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
26593
26594         * modules/mathl: New file.
26595
26596 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
26597
26598         * lib/mathl.h: New file.
26599         * lib/acosl.c: New file.
26600         * lib/asinl.c: New file.
26601         * lib/atanl.c: New file.
26602         * lib/ceill.c: New file.
26603         * lib/cosl.c: New file.
26604         * lib/expl.c: New file.
26605         * lib/floorl.c: New file.
26606         * lib/frexpl.c: New file.
26607         * lib/ldexpl.c: New file.
26608         * lib/logl.c: New file.
26609         * lib/sincosl.c: New file.
26610         * lib/sinl.c: New file.
26611         * lib/sqrtl.c: New file.
26612         * lib/tanl.c: New file.
26613         * lib/trigl.c: New file.
26614         * lib/trigl.h: New file.
26615
26616 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
26617
26618         * m4/mathl.m4: New file.
26619
26620 2003-02-18  Bruno Haible  <bruno@clisp.org>
26621
26622         * MODULES.html.sh (func_all_modules): Add mathl.
26623
26624 2003-02-17  Bruno Haible  <bruno@clisp.org>
26625
26626         * modules/mkdtemp: New module.
26627         * MODULES.html.sh (func_all_modules): Add it.
26628
26629 2003-02-17  Bruno Haible  <bruno@clisp.org>
26630
26631         * m4/mkdtemp.m4: New file, from GNU gettext with modifications.
26632
26633 2003-02-17  Bruno Haible  <bruno@clisp.org>
26634
26635         * lib/mkdtemp.h: New file, from GNU gettext.
26636         * lib/mkdtemp.c: New file, from GNU gettext.
26637
26638 2003-02-02  Jim Meyering  <jim@meyering.net>
26639
26640         * m4/regex.m4 (jm_INCLUDED_REGEX): Detect broken re_search in
26641         e.g. glibc-2.2.93.
26642
26643 2003-01-31  Bruno Haible  <bruno@clisp.org>
26644
26645         * m4/rename.m4 (vb_FUNC_RENAME): Add a redirection from 'rename' to
26646         'rpl_rename'.
26647         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Add a redirection from 'strnlen' to
26648         'rpl_strnlen'.
26649         * m4/strtod.m4 (gl_FUNC_STRTOD): Add a redirection from 'strtod' to
26650         'rpl_strtod'.
26651         * m4/utime.m4 (jm_FUNC_UTIME): Add a redirection from 'utime' to
26652         'rpl_utime'.
26653
26654 2003-01-31  Bruno Haible  <bruno@clisp.org>
26655
26656         * lib/rename.c: #undef rename before defining rpl_rename.
26657         * lib/strnlen.c: #undef strnlen, define rpl_strnlen instead of strnlen.
26658
26659 2003-01-30  Bruno Haible  <bruno@clisp.org>
26660
26661         * modules/vasnprintf, modules/vasprintf: New modules.
26662         * MODULES.html.sh (func_all_modules): Add them.
26663
26664 2003-01-30  Bruno Haible  <bruno@clisp.org>
26665
26666         * m4/signed.m4: New file, from GNU gettext.
26667         * m4/longdouble.m4: New file, from GNU gettext.
26668         * m4/wchar_t.m4: New file, from GNU gettext.
26669         * m4/wint_t.m4: New file, from GNU gettext.
26670         * m4/vasnprintf.m4: New file.
26671         * m4/vasprintf.m4: New file.
26672
26673 2003-01-30  Bruno Haible  <bruno@clisp.org>
26674
26675         * lib/printf-args.h: New file, from GNU gettext.
26676         * lib/printf-args.c: New file, from GNU gettext.
26677         * lib/printf-parse.h: New file, from GNU gettext.
26678         * lib/printf-parse.c: New file, from GNU gettext.
26679         * lib/vasnprintf.h: New file, from GNU gettext.
26680         * lib/vasnprintf.c: New file, from GNU gettext.
26681         * lib/asnprintf.c: New file, from GNU gettext.
26682         * lib/vasprintf.h: New file, from GNU gettext with modifications.
26683         * lib/vasprintf.c: New file, from GNU gettext.
26684         * lib/asprintf.c: New file, from GNU gettext.
26685
26686 2003-01-29  Bruno Haible  <bruno@clisp.org>
26687
26688         * modules/stpncpy: New module.
26689         * MODULES.html.sh (func_all_modules): Add it.
26690
26691 2003-01-29  Bruno Haible  <bruno@clisp.org>
26692
26693         * m4/stpncpy.m4: New file.
26694
26695 2003-01-29  Bruno Haible  <bruno@clisp.org>
26696
26697         * lib/stpncpy.h: New file, from GNU gettext with modifications.
26698         * lib/stpncpy.c: New file, from GNU gettext with modifications.
26699
26700 2003-01-28  Bruno Haible  <bruno@clisp.org>
26701
26702         * modules/c-ctype: New module.
26703         * MODULES.html.sh (func_all_modules): Add it.
26704
26705 2003-01-28  Bruno Haible  <bruno@clisp.org>
26706
26707         * lib/c-ctype.h: New file, from GNU gettext, with changes suggested by
26708         Paul Eggert.
26709         * lib/c-ctype.c: New file, from GNU gettext, with changes suggested by
26710         Paul Eggert.
26711
26712 2003-01-27  Bruno Haible  <bruno@clisp.org>
26713
26714         * modules/xsetenv: New module.
26715         * MODULES.html.sh (func_all_modules): Add it.
26716
26717 2003-01-27  Bruno Haible  <bruno@clisp.org>
26718
26719         * lib/xsetenv.h: New file, from GNU gettext.
26720         * lib/xsetenv.c: New file, from GNU gettext.
26721
26722 2003-01-23  Jim Meyering  <jim@meyering.net>
26723
26724         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Correct typo: s/-1/no/ that kept this
26725         from working on systems without dirfd (at least Irix and OSF1/Tru64).
26726
26727 2003-01-23  Bruno Haible  <bruno@clisp.org>
26728
26729         * modules/minmax: New module.
26730         * MODULES.html.sh (func_all_modules): Add it.
26731
26732 2003-01-23  Bruno Haible  <bruno@clisp.org>
26733
26734         * lib/minmax.h: New file, from GNU gettext, with comments from Paul
26735         Eggert.
26736
26737 2003-01-22  Bruno Haible  <bruno@clisp.org>
26738
26739         * modules/exit: New module.
26740         * MODULES.html.sh (func_all_modules): Add it.
26741
26742 2003-01-22  Bruno Haible  <bruno@clisp.org>
26743
26744         * lib/exit.h: New file, from GNU gettext.
26745
26746 2003-01-19  Bruno Haible  <bruno@clisp.org>
26747
26748         * gnulib-tool: Recognize option --extract-maintainer.
26749         (func_get_maintainer): New function.
26750         * modules/*: Add Maintainer entry.
26751
26752 2003-01-16  Jim Meyering  <jim@meyering.net>
26753
26754         * m4/regex.m4: The `regex' struct is both input and output.
26755         Initialize it before each use.  Patch by Tim Waugh.
26756
26757 2003-01-16  Bruno Haible  <bruno@clisp.org>
26758
26759         * MODULES.html.sh: Add a table of contents. Add the module name as
26760         leftmost column. Add hyperlinks.
26761
26762 2003-01-15  Bruno Haible  <bruno@clisp.org>
26763
26764         * m4/md5.m4 (gl_MD5): Require AC_C_INLINE.
26765
26766 2003-01-15  Bruno Haible  <bruno@clisp.org>
26767
26768         * m4/longlong.m4 (jm_AC_TYPE_LONG_LONG): Also test the LL suffix.
26769         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Also test the ULL
26770         suffix.
26771
26772 2003-01-15  Bruno Haible  <bruno@clisp.org>
26773
26774         * m4/alloca.m4 (gl_FUNC_ALLOCA): Invoke AC_EGREP_CPP prerequisites.
26775
26776 2003-01-15  Bruno Haible  <bruno@clisp.org>
26777
26778         * lib/stpcpy.h (stpcpy): Use ANSI C function declarations.
26779         * lib/strcase.h (strcasecmp, strncasecmp): Likewise.
26780
26781 2003-01-14  Jim Meyering  <jim@meyering.net>
26782
26783         * lib/same.c (same_name): Tweak a comment.
26784
26785 2003-01-14  Bruno Haible  <bruno@clisp.org>
26786
26787         * lib/same.c (same_name): Reorder tests so as to avoid calling stat()
26788         when a string comparison is sufficient.
26789
26790 2003-01-14  Bruno Haible  <bruno@clisp.org>
26791
26792         * lib/readtokens.c (readtoken): Cast character to 'unsigned char', not
26793         'unsigned int'.
26794
26795 2003-01-14  Bruno Haible  <bruno@clisp.org>
26796
26797         * lib/hash-pjw.c: Add comment about low quality of this function.
26798
26799 2003-01-13  Bruno Haible  <bruno@clisp.org>
26800
26801         * modules/stpcpy: Distribute lib/stpcpy.h.
26802         * modules/setenv: Depend on alloca. Distribute lib/setenv.h.
26803
26804 2003-01-13  Bruno Haible  <bruno@clisp.org>
26805
26806         * modules/*: Add a description.
26807         * modules/strpbrk: Fix Makefile.am snippet.
26808         * modules/strtoimax: Fix dependencies.
26809         * modules/strtoumax: Likewise.
26810
26811 2003-01-13  Bruno Haible  <bruno@clisp.org>
26812
26813         * gnulib-tool (func_create_testdir): Substitute lib_OBJECTS.
26814         * modules/alloca (Makefile.am): All object files depend on alloca.h.
26815         * modules/stdbool (Makefile.am): All object files depend on stdbool.h.
26816
26817 2003-01-13  Bruno Haible  <bruno@clisp.org>
26818
26819         * gnulib-tool (func_create_testdir): Store config/* files in the main
26820         directory.
26821         * config.rpath: Move to ...
26822         * config/config.rpath: ... here.
26823         * modules/gettext: Contains config/config.rpath, not config.rpath.
26824         * modules/iconv: Likewise.
26825
26826 2003-01-12  Paul Eggert  <eggert@twinsun.com>
26827
26828         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
26829         to avoid collisions with libcurses and libreadline.
26830
26831         * m4/getstr.m4: Remove.
26832         * m4/getline.m4 (gl_PREREQ_GETLINE): Require AC_HEADER_STDC.
26833
26834 2003-01-12  Paul Eggert  <eggert@twinsun.com>
26835
26836         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
26837         to avoid collisions with libcurses and libreadline.
26838
26839         * lib/Makefile.am (libfetish_a_SOURCES): Remove getstr.c, getstr.h.
26840         * lib/getstr.h, getstr.c: Remove.
26841         * lib/getline.c: Include "getline.h", to check interface.
26842         Move body of old getstr.c here: this defines MIN_CHUNK and
26843         declares getdelim2, which is renamed from getstr.
26844         (getline, getdelim): Adjust to renaming of getstr -> getdelim2.
26845
26846         * lib/linebuffer.c (readlinebuffer): Renamed from readline.
26847         All uses changed.
26848         * lib/linebuffer.h: Likewise.
26849         (readline): Remove backward-compatibility macro.
26850
26851 2003-01-12  Paul Eggert  <eggert@twinsun.com>
26852
26853         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
26854         to avoid collisions with libcurses and libreadline.
26855         * getstr: Remove.
26856         * MODULES.html.sh: Remove getstr.
26857         * modules/getline: Depend on unlocked-io, not getstr.
26858
26859 2003-01-12  Jim Meyering  <jim@meyering.net>
26860
26861         * lib/makepath.c: Don't test HAVE_ERRNO_H.  It's not necessary.
26862
26863 2003-01-10  Bruno Haible  <bruno@clisp.org>
26864
26865         * modules/alloca: Change Makefile.am requirements. Simplify Include
26866         requirements. Add lib/alloca_.h to file list.
26867
26868 2003-01-10  Bruno Haible  <bruno@clisp.org>
26869
26870         * m4/alloca.m4 (gl_FUNC_ALLOCA): Also define ALLOCA_H.
26871
26872 2003-01-10  Bruno Haible  <bruno@clisp.org>
26873
26874         * lib/alloca_.h: New file.
26875         * lib/getdate.y: Unconditionally include alloca.h.
26876         * lib/makepath.c: Likewise.
26877         * lib/setenv.c: Likewise.
26878         * lib/userspec.c: Likewise.
26879
26880 2003-01-09  Karl Berry  <karl@gnu.org>
26881
26882         * MODULES.html.sh: include `dirname $0` in PATH, to find
26883         gnulib-tool.
26884
26885 2003-01-09  Bruno Haible  <bruno@clisp.org>
26886
26887         * modules/stdbool: Change configure.ac, Makefile.am requirements.
26888         Simplify Include requirements. Add lib/stdbool.h.in to file list.
26889
26890 2003-01-09  Bruno Haible  <bruno@clisp.org>
26891
26892         * m4/stdbool.m4 (AM_STDBOOL_H): New macro.
26893
26894 2003-01-09  Bruno Haible  <bruno@clisp.org>
26895
26896         * lib/stdbool.h.in: New file.
26897
26898 2003-01-09  Bruno Haible  <bruno@clisp.org>
26899
26900         * gnulib-tool (func_all_modules): Ignore files ending in ~.
26901         * MODULES.html.sh: Likewise.
26902
26903 2003-01-08  Jim Meyering  <jim@meyering.net>
26904
26905         * lib/full-write.c: Undefine and define-away `const' after inclusion
26906         of errno.h, not before.  Suggestion from Bruno Haible.
26907
26908 2003-01-08  Bruno Haible  <bruno@clisp.org>
26909
26910         * modules/full-read: Depend on full-write.
26911
26912 2003-01-08  Bruno Haible  <bruno@clisp.org>
26913
26914         * lib/safe-read.c: Include specification header first, to ensure its
26915         selfcontainedness.
26916         * lib/full-write.c: Likewise.
26917
26918 2003-01-07  Jim Meyering  <jim@meyering.net>
26919
26920         * lib/full-write.c: Rework so that it may serve to define full_read,
26921         too.
26922         * lib/full-read.c: Simply #define FULL_READ and include full-write.c.
26923
26924 2003-01-07  Bruno Haible  <bruno@clisp.org>
26925
26926         * lib/strtoimax.c: Include <stdint.h> as an alternative to
26927         <inttypes.h>.
26928         * lib/xstrtol.h: Likewise.
26929         * lib/xstrtoimax.c: Likewise.
26930         * lib/xstrtoumax.c: Likewise.
26931         * lib/human.h: Likewise.
26932
26933         * lib/tempname.c: Include <inttypes.h> too. Avoids a compilation error
26934         on systems that have <inttypes.h> but not <stdint.h>.
26935
26936 2003-01-07  Bruno Haible  <bruno@clisp.org>
26937
26938         * MODULES.html.sh: Add copyright notice.
26939         (missed_files): Omit CVS directory entries.
26940         (func_module): Make it work with sed-3.02.
26941         * MODULES.txt: Remove file.
26942
26943 2003-01-06  Jim Meyering  <jim@meyering.net>
26944
26945         * lib/version-etc.c: Update year in translatable copyright string.
26946
26947 2003-01-03  Karl Berry  <karl@gnu.org>
26948
26949         * config/config.{guess,sub}: update from prep.
26950
26951 2003-01-02  Karl Berry  <karl@gnu.org>
26952
26953         * doc/COPYING.DOC: belatedly updated to 1.2.
26954
26955 2003-01-01  Karl Berry  <karl@gnu.org>
26956
26957         * gnulib-tool (func_verify_module): report module name $module in
26958         error message, not $1.
26959         * gnulib-tool (create-testdir): don't complain if destdir couldn't
26960         be created, only if it doesn't exist.
26961         * gnulib-tool (last_checkin_date): don't expand the $Date here.
26962
26963 2002-12-31  Paul Eggert  <eggert@twinsun.com>
26964
26965         * m4/memcoll.m4 (gl_MEMCOLL): Require AC_FUNC_MEMCMP.
26966
26967 2002-12-31  Paul Eggert  <eggert@twinsun.com>
26968
26969         * lib/memcoll.c (memcoll): Fall back on a simple algorithm using
26970         memcmp if strcoll doesn't work.
26971
26972 2002-12-31  Bruno Haible  <bruno@clisp.org>
26973
26974         * lib/utime.c (utime_null): No need to call ftruncate if the file was
26975         nonempty.
26976
26977 2002-12-31  Bruno Haible  <bruno@clisp.org>
26978
26979         * lib/memcoll.c (STRCOLL): New macro.
26980         (memcoll): Use it.
26981
26982 2002-12-31  Bruno Haible  <bruno@clisp.org>
26983
26984         * lib/localcharset.h: New file.
26985         * lib/localcharset.c: Include it.
26986         * lib/unicodeio.c: Likewise.
26987
26988 2002-12-31  Bruno Haible  <bruno@clisp.org>
26989
26990         * lib/getstr.h (getstr): Define, to avoid clash with libcurses.
26991         * lib/linebuffer.h (readline): Define, to avoid clash with libreadline.
26992
26993 2002-12-31  Bruno Haible  <bruno@clisp.org>
26994
26995         * lib/getline.h: Include <stddef.h>, for size_t.
26996
26997         * lib/unicodeio.h: Include <stddef.h>, for size_t.
26998         * lib/unicodeio.c: Don't include <stddef.h>.
26999
27000 2002-12-31  Bruno Haible  <bruno@clisp.org>
27001
27002         * lib/getdate.y (get_date): Test HAVE_STRUCT_TM_TM_ZONE, not
27003         HAVE_TM_ZONE.
27004
27005 2002-12-24  Karl Berry  <karl@gnu.org>
27006
27007         * config/config.guess: update from prep.
27008
27009 2002-12-24  Bruno Haible  <bruno@clisp.org>
27010
27011         General infrasructure.
27012         * m4/README: Rewritten.
27013         * m4/onceonly.m4: New file.
27014         * m4/onceonly_2_57.m4: New file.
27015
27016         Module atexit.
27017         * m4/atexit.m4: New file.
27018
27019         Module strtod.
27020         * m4/strtod.m4: New file.
27021
27022         Module strtol.
27023         * m4/strtol.m4: New file.
27024
27025         Module strtoul.
27026         * m4/strtoul.m4: New file.
27027
27028         Module memchr.
27029         * m4/memchr.m4: New file.
27030
27031         Module memcmp.
27032         * m4/memcmp.m4 (gl_PREREQ_MEMCMP): New macro.
27033         (jm_FUNC_MEMCMP): Invoke it.
27034
27035         Module memcpy.
27036         * m4/memcpy.m4: New file.
27037
27038         Module memmove.
27039         * m4/memmove.m4: New file.
27040
27041         Module memset.
27042         * m4/memset.m4: New file.
27043
27044         Module strcspn.
27045         * m4/strcspn.m4: New file.
27046
27047         Module strpbrk.
27048         * m4/strpbrk.m4: New file.
27049
27050         Module strstr.
27051         * m4/strstr.m4: New file.
27052
27053         Module strerror.
27054         * m4/strerror.m4: New file.
27055
27056         Module mktime.
27057         * m4/mktime.m4: Renamed from jm-mktime.m4.
27058         (gl_PREREQ_MKTIME): New macro.
27059         (gl_FUNC_MKTIME): Renamed from jm_FUNC_MKTIME. Invoke gl_PREREQ_MKTIME.
27060
27061         Module malloc.
27062         * m4/malloc.m4 (gl_PREREQ_MALLOC): New macro.
27063         (jm_FUNC_MALLOC): Use AC_FUNC_MALLOC. Invoke gl_PREREQ_MALLOC.
27064         Don't define HAVE_DONE_WORKING_MALLOC_CHECK, since nothing uses it.
27065
27066         Module realloc.
27067         * m4/realloc.m4 (gl_PREREQ_REALLOC): New macro.
27068         (jm_FUNC_REALLOC): Use AC_FUNC_REALLOC. Invoke gl_PREREQ_REALLOC.
27069         Don't define HAVE_DONE_WORKING_REALLOC_CHECK, since nothing uses it.
27070
27071         Module strftime.
27072         * m4/tm_gmtoff.m4: New file, extracted from strftime.m4.
27073         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Use AC_FUNC_STRFTIME.
27074         Don't test for bcopy (we are not emacs). Invoke AC_TYPE_MBSTATE_T and
27075         gl_TM_GMTOFF.
27076         (_jm_STRFTIME_PREREQS, jm_FUNC_GNU_STRFTIME): Use onceonly macros.
27077
27078         Module xalloc.
27079         * m4/xalloc.m4: New file.
27080
27081         Module alloca.
27082         * m4/alloca.m4: New file.
27083
27084         Module putenv.
27085         * m4/putenv.m4 (gl_PREREQ_PUTENV): New macro.
27086         (jm_FUNC_PUTENV): Invoke it.
27087
27088         Module setenv.
27089         * m4/setenv.m4 (gt_FUNC_SETENV): New macro.
27090         (gt_CHECK_VAR_DECL): Fix quoting error that led to infinite loop in m4
27091         when invoked twice.
27092         (gt_PREREQ_SETENV, gt_PREREQ_UNSETENV): New macros, replacing old
27093         gt_FUNC_SETENV.
27094
27095         Module memrchr.
27096         * m4/memrchr.m4: New file.
27097
27098         Module stpcpy.
27099         * m4/stpcpy.m4: New file.
27100
27101         Module strcase.
27102         * m4/strcase.m4: New file.
27103
27104         Module strdup.
27105         * m4/strdup.m4: New file.
27106
27107         Module strnlen.
27108         * m4/strnlen.m4: New file.
27109
27110         Module strndup.
27111         * m4/strndup.m4: New file.
27112
27113         Module xstrtod.
27114         * m4/xstrtod.m4: New file.
27115
27116         Module xstrtol.
27117         * m4/xstrtol.m4: New file.
27118
27119         Module getdate.
27120         * m4/getdate.m4: New file.
27121
27122         Module unlocked-io.
27123         * m4/unlocked-io.m4: Renamed from jm-glibc-io.m4.
27124         (jm_FUNC_GLIBC_UNLOCKED_IO): Invoke AC_GNU_SOURCE. Use onceonly macros.
27125         * m4/jm-glibc-io.m4n: Remove file.
27126
27127         Module long-options.
27128         * m4/long-options.m4: New file.
27129
27130         Module md5.
27131         * m4/md5.m4: New file.
27132
27133         Module sha.
27134         * m4/sha.m4: New file.
27135
27136         Module getstr.
27137         * m4/getstr.m4: New file.
27138
27139         Module getline.
27140         * m4/getline.m4 (gl_PREREQ_GETLINE): New macro.
27141         (AM_FUNC_GETLINE): Invoke AC_GNU_SOURCE. Use <stdlib.h>, not
27142         <sys/types.h>, for size_t. Use the function name gnu_getline, not
27143         simply getline. Infoke gl_PREREQ_GETLINE.
27144
27145         Module obstack.
27146         * m4/obstack.m4: New file.
27147
27148         Module hash.
27149         * m4/hash.m4: New file.
27150
27151         Module readtokens.
27152         * m4/readtokens.m4: New file.
27153
27154         Module strverscmp.
27155         * m4/strverscmp.m4: New file.
27156
27157         Module stdbool.
27158         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Add test for _Bool. Needed for
27159         OSF/1.
27160
27161         Module strtoll.
27162         * m4/strtoll.m4: New file.
27163
27164         Module strtoull.
27165         * m4/strtoull.m4: New file.
27166
27167         Module strtoimax.
27168         * m4/strtoimax.m4: New file.
27169
27170         Module strtoumax.
27171         * m4/strtoumax.m4: New file.
27172
27173         Module xstrtoimax.
27174         * m4/xstrtoimax.m4 (jm_XSTRTOIMAX): Renamed from
27175         jm_AC_PREREQ_XSTRTOIMAX.
27176         Moved the strtol prerequisites to strtol.m4.
27177         Moved the strtoll prerequisites to strtoll.m4.
27178         Moved the strtoimax prerequisites to strtoimax.m4.
27179
27180         Module xstrtoumax.
27181         * m4/xstrtoumax.m4 (jm_XSTRTOUMAX): Renamed from
27182         jm_AC_PREREQ_XSTRTOUMAX.
27183         Moved the strtoul prerequisites to strtoul.m4.
27184         Moved the strtoull prerequisites to strtoull.m4.
27185         Moved the strtoumax prerequisites to strtoumax.m4.
27186
27187         Module chown.
27188         * m4/chown.m4 (gl_PREREQ_CHOWN): New macro.
27189         (jm_FUNC_CHOWN): Use AC_FUNC_CHOWN. Invoke gl_PREREQ_CHOWN.
27190
27191         Module dup2.
27192         * m4/dup2.m4: New file.
27193
27194         Module ftruncate.
27195         * m4/ftruncate.m4 (gl_PREREQ_FTRUNCATE): New macro.
27196         (jm_FUNC_FTRUNCATE): Use AC_REPLACE_FUNCS. Invoke gl_PREREQ_FTRUNCATE.
27197
27198         Module getgroups.
27199         * m4/getgroups.m4 (gl_PREREQ_GETGROUPS): New macro.
27200         (jm_FUNC_GETGROUPS): Use AC_FUNC_GETGROUPS. Invoke gl_PREREQ_GETGROUPS.
27201
27202         Module gettimeofday.
27203         * m4/gettimeofday.m4 (gl_PREREQ_GETTIMEOFDAY): New macro.
27204         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Use onceonly macros. Invoke
27205         gl_PREREQ_GETTIMEOFDAY.
27206
27207         Module mkdir.
27208         * m4/mkdir-slash.m4 (gl_PREREQ_MKDIR): New macro.
27209         (UTILS_FUNC_MKDIR_TRAILING_SLASH): Invoke gl_PREREQ_MKDIR.
27210
27211         Module mkstemp.
27212         * m4/mkstemp.m4 (gl_PREREQ_MKSTEMP): New macro.
27213         (jm_PREREQ_TEMPNAME): New macro, from prereq.m4. Also invoke
27214         jm_AC_TYPE_UINTMAX_T.
27215         (UTILS_FUNC_MKSTEMP): Invoke gl_PREREQ_MKSTEMP and jm_PREREQ_TEMPNAME.
27216
27217         Module stat.
27218         * m4/stat.m4 (gl_PREREQ_STAT): New macro.
27219         (jm_FUNC_STAT): Use AC_FUNC_STAT. Invoke gl_PREREQ_STAT.
27220
27221         Module lstat.
27222         * m4/lstat.m4 (gl_PREREQ_LSTAT): New macro.
27223         (jm_FUNC_LSTAT): Use AC_FUNC_LSTAT. Invoke gl_PREREQ_LSTAT.
27224
27225         Module timespec.
27226         * m4/timespec.m4 (gl_TIMESPEC): New macro.
27227         (jm_CHECK_TYPE_STRUCT_TIMESPEC): Add check for <sys/time.h>.
27228         * m4/st_mtim.m4: Indentation.
27229
27230         Module nanosleep.
27231         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): New macro.
27232         (jm_FUNC_NANOSLEEP): Add check for <sys/time.h>. Invoke
27233         gl_PREREQ_NANOSLEEP.
27234
27235         Module regex.
27236         * m4/regex.m4 (jm_PREREQ_REGEX): New macro.
27237         (jm_INCLUDED_REGEX): Invoke jm_PREREQ_REGEX.
27238         (gl_REGEX): New macro.
27239
27240         Module rename.
27241         * m4/rename.m4 (gl_PREREQ_RENAME): New macro.
27242         (vb_FUNC_RENAME): Invoke gl_PREREQ_RENAME.
27243
27244         Module rmdir.
27245         * m4/rmdir.m4: New file.
27246
27247         Module utime.
27248         * m4/utimbuf.m4 (jm_CHECK_TYPE_STRUCT_UTIMBUF): Use onceonly macros.
27249         * m4/utime.m4 (gl_PREREQ_UTIME): New macro.
27250         (jm_FUNC_UTIME): Invoke gl_PREREQ_UTIME.
27251
27252         Module dirname.
27253         * m4/dirname.m4: New file.
27254
27255         Module getopt.
27256         * m4/getopt.m4: New file.
27257
27258         Module unistd-safer.
27259         * m4/unistd-safer.m4: New file.
27260
27261         Module fnmatch.
27262         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Include <stdlib.h>, for exit()
27263         declaration.
27264         (gl_PREREQ_FNMATCH_EXTRA): New macro.
27265         (gl_FUNC_FNMATCH_POSIX): New macro.
27266         (gl_FUNC_FNMATCH_GNU): Renamed from AC_FUNC_FNMATCH_GNU. Invoke
27267         gl_PREREQ_FNMATCH_EXTRA. Use the function name gnu_fnmatch, not
27268         simply fnmatch.
27269
27270         Module exclude.
27271         * m4/exclude.m4: New file.
27272
27273         Module human.
27274         * m4/human.m4: New file.
27275
27276         Module acl.
27277         * m4/acl.m4: Nop.
27278
27279         Module backupfile.
27280         * m4/backupfile.m4: New file.
27281         * m4/d-ino.m4: Indentation.
27282
27283         Module fsusage.
27284         * m4/fsusage.m4 (gl_FSUSAGE): New macro.
27285         (jm_STATFS_TRUNCATES): New macro, from coreutils-4.5.4/configure.ac.
27286         (gl_PREREQ_FSUSAGE_EXTRA): New macro.
27287
27288         Module dirfd.
27289         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Invoke some AC_EGREP_CPP
27290         requirements.
27291
27292         Module euidaccess.
27293         * m4/euidaccess.m4: New file.
27294
27295         Module file-type.
27296         * m4/file-type.m4: New file.
27297
27298         Module fileblocks.
27299         * m4/fileblocks.m4: New file.
27300
27301         Module filemode.
27302         * m4/filemode.m4: New file.
27303
27304         Module isdir.
27305         * m4/isdir.m4: New file.
27306
27307         Module lchown.
27308         * m4/lchown.m4 (gl_PREREQ_LCHOWN): New macro.
27309         (jm_FUNC_LCHOWN): Invoke gl_PREREQ_LCHOWN.
27310
27311         Module makepath.
27312         * m4/makepath.m4: New file.
27313
27314         Module modechange.
27315         * m4/modechange.m4: New file.
27316
27317         Module mountlist.
27318         * m4/mountlist.m4: New file.
27319         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Use onceonly macros.
27320         Indentation.
27321
27322         Module path-concat.
27323         * m4/path-concat.m4: New file.
27324
27325         Module pathmax.
27326         * m4/pathmax.m4: New file.
27327
27328         Module same.
27329         * m4/same.m4: New file.
27330
27331         Module save-cwd.
27332         * m4/save-cwd.m4: New file.
27333
27334         Module savedir.
27335         * m4/savedir.m4: New file.
27336
27337         Module xgetcwd.
27338         * m4/xgetcwd.m4: New file.
27339         * m4/getcwd.m4 (AC_FUNC_GETCWD_NULL): Use onceonly macros.
27340
27341         Module xreadlink.
27342         * m4/xreadlink.m4: New file.
27343
27344         Module safe-read.
27345         * m4/safe-read.m4: New file.
27346
27347         Module safe-write.
27348         * m4/safe-write.m4: New file.
27349
27350         Module closeout.
27351         * m4/closeout.m4: New file.
27352
27353         Module stdio-safer.
27354         * m4/stdio-safer.m4: New file.
27355
27356         Module getpass.
27357         * m4/getpass.m4: New file.
27358
27359         Module getugroups.
27360         * m4/getugroups.m4: New file.
27361
27362         Module group-member.
27363         * m4/group-member.m4 (gl_PREREQ_GROUP_MEMBER): New macro.
27364         (jm_FUNC_GROUP_MEMBER): Invoke AC_GNU_SOURCE, gl_PREREQ_GROUP_MEMBER.
27365
27366         Module idcache.
27367         * m4/idcache.m4: New file.
27368
27369         Module userspec.
27370         * m4/userspec.m4: New file.
27371
27372         Module gettime.
27373         * m4/clock_time.m4: New file.
27374         * m4/gettime.m4: New file.
27375
27376         Module settime.
27377         * m4/settime.m4: New file.
27378
27379         Module posixtm.
27380         * m4/posixtm.m4: New file.
27381
27382         Module gethostname.
27383         * m4/gethostname.m4: New file.
27384
27385         Module canon-host.
27386         * m4/canon-host.m4: New file.
27387
27388         Module gettext.
27389         * m4/codeset.m4: New file, from gettext-0.11.5.
27390         * m4/gettext.m4: New file, from gettext-0.11.5.
27391         * m4/glibc21.m4: New file, from gettext-0.11.5.
27392         * m4/iconv.m4: New file, from gettext-0.11.5.
27393         * m4/intdiv0.m4: New file, from gettext-0.11.5.
27394         * m4/inttypes-pri.m4: New file, from gettext-0.11.5.
27395         * m4/inttypes.m4: New file, from gettext-0.11.5.
27396         * m4/inttypes_h.m4: New file, from gettext-0.11.5 with modifications.
27397         * m4/isc-posix.m4: New file, from gettext-0.11.5.
27398         * m4/lcmessage.m4: New file, from gettext-0.11.5.
27399         * m4/lib-ld.m4: New file, from gettext-0.11.5.
27400         * m4/lib-link.m4: New file, from gettext-0.11.5.
27401         * m4/lib-prefix.m4: New file, from gettext-0.11.5.
27402         * m4/progtest.m4: New file, from gettext-0.11.5.
27403         * m4/stdint_h.m4: New file, from gettext-0.11.5 with modifications.
27404         * m4/uintmax_t.m4: New file, from gettext-0.11.5 with modifications.
27405         * m4/ulonglong.m4: New file, from gettext-0.11.5 with modifications.
27406
27407         Module localcharset.
27408         * m4/localcharset.m4: New file.
27409
27410         Module hard-locale.
27411         * m4/hard-locale.m4: New file.
27412
27413         Module mbswidth.
27414         * m4/mbswidth.m4 (gl_MBSWIDTH): Renamed from jm_PREREQ_MBSWIDTH. Use
27415         onceonly macros.
27416         * m4/mbrtowc.m4: Add comment.
27417
27418         Module memcasecmp.
27419         * m4/memcasecmp.m4: New file.
27420
27421         Module memcoll.
27422         * m4/memcoll.m4: New file.
27423
27424         Module unicodeio.
27425         * m4/unicodeio.m4: New file.
27426
27427         Module rpmatch.
27428         * m4/rpmatch.m4: New file.
27429
27430         Module yesno.
27431         * m4/yesno.m4: New file.
27432
27433         Module exitfail.
27434         * m4/exitfail.m4: New file.
27435
27436         Module c-stack.
27437         * m4/c-stack.m4 (gl_C_STACK): New macro.
27438         (jm_PREREQ_C_STACK): Check for <sys/time.h>. Use onceonly macros.
27439
27440         Module error.
27441         * m4/error.m4 (gl_ERROR): New macro.
27442         (jm_PREREQ_ERROR): Use onceonly macros.
27443
27444         Module fatal.
27445         * m4/fatal.m4: New file.
27446
27447         Module getloadavg.
27448         * m4/getloadavg.m4 (AC_FUNC_GETLOADAVG): Use onceonly macros.
27449         (gl_FUNC_GETLOADAVG, gl_PREREQ_GETLOADAVG): New macros.
27450
27451         Module getpagesize.
27452         * m4/getpagesize.m4: New file.
27453
27454         Module getusershell.
27455         * m4/getusershell.m4: New file.
27456
27457         Module physmem.
27458         * m4/physmem.m4: New file.
27459
27460         Module posixver.
27461         * m4/posixver.m4: New file.
27462
27463         Module quotearg.
27464         * m4/quotearg.m4: New file.
27465
27466         Module quote.
27467         * m4/quote.m4: New file.
27468
27469         Module readutmp.
27470         * m4/readutmp.m4: New file, based on jm_PREREQ_READUTMP from prereq.m4.
27471
27472         Module sig2str.
27473         * m4/sig2str.m4: New file.
27474
27475         Other.
27476         * m4/longlong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Remove, moved to
27477         ulonglong.m4.
27478         * m4/intmax_t.m4: New file.
27479         * m4/d-type.m4: Indentation.
27480         * m4/jm-macros.m4: Update.
27481         * m4/prereq.m4 (jm_PREREQ): Update.
27482         (jm_PREREQ_ADDEXT): Remove, obsoleted by backupfile.m4.
27483         (jm_PREREQ_CANON_HOST): Remove, obsoleted by canon-host.m4.
27484         (jm_PREREQ_DIRNAME): Remove, obsoleted by dirname.m4.
27485         (jm_PREREQ_EXCLUDE): Remove, obsoleted by exclude.m4.
27486         (jm_PREREQ_GETPAGESIZE): Remove, obsoleted by getpagesize.m4.
27487         (jm_PREREQ_HARD_LOCALE): Remove, obsoleted by hard-locale.m4.
27488         (jm_PREREQ_HASH): Remove, obsoleted by hash.m4.
27489         (jm_PREREQ_HUMAN): Remove, obsoleted by human.m4.
27490         (jm_PREREQ_MEMCHR): Remove, obsoleted by memchr.m4.
27491         (jm_PREREQ_PHYSMEM): Remove, obsoleted by physmem.m4.
27492         (jm_PREREQ_POSIXVER): Remove, obsoleted by posixver.m4.
27493         (jm_PREREQ_QUOTEARG): Remove, obsoleted by quotearg.m4.
27494         (jm_PREREQ_READUTMP): Remove, obsoleted by readutmp.m4.
27495         (jm_PREREQ_REGEX): Remove, obsoleted by regex.m4.
27496         (jm_PREREQ_STRNLEN): Remove, obsoleted by strnlen.m4.
27497         (jm_PREREQ_TEMPNAME): Remove, obsoleted by mkstemp.m4.
27498         (jm_PREREQ_XGETCWD): Remove, obsoleted by xgetcwd.m4.
27499         (jm_PREREQ_XREADLINK): Remove, obsoleted by xreadlink.m4.
27500         * m4/readdir.m4 (jm_FUNC_READDIR): Use onceonly macros.
27501
27502 2002-12-24  Bruno Haible  <bruno@clisp.org>
27503
27504         * MODULES.txt: Update according to m4/ changes.
27505
27506         Module gettext.
27507         * config.rpath: New file, from gettext-0.11.5.
27508
27509         * modules/*: New module descriptions.
27510         * gnulib-tool: New file.
27511         * MODULES.html.sh: New file.
27512
27513 2002-12-21  Karl Berry  <karl@gnu.org>
27514
27515         * doc/fdl.texi: update to version 1.2.
27516
27517 2002-12-19  Karl Berry  <karl@gnu.org>
27518
27519         * config/config.guess: update from prep.
27520
27521 2002-12-18  Bruno Haible  <bruno@clisp.org>
27522
27523         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't test for localtime_r.
27524         * m4/jm-mktime.m4 (jm_FUNC_MKTIME): Likewise.
27525
27526 2002-12-17  Bruno Haible  <bruno@clisp.org>
27527
27528         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Remove checks for limits.h,
27529         stdlib.h, string.h.
27530
27531 2002-12-17  Bruno Haible  <bruno@clisp.org>
27532
27533         * lib/canon-host.c (strdup): Remove unused declaration.
27534
27535         * lib/fsusage.c: Include full_read.h.
27536         (get_fs_usage): Use full_read instead of safe_read.
27537
27538         * lib/utime.c (utime_null): Use SAFE_READ_ERROR.
27539
27540 2002-12-12  Karl Berry  <karl@gnu.org>
27541
27542         * config/config.guess: update from prep.
27543
27544 2002-12-11  Bruno Haible  <bruno@clisp.org>
27545
27546         * m4/setenv.m4: New file, from gettext-0.11.5.
27547
27548 2002-12-11  Bruno Haible  <bruno@clisp.org>
27549
27550         * lib/setenv.h: Rewritten to cope with systems that have setenv() but
27551         not unsetenv().
27552         * lib/setenv.c, unsetenv.c: Taken from glibc-2.2.4 with the following
27553         modifications:
27554
27555         2002-12-11  Bruno Haible  <bruno@clisp.org>
27556
27557                 * setenv.c (alloca): Fall back to malloc.
27558                 (freea): New macro.
27559                 (setenv): Use freea() to free memory allocated with alloca().
27560
27561         2002-11-13  Bruno Haible  <bruno@clisp.org>
27562
27563                 * setenv.c (compar_fn_t, __add_to_environ, setenv): Use ANSI C
27564                 function declarations.
27565                 * unsetenv.c (unsetenv): Likewise.
27566
27567         2002-03-04  Bruno Haible  <bruno@clisp.org>
27568
27569                 Portability to AIX 4.3.3.
27570                 * unsetenv.c: New file, extracted from setenv.c.
27571                 * setenv.c: Move the unsetenv() function to unsetenv.c.
27572
27573         2001-12-20  Bruno Haible  <bruno@clisp.org>
27574
27575                 * setenv.c (__add_to_environ): Don't call realloc(NULL,...),
27576                 use malloc instead. For SunOS 4.
27577
27578         2001-12-11  Bruno Haible  <bruno@clisp.org>
27579
27580                 * setenv.c: Declare alloca.
27581                 (compar_fn_t): New typedef.
27582                 (KNOWN_VALUE, STORE_VALUE): Use it.
27583
27584         * lib/Makefile.am (libfetish_a_SOURCES): Add setenv.c, unsetenv.c,
27585         setenv.h.
27586
27587 2002-12-10  Paul Eggert  <eggert@twinsun.com>
27588
27589         Port exclude.c and exclude.h to more non-GNU systems, e.g. Solaris 7.
27590         * lib/exclude.h (EXCLUDE_ANCHORED, EXCLUDE_INCLUDE, EXCLUDE_WILDCARDS):
27591         Choose values that are less likely to collide with system fnmatch
27592         options.
27593         * lib/exclude.c (FNM_CASEFOLD, FNM_LEADING_DIR): Define to 0 if not
27594         defined (e.g., a pure POSIX system).
27595         (EXCLUDE_macros_do_not_collide_with_FNM_macros): Use FNM_PATHNAME
27596         instead of FNM_FILE_NAME, for compatibility with pure POSIX sytems.
27597
27598 2002-12-06  Paul Eggert  <eggert@twinsun.com>
27599
27600         Undo the 2001-07-02 change for jm-glibc-io, as it was too much of
27601         a pain in practice to deal with generated m4 files.  This change
27602         goes together with the 2002-12-04 unlocked-io.h change in ../lib.
27603
27604         * m4/Makefile.am.in (Makefile.am): Don't mention jm-glibc-io.m4n
27605         and jm-glibc-io.m4, as they are no longer a special case.
27606         * m4/jm-glibc-io.m4: Rename from jm-glibc-io.m4n, and remove the
27607         kludge and the auto-generation stuff.  Check only whether the
27608         functions are declared, not whether they exist, since older hosts
27609         that don't declare the functions can't use the optimization anyway.
27610
27611 2002-12-06  Jim Meyering  <jim@meyering.net>
27612
27613         * lib/error.c: Be consistent: change `#ifndef _LIBC' to `#if !_LIBC'.
27614
27615         Merge in changes from libc's misc/error.c, in preparation
27616         for the merge of gnulib's changes back into libc.
27617
27618         * lib/error.c (_): Define only if not already defined.
27619         Move definition to follow all #include directives.
27620         Include unlocked-io.h only if !_LIBC.
27621         [_LIBC]: Include <libio/libioP.h>.
27622         [USE_IN_LIBIO]: Include <libio/iolibio.h>
27623         (fflush): Tweak definition to use INTUSE.
27624         (putc): Define.
27625
27626 2002-12-05  Paul Eggert  <eggert@twinsun.com>
27627
27628         * lib/alloca.c [defined emacs]: Include "lisp.h".
27629         (xalloc_die) [defined emacs]: New macro.
27630         (free) [defined emacs && defined EMACS_FREE]: Define to EMACS_FREE.
27631         [! defined emacs]: Include <xalloc.h>.
27632         (POINTER_TYPE) [!defined POINTER_TYPE]: New macro.
27633         (pointer): Typedef to POINTER_TYPE *.
27634         (malloc): Remove decl; we now always use xmalloc.
27635         (alloca): Use old-style definition, since Emacs needs this.
27636         Check for arithmetic overflow when computing combined size.
27637
27638 2002-12-04  Paul Eggert  <eggert@twinsun.com>
27639
27640         Do not generate unlocked-io.h automatically, since it's easier to
27641         maintain it by hand.
27642
27643         * lib/unlocked-io.h: New file, from GNU diffutils,
27644         but with proper copyright notice and attribution.
27645         * lib/gen-uio: Remove.
27646         * lib/Makefile.am: Add copyright notice.
27647         (libfetish_a_SOURCES): Add unlocked-io.h.
27648         (BUILT_SOURCES, all-local): Remove unlocked-io.h.
27649         (DISTCLEANFILES, io_functions): Remove macros.
27650         (EXTRA_DIST): Remove gen_uio.
27651         (unlocked-io.h): Remove rule.
27652
27653 2002-12-04  Jim Meyering  <jim@meyering.net>
27654
27655         Reflect the fact that stat.c and lstat.c are no longer generated.
27656         * lib/Makefile.am (BUILT_SOURCES): Remove stat.c and lstat.c.
27657         (DISTCLEANFILES): Likewise.
27658         (EXTRA_DIST): Likewise.
27659         (all_local): Don't depend on stat.c or lstat.c.
27660         (stat.c, lstat.c): Remove rules.
27661         (EXTRA_DIST): Remove xstat.in.
27662
27663         * lib/xstat.in: Remove file.  Contents moved into stat.c.
27664         * lib/stat.c: New file.  Contents mostly from xstat.in.
27665         * lib/stat.c: Rework so that it may serve to define rpl_lstat, too.
27666         * lib/lstat.c: New file. Simply #define LSTAT and include stat.c.
27667
27668         * lib/safe-read.c: Rework so that it may serve to define safe_write,
27669         too.
27670         * lib/safe-write.c: Simply #define SAFE_WRITE and include safe-read.c.
27671
27672 2002-12-03  Jim Meyering  <jim@meyering.net>
27673
27674         * lib/safe-read.c, safe-write.c: Change variable names and comments,
27675         but not semantics, to minimize the differences between these two files.
27676         (safe_read): Change comment to mention SAFE_READ_ERROR.
27677
27678         * lib/safe-read.c (IS_EINTR): Define.
27679         (safe_read): Use IS_EINTR in place of in-function cpp directives.
27680
27681 2002-12-02  Jim Meyering  <jim@meyering.net>
27682
27683         * lib/safe-read.c (EINTR): Define.
27684         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Define.
27685         (INT_MAX): Provide fallback.
27686         (safe_read): Rewrite to iterate IFF the read fails with EINTR.
27687
27688         * lib/safe-read.h (SAFE_READ_ERROR): Define.
27689
27690 2002-12-02  Bruno Haible  <bruno@clisp.org>
27691
27692         * lib/safe-write.c (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM):
27693         Define, taken from safe-read.c.
27694         (INT_MAX): Provide fallback.
27695         (safe_write): Rewrite to iterate IFF the write fails with EINTR.
27696         * lib/safe-write.h (SAFE_WRITE_ERROR): Define.
27697
27698         * lib/safe-read.c (EINTR): Remove definition.
27699         (safe_read): Don't use EINTR if it is absent.
27700
27701 2002-12-01  Jim Meyering  <jim@meyering.net>
27702
27703         * lib/safe-read.c: (safe_read): Also exit the loop when read returns
27704         zero.
27705         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM, INT_MAX): Define.
27706
27707 2002-11-27  Paul Eggert  <eggert@twinsun.com>
27708
27709         * lib/hash.c (hash_lookup, hash_get_first, hash_get_next,
27710         hash_find_entry, hash_rehash): Replace `if (limit <= value) abort ();'
27711         with `if (! (value < limit)) abort ();', for readability.
27712
27713 2002-11-26  Karl Berry  <karl@gnu.org>
27714
27715         * lib/strdup.c: copy from libc again, with jim's ok.
27716         * lib/.cppi-disable: re-add strdup.c
27717
27718 2002-11-25  Karl Berry  <karl@gnu.org>
27719
27720         * lib/strtoll.c: copy from libc, meaning we now #include <strtol.c>
27721         instead of "strtol.c".
27722
27723 2002-11-25  Karl Berry  <karl@gnu.org>
27724
27725         * config/install-sh: update from automake for variable quoting, $0 in
27726         error msgs, etc.
27727
27728         * config/srclist.txt ($LIBCSRC/time/mktime.c lib gpl): new entry.
27729         * config/srclist.txt ($LIBCSRC/sysdeps/generic/strtoll.c lib gpl): new
27730         entry.
27731
27732 2002-11-25  Jim Meyering  <jim@meyering.net>
27733
27734         * lib/mktime.c: Sync from libc, now that it has the latest fix.
27735
27736 2002-11-24  Karl Berry  <karl@gnu.org>
27737
27738         * lib/error.c, getopt.c, getopt.h, getopt1.c, obstack.c, regex.c,
27739         regex.h, strdup.c, strtoll.c, tempname.c: change license to gpl.
27740
27741 2002-11-24  Jim Meyering  <jim@meyering.net>
27742
27743         Update from coreutils:
27744
27745         * lib/mktime.c: Merge in changes from libc.
27746
27747         Avoid a link-time failure on some Linux systems.
27748         * lib/mktime.c (STATIC): Define to be empty (_LIBC) or `static'
27749         (otherwise).
27750         (__mon_yday): Declare with the STATIC attribute.
27751         (__mktime_internal): Likewise.
27752         Based on a report from Greg Schafer.
27753
27754 2002-11-23  Jim Meyering  <jim@meyering.net>
27755
27756         * lib/sig2str.c (str2signum, sig2str): Avoid a warning from gcc:
27757         Use `unsigned', not `int', as type of index.
27758
27759         * lib/xstat.in [@BEGIN_LSTAT_ONLY@]: Include <string.h>.
27760
27761         * lib/fsusage.c: Remove unneeded parentheses around operands of
27762         `defined'.
27763
27764 2002-11-22  Paul Eggert  <eggert@twinsun.com>
27765
27766         * lib/quotearg.h: Allow multiple inclusion by surrounding with
27767         "#ifndef QUOTEARG_H_".  Include <stddef.h>, for size_t,
27768         so that we can be included first.
27769         (PARAMS): Remove; we now assume C89 or later.  All uses removed.
27770         * lib/quotearg.c: Include quotearg.h immediately after config.h.
27771         No need to include stddef.h or sys/types.h any more.
27772         Surround local include files with "", not "<>".
27773         Assume HAVE_LIMITS_H unconditionally, as we assume C89.
27774         Similarly, assume HAVE_C_BACKSLASH_A, CHAR_BIT, UCHAR_MAX, UINT_MAX,
27775         HAVE_STDLIB_H, HAVE_STRING_H, STDC_HEADERS.
27776         (HAVE_MBSINIT): Undef if !HAVE_MBRTOWC.
27777         (mbsinit): Define to 1 if !defined mbsinit && !HAVE_MBSINIT.
27778         (ISPRINT): Remove; no longer needed now that we assume C89.
27779
27780         (clone_quoting_options, quotearg_buffer, quotearg_n_options):
27781         Preserve errno.
27782
27783         (quotearg_buffer_restyled, quotearg_n, quotearg_n_style,
27784         quotearg_char): Use SIZE_MAX rather than
27785         (size_t) -1 when we are talking about "infinity".
27786
27787         (quotearg_buffer_restyled): Fix bug when quoting trigraphs.
27788
27789 2002-11-22  Paul Eggert  <eggert@twinsun.com>
27790
27791         * lib/hash.c: Avoid use of <assert.h>, as the GNU Coding Standards
27792         hint that one should use `if (! x) abort ();' rather than `assert
27793         (x);', and anyway it's one less thing to worry about configuring.
27794         (hash_lookup, hash_get_first, hash_get_next, hash_find_entry,
27795         hash_rehash, hash_insert): Use abort rather than assert.
27796
27797 2002-11-22  Bruno Haible  <bruno@clisp.org>
27798
27799         * lib/safe-read.h: Assume C89. Add comments.
27800         (safe_read): Change return type to size_t.
27801         * lib/safe-read.c (safe_read): Change return type to size_t. Handle
27802         byte counts > SSIZE_MAX correctly.
27803         * lib/safe-write.h: New file.
27804         * lib/safe-write.c: New file.
27805         * lib/full-read.h: New file.
27806         * lib/full-read.c: New file.
27807         * lib/full-write.h: Assume C89. Add comments.
27808         * lib/full-write.c: Include safe-write.h.
27809         (full_write): Rewritten to use safe_write.
27810         Suggested by Jim Meyering and Paul Eggert.
27811
27812 2002-11-21  Jim Meyering  <jim@meyering.net>
27813
27814         * lib/strdup.c (strdup): Tweak comment and initial #if/#include.
27815
27816         Merge in changes from the coreutils.
27817
27818         2002-09-25  Paul Eggert  <eggert@twinsun.com>
27819         * lib/fsusage.c [! HAVE_INTTYPES_H && HAVE_STDINT_H] Include
27820         <stdint.h>.
27821         (UINTMAX_MAX) [!defined UINTMAX_MAX]: New macro.
27822         (PROPAGATE_ALL_ONES): Work even if X is unsigned and narrower than
27823         int.  Work more efficiently if X is the same width as uintmax_t.
27824         Do not compare X to -1, to avoid bogus compiler warning.
27825         (get_fs_usage): (uintmax_t) -1 -> UINTMAX_MAX to avoid a cast.
27826         Don't assume that f_frsize and f_bsize are the same type.
27827
27828         * lib/mountlist.c: #undef MNT_IGNORE before defining it, to avoid
27829         warning on FreeBSD.
27830
27831         * lib/makepath.c (make_path): Restore umask *before* creating the final
27832         component.
27833         (make_path): Minor reformatting.
27834
27835         * lib/xmalloc.c: Adjust to work with new autoconf macros,
27836         AC_FUNC_MALLOC and AC_FUNC_REALLOC: test #ifndef
27837         HAVE_MALLOC/HAVE_REALLOC.
27838
27839         * lib/mountlist.h (ME_DUMMY): Don't count entries of type `auto' as
27840         dummy ones.  At least on GNU/Linux systems, `auto' means something
27841         else.
27842         From Michael Stone.
27843
27844 2002-11-21  Bruno Haible  <bruno@clisp.org>
27845
27846         Remove case insensitive option matching.
27847         * lib/argmatch.h (argcasematch): Remove declaration.
27848         (ARGCASEMATCH): Remove macro.
27849         (__xargmatch_internal): Remove case_sensitive argument.
27850         (XARGMATCH): Update.
27851         (XARGCASEMATCH): Remove macro.
27852         * lib/argmatch.c (argmatch): Renamed from __argmatch_internal. Remove
27853         case_sensitive argument.
27854         (argcasematch): Remove function.
27855         (__xargmatch_internal): Remove case_sensitive argument.
27856         (main): Use XARGMATCH instead of XARGCASEMATCH.
27857
27858         * lib/xmalloc.c: Change compile-time error message. Add comment about
27859         required autoconf version.
27860
27861 2002-11-20  Paul Eggert  <eggert@twinsun.com>
27862
27863         Merge argmatch cleanups from Bison.  Assume C89.
27864
27865         * lib/argmatch.c: Include config.h here, not in argmatch.h.
27866         Include stdlib.h, for EXIT_FAILURE.
27867         Always include <string.h>, since we assume C89.
27868         (EXIT_FAILURE): Remove pre-C89 bug workaround.
27869         * lib/argmatch.h: Do not include <config.h> or <sys/types.h>.
27870         Include <stddef.h> instead, since it's all we need for size_t.
27871         (PARAMS): Remove.  All uses removed.
27872         (ARRAY_CARDINALITY): Do not bother to #undef.
27873         (ARRAY_CARDINALITY, ARGMATCH, ARGCASEMATCH, invalid_arg,
27874         ARGMATCH_VALID, XARGMATCH, XARGCASEMATCH):
27875         Remove unnecessary parentheses.
27876         (ARGMATCH_VALID, XARGMATCH, XARGCASEMATCH):
27877         Insert necessary parentheses.
27878         (ARGMATCH_CONSTRAINT, ARGMATCH_VERIFY): New macros.
27879         (ARGMATCH_ASSERT): Use ARGMATCH_CONSTRAINT.
27880
27881 2002-11-19  Bruno Haible  <bruno@clisp.org>
27882
27883         * lib/mbswidth.c: Include mbswidth.h right at the beginning.
27884         * lib/mbswidth.h: Include <stddef.h>, for size_t.
27885
27886         * lib/mbswidth.h (PARAMS): Remove macro.
27887         (mbswidth, mbsnwidth): Use ANSI C function declarations.
27888         * lib/mbswidth.c (mbswidth, mbsnwidth): Likewise.
27889
27890         * lib/gcd.h (PARAMS): Remove macro.
27891         (gcd): Use ANSI C function declarations.
27892         * lib/gcd.c (gcd): Likewise.
27893
27894 2002-11-15  Bruno Haible  <bruno@clisp.org>
27895
27896         * lib/strcspn.c: Include <stddef.h>.
27897         (strcspn): Use ANSI C function declaration. Change return type to
27898         size_t. Use NULL.
27899         * lib/strpbrk.c: Minimize diffs to glibc. Include <stddef.h>.
27900         (strpbrk): Use NULL.
27901         * lib/strpbrk.h (PARAMS): Remove macro.
27902         (strpbrk): Use ANSI C function declaration.
27903         * lib/strstr.c: Don't include <sys/types.h>.
27904         * lib/strstr.h (PARAMS): Remove macro.
27905         (strstr): Use ANSI C function declarations.
27906
27907 2002-11-14  Karl Berry  <karl@gnu.org>
27908
27909         * config/mkinstalldirs: `do' on separate line, instead of
27910         `for var; do'.
27911
27912 2002-11-06  Bruno Haible  <bruno@clisp.org>
27913
27914         * lib/gcd.h (gcd): Change argument type to 'unsigned long'.
27915         * lib/gcd.c (gcd): Likewise.
27916
27917 2002-11-05  Bruno Haible  <bruno@clisp.org>
27918
27919         * lib/gcd.h: New file, from gettext-0.11.5.
27920         * lib/gcd.c: New file, from gettext-0.11.5.
27921
27922 2002-11-05  Bruno Haible  <bruno@clisp.org>
27923
27924         * lib/error.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
27925         * lib/getopt.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
27926         * lib/obstack.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
27927         * lib/regex.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
27928
27929         * lib/argmatch.c: Include gettext.h instead of <locale.h> and
27930         <libintl.h>.
27931         * lib/makepath.c: Include gettext.h instead of <locale.h> and
27932         <libintl.h>.
27933
27934         * lib/closeout.c: Include gettext.h instead of <libintl.h>.
27935         * lib/human.c: Include gettext.h instead of <libintl.h>.
27936         * lib/quotearg.c: Include gettext.h instead of <libintl.h>.
27937         * lib/rpmatch.c: Include gettext.h instead of <libintl.h>.
27938         * lib/unicodeio.c: Include gettext.h instead of <libintl.h>.
27939         * lib/userspec.c: Include gettext.h instead of <libintl.h>.
27940         * lib/version-etc.c: Include gettext.h instead of <libintl.h>.
27941         * lib/xmalloc.c: Include gettext.h instead of <libintl.h>.
27942         (textdomain): Remove definition.
27943         * lib/xmemcoll.c: Include gettext.h instead of <libintl.h>.
27944
27945         * lib/long-options.c: Remove include of <libintl.h> and definition of
27946         _.
27947         * lib/same.c: Remove include of <libintl.h> and definition of _.
27948
27949 2002-11-04  Owen Taylor  <otaylor@redhat.com>
27950
27951         * lib/config.charset: A few additions for Solaris.
27952
27953 2002-11-04  Bruno Haible  <haible@clisp.cons.org>
27954
27955         Make it possible to build libcharset with CC=gcc CFLAGS="-x c++".
27956         * lib/localcharset.c (locale_charset): Declare as extern "C".
27957
27958 2002-11-04  Bruno Haible  <haible@clisp.cons.org>
27959
27960         * lib/config.charset: msdos in uk_UA uses CP1125.
27961
27962 2002-11-04  Bruno Haible  <bruno@clisp.org>
27963
27964         * lib/stpcpy.h: New file, from GNU gettext-0.11.5.
27965         * lib/strcase.h: New file, from GNU gettext-0.11.5.
27966         * lib/strpbrk.h: New file, from GNU gettext-0.11.5.
27967         * lib/strstr.h: New file, from GNU gettext-0.11.5.
27968         * lib/xgetcwd.h: New file, from GNU gettext-0.11.5.
27969
27970 2002-11-04  Bruno Haible  <bruno@clisp.org>
27971
27972         * lib/localcharset.c (locale_charset): Don't return an empty string.
27973
27974 2002-11-04  Bruno Haible  <bruno@clisp.org>
27975
27976         * lib/localcharset.c (get_charset_aliases): Add more Windows specific
27977         aliases.
27978
27979 2002-11-04  Bruno Haible  <bruno@clisp.org>
27980
27981         * lib/config.charset: Update for newest glibc. Add canonical names
27982         ISO-8859-14, KOI8-T, TCVN5712-1, GEORGIAN-PS.
27983
27984 2002-11-04  Bruno Haible  <bruno@clisp.org>
27985
27986         * lib/config.charset: Add support for NetBSD.
27987
27988 2002-11-04  Bruno Haible  <bruno@clisp.org>
27989
27990         * lib/config.charset [msdosdjgpp]: For Russian, use CP866.
27991
27992 2002-11-01  Bruno Haible  <bruno@clisp.org>
27993
27994         * configure.in: Add AC_CONFIG_AUX_DIR call.
27995         (AC_OUTPUT): Add m4/Makefile, lib/Makefile. Remove doc/Makefile,
27996         test/Makefile.
27997         * Makefile.in (subdirs): Add m4, lib. Remove doc, test.
27998
27999 2002-09-28  Karl Berry  <karl@gnu.org>
28000
28001         * config/srclist.txt: can't copy install-sh/mkinstalldirs from
28002         installed automake until the next release, since changes have been
28003         made.
28004
28005 2002-09-25  Karl Berry  <karl@gnu.org>
28006
28007         * lib/strdup.c: copy from libc/string (via ../config/srclist*).
28008         * lib/getopt*: copy from libc/posix.
28009         * lib/gettext.h: copy from gettext.
28010         * lib/.cppi-disable: add strdup.c, gettext.h.
28011
28012 2002-09-25  Karl Berry  <karl@gnu.org>
28013
28014         * config/srclist.txt: enable gettext.h check.
28015         * config/config.{guess,sub}: update from prep.
28016         * config/depcomp, install-sh, mdate-sh, missing, mkinstalldirs: update
28017                 from automake 1.6.3.
28018         See srclist*.
28019
28020 2002-08-23  Stefan Monnier  <monnier@cs.yale.edu>
28021
28022         * regex.c (PATFETCH): Remove the translating fetch.
28023         (PATFETCH_RAW): Rename to PATFETCH.
28024         (set_image_of_range): New fun.
28025         (SET_RANGE_TABLE_WORK_AREA): Use it.
28026         (regex_compile): Don't translate the pattern chars so eagerly.
28027         Only do it when inserting an `exactn' bytecode or when handling
28028         a char-range.
28029         (mutually_exclusive_p): Avoid empty statement.
28030
28031 2002-07-06  Jim Meyering  <meyering@lucent.com>
28032
28033         * m4/README: Don't mention Makefile.am.in.
28034         Outline how I've tested changes to .m4 files.  Yep, it's a pain.
28035
28036 2002-07-01  Jim Meyering  <meyering@lucent.com>
28037
28038         * lib/c-stack.c: Include sys/time.h.
28039         From Volker Borchert.
28040
28041 2002-06-26  Paul Eggert  <eggert@twinsun.com>
28042
28043         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for btowc.
28044
28045 2002-06-26  Paul Eggert  <eggert@twinsun.com>
28046
28047         * lib/fnmatch.c, fnmatch_loop.c (WIDE_CHAR_SUPPORT):
28048         New macro.  Use it uniformly instead of
28049         (defined HAVE_WCTYPE_H && defined HAVE_WCHAR_H).
28050         It also uses HAVE_BTOWC, to fix a porting bug on Solaris 2.5.1
28051         reported by Vin Shelton.
28052
28053 2002-06-22  Paul Eggert  <eggert@twinsun.com>
28054
28055         * lib/c-stack.h (segv_handler, c_stack_action) [! defined SA_SIGINFO]:
28056         Do not assume SA_SIGINFO behavior.
28057         Bug reported by Jim Meyering on NetBSD 1.5.2.
28058
28059 2002-06-22  Jim Meyering  <meyering@lucent.com>
28060
28061         * m4/c-stack.m4: New file, from diffutils-2.8.2.
28062         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_C_STACK.
28063
28064         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Don't require AC__GNU_SOURCE,
28065         now that configure.ac uses AC_GNU_SOURCE.
28066         (jm_MACROS): Rename: jm_FUNC_FNMATCH to AC_FUNC_FNMATCH_GNU.
28067         * m4/prereq.m4 (jm_PREREQ_EXCLUDE): Likewise, wrt jm_FUNC_FNMATCH.
28068
28069         Update to latest tools.  Suggestions from Paul Eggert.
28070         * m4/stdbool.m4: New file, from diffutils-2.8.2.
28071         * m4/gnu-source.m4: Update from diffutils-2.8.2.
28072         * m4/fnmatch.m4: Likewise.
28073         * m4/prereq.m4: Change each use of AC_CHECK_HEADERS(stdbool.h)
28074         to AC_HEADER_STDBOOL
28075
28076 2002-06-22  Jim Meyering  <meyering@lucent.com>
28077
28078         * lib/fnmatch.c (ISASCII, ISPRINT): Undefine, to avoid warning about
28079         redefinition due to Solaris 2.6's definition in /usr/include/sys/euc.h.
28080
28081 2002-06-22  Jim Meyering  <meyering@lucent.com>
28082
28083         * lib/c-stack.c, lib/c-stack.h: New files, from diffutils-2.8.2.
28084
28085         * lib/exitfail.c, exitfail.h: Likewise.
28086         * lib/Makefile.am (libfetish_a_SOURCES): Add exitfail.c and exitfail.h.
28087
28088         * lib/Makefile.am (libfetish_a_SOURCES): Add fnmatch_.h in place
28089         of fnmatch.h.
28090         (EXTRA_DIST): Add fnmatch_loop.c.
28091         (libfetish_a_SOURCES): Add c-stack.c and c-stack.h.
28092
28093         * lib/fnmatch_loop.c: New file, from diffutils-2.8.2.
28094         * lib/fnmatch.c: Update from diffutils-2.8.2.
28095         * lib/fnmatch_.h: New file.  From diffutils-2.8.2.
28096         * lib/fnmatch.h: Remove file.
28097
28098 2002-06-21  Jim Meyering  <meyering@lucent.com>
28099
28100         * m4/c-bs-a.m4: Add comment, from diffutils-2.8.2.
28101         * m4/mbrtowc.m4: Likewise.
28102
28103         * m4/mbstate_t.m4: Update from diffutils-2.8.2.
28104         * m4/mbswidth.m4: Reflect name change:
28105         s/AC_MBSTATE_T/AC_TYPE_MBSTATE_T.
28106         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Likewise.
28107
28108         * m4/lib-link.m4: Update from gettext-0.11.2.
28109         * m4/gettext.m4: Likewise.
28110
28111         * m4/jm-macros.m4 (jm_CHECK_ALL_HEADERS): Check for hurd.h.
28112         From Alfred M. Szmidt.
28113
28114 2002-06-18  Paul Eggert  <eggert@twinsun.com>
28115
28116         * lib/file-type.h: Report an error if neither S_ISREG nor
28117         S_IFREG is defined, instead of using a test specific to glibc
28118         2.2.  This should be safe, since POSIX requires S_ISREG and
28119         Unix Version 7 had S_IFREG.  We don't need to check for
28120         <sys/types.h> since we don't use any symbols that it defines.
28121
28122 2002-06-15  Richard Dawe  <richdawe@bigfoot.com>
28123
28124         * lib/Makefile.am (lstat.c, stat.c, .sin.sed): Use t-$@, rather than
28125         $@-t, so that each temporary file name is unique and valid in the first
28126         8 characters, for operation under DOS.
28127
28128 2002-06-15  Paul Eggert  <eggert@twinsun.com>
28129
28130         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Check for st_author.
28131
28132 2002-06-15  Jim Meyering  <meyering@lucent.com>
28133
28134         Work even with DJGPP 2.03, which lacks support for symlinks.
28135         From Richard Dawe.
28136         * lib/xstat.in (S_ISLNK): Define to 0 if neither S_ISLNK nor S_IFLNK
28137         is defined.
28138         * lib/lchown.c (S_ISLNK): Likewise.
28139
28140 2002-06-15  Jim Meyering  <meyering@lucent.com>
28141
28142         * lib/file-type.h (FILE_TYPE_H): Guard entire contents with #ifndef.
28143         For GNU libc 2.2 and newer, ensure that <sys/types.h> and <sys/stat.h>
28144         have been included before this file.
28145
28146 2002-06-14  Jim Meyering  <meyering@lucent.com>
28147
28148         * lib/file-type.h: Use the version from diffutils-2.8.2.
28149         * lib/file-type.c: Likewise.
28150
28151 2002-06-07  Jim Meyering  <meyering@lucent.com>
28152
28153         * m4/prereq.m4 (jm_PREREQ_STAT): Check for sys/param.h and sys/mount.h.
28154         They're needed at least for NetBSD 1.5.2.
28155         ($statxfs_includes): Include those same headers.
28156         ($statxfs_includes): Include sys/vfs.h if available.
28157         ($statxfs_includes): Likewise for sys/statvfs.h.
28158         Check for the following members in both structs statfs and statvfs:
28159         f_basetype, f_type, f_fsid.__val, f_namemax, f_namelen.
28160
28161 2002-06-01  Jim Meyering  <meyering@lucent.com>
28162
28163         * m4/d-type.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Rename macro:
28164         s/D_TYPE_IN_DIRENT/HAVE_STRUCT_DIRENT_D_TYPE/.
28165
28166 2002-05-28  Jim Meyering  <meyering@lucent.com>
28167
28168         * m4/readdir.m4 (jm_FUNC_READDIR): Undefine `mkdir', not `rmdir'.
28169         Reported by Volker Borchert.
28170
28171 2002-05-27  Jim Meyering  <meyering@lucent.com>
28172
28173         Fix a problem seen only on nonconforming systems whereby ls.c's
28174         use of localtime, and then of gettimeofday would cause trouble:
28175         the localtime call used to initialize rpl_gettimeofday's save
28176         mechanism would clobber ls's current local time information so
28177         that in any long listing the first file would always be listed
28178         with date 1970-01-01.  Analysis by Volker Borchert.
28179
28180         * lib/gettimeofday.c (localtime): Undefine.
28181         (rpl_localtime): New function.
28182
28183 2002-05-27  Jim Meyering  <meyering@lucent.com>
28184
28185         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER): Also replace
28186         localtime.
28187
28188         * m4/readdir.m4 (jm_FUNC_READDIR): Undefine `rmdir' so we don't try to
28189         use the replacement function; it wouldn't resolve at link time.
28190         Reported by Volker Borchert.
28191
28192 2002-05-22  Jim Meyering  <meyering@lucent.com>
28193
28194         * lib/Makefile.am (libfetish_a_SOURCES): Add file-type.c and
28195         file-type.h.
28196         * lib/file-type.h: New file.
28197         * lib/file-type.c (file_type): New file/function.  Extracted from
28198         diffutils.
28199
28200 2002-04-30  Jim Meyering  <meyering@lucent.com>
28201
28202         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_STAT.
28203
28204 2002-04-29  Paul Eggert  <eggert@twinsun.com>
28205
28206         * m4/prereq.m4 (jm_PREREQ_SIG2STR): Remove; all callers changed.
28207
28208 2002-04-29  Paul Eggert  <eggert@twinsun.com>
28209
28210         * m4/prereq.m4 (jm_PREREQ_HARD_LOCALE): Check for stdlib.h.
28211         Do not check for alloca.h (no longer used) or stdbool.h (was never
28212         used?).  Add AM_C_PROTOTYPES since hard-locale.h uses it.
28213
28214 2002-04-29  Paul Eggert  <eggert@twinsun.com>
28215
28216         * lib/hard-locale.c: Upgrade to version used in GNU Diffutils 2.8.1.
28217
28218 2002-04-29  Jim Meyering  <meyering@lucent.com>
28219
28220         * m4/jm-macros.m4 (jm_MACROS): Remove use of AC_FUNC_STRNLEN.
28221         * m4/prereq.m4: Add jm_PREREQ_STRNLEN.
28222         Use AC_FUNC_STRNLEN here instead.
28223
28224         * m4/jm-macros.m4: Don't AC_REQUIRE([AC_PROG_CC_STDC]).
28225         With autoconf-2.53a, it's part of AC_PROG_CC.
28226
28227 2002-04-28  Paul Eggert  <eggert@twinsun.com>
28228
28229         * m4/jm-macros.m4 (jm_MACROS): Add AC_REPLACE_FUNCS(sig2str).
28230         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_SIG2STR.
28231
28232 2002-04-28  Paul Eggert  <eggert@twinsun.com>
28233
28234         * lib/sig2str.h, lib/sig2str.c: New files.
28235         * lib/Makefile.am (libfetish_a_SOURCES): Add sig2str.h.
28236
28237 2002-04-28  Paul Eggert  <eggert@twinsun.com>
28238
28239         * lib/sig2str.h (SIGNUM_BOUND): Do not use WTERMSIG, to avoid
28240         depending on <sys/wait.h> and WTERMSIG.  Default to 64 instead
28241         of 127, since 64 is the largest conceivable number for ancient
28242         nonstandard hosts.
28243         * lib/sig2str.c: Do not include <sys/wait.h>; no longer needed.
28244
28245 2002-04-28  Jim Meyering  <meyering@lucent.com>
28246
28247         * lib/sig2str.c (WTERMSIG): Remove definition (unused).
28248
28249 2002-04-24  Jim Meyering  <meyering@lucent.com>
28250
28251         * m4/prereq.m4 (jm_PREREQ_HARD_LOCALE): New macro.
28252         (jm_PREREQ): Use it.
28253
28254         * m4/getloadavg.m4: Check for these headers: locale.h unistd.h
28255         mach/mach.h fcntl.h.
28256         Check for this function: setlocale.
28257
28258 2002-04-24  Jim Meyering  <meyering@lucent.com>
28259
28260         * lib/gettext.h: New file, from Gettext.
28261         * lib/Makefile.am (INCLUDES): Remove -I../intl.
28262         (libfetish_a_SOURCES): Add gettext.h.
28263
28264 2002-04-16  Jim Meyering  <meyering@lucent.com>
28265
28266         * m4/prereq.m4 (jm_PREREQ_READUTMP): Also check for these members:
28267         ut_pid, ut_id, ut_exit.
28268
28269 2002-04-16  Jim Meyering  <meyering@lucent.com>
28270
28271         * lib/readutmp.h (UT_TYPE): Remove definition (now in who.c).
28272         (HAVE_STRUCT_XTMP_UT_EXIT, HAVE_STRUCT_XTMP_UT_ID): Define.
28273         (HAVE_STRUCT_XTMP_UT_PID, HAVE_STRUCT_XTMP_UT_TYPE): Define.
28274
28275 2002-04-12  Jim Meyering  <meyering@lucent.com>
28276
28277         * m4/ls-mntd-fs.m4 (checking for getmntinfo function...): Remove
28278         now-bogus check for f_type in sys/mount.h.  Instead, just test for the
28279         existence of the getmntinfo function.  Needed for Darwin 5.3.
28280
28281         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Also detect when dirfd is a macro.
28282         This is necessary at least on Darwin 5.3.
28283
28284         * m4/jm-macros.m4: Don't AC_REPLACE(strnlen), now that we use
28285         AC_FUNC_STRNLEN.  Otherwise, we'd end up putting two copies of
28286         strnlen.o in the library, and that makes some versions of ranlib
28287         object.
28288
28289 2002-04-12  Jim Meyering  <meyering@lucent.com>
28290
28291         * lib/dirfd.h (dirfd): Elide prototype if dirfd is a macro.
28292
28293 2002-04-09  Jim Meyering  <meyering@lucent.com>
28294
28295         * m4/malloc.m4: (jm_FUNC_MALLOC): Change the `checking ...' message
28296         to be more precise.  Rather than saying we're checking whether the
28297         function `works', say what we're testing.
28298         * m4/realloc.m4 (jm_FUNC_REALLOC): Likewise.
28299         Reported by Bruno Haible.
28300
28301 2002-03-10  Jim Meyering  <meyering@lucent.com>
28302
28303         * lib/makepath.c (make_path): Remove a comma from a diagnostic.
28304         Suggestion from Santiago Vila.
28305
28306 2002-03-08  Jim Meyering  <meyering@lucent.com>
28307
28308         * lib/rename.c: Mention that this wrapper is needed also on
28309         mips-dec-ultrix4.4 systems.
28310
28311 2002-03-02  Jim Meyering  <meyering@lucent.com>
28312
28313         * lib/gettime.c (gettime): Test HAVE_CLOCK_GETTIME,
28314         not HAVE_CLOCK_SETTIME.
28315
28316 2002-02-27  Paul Eggert  <eggert@twinsun.com>
28317
28318         * m4/jm-macros.m4 (jm_MACROS): Do not replace stime; no longer used.
28319         Check for clock_settime.
28320
28321 2002-02-27  Paul Eggert  <eggert@twinsun.com>
28322
28323         * lib/nanosleep.h: Rename to....
28324         * lib/timespec.h: New name for nanosleep.h.  All uses changed.
28325
28326         * lib/gettime.c: New file.
28327         * lib/settime.c: New file.
28328         * lib/stime.c: Remove.
28329
28330         * lib/Makefile.am (libfetish_a_SOURCES): Add gettime.c, settime.c,
28331         timespec.h.  Remove nanosleep.h.
28332
28333 2002-02-25  Paul Eggert  <eggert@twinsun.com>
28334
28335         * m4/acl.m4: New file.
28336         * m4/jm-macros.m4 (jm_MACROS): Require AC_FUNC_ACL.
28337         Do not check for acl or sys/acl.h, as AC_FUNC_ACL does that now.
28338
28339 2002-02-25  Paul Eggert  <eggert@twinsun.com>
28340
28341         * lib/acl.c, lib/acl.h: New files.
28342         * lib/Makefile.am (libfetish_a_SOURCES): Add acl.h, acl.c.
28343
28344 2002-02-24  Jim Meyering  <meyering@lucent.com>
28345
28346         * lib/strnlen.c (strnlen): Define-away/undef so that an inconsistent
28347         prototype in string.h (on at least AIX4.3.2.0 w/gcc-2.95.3) doesn't
28348         cause trouble.  Reported by Nelson Beebe.
28349
28350 2002-02-23  Paul Eggert  <eggert@twinsun.com>
28351
28352         * lib/path-concat.c (xpath_concat): Reorder code to pacify
28353         compilers that don't know that xalloc_die never returns.
28354
28355 2002-02-20  Jim Meyering  <meyering@lucent.com>
28356
28357         * lib/getdate.c: Regenerate using bison-1.33.
28358
28359 2002-02-17  Jim Meyering  <meyering@lucent.com>
28360
28361         * config/config.guess (main): Don't use `head -1'; it's no longer
28362         portable. Use `sed 1q' instead.
28363
28364 2002-02-16  gettextize  <bug-gnu-gettext@gnu.org>
28365
28366         * m4/codeset.m4: Upgrade to gettext-0.11.
28367         * m4/gettext.m4: Upgrade to gettext-0.11.
28368         * m4/glibc21.m4: Upgrade to gettext-0.11.
28369         * m4/iconv.m4: Upgrade to gettext-0.11.
28370         * m4/isc-posix.m4: Upgrade to gettext-0.11.
28371         * m4/lcmessage.m4: Upgrade to gettext-0.11.
28372         * m4/lib-ld.m4: New file, from gettext-0.11.
28373         * m4/lib-link.m4: New file, from gettext-0.11.
28374         * m4/lib-prefix.m4: New file, from gettext-0.11.
28375         * m4/progtest.m4: Upgrade to gettext-0.11.
28376
28377 2002-02-15  Paul Eggert  <eggert@twinsun.com>
28378
28379         * m4/prereq.m4 (jm_PREREQ_POSIXVER): New macro.
28380         (jm_PREREQ): Use it.
28381
28382 2002-02-15  Paul Eggert  <eggert@twinsun.com>
28383
28384         * lib/posixver.c, lib/posixver.h: New files.
28385         * lib/Makefile.am (libfetish_a_SOURCES): Add them.
28386
28387 2002-02-02  Paul Eggert  <eggert@twinsun.com>
28388             Bruno Haible  <bruno@clisp.org>
28389
28390         * lib/unicodeio.h (print_unicode_char): Add exit_on_error argument.
28391         (fwrite_success_callback): New declaration.
28392         * lib/unicodeio.c (unicode_to_mb): New function, extracted from
28393         print_unicode_char. Call failure callback instead of error.
28394         (fwrite_success_callback): New function.
28395         (exit_failure_callback): New function.
28396         (fallback_failure_callback): New function.
28397         (print_unicode_char): Call unicode_to_mb.
28398
28399 2002-01-26  Jim Meyering  <meyering@lucent.com>
28400
28401         * m4/jm-macros.m4 (jm_MACROS): Require autoconf-2.52g.
28402         * m4/strnlen.m4: Remove file, now that it's part of autoconf.
28403
28404 2002-01-26  Jim Meyering  <meyering@lucent.com>
28405
28406         * lib/Makefile.am (getdate$U.o): Depend on unlocked-io.h.
28407
28408 2002-01-22  Paul Eggert  <eggert@twinsun.com>
28409
28410         * m4/jm-macros.m4 (jm_MACROS): Require AC_FUNC_FSEEKO.
28411
28412 2002-01-22  Jim Meyering  <meyering@lucent.com>
28413
28414         * lib/Makefile.am (Makefile): Don't depend on $(BUILT_SOURCES).
28415         Otherwise, some versions of automake would omit the rule that makes
28416         Makefile from Makefile.in.
28417
28418 2002-01-21  Paul Eggert  <eggert@twinsun.com>
28419
28420         * lib/xmemcoll.h, lib/xmemcoll.c: New files.
28421         * lib/Makefile.am (libfetish_a_SOURCES): Add them.
28422         * lib/memcoll.c: Include errno.h, and declare errno if not defined.
28423         (memcoll): Set errno to zero if there is no error.
28424
28425         * lib/quotearg.c (quotearg_buffer_restyled):
28426         Fix bug with quoting buffers containing NUL when backslashing escapes.
28427         This bug was exposed by the other changes in this patch.
28428         (quotearg_n_options): New arg ARGSIZE.
28429         All callers changed.
28430         (quoting_options_from_style): New function.
28431         (quotearg_n_style): Use it.
28432         (quotearg_n_style_mem): New function.
28433
28434         * lib/quotearg.h (quotearg_n_style_mem): New function.
28435
28436 2002-01-19  Jim Meyering  <meyering@lucent.com>
28437
28438         * m4/jm-macros.m4 (jm_MACROS): Use AC_FUNC_STRNLEN.
28439         Remove useless quotes: DF_PROG="df".
28440         * m4/strnlen.m4: New file.
28441
28442 2002-01-16  Paul Eggert  <eggert@twinsun.com>
28443
28444         * lib/backupfile.c (ISDIGIT): Comment fix.
28445         * lib/getdate.y (ISDIGIT): Likewise.
28446         * lib/posixtm.c (ISDIGIT, year): Likewise.
28447         * lib/strverscmp.c (ISDIGIT): Likewise.
28448         * lib/userspec.c (ISDIGIT): Likewise.
28449
28450 2002-01-16  Jim Meyering  <meyering@lucent.com>
28451
28452         * lib/getdate.y: Add three semicolons, each just before a closing
28453         brace. Bison (as of version 1.31) no longer papers over that mistake.
28454
28455 2002-01-05  Jim Meyering  <meyering@lucent.com>
28456
28457         * lib/version-etc.c (version_etc_copyright): Update copyright year.
28458
28459 2001-12-19  Paul Eggert  <eggert@twinsun.com>
28460
28461         * lib/closeout.c (close_stdout_status): If ferror (stdout), do
28462         not silently exit merely because the output buffer happens to
28463         have nothing pending.
28464
28465 2001-12-18  Paul Eggert  <eggert@twinsun.com>
28466
28467         See the big note in ../ChangeLog.
28468         * lib/human.c (suffixes): Prefer K to k for 1024.
28469         (generate_suffix_backwards): New function.
28470         (human_readable_inexact): Use it.
28471         * lib/xstrtol.c (__xstrtol): If there is no number but there
28472         is a valid suffix, assume 1.  "MB" now means decimal, "MiB" binary.
28473         Accept 'K' as well as 'k'.
28474
28475 2001-12-15  Jim Meyering  <meyering@lucent.com>
28476
28477         * lib/regex.h (__restrict_arr): Update from libc.
28478
28479         * lib/mountlist.h (ME_REMOTE): Recognize file systems of type smbfs
28480         as `remote' if the name starts with `//'.  Suggested by Michael Stone.
28481         (STREQ): Define.
28482
28483 2001-12-14  Jim Meyering  <meyering@lucent.com>
28484
28485         * m4/jm-macros.m4 (jm_MACROS): Check for iswspace.
28486         Suggestion from Bruno Haible.
28487
28488 2001-12-10  Jim Meyering  <meyering@lucent.com>
28489
28490         * lib/linebuffer.c: Remove explicit declarations of xmalloc and
28491         xrealloc, Instead, include "xalloc.h".
28492         (initbuffer): Don't cast xmalloc return value to char*.
28493         (readline): Reword comment.
28494         Don't cast xrealloc return value to char*
28495         Return NULL, not 0.
28496
28497 2001-12-09  Jim Meyering  <meyering@lucent.com>
28498
28499         * lib/modechange.c (mode_compile): Add cast to avoid pedantic warning
28500         about `signed and unsigned type in conditional expression'.
28501         * lib/posixtm.c (posix_time_parse): Likewise.
28502
28503         * lib/xreadlink.c (xreadlink): Add cast to avoid a pedantic warning.
28504
28505         * lib/readtokens.c (readtoken): Declare an index to be of type unsigned
28506         to avoid a pedantic warning.
28507
28508         * lib/getstr.c: Don't include assert.h.
28509         (getstr): Remove warning-evoking assertions.
28510         Return -1 if offset parameter is out of bounds.
28511         Change the type of a local from int to size_t.
28512
28513         * lib/strftime.c (my_strftime_localtime_r): Include this function
28514         definition in the `#if ! HAVE_TM_GMTOFF' block.
28515
28516         * lib/xgethostname.c: Remove declarations of xmalloc and xrealloc.
28517         Include xalloc.h instead.
28518
28519 2001-12-02  Jim Meyering  <meyering@lucent.com>
28520
28521         * lib/tempname.c: Don't declare getenv, thus reverting the change of
28522         2001-11-18.  It's no longer necessary, now that stdlib.h is always
28523         included.
28524
28525         * lib/regex.c [!__BOUNDED_POINTERS__]: Define away __bounded,
28526         __unbounded, and __ptrvalue.  Reported by Uwe H. Steinfeld.
28527
28528 2001-11-30  Akim Demaille  <akim@epita.fr>
28529
28530         * lib/xstrdup.c: Include xalloc.h, so that xstrdup is declared
28531         before being defined.
28532
28533 2001-11-27  Paul Eggert  <eggert@twinsun.com>
28534
28535         * lib/quotearg.h (quotearg_n, quotearg_n_style):
28536         First arg is int, not unsigned.
28537         * lib/quotearg.c (quotearg_n, quotearg_n_style): Likewise.
28538         (SIZE_MAX, UINT_MAX): New macros.
28539         (quotearg_n_options): Abort if N is negative.
28540         Avoid overflow check on hosts where size_t is 64 bits and int
28541         is 32 bits, as overflow is impossible there.
28542         Fix off-by-one typo that caused unnecessary reallocation.
28543
28544 2001-11-27  Jim Meyering  <meyering@lucent.com>
28545
28546         * lib/tempname.c: Merge with version from libc.
28547         * lib/regex.c: Likewise.
28548
28549         * lib/tempname.c: Include stdlib.h unconditionally.  On some old
28550         systems for which STDC_HEADERS is 0, it was not included, resulting in
28551         a warning about an integer-to-pointer conversion problem with getenv.
28552         Reported by Volker Borchert.
28553
28554 2001-11-26  Jim Meyering  <meyering@lucent.com>
28555
28556         * lib/gtod.h: Remove file.
28557         * lib/Makefile.am (libfetish_a_SOURCES): Remove gtod.h.
28558         * lib/gettimeofday.c: Don't include gtod.h.
28559         (GTOD_init): Remove function.
28560         (rpl_gettimeofday): Do its job here instead, rather than aborting.
28561         Suggestion from Volker Borchert.
28562
28563 2001-11-23  Jim Meyering  <meyering@lucent.com>
28564
28565         * lib/hash.h (struct hash_table): Don't define here.  Merely declare
28566         it.
28567         * lib/hash.c (struct hash_table): Define it here instead.
28568
28569 2001-11-22  Jim Meyering  <meyering@lucent.com>
28570
28571         * lib/hash.h: Bracket contents of file with #ifndef HASH_H_ ... #endif.
28572
28573 2001-11-20  Jim Meyering  <meyering@lucent.com>
28574
28575         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Update comment to reflect that
28576         SunOS 4.1.4 and Solaris 2.5.1 lose, too.
28577
28578 2001-11-19  Jim Meyering  <meyering@lucent.com>
28579
28580         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Don't bother with a temporary
28581         directory.  Use "conftestXXXXXX" as the template.
28582         Suggestion from Paul Eggert.
28583
28584         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Close each descriptor
28585         immediately, so the test doesn't mistakenly hit the max-open-files
28586         limit.
28587
28588 2001-11-18  Paul Eggert  <eggert@twinsun.com>
28589
28590         * lib/tempname.c (TMP_MAX): Remove; no longer needed.
28591         (TEMPORARIES): New macro.
28592         (__gen_tempname): Use TEMPORARIES rather than TMP_MAX.  This
28593         removes an artificial limitation (e.g. HP-UX 10.20, where
28594         TMP_MAX is 17576).
28595
28596 2001-11-18  Jim Meyering  <meyering@lucent.com>
28597
28598         * m4/prereq.m4 (jm_PREREQ_TEMPNAME): Check for declaration of getenv.
28599
28600 2001-11-18  Jim Meyering  <meyering@lucent.com>
28601
28602         * lib/tempname.c [!HAVE_DECL_GETENV]: Declare getenv to avoid warning
28603         on SunOS 4.
28604
28605         * lib/Makefile.am (Makefile): Depend on $(BUILT_SOURCES), so those
28606         files will be created before anything else.
28607
28608 2001-11-17  Paul Eggert  <eggert@twinsun.com>
28609
28610         * m4/jm-winsz1.m4 (jm_WINSIZE_IN_PTEM): Do not define
28611         WINSIZE_IN_PTEM if <termios.h> defines struct winsize.
28612
28613 2001-11-17  Jim Meyering  <meyering@lucent.com>
28614
28615         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): New file and macro.
28616         Prompted by a report from Bob Proulx.
28617
28618         * m4/jm-macros.m4 (jm_MACROS): Don't test for mkstemp here.
28619         Instead, require UTILS_FUNC_MKSTEMP.
28620
28621 2001-11-17  Jim Meyering  <meyering@lucent.com>
28622
28623         * m4/jm-macros.m4 (jm_MACROS): Remove code to set POW_LIBM.
28624         Now, that's done as part of AC_FUNC_STRTOD.
28625
28626 2001-11-17  Jim Meyering  <meyering@lucent.com>
28627
28628         * lib/modechange.c (mode_adjust): Fix error introduced on 1999-04-26
28629         that made e.g., `chmod a=,o=w,g=o F' cause F to be group readable
28630         rather than group writable.  Patch by Juan F. Codagnone.
28631
28632         * lib/readtokens.c: Remove explicit declarations of xmalloc and
28633         xrealloc, Instead, include "xalloc.h".
28634
28635         * lib/mountlist.c: Include unlocked-io.h after all system headers.
28636         Remove explicit declarations of xmalloc, xrealloc,
28637         and xstrdup.  Instead, include "xalloc.h".
28638
28639         * lib/argmatch.c, closeout.c, error.c, exclude.c: Include
28640         unlocked-io.h.
28641         * lib/fatal.c, getdate.y, getpass.c, getstr.c, getusershell.c:
28642         Likewise.
28643         * lib/mountlist.c, posixtm.c, readtokens.c, readutmp.c: Likewise.
28644
28645         * lib/regex.c, sha.c, version-etc.c, yesno.c: Likewise.
28646         Reported by Padraig Brady.
28647
28648         * lib/mkstemp.c: #undef mkstemp.
28649         Include config.h.
28650         (rpl_mkstemp): Rename from mkstemp.
28651         Protoize.
28652
28653 2001-11-16  Jim Meyering  <meyering@lucent.com>
28654
28655         * lib/physmem.c [HAVE_SYS_PSTAT_H]: Include <sys/pstat.h>.
28656         (physmem_total) [HAVE_PSTAT_GETSTATIC]: If sysconf couldn't be used to
28657         determine the amount of total physical memory, use pstat_getstatic.
28658         HPUX-11 doesn't define _SC_PHYS_PAGES.
28659         (physmem_available) [HAVE_PSTAT_GETSTATIC && HAVE_PSTAT_GETDYNAMIC]:
28660         If sysconf couldn't be used to determine the amount of available
28661         physical memory, use both pstat_getstatic and pstat_getdynamic.
28662         Based on a patch from Bob Proulx.
28663
28664 2001-11-10  Jim Meyering  <meyering@lucent.com>
28665
28666         * m4/prereq.m4 (jm_PREREQ_PHYSMEM): New function.
28667         (jm_PREREQ): Use it.
28668
28669 2001-11-09  Jim Meyering  <meyering@lucent.com>
28670
28671         * m4/jm-macros.m4: Require autoconf-2.52f.
28672         (AC_FUNC_ERROR_AT_LINE, AC_FUNC_OBSTACK, AC_FUNC_STRTOD):
28673         Use these AC_-prefixed names, not the AM_-prefixed ones.
28674
28675         * m4/afs.m4 (jm_AFS): Quote the body.  Patch by Akim Demaille.
28676
28677 2001-11-05  Jim Meyering  <meyering@lucent.com>
28678
28679         * lib/xstat.in (slash_aware_lstat): Correct a misleading comment.
28680
28681 2001-11-04  Jim Meyering  <meyering@lucent.com>
28682
28683         * m4/fpending.m4: Remove unused cruft that saved, set, and restored
28684         $DEFS.
28685
28686 2001-11-03  Jim Meyering  <meyering@lucent.com>
28687
28688         * m4/jm-glibc-io.m4n (jm_FUNC_GLIBC_UNLOCKED_IO): Quote first arg
28689         of AC_DEFUN.
28690
28691         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Rework so dirfd.c doesn't have to
28692         know the name of the variable in the macro definition.
28693
28694 2001-11-03  Jim Meyering  <meyering@lucent.com>
28695
28696         * lib/argmatch.h (ARGMATCH_TO_ARGUMENT): Remove casts of first two args
28697         in argmatch_to_argument call.
28698
28699         * lib/dirfd.c (dirfd): Reflect the fact that DIR_TO_FD now takes an
28700         argument.
28701
28702         * lib/hash.c (hash_clear): Fix a bug that could lead to an infloop or
28703         e.g., a fault due to an attempt to free a NULL pointer.
28704
28705 2001-11-01  Jim Meyering  <meyering@lucent.com>
28706
28707         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): New macro.
28708         * m4/jm-macros.m4 (jm_MACROS): Require UTILS_FUNC_DIRFD.
28709
28710 2001-11-01  Jim Meyering  <meyering@lucent.com>
28711
28712         * lib/dirfd.c, lib/dirfd.h: New files.
28713         * lib/Makefile.am (libfetish_a_SOURCES): Add dirfd.h.
28714
28715         * lib/hash.c (hash_print) [TESTING]: Clean up.
28716
28717 2001-10-22  Paul Eggert  <eggert@twinsun.com>
28718
28719         * lib/hard-locale.c (alloca): Define to __builtin_alloca if __GNUC__,
28720         to avoid a warning if -Wall.
28721
28722 2001-10-22  Jeff Bailey  <jbailey@outpost.dnsalias.org>
28723
28724         * README: New file
28725         * doc/*: Add COPYING, COPYING.LIB, COPYING.DOC, fdl.texi
28726         (per RMS's instructions, this is now the canonical source)
28727         * lgpl/, gpl/: New directories.
28728
28729 2001-10-21  Paul Eggert  <eggert@twinsun.com>
28730
28731         * lib/regex.c (uintptr_t): Remove macro and decl; it's config.h's job.
28732
28733 2001-10-21  Jim Meyering  <meyering@lucent.com>
28734
28735         * lib/obstack.c (_): Honor the setting of ENABLE_NLS.  Otherwise,
28736         this code would end up calling gettext even in packages built
28737         with --disable-nls.
28738         * lib/getopt.c (_): Likewise.
28739         * lib/regex.c (_): Likewise.
28740
28741 2001-10-20  Paul Eggert  <eggert@twinsun.com>
28742
28743         * m4/error.m4 (jm_PREREQ_ERROR):
28744         Do not invoke AC_CHECK_FUNCS with strerror_r, as
28745         AC_FUNC_STRERROR_R does that.
28746         Check for strerror declaration.
28747
28748         * m4/strerror_r.m4: Add copyright notice, as nontrivial m4 files
28749         are supposed to have them these days.
28750         (AC_FUNC_STRERROR_R): Always do char* test, so that it gets cached.
28751         Merge changes from latest Autoconf CVS.
28752         Rename ac_cv_func_strerror_r_works to ac_cv_func_strerror_r_char_p,
28753         and rename HAVE_WORKING_STRERROR_R to STRERROR_R_CHAR_P, since
28754         POSIX decided to standardize on the int flavor of strerror_r.
28755
28756 2001-10-20  Paul Eggert  <eggert@twinsun.com>
28757
28758         * lib/error.c (strerror_r): Do not declare unless !_LIBC.
28759         Do not check for HAVE_DECL_STRERROR_R missing unless STRERROR_R_CHAR_P.
28760         Use strerror_r that is only a macro, even if it is not a function.
28761         (strerror): Check for HAVE_DECL_STRERROR before declaring.
28762         (private_strerror): Use prototypes, not old-style function definition.
28763         (print_errno_message): New function.
28764         Support the POSIX 'int'-flavored strerror_r, as well as the traditional
28765         char*-flavored one.
28766         (error_tail, error, error_at_line): Use it.
28767
28768 2001-10-11  Jim Meyering  <meyering@lucent.com>
28769
28770         * lib/argmatch.c (argmatch_invalid): Use quotearg_n_style (0, ...
28771         and quote_n (1, ... to avoid clobbering a buffer.
28772
28773 2001-10-05  Jim Meyering  <meyering@lucent.com>
28774
28775         * lib/Makefile.am: (libfetish_a_SOURCES): Add hash-pjw.c and
28776         hash-pjw.h.
28777         * lib/hash-pjw.c: New file (factored out of fileutils' remove.c).
28778         * lib/hash-pjw.h: New file.
28779
28780 2001-09-30  Jim Meyering  <meyering@lucent.com>
28781
28782         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): See if
28783         `struct fsstat' has the `f_fstypename' member.
28784         Use that to define FS_TYPE, which is now used to make
28785         the getfsstat link test tighter.
28786
28787 2001-09-30  Jim Meyering  <meyering@lucent.com>
28788
28789         * lib/mountlist.c [MOUNTED_GETFSSTAT]:
28790         Include <sys/ucred.h>, for Apple Darwin.
28791         Include sys/mount.h and sys/fs_types.h only if available.
28792         (FS_TYPE): Define.
28793         (read_filesystem_list): Use FS_TYPE.
28794
28795 2001-09-29  Paul Eggert  <eggert@twinsun.com>
28796
28797         * lib/exclude.c (excluded_filename): 0 -> false, since it's
28798         a boolean context.
28799
28800 2001-09-29  Jim Meyering  <meyering@lucent.com>
28801
28802         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS)
28803         [one-argument getmntent function]): Include stdio.h before mntent.h.
28804         SunOS 4.1.x needs it for the declaration of `FILE'.
28805         Patch by Volker Borchert.
28806
28807         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS)
28808         Check for these headers: sys/param.h sys/ucred.h sys/mount.h
28809         sys/fs_types.h, and make the link-test for getfsstat guard #include
28810         directives with appropriate #if HAVE_*_H tests so that we can
28811         detect getfsstat on Apple Darwin1.3.7 systems.
28812         Reported by Nelson Beebe.
28813         Fix harmless typo in cache variable name: s/getsstat/getfsstat/.
28814
28815 2001-09-28  Paul Eggert  <eggert@twinsun.com>
28816
28817         Fix bug reported by Petter Reinholdtsen for HP-UX 10.20, which
28818         #defines strtoimax.  Also treat the other strto* functions
28819         like strtoimax.
28820
28821         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX):
28822         Check for strtoul and strtoumax,
28823         as those declarations are made even in the signed case.
28824         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX):
28825         Likewise, for strtol and strtoimax.
28826
28827 2001-09-28  Paul Eggert  <eggert@twinsun.com>
28828
28829         Fix bug reported by Petter Reinholdtsen for HP-UX 10.20, which
28830         #defines strtoimax.  Also treat the other strto* functions
28831         like strtoimax.
28832
28833         * lib/xstrtol.c (strtol): Do not declare if HAVE_DECL_STRTOL.
28834         (strtoul): Do not declare if HAVE_DECL_STRTOUL.
28835         (strtoimax, strtoumax): Do not declare if already defined as a macro.
28836
28837 2001-09-26  Jim Meyering  <meyering@lucent.com>
28838
28839         Most macros in unlocked-io.h had the wrong number of arguments.
28840         * lib/gen-uio: New script.
28841         (USE_UNLOCKED_IO): Define to 1 if not already defined.
28842         * lib/unlocked-io.hin: Remove file.
28843         * lib/Makefile.am (unlocked-io.h): Rewrite to use a separate script,
28844         rather than trying to embed it here.
28845         (EXTRA_DIST): Add gen-uio.  Remove unlocked-io.hin
28846         Reported by Padraig Brady.
28847
28848 2001-09-25  Volker Borchert  <bt@teknon.de>
28849
28850         * lib/gettimeofday.c (rpl_gettimeofday): Declare local variable
28851         `result'.
28852
28853 2001-09-24  Jim Meyering  <meyering@lucent.com>
28854
28855         * m4/gettext.m4: Use the version from gettext-0.10.40, not CVS.
28856
28857 2001-09-23  Jim Meyering  <meyering@lucent.com>
28858
28859         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Add a compile-test
28860         instead of the mere test for existence of mntent.h.  The latter
28861         would get a false-positive on AIX 3.4 systems.
28862         In the outer getmntent if-block, don't die if neither of the getmntent
28863         tests succeeds.  Instead, just fall through and continue with the
28864         remaining tests.
28865
28866 2001-09-23  Jim Meyering  <meyering@lucent.com>
28867
28868         * lib/mountlist.c: Remove useless parentheses in #if directives.
28869         (MOUNTED) [!defined MOUNTED]: Define to _PATH_MOUNTED, for when
28870         the deprecated MOUNTED symbol is no longer defined in mntent.h.
28871
28872 2001-09-22  Jim Meyering  <meyering@lucent.com>
28873
28874         * m4/gettext.m4: New file.  From gettext.
28875         * m4/lcmessage.m4: Sync with gettext -- this changes only comments.
28876         * m4/progtest.m4: Likewise
28877         * m4/isc-posix.m4: Decrement serial number to sync with gettext.
28878         * m4/glibc21.m4: Likewise.
28879
28880         * m4/libintl.m4: Remove.  No longer used.
28881
28882 2001-09-22  Jim Meyering  <meyering@lucent.com>
28883
28884         * lib/localcharset.c: Update from latest gettext.
28885         * lib/config.charset: Likewise.
28886
28887 2001-09-20  Jim Meyering  <meyering@lucent.com>
28888
28889         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX): Check for declaration of
28890         strtoimax.
28891         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Check for declaration of
28892         strtoumax.
28893
28894 2001-09-20  Jim Meyering  <meyering@lucent.com>
28895
28896         * lib/xstrtol.c (strtoimax): Guard declaration with
28897         `#if !HAVE_DECL_STRTOIMAX', rather than just `#ifndef strtoimax'.
28898         The latter fails because some systems (at least rs6000-ibm-aix4.3.3.0)
28899         have their own, conflicting declaration of strtoimax in sys/inttypes.h.
28900         (strtoumax): Likewise, for completeness (it wasn't necessary).
28901
28902 2001-09-17  Paul Eggert  <eggert@twinsun.com>
28903
28904         * lib/strtoimax.c (HAVE_LONG_LONG):
28905         Redefine to HAVE_UNSIGNED_LONG_LONG if unsigned.
28906         (strtoimax): Use sizeof (long), not sizeof strtol (ptr, endptr, base),
28907         to work around bug in IBM C compiler.
28908
28909 2001-09-17  Jim Meyering  <meyering@lucent.com>
28910
28911         * m4/chown.m4, fstypename.m4, getgroups.m4, gettimeofday.m4,
28912         * m4/jm-mktime.m4, lstat.m4, malloc.m4, memcmp.m4, mkdir-slash.m4,
28913         * m4/nanosleep.m4, putenv.m4, readdir.m4, realloc.m4, rename.m4,
28914         * m4/st_dm_mode.m4, stat.m4, strerror_r.m4, timespec.m4, utimbuf.m4,
28915         * m4/utimes.m4: Use AC_DEFINE rather than AC_DEFINE_UNQUOTED,
28916         whenever the right hand side need not be expanded by the shell.
28917
28918 2001-09-16  Paul Eggert  <eggert@twinsun.com>
28919
28920         * m4/fnmatch.m4 (jm_FUNC_FNMATCH): Remove test for GNU C
28921         library.  It's not correct, as some older glibcs are buggy.
28922         fnmatch wasn't fixed until glibc 2.2.
28923
28924         Use AC_DEFINE, not AC_DEFINE_UNQUOTED, as there's no
28925         special shell magic here.
28926
28927 2001-09-16  Jim Meyering  <meyering@lucent.com>
28928
28929         * m4/mkdir-slash.m4 (UTILS_FUNC_MKDIR_TRAILING_SLASH): New file/macro.
28930         * m4/jm-macros.m4: Require it.
28931
28932 2001-09-16  Jim Meyering  <meyering@lucent.com>
28933
28934         * lib/mkdir.c: New file.
28935
28936 2001-09-15  Jim Meyering  <meyering@lucent.com>
28937
28938         * m4/jm-macros.m4: Check for help2man.
28939
28940 2001-09-11  Jim Meyering  <meyering@lucent.com>
28941
28942         * m4/host-os.m4 (UTILS_HOST_OS): New file/macro.
28943         The body, by Paul Eggert, was moved here from configure.in.
28944         * m4/jm-macros.m4: Require UTILS_HOST_OS.
28945
28946 2001-09-04  Paul Eggert  <eggert@twinsun.com>
28947
28948         * m4/prereq.m4 (jm_PREREQ_XREADLINK): New macro.
28949         (jm_PREREQ): Use it.
28950
28951 2001-09-04  Paul Eggert  <eggert@twinsun.com>
28952
28953         * lib/xreadlink.c (xreadlink): Omit size_t* arg.  All uses changed.
28954         Use ssize_t, not int, to store result of readlink.
28955         Check for ssize_t overflow as well as size_t overflow,
28956         as POSIX says the result of readlink is implementation-defined
28957         when ssize_t overflows.
28958         Remove unnecessary cast to char*.
28959         Use free+malloc instead of realloc, as the storage doesn't need
28960         to be preserved and it's clearer and can be more efficient that way.
28961         (SIZE_MAX, SSIZE_MAX): New macros, if <limits.h> doesn't declare.
28962         * lib/xreadlink.h (xreadlink): Update prototype.
28963
28964 2001-09-04  Paul Eggert  <eggert@twinsun.com>
28965
28966         * lib/xgetcwd.c: Revert some of the previous change; intead,
28967         fix the HAVE_GETCWD_NULL code to behave more like the
28968         !HAVE_GETCWD_NULL code used to.
28969
28970         Include "xalloc.h".
28971         (xgetcwd): Do not return NULL when memory is exhausted; instead,
28972         invoke xalloc_die.
28973
28974 2001-09-03  Paul Eggert  <eggert@twinsun.com>
28975
28976         * m4/prereq.m4 (jm_PREREQ_XGETCWD): Check for limits.h and
28977         sys/param.h, as pathmax.h includes them.
28978
28979 2001-09-03  Paul Eggert  <eggert@twinsun.com>
28980
28981         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_XGETCWD.
28982         (jm_PREREQ_XGETCWD): New macro.
28983
28984         * m4/getcwd.m4: New file.
28985
28986 2001-09-03  Paul Eggert  <eggert@twinsun.com>
28987
28988         * lib/xgetcwd.c: Fix the !HAVE_GETCWD_NULL code to behave more
28989         like the HAVE_GETCWD_NULL code.
28990         Include pathmax.h if not HAVE_GETCWD.
28991         Do not include xalloc.h.
28992         (INITIAL_BUFFER_SIZE): New symbol.
28993         Do not use xmalloc / xrealloc, since the caller is responsible for
28994         handling errors.  Preserve errno around `free' during failure.
28995         Do not overrun buffer when using getwd.
28996
28997 2001-09-03  Paul Eggert  <eggert@twinsun.com>
28998
28999         * lib/xgetcwd.c (xgetcwd): Use HAVE_GETCWD_NULL, not (defined
29000         __GLIBC__ && __GLIBC__ >= 2), to decide whether to use
29001         getcwd (NULL, 0).
29002
29003 2001-09-03  Paul Eggert  <eggert@twinsun.com>
29004
29005         * lib/exclude.c (fnmatch_no_wildcards): Fix confusion between
29006         usage of FNM_CASEFOLD and FNM_LEADING_DIR.  The bug was
29007         spotted by Jim Meyering.
29008
29009 2001-09-03  Jim Meyering  <meyering@lucent.com>
29010
29011         * lib/xreadlink.c (xreadlink): Preserve errno around `free' during
29012         failure.
29013
29014 2001-09-02  Jim Meyering  <meyering@lucent.com>
29015
29016         * lib/error.c: Update from GNU libc.
29017
29018 2001-09-01  Jim Meyering  <meyering@lucent.com>
29019
29020         * m4/jm-macros.m4 (jm_MACROS): Check for canonicalize_file_name.
29021         Used by df.
29022
29023 2001-09-01  Jim Meyering  <meyering@lucent.com>
29024
29025         * lib/xreadlink.c: New file.
29026         * lib/xreadlink.h: New file.
29027         * lib/Makefile.am (libfetish_a_SOURCES): Add xreadlink.c and
29028         xreadlink.h.
29029
29030         * lib/regex.c (uintptr_t) [!_LIBC]: Define to private_uintptr_t, so it
29031         doesn't conflict with sparc Solaris 7's definition in
29032         /usr/include/sys/int_types.h.
29033
29034         * lib/exclude.c: Use `""', not `<>' to #include non-system header
29035         files.
29036         (fnmatch_no_wildcards): Rewrite not to use function names, strcasecmp
29037         and strncasecmp as r-values.  Unixware didn't have declarations.
29038
29039 2001-08-31  Paul Eggert  <eggert@twinsun.com>
29040
29041         * lib/xstrtol.h: Add copyright notice.
29042         (_DECLARE_XSTRTOL): Improve quality of diagnostic for
29043         LONGINT_INVALID_SUFFIX_CHAR.
29044
29045 2001-08-31  Paul Eggert  <eggert@twinsun.com>
29046
29047         * lib/xstrtol.c (strtoimax): New decl.
29048
29049 2001-08-31  Paul Eggert  <eggert@twinsun.com>
29050
29051         * lib/xgetcwd.c: Don't include pathmax.h.
29052         Include stdlib.h and unistd.h if available.
29053         Include xalloc.h.
29054         (xmalloc, xstrdup, free): Remove decls.
29055         (xgetcwd): Don't assume sizes fit in unsigned.
29056         Check for overflow when computing sizes.
29057         Simplify reallocation code.
29058
29059 2001-08-31  Paul Eggert  <eggert@twinsun.com>
29060
29061         * lib/savedir.c (savedir): Remove size parameter, as POSIX says that
29062         a directory's st_size can have an arbitrary value, so the old
29063         usage could waste an arbitrary amount of memory.  All uses
29064         changed.
29065         * lib/savedir.h: Update prototype.
29066
29067 2001-08-31  Paul Eggert  <eggert@twinsun.com>
29068
29069         * lib/Makefile.am (libfetish_a_SOURCES): Remove strtoxmax.c.
29070
29071         * lib/strtoimax.c: Renamed from strtoxmax.c, removing the
29072         old strtoimax.c.
29073
29074         Also, make the following further changes to make this file's
29075         configuration more similar to that of strtol.c:
29076         (UNSIGNED): Renamed from STRTOUXMAX_UNSIGNED.  All uses changed.
29077         (strtoumax, uintmax_t, strtoull, strtol): Remove.
29078         (intmax_t, strtoimax, strtol, strtoll): New macros, if UNSIGNED.
29079         (strtoimax): Renamed from strtoumax.  All uses of unsigned values
29080         changed to signed values.
29081
29082         And make the following changes as well:
29083         Fix copyright notice, as 1999 was missing.
29084         (verify): New macro.
29085         (strtoimax): Check sizes at compile-time, not run-time.
29086         Prefer strtol to strtoll if both work.
29087         (main): Remove; it was not that useful and was a pain to maintain.
29088
29089         * lib/strtoumax.c: Include strtoimax.c, not strtouxmax.c.
29090
29091 2001-08-31  Jim Meyering  <meyering@lucent.com>
29092
29093         * lib/xgetcwd.c (xgetcwd): Reorganize to avoid some duplication.
29094         Use an initial, malloc'd, buffer of length 128 rather than
29095         a statically allocated one of length 1024.
29096
29097 2001-08-30  Paul Eggert  <eggert@twinsun.com>
29098
29099         Simplify code, partly by assuming autoconf 2.52 semantics.
29100
29101         * m4/Makefile.am (EXTRA_DIST): Remove uintmax_t.m4.
29102
29103         * m4/inttypes.m4 (AC_PREREQ): Bump to 2.52.
29104         (jm_AC_HEADER_INTTYPES_H): Remove; now done by autoconf in 2.52.
29105         All uses removed.
29106         (jm_AC_TYPE_INTMAX_T, jm_AC_TYPE_UINTMAX_T):
29107         Move AC_REQUIRE to next-to-top level, to avoid confusion.
29108         Use 2.52's AC_CHECK_TYPE instead of merely looking for the header.
29109         * m4/prereq.m4 (jm_PREREQ_HUMAN): Don't require
29110         jm_AC_HEADER_INTTYPES_H.
29111         * m4/jm-macros.m4 (jm_MACROS): Likewise.
29112
29113         * m4/uintmax_t.m4: Remove, as it duplicates inttypes.m4.
29114
29115         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX):
29116         Quote first arg of AC_DEFUN.
29117         Require jm_AC_TYPE_UINTMAX_T and jm_AC_TYPE_UNSIGNED_LONG_LONG
29118         since they are needed to parse the include file even if we need
29119         only xstrtoimax.  Simplify logic behind the args to AC_REPLACE.
29120         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Likewise,
29121         but with opposite signedness.
29122
29123 2001-08-30  Paul Eggert  <eggert@twinsun.com>
29124
29125         Merge 'exclude' changes from tar 1.13.22.
29126         This fixes one or two unlikely storage allocation overflow bugs,
29127         but doesn't change user-visible behavior otherwise.
29128
29129 2001-08-30  Paul Eggert  <eggert@twinsun.com>
29130
29131         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_EXCLUDE.
29132         (jm_PREREQ_EXCLUDE): New macro.
29133
29134 2001-08-30  Paul Eggert  <eggert@twinsun.com>
29135
29136         * lib/quotearg.c: BSD/OS 4.1 wchar.h requires FILE and struct
29137         tm to be declared.
29138
29139 2001-08-30  Paul Eggert  <eggert@twinsun.com>
29140
29141         * lib/hash.c: Remove '2001' from copyright notice.
29142
29143 2001-08-30  Paul Eggert  <eggert@twinsun.com>
29144
29145         * lib/full-write.h: New file.
29146         * lib/Makefile.am (libfetish_a_SOURCES): Add full-write.h.
29147         * lib/full-write.c: Correct credits, as cccp.c no longer
29148         exists and anyway it was so heavily changed from the old cccp
29149         code as to be unrecognizable.  Include full-write.h.
29150         (full_write) Return size_t, with short writes meaning failure.
29151         All callers changed.  This fixes a bug with large buffers
29152         on 64-bit hosts.
29153         * lib/utime.c: Include full-write.h.
29154
29155 2001-08-30  Paul Eggert  <eggert@twinsun.com>
29156
29157         * lib/exclude.c (bool): Declare, perhaps by including stdbool.h.
29158         (<sys/types.h>): Include only if HAVE_SYS_TYPES_H.
29159         (<stdlib.h>, <string.h>, <strings.h>, <inttypes.h>, <stdint.h>):
29160         Include if available.
29161         (<xalloc.h>): Include
29162         (SIZE_MAX): Define if <stdint.h> or <inttypes.h> doesn't.
29163         (verify): New macro.  Use it to verify that EXCLUDE macros do not
29164         collide with FNM macros.
29165         (struct patopts): New struct.
29166         (struct exclude): Use it, as exclude patterns now come with options.
29167         (new_exclude): Support above changes.
29168         (new_exclude, add_exclude_file):
29169         Initial size must now be a power of two to simplify overflow checking.
29170         (free_exclude, fnmatch_no_wildcards): New function.
29171         (excluded_filename): No longer requires options arg, as the options
29172         are determined by add_exclude.  Now returns bool, not int.
29173         (excluded_filename, add_exclude):
29174         Add support for the fancy new exclusion options.
29175         (add_exclude, add_exclude_file): Now takes int options arg.
29176         Check for arithmetic overflow when computing sizes.
29177         (add_exclude_file): xrealloc might modify errno, so don't
29178         realloc until after errno might be used.
29179
29180         * lib/exclude.h (EXCLUDE_ANCHORED, EXCLUDE_INCLUDE,EXCLUDE_WILDCARDS):
29181         New macros.
29182         (free_exclude): New decl.
29183         (add_exclude, add_exclude_file): Now takes int options arg.
29184         (excluded_filename): No longer requires options arg, as the options
29185         are determined by add_exclude.  Now returns bool, not int.
29186
29187 2001-08-30  Paul Eggert  <eggert@twinsun.com>
29188
29189         * lib/alloca.c (alloca): Arg is of type size_t, not unsigned.
29190
29191 2001-08-27  Jim Meyering  <meyering@lucent.com>
29192
29193         * lib/Makefile.am (libfetish_a_SOURCES): Add strtoxmax.c
29194
29195         * lib/version-etc.c (N_): Remove definition.
29196         Revert most of last change.
29197         Instead, simply don't mark the `Copyright...' string for translation.
29198         Based on advice from Paul Eggert.
29199
29200         * lib/strtoxmax.c: Tweak comment.
29201
29202 2001-08-26  Jim Meyering  <meyering@lucent.com>
29203
29204         * m4/jm-macros.m4: Require jm_AC_PREREQ_XSTRTOIMAX.
29205
29206         * m4/xstrtoimax.m4: New file.
29207         * m4/xstrtoumax.m4: Add comments explaining why we
29208         AC_REPLACE_FUNCS(strtol).
29209
29210 2001-08-26  Jim Meyering  <meyering@lucent.com>
29211
29212         * lib/version-etc.c (version_etc_copyright_fmt): Replace literal year
29213         of copyright with `%s' so translators don't get an untranslated
29214         message in 2002.
29215         (COPYRIGHT_YEAR): Define.
29216         (version_etc): Use fprintf rather than fputs.
29217         Suggestion from Ulrich Drepper.
29218
29219         * lib/Makefile.am (libfetish_a_SOURCES): Add xstrtoimax.c.
29220
29221         * lib/strtoll.c: New file, from GNU libc.
29222         * lib/xstrtoimax.c: New file.
29223
29224         * lib/xstrtol.h: Add xstrtoimax.
29225         * lib/strtoumax.c: New file.  Simply include "strtoumax.c".
29226         * lib/strtoimax.c: New file.  Likewise, but first define
29227         STRTOUXMAX_SIGNED.
29228
29229         * lib/strtoumax.c: Factor to work both for unsigned and signed types,
29230         ...
29231         * lib/strtoxmax.c: ... then renamed to this.
29232
29233 2001-08-18  Paul Eggert  <eggert@twinsun.com>
29234
29235         * m4/inttypes.m4: Add AC_PREREQ(2.13).
29236         (jm_AC_HEADER_INTTYPES_H): Test for intmax_t, too.
29237         (jm_AC_TYPE_INTMAX_T): New macro.
29238         (jm_AC_TYPE_UINTMAX_T): Moved here from uintmax_t.m4.
29239
29240         * m4/longlong.m4 (jm_AC_TYPE_LONG_LONG): New macro.
29241
29242         * m4/longlong.m4: Renamed from ulonglong.m4.
29243         * m4/inttypes.m4: Renamed from inttypes_h.m4.
29244         * m4/uintmax_t.m4: Removed.
29245
29246 2001-08-13  Paul Eggert  <eggert@twinsun.com>
29247
29248         * lib/Makefile.am (unlocked-io.h): Do not append "_unlocked" twice.
29249         Port to Solaris 8, where 'sed' requires a space after the 'r'
29250         command, and where sh dislikes "$/".  Clean up the spacing a bit.
29251         Redirect output to $tmp just once.
29252
29253 2001-08-12  Paul Eggert  <eggert@sic.twinsun.com>
29254
29255         * lib/addext.c (<errno.h>): Include.
29256         (errno): Declare if not defined.
29257         (addext): Work correctly when pathconf returns -1 and leaves
29258         errno alone because there is no limit.  Also, work even if
29259         pathconf returns a value greater than SIZE_MAX.
29260
29261 2001-08-12  Jim Meyering  <meyering@lucent.com>
29262
29263         * m4/afs.m4, assert.m4, bison.m4, check-decl.m4, chown.m4, d-ino.m4,
29264         d-type.m4, dos.m4, error.m4, fnmatch.m4, fpending.m4, fstypename.m4,
29265         fsusage.m4, ftruncate.m4, getgroups.m4, glibc.m4, gnu-source.m4,
29266         group-member.m4, jm-glibc-io.m4, jm-macros.m4, jm-mktime.m4,
29267         jm-winsz1.m4, jm-winsz2.m4, lchown.m4, lib-check.m4, libintl.m4,
29268         link-follow.m4, ls-mntd-fs.m4, lstat.m4, malloc.m4, mbrtowc.m4,
29269         mbstate_t.m4, mbswidth.m4, memcmp.m4, nanosleep.m4, perl.m4,
29270         prereq.m4, putenv.m4, readdir.m4, realloc.m4, regex.m4, rename.m4,
29271         rmdir-errno.m4, search-libs.m4, st_dm_mode.m4, st_mtim.m4, stat.m4,
29272         strftime.m4, timespec.m4, unlink-busy.m4, uptime.m4, utimbuf.m4,
29273         utime.m4, utimes.m4, xstrtoumax.m4:
29274         Quote the first argument in each use of AC_DEFUN.
29275
29276 2001-08-12  Jim Meyering  <meyering@lucent.com>
29277
29278         * lib/xgetcwd.c (xgetcwd) [defined __GLIBC__ && __GLIBC__ >= 2]:
29279         Simply `return getcwd (NULL, 0);'.
29280         [! (defined __GLIBC__ && __GLIBC__ >= 2)]:
29281         Use 1300 as initial value for length, not PATH_MAX.
29282
29283         * lib/pathmax.h: Clean up cpp syntax.
29284
29285 2001-08-12  Jim Meyering  <meyering@lucent.com>
29286
29287         * lib/gettimeofday.c: New file.
29288         * lib/gtod.h: New file.
29289         * lib/Makefile.am (libfetish_a_SOURCES): Add gtod.h.
29290
29291 2001-08-05  Jim Meyering  <meyering@lucent.com>
29292
29293         * m4/jm-macros.m4: Require autoconf-2.52.
29294
29295 2001-08-04  Jim Meyering  <meyering@lucent.com>
29296
29297         * lib/error.h (__attribute__): Remove `|| __STRICT_ANSI__' from #if
29298         stmt, to get in sync with glibc.
29299
29300 2001-08-03  Paul Eggert  <eggert@twinsun.com>
29301
29302         The following changes are from gettext 0.10.39 as maintained by
29303         Bruno Haible.
29304
29305         * lib/mbswidth.h (MBSW_REJECT_UNPRINTABLE, MBSW_REJECT_INVALID):
29306         Renamed from MBSW_ACCEPT_UNPRINTABLE and MBSW_ACCEPT_INVALID
29307         with inverted sense.  All uses changed.
29308
29309         * lib/mbswidth.c: Don't include <limits.h>.
29310         Include <stdlib.h> and <string.h> unconditionally.
29311         (iswcntrl, mbsinit, ISCNTRL): New macros.
29312         (mbsnwidth): Use K&R style function declarations.
29313         Don't bother checking for MB_LEN_MAX == 1, since the compiler
29314         can optimize it when MB_CUR_MAX == 1.
29315         The width of control characters is zero, not 1.
29316
29317 2001-08-03  Paul Eggert  <eggert@twinsun.com>
29318
29319         The following changes are from gettext 0.10.39 as maintained by
29320         Bruno Haible, except that getline.m4 continues to use AC_LIBOBJ.
29321
29322         * m4/codeset.m4: Upgrade to serial AM1.
29323         (AM_LANGINFO_CODESET): Renamed from jm_LANGINFO_CODESET;
29324         all uses changed.  Quote first arg of AC_DEFUN.
29325         (am_cv_langinfo_codeset): Renamed from jm_cv_langinfo_codeset.
29326
29327         * m4/iconv.m4: Upgrade to serial AM2.
29328         (AM_ICONV): Renamed from jm_ICONV; all uses changed.
29329         Add --with-libconv-prefix.
29330         Quote first arg of AC_DEFUN.  Add description for ICONV_CONST.
29331         (am_cv_func_iconv): Renamed from jm_cv_func_iconv.
29332         (am_cv_lib_iconv): Renamed from jm_cv_lib_iconv.
29333         (am_cv_proto_iconv): Renamed from jm_cv_proto_iconv.
29334         * m4/jm-macros.m4 (jm_MACROS): Reflect s/jm_/AM_/ renamings.
29335
29336         * m4/c-bs-a.m4 (AC_C_BACKSLASH_A): Quote first arg of AC_DEFUN.
29337         * m4/getline.m4 (AM_FUNC_GETLINE): Likewise.
29338         * m4/glibc21.m4 (jm_GLIBC21): Likewise.
29339         * m4/inttypes_h.m4 (jm_AC_HEADER_INTTYPES_H): Likewise.
29340         * m4/isc-posix.m4 (AC_ISC_POSIX): Likewise.
29341         * m4/lcmessage.m4 (AM_LC_MESSAGES): Likewise.
29342         * m4/progtest.m4 (AM_PATH_PROG_WITH_TEST): Likewise.
29343         * m4/uintmax_t.m4 (jm_AC_TYPE_UINTMAX_T): Likewise.
29344         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Likewise.
29345
29346         * m4/getline.m4 (AM_FUNC_GETLINE): Don't bother checking for
29347         string.h any more.
29348
29349         * m4/progtest.m4 (AM_PATH_PROG_WITH_TEST): If not found, print "no",
29350         not the default value.
29351
29352         2001-06-25  Bruno Haible  <haible@clisp.cons.org>
29353         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Don't require AM_C_PROTOTYPES.
29354         Also check for mbsinit.  Needed for SCO 3.2v5.0.2.
29355         Also include <string.h>; this is where AIX 3.2.5 declares wcwidth.
29356         Also check for iswcntrl, used for wcwidth fallback.
29357         Use AC_TRY_COMPILE to emulate AC_CHECK_DECLS, for portability
29358         to Autoconf 2.13.
29359
29360 2001-08-03  Jim Meyering  <meyering@lucent.com>
29361
29362         * m4/mbrtowc.m4 (jm_FUNC_MBRTOWC): Use `#include', not `@%:@include',
29363         as it was in the original.  Reported by Paul Eggert.
29364
29365 2001-07-16  Jim Meyering  <meyering@lucent.com>
29366
29367         * m4/gettimeofday.m4: New file.
29368         Prompted by a report from Bernhard Baehr.
29369
29370 2001-07-15  Jim Meyering  <meyering@lucent.com>
29371
29372         * m4/Makefile.am.in (Makefile.am): Remove most of the unlocked-io.h
29373         stuff. Now it's in ../Makefile.cfg.
29374
29375 2001-07-15  Jim Meyering  <meyering@lucent.com>
29376
29377         * lib/Makefile.am (EXTRA_DIST): Add unlocked-io.hin.
29378         (BUILT_SOURCES): Add unlocked-io.h.
29379         (io_functions): Define.
29380         (unlocked-io.h): New rule.
29381         (DISTCLEANFILES): Add unlocked-io.h.
29382         (all-local): Depend on unlocked-io.h, to ensure it is created.
29383
29384         * lib/unlocked-io.hin: New file
29385
29386         * lib/regex.c: Update from glibc.
29387
29388 2001-07-05  Jim Meyering  <meyering@lucent.com>
29389
29390         * lib/Makefile.am (noinst_HEADERS): Remove definition, per new automake
29391         recommendation.
29392         (libfetish_a_SOURCES): Put all .h files here instead.
29393         Remove a thus-exposed (better checks in automake) duplicate and
29394         two unnecessary .h files.
29395
29396 2001-07-04  Jim Meyering  <meyering@lucent.com>
29397
29398         * m4/Makefile.am.in (glibc-io.struct): New target.  Rework the code
29399         that generates jm-glibc-io.m4 so that it doesn't trigger any make
29400         distcheck failure.
29401
29402 2001-07-02  Jim Meyering  <meyering@lucent.com>
29403
29404         The following changes were prompted by suggestions from Bruno Haible.
29405
29406         * m4/jm-glibc-io.m4n: New file, the template from which jm-glibc-io.m4
29407         is now generated.
29408         * m4/Makefile.am.in (Makefile.am): Include jm-glibc-io.m4n in emitted
29409         definition of EXTRA_DIST.
29410         (Makefile.am): Emit the dependency, `all-local: jm-glibc-io.m4' to
29411         ensure that the generated file is created/updated whenever the list
29412         of $(unlocked_functions) is changed.
29413         (jm-glibc-io.m4): New rule.
29414         (unlocked-io.h): New rule -- currently unused.
29415
29416 2001-06-24  Jim Meyering  <meyering@lucent.com>
29417
29418         * m4/regex.m4 (jm_INCLUDED_REGEX): Use a quadrigraph to represent an
29419         unmatched right bracket, rather than kludging it with an extra,
29420         falsely-matching quote in a comment.  Patch by Akim Demaille.
29421
29422 2001-06-11  Jim Meyering  <meyering@lucent.com>
29423
29424         * lib/regex.c: Update from GNU libc.
29425
29426 2001-05-27  Jim Meyering  <meyering@lucent.com>
29427
29428         * m4/prereq.m4 (jm_PREREQ_READUTMP): Check for ut_type in struct utmpx.
29429         Check for ut_type in struct utmp.
29430
29431 2001-05-27  Jim Meyering  <meyering@lucent.com>
29432
29433         * lib/readutmp.h (UT_TYPE): Define.
29434
29435 2001-05-24  Jim Meyering  <meyering@lucent.com>
29436
29437         * lib/argmatch.c: Include "quote.h".
29438         (argmatch_invalid): Remove explicit `' quotes.  Instead, use the
29439         quote function.  Reported by Göran Uddeborg.
29440
29441 2001-05-22  Jim Meyering  <meyering@lucent.com>
29442
29443         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't use AC_LIBOBJ(strftime),
29444         now that we use the package-supplied version unconditionally.
29445         (jm_FUNC_STRFTIME): Don't replace strftime, for the same reason.
29446
29447 2001-05-21  Jim Meyering  <meyering@lucent.com>
29448
29449         * m4/regex.m4: Change a couple backticks to single quotes to avoid
29450         shell syntax errors.
29451
29452 2001-05-21  Alexandre Duret-Lutz  <duret_g@epita.fr>
29453
29454         * m4/dos.m4 (jm_AC_DOS): Check for _WIN32, __WIN32__, and __MSDOS__.
29455
29456 2001-05-20  Paul Eggert  <eggert@twinsun.com>
29457
29458         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME):
29459         Don't bother to check library strftime, since
29460         we'll be using our own my_strftime function anyway.
29461         Define my_strftime instead of strftime.
29462
29463 2001-05-20  Alexandre Duret-Lutz  <duret_g@epita.fr>
29464
29465         * lib/dirname.c (dir_name): Compute append_dot using path, not newpath
29466         which is not yet declared.
29467
29468 2001-05-15  Jim Meyering  <meyering@lucent.com>
29469
29470         * m4/regex.m4: Use proper quoting so brackets appear in the test
29471         program.
29472         Reported by, and with help from, Bruno Haible.
29473
29474 2001-05-13  Jim Meyering  <meyering@lucent.com>
29475
29476         * m4/jm-macros.m4 (major_t, minor_t): Define to unsigned int if
29477         undefined.
29478
29479 2001-05-11  Paul Eggert  <eggert@twinsun.com>
29480
29481         dirname code cleanup.  base_name now behaves more compatibly
29482         with POSIX basename when given file names that have trailing
29483         slashes, and similarly for dir_name.  Add new primitives
29484         base_len and dir_len.  Put the directory-name-related decls
29485         into dirname.h.
29486
29487         * lib/addext.c (ISSLASH, base_name): Remove; now in dirname.h.
29488         * lib/backupfile.c (base_name): Likewise.
29489         * lib/basename.c (FILESYSTEM_PREFIX_LEN, PARAMS, ISSLASH): Likewise.
29490         * lib/dirname.c (FILESYSTEM_PREFIX_LEN, ISSLASH): Likewise.
29491         * lib/makepath.c (strip_trailing_slashes): Likewise.
29492         * lib/path-concat.c (DIRECTORY_SEPARATOR, FILESYSTEM_PREFIX_LEN,
29493         ISSLASH): Likewise.
29494         * lib/rename.c (strip_trailing_slashes): Likewise.
29495         * lib/same.c (base_name): Likewise.
29496         * lib/stripslash.c (ISSLASH): Likewise.
29497
29498         * lib/addext.c: Include <dirname.h> after size_t is defined.
29499         * lib/backupfile.c: Likewise.
29500
29501         * lib/addext.c (addext): Use base_len to trim redundant
29502         trailing slashes instead of doing it ourselves.
29503         But do not trim the last slash if it is not redundant.
29504
29505         * lib/backupfile.c (find_backup_file_name,
29506         max_backup_version): Use base_len instead of rolling it ourselves.
29507         Handle the case of "" and (on DOS) "C:" correctly.
29508
29509         * lib/basename.c: Do not include <stdio.h>, <assert.h>; no longer
29510         needed. Include <string.h>, <dirname.h>.
29511         (base_name): Allow file names ending in slashes, other than names
29512         that are all slashes.  In this case, return the basename followed
29513         by the slashes.  This is more general, and can be used in places
29514         where the original base_name purposely had an assertion failure.
29515         (base_len): New function.
29516
29517         * lib/dirname.c: Include <string.h> instead of <stdlib.h>.
29518         Do not include <assert.h>; no longer needed.
29519         Include xalloc.h.
29520         (memrchr): Remove decl.
29521         (dir_name_r): Remove.
29522         (dir_len): Renamed from dirlen.  All callers changed.
29523         Rewrite in terms of base_name, for simplicity and consistency.
29524         (dir_name): Never return NULL.  All callers changed.
29525         Do not include <stdlib.h> in test program; no longer needed.
29526         return 0; is fine for test program.
29527
29528         * lib/dirname.h (DIRECTORY_SEPARATOR, ISSLASH, FILESYSTEM_PREFIX_LEN):
29529         New macros.
29530         (base_name, base_len, dir_len, strip_trailing_slashes): New decls.
29531
29532         * lib/path-concat.c (path_concat): Use base_len to compute
29533         base length, not strlen; this means we cannot rely on memcpy
29534         to null-terminate.
29535
29536         * lib/same.c (STREQ): Remove.
29537         (same_name): Handle the case where the basename ends in trailing '/'.
29538
29539         * lib/stripslash.c (strip_trailing_slashes): Return nonzero if
29540         a slash was stripped.  Do not strip the last slash after a
29541         file system prefix.
29542
29543 2001-05-11  Paul Eggert  <eggert@twinsun.com>
29544
29545         * lib/Makefile.am (libfetish_a_SOURCES):
29546         Add strftime.c, since we now compile it on all hosts.
29547
29548         * lib/strftime.c (my_strftime):
29549         Define to nstrftime if emacs, but only if my_strftime is not defined.
29550         (extra_args, extra_args_spec, extra_args_spec_iso): Rename from
29551         ut_argument, ut_argument_spec, ut_argument_spec_iso, respectively.
29552         Add one more extra argument: a nanoseconds value.
29553         All uses changed.
29554         (ns): New macro.
29555         (my_strftime function): Add %N format.
29556         (emacs_strftimeu): Renamed from emacs_strftime,
29557         with extra ut argument.
29558
29559 2001-05-09  Paul Eggert  <eggert@twinsun.com>
29560
29561         * m4/jm-macros.m4 (jm_MACROS): Do not check for fseeko; no longer used.
29562
29563 2001-04-21  Jim Meyering  <meyering@lucent.com>
29564
29565         * m4/rmdir-errno.m4: Write to a new file, so that a restrictive umask
29566         doesn't interfere.
29567
29568 2001-04-21  Alexandre Duret-Lutz  <duret_g@epita.fr>
29569
29570         * m4/ftruncate.m4: Check for chsize.
29571         Link with ftruncate.o unconditionally if ftruncate is missing.
29572         This was required when cross-compiling to i586-mingw32msvc.
29573
29574 2001-04-08  Jim Meyering  <meyering@lucent.com>
29575
29576         * lib/getdate.y (get_date): Set tm_isdst to -1 to ensure that it is
29577         recomputed; that's necessary when the offset spans a DST transition.
29578         Patch by David J. MacKenzie.  Reported by Hon-Yin Kok.
29579
29580 2001-04-02  Jim Meyering  <meyering@lucent.com>
29581
29582         * lib/regex.h, regex.c: Update from GNU libc.
29583
29584 2001-03-24  Jim Meyering  <meyering@lucent.com>
29585
29586         * m4/jm-macros.m4: Require autoconf-2.49d.
29587
29588 2001-03-20  Bruno Haible  <haible@clisp.cons.org>
29589
29590         * m4/iconv.m4 (jm_ICONV): Recommend GNU libiconv.
29591
29592 2001-03-19  Paul Eggert  <eggert@twinsun.com>
29593
29594         * lib/version-etc.c (version_etc_copyright): Update to 2001.
29595
29596 2001-03-17  Jim Meyering  <meyering@lucent.com>
29597
29598         * m4/memcmp.m4 (jm_AC_FUNC_MEMCMP): Remove my copy of AC_FUNC_MEMCMP,
29599         now that the version in autoconf is equivalent.
29600         (jm_FUNC_MEMCMP): Adjust to use AC_FUNC_MEMCMP.
29601
29602         * m4/error.m4 (jm_PREREQ_ERROR): Invoke AC_FUNC_STRERROR_R.
29603         Suggestion from Akim Demaille.
29604
29605         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_TEMPNAME.
29606         (jm_PREREQ_TEMPNAME): New function.
29607
29608 2001-03-16  Paul Eggert  <eggert@twinsun.com>
29609
29610         * lib/tempname.c (uint64_t): Define to uintmax_t if
29611         not defined, and if UINT64_MAX is not defined.
29612         Required at least for Vax Ultrix4.3, which doesn't define uint64_t.
29613         Reported by John David Anglin.
29614
29615 2001-03-15  Bruno Haible  <haible@clisp.cons.org>
29616
29617         * lib/localcharset.c (locale_charset): Allow wildcard syntax. Also
29618         resolve alias if codeset is empty.
29619         * lib/config.charset (BeOS): Use wildcard syntax.
29620
29621 2001-03-13  Jim Meyering  <meyering@lucent.com>
29622
29623         * lib/path-concat.c (path_concat)
29624         [FILESYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX]: Don't insert a backslash when
29625         concatenating e.g., `C:' and `foo'.
29626         From Bruno Haible.
29627
29628 2001-03-06  Bruno Haible  <haible@clisp.cons.org>
29629
29630         * lib/localcharset.c (locale_charset): Don't use
29631         setlocale(LC_CTYPE,NULL). Don't return NULL.
29632         * lib/unicodeio.c (print_unicode_char): Simplify accordingly.
29633
29634 2001-03-06  Bruno Haible  <haible@clisp.cons.org>
29635
29636         * lib/config.charset: Update for FreeBSD 4.2 and OSF/1 5.1. Add
29637         support for DOS/DJGPP.
29638
29639 2001-03-01  Paul Eggert  <eggert@twinsun.com>
29640
29641         * m4/jm-macros.m4 (jm_MACROS): Use mkstemp replacement if the system
29642         lacks mkstemp.  Compile our own tempname.c if we compile our own
29643         mkstemp.c, as mkstemp relies on tempname.
29644
29645 2001-03-01  Jim Meyering  <meyering@lucent.com>
29646
29647         * m4/dos.m4 (jm_AC_DOS): Remove extra backslashes, now that
29648         AH_VERBATIM really does output its argument verbatim.
29649
29650 2001-02-28  Paul Eggert  <eggert@twinsun.com>
29651
29652         * lib/Makefile.am (libfetish_a_SOURCES):
29653         Add dup-safer.c, fopen-safer.c.
29654         (noinst_HEADERS): Add stdio-safer.h, unistd-safer.h.
29655
29656         * lib/dup-safer.c, lib/fopen-safer.c, lib/stdio-safer.h:
29657         * lib/unistd-safer.h: New files.
29658
29659 2001-02-25  Paul Eggert  <eggert@twinsun.com>
29660
29661         The mkstemp replacement is taken from glibc 2.2.2, with some
29662         portability fixes for use outside glibc, as follows:
29663
29664         * lib/tempname.c (struct_stat64): New macro.
29665         (direxists, __gen_tempname): Use it.
29666         This avoids a portability problem with Solaris 8.
29667
29668         * lib/tempname.c (<config.h>): Include if HAVE_CONFIG_H.
29669         (<stddef.h>, <stdint.h>, <string.h>):
29670         Include only if STDC_HEADERS || _LIBC.
29671         (<fcntl.h>): Include only if HAVE_FCNTL_H || _LIBC.
29672         (<unistd.h>): Include only if HAVE_UNISTD_H || _LIBC.
29673         (<sys/time.h>): Include only if HAVE_SYS_TIME_H || _LIBC.
29674         (__set_errno): Define this macro if <errno.h> doesn't.
29675         (P_tmpdir, TMP_MAX, __GT_FILE, __GT_BIGFILE, __GT_DIR, __GT_NOCREATE):
29676         Define these macros if <stdio.h> doesn't.
29677         (S_ISDIR, S_IRUSR, S_IWUSR, S_IXUSR):
29678         Define these macros if <sys/stat.h>
29679         doesn't.  Ignore <sys/stat.h> S_ISDIR if STAT_MACROS_BROKEN.
29680         (stat64, __getpid, __gettimeofday, __mkdir, __open, __open64, lxstat64,
29681         __xstat64): Define if not _LIBC.
29682         (__secure_getenv): Define if ! (HAVE___SECURE_GETENV || _LIBC).
29683         (__gen_tempname): Invoke gettimeofday only if
29684         HAVE_GETTIMEOFDAY || _LIBC;
29685         otherwise, fall back on plain "time".
29686         Use macros like S_IRUSR | S_IWUSR rather than octal values like 0600.
29687
29688         * lib/mkstemp.c (__GT_FILE): Define to zero if not defined.
29689
29690         * lib/mkstemp.c, lib/tempname.c: New files, taken from glibc 2.2.2.
29691
29692 2001-02-18  Paul Eggert  <eggert@twinsun.com>
29693
29694         * m4/jm-macros.m4 (jm_CHECK_ALL_HEADERS): Check for sys/resource.h.
29695
29696 2001-02-17  Paul Eggert  <eggert@twinsun.com>
29697
29698         * m4/mbrtowc.m4: New file, defining jm_FUNC_MBRTOWC.
29699         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH):
29700         Use jm_FUNC_MBRTOWC, not AC_CHECK_FUNCS(mbrtowc).
29701         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Likewise.
29702
29703 2001-02-17  Paul Eggert  <eggert@twinsun.com>
29704
29705         * lib/mbswidth.c, quotearg.c (mbrtowc, mbsinit):
29706         Remove workaround macros for hosts that have mbrtowc but not
29707         mbstate_t, as we now insist on proper declarations for both
29708         before using mbrtowc.
29709
29710 2001-02-17  Jim Meyering  <meyering@lucent.com>
29711
29712         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Don't check for
29713         getmntent via AC_CHECK_FUNCS, since that would get a `no' and disrupt
29714         further attempts by AC_FUNC_GETMNTENT to check with e.g., -lgen on
29715         UnixWare 7.1.1.
29716
29717         * m4/mbrtowc.m4 (jm_FUNC_MBRTOWC): Adapt to use AC_CACHE_CHECK etc.,
29718         rather than AC_CACHE_VAL.
29719
29720 2001-02-17  Jim Meyering  <meyering@lucent.com>
29721
29722         * lib/strtoul.c: Sync from GNU libc.  Use double quotes, not <...>
29723         around included file name.
29724
29725         * lib/strnlen.c (__strnlen): Merge in a change from GNU libc.
29726
29727         * lib/strftime.c: Update from GNU libc (the only changes were to
29728         comments).
29729
29730 2001-02-17  Jim Meyering  <meyering@lucent.com>
29731
29732         * lib/regex.c: Update from libc.
29733
29734 2001-02-17  Bruno Haible  <haible@clisp.cons.org>
29735
29736         * lib/mbswidth.h (mbswidth): Also define as macro, to avoid prototype
29737         clash.
29738
29739 2001-02-16  Paul Eggert  <eggert@twinsun.com>
29740
29741         * lib/alloca.c (malloc): Undef before defining, since stdlib.h
29742         may have defined it.  Needed for Encore Umax-3.0.9.16b systems.
29743         Reported by Mark Hounschell via Paul Eggert.
29744
29745 2001-02-07  Jim Meyering  <meyering@lucent.com>
29746
29747         * m4/regex.m4 (jm_INCLUDED_REGEX): Add a test for the latest bug.
29748
29749 2001-02-05  Jim Meyering  <meyering@lucent.com>
29750
29751         * m4/jm-macros.m4: Require autoconf-2.14d (not yet released), because
29752         it includes the patch required for `large file' support with at least
29753         HP-UX's 10.20 /bin/cc.
29754
29755 2001-02-03  Jim Meyering  <meyering@lucent.com>
29756
29757         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Restore prior use of
29758         AS_IF, now that it works once again (mysteriously).
29759         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Likewise.
29760
29761 2001-01-30  Jim Meyering  <meyering@lucent.com>
29762
29763         Don't use filenames that are 8.3-equivalent to "conftest" on DOS.
29764         * m4/chown.m4: Rename conftestchown to conftest.chown.
29765         * m4/rename.m4: s/conftestdir/conftest.d1/ and
29766         s/conftestdir2/conftest.d2/.
29767         * m4/utimes.m4: s/conftestdata/conftest.data/
29768         Inspired by Pavel Roskin's change in autoconf.
29769
29770 2001-01-30  Bruno Haible  <haible@clisp.cons.org>
29771
29772         * lib/config.charset: Update for FreeBSD 4.2.
29773
29774 2001-01-27  Jim Meyering  <meyering@lucent.com>
29775
29776         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Open-code what was
29777         a use of AS_IF.
29778         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Likewise.
29779
29780 2001-01-26  Jim Meyering  <meyering@lucent.com>
29781
29782         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Check for stddef.h, now that
29783         quotearg.c includes it.
29784
29785 2001-01-26  Jim Meyering  <meyering@lucent.com>
29786
29787         * lib/quotearg.c: Include stddef.h.
29788         * lib/quote.c: Include stddef.h.
29789         Reported by Axel Kittenberger.
29790
29791         * lib/xmalloc.c [HAVE_DONE_WORKING_MALLOC_CHECK]: Enclose error-evoking
29792         line in double quotes so that it evokes a better diagnostic.
29793         [HAVE_DONE_WORKING_REALLOC_CHECK]: Likewise.
29794         Reported by Axel Kittenberger.
29795
29796 2001-01-24  Stefan Monnier  <monnier@cs.yale.edu>
29797
29798         * regex.c (mutually_exclusive_p): Don't blindly handle `charset_not'
29799         as if it was a `charset'.
29800
29801 2001-01-21  Bruno Haible  <haible@clisp.cons.org>
29802
29803         * m4/iconv.m4 (jm_ICONV): Also check whether the iconv declaration
29804         has const.
29805
29806 2001-01-21  Bruno Haible  <haible@clisp.cons.org>
29807
29808         * lib/unicodeio.c (print_unicode_char): Cast the second iconv() arg,
29809         to avoid a warning.  Add back 'const' to inptr.
29810
29811 2001-01-20  Jim Meyering  <meyering@lucent.com>
29812
29813         Be sure that headers are checked before used in code compiled
29814         for the type checks.
29815         * m4/jm-macros.m4 (jm_MACROS): Remove all header checks.
29816         In place of that, invoke jm_CHECK_ALL_TYPES.
29817         (jm_CHECK_ALL_HEADERS): New functions with the above checks.
29818         (jm_CHECK_ALL_TYPES): Require jm_CHECK_ALL_HEADERS.
29819         Alan Iwi reported a build failure on an f300-fujitsu-uxpv4.1_ES;
29820         The check for ssize_t was mistakenly run before the test for unistd.h.
29821
29822         The configure-time check for stdbool.h was missing.
29823         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_HASH.
29824         (jm_PREREQ_HASH): New function.
29825
29826 2001-01-17  Jim Meyering  <meyering@lucent.com>
29827
29828         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Use AS_IF, not AS_IFELSE,
29829         for autoconf-2.49c.
29830         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Likewise.
29831
29832 2001-01-16  Jim Meyering  <meyering@lucent.com>
29833
29834         * lib/basename.c: Include <stdio.h>, needed by assert on SunOS 4.
29835         From Bruno Haible.
29836
29837 2001-01-14  Jim Meyering  <meyering@lucent.com>
29838
29839         * m4/rename.m4: Use temporary directories named conftestdir{,2}, not
29840         foo and bar.  Create conftestdir/ in the script, not in the C code.
29841         Remove directories in the script, not in the C code.
29842         Remove conftestdir{,2} before trying to create the directory.
29843         Make the entire configure script fail if the mkdir fails.
29844
29845 2001-01-14  Jim Meyering  <meyering@lucent.com>
29846
29847         * lib/rename.c: New file.  From Volker Borchert.
29848         Include stdlib.h, string.h or strings.h, and xalloc.h.
29849         Use strip_trailing_slashes rather than open-coding it.
29850
29851 2001-01-03  Paul Eggert  <eggert@twinsun.com>
29852
29853         * lib/strftime.c: Sync with glibc time/strftime.c 1.81.
29854
29855 2001-01-03  Jim Meyering  <meyering@lucent.com>
29856
29857         * lib/unicodeio.c (print_unicode_char): Remove `const' from declaration
29858         of local `inptr' to avoid warning with some system declarations of
29859         iconv.
29860
29861 2001-01-02  Volker Borchert  <bt@teknon.de>
29862
29863         * m4/rename.m4: New file.
29864         * m4/jm-macros.m4 (jm_MACROS): Require vb_FUNC_RENAME.
29865
29866 2001-01-01  Jim Meyering  <meyering@lucent.com>
29867
29868         * m4/prereq.m4 (jm_PREREQ_READUTMP): Include utmp.h (if available),
29869         even on systems with utmpx.h.  It's necessary for the declaration of
29870         utmp's ut_user member.  Reported by Andreas Jaeger.
29871
29872         * m4/check-decl.m4 (jm_CHECK_DECLS): Include grp.h and pwd.h if
29873         available. They are required for the declarations of getgrgid and
29874         getpwuid resp.
29875         (_jm_DECL_HEADERS): Check for grp.h and pwd.h.
29876         Reported by Andreas Jaeger.
29877
29878 2001-01-01  Alexandre Duret-Lutz  <duret_g@epita.fr>
29879
29880         * m4/libintl.m4 (AM_GNU_GETTEXT): Define MKINSTALLDIRS by
29881         expanding the value of $ac_aux_dir, as in AM_MISSING_HAS_RUN,
29882         so `make install' also works in VPATH builds.
29883
29884 2000-12-31  Alexandre Duret-Lutz  <duret_g@epita.fr>
29885
29886         * m4/libintl.m4 (AM_WITH_NLS): When using AC_CONFIG_AUX_DIR,
29887         prepend $(top_srcdir) to the value of MKINSTALLDIRS so that it
29888         can be used in subdirectories.
29889
29890 2000-12-29  Paul Eggert  <eggert@twinsun.com>
29891
29892         * lib/modechange.c: Do not assume that mode_t uses the
29893         traditional octal encoding.  E.g. "chmod 1 FOO" should set
29894         the other-execute bit of FOO even if S_IXOTH != 1.
29895
29896         (SUID, SGID, SVTX, RUSR, WUSR, XUSR, RGRP, WGRP, XGRP, ROTH,
29897         WOTH, XOTH, ALLM): New macros.
29898         (S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR,
29899          S_IRGRP, S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH):
29900         Use them.
29901         (S_ISGID): Fix typo; it was defaulting to the same value as S_ISUID.
29902         (S_IRWXU, S_IRWXG, S_IRWXO): Specify defaults in terms of the above.
29903         (mode_compile):
29904         No need to use uintmax_t; unsigned long is long enough.
29905         Don't bother to get suffix since we don't use it.
29906
29907 2000-12-26  Jim Meyering  <meyering@lucent.com>
29908
29909         * m4/dos.m4 (jm_AC_DOS): Rewrite (though it's still a stub) to work
29910         better with autoheader.
29911
29912 2000-12-24  Jim Meyering  <meyering@lucent.com>
29913
29914         * lib/hash.c (is_prime): Return explicit boolean values.
29915         (hash_get_first): Return NULL to appease Irix5.6's 89.
29916         Reported by Nelson Beebe.
29917
29918 2000-12-19  Bruno Haible  <haible@clisp.cons.org>
29919
29920         * lib/localcharset.c (locale_charset): Add support for Win32.
29921
29922 2000-12-18  Paul Eggert  <eggert@twinsun.com>
29923
29924         * lib/physmem.h, lib/physmem.c: New files.
29925
29926         * lib/Makefile.am (libfetish_a_SOURCES): Add physmem.c.
29927         (noinst_HEADERS): Add physmem.h.
29928
29929         * lib/xstrtol.c (__xstrtol): Add undocumented suffixes 'g' and
29930         't' for compatibility with Solaris 8 sort.
29931
29932 2000-12-18  Bruno Haible  <haible@clisp.cons.org>
29933
29934         * lib/config.charset: Add support for BeOS.
29935
29936 2000-12-17  Jim Meyering  <meyering@lucent.com>
29937
29938         * m4/dos.m4 (jm_AC_DOS): New file and macro.
29939         * m4/jm-macros.m4 (jm_MACROS): Require jm_AC_DOS.
29940
29941 2000-12-16  Jim Meyering  <meyering@lucent.com>
29942
29943         This bug had a serious impact on chown: `chown N:M FILE' (for integer
29944         N and M) would have treated it like `chown N:N FILE'.
29945
29946         * lib/userspec.c (parse_user_spec): Fix typo: s/u/g/.
29947
29948 2000-12-16  Jim Meyering  <meyering@lucent.com>
29949
29950         * lib/getusershell.c [!SHELLS_FILE && __DJGPP__]: Define
29951         SHELLS_FILE to a file name that's useful on djgpp systems.
29952         Include stdlib.h.
29953         (ADDITIONAL_DEFAULT_SHELLS): Define.
29954         (default_shells): Prepend ADDITIONAL_DEFAULT_SHELLS.
29955         Based mostly on a patch from Prashant TR.
29956
29957 2000-12-16  Bruno Haible  <haible@clisp.cons.org>
29958
29959         * lib/config.charset: Add ISO-8859-3, BIG5HKSCS, GB18030, JOHAB,
29960         VISCII, CP874, CP949, CP950, CP1250, CP1253, CP1254, CP1255, CP1256,
29961         CP1257 to the list of canonical encodings. Rename EUC-CN to GB2312.
29962
29963 2000-12-08  Andreas Schwab  <schwab@suse.de>
29964
29965         * lib/mbswidth.c (mbsnwidth): Don't loop endlessly when called with an
29966         invalid mulitbyte sequence and with the MBSW_ACCEPT_INVALID flag set.
29967
29968 2000-12-07  Jim Meyering  <meyering@lucent.com>
29969
29970         * lib/stripslash.c (ISSLASH): Define.
29971         (strip_trailing_slashes): Use ISSLASH rather than comparing against
29972         `/'.
29973         From Prashant TR.
29974
29975         * lib/dirname.c (FILESYSTEM_PREFIX_LEN): Define.
29976         (dir_name_r): Declare this function as static.
29977         [BACKSLASH_IS_PATH_SEPARATOR]: Fix a bug that'd
29978         manifest itself on a name containing a mix of slashes and
29979         backslashes.
29980         Make this function work with names starting with a DOS-style
29981         drive letter and colon prefix.
29982         (dir_name): Append `.' if necessary.
29983         Based mostly on patches from Prashant TR and Eli Zaretskii.
29984
29985         * lib/dirname.h (dir_name_r): Remove prototype.
29986
29987 2000-12-06  Paul Eggert  <eggert@twinsun.com>
29988
29989         * m4/off_t-format.m4: Remove this file.
29990         * m4/jm-macros.m4 (jm_MACROS): Remove jm_SYS_OFF_T_PRINTF_FORMAT.
29991
29992 2000-12-06  Jim Meyering  <meyering@lucent.com>
29993
29994         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): If we need the
29995         replacement strtoull, we may well need the replacement strtoul, too.
29996         Check for declarations of strtoul and strtoull.
29997         Check for strtol.  Mainly as a cue to cause automake to include
29998         strtol.c -- that file is included by each of strtoul.c and strtoull.c.
29999         Check for limits.h -- strtol.c needs it.
30000
30001 2000-12-05  Jim Meyering  <meyering@lucent.com>
30002
30003         * lib/dirname.c (dir_name_r): Add `const' in a few local declarations.
30004
30005 2000-12-04  Jim Meyering  <meyering@lucent.com>
30006
30007         * lib/path-concat.c: [!HAVE_DECL_MALLOC]: Declare malloc.
30008         Also include memory.h, stdlib.h, unistd.h if appropriate.
30009         Reported by Andreas Jaeger (conflicting declaration of malloc).
30010
30011 2000-12-02  Jim Meyering  <meyering@lucent.com>
30012
30013         * m4/off_t-format.m4 (OFF_T_PRINTF_FORMAT_STRING): New file/macro.
30014         * m4/jm-macros.m4 (jm_MACROS): require it.
30015
30016 2000-12-02  Jim Meyering  <meyering@lucent.com>
30017
30018         * lib/closeout.h: Make idempotent, to avoid some obscure warnings.
30019
30020 2000-12-01  Paul Eggert  <eggert@twinsun.com>
30021
30022         * lib/memrchr.c: Include <config.h> before any system include file.
30023
30024 2000-11-30  Jim Meyering  <meyering@lucent.com>
30025
30026         * m4/jm-macros.m4 (jm_MACROS): Check for stdint.h.
30027
30028 2000-11-30  Jim Meyering  <meyering@lucent.com>
30029
30030         * m4/getloadavg.m4: s/ifval/m4_ifval/ to accommodate new autoconf.
30031
30032 2000-11-29  Paul Eggert  <eggert@twinsun.com>
30033
30034         * lib/dirname.c (dir_name_r): Fix typo: int -> size_t.
30035
30036 2000-11-26  Jim Meyering  <meyering@lucent.com>
30037
30038         * lib/memcoll.c: Include sys/types.h.  From Werner Almesberger.
30039
30040 2000-11-22  Paul Eggert  <eggert@twinsun.com>
30041
30042         * lib/strftime.c (my_strftime): Do not invoke mbrlen with a
30043         size of (size_t) -1; it's not portable.
30044
30045 2000-11-17  Jim Meyering  <meyering@lucent.com>
30046
30047         * lib/strstr.c: Update from GNU libc.
30048
30049 2000-11-17  Akim Demaille  <akim@epita.fr>
30050
30051         * lib/obstack.h: Formatting changes.
30052         (obstack_grow, obstack_grow0): Don't cast WHERE at all: that would
30053         prevent type checking.
30054         (obstack_ptr_grow, obstack_ptr_grow_fast): When assigning, don't
30055         cast the value to (void *): assigning a `foo *' to a `void *'
30056         variable is valid.
30057         (obstack_int_grow, obstack_int_grow_fast): Don't cast AINT to int.
30058
30059 2000-11-16  Jim Meyering  <meyering@lucent.com>
30060
30061         * lib/strverscmp.c: Incorporate weak-alias-related changes from glibc.
30062
30063 2000-11-11  Jim Meyering  <meyering@lucent.com>
30064
30065         * lib/error.c: Add a couple #includes, merging from GNU libc version.
30066
30067 2000-11-10  Jim Meyering  <meyering@lucent.com>
30068
30069         * lib/obstack.h: Update from GNU libc.
30070         * lib/obstack.c: Likewise.
30071
30072 2000-11-08  Bruno Haible  <haible@clisp.cons.org>
30073
30074         * m4/jm-macros.m4 (jm_MACROS): Add test for wcrtomb.
30075
30076 2000-11-06  Paul Eggert  <eggert@twinsun.com>
30077
30078         * lib/getusershell.c (setusershell): Use rewind rather than
30079         fseek/fseeko, to avoid configuration hassles with fseeko.
30080         Don't bother opening SHELLS_FILE if shellstream is NULL;
30081         it's not necessary.
30082
30083 2000-11-05  Jim Meyering  <meyering@lucent.com>
30084
30085         * lib/makepath.h (make_dir): Declare.
30086         * lib/makepath.c (make_dir): Remove `static' attribute.
30087         Tweak a comment.
30088
30089 2000-11-04  Jim Meyering  <meyering@lucent.com>
30090
30091         * m4/regex.m4: Use the `m4_' prefix on `syscmd' and `m4_sysval'.
30092
30093 2000-11-04  Alexandre Duret-Lutz  <duret_g@epita.fr>
30094
30095         * lib/hash.c (hash_get_next): Fix a thinko:  when ENTRY is the
30096         last one in a bucket, advance to the next bucket.
30097
30098 2000-11-02  Vesselin Atanasov  <vesselin@bgnet.bg>
30099
30100         * lib/fnmatch.c: Do not comment out all the code if we are using
30101         the GNU C library, because in some cases we are replacing buggy
30102         code in the GNU C library itself.
30103
30104 2000-10-30  Stefan Monnier  <monnier@cs.yale.edu>
30105
30106         * regex.c (re_iswctype, re_wctype_to_bit): Fix braino.
30107         (regex_compile): Catch bogus \(\1\).
30108
30109 2000-10-30  Paul Eggert  <eggert@twinsun.com>
30110
30111         * lib/fnmatch.c (FOLD): Do not assume that characters are unsigned.
30112         (fnmatch): Fix some FNM_FILE_NAME and FNM_LEADING_DIR bugs,
30113         e.g. fnmatch("d*/*1", "d/s/1", FNM_FILE_NAME) incorrectly yielded zero.
30114
30115 2000-10-30  Paul Eggert  <eggert@twinsun.com>
30116
30117         * lib/error.h, getline.h, modechange.h:
30118         Remove "2000" from Copyright line, as the file hasn't been
30119         changed this year other than in the copyright notice.
30120
30121         * lib/xalloc.h: Add "2000" to Copyright line, as this file
30122         was changed this year.
30123
30124 2000-10-29  Jim Meyering  <meyering@lucent.com>
30125
30126         * m4/fsusage.m4: s/AC_SHELL_IFELSE/AS_IFELSE/ to match autoconf
30127         renaming.
30128         * m4/ls-mntd-fs.m4: Likewise
30129
30130 2000-10-29  Jim Meyering  <meyering@lucent.com>
30131
30132         * lib/xstat.in: Fix grammar in comment.
30133
30134 2000-10-29  Greg Louis  <glouis@dynamicro.on.ca>
30135
30136         * lib/regex.h (__restrict_arr): Move definition out of #ifndef block.
30137         Required because egcs-2.91.66 (aka 1.1.2) defines __restrict, but
30138         doesn't define __restrict_arr.
30139
30140 2000-10-28  Jim Meyering  <meyering@lucent.com>
30141
30142         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_MEMCHR.
30143         (jm_PREREQ_MEMCHR): New function.
30144
30145 2000-10-28  Jim Meyering  <meyering@lucent.com>
30146
30147         * lib/memchr.c: Update from libc.
30148         Adjust for portability:
30149         [HAVE_STDLIB_H]: Include stdlib.h.
30150         [HAVE_BP_SYM_H || _LIBC]: Guard inclusion of bp-sym.h.
30151         Undef __memchr, too.
30152         [!weak_alias]: Define __memchr to memchr.
30153
30154         * lib/regex.c: Update from libc.
30155         * lib/regex.h: Likewise.
30156         * lib/getopt1.c: Likewise.
30157         * lib/memcmp.c: Likewise.
30158
30159         * lib/getusershell.c (setusershell) [HAVE_FSEEKO]: Use fseeko.
30160         Avoid using fseek, when possible -- it's broken by design.
30161         Patch by Ulrich Drepper.
30162
30163 2000-10-27  Stefan Monnier  <monnier@cs.yale.edu>
30164
30165         * regex.c (POP_FAILURE_REG_OR_COUNT, re_match_2_internal)
30166         (re_match_2_internal, re_match_2_internal, re_match_2_internal):
30167         Giving in to popular pressure to shut up the compiler with casts.
30168
30169 2000-10-26  Jim Meyering  <meyering@lucent.com>
30170
30171         * lib/strftime.c: Update from libc.
30172
30173 2000-10-25  Stefan Monnier  <monnier@cs.yale.edu>
30174
30175         * regex.c: More `unsigned char' -> `re_char' changes.
30176         Also change several `int' into `re_wchar_t'.
30177         (PATTERN_STACK_EMPTY, PUSH_PATTERN_OP, POP_PATTERN_OP): Remove.
30178         (PUSH_FAILURE_POINTER): Don't cast any more.
30179         (POP_FAILURE_REG_OR_COUNT): Remove the cast that strips `const'.
30180         We want GCC to complain, since this piece of code makes
30181         re_match non-reentrant, which *should* be fixed.
30182         (GET_BUFFER_SPACE): Use size_t rather than unsigned long.
30183         (EXTEND_BUFFER): Use RETALLOC.
30184         (SET_LIST_BIT): Don't cast.
30185         (re_wchar_t): New type.
30186         (re_iswctype, re_wctype_to_bit): Make it crystal clear to GCC
30187         that those two functions will always properly return.
30188         (IMMEDIATE_QUIT_CHECK): Cast to void.
30189         (analyse_first): Use recursion rather than an explicit stack.
30190         (re_compile_fastmap): Can't fail anymore.
30191         (re_search_2): Don't check re_compile_fastmap for failure.
30192         (PUSH_NUMBER): Renamed from PUSH_FAILURE_COUNT.
30193         Now also sets the new value (passed in a new argument).
30194         (re_match_2_internal): Use it.
30195         Also, use a new var `reg' of type size_t when looping through regs
30196         rather than reuse the inappropriate `mcnt'.
30197
30198 2000-10-25  Jim Meyering  <meyering@lucent.com>
30199
30200         * lib/obstack.c: Update from libc.
30201
30202 2000-10-24  Kenichi Handa  <handa@etl.go.jp>
30203
30204         * regex.c (regex_compile): Change the way of handling a range from
30205         a char less than 256 to a char not less than 256.
30206
30207 2000-10-24  Andrew Innes  <andrewi@gnu.org>
30208
30209         * regex.c (IMMEDIATE_QUIT_CHECK): New macro, which does QUIT on
30210         NT-Emacs only.
30211         (re_match_2_internal): Use IMMEDIATE_QUIT_CHECK instead of QUIT,
30212         so that re_search functions only quit when callers expect them to.
30213
30214 2000-10-23  Jim Meyering  <meyering@lucent.com>
30215
30216         * lib/hard-locale.c (hard_locale): Revert last change -- it was simply
30217         wrong.  That set_locale call must not have any side effects.
30218         From Paul Eggert.
30219
30220 2000-10-22  Jim Meyering  <meyering@lucent.com>
30221
30222         * lib/md5.c (md5_process_block) [OP]: Use `rol', not CYCLIC.
30223         [CYCLIC]: Remove now-unused definition.
30224
30225         * lib/save-cwd.c (O_DIRECTORY): Define, if needed.
30226         (save_cwd) [HAVE_FCHDIR]: Use O_DIRECTORY when opening ".".
30227         Suggestion from Ulrich Drepper.
30228
30229 2000-10-21  Jim Meyering  <meyering@lucent.com>
30230
30231         * m4/check-decl.m4 (jm_CHECK_DECLS): Also check for memrchr.
30232         * m4/prereq.m4 (jm_PREREQ_DIRNAME): New macro.
30233         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memrchr.
30234
30235 2000-10-21  Jim Meyering  <meyering@lucent.com>
30236
30237         * lib/dirname.c (memrchr): Declare if necessary.
30238         (dir_name): Remove the restriction that there be no
30239         trailing slashes.  Now, this code skips past them, effectively
30240         ignoring them.
30241         [TEST_DIRNAME] (main): New unit tests.
30242
30243         * lib/memrchr.c: New file from GNU libc.
30244         Undef __memrchr, too.
30245         [!weak_alias]: Define __memrchr to memrchr.
30246         Guard weak_alias use with `#ifdef weak_alias'.
30247
30248 2000-10-21  Jim Meyering  <meyering@lucent.com>
30249
30250         * lib/dirname.c (dir_name_r): New function, factored out of dir_name.
30251         (dir_name): Use dir_name_r.
30252         * lib/dirname.h (dir_name_r): Declare it.
30253
30254 2000-10-17  Jim Meyering  <meyering@lucent.com>
30255
30256         * lib/quote.h (PARAMS): Define and use.
30257         Reported by Akim Demaille.
30258
30259         * lib/getopt.c: Update from libc.
30260
30261 2000-10-16  Jim Meyering  <meyering@lucent.com>
30262
30263         * lib/hard-locale.c (hard_locale): Use "", not 0 as 2nd arg to
30264         setlocale.
30265         From Jan Fedak.
30266
30267 2000-10-15  Stefan Monnier  <monnier@cs.yale.edu>
30268
30269         * regex.c (WIDE_CHAR_SUPPORT): Define if _LIBC as well.
30270
30271 2000-09-25  Jim Meyering  <meyering@lucent.com>
30272
30273         * lib/md5.h (rol): Define (from GnuPG).
30274
30275         * lib/sha.c: Give credit (GnuPG) where due.
30276         (M): Use rol rather than open-coding it.
30277         Add a FIXME comment.
30278
30279 2000-09-21  Jim Meyering  <meyering@lucent.com>
30280
30281         * lib/userspec.c (parse_user_spec): Remove debugging printf I'd added.
30282         Reported by Michael Stone.
30283
30284 2000-09-20  Jim Meyering  <meyering@lucent.com>
30285
30286         * lib/Makefile.am (libfetish_a_SOURCES): Add sha.c.
30287         (noinst_HEADERS): Add sha.h.
30288         Based on code from Scott G. Miller and from GnuPG.
30289
30290 2000-09-18  Jim Meyering  <meyering@lucent.com>
30291
30292         * m4/getloadavg.m4 (AC_FUNC_GETLOADAVG): Restore the initial value of
30293         LIBS. Otherwise, everyone ends up linking with -lelf for some
30294         configurations.
30295         Reported by Mike Stone.
30296
30297 2000-09-15  Jim Meyering  <meyering@lucent.com>
30298
30299         * lib/regex.c: Update from libc.
30300
30301 2000-09-10  Jim Meyering  <meyering@lucent.com>
30302
30303         * lib/getopt.c (_getopt_internal): Update from glibc.
30304
30305 2000-09-09  Jim Meyering  <meyering@lucent.com>
30306
30307         * lib/quotearg.c: Rename ISASCII to IN_CTYPE_DOMAIN, so people don't
30308         think it should be used as a general replacement for isascii.
30309         * lib/fnmatch.c: Likewise.
30310         * lib/mbswidth.c: Likewise
30311         * lib/regex.c: Likewise.
30312
30313         Don't use atoi.
30314         * lib/userspec.c: Include sys/param.h and limits.h.
30315         Include xstrtol.h.
30316         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Define.
30317         (UID_T_MAX, GID_T_MAX, MAXUID, MAXGID): Define.
30318         (parse_user_spec): Use xstrtoul, not atoi when converting numeric
30319         UID, GID.  Check range.
30320
30321 2000-09-06  Jim Meyering  <meyering@lucent.com>
30322
30323         * lib/getopt.c (_getopt_internal): Update from glibc.
30324
30325 2000-08-30  Jim Meyering  <meyering@lucent.com>
30326
30327         * lib/strftime.c: Merge in changes from GNU libc.
30328
30329 2000-08-26  Jim Meyering  <meyering@lucent.com>
30330
30331         * m4/jm-macros.m4: Use jm_FUNC_FPENDING.
30332         * m4/fpending.m4: New file.
30333
30334 2000-08-26  Jim Meyering  <meyering@lucent.com>
30335
30336         * lib/closeout.c: Include "__fpending.h".
30337         (close_stdout_status): Return right away if there's nothing to flush.
30338
30339         * lib/Makefile.am (noinst_HEADERS): Add __fpending.h.
30340         * lib/__fpending.c: New file.
30341         * lib/__fpending.h: New file.
30342
30343 2000-08-20  Jim Meyering  <meyering@lucent.com>
30344
30345         * m4/check-decl.m4: Include utmp.h `#if HAVE_UTMP_H', rather than
30346         `#if !HAVE_UTMPX_H'.  The latter would lose on systems with neither
30347         utmp.h nor utmpx.h.  Reported by Eli Zaretskii.
30348
30349 2000-08-11  J. David Anglin  <dave@hiauly1.hia.nrc.ca>
30350
30351         Improve fileutils installation on systems where running
30352         programs (like install) can't be unlinked.
30353         * m4/unlink-busy.m4 (jm_FUNC_UNLINK_BUSY_TEXT): New file/macro.
30354         * m4/jm-macros.m4: Use jm_FUNC_UNLINK_BUSY_TEXT.
30355
30356 2000-08-07  Paul Eggert  <eggert@twinsun.com>
30357
30358         Standardize on "memory exhausted" instead of "Memory exhausted"
30359         or "virtual memory exhausted".
30360         * lib/obstack.c (print_and_abort): Use "memory exhausted", not
30361         "virtual memory exhausted".
30362         * lib/same.c (same_name): Invoke xalloc_die instead of printing
30363         our own message.
30364         * lib/userspec.c (parse_user_spec): Likewise.
30365         * lib/bumpalloc.h: comment fix
30366         * lib/same.c, userspec.c: Include xalloc.h.
30367
30368         * lib/xalloc.h (xalloc_msg_memory_exhausted): Now char const[],
30369         not char *const and pointing to a constant array.
30370         * lib/xmalloc.c (xalloc_msg_memory_exhausted): Likewise.
30371         (xrealloc): Comment fix.
30372
30373         * lib/userspec.c (parse_user_spec):
30374         Don't translate a message until just before returning,
30375         to avoid unnecessary translation.
30376
30377 2000-08-07  Jim Meyering  <meyering@lucent.com>
30378
30379         * lib/addext.c, argmatch.c, argmatch.h, backupfile.h, bumpalloc.h,
30380         chown.c, diacrit.h, dirname.h, dup2.c, exclude.h, fileblocks.c,
30381         fnmatch.c, fnmatch.h, fsusage.c, fsusage.h, getdate.h,
30382         getgroups.c, gethostname.c, getopt.h, group-member.c,
30383         hard-locale.c, hash.h, isdir.c, lchown.c, linebuffer.c,
30384         linebuffer.h, long-options.h, malloc.c, md5.c, md5.h, memchr.c,
30385         memcmp.c, memcoll.c, memset.c, mktime.c, modechange.h, obstack.h,
30386         pathmax.h, realloc.c, rmdir.c, safe-read.c, save-cwd.c, stime.c,
30387         stpcpy.c, strcasecmp.c, strcspn.c, strdup.c, stripslash.c,
30388         strstr.c, strtod.c, strtol.c, strtoul.c, strtoull.c, strtoumax.c,
30389         utime.c, version-etc.h, xalloc.h, xstrdup.c, xstrtoumax.c,
30390         yesno.c: Back out Copyright date changes for each file with no change
30391         this year.  This eases coordination with other programs using the same
30392         source code modules.  From Paul Eggert.
30393
30394 2000-08-06  Paul Eggert  <eggert@twinsun.com>
30395
30396         * m4/mbstate_t.m4 (AC_MBSTATE_T): Define mbstate_t to be int,
30397         not char, for compatibility with glibc 2.1.3 strftime.c.
30398
30399 2000-08-03  Greg McGary  <greg@mcgary.org>
30400
30401         * lib/regex.c (SET_HIGH_BOUND, MOVE_BUFFER_POINTER,
30402         ELSE_EXTEND_BUFFER_HIGH_BOUND): New macros.
30403         (EXTEND_BUFFER): Use them.
30404
30405 2000-08-01  Jim Meyering  <meyering@lucent.com>
30406
30407         * lib/dirname.c (ISSLASH): Define.
30408         (BACKSLASH_IS_PATH_SEPARATOR): Define.
30409         (dir_name) [BACKSLASH_IS_PATH_SEPARATOR]: Handle the case in which
30410         both `\' and `/' may be use as path separators.
30411         Based on a patch from Prashant TR.
30412
30413 2000-07-31  Paul Eggert  <eggert@twinsun.com>
30414
30415         * lib/quotearg.c (quotearg_n_options): Don't make the initial
30416         slot vector a constant, since it might get modified.
30417
30418 2000-07-31  Jim Meyering  <meyering@lucent.com>
30419
30420         * lib/xmalloc.c: Use `virtual memory exhausted', not
30421         `Memory exhausted'.
30422         * lib/obstack.c (print_and_abort): Likewise.
30423
30424 2000-07-30  Paul Eggert  <eggert@twinsun.com>
30425
30426         * lib/quotearg.c (quotearg_n_options): Preallocate a slot 0
30427         buffer, so that the caller can always quote one small
30428         component of a "memory exhausted" message in slot 0.
30429         From a suggestion by Jim Meyering.
30430
30431 2000-07-30  Jim Meyering  <meyering@lucent.com>
30432
30433         * lib/makepath.c (make_path): Quote the other instance, too.
30434
30435         * lib/quotearg.c (N_STATIC_SLOTVECS): Define.
30436         (STATIC_BUF_SIZE): Define.
30437         (quotearg_n_options): Use only statically allocated storage when
30438         N < N_STATIC_SLOTVECS and the length of the quoted result is smaller
30439         than STATIC_BUF_SIZE.
30440
30441 2000-07-29  Jim Meyering  <meyering@lucent.com>
30442
30443         * lib/diacrit.c (diacrit_diac): Use __MSDOS__ in favor of MSDOS.
30444         * lib/dirname.c (dir_name): Likewise.
30445
30446         * lib/basename.c (base_name): Use ISSLASH rather than comparing against
30447         `/'.
30448
30449         * lib/dirname.c (dir_name) [MSDOS]: Declare `lim' to be const.
30450         (dir_name): Assert that there are no trailing slashes.
30451
30452 2000-07-29  Bruno Haible  <haible@clisp.cons.org>
30453
30454         * lib/mbswidth.h (mbswidth): Add a flags argument.
30455         (mbswidth): New declaration.
30456         (MBSW_ACCEPT_INVALID, MBSW_ACCEPT_UNPRINTABLE): New macros.
30457         * lib/mbswidth.c (mbswidth): Add a flags argument.
30458         (mbsnwidth): New function.
30459
30460 2000-07-24  Jim Meyering  <meyering@lucent.com>
30461
30462         * lib/mbswidth.c: Remove useless #else.  From Bruno Haible.
30463
30464 2000-07-23  Paul Eggert  <eggert@twinsun.com>
30465
30466         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Check for wcwidth declaration.
30467
30468 2000-07-23  Paul Eggert  <eggert@twinsun.com>
30469
30470         * lib/quotearg.c: Streamline by invoking multibyte code only if needed.
30471         <wchar.h>: Include only if HAVE_MBRTOWC && 1 < MB_LEN_MAX.
30472         (MB_CUR_MAX): Redefine to 1 if ! (HAVE_MBRTOWC && 1 < MB_LEN_MAX).
30473         (quotearg_buffer_restyled): If a unibyte locale, don't bother to
30474         invoke multibyte primitives.
30475
30476 2000-07-23  Paul Eggert  <eggert@twinsun.com>
30477
30478         * lib/quotearg.c:
30479         Include <wchar.h> even if ! (HAVE_MBRTOWC && 1 < MB_LEN_MAX),
30480         so that mbstate_t is always defined.
30481
30482         Do not inspect MB_LEN_MAX, since it's incorrectly defined to
30483         be 1 in at least one GCC installation, and this configuration
30484         error is likely to be common.  Ignoring MB_LEN_MAX hurts
30485         performance on hosts that have mbrtowc but have only unibyte
30486         locales, but I assume these hosts are rare.
30487
30488 2000-07-23  Paul Eggert  <eggert@twinsun.com>
30489
30490         * lib/mbswidth.c (_XOPEN_SOURCE):
30491         Don't define; this causes problems on Solaris 7.
30492         (wcwidth) [!HAVE_DECL_WCWIDTH]: Declare.
30493
30494 2000-07-23  Jim Meyering  <meyering@lucent.com>
30495
30496         * m4/check-decl.m4 (jm_CHECK_DECLS): Check for declarations of these,
30497         too: getgrgid, getpwuid, getuid.
30498
30499 2000-07-23  Jim Meyering  <meyering@lucent.com>
30500
30501         * lib/basename.c (base_name): Add an assertion.
30502
30503 2000-07-23  Bruno Haible  <haible@clisp.cons.org>
30504
30505         * lib/quotearg.c: When the system forces us to redefine mbstate_t,
30506         shadow its mbsinit function.
30507
30508 2000-07-17  Bruno Haible  <haible@clisp.cons.org>
30509
30510         * lib/mbswidth.h: New file.
30511         * lib/mbswidth.c: New file.
30512         * lib/Makefile.am (libfetish_a_SOURCES): Add mbswidth.c.
30513         (noinst_HEADERS): Add mbswidth.h.
30514
30515 2000-07-17  Bruno Haible  <haible@clisp.cons.org>
30516
30517         * lib/config.charset: Add support for FreeBSD. Improve support for
30518         HP-UX and IRIX 6.
30519
30520 2000-07-16  Bruno Haible  <haible@clisp.cons.org>
30521
30522         * m4/mbswidth.m4: New file.
30523         * m4/prereq.m4 (jm_PREREQ): Call jm_PREREQ_MBSWIDTH.
30524
30525 2000-07-15  Jim Meyering  <meyering@lucent.com>
30526
30527         * lib/makepath.c: Include quote.h.
30528         (make_path): Convert "`%s'" in format strings to "%s", and wrap each
30529         corresponding argument in a `quote (...)' call.
30530         Give better diagnostics.
30531
30532         * lib/Makefile.am (libfetish_a_SOURCES): Add quote.c.
30533         (noinst_HEADERS): Add quote.h.
30534
30535         * lib/quote.c (quote, quote_n): New file.  Two functions taken verbatim
30536         from tar's src/misc.c.
30537         * lib/quote.h: New file.  Prototypes for same.
30538
30539 2000-07-14  Paul Eggert  <eggert@twinsun.com>
30540
30541         From a suggestion by Bruno Haible.
30542         * lib/quotearg.c (mbrtowc): Do not use HAVE_WCHAR_H in the definition.
30543         Use defined mbstate_t, not HAVE_MBSTATE_T_OBJECT,
30544         to decide whether to define the BeOS workaround macro;
30545         this adjusts to the change to AC_MBSTATE_T.
30546
30547 2000-07-14  Jim Meyering  <meyering@lucent.com>
30548
30549         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Require
30550         jm_AC_TYPE_UINTMAX_T.
30551
30552 2000-07-13  Paul Eggert  <eggert@twinsun.com>
30553
30554         * lib/quotearg.h (enum quoting style): New enum clocale_quoting_style.
30555
30556         * lib/quotearg.c (quoting_style_args, quoting_style_vals,
30557         quotearg_buffer_restyled): Add support for
30558         clocale_quoting_style.  Undo previous change to
30559         locale_quoting_style behavior, and undo the "{LEFT QUOTATION MARK}"
30560         and "{RIGHT QUOTATION MARK}" msgids.
30561
30562 2000-07-10  Paul Eggert  <eggert@twinsun.com>
30563
30564         From a suggestion by Bruno Haible.
30565         * m4/mbstate_t.m4 (AC_MBSTATE_T):
30566         Renamed from AC_MBSTATE_T_OBJECT.  All uses changed.
30567         Change from a two-part test, which defines both HAVE_MBSTATE_T_OBJECT
30568         and mbstate_t, to a single-part test that simply defines mbstate_t.
30569         * m4/prereq.m4 (jm_PREREQ_QUOTEARG):
30570         s/AC_MBSTATE_T_OBJECT/AC_MBSTATE_T/.
30571
30572 2000-07-10  Jim Meyering  <meyering@lucent.com>
30573
30574         * m4/strerror_r.m4: Mirror the correction made in autoconf.
30575
30576         * m4/gnu-source.m4: Output to confdefs.h directly.
30577         Suggestion from Akim Demaille.
30578
30579 2000-07-09  Paul Eggert  <eggert@twinsun.com>
30580
30581         The old behavior of quoting `like this' doesn't look good with
30582         newer, ISO-style fonts.  See:
30583         http://www.cl.cam.ac.uk/~mgk25/ucs/quotes.html
30584
30585         Instead, quote "like this" by default.  Let the translator
30586         tailor the locale-specific quoting behavior by providing
30587         translations for {LEFT QUOTATION MARK} and {RIGHT QUOTATION MARK}.
30588
30589         * lib/quotearg.c (N_): New macro.
30590         (gettext_default): New function.
30591         (quotearg_buffer_restyled): Use
30592         gettext_default ("{LEFT QUOTATION MARK}", "\"") for left quote, and
30593         gettext_default ("{RIGHT QUOTATION MARK}", "\"") for right quote.
30594
30595 2000-07-09  Jim Meyering  <meyering@lucent.com>
30596
30597         * m4/jm-macros.m4 (jm_MACROS): Add a test to see if -lm is required
30598         to link seq.  If so, set SEQ_LIBM to -lm.  From Bruno Haible.
30599
30600         * m4/gnu-source.m4 (AC__GNU_SOURCE): New file/macro.
30601         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require it.
30602
30603 2000-07-09  Jim Meyering  <meyering@lucent.com>
30604
30605         * lib/Most files: Update copyright dates to include 2000.
30606
30607 2000-07-08  Jim Meyering  <meyering@lucent.com>
30608
30609         * lib/xgethostname.c (ENAMETOOLONG): Define to an unlikely value
30610         if not defined.
30611         (xgethostname): Remove now-unnecessary #ifdef.
30612         Move declaration of `err' into loop where it's used.
30613
30614 2000-07-05  Paul Eggert  <eggert@twinsun.com>
30615         and Bruno Haible  <haible@clisp.cons.org>
30616
30617         * m4/mbstate_t.m4 (AC_MBSTATE_T_OBJECT): Test for mbstate_t
30618         only if the test for an object-type mbstate_t fails.  This
30619         prevents us from mistakenly reporting that mbstate_t is a
30620         system object type after we "#define mbstate_t int" to work
30621         around its lack.
30622
30623 2000-07-05  Paul Eggert  <eggert@twinsun.com>
30624         and Bruno Haible  <haible@clisp.cons.org>
30625
30626         * lib/quotearg.c (mbrtowc): Declare returned type, since BeOS doesn't.
30627
30628 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
30629
30630         * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Pass a reasonably large buffer
30631         to strerror_r.
30632         Include <ctype.h> for use of isalpha.
30633
30634 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
30635
30636         * lib/xgethostname.c (xgethostname): Protect against the SunOS 5.5 bug
30637         by allocating a larger buffer. Test the gethostname return value for
30638         being >= 0, not == 0, for BeOS.  Don't exhaust memory if gethostname
30639         returns an error and ENAMETOOLONG isn't defined.
30640
30641 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
30642
30643         * lib/quotearg.c (struct quoting_options): Simplify quote_these_too
30644         dimension.
30645
30646 2000-07-04  Jim Meyering  <meyering@lucent.com>
30647
30648         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Use plain old `echo' instead
30649         of the deprecated AC_CHECKING.
30650
30651 2000-07-04  Jim Meyering  <meyering@lucent.com>
30652
30653         * lib/strndup.c: [!HAVE_DECL_STRNLEN]: Declare strnlen.
30654         Reported by Bruno Haible.
30655
30656 2000-07-04  Jim Meyering  <meyering@lucent.com>
30657
30658         * lib/quotearg.c: Make inclusion of <wchar.h> independent of whether
30659         HAVE_MBRTOWC is set.  Required at least for irix-5.6, which
30660         lacks mbrtowc.
30661
30662 2000-07-03  Paul Eggert  <eggert@twinsun.com>
30663
30664         * m4/mbstate_t.m4 (AC_MBSTATE_T_OBJECT): Port to autoconf 2.13.
30665         Add AC_CHECK_HEADERS(stdlib.h), since we use HAVE_STDLIB_H.
30666
30667 2000-07-03  Paul Eggert  <eggert@twinsun.com>
30668         and Bruno Haible  <haible@clisp.cons.org>
30669
30670         * lib/quotearg.c (mbrtowc):
30671         Assign to *pwc, and return 1 only if result is nonzero.
30672         (iswprint): Use ISPRINT when substituting our own mbrtowc.
30673
30674 2000-07-03  Jim Meyering  <meyering@lucent.com>
30675
30676         * m4/check-decl.m4 (AC_CHECK_DECLS): Add strnlen.
30677
30678 2000-07-03  Jim Meyering  <meyering@lucent.com>
30679
30680         * lib/readutmp.h: [HAVE_UTMPX_H]: Include <utmp.h> if HAVE_UTMP_H.
30681         This is necessary to get a definition of e.g., UTMP_FILE on
30682         HP-UX 10.20.
30683         From Bob Proulx.
30684
30685 2000-07-02  Jim Meyering  <meyering@lucent.com>
30686
30687         * m4/mbstate_t.m4: Also define mbstate_t, if necessary.
30688
30689         * m4/chown.m4: Replace each use of AC_SUBST(LIBOBJS)/LIBOBJS=... with
30690         AC_LIBOBJ(function_name).
30691         * m4/chown.m4: Likewise.
30692         * m4/fnmatch.m4: Likewise.
30693         * m4/ftruncate.m4: Likewise.
30694         * m4/getgroups.m4: Likewise.
30695         * m4/getline.m4: Likewise.
30696         * m4/group-member.m4: Likewise.
30697         * m4/jm-macros.m4: Likewise.
30698         * m4/lstat.m4: Likewise.
30699         * m4/malloc.m4: Likewise.
30700         * m4/memcmp.m4: Likewise.
30701         * m4/nanosleep.m4: Likewise.
30702         * m4/putenv.m4: Likewise.
30703         * m4/realloc.m4: Likewise.
30704         * m4/regex.m4: Likewise.
30705         * m4/stat.m4: Likewise.
30706         * m4/strftime.m4: Likewise.
30707
30708 2000-07-02  Jim Meyering  <meyering@lucent.com>
30709
30710         * lib/quotearg.c (mbstate_t): Don't define here.
30711
30712 2000-07-02  Jim Meyering  <meyering@lucent.com>
30713
30714         * lib/nanosleep.c (SIGCONT): Define if not already defined.
30715
30716 2000-07-01  Jim Meyering  <meyering@lucent.com>
30717
30718         * m4/uptime.m4: Put double quotes around use of $cross_compiling.
30719
30720 2000-07-01  Jim Meyering  <meyering@lucent.com>
30721
30722         * m4/ls-mntd-fs.m4: Remove a `FIXME' comment and fix the associated
30723         problem.
30724
30725 2000-07-01  Bruno Haible  <haible@clisp.cons.org>
30726
30727         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Rename BeOS specific
30728         macro from MOUNTED_NEXT_DEV to MOUNTED_FS_STAT_DEV.
30729
30730 2000-07-01  Bruno Haible  <haible@clisp.cons.org>
30731
30732         * lib/mountlist.c: Use MOUNTED_FS_STAT_DEV instead of MOUNTED_NEXT_DEV,
30733         per change in ../m4/ls-mntd-fs.m4.
30734         (read_filesystem_list): Ignore symbolic links.
30735
30736 2000-06-29  Jim Meyering  <meyering@lucent.com>
30737
30738         * lib/same.c: Include <string.h> or <strings.h>, as appropriate,
30739         for declaration of strcmp.
30740
30741         * lib/long-options.c: Include <stdlib.h>, for declaration of exit.
30742
30743         * lib/mountlist.c (fsp_to_string) [HAVE_F_FSTYPENAME_IN_STATFS]:
30744         Avoid warning by casting result to `char *' to remove `const'.
30745
30746 2000-06-28  Jim Meyering  <meyering@lucent.com>
30747
30748         * m4/mbstate_t.m4: Use stdlib.h, not stdio.h.  The latter is not
30749         included by quotearg.c, for which we perform this test.  From
30750         Bruno Haible.
30751
30752 2000-06-27  Bruno Haible  <haible@clisp.cons.org>
30753
30754         * m4/check-decl.m4 (_jm_DECL_HEADERS): Check for utmp.h as well.
30755         * m4/prereq.m4 (jm_PREREQ_READUTMP): Likewise. If either <utmp.h> or
30756         <utmpx.h> exists, put readutmp.o into LIBOBJS.
30757
30758 2000-06-27  Bruno Haible  <haible@clisp.cons.org>
30759
30760         * lib/Makefile.am (libfetish_a_SOURCES): Remove readutmp.c.
30761
30762 2000-06-26  Paul Eggert  <eggert@twinsun.com>
30763
30764         savedir now sets errno on failure and invokes xmalloc to get memory.
30765         Fix a couple of other minor bugs while we're at it.
30766
30767         * lib/savedir.c (<unistd.h>): Do not include; there's no need.
30768         (NAMLEN): Remove macro.
30769         (malloc, realloc): Remove decls.
30770         (stpcpy): Likewise.
30771         ("xalloc.h"): Include.
30772         (NAME_SIZE_DEFAULT): New macro.
30773         (savedir): Use xmalloc / xrealloc to allocate memory.
30774         Use NAME_SIZE_DEFAULT if name_size is negative or overflows to zero.
30775         Skip "" directory entries.
30776         Use strlen to calculate directory entry length, since the old method
30777         is rarely used these days and isn't worth supporting.
30778         Don't use a pointer after freeing it.
30779         Check for integer overflow when calculating allocation size.
30780         Use memcpy to copy entries, instead of stpcpy.
30781         Set errno properly when returning NULL.
30782         Check for readdir error.
30783
30784 2000-06-26  Jim Meyering  <meyering@lucent.com>
30785
30786         * lib/posixtm.c [HAVE_STDLIB_H]: Include stdlib.h, for decl of abort.
30787
30788 2000-06-25  Jim Meyering  <meyering@lucent.com>
30789
30790         * m4/mbstate_t.m4: Include stdio.h before wchar.h to work around
30791         Linux header bug when _XOPEN_SOURCE is defined to 500.
30792
30793 2000-06-25  Bruno Haible  <haible@clisp.cons.org>
30794
30795         * lib/unicodeio.c (print_unicode_char): Work around ansi2knr
30796         deficiency.
30797
30798 2000-06-25  Bruno Haible  <haible@clisp.cons.org>
30799
30800         * lib/getusershell.c (xmalloc, xrealloc): Remove functions.
30801         Include xalloc.h.
30802         Don't include <stdlib.h>.  Don't declare malloc, realloc.
30803
30804 2000-06-24  Jim Meyering  <meyering@lucent.com>
30805
30806         * m4/strerror_r.m4: Revive this file -- to try out an experimental
30807         version of AC_FUNC_STRERROR_R that may work even on BeOS, a system
30808         for which strerror does return char*, but which lacks a conveniently
30809         accessible declaration of the function.  If the compile-test says
30810         strerror_r doesn't work, then resort to a `run'-test that works on
30811         BeOS and segfaults on DEC Unix.
30812
30813 2000-06-24  Jim Meyering  <meyering@lucent.com>
30814
30815         * lib/error.c [!HAVE_DECL_STRERROR_R]: Declare strerror_r.
30816
30817 2000-06-23  Paul Eggert  <eggert@twinsun.com>
30818
30819         * m4/mbstate_t.m4: New file, defining AC_MBSTATE_T_OBJECT.
30820         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Use it.  Add check for iswprint.
30821
30822 2000-06-23  Paul Eggert  <eggert@twinsun.com>
30823
30824         * lib/quotearg.c: Include <wctype.h> after <wchar.h>, for Solaris 2.5.
30825         (mbrtowc, mbstate_t): Define substitutes if
30826         HAVE_MBRTOWC && HAVE_WCHAR_H && !HAVE_MBSTATE_T_OBJECT.
30827         (iswprint): Define to 1 if !defined iswprint && !HAVE_ISWPRINT,
30828         not if ! (HAVE_MBRTOWC && HAVE_WCHAR_H).
30829
30830 2000-06-23  Jim Meyering  <meyering@lucent.com>
30831
30832         * m4/afs.m4: Add missing AC_MSG_RESULT.
30833         Reported by Bruno Haible.
30834
30835         * m4/fsusage.m4: s/AC_MSG_CHECKING/AC_CHECKING/.
30836         Suggestion from Bruno Haible.
30837
30838 2000-06-23  Jim Meyering  <meyering@lucent.com>
30839
30840         * lib/getpass.c: New file, from Bruno Haible.  Required for BeOS.
30841
30842 2000-06-21  Jim Meyering  <meyering@lucent.com>
30843
30844         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add getpass.
30845
30846 2000-06-21  Jim Meyering  <meyering@lucent.com>
30847
30848         * lib/Makefile.am (libfetish_a_SOURCES): Add getstr.c.
30849         (noinst_HEADERS): Add getstr.h.
30850
30851         * lib/getline.c (getstr): Move into a separate file.
30852         * lib/getstr.c (getstr): New file, extracted from getline.c, with
30853         the following changes: new parameter, delim2; both delim[12]
30854         parameters have type `int', not `char'.  The latter would lose
30855         with 8-bit delimiters.
30856         * lib/getstr.h: New file.
30857
30858 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
30859
30860         * lib/xgetcwd.c (xgetcwd): If the required pathname length is smaller
30861         than 1024, return a memory chunk of least possible size, instead
30862         of size PATH_MAX + 2. In the loop, increment the size proportionally.
30863         Use free/xmalloc instead of xrealloc to avoid copying for very long
30864         paths.
30865
30866 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
30867
30868         * lib/path-concat.c (path_concat): Don't access dir[-1] if dir is
30869         the empty string.
30870
30871 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
30872
30873         * lib/canon-host.c (canon_host): Use malloc and memcpy to copy an
30874         address, not strdup.  Include <stdlib.h> and don't declare free().
30875
30876 2000-06-19  Jim Meyering  <meyering@lucent.com>
30877
30878         * lib/getloadavg.c [HAVE_NLIST_H] (NLIST_STRUCT): Define.
30879
30880 2000-06-18  Jim Meyering  <meyering@lucent.com>
30881
30882         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Remove mkdir.
30883
30884         * m4/link-follow.m4 (jm_AC_FUNC_LINK_FOLLOWS_SYMLINK): Change the
30885         `checking whether...' message to be consistent with that of the
30886         lstat test.
30887
30888 2000-06-18  Jim Meyering  <meyering@lucent.com>
30889
30890         * lib/mkdir.c: Remove file, due mainly to copyright incompatibility.
30891         Besides, these days every porting target provides a mkdir function.
30892
30893         * lib/strnlen.c: Include memory.h, string.h, and/or strings.h as
30894         needed. (this snippet comes from src/system.h).
30895
30896 2000-06-16  Bruno Haible  <haible@clisp.cons.org>
30897
30898         * m4/glibc21.m4 (jm_GLIBC21): Define GLIBC21 for Makefiles, not for C.
30899
30900 2000-06-15  Paul Eggert  <eggert@twinsun.com>
30901
30902         * lib/human.c (adjust_value): New function.
30903         (human_readable_inexact): Apply rounding style even when
30904         printing approximate values.
30905
30906 2000-06-14  Paul Eggert  <eggert@twinsun.com>
30907
30908         * lib/human.c (human_readable_inexact): Allow an input block
30909         size that is not a multiple of the output block size, and vice versa.
30910         Reported by Piergiorgio Sartor.
30911
30912 2000-06-14  Paul Eggert  <eggert@twinsun.com>
30913
30914         * lib/getdate.y (get_date): Apply relative times after time
30915         zone indicator, not before.  Reported by Todd A. Jacobs.
30916
30917 2000-06-13  Jim Meyering  <meyering@lucent.com>
30918
30919         * lib/Makefile.am (all-local): Depend on lstat.c and stat.c.
30920
30921         * lib/xstat.in [!HAVE_DECL_FREE]: Declare free in lstat.c.
30922
30923 2000-06-12  Paul Eggert  <eggert@twinsun.com>
30924
30925         * lib/xstat.in: Include <stdlib.h> in lstat, to declare "free".
30926
30927 2000-06-12  Jim Meyering  <meyering@lucent.com>
30928
30929         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Replace with
30930         AC_FUNC_GETLOADAVG from autoconf, and tweak the latter to accept an
30931         optional argument.
30932         * m4/jm-macros.m4: s/AM_FUNC_GETLOADAVG/AC_FUNC_GETLOADAVG/, and supply
30933         the optional argument, `lib'.
30934
30935 2000-06-08  Jim Meyering  <meyering@lucent.com>
30936
30937         * m4/largefile.m4: Remove file (now that it's part of autoconf).
30938
30939 2000-06-04  Paul Eggert  <eggert@twinsun.com>
30940
30941         Rewrite largefile configuration so that we don't need to run
30942         getconf and don't need AC_CANONICAL_HOST.  [I'm leaving the use of
30943         AC_CANONICAL_HOST in configure.in -- jmm]
30944
30945         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS,
30946         AC_SYS_LARGEFILE_SPACE_APPEND): Remove.
30947         (AC_SYS_LARGEFILE_TEST_INCLUDES): New macro.
30948         (AC_SYS_LARGEFILE_MACRO_VALUE): Change arguments from
30949         CODE-TO-SET-DEFAULT to VALUE, INCLUDES, FUNCTION-BODY.
30950         All uses changed.
30951         Instead of inspecting the output of getconf, try to compile the
30952         test program without and with the macro definition.
30953         (AC_SYS_LARGEFILE): Do not require AC_CANONICAL_HOST or check
30954         for getconf.  Instead, check for the needed flags by compiling
30955         test programs.
30956
30957 2000-06-04  Paul Eggert  <eggert@twinsun.com>
30958
30959         * lib/strnlen.c: Include <config.h> if HAVE_CONFIG_H.
30960
30961 2000-06-04  Jim Meyering  <meyering@lucent.com>
30962
30963         * lib/getugroups.c (getugroups): Cast -1 to gid_t, for systems like
30964         SunOS 4.1.4 for which gid_t is an unsigned type.
30965
30966 2000-06-03  Jim Meyering  <meyering@lucent.com>
30967
30968         * m4/prereq.m4 (jm_PREREQ_HUMAN): Use []-quoted list in AC_CHECK_DECLS,
30969         now that autoconf requires that.
30970
30971         * m4/jm-glibc-io.m4: Add a kludge to make autoheader emit the required
30972         #undefs.  E.g., #undef HAVE_DECL_FERROR_UNLOCKED.
30973         Use []-quoted list in AC_CHECK_DECLS, now that autoconf requires that.
30974
30975 2000-06-03  Jim Meyering  <meyering@lucent.com>
30976
30977         * lib/strnlen.c [!HAVE_DECL_MEMCHR]: Declare memchr.
30978
30979 2000-06-03  Bruno Haible  <haible@clisp.cons.org>
30980
30981         * m4/glibc21.m4: New file.
30982         * m4/jm-macros.m4 (jm_MACROS): Call jm_GLIBC21.
30983
30984 2000-06-03  Bruno Haible  <haible@clisp.cons.org>
30985
30986         * lib/Makefile.am (install-exec-local): On systems with glibc-2.1 or
30987         newer, don't install charset.alias.
30988         * lib/config.charset: Change the Linux/glibc rules so they become empty
30989         on glibc-2.1 or newer.
30990
30991 2000-06-02  Jim Meyering  <meyering@lucent.com>
30992
30993         * lib/mountlist.c: Back out last change.  Instead, do this...
30994         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Set the
30995         me_dummy member using the same `ignore'-testing code.
30996         * lib/mountlist.h (ME_DUMMY): Add `autofs' to the list of ignored
30997         fs_type strings.
30998         From Mark D. Roth.
30999
31000 2000-05-29  Jim Meyering  <meyering@lucent.com>
31001
31002         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Ignore
31003         mounts with the `ignore' attribute.  Based on a patch from
31004         Mark D. Roth.
31005
31006 2000-05-28  Jim Meyering  <meyering@lucent.com>
31007
31008         * m4/jm-macros.m4 (AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK): Rename from
31009         jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
31010         * m4/stat.m4: Likewise.
31011         * m4/lstat.m4: Likewise.
31012         * m4/lstat-slash.m4: Remove file (absorbed into autoconf).
31013
31014         * m4/jm-macros.m4 (AC_FUNC_STRERROR_R): Rename from jm_FUNC_STRERROR_R.
31015         * m4/strerror_r.m4: Remove file (absorbed into autoconf).
31016
31017 2000-05-26  Jim Meyering  <meyering@lucent.com>
31018
31019         * m4/uptime.m4: Use `$cross_compiling', not `$ac_cv_prog_cc_cross'.
31020
31021 2000-05-24  Jim Meyering  <meyering@lucent.com>
31022
31023         * m4/prereq.m4: Use []-quoted list in AC_CHECK_MEMBERS, now that
31024         autoconf requires that.
31025         * m4/lib-check.m4: Likewise.
31026         * m4/jm-macros.m4: Likewise.
31027         * m4/strftime.m4: Likewise.
31028
31029         * m4/check-decl.m4 (jm_CHECK_DECLS): Use []-quoted list in
31030         AC_CHECK_DECLS, now that autoconf requires that.
31031
31032 2000-05-22  Jim Meyering  <meyering@lucent.com>
31033
31034         * m4/stat.m4: Require jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
31035         * m4/lstat.m4: Likewise.
31036
31037 2000-05-22  Jim Meyering  <meyering@lucent.com>
31038
31039         * lib/makepath.c: Remove old, now-unnecessary `#ifdef __MSDOS__' block.
31040
31041 2000-05-20  Jim Meyering  <meyering@lucent.com>
31042
31043         * m4/prereq.m4 (jm_PREREQ_HUMAN): New macro.
31044         (jm_PREREQ): Use it.
31045
31046 2000-05-18  Jim Meyering  <meyering@lucent.com>
31047
31048         * lib/hash.c (hash_rehash): Fix a nasty bug: copy the free entry list
31049         back, too, since it may have been modified by allocate_entry.
31050         (hash_delete): Rewrite to use neither the assignment operator
31051         nor the comma operator in an if-expression.
31052
31053 2000-05-15  Paul Eggert  <eggert@twinsun.com>
31054
31055         * lib/closeout.c:
31056         <sys/stat.h>, <sys/types.h>, <unistd.h>, (STDOUT_FILENO):
31057         Remove; no longer needed.
31058         "quotearg.h": Add include.
31059         (file_name): Do not bother to explicitly initialize to NULL; it's less
31060         efficient on some hosts.
31061         (close_stdout_status): Remove test as to whether stdout was already
31062         closed; it breaks for the case "echo x | sort >&-".
31063         Quote file name colons.
31064         Do not assume that _("write error") lacks format strings.
31065
31066 2000-05-15  Jim Meyering  <meyering@lucent.com>
31067
31068         * lib/version-etc.c (version_etc_copyright): Update the copyright
31069         string used in all --version output.
31070
31071 2000-05-14  Jim Meyering  <meyering@lucent.com>
31072
31073         * lib/closeout.c (close_stdout_set_file_name): New function.
31074         (close_stdout_status): Use new file-scoped global.
31075         Return right away if fstat says the stdout file descriptor is invalid.
31076         * lib/closeout.h (close_stdout_set_file_name): Declare.
31077
31078 2000-05-10  Jim Meyering  <meyering@lucent.com>
31079
31080         * lib/closeout.c [default_exit_status]: New file-scoped variable.
31081         (close_stdout_set_status): New function.
31082         * lib/closeout.h (close_stdout_set_status): Declare.
31083
31084 2000-05-09  Jim Meyering  <meyering@lucent.com>
31085
31086         * m4/gettext.m4: Rename this...
31087         * m4/libintl.m4: ...to this.
31088
31089 2000-05-08  Jim Meyering  <meyering@lucent.com>
31090
31091         * lib/long-options.c: Don't include closeout.h.
31092         (parse_long_options): Don't call close_stdout for --version.
31093
31094 2000-05-06  Paul Eggert  <eggert@twinsun.com>
31095
31096         * m4/largefile.m4 (AC_SYS_LARGEFILE): Define _XOPEN_SOURCE to
31097         be 500, instead of _GNU_SOURCE to be 1, to work around glibc
31098         2.1.3 bug.  This avoids a clash when files like regex.c define
31099         _GNU_SOURCE.
31100
31101 2000-05-06  Jim Meyering  <meyering@lucent.com>
31102
31103         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add atexit.
31104         (AC_REPLACE_FUNCS): Add strnlen.
31105
31106         * m4/rmdir-errno.m4 (fetish_FUNC_RMDIR_NOTEMPTY): New macro and file.
31107         * m4/jm-macros.m4: Require fetish_FUNC_RMDIR_NOTEMPTY.
31108
31109         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Save and restore LIBS around
31110         AC_SEARCH_LIBS call for nanosleep.
31111         (LIB_NANOSLEEP): Set and AC_SUBST.
31112
31113 2000-05-06  Jim Meyering  <meyering@lucent.com>
31114
31115         * lib/strnlen.c: Undefine __strnlen and strnlen.
31116         [!weak_alias]: Define __strnlen to strnlen.
31117
31118         * lib/atexit.c: New file, from libiberty.
31119
31120 2000-05-06  Jim Meyering  <meyering@lucent.com>
31121
31122         * lib/closeout.c (close_stdout_status): Also check for errors on the
31123         stderr stream.
31124
31125 2000-05-05  Jim Meyering  <meyering@lucent.com>
31126
31127         * m4/jm-macros.m4 (jm_MACROS): Save and restore LIBS around
31128         AC_SEARCH_LIBS call for clock_gettime.
31129         (LIB_CLOCK_GETTIME): Set and AC_SUBST.
31130
31131         * m4/search-libs.m4: Update from autoconf.
31132
31133         su doesn't work on Solaris 2.6.
31134         * m4/lib-check.m4: When checking for struct spwd.sp_pwdp, also include
31135         <shadow.h>.  Reported by Dragos Harabor.
31136
31137 2000-05-05  Bruno Haible  <haible@clisp.cons.org>
31138
31139         * lib/localcharset.c (get_charset_aliases): Use malloc, realloc and
31140         memcpy instead of xmalloc, xrealloc, path_concat.
31141         (locale_charset): Treat empty environment variables as absent.
31142         (DIRECTORY_SEPARATOR, ISSLASH): New macros.
31143
31144 2000-05-04  Jim Meyering  <meyering@lucent.com>
31145
31146         * lib/getopt.c: Update from glibc.
31147         * lib/obstack.c: Likewise.
31148         * lib/obstack.h: Likewise.
31149         * lib/regex.c: Likewise.  NB: K&R compiler support is dropped for this
31150         file
31151
31152         * lib/regex.h: Likewise.
31153         * lib/strndup.c: Likewise.
31154         * lib/strnlen.c: New file, from glibc.
31155
31156 2000-05-03  Jim Meyering  <meyering@lucent.com>
31157
31158         * m4/check-decl.m4 (AC_CHECK_DECLS): Add strndup.
31159
31160 2000-05-02  Paul Eggert  <eggert@twinsun.com>
31161
31162         * m4/largefile.m4 (AC_SYS_LARGEFILE): Define _GNU_SOURCE if
31163         this is needed to make ftello visible (e.g. glibc 2.1.3).  Use
31164         compile-time test, rather than inspecting host and OS, to
31165         decide whether to define _LARGEFILE_SOURCE.
31166
31167 2000-05-01  Jim Meyering  <meyering@lucent.com>
31168
31169         * m4/fsusage.m4: Use AC_MSG_CHECKING instead of obsolete AC_CHECKING.
31170
31171         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Add BeOS support.
31172         Based on a patch from Bruno Haible.
31173
31174 2000-05-01  Jim Meyering  <meyering@lucent.com>
31175
31176         * lib/full-write.c (full_write): Remove `FIXME' part of comment.
31177
31178 2000-04-29  Jim Meyering  <meyering@lucent.com>
31179
31180         * lib/path-concat.c: Declare strdup only if it's not defined.
31181         * lib/canon-host.c: Likewise.
31182
31183 2000-04-28  Jim Meyering  <meyering@lucent.com>
31184
31185         * lib/rpmatch.c [HAVE_LIMITS_H]: Include limits.h before regex.h to
31186         avoid redefinition warning on some systems (HPUX).  Otherwise, regex.h
31187         is included first, then limits.h is included by locale.h by libintl.h.
31188         From John David Anglin.
31189
31190 2000-04-25  Jim Meyering  <meyering@lucent.com>
31191
31192         * lib/makepath.c (S_IRWXUGO): Define.
31193         (make_path): Always perform explicit chmod if MODE specifies any
31194         of the `special' permission bits.  Prompted by a bug report against
31195         install from Mate Wierdl and Joost van Baal.
31196
31197 2000-04-18  Jim Meyering  <meyering@lucent.com>
31198
31199         * m4/prereq.m4 (jm_PREREQ_GETPAGESIZE): New macro.
31200         (jm_PREREQ): Use it.
31201
31202 2000-04-18  Jim Meyering  <meyering@lucent.com>
31203
31204         * lib/README: New file.
31205
31206         * lib/getpagesize.h [!getpagesize && HAVE_OS_H && B_PAGE_SIZE]: Define
31207         getpagesize.  For BeOS.  Based on a patch from Bruno Haible.
31208
31209 2000-04-17  Jim Meyering  <meyering@lucent.com>
31210
31211         Get it right :-)
31212         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Emit the
31213         actual #define via AH_VERBATIM.  Don't need separate AC_DEFINE.
31214         Suggestion from Akim Demaille.
31215
31216 2000-04-17  Jim Meyering  <meyering@lucent.com>
31217
31218         * lib/strftime.c (my_strftime) [strftime]: Declare strftime here, since
31219         the definition of it to rpl_strftime also defined-away the system's
31220         declaration.
31221
31222 2000-04-15  Jim Meyering  <meyering@lucent.com>
31223
31224         Use `C' to denote so-called `contiguous' files, the same way
31225         that tar does.
31226         * lib/filemode.c (S_ISCTG) [!S_ISCTG && S_IFCTG]: Define.
31227         (ftypelet): Use S_ISCTG.
31228         From Michael Deutschmann.
31229
31230 2000-04-14  Jim Meyering  <meyering@lucent.com>
31231
31232         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Use the one-arg
31233         form of AC_DEFINE.  Otherwise, the #ifndef in AH_VERBATIM gets
31234         clobbered.
31235
31236 2000-04-14  Jim Meyering  <meyering@lucent.com>
31237
31238         * lib/strftime.c (my_strftime) [#ifdef strftime]: Declare strftime.
31239
31240 2000-04-13  Jim Meyering  <meyering@lucent.com>
31241
31242         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Use new
31243         AH_VERBATIM to insert required #ifndef into config.h.in.
31244         Suggestion from Akim Demaille.
31245
31246 2000-04-12  Jim Meyering  <meyering@lucent.com>
31247
31248         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Use AC_CHECK_HEADERS, not
31249         `AC_CHECK_HEADER' to check for locale.h.  Thanks to a report from
31250         Christian Krackowizer.
31251
31252         More code moved from ../configure.in into (jm_CHECK_ALL_TYPES).
31253         * m4/jm-macros.m4 (_GNU_SOURCE): Define.
31254         (AC_SYS_LARGEFILE): Require.
31255         (AM_C_PROTOTYPES): Require.
31256
31257 2000-04-08  Jim Meyering  <meyering@lucent.com>
31258
31259         * lib/Makefile.am (charset.alias): Use t-$@, not $@-t so the DOS 8.3
31260         names don't conflict.  Reported by Eli Zaretskii.
31261
31262 2000-04-07  Jim Meyering  <meyering@lucent.com>
31263
31264         * lib/putenv.c: Move inclusion of errno.h so it follows that of
31265         sys/types.h, to work around system header problems on AIX 3.2.5.
31266         From Bruno Haible.
31267
31268 2000-04-07  Bruno Haible  <haible@clisp.cons.org>
31269
31270         * lib/unicodeio.c (print_unicode_char): Avoid triggering Solaris iconv
31271         bug.  Deal with the different error behavior of Irix iconv.
31272
31273 2000-04-05  Paul Eggert  <eggert@twinsun.com>
31274
31275         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Don't use -n32 on
31276         IRIX if the installer said otherwise.
31277
31278 2000-04-05  Jim Meyering  <meyering@lucent.com>
31279
31280         Portability tweaks required for ultrix4.3.
31281         * m4/check-decl.m4 [!HAVE_UTMPX_H] (headers): Include <utmp.h>.
31282         (jm_CHECK_DECLS): Add getutent to the list of functions.
31283         (_jm_DECL_HEADERS): Add utmpx.h.
31284         From John David Anglin.
31285
31286         * m4/strftime.m4: Back out the 2000-04-02 change.
31287         Instead of that change, simply undefine putenv in the test program.
31288
31289 2000-04-05  Jim Meyering  <meyering@lucent.com>
31290
31291         Portability tweaks required for ultrix4.3.
31292         * lib/readutmp.h [HAVE_UTMPX_H && !HAVE_DECL_GETUTENT]: Declare
31293         getutent.
31294         * lib/readutmp.c: Include sys/types.h before sys/stat.h.
31295         * lib/canon-host.c: Declare strdup.
31296         * lib/path-concat.c: Likewise.
31297         From John David Anglin.
31298
31299 2000-04-04  Jim Meyering  <meyering@lucent.com>
31300
31301         Be more DOS 8.3-friendly.
31302         * lib/ref-add.sin: Renamed from ref-add.sed.in.
31303         * lib/ref-del.sin: Renamed from ref-del.sed.in.
31304         * lib/Makefile.am: Reflect renaming.
31305         Reported by Eli Zaretskii.
31306
31307         Use a temporary file name that won't clash with `charset.alias'
31308         in the DOS 8.3 name space.
31309         * lib/Makefile.am (charset_tmp): Define.
31310         (install-exec-local): Use $(charset_tmp) instead of $(charset_alias)-t.
31311         (uninstall-local): Likewise.
31312         Reported by Eli Zaretskii.
31313
31314 2000-04-03  Jim Meyering  <meyering@lucent.com>
31315
31316         * m4/gettext.m4: Fix typo in comment.
31317
31318         * m4/codeset.m4 (AC_CHECK_HEADERS): Add langinfo.h (moved here from
31319         textutils/configure.in).  Suggestion from Paul Eggert.
31320         (AC_CHECK_FUNCS): Add nl_langinfo.  (also from textutils/configure.in)
31321
31322 2000-04-02  Paul Eggert  <eggert@twinsun.com>
31323
31324         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME): Set TZ environment
31325         variable in the shell rather than using putenv, which isn't
31326         portable.  This avoids the configure-time inter-test dependency
31327         on the potentially-renamed putenv function.
31328
31329 2000-03-30  Paul Eggert  <eggert@twinsun.com>
31330
31331         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Include <sys/stat.h>
31332         before checking struct stat.st_blksize, so that
31333         HAVE_STRUCT_STAT_ST_BLKSIZE is defined correctly.
31334
31335 2000-03-29  Paul Eggert  <eggert@twinsun.com>
31336
31337         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Check for strftime,
31338         since strftime.c uses HAVE_STRFTIME to decide whether to use
31339         the underlying strftime.
31340
31341 2000-03-29  Paul Eggert  <eggert@twinsun.com>
31342
31343         * lib/time/strftime.c (my_strftime): Make sure we call the system
31344         strftime, not ourselves, when invoking the underlying strftime.
31345
31346 2000-03-24  Jim Meyering  <meyering@lucent.com>
31347
31348         * lib/Makefile.am (EXTRA_DIST): Add ref-add.sed.in and ref-del.sed.in.
31349         (charset_alias): Define.
31350         (install-exec-local): Factor out common code.
31351         (uninstall-local): Split lines longer than 80.
31352         (ref-add.sed, ref-del.sed): Remove rules... (do the following instead)
31353         (SUFFIXES): Define.
31354         (.sed.in.sed): New rule.  Don't redirect directly to $@.
31355         (CLEANFILES): Add ref-add.sed and ref-del.sed.
31356
31357 2000-03-19  Bruno Haible  <haible@clisp.cons.org>
31358
31359         * lib/config.charset: Output a line containing "Packages using this
31360         file".
31361         * lib/ref-add.sed.in, lib/ref-del.sed.in: New files.
31362         * lib/Makefile.am (install-exec-local, uninstall-local, ref-add.sed,
31363         ref-del.sed): New rules.
31364
31365 2000-03-17  Jim Meyering  <meyering@lucent.com>
31366
31367         * lib/unicodeio.c (<string.h>): Include only #if HAVE_STRING_H.
31368         Otherwise, include <strings.h>
31369
31370 2000-03-17  Bruno Haible  <haible@clisp.cons.org>
31371
31372         * lib/unicodeio.c (utf8_wctomb): New function.
31373         (print_unicode_char): Pass the Unicode character to iconv in UTF-8
31374         format instead of in UCS-4 with platform dependent endianness.
31375
31376 2000-03-10  Jim Meyering  <meyering@lucent.com>
31377
31378         * m4/lib-check.m4: Look for getspnam in -lgen, too.
31379         From Marco Franzen.
31380
31381 2000-03-07  Paul Eggert  <eggert@twinsun.com>
31382
31383         * lib/savedir.c (savedir): Work even if directory size is
31384         negative; this can happen with some screwy NFS configurations.
31385
31386 2000-03-06  Jim Meyering  <meyering@lucent.com>
31387
31388         * lib/localcharset.c (get_charset_aliases): Don't try to free file_name
31389         if it's NULL (because we ran out of memory).  From Bruno Haible.
31390
31391 2000-03-05  Jim Meyering  <meyering@lucent.com>
31392
31393         * lib/localcharset.c ("path-concat.h"): Include.
31394         (get_charset_aliases): Use path_concat instead of ANSI string
31395         concatenation.
31396
31397         * lib/unicodeio.h (PARAMS): Define.
31398         Use it to guard prototype.
31399
31400 2000-03-04  Jim Meyering  <meyering@lucent.com>
31401
31402         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require AC_C_VOLATILE,
31403         for lib/localcharset.c.
31404
31405 2000-03-04  Jim Meyering  <meyering@lucent.com>
31406
31407         * lib/Makefile.am (install-exec-local): Create $(libdir) before
31408         installing into it.
31409         (uninstall-local): Uncomment this rule so `make distcheck' works
31410         once again.
31411
31412         * lib/unicodeio.c (<errno.h>): Include it.
31413         (errno): Declare if not defined.
31414
31415         * lib/localcharset.c: Add Bruno's comment justifying use of volatile.
31416
31417         * lib/config.charset: New version, incorporating remarks from a linux
31418         i18n mailing list.  From Bruno Haible.
31419
31420 2000-03-04  Bruno Haible  <haible@clisp.cons.org>
31421
31422         * m4/codeset.m4: New file.
31423         * m4/iconv.m4: New file.
31424         * m4/jm-macros.m4 (jm_MACROS): Call jm_LANGINFO_CODESET and jm_ICONV.
31425
31426 2000-03-03  Jim Meyering  <meyering@lucent.com>
31427
31428         * m4/regex.m4: Make sure re_compile_pattern accepts patterns like `{1'.
31429
31430 2000-03-02  Jim Meyering  <meyering@lucent.com>
31431
31432         * m4/timespec.m4: Require AC_HEADER_TIME before the cache check so
31433         the messages come out on separate lines.
31434
31435         * m4/jm-glibc-io.m4 (jm_FUNC_GLIBC_UNLOCKED_IO): Use AC_CHECK_DECLS,
31436         rather than jm_CHECK_DECLARATIONS.
31437         * m4/decl.m4: Remove now-unused file.
31438
31439         * m4/check-decl.m4 (AC_CHECK_DECLS): Add getlogin, ttyname, and
31440         geteuid.
31441
31442 2000-03-02  Jim Meyering  <meyering@lucent.com>
31443
31444         * lib/Makefile.am (EXTRA_DIST): Add config.charset.
31445
31446 2000-03-01  Jim Meyering  <meyering@lucent.com>
31447
31448         * lib/localcharset.c: Guard some #includes with `#if HAVE_...'.
31449         * lib/unicodeio.c: Likewise.
31450
31451 2000-03-01  Bruno Haible  <haible@clisp.cons.org>
31452
31453         * lib/config.charset: New file.
31454         * lib/localcharset.c: New file.
31455         * lib/unicodeio.h, lib/unicodeio.c: New files.
31456         * lib/Makefile.am (DEFS): Add -DLIBDIR=...
31457         (libfetish_a_SOURCES): Add localcharset.c and unicodeio.c.
31458         (noinst_HEADERS): Add unicodeio.h.
31459         (all-local, install-exec-local, charset.alias): New targets.
31460
31461 2000-02-28  Paul Eggert  <eggert@twinsun.com>
31462
31463         * lib/quotearg.c (ALERT_CHAR): New macro.
31464         (quotearg_buffer_restyled): Use it.
31465
31466 2000-02-27  Jim Meyering  <meyering@lucent.com>
31467
31468         * m4/check-decl.m4: Add getenv to the list.
31469
31470 2000-02-27  Jim Meyering  <meyering@lucent.com>
31471
31472         * lib/strtoumax.c: Fix typo in decl of strtoul: s/long long/long/.
31473         Guard declaration of strtoull also with `&& HAVE_UNSIGNED_LONG_LONG'.
31474
31475         * lib/backupfile.c: Guard inclusion of stdlib.h with
31476         `#if HAVE_STDLIB_H', not `#if STDC_HEADERS'.
31477         Declare malloc if needed.
31478
31479         * lib/backupfile.c: Use `#if !HAVE_DECL...' instead of
31480         `#ifndef HAVE_DECL..'
31481         now that autoconf always defines the HAVE_DECL_ symbols.
31482         * lib/human.c: Likewise.
31483         * lib/same.c: Likewise.
31484         * lib/strtoumax.c: Likewise.
31485
31486         * lib/backupfile.c: Arrange for cpp to fail if the configure-time
31487         declaration check was not run.
31488         * lib/hash.c: Likewise.
31489         * lib/human.c: Likewise.
31490         * lib/same.c: Likewise.
31491         * lib/strtoumax.c: Likewise.
31492
31493         * lib/userspec.c (parse_user_spec): If there is no `:' but there is a
31494         `.', then first look up the entire `.'-containing string as a login
31495         name.
31496
31497 2000-02-23  Jim Meyering  <meyering@lucent.com>
31498
31499         * m4/check-decl.m4: Now that we have the new AC_CHECK_DECLS, use it
31500         in place of my hack.
31501
31502 2000-02-18  Paul Eggert  <eggert@twinsun.com>
31503
31504         * lib/getdate.y: Handle two-digit years with leading zeros correctly.
31505         (textint): New typedef.
31506         (parser_control): Member year changed from int to textint.
31507         All uses changed.
31508         (YYSTYPE): Removed; replaced by %union with int and textint members.
31509         (tDAY, tDAY_UNIT, tDAYZONE, tHOUR_UNIT, tID, tLOCAL_ZONE, tMERIDIAN,
31510         tMINUTE_UNIT, tMONTH, tMONTH_UNIT tSEC_UNIT, tSNUMBER, tUNUMBER,
31511         tYEAR_UNIT, tZONE, o_merid): Now of type <intval>.
31512         (tSNUMBER, tUNUMBER): Now of type <textintval>.
31513         (date, number, to_year): Use width of number in digits, not its value,
31514         to determine whether it's a 2-digit year, or a 2-digit time.
31515         (yylex): Store number of digits of numeric tokens.
31516         Reported by John Kendall.
31517
31518         (parser_control): Changed from struct parser_control to typedef (for
31519         consistency).  All uses changed.
31520
31521         (tID): Removed; not used.
31522         (yylex): Return '?' for unknown identifiers, rather than (unused) tID.
31523
31524 2000-02-14  Paul Eggert  <eggert@twinsun.com>
31525
31526         * lib/getpagesize.h (getpagesize): Port to VMS for Alpha;
31527         adapted from changes to grep getpagesize.h by Martin P.J. Zinser.
31528
31529 2000-02-12  Jim Meyering  <meyering@lucent.com>
31530
31531         * lib/userspec.c (ISDIGIT): Define it.
31532         (isdigit): Remove definition.
31533         (is_number): Use ISDIGIT, not isdigit.
31534         <libintl.h>: Include.
31535         (_ and N_): Define.
31536         (parse_user_spec): Mark translatable strings.
31537
31538 2000-02-10  Jim Meyering  <meyering@lucent.com>
31539
31540         With these changes, nanosleep.[ch] are finally enough like the other
31541         lib/* replacement files to compile on a few more losing systems.
31542
31543         * lib/nanosleep.h: Don't include config.h.
31544         Remove prototype from declaration of nanosleep.
31545         (PARAMS): Remove now-unneeded definition.
31546         * lib/nanosleep.c: #undef nanosleep.
31547         (rpl_nanosleep): Rename from nanosleep.
31548
31549 2000-02-10  Jim Meyering  <meyering@lucent.com>
31550
31551         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Rename replacement function from
31552         gnu_nanosleep to rpl_nanosleep.
31553
31554 2000-02-09  Jim Meyering  <meyering@lucent.com>
31555
31556         * m4/lib-check.m4 (jm_LIB_CHECK): Fix typo: check for sp_pwdp in
31557         struct spwd, rather than in struct passwd.  Reported by Gaël Quéri.
31558
31559 2000-02-08  Akim Demaille  <akim@epita.fr>
31560
31561         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Quote square brackets with
31562         `[' and `]' and remove uses of `changequote'.
31563         (AC_SYS_LARGEFILE_MACRO_VALUE): Likewise.
31564         (AC_SYS_LARGEFILE): Likewise.
31565         * m4/gettext.m4 (AM_GNU_GETTEXT): Likewise.
31566         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME): Remove now-unnecessary use
31567         of changequote.
31568         * m4/regex.m4 (jm_INCLUDED_REGEX): Likewise.
31569         * m4/readdir.m4 (jm_FUNC_READDIR): Likewise
31570         * m4/memcmp.m4 (jm_AC_FUNC_MEMCMP): Likewise, and add `int' for main.
31571         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Likewise.
31572
31573 2000-02-05  Jim Meyering  <meyering@lucent.com>
31574
31575         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require most macros.
31576         Remove explicit use of AC_HEADER_TIME.  It is required by
31577         jm_CHECK_TYPE_STRUCT_TIMESPEC.  Using AC_HEADER_TIME and
31578         `AC_REQUIRE'ing jm_CHECK_TYPE_STRUCT_TIMESPEC provoked a but
31579         in autoconf whereby the expansion of the latter ended up preceding
31580         the expansion of its prerequisite, AC_HEADER_TIME.
31581         Reported by Volker Borchert.
31582
31583 2000-02-03  Jim Meyering  <meyering@lucent.com>
31584
31585         * m4/prereq.m4 (jm_PREREQ_READUTMP): Check for utmpxname.
31586
31587 2000-02-03  Jim Meyering  <meyering@lucent.com>
31588
31589         * lib/readutmp.c (read_utmp): Guard with `#ifdef UTMP_NAME_FUNCTION',
31590         rather than with `#if HAVE_UTMPNAME'.
31591
31592 2000-02-02  Jim Meyering  <meyering@lucent.com>
31593
31594         * m4/prereq.m4 (jm_PREREQ_ADDEXT): Fix typo that resulted in no
31595         definition of HAVE_PATHCONF: s/AC_CHECK_FUNC/AC_CHECK_FUNCS/.
31596         Reported by Eli Zaretskii.
31597
31598 2000-02-01  Jim Meyering  <meyering@lucent.com>
31599
31600         * lib/readutmp.h (UT_USER): Add parens.  From Andreas Schwab.
31601
31602 2000-01-31  Jim Meyering  <meyering@lucent.com>
31603
31604         * m4/check-decl.m4 (jm_CHECK_DECLS): Add nanosleep to the list of
31605         functions.  Add the time.h and sys/time.h headers along with the
31606         AC_REQUIRE'ment of AC_HEADER_TIME.
31607
31608 2000-01-31  Jim Meyering  <meyering@lucent.com>
31609
31610         * lib/nanosleep.h (nanosleep): Guard declaration with
31611         `#if ! HAVE_DECL_NANOSLEEP'.
31612         Without this, OFS gets a redeclaration error for rpl_nanosleep, due to
31613         the declaration in that vendor's sys/timers.h.
31614         Reported by Christian Krackowizer.
31615
31616         * lib/quotearg.c (ISASCII): Add #undef and move definition to follow
31617         inclusion of wctype.h to work around Solaris 2.6 namespace pollution.
31618         (ISPRINT): Likewise.
31619         Reported by Tom Tromey.
31620
31621 2000-01-30  Jim Meyering  <meyering@lucent.com>
31622
31623         * m4/lib-check.m4: Clean up some kludgy old shadow password tests.
31624
31625         * m4/prereq.m4 (utmp_includes): Define.
31626         Check for ut_user and ut_name members in both struct utmpx
31627         and struct utmp.
31628
31629 2000-01-30  Jim Meyering  <meyering@lucent.com>
31630
31631         * lib/readutmp.c (extract_trimmed_name): Use UT_USER instead of
31632         hard-coding uses of ->ut_name.  The latter doesn't work with new Linux
31633         header files where only utmpx.ut_user is declared.
31634
31635         * lib/readutmp.h (UT_USER): Define.
31636
31637 2000-01-29  Jim Meyering  <meyering@lucent.com>
31638
31639         * m4/lib-check.m4: New file containing library-related checks from
31640         fileutils and sh-utils (textutils had none).
31641
31642 2000-01-28  Jim Meyering  <meyering@lucent.com>
31643
31644         * m4/perl.m4: Change format of warning message to look more like that
31645         from the missing script.  Suggestion from François Pinard.
31646
31647 2000-01-25  Jim Meyering  <meyering@lucent.com>
31648
31649         * m4/timespec.m4: Require AC_HEADER_TIME, and include sys/time.h as
31650         well as time.h in the compile check.
31651         * m4/nanosleep.m4: Require AC_HEADER_TIME rather than simply using it.
31652         Fix typo in cross-compiling case: s/yes/no/.
31653
31654 2000-01-23  Jim Meyering  <meyering@lucent.com>
31655
31656         * m4/jm-macros.m4: Move df-related tests here from
31657         fileutils/configure.in
31658
31659         * m4/ls-mntd-fs.m4: s/list_mounted_fs/ac_list_mounted_fs/
31660         (jm_LIST_MOUNTED_FILESYSTEMS): Take two parameters.
31661
31662         * m4/fsusage.m4: New file.  Extracted from fileutils/configure.in.
31663         s/space/ac_fsusage_space/.
31664         (jm_FILE_SYSTEM_USAGE): Take two parameters.
31665
31666         * m4/ftruncate.m4: New file (derived from part of
31667         fileutils/configure.in).
31668         * m4/jm-macros.m4 (jm_FUNC_FTRUNCATE): AC_REQUIRE it.
31669         (jm_CHECK_ALL_TYPES): Require AC_HEADER_MAJOR and AC_HEADER_DIRENT.
31670
31671         * m4/jm-macros.m4 (OPTIONAL_BIN_PROGS, OPTIONAL_BIN_ZCRIPTS, MAN):
31672         AC_SUBST these here, rather than just in sh-util/configure.in, so
31673         that the now-shared-by-fileutils-and-textutils lib/Makefile.am are
31674         all the same.
31675         (AM_FUNC_OBSTACK): Add (from fileutils/configure.in).
31676         (AC_CHECK_FUNCS): Merge all checks from fileutils, textutils, sh-utils.
31677         (AM_FUNC_STRTOD): Added (from textutils', sh-utils' configure.in).
31678         (AC_SUBST(POW_LIBM)): Likewise.
31679         (AC_SUBST(DF_PROG)): Moved from fileutils/configure.in.
31680
31681 2000-01-23  Jim Meyering  <meyering@lucent.com>
31682
31683         * lib/Makefile.am (libfetish_a_SOURCES): Remove explicit mention of
31684         obstack.c.
31685
31686 2000-01-22  Jim Meyering  <meyering@lucent.com>
31687
31688         * m4/jm-macros.m4: Call AC_PROG_CC_STDC just before AC_C_CONST.
31689
31690         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Add wctype.h.
31691
31692         * m4/jm-macros.m4 (AC_CHECK_HEADERS): Add checks from fileutils'
31693         configure.in
31694         (AC_CHECK_HEADERS): Likewise for sh-utils.
31695         (AC_CHECK_HEADERS): Likewise for textutils.
31696         Merge the three lists of headers.
31697
31698         * m4/prereq.m4 (jm_PREREQ_ADDEXT): New macro.  Parts moved here
31699         from fileutils' configure.in.
31700
31701         * m4/decl.m4: Remove kludgy `test -z $ac_...AC_CHECK_HEADERS(...)'
31702         code. Moved tests into their own function (_jm_DECL_HEADERS) in
31703         check-decl.m4.
31704
31705         * m4/check-decl.m4: Use #if rather than #ifdef.
31706         Add HAVE_DECL_STRTOUL and HAVE_DECL_STRTOULL.
31707         (jm_CHECK_DECLARATIONS): Add strtoul strtoull.
31708         (_jm_DECL_HEADERS): Define new function.
31709         (jm_CHECK_DECLARATIONS): Require it.
31710
31711 2000-01-22  Jim Meyering  <meyering@lucent.com>
31712
31713         * lib/strtoumax.c: [! HAVE_DECL_STRTOUL]: Declare strtoul.
31714         [! HAVE_DECL_STRTOULL]: Declare strtoull.
31715         Required for some AIX systems.  Reported by Christian Krackowizer.
31716         [TESTING] (main): New function.
31717
31718         1997-10-17  Eli Zaretskii  <eliz@is.elta.co.il>
31719         * lib/dirname.c (dir_name): Support for DOS-style file names with drive
31720         letters.
31721
31722         * lib/quotearg.c [HAVE_WCTYPE_H]: Include <wctype.h> for decl of
31723         iswprint.
31724
31725         * lib/strverscmp.c (ISDIGIT): Define.
31726         (strverscmp): Use ISDIGIT, not isdigit.
31727
31728 2000-01-19  Jim Meyering  <meyering@lucent.com>
31729
31730         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Include <sys/time.h>, too.
31731         Use AC_HEADER_TIME.  Volker Borchert reported that OpenBSD-2.3/sparc
31732         defines `struct timespec' in <sys/time.h>
31733
31734         * m4/c-bs-a.m4: Remove uses of changequote altogether.
31735         Thanks to Akim for explaining.
31736
31737 2000-01-17  Paul Eggert  <eggert@twinsun.com>
31738
31739         * lib/nanosleep.c (nanosleep):
31740         Don't use SA_INTERRUPT to decide whether to call sigaction, as
31741         POSIX.1 doesn't require SA_INTERRUPT and some systems
31742         (e.g. Solaris 7) don't define it.  Use SA_NOCLDSTOP instead;
31743         it's been part of POSIX.1 since day 1 (in 1988).
31744
31745 2000-01-17  Jim Meyering  <meyering@lucent.com>
31746
31747         * lib/interlock: Remove unused file.  Reported by François Pinard.
31748
31749 2000-01-16  Paul Eggert  <eggert@twinsun.com>
31750
31751         * lib/quotearg.c (quotearg_buffer_restyled): Do not quote
31752         alert, backslash, formfeed, and vertical tab unnecessarily in
31753         shell quoting style.
31754
31755 2000-01-16  Jim Meyering  <meyering@lucent.com>
31756
31757         * m4/jm-macros.m4: Require jm_FUNC_GROUP_MEMBER, jm_FUNC_PUTENV,
31758         AM_FUNC_ERROR_AT_LINE, jm_FUNC_GNU_STRFTIME, jm_FUNC_MKTIME,
31759         jm_FUNC_GETGROUPS AC_FUNC_VPRINTF, AC_FUNC_ALLOCA,
31760         AM_FUNC_GETLOADAVG, and jm_SYS_PROC_UPTIME.
31761
31762 2000-01-16  Jim Meyering  <meyering@lucent.com>
31763
31764         * m4/c-bs-a.m4: Use `changequote(<<,>>)', rather than `changequote(, )'
31765         because the latter didn't work.
31766
31767 2000-01-15  Jim Meyering  <meyering@lucent.com>
31768
31769         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add gethostname and getusershell.
31770         (AC_REPLACE_FUNCS): Add memcpy and memset.
31771         Add these, too: stime strcspn stpcpy strstr strtol strtoul.
31772         Add strpbrk.
31773         Add these: euidaccess memcmp mkdir rmdir rpmatch strndup strverscmp.
31774
31775 2000-01-12  Jim Meyering  <meyering@lucent.com>
31776
31777         * m4/prereq.m4 (jm_PREREQ_CANON_HOST): New macro.
31778         (jm_PREREQ): Use it.
31779         (jm_PREREQ_READUTMP): New macro.
31780         (jm_PREREQ): Use it.
31781
31782 2000-01-11  Paul Eggert  <eggert@twinsun.com>
31783
31784         Quote multibyte characters correctly.
31785         * m4/c-bs-a.m4: New file.
31786         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): New macro.
31787         (jm_PREREQ): Use it.
31788
31789 2000-01-11  Paul Eggert  <eggert@twinsun.com>
31790
31791         * m4/uintmax_t.m4: Port to autoconf 2.13.
31792
31793 2000-01-08  Jim Meyering  <meyering@ascend.com>
31794
31795         * m4/strerror_r.m4 (jm_FUNC_STRERROR_R): New file/macro.
31796         * m4/jm-macros.m4 (jm_FUNC_STRERROR_R): Require it.
31797
31798 2000-01-04  Jim Meyering  <meyering@ascend.com>
31799
31800         * m4/d-type.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Rename from
31801         jm_STRUCT_DIRENT_D_TYPE.
31802         * m4/d-ino.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_INO): Rename from
31803         jm_STRUCT_DIRENT_D_INO.
31804         * m4/utimbuf.m4 (jm_CHECK_TYPE_STRUCT_UTIMBUF): Rename from
31805         jm_STRUCT_UTIMBUF.
31806         * m4/jm-macros.m4: Reflect s/jm_STRUCT_/jm_CHECK_TYPE_STRUCT_/
31807         renamings.
31808         * m4/utime.m4: Likewise.
31809
31810         * m4/timespec.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC): New file, macro.
31811         * m4/jm-macros.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC): Require it.
31812
31813 2000-01-03  Paul Eggert  <eggert@twinsun.com>
31814
31815         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Search for nanosleep in -lrt
31816         (for Solaris 7) and in -lposix4 (for Solaris 2.5.1).
31817
31818 2000-01-02  Jim Meyering  <meyering@ascend.com>
31819
31820         * m4/search-libs.m4: Escape `$' in $3 of dnl comment.  I no longer
31821         remember if this is necessary.
31822
31823 1999-12-26  Jim Meyering  <meyering@ascend.com>
31824
31825         * m4/jm-macros.m4: Use it here.
31826         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): New file/macro.
31827
31828 1999-12-23  Jim Meyering  <meyering@ascend.com>
31829
31830         * m4/jm-macros.m4: Check for clock_gettime (moved from
31831         fileutils/configure.in)
31832         Check for gettimeofday.
31833
31834 1999-12-20  Jim Meyering  <meyering@ascend.com>
31835
31836         * m4/strftime.m4: Remove kludge, now that I'm using the fixed
31837         autoconf-2.14a-1999-12-20.
31838
31839 1999-12-19  Jim Meyering  <meyering@ascend.com>
31840
31841         * m4/lstat-slash.m4: New file.
31842         * m4/jm-macros.m4: Use the new macro:
31843         jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
31844
31845 1999-12-07  Jim Meyering  <meyering@ascend.com>
31846
31847         * m4/perl.m4: Require that File::Compare be available, too.
31848         Too many systems seem to lack it.
31849
31850         * m4/strftime.m4: Add checks for most of the cpp macros tested in
31851         GNU's strftime.c.  Prompted by a patch from Paul Eggert.
31852
31853 1999-11-18  Paul Eggert  <eggert@twinsun.com>
31854
31855         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Work around a
31856         problem with the QNX 4.25 shell, which doesn't propagate exit
31857         status of failed commands inside shell assignments.
31858
31859 1999-11-17  Jim Meyering  <meyering@ascend.com>
31860
31861         * m4/gettext.m4: Use new AC_CONFIG_LINKS in place of AC_LINK_FILES.
31862
31863 1999-11-07  Jim Meyering  <meyering@ascend.com>
31864
31865         * m4/getloadavg.m4: Add `, 1, [FIXME]' to each use of AC_DEFINE.
31866
31867 1999-11-06  Jim Meyering  <meyering@ascend.com>
31868
31869         * m4/link-follow.m4 (jm_AC_FUNC_LINK_FOLLOWS_SYMLINK): New file/macro.
31870         * m4/jm-macros.m4 (jm_MACROS): Use it here.
31871
31872 1999-11-05  Jim Meyering  <meyering@ascend.com>
31873
31874         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Move some tests from
31875         configure.in of textutils, fileutils, and sh-utils into this one
31876         (shared between those packages) file.
31877         Use `AC_CHECK_MEMBERS((struct stat.st_blksize))' instead of deprecated
31878         AC_STRUCT_ST_BLKSIZE.
31879
31880 1999-11-03  Jim Meyering  <meyering@ascend.com>
31881
31882         * m4/ssize_t.m4: Remove file.  No longer needed since the new version
31883         of AC_CHECK_TYPE checks includes unistd.h.
31884         * m4/jm-macros.m4: Use straight `AC_CHECK_TYPE(ssize_t, int)'.
31885         Suggestion from Akim Demaille.
31886
31887 1999-10-30  Jim Meyering  <meyering@ascend.com>
31888
31889         * m4/uintmax_t.m4: Require 2.14a.  Remove backslash before backtick in
31890         m4-quoted string.
31891         * m4/ls-mntd-fs.m4: Likewise.
31892         * m4/jm-macros.m4: Likewise.  Also, use AC_TYPE_SSIZE_T instead
31893         * m4/jm-winsz1.m4: Likewise.
31894
31895         * m4/const.m4: Remove file, since the fix made it into the experimental
31896         version of autoconf.
31897         * m4/mktime.m4: Likewise.
31898
31899         * m4/check-type.m4: Remove file, now that the latest version of
31900         AC_CHECK_TYPE takes a third arg to specify additional #includes.
31901
31902         * m4/ssize_t.m4: New file, requires experimental version of autoconf.
31903         * m4/jm-macros.m4: Use new AC_TYPE_SSIZE_T instead of my hacked
31904         AC_CHECK_TYPE.
31905
31906 1999-10-04  Jim Meyering  <meyering@ascend.com>
31907
31908         * m4/jm-macros.m4: Don't require autoconf-2.14.1.
31909
31910 1999-09-22  Paul Eggert  <eggert@twinsun.com>
31911
31912         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Work around GCC
31913         2.95.1 bug with HP-UX 10.20.
31914
31915 1999-09-17  Jim Meyering  <meyering@ascend.com>
31916
31917         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add strdup.
31918         Paul Nevai reported a link failure on a NeXT CUBE with NeXTSTEP 3.3
31919         due to missing strdup (against sh-utils-2.0).
31920
31921 1999-08-29  Jim Meyering  <meyering@ascend.com>
31922
31923         * m4/jm-macros.m4: Require jm_BISON.
31924         * m4/bison.m4: New file.
31925
31926 1999-08-17  Paul Eggert  <eggert@twinsun.com>
31927
31928         * m4/largefile.m4 (AC_SYS_LARGEFILE): Fix typo: missing comma
31929         in value for _FILE_OFFSET_BITS, which broke ports to HP-UX 10.20.
31930
31931 1999-08-05  Jim Meyering  <meyering@ascend.com>
31932
31933         * m4/getline.m4: Rename test file from conftestdata to conftest.data
31934         to avoid conflicts with `conftest' on 8+3 filesystems.
31935         Suggestion from Eli Zaretskii.
31936
31937 1999-08-04  Jim Meyering  <meyering@ascend.com>
31938
31939         * m4/jm-macros.m4: Move a 4-line block of code from the configure.in of
31940         fileutils and sh-utils (textutils's getline test was inadequate).
31941         (AM_FUNC_GETLINE): Run this test.
31942         (AC_CHECK_FUNCS): Check for getdelim.
31943         Reported by Bob Proulx.
31944
31945 1999-08-02  Jim Meyering  <meyering@ascend.com>
31946
31947         * m4/jm-macros.m4: Add a comment.
31948
31949 1999-08-01  Paul Eggert  <eggert@twinsun.com>
31950
31951         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Check whether
31952         <inttypes.h> defines strtoumax as a macro (and not as a
31953         function).
31954
31955 1999-08-01  Paul Eggert  <eggert@twinsun.com>
31956
31957         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Make sure
31958         that we can shift, multiply and divide unsigned long long
31959         values; Ultrix cc can't do it.
31960
31961 1999-08-01  Paul Eggert  <eggert@twinsun.com>
31962
31963         * m4/mktime.m4: New file, which is a preview of what should appear
31964         in the next public autoconf release.
31965
31966 1999-08-01  Paul Eggert  <eggert@twinsun.com>
31967
31968         * m4/lfs.m4: Remove this file.
31969         * m4/largefile.m4: New file.  It contains the old contents of
31970         lfs.m4, except that all names with prefix AC_LFS have been
31971         changed to use the prefix AC_SYS_LARGEFILE instead, to be
31972         compatible with future autoconf versions.  Also, some minor m4
31973         quoting problems have been fixed.
31974
31975 1999-08-01  Paul Eggert  <eggert@twinsun.com>
31976
31977         * m4/gettext.m4 (AM_WITH_NLS): Remove unnecessary lines.
31978         Fix typo: $nls_cv_header_intl was misspelled as $nsl_cv_header_intl.
31979         (AM_GNU_GETTEXT): Fix problem with brackets and m4 quoting,
31980         and simplify the shell code.
31981
31982 1999-08-01  Jim Meyering  <meyering@ascend.com>
31983
31984         * m4/mktime.m4 (AC_FUNC_MKTIME): Undefine to avoid syntax errors from
31985         m4.
31986
31987 1999-07-20  Jim Meyering  <meyering@ascend.com>
31988
31989         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memmove.
31990
31991 1999-07-15  Jim Meyering  <meyering@ascend.com>
31992
31993         * m4/jm-macros.m4 (AC_CHECK_FUNCS): Check for getpagesize.
31994
31995 1999-05-22  Jim Meyering  <meyering@ascend.com>
31996
31997         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memchr.
31998
31999 1999-05-20  Jim Meyering  <meyering@ascend.com>
32000
32001         * m4/search-libs.m4 [AC_SEARCH_LIBS]: Quote name in undefine.
32002         Add a colon after each `then' in case $4 is empty.
32003
32004 1999-05-16  Jim Meyering  <meyering@ascend.com>
32005
32006         * m4/search-libs.m4: New file to override autoconf's AC_SEARCH_LIBS.
32007
32008 1999-05-10  Jim Meyering  <meyering@ascend.com>
32009
32010         * m4/jm-mktime.m4: Reflect renaming: AM_FUNC_MKTIME -> AC_FUNC_MKTIME.
32011
32012         * m4/jm-macros.m4: Require 2.14.1, since we use newly-renamed
32013         AC_FUNC_MKTIME.
32014
32015 1999-05-10  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
32016
32017         * m4/jm-mktime.m4, putenv.m4: Fix typos in config.h comments.
32018
32019 1999-05-04  Paul Eggert  <eggert@twinsun.com>
32020
32021         * m4/lfs.m4 (AC_LFS): -n32, -o32, and -n64 should be in CFLAGS,
32022         not CPPFLAGS, so that linking works correctly in IRIX.
32023
32024 1999-04-30  Paul Eggert  <eggert@twinsun.com>
32025
32026         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add dup2.
32027
32028 1999-04-20  Paul Eggert  <eggert@twinsun.com>
32029
32030         * m4/uintmax_t.m4 (jm_AC_TYPE_UINTMAX_T): Move unsigned long
32031         long check into new jm_AC_TYPE_UNSIGNED_LONG_LONG macro.
32032         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require
32033         jm_AC_TYPE_UNSIGNED_LONG_LONG.
32034         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): New file/macro.
32035
32036         * m4/lfs.m4: Port to AIX and HP-UX.  Support cross-compilation.
32037
32038 1999-04-20  Jim Meyering  <meyering@ascend.com>
32039
32040         * m4/xstrtoumax.m4: Require jm_AC_TYPE_UNSIGNED_LONG_LONG.
32041         AC_REPLACE xstroull if necessary.  From Paul Eggert.
32042         (AC_CHECK_FUNCS): Remove strtoull, strtoumax, strtouq.
32043
32044 1999-04-18  Jim Meyering  <meyering@ascend.com>
32045
32046         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): New file/macro.
32047         * m4/jm-macros.m4: Use it.
32048
32049 1999-04-06  Jim Meyering  <meyering@ascend.com>
32050
32051         * m4/strftime.m4: Remove test for %f.
32052
32053 1999-03-29  Jim Meyering  <meyering@ascend.com>
32054
32055         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): New macro, contains the
32056         superset of the AC_TYPE_* checks in the textutils, fileutils,
32057         and sh-utils, plus AC_TYPE_PID_T.  Paul Eggert suggested adding
32058         AC_TYPE_PID_T.
32059
32060 1999-03-28  Jim Meyering  <meyering@ascend.com>
32061
32062         * m4/jm-macros.m4: Define GNU_PACKAGE here.
32063         Be sure to AC_SUBST it, once again, so that @GNU_PACKAGE@ is
32064         replaced e.g., in the *.sh files of the sh-utils.
32065
32066 1999-03-20  Jim Meyering  <meyering@ascend.com>
32067
32068         * m4/jm-macros.m4: s/jm_WITH_REGEX/jm_INCLUDED_REGEX/.
32069         * m4/regex.m4 (jm_INCLUDED_REGEX): Rename from jm_WITH_REGEX.
32070         Don't depend on AM_GLIBC.  Suggestions from Alain Magloire.
32071
32072 1999-03-19  Jim Meyering  <meyering@ascend.com>
32073
32074         * m4/jm-winsz1.m4 (jm_WINSIZE_IN_PTEM): New macro.
32075
32076 1999-03-12  Jim Meyering  <meyering@ascend.com>
32077
32078         * m4/jm-macros.m4: Use AC_FUNC_SETVBUF_REVERSED.
32079
32080 1999-03-07  Jim Meyering  <meyering@ascend.com>
32081
32082         * m4/jm-glibc-io.m4: Use only those *_unlocked macros that are
32083         declared.
32084
32085 1999-02-17  Jim Meyering  <meyering@ascend.com>
32086
32087         * m4/gettext.m4 (AM_GNU_GETTEXT): Do `changequote' around use of
32088         brackets in macro definition.  From Eli Zaretskii and Alain Magloire.
32089
32090 1999-02-07  Jim Meyering  <meyering@ascend.com>
32091
32092         * m4/group-member.m4: New file -- extracted from sh-utils'
32093         configure.in.
32094
32095         1999-02-05  Eli Zaretskii  <eliz@is.elta.co.il>
32096         * m4/gettext.m4: Support DOS-style d:/foo/bar absolute file names.
32097
32098 1999-02-06  Jim Meyering  <meyering@ascend.com>
32099
32100         * m4/chown.m4: Use `AC_SUBST(LIBOBJS)' since we set LIBOBJS.
32101         * m4/fnmatch.m4: Likewise.
32102         * m4/getgroups.m4: Likewise.
32103         * m4/lstat.m4: Likewise.
32104         * m4/malloc.m4: Likewise.
32105         * m4/putenv.m4: Likewise.
32106         * m4/realloc.m4: Likewise.
32107         * m4/regex.m4: Likewise.
32108         * m4/stat.m4: Likewise.
32109         * m4/strftime.m4: Likewise.
32110         Suggestion from Alain Magloire.
32111
32112         * m4/chown.m4: Use `.$ac_objext', not `.o'.
32113         * m4/fnmatch.m4: Likewise.
32114         * m4/getgroups.m4: Likewise.
32115         * m4/getline.m4: Likewise.
32116         * m4/lstat.m4: Likewise.
32117         * m4/malloc.m4: Likewise.
32118         * m4/memcmp.m4: Likewise.
32119         * m4/putenv.m4: Likewise.
32120         * m4/realloc.m4: Likewise.
32121         * m4/regex.m4: Likewise.
32122         * m4/stat.m4: Likewise.
32123         * m4/strftime.m4: Likewise.
32124         Suggestion from Alain Magloire.
32125
32126         * m4/jm-macros.m4: Actually invoke jm_WITH_REGEX now that it requires
32127         an argument.
32128
32129         * m4/regex.m4: Add a run-time Test for proper operation of
32130         re_compile_pattern.
32131
32132 1999-01-31  Jim Meyering  <meyering@ascend.com>
32133
32134         * m4/getloadavg.m4: Check for locale.h and the function, setlocale.
32135
32136 1999-01-30  Jim Meyering  <meyering@ascend.com>
32137
32138         * m4/check-type.m4: Use 3-arg form of AC_DEFINE.
32139
32140         * m4/jm-mktime.m4: Make this a wrapper around the official
32141         AM_FUNC_MKTIME rather than my private copy, now that the official one
32142         is up to date.
32143         * m4/mktime.m4: Remove file.
32144
32145         * m4/getloadavg.m4: Use 3-arg form of AC_DEFINE.
32146         * m4/uptime.m4: Likewise.
32147         * m4/uintmax_t.m4: Likewise.
32148
32149 1999-01-28  Jim Meyering  <meyering@ascend.com>
32150
32151         * m4/jm-macros.m4: Use jm_AFS.
32152         * m4/afs.m4: New file (from fileutils' configure.in).
32153
32154         * m4/assert.m4: Use the 3-argument forms of AC_DEFINE* macros.
32155         * m4/chown.m4: Likewise.
32156         * m4/d-ino.m4: Likewise.
32157         * m4/d-type.m4: Likewise.
32158         * m4/fnmatch.m4: Likewise.
32159         * m4/getgroups.m4: Likewise.
32160         * m4/gettext.m4: Likewise.
32161         * m4/jm-mktime.m4: Likewise.
32162         * m4/jm-winsz2.m4: Likewise.
32163         * m4/lcmessage.m4: Likewise.
32164         * m4/ls-mntd-fs.m4: Likewise.
32165         * m4/malloc.m4: Likewise.
32166         * m4/memcmp.m4: Likewise.
32167         * m4/putenv.m4: Likewise.
32168         * m4/realloc.m4: Likewise.
32169         * m4/st_mtim.m4: Likewise.
32170         * m4/strftime.m4: Likewise.
32171
32172 1999-01-16  Jim Meyering  <meyering@ascend.com>
32173
32174         * m4/jm-macros.m4 (ARGMATCH_DIE): Define.
32175         (ARGMATCH_DIE_DECL): Define.
32176
32177 1999-01-12  Jim Meyering  <meyering@ascend.com>
32178
32179         * m4/Makefile.am.in: Rewrite to avoid using fmt.
32180         Reported by Lars Hecking.
32181
32182 1999-01-10  Jim Meyering  <meyering@ascend.com>
32183
32184         * m4/fstypename.m4: Use the new 3-arg form of AC_DEFINE instead of my
32185         gross kludge.
32186         * m4/inttypes_h.m4: Likewise.
32187         * m4/lstat.m4: Likewise.
32188         * m4/malloc.m4: Likewise.
32189         * m4/readdir.m4: Likewise.
32190         * m4/realloc.m4: Likewise.
32191         * m4/st_dm_mode.m4: Likewise.
32192         * m4/stat.m4: Likewise.
32193         * m4/utimbuf.m4: Likewise.
32194         * m4/utimes.m4: Likewise.
32195
32196         * m4/check-decl.m4: Use the new 3-arg form of AC_DEFINE instead of the
32197         AC_CHECK_FUNCS hack.  Now, it's still a hack, but at least the
32198         comments in config.h.in are meaningful.
32199
32200         * m4/jm-macros.m4: Require autoconf-2.13 here.
32201
32202         * m4/regex.m4: By default, don't use the included regex.c on systems
32203         with glibc 2.  Suggestion from Uli Drepper.
32204
32205 1999-01-02  Jim Meyering  <meyering@ascend.com>
32206
32207         * m4/jm-macros.m4: Replace strcasecmp and strncasecmp.
32208
32209 1998-12-18  Jim Meyering  <meyering@ascend.com>
32210
32211         * m4/Makefile.am.in (Makefile.am): Simplify rule.
32212         Based on a suggestion from Lars Hecking.
32213
32214 1998-11-16  Paul Eggert  <eggert@twinsun.com>
32215
32216         * m4/lfs.m4 (AC_LFS): Add support for HP-UX 10.20 and HP-UX 11.
32217
32218 1998-11-16  Jim Meyering  <meyering@ascend.com>
32219
32220         * m4/lfs.m4: Double-quote the `uname...` expression.
32221
32222 1998-11-14  Jim Meyering  <meyering@ascend.com>
32223
32224         * m4/lstat.m4: Correct comment.  POSIX does not permit it to succeed.
32225         * m4/stat.m4: Likewise.
32226
32227 1998-11-03  Jim Meyering  <meyering@ascend.com>
32228
32229         * m4/stat.m4: Rewrite to set HAVE_STAT_EMPTY_STRING_BUG.
32230         * m4/lstat.m4: Rewrite to set HAVE_LSTAT_EMPTY_STRING_BUG.
32231
32232 1998-10-18  Jim Meyering  <meyering@ascend.com>
32233
32234         * m4/check-decl.m4 (jm_CHECK_DECL_LOCALTIME_R): Remove macro.
32235
32236 1998-10-17  Jim Meyering  <meyering@ascend.com>
32237
32238         * m4/decl.m4 (jm_CHECK_DECLARATION): Don't hard-code which headers to
32239         include, though we still hard-code the `require'-like AC_CHECK_HEADERS
32240         calls for those previously hard-coded headers.  Instead, take a new
32241         parameter.
32242         (jm_CHECK_DECLARATIONS): Reflect interface change.
32243         * m4/check-decl.m4 (jm_CHECK_DECLS): Likewise.
32244         (jm_CHECK_DECL_LOCALTIME_R): New macro.
32245
32246         * m4/mktime.m4: Test for spring-forward gap before long-running test.
32247
32248 1998-10-14  Jim Meyering  <meyering@ascend.com>
32249
32250         * m4/mktime.m4: Use the more portable "TZ=PST8PDT,M4.1.0,M10.5.0"
32251         instead of "TZ=America/Vancouver".  From Paul Eggert.
32252
32253 1998-10-11  Jim Meyering  <meyering@ascend.com>
32254
32255         * m4/mktime.m4 (jm_AM_FUNC_MKTIME): New file and macro.
32256         This adds a test for a recently added compatibility fix for mktime.c.
32257         * m4/jm-mktime.m4: Require jm_AM_FUNC_MKTIME, not AM_FUNC_MKTIME.
32258
32259 1998-09-27  Jim Meyering  <meyering@ascend.com>
32260
32261         * m4/jm-macros.m4 (jm_MACROS): Require jm_FUNC_FNMATCH.
32262
32263         * m4/fnmatch.m4 (jm_FUNC_FNMATCH): New file/macro.  Extracted from
32264         ../configure.in, including a change from Gordon Matzigkeit to allow
32265         cross-compiling for the Hurd.
32266
32267         * m4/glibc.m4: New file/macro to test for the GNU C Library
32268         versions 1 and 2.  From Gordon Matzigkeit.
32269         Indent.
32270
32271 1998-09-21  Jim Meyering  <meyering@ascend.com>
32272
32273         * m4/chown.m4: Declare locals: before, after.  From Andries Brouwer.
32274
32275 1998-08-18  Paul Eggert  <eggert@twinsun.com>
32276
32277         Port nanosecond-resolution times to UnixWare 2.1.2 and
32278         pedantic Solaris 2.6.
32279
32280         * m4/st_mtim.m4 (AC_STRUCT_ST_MTIM_NSEC): Renamed from
32281         AC_STRUCT_ST_MTIM.
32282         * m4/st_mtim.m4 (AC_STRUCT_ST_MTIM_NSEC):
32283         Generate name of ns member, instead of just 1 or undef.
32284         Allow for UnixWare 2.1.2 and Solaris 2.6 if in pedantic mode.
32285
32286 1998-08-15  Jim Meyering  <meyering@ascend.com>
32287
32288         * m4/ssize_t.m4 (jm_TYPE_SSIZE_T): Remove file.
32289         * m4/check-type.m4: New file.  Replacement for AC_CHECK_TYPE.
32290         * m4/jm-macros.m4: Use the new AC_CHECK_TYPE(ssize_t, int)
32291         instead of jm_TYPE_SSIZE_T.
32292
32293 1998-08-12  Jim Meyering  <meyering@ascend.com>
32294
32295         * m4/st_dm_mode.m4: New file.  From Johan Danielsson.
32296
32297 1998-08-02  Jim Meyering  <meyering@ascend.com>
32298
32299         * m4/st_mtim.m4: Use hack to avoid having to put #undef HAVE_ST_MTIM
32300         in acconfig.h manually.
32301
32302 1998-07-31  Paul Eggert  <eggert@twinsun.com>
32303
32304         * m4/st_mtim.m4: New file.
32305
32306 1998-07-28  Jim Meyering  <meyering@ascend.com>
32307
32308         * m4/utimes.m4: Undef stat.
32309
32310 1998-07-25  Jim Meyering  <meyering@ascend.com>
32311
32312         * m4/utime.m4 (jm_FUNC_UTIME): New file and macro.
32313         * m4/utimes.m4 (jm_FUNC_UTIMES_NULL): New file and macro.
32314
32315 1998-07-09  Manfred Hollstein  <manfred@s-direktnet.de>
32316
32317         * m4/chown.m4 (jm_FUNC_CHOWN): Add a check to verify that the
32318         uid and gid actually remain unchanged.
32319
32320 1998-07-07  Jim Meyering  <meyering@ascend.com>
32321
32322         * m4/jm-glibc-io.m4: Remove fclose_unlocked.
32323
32324 1998-07-04  Jim Meyering  <meyering@ascend.com>
32325
32326         * m4/regex.m4: Use syscmd, ifelse, and sysval.  Mainly as an exercise
32327         to prove that this macro can be used in packages without regex.c.
32328
32329 1998-07-04  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
32330
32331         * m4/gettext.m4 (AM_WITH_NLS): Remove intl/libintl.h if <libintl.h>
32332         is to be used.
32333
32334 1998-07-03  Jim Meyering  <meyering@ascend.com>
32335
32336         * m4/gettext.m4: Add -lintl if it's found to be necessary.
32337
32338         * m4/gettext.m4: New file -- from gettext-0.10.35.
32339         * m4/lcmessage.m4: Likewise.
32340         * m4/progtest.m4: Likewise.
32341
32342         * m4/regex.m4 (jm_WITH_REGEX): New file and macro.
32343         * m4/jm-macros.m4: Require the new macro.
32344
32345 1998-06-29  Jim Meyering  <meyering@ascend.com>
32346
32347         * m4/fstypename.m4: Include sys/param.h.  NetBSD 1.3.1 requires this
32348         for the definition of NGROUPS (used in a system header included
32349         by sys/mount.h).
32350
32351 1998-06-28  Jim Meyering  <meyering@ascend.com>
32352
32353         * m4/ls-mntd-fs.m4: New file.
32354         * m4/fstypename.m4: New file.
32355
32356         * m4/jm-macros.m4: Require the new macro.
32357         * m4/jm-glibc-io.m4: New file.
32358
32359 1998-05-19  Jim Meyering  <meyering@ascend.com>
32360
32361         * m4/jm-macros.m4: Add jm_FUNC_LCHOWN.
32362         * m4/lchown.m4: New file.
32363
32364         * m4/Makefile.am.in: New file.
32365         * m4/Makefile.am (Makefile.am): Depend on Makefile.am.in.
32366
32367 1998-05-14  Jim Meyering  <meyering@ascend.com>
32368
32369         * m4/Makefile.am (EXTRA_DIST): Add them.
32370         * m4/jm-macros.m4: New file.
32371         * m4/utimbuf.m4: New file.
32372
32373 1998-05-12  Jim Meyering  <meyering@ascend.com>
32374
32375         * m4/Makefile.am (EXTRA_DIST): Add isc-posix.m4.
32376
32377 1998-05-11  Jim Meyering  <meyering@ascend.com>
32378
32379         * m4/isc-posix.m4: New file.
32380
32381 1998-05-10  Jim Meyering  <meyering@ascend.com>