* lib/xalloc.h (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): Move
[gnulib.git] / ChangeLog
1 2006-11-07  Paul Eggert  <eggert@cs.ucla.edu>
2
3         * lib/xalloc.h (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): Move
4         definitions up, to avoid colliding with change below.
5         (static_inline) [HAVE_INLINE]: New macro.
6         (xnmalloc, xnrealloc, x2nrealloc, xcharalloc):
7         Provide extern decls when !HAVE_INLINE.  Do not define unless
8         static_inline is defined, either by us or by xmalloc.c.  Use
9         static_inline rather than static inline.
10         (XCALLOC): Optimize sizeof(T) = 1 case.
11         * lib/xmalloc.c (static_inline) [!HAVE_INLINE]: New macro.
12
13 2006-11-07  Bruno Haible  <bruno@clisp.org>
14
15         * lib/xalloc.h (XNMALLOC): Restore optimization of sizeof(T) = 1 case.
16         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Require gl_INLINE instead of
17         AC_C_INLINE.
18         * modules/xalloc (Files): Add m4/inline.m4.
19
20 2006-11-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
21
22         * README: Fix typo.
23         * doc/gnulib.texi (Miscellaneous Notes): Likewise, rename...
24         (Miscellanous Notes): ...from this.
25
26 2006-11-07  Paul Eggert  <eggert@cs.ucla.edu>
27
28         * m4/flexmember.m4 (AC_C_FLEXIBLE_ARRAY_MEMBER):
29         Mention that offsetof should be used instead of sizeof.
30         From Bruno Haible.
31
32 2006-11-07  Bruno Haible  <bruno@clisp.org>
33
34         * lib/w32spawn.h (prepare_spawn): Use XNMALLOC instead of xmalloc.
35
36 2006-11-06  Paul Eggert  <eggert@cs.ucla.edu>
37
38         Simplify xmalloc expressions. Add overflow check in xmalloc arguments.
39         * lib/gl_anyavltree_list2.h (create_subtree_with_contents):
40         (gl_tree_create, gl_tree_add_first, gl_tree_add_last):
41         (gl_tree_add_before, gl_tree_add_after):
42         Use XMALLOC instead of xmalloc, and XCALLOC instead of xzalloc.
43         * lib/gl_anyhash_list2.h (hash_resize): Likewise.
44         * lib/gl_anylinked_list2.h (gl_linked_create_empty, gl_linked_create):
45         (gl_linked_add_first, gl_linked_add_last, gl_linked_add_before):
46         (gl_linked_add_after, gl_linked_add_at): Likewise.
47         * lib/gl_anyrbtree_list2.h (create_subtree_with_contents):
48         (gl_tree_create, gl_tree_add_first, gl_tree_add_last):
49         (gl_tree_add_before, gl_tree_add_after): Likewise.
50         * lib/gl_anytree_list2.h (gl_tree_create_empty): Likewise.
51         * lib/gl_anytree_oset.h (gl_tree_create_empty): Likewise.
52         * lib/gl_anytreehash_list1.h (add_to_bucket): Likewise.
53
54 2006-11-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
55
56         * lib/gl_oset.h: Use C comment style, not C++ comment style.
57
58 2006-11-06  Bruno Haible  <bruno@clisp.org>
59
60         * m4/inline.m4: New file.
61         * m4/gl_list.m4 (gl_LIST): Require gl_INLINE.
62         * modules/list (Files): Add m4/inline.m4.
63         * modules/oset (Files): Likewise.
64
65 2006-11-06  Paul Eggert  <eggert@cs.ucla.edu>
66
67         * lib/idcache.c: Include <stddef.h>, for offsetof.
68         (struct userid.name): Change from char * to a flexible array member.
69         All uses changed.
70         * modules/idcache (Depends-on): Add flexmember.
71
72         * MODULES.html.sh (Core language properties): New module flexmember.
73         * modules/flexmember, m4/flexmember.m4: New files.
74
75         * lib/xalloc.h (xnmalloc, xnrealloc, x2nrealloc): Now static
76         inline functions that are identical with the old xnmalloc_inline,
77         xnrealloc_inline, x2nrealloc_inline of lib/xmalloc.c.  This is so
78         that we can avoid some unnecessary integer multiplications and
79         divisions in the common case where the element size is known at
80         compile time.
81         (XNMALLOC) [HAVE_INLINE]: Remove special case, which is no longer
82         needed.
83         (xnboundedmalloc): Remove.
84         (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): Use lower-case letters for
85         arguments, for consistency with rest of this header.
86         (xcharalloc): Rewrite using XNMALLOC.
87         * lib/xmalloc.c (xnmalloc_inline, xnmalloc, xnrealloc_inline):
88         (xnrealloc, x2nrealloc_inline, x2nrealloc): Remove.  The *_inline
89         versions have been moved to lib/xalloc.h and renamed to be the
90         non-*_inline versions.
91         (xmalloc, xrealloc): Implement without reference to the xnmalloc
92         and xnrealloc functions, since those functions are now inline and
93         now call us.
94         (x2realloc): Invoke x2realloc, not x2realloc_inline, to accommodate
95         renaming described above.
96         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Remove AC_C_INLINE since
97         xmalloc.c no longer uses inline directly.  gl_PREREQ_XALLOC now
98         captures the dependency in AC_C_INLINE.
99
100         New module canonicalize-lgpl, proposed by Charles Wilson in
101         <http://lists.gnu.org/archive/html/bug-gnulib/2006-11/msg00020.html>
102         with a few small changes afterwards.
103         * MODULES.html.sh (File system functions): New module
104         canonicalize-lgpl.
105         * lib/canonicalize.h: Add comments for canonicalize_filename_mode
106         and canonicalize_file_name.
107         * lib/canonicalize-lgpl.c, m4/canonicalize-lgpl.m4:
108         * modules/canonicalize-lgpl: New files.
109
110 2006-11-05  Bruno Haible  <bruno@clisp.org>
111
112         * gnulib-tool (func_import, func_create_testdir): Create directories
113         also for files in subdirectories of lib/.
114
115 2006-11-05  Bruno Haible  <bruno@clisp.org>
116
117         * lib/gl_array_list.c (gl_array_iterator_next): Make pointer decrement
118         ANSI C compliant.
119
120 2006-11-03  Bruno Haible  <bruno@clisp.org>
121
122         Simplify xmalloc expressions. Add overflow check in xmalloc arguments.
123         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Require AC_C_INLINE.
124         * lib/xalloc.h (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): New macros.
125         (xnboundedmalloc): New inline function.
126         * lib/classpath.c (new_classpath): Use XNMALLOC instead of xmalloc.
127         * lib/clean-temp.c (create_temp_dir): Use XNMALLOC, XMALLOC instead of
128         xmalloc.
129         * lib/concatpath.c (concatenated_pathname): Use XNMALLOC instead of
130         xmalloc.
131         * lib/fatal-signal.c (at_fatal_signal): Use XNMALLOC instead of xmalloc.
132         * lib/findprog.c (find_in_path): Use XNMALLOC instead of xmalloc.
133         * lib/gl_array_list.c (gl_array_create_empty): Use XMALLOC instead of
134         xmalloc.
135         (gl_array_create): Use XNMALLOC, XMALLOC instead of xmalloc.
136         * lib/gl_array_oset.c (gl_array_create_empty): Use XNMALLOC instead of
137         xmalloc.
138         * lib/gl_avltree_oset.c (gl_tree_add_first, gl_tree_add_before,
139         gl_tree_add_after): Use XMALLOC instead of xmalloc.
140         * lib/gl_carray_list.c (gl_carray_create_empty): Use XMALLOC instead of
141         xmalloc.
142         (gl_carray_create): Use XNMALLOC, XMALLOC instead of xmalloc.
143         * lib/gl_rbtree_oset.c (gl_tree_add_first, gl_tree_add_before,
144         gl_tree_add_after): Use XMALLOC instead of xmalloc.
145         * lib/gl_sublist.c (gl_sublist_create): Use XMALLOC instead of xmalloc.
146         * lib/pagealign_alloc.c (new_memnode): Use XMALLOC instead of xmalloc.
147         * lib/sh-quote.c (shell_quote_argv): Use XNMALLOC instead of xmalloc.
148         * lib/xvasprintf.c (xstrcat): Use XNMALLOC instead of xmalloc.
149
150 2006-11-03  Bruno Haible  <bruno@clisp.org>
151
152         * lib/c-ctype.h [C++]: Define functions without name mangling.
153         * lib/fwriteerror.h [C++]: Likewise.
154         * lib/gcd.h [C++]: Likewise.
155         * lib/linebreak.h [C++]: Likewise.
156
157 2006-11-03  Paul Eggert  <eggert@cs.ucla.edu>
158
159         * lib/canonicalize.h: (canonicalize_mode_t, CAN_EXISTING):
160         (CAN_ALL_BUT_LAST, CAN_MISSING, canonicalize_filename_mode):
161         Define only if PROVIDE_CANONICALIZE_FILENAME_MODE is defined.
162         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME):
163         Check for functions and headers just once.
164         Check for declaration of canonicalize_file_name.
165         Define PROVIDE_CANONICALIZE_FILENAME_MODE.
166
167 2006-11-02  Charles Wilson  <cygwin@cwilson.fastmail.fm>
168
169         * gnulib-tool (func_import): Fix typo in actioncmd.
170
171 2006-11-02  Bruno Haible  <bruno@clisp.org>
172
173         * gnulib-tool (func_get_automake_snippet): Interpret a backslash-
174         newline sequence in the Makefile.am snippet as a space, like "make"
175         does.
176         Reported by Roger Persson <perrog@gmail.com>.
177
178 2006-11-01  Bruno Haible  <bruno@clisp.org>
179
180         * m4/strcase.m4 (gl_FUNC_STRNCASECMP): Check whether strncasecmp is
181         already declared in <string.h>.
182         * lib/strcase.h (strncasecmp): Don't declare it if yes.
183
184 2006-11-01  Bruno Haible  <bruno@clisp.org>
185
186         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Don't define strcasecmp here.
187         * lib/strcase.h: Include <string.h>.
188         (strcasecmp): Define to rpl_strcasecmp here.
189
190 2006-11-01  Bruno Haible  <bruno@clisp.org>
191
192         * lib/printf-parse.c (PRINTF_PARSE): Cast malloc/realloc results.
193
194 2006-11-01  Eric Blake  <ebb9@byu.net>
195
196         * lib/mkstemp-safer.c (mkstemp_safer): Allow C++ compilation.
197
198         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Allow C++ configuration.
199
200 2006-10-29  Bruno Haible  <bruno@clisp.org>
201
202         Make it compile in C++ mode.
203         * lib/full-write.c (full_rw): Add a cast.
204
205 2006-11-01  Bruno Haible  <bruno@clisp.org>
206
207         * gnulib-tool (func_get_automake_snippet): Change sed_combine_lines to
208         be POSIX compliant.
209         Reported by Roger Persson <perrog@gmail.com>.
210
211 2006-11-01  Eric Blake  <ebb9@byu.net>
212
213         * lib/getopt_.h: Fix comments.
214
215 2006-10-31  Eric Blake  <ebb9@byu.net>
216
217         * modules/tmpdir (Depends-on): Add sys_stat.
218         * modules/mkdtemp (Depends-on): Add tempname, drop unistd.
219         * lib/mkdtemp.c (gen_tempname): Remove; tempname covers this.
220         * lib/tmpdir.c (S_ISDIR): Simplify, thanks to sys_stat.
221         * m4/mkdtemp.m4 (gl_PREREQ_MKDTEMP): Simplify, thanks to
222         tempname.
223
224 2006-10-31  Paul Eggert  <eggert@cs.ucla.edu>
225
226         Avoid some C++ diagnostics reported by Bruno Haible.
227         * lib/quotearg.c (clone_quoting_options): Use xmemdup rather than
228         xmalloc.
229         (quotearg_alloc): Use xcharalloc rather than xmalloc.
230         (struct slotvec): Move to top level.
231         (quotearg_n_options): Rewrite to avoid xmalloc.
232         * lib/xalloc.h (xcharalloc): New function.
233         * (xrealloc, xnrealloc, x2realloc, x2nrealloc, xmemdup):
234         [defined __cplusplus]: Add function template that provides result
235         type propagation.  This part of the change is from Bruno Haible.
236
237 2006-10-29  Bruno Haible  <bruno@clisp.org>
238
239         Make it compile in C++ mode.
240         * lib/striconv.c (mem_cd_iconv): Cast malloc/realloc result.
241         * lib/strnlen1.c (strnlen1): Cast memchr result.
242         * lib/mbchar.h (mb_copy): Rename arguments to 'new_mbc', 'old_mbc'.
243         * lib/clean-temp.c (string_equals, string_hash): Add casts.
244         (create_temp_dir): Rename local variable 'template'.
245         (compile_csharp_using_sscli): Add cast.
246         * lib/fatal-signal.c (at_fatal_signal): Cast xmalloc result.
247         * lib/findprog.c (find_in_path): Likewise.
248         * lib/linebreak.c (mbs_width_linebreaks): Cast malloc result.
249         * lib/wait-process.c (register_slave_subprocess): Likewise.
250
251 2006-10-22  Bruno Haible  <bruno@clisp.org>
252
253         * modules/tsearch: New file.
254         * lib/tsearch.h: New file.
255         * lib/tsearch.c: New file, from glibc-2.5 with small modifications.
256         * m4/tsearch.m4: New file.
257         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add tsearch.
258
259 2006-10-29  Eric Blake  <ebb9@byu.net>
260
261         * lib/arcfour.c: Assume config.h.
262         * lib/arctwo.c: Likewise.
263         * lib/base64.c: Likewise.
264         * lib/check-version.c: Likewise.
265         * lib/crc.c: Likewise.
266         * lib/des.c: Likewise.
267         * lib/gc-gnulib.c: Likewise.
268         * lib/gc-libgcrypt.c: Likewise.
269         * lib/gc-pbkdf2-sha1.c: Likewise.
270         * lib/getaddrinfo.c: Likewise.
271         * lib/getdelim.c: Likewise.
272         * lib/getline.c: Likewise.
273         * lib/hmac-md5.c: Likewise.
274         * lib/hmac-sha1.c: Likewise.
275         * lib/iconvme.c: Likewise.
276         * lib/md2.c: Likewise.
277         * lib/md4.c: Likewise.
278         * lib/memxor.c: Likewise.
279         * lib/read-file.c: Likewise.
280         * lib/readline.c: Likewise.
281         * lib/rijndael-alg-fst.c: Likewise.
282         * lib/rijndael-api-fst.c: Likewise.
283         * lib/xgetdomainname.c: Likewise.
284
285 2006-10-28  Eric Blake  <ebb9@byu.net>
286
287         * lib/xstrndup.c: Assume config.h.
288
289 2006-10-27  Paul Eggert  <eggert@cs.ucla.edu>
290
291         Move stat.h-substitute stuff from lib/stat-macros.h to lib/stat_.h.
292         stat-macros.h is now for our own macros, whereas stat_h is for
293         macros in the <sys/stat.h> name space.
294         * lib/stat-macros.h: Remove copyright notice, as this file is now tiny.
295         (STAT_MACROS_H): Remove.
296         (S_IFMT, S_ISBLK, S_ISCHR, S_ISDIR, S_ISFIFO, S_ISLNK, S_ISNAM):
297         (S_ISMPB, S_ISMPC, S_ISNWK, S_ISREG, S_ISSOCK, S_ISDOOR, S_ISPORT):
298         (S_TYPEISMQ, S_TYPEISTMO, S_TYPEISSEM, S_TYPEISSHM, S_ISCTG, S_ISOFD):
299         (S_ISOFL, S_ISWHT, S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IRGRP):
300         (S_IROTH, S_IWUSR, S_IWGRP, S_IWOTH, S_IXUSR, S_IXGRP, S_IXOTH):
301         (S_IRWXU, S_IRWXG, S_IRWXO, S_IXUGO, S_IRWXUGO):
302         Move these macros to ...
303         * lib/stat_.h: here.  Don't include stat-macros.h.
304         * lib/canonicalize.c: Don't include stat-macros.h.
305         * lib/chown.c: Likewise.
306         * lib/euidaccess.c: Likewise.
307         * lib/file-type.c: Likewise.
308         * lib/filemode.c: Likewise.
309         * lib/glob.c: Likewise.
310         * lib/isapipe.c: Likewise.
311         * lib/lchown.c: Likewise.
312         * lib/lstat.c: Likewise.
313         * lib/mkdir-p.c: Likewise.
314         * lib/rmdir.c: Likewise.
315         * m4/lchown.m4 (gl_FUNC_LCHOWN): Don't require gl_STAT_MACROS.
316         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Don't check for io.h
317         unless mkdir isn't declared, to speed up 'configure'.
318         Always create sys/stat.h, since it's unlikely any real sys/stat.h
319         would define all the S_* symbols.
320         * modules/canonicalize (Depends-on):
321         Depend on sys_stat, not stat-macros.
322         * modules/chown: Likewise.
323         * modules/euidaccess: Likewise.
324         * modules/filemode: Likewise.
325         * modules/file-type: Likewise.
326         * modules/glob: Likewise.
327         * modules/isapipe: Likewise.
328         * modules/lchown: Likewise.
329         * modules/lstat: Likewise.
330         * modules/mkancesdirs: Likewise.
331         * modules/rmdir: Likewise.
332         * modules/mkdir-p (Depends-on): Also depend on sys_stat.
333         * modules/modechange: Likewise.
334         * modules/stat-macros (Files): Remove m4/stat-macros.m4.
335         (configure.ac): Remove gl_STAT_MACROS.
336         * modules/sys_stat (Depends-on): Remove stat-macros.
337
338 2006-10-27  Bruno Haible  <bruno@clisp.org>
339
340         * m4/signed.m4: Remove file.
341         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_ARGS_: Remove bh_C_SIGNED
342         invocation.
343         * modules/vasnprintf (Files): Remove m4/signed.m4.
344
345 2006-10-27  Bruno Haible  <bruno@clisp.org>
346
347         Update to GNU gettext 0.16.
348         * modules/gettext (Files): Add m4/intl.m4, m4/intldir.m4. Remove
349         m4/inttypes-h.m4, m4/signed.m4.
350         * m4/gettext.m4: Update to GNU gettext 0.16.
351         * m4/intl.m4: New file, from GNU gettext.
352         * m4/intldir.m4: New file, from GNU gettext.
353         * config/srclist.txt: Update
354
355 2006-10-27  Eric Blake  <ebb9@byu.net>
356
357         * MODULES.html.sh: Document tempname.
358         * modules/mkstemp (Depends-on): Add tempname, and drop transitive
359         dependencies.
360         (Files): Move lib/tempname.c...
361         * modules/tempname: ...to this new module.
362         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Remove tempname checks.
363         (gl_PREREQ_TEMPNAME): Move...
364         * m4/tempname.m4: ...to this new file.
365         * lib/mkstemp.c (includes) [!_LIBC]: Use tempname.h.
366         * modules/sys_stat (Depends-on): Add stat-macros.
367         * lib/stat_.h (includes): Pick up stat macros.
368         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Replace <sys/stat.h>
369         if stat macros are broken.
370         * lib/tempname.c (includes): No need to include "stat-macros.h".
371         (__gen_tempname) [!_LIBC]: Expose as gen_tempname.
372         (direxists, __path_search) [!_LIBC]: Don't compile these in
373         gnulib; the tmpdir module covers that.
374         * lib/tempname.h: New file.
375
376 2006-10-26  Paul Eggert  <eggert@cs.ucla.edu>
377
378         * COPYING: Explain how gnulib-tool converts licence headers.
379         Almost all wording by Eric Blake.
380
381 2006-10-25  Paul Eggert  <eggert@cs.ucla.edu>
382
383         * lib/mbchar.h (is_basic_table): Make read-only.
384         * lib/mbchar.c (is_basic_table): Likewise.
385         Reported by John Darrington.
386
387 2006-10-25  Bruno Haible  <bruno@clisp.org>
388
389         * lib/progname.h (set_program_name): Undefine before defining.
390
391 2006-10-25  Bruno Haible  <bruno@clisp.org>
392
393         * lib/gettext.h (_LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS): Define to
394         false for non-gcc C++ compilers.
395         Reported by Nelson H. F. Beebe <beebe@math.utah.edu>.
396
397 2006-10-24  Bruno Haible  <bruno@clisp.org>
398
399         * lib/striconv.c (mem_cd_iconv, str_cd_iconv): Treat all non-GNU
400         iconv implementations like Irix iconv.
401
402 2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
403
404         * modules/vararrays: New file.
405         * m4/vararrays.m4: New file, taken from diffutils.
406         * MODULES.html.sh: New module vararrays.
407
408 2006-10-24  Karl Berry  <karl@gnu.org>
409
410         * doc/gnulib-intro.texi: --- instead of --; non-naive naive.
411         Don't call GNU Unix.
412
413 2006-10-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
414
415         * users.txt: Add Libtool.
416
417         Sync from Libtool:
418
419         2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
420
421         * lib/argz.c: Remove check for HAVE_CONFIG_H, to conform
422         to gnulib's policy of including config.h unconditionally.
423
424 2006-10-24  Bruno Haible  <bruno@clisp.org>
425
426         * modules/wcwidth (Files): Add m4/wint_t.m4.
427         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Require gt_TYPE_WINT_T.
428         * lib/wcwidth.h (iswprint): Use 'int' if 'wint_t' is not defined.
429
430 2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
431
432         * lib/getdate.y (yyerror): Make the arguments pointer-to-const,
433         to pacify GCC with some -W flags enabled.  Problem reported by
434         Bruno Haible.
435
436 2006-10-24  Jim Meyering  <jim@meyering.net>
437
438         * MODULES.html.sh: Remove uinttostr.  It's not a module.
439         Reported by Karl Berry.
440
441 2006-10-23  Bruno Haible  <bruno@clisp.org>
442
443         * lib/fts.c (fts_build): Move variable declaration, for C89 compliance.
444
445 2006-10-24  Bruno Haible  <bruno@clisp.org>
446
447         * lib/gl_list.h: Use C comment style, not C++ comment style.
448
449 2006-10-23  Eric Blake  <ebb9@byu.net>
450
451         * lib/getaddrinfo.c (includes): Add missing include.
452
453 2006-10-23  Bruno Haible  <bruno@clisp.org>
454             Paul Eggert  <eggert@cs.ucla.edu>
455
456         Ability to rename obstack_free.
457         * lib/obstack.h (__obstack_free): New macro. Declare instead of
458         obstack_free.
459         (obstack_free): Invoke the __obstack_free macro.
460         * lib/obstack.c (obstack_free): Use __obstack_free macro.
461
462 2006-10-23  Bruno Haible  <bruno@clisp.org>
463             Paul Eggert  <eggert@cs.ucla.edu>
464
465         * lib/argp.h (argp_parse, __argp_parse): Comment out the identifiers
466         __argc, __argv from the declaration. (They are defined as macros on
467         mingw.)
468
469 2006-10-22  Bruno Haible  <bruno@clisp.org>
470
471         * doc/gnulib-intro.texi: New file.
472         * doc/gnulib.texi: Include it.
473
474 2006-10-21  Bruno Haible  <bruno@clisp.org>
475
476         * doc/gnulib.texi: Split the chapter "Gnulib" into 3 chapters
477         "Introduction", "Miscellanous Notes", "Particular Modules".
478
479 2006-10-21  Bruno Haible  <bruno@clisp.org>
480
481         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
482         Change mostlyclean-local rule to avoid sh syntax error from bash
483         versions 2.00..2.05 when $(MOSTLYCLEANDIRS) is empty.
484
485 2006-10-23  Jim Meyering  <jim@meyering.net>
486
487         * lib/getaddrinfo.c (getnameinfo): Use new lightweight uinttostr,
488         in place of snprintf.
489
490         * modules/inttostr (Files): Add lib/uinttostr.c.
491         * lib/uinttostr.c (inttostr): New file/function.
492         * lib/inttostr.h (uinttostr): Declare.
493         * m4/inttostr.m4: Add AC_LIBOBJ([uinttostr]).
494         * MODULES.html.sh (Numeric conversion functions <stdlib.h>):
495         Add uinttostr.
496         * modules/getaddrinfo (Depends-on): Remove snprintf.  Add inttostr.
497
498 2006-10-21  Paul Eggert  <eggert@cs.ucla.edu>
499
500         * lib/canonicalize.c (ELOOP): Define if not already defined.
501         Problem reported by Bruno Haible in
502         <http://lists.gnu.org/archive/html/bug-gnulib/2006-10/msg00282.html>.
503
504 2006-10-21  Paul Eggert  <eggert@cs.ucla.edu>
505
506         * lib/stdint_.h [defined _AIX]: Don't include <sys/types.h>.
507         Problem reported by Perry Smith and Ville Laurikari.
508
509         * lib/getndelim2.c (SSIZE_MAX): Use same defn that getdelim.c
510         uses.
511
512 2006-10-19  Bruno Haible  <bruno@clisp.org>
513
514         * lib/getndelim2.c (SSIZE_MAX): Provide fallback definition. Needed
515         for mingw.
516
517 2006-10-19  Bruno Haible  <bruno@clisp.org>
518
519         * lib/openat-priv.h (EOPNOTSUPP): Provide fallback definition.
520         Needed for mingw.
521
522 2006-10-19  Bruno Haible  <bruno@clisp.org>
523
524         * m4/size_max.m4 (gl_SIZE_MAX): Cache the result.
525
526 2006-10-19  Bruno Haible  <bruno@clisp.org>
527
528         * m4/allocsa.m4 (gl_ALLOCSA): Invoke gl_FUNC_ALLOCA, don't AC_REQUIRE
529         it.
530
531 2006-10-19  Bruno Haible  <bruno@clisp.org>
532
533         * m4/alloca.m4 (gl_FUNC_ALLOCA): Cache the result of the AC_EGREP_CPP
534         invocation.
535
536 2006-10-19  Bruno Haible  <bruno@clisp.org>
537
538         * gnulib-tool (func_create_testdir): Don't include ftruncate and
539         mountlist by default.
540
541 2006-10-16  Bruno Haible  <bruno@clisp.org>
542
543         * lib/c-strstr.c: Include c-strstr.h.
544
545 2006-10-18  Charles Wilson  <cygwin@cwilson.fastmail.fm>
546
547         * gnulib-tool: Don't clobber $sourcebase when $local_gnulib_dir ends
548         in a slash.
549
550 2006-10-18  Bruno Haible  <bruno@clisp.org>
551
552         * lib/lock.h [C++]: Wrap definitions in extern "C".
553
554 2006-10-18  Bruno Haible  <bruno@clisp.org>
555
556         * gnulib-tool (func_emit_initmacro_end): Remove duplicates from the
557         gl_LIBOBJS list.
558
559 2006-10-18  Bruno Haible  <bruno@clisp.org>
560
561         * lib/findprog.c (find_in_path): Avoid "gcc -Wwrite-strings" warning.
562
563 2006-10-19  Paul Eggert  <eggert@cs.ucla.edu>
564
565         * lib/xstrtol.h: Include gettext.h.
566         (_STRTOL_ERROR): Wrap English-language formats inside gettext.
567         Problem reported by Eric Blake.
568         * modules/xstrtol (Depends-on): Add gettext-h.
569
570 2006-10-19  Paul Eggert  <eggert@cs.ucla.edu>  (tiny change)
571
572         * lib/strftime.c (advance): New macro.
573         (add): Use it to avoid adding 0 to a FILE *.  FILE can be an
574         incomplete type, so you can't add 0 to it.  Problem and patch
575         reported by Eelco Dolstra for dietlibc.
576
577 2006-10-18  Jim Meyering  <jim@meyering.net>
578
579         * lib/readutmp.c (desirable_utmp_entry): Use "bool" as the
580         type for a local, and rename it: s/up/user_proc/.
581
582 2006-10-18  Sergey Poznyakoff  <gray@gnu.org.ua>
583
584         * lib/readutmp.c (desirable_utmp_entry): Implement new flag:
585         READ_UTMP_USER_PROCESS.
586         * lib/readutmp.h (READ_UTMP_USER_PROCESS): New flag
587
588 2006-10-17  Paul Eggert  <eggert@cs.ucla.edu>
589
590         * lib/localcharset.c: Do not check HAVE_SETLOCALE.
591         * m4/localcharset.m4 (gl_LOCALCHARSET): Don't check for setlocale.
592
593 2006-10-17  Eric Blake  <ebb9@byu.net>
594
595         * lib/sigprocmask.c (sigprocmask): Fix typo.
596
597         * m4/signalblocking.m4 (gl_PREREQ_SIGPROCMASK): Fix typo.
598
599         * modules/clean-temp (Makefile.am): Don't add to make output...
600         (configure.ac): ...instead define SIGNAL_SAFE_LIST inside
601         config.h.
602
603 2006-10-17  Bruno Haible  <bruno@clisp.org>
604
605         * lib/gettext.h (gettext, ngettext, pgettext, npgettext): Define
606         differently if DEFAULT_TEXT_DOMAIN is set.
607
608 2006-10-16  Bruno Haible  <bruno@clisp.org>
609
610         * lib/clean-temp.c: Include fwriteerror.h.
611
612 2006-10-16  Bruno Haible  <bruno@clisp.org>
613
614         * getndelim2.m4 (gl_GETNDELIM2): Remove 2003-10-23 hack.
615
616 2006-10-16  Bruno Haible  <bruno@clisp.org>
617
618         * m4/signalblocking.m4 (gl_PREREQ_SIGPROCMASK): Also test for sigset_t.
619         * lib/sigprocmask.h: Include <sys/types.h>.
620         (sigset_t): Use the system's definition if present.
621
622 2006-10-17  Eric Blake  <ebb9@byu.net>
623
624         * lib/xvasprintf.c (includes): Assume config.h.
625         * lib/xasprintf.c (includes): Likewise.
626
627 2006-10-16  Paul Eggert  <eggert@cs.ucla.edu>
628
629         * lib/fsusage.c (PROPAGATE_ALL_ONES): Don't assume uintmax_t is
630         at least as wide as intmax_t.
631
632 2006-10-16  Alexandre Duret-Lutz  <adl@gnu.org>
633
634         (Imported from Automake.)
635         * build-aux/gnupload: Update to version 1.1 of directive file.
636
637 2006-10-16  Eric Blake  <ebb9@byu.net>
638
639         * modules/configmake (Makefile.am): Add pkglibexecdir support, to
640         match Automake 1.10a.
641
642 2006-10-14  Bruno Haible  <bruno@clisp.org>
643
644         * modules/sigprocmask: New file.
645         * lib/sigprocmask.h: New file.
646         * lib/sigprocmask.c: New file.
647         * m4/signalblocking.m4 (gl_SIGNALBLOCKING): Renamed from
648         gt_SIGNALBLOCKING. When not defining HAVE_POSIX_SIGNALBLOCKING,
649         request sigprocmask.o.
650         (gl_PREREQ_SIGPROCMASK): New macro.
651         * modules/fatal-signal (Files): Remove m4/signalblocking.m4.
652         (Depends-on): Add sigprocmask.
653         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Don't require
654         gt_SIGNALBLOCKING. Test for 'raise' only once.
655         * lib/fatal-signal.c: Include sigprocmask.h.
656         (fatal_signal_set, init_fatal_signal_set, block_fatal_signals,
657         unblock_fatal_signals): Define always.
658         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
659         sigprocmask.
660
661 2006-10-14  Paul Eggert  <eggert@cs.ucla.edu>
662
663         Sync from Automake.
664         * build-aux/install-sh (posix_mkdir): Reject FreeBSD 6.1 mkdir -p -m,
665         which incorrectly sets the mode of an existing destination
666         directory.  In some cases the unpatched install-sh could do the
667         equivalent of "chmod 777 /" or "chmod 0 /" on a buggy FreeBSD
668         system.  We hope this is rare in practice, but it's clearly worth
669         fixing.  Problem reported by Alex Unleashed in
670         <http://lists.gnu.org/archive/html/bug-autoconf/2006-10/msg00012.html>.
671         Also, don't bother to check for -m bugs unless we're using -m;
672         suggested by Stepan Kasal.
673
674 2006-10-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
675
676         Sync from Automake.
677         * build-aux/depcomp (gcc3): Put dependency extraction flags before the
678         `-c' flag, so they appear at the same position as in %FASTDEP%
679         mode in depend2.am.  Fixes build failure for FreeBSD's c89,
680         which ignores unknown options only after the first non-option.
681         Bug report against M4 by Nelson H. F. Beebe.
682
683 2006-10-13  Jim Meyering  <jim@meyering.net>
684
685         Fix a bug in yesterday's change.
686         * lib/fts.c (fts_open): When using FTS_XDEV|FTS_NOSTAT,
687         p->fts_statp->st_dev would be used uninitialized.
688         Ensures that we always call fts_stat on the very first entry.
689         Miklos Szeredi reported that find -xdev stopped working.
690
691 2006-10-12  Bruno Haible  <bruno@clisp.org>
692
693         * gnulib-tool (func_get_automake_snippet): Append an automatically
694         computed EXTRA_DIST augmentation.
695         * modules/acl (Makefile.am): Remove EXTRA_DIST augmentation.
696         * modules/alloca-opt (Makefile.am): Likewise.
697         * modules/allocsa (Makefile.am): Likewise.
698         * modules/arcfour (Makefile.am): Likewise.
699         * modules/arctwo (Makefile.am): Likewise.
700         * modules/argmatch (Makefile.am): Likewise.
701         * modules/argz (Makefile.am): Likewise.
702         * modules/atexit (Makefile.am): Likewise.
703         * modules/backupfile (Makefile.am): Likewise.
704         * modules/byteswap (Makefile.am): Likewise.
705         * modules/c-strtod (Makefile.am): Likewise.
706         * modules/c-strtold (Makefile.am): Likewise.
707         * modules/calloc (Makefile.am): Likewise.
708         * modules/canon-host (Makefile.am): Likewise.
709         * modules/canonicalize (Makefile.am): Likewise.
710         * modules/chdir-long (Makefile.am): Likewise.
711         * modules/chdir-safer (Makefile.am): Likewise.
712         * modules/check-version (Makefile.am): Likewise.
713         * modules/chown (Makefile.am): Likewise.
714         * modules/cloexec (Makefile.am): Likewise.
715         * modules/close-stream (Makefile.am): Likewise.
716         * modules/closeout (Makefile.am): Likewise.
717         * modules/crc (Makefile.am): Likewise.
718         * modules/csharpexec (Makefile.am): Likewise.
719         * modules/cycle-check (Makefile.am): Likewise.
720         * modules/des (Makefile.am): Likewise.
721         * modules/dev-ino (Makefile.am): Likewise.
722         * modules/dirfd (Makefile.am): Likewise.
723         * modules/dirname (Makefile.am): Likewise.
724         * modules/dup2 (Makefile.am): Likewise.
725         * modules/eealloc (Makefile.am): Likewise.
726         * modules/error (Makefile.am): Likewise.
727         * modules/euidaccess (Makefile.am): Likewise.
728         * modules/exclude (Makefile.am): Likewise.
729         * modules/exitfail (Makefile.am): Likewise.
730         * modules/fcntl-safer (Makefile.am): Likewise.
731         * modules/fcntl (Makefile.am): Likewise.
732         * modules/file-type (Makefile.am): Likewise.
733         * modules/fileblocks (Makefile.am): Likewise.
734         * modules/filemode (Makefile.am): Likewise.
735         * modules/filenamecat (Makefile.am): Likewise.
736         * modules/fnmatch (Makefile.am): Likewise.
737         * modules/fopen-safer (Makefile.am): Likewise.
738         * modules/fpending (Makefile.am): Likewise.
739         * modules/fprintftime (Makefile.am): Likewise.
740         * modules/free (Makefile.am): Likewise.
741         * modules/fsusage (Makefile.am): Likewise.
742         * modules/ftruncate (Makefile.am): Likewise.
743         * modules/fts (Makefile.am): Likewise.
744         * modules/gc-arcfour (Makefile.am): Likewise.
745         * modules/gc-des (Makefile.am): Likewise.
746         * modules/gc-hmac-md5 (Makefile.am): Likewise.
747         * modules/gc-hmac-sha1 (Makefile.am): Likewise.
748         * modules/gc-md4 (Makefile.am): Likewise.
749         * modules/gc-pbkdf2-sha1 (Makefile.am): Likewise.
750         * modules/gc-sha1 (Makefile.am): Likewise.
751         * modules/gc (Makefile.am): Likewise.
752         * modules/getaddrinfo (Makefile.am): Likewise.
753         * modules/getcwd (Makefile.am): Likewise.
754         * modules/getdelim (Makefile.am): Likewise.
755         * modules/getdomainname (Makefile.am): Likewise.
756         * modules/getgroups (Makefile.am): Likewise.
757         * modules/gethostname (Makefile.am): Likewise.
758         * modules/gethrxtime (Makefile.am): Likewise.
759         * modules/getline (Makefile.am): Likewise.
760         * modules/getloadavg (Makefile.am): Likewise.
761         * modules/getlogin_r (Makefile.am): Likewise.
762         * modules/getndelim2 (Makefile.am): Likewise.
763         * modules/getopt (Makefile.am): Likewise.
764         * modules/getpagesize (Makefile.am): Likewise.
765         * modules/getpass-gnu (Makefile.am): Likewise.
766         * modules/getpass (Makefile.am): Likewise.
767         * modules/getsubopt (Makefile.am): Likewise.
768         * modules/gettime (Makefile.am): Likewise.
769         * modules/gettimeofday (Makefile.am): Likewise.
770         * modules/getugroups (Makefile.am): Likewise.
771         * modules/getusershell (Makefile.am): Likewise.
772         * modules/glob (Makefile.am): Likewise.
773         * modules/group-member (Makefile.am): Likewise.
774         * modules/hard-locale (Makefile.am): Likewise.
775         * modules/hash (Makefile.am): Likewise.
776         * modules/hmac-md5 (Makefile.am): Likewise.
777         * modules/hmac-sha1 (Makefile.am): Likewise.
778         * modules/human (Makefile.am): Likewise.
779         * modules/idcache (Makefile.am): Likewise.
780         * modules/imaxabs (Makefile.am): Likewise.
781         * modules/imaxdiv (Makefile.am): Likewise.
782         * modules/inet_ntop (Makefile.am): Likewise.
783         * modules/inet_pton (Makefile.am): Likewise.
784         * modules/intprops (Makefile.am): Likewise.
785         * modules/inttostr (Makefile.am): Likewise.
786         * modules/inttypes (Makefile.am): Likewise.
787         * modules/isapipe (Makefile.am): Likewise.
788         * modules/javaversion (Makefile.am): Likewise.
789         * modules/lchmod (Makefile.am): Likewise.
790         * modules/lchown (Makefile.am): Likewise.
791         * modules/localcharset (Makefile.am): Likewise.
792         * modules/long-options (Makefile.am): Likewise.
793         * modules/lstat (Makefile.am): Likewise.
794         * modules/malloc (Makefile.am): Likewise.
795         * modules/mathl (Makefile.am): Likewise.
796         * modules/mbchar (Makefile.am): Likewise.
797         * modules/md2 (Makefile.am): Likewise.
798         * modules/md4 (Makefile.am): Likewise.
799         * modules/md5 (Makefile.am): Likewise.
800         * modules/memcasecmp (Makefile.am): Likewise.
801         * modules/memchr (Makefile.am): Likewise.
802         * modules/memcmp (Makefile.am): Likewise.
803         * modules/memcoll (Makefile.am): Likewise.
804         * modules/memcpy (Makefile.am): Likewise.
805         * modules/memmem (Makefile.am): Likewise.
806         * modules/memmove (Makefile.am): Likewise.
807         * modules/mempcpy (Makefile.am): Likewise.
808         * modules/memrchr (Makefile.am): Likewise.
809         * modules/memset (Makefile.am): Likewise.
810         * modules/memxor (Makefile.am): Likewise.
811         * modules/mkancesdirs (Makefile.am): Likewise.
812         * modules/mkdir-p (Makefile.am): Likewise.
813         * modules/mkdir (Makefile.am): Likewise.
814         * modules/mkdtemp (Makefile.am): Likewise.
815         * modules/mkstemp (Makefile.am): Likewise.
816         * modules/mktime (Makefile.am): Likewise.
817         * modules/modechange (Makefile.am): Likewise.
818         * modules/mountlist (Makefile.am): Likewise.
819         * modules/nanosleep (Makefile.am): Likewise.
820         * modules/obstack (Makefile.am): Likewise.
821         * modules/openat (Makefile.am): Likewise.
822         * modules/pagealign_alloc (Makefile.am): Likewise.
823         * modules/pathmax (Makefile.am): Likewise.
824         * modules/physmem (Makefile.am): Likewise.
825         * modules/poll (Makefile.am): Likewise.
826         * modules/posixtm (Makefile.am): Likewise.
827         * modules/posixver (Makefile.am): Likewise.
828         * modules/putenv (Makefile.am): Likewise.
829         * modules/quote (Makefile.am): Likewise.
830         * modules/quotearg (Makefile.am): Likewise.
831         * modules/raise (Makefile.am): Likewise.
832         * modules/read-file (Makefile.am): Likewise.
833         * modules/readline (Makefile.am): Likewise.
834         * modules/readlink (Makefile.am): Likewise.
835         * modules/readtokens (Makefile.am): Likewise.
836         * modules/readutmp (Makefile.am): Likewise.
837         * modules/realloc (Makefile.am): Likewise.
838         * modules/regex (Makefile.am): Likewise.
839         * modules/rename-dest-slash (Makefile.am): Likewise.
840         * modules/rename (Makefile.am): Likewise.
841         * modules/rijndael (Makefile.am): Likewise.
842         * modules/rmdir (Makefile.am): Likewise.
843         * modules/rpmatch (Makefile.am): Likewise.
844         * modules/safe-read (Makefile.am): Likewise.
845         * modules/safe-write (Makefile.am): Likewise.
846         * modules/same-inode (Makefile.am): Likewise.
847         * modules/same (Makefile.am): Likewise.
848         * modules/save-cwd (Makefile.am): Likewise.
849         * modules/savedir (Makefile.am): Likewise.
850         * modules/setenv (Makefile.am): Likewise.
851         * modules/settime (Makefile.am): Likewise.
852         * modules/sha1 (Makefile.am): Likewise.
853         * modules/sig2str (Makefile.am): Likewise.
854         * modules/snprintf (Makefile.am): Likewise.
855         * modules/stat-macros (Makefile.am): Likewise.
856         * modules/stat-time (Makefile.am): Likewise.
857         * modules/stdbool (Makefile.am): Likewise.
858         * modules/stdint (Makefile.am): Likewise.
859         * modules/stdlib-safer (Makefile.am): Likewise.
860         * modules/stpcpy (Makefile.am): Likewise.
861         * modules/stpncpy (Makefile.am): Likewise.
862         * modules/strcase (Makefile.am): Likewise.
863         * modules/strcasestr (Makefile.am): Likewise.
864         * modules/strchrnul (Makefile.am): Likewise.
865         * modules/strcspn (Makefile.am): Likewise.
866         * modules/strdup (Makefile.am): Likewise.
867         * modules/strerror (Makefile.am): Likewise.
868         * modules/strftime (Makefile.am): Likewise.
869         * modules/strndup (Makefile.am): Likewise.
870         * modules/strnlen (Makefile.am): Likewise.
871         * modules/strpbrk (Makefile.am): Likewise.
872         * modules/strsep (Makefile.am): Likewise.
873         * modules/strstr (Makefile.am): Likewise.
874         * modules/strtod (Makefile.am): Likewise.
875         * modules/strtoimax (Makefile.am): Likewise.
876         * modules/strtok_r (Makefile.am): Likewise.
877         * modules/strtol (Makefile.am): Likewise.
878         * modules/strtoll (Makefile.am): Likewise.
879         * modules/strtoul (Makefile.am): Likewise.
880         * modules/strtoull (Makefile.am): Likewise.
881         * modules/strtoumax (Makefile.am): Likewise.
882         * modules/strverscmp (Makefile.am): Likewise.
883         * modules/sys_socket (Makefile.am): Likewise.
884         * modules/sys_stat (Makefile.am): Likewise.
885         * modules/sysexits (Makefile.am): Likewise.
886         * modules/time_r (Makefile.am): Likewise.
887         * modules/timegm (Makefile.am): Likewise.
888         * modules/timespec (Makefile.am): Likewise.
889         * modules/tmpfile-safer (Makefile.am): Likewise.
890         * modules/trim (Makefile.am): Likewise.
891         * modules/unistd-safer (Makefile.am): Likewise.
892         * modules/unlinkdir (Makefile.am): Likewise.
893         * modules/unlocked-io (Makefile.am): Likewise.
894         * modules/userspec (Makefile.am): Likewise.
895         * modules/utime (Makefile.am): Likewise.
896         * modules/utimecmp (Makefile.am): Likewise.
897         * modules/utimens (Makefile.am): Likewise.
898         * modules/vasnprintf (Makefile.am): Likewise.
899         * modules/vasprintf (Makefile.am): Likewise.
900         * modules/vsnprintf (Makefile.am): Likewise.
901         * modules/xalloc (Makefile.am): Likewise.
902         * modules/xgetcwd (Makefile.am): Likewise.
903         * modules/xnanosleep (Makefile.am): Likewise.
904         * modules/xreadlink (Makefile.am): Likewise.
905         * modules/xstrtod (Makefile.am): Likewise.
906         * modules/xstrtol (Makefile.am): Likewise.
907         * modules/xstrtold (Makefile.am): Likewise.
908         * modules/yesno (Makefile.am): Likewise.
909         * modules/getdate (Makefile.am): Don't add getdate.h to EXTRA_DIST.
910
911 2006-10-12  Paul Eggert  <eggert@cs.ucla.edu>
912
913         * modules/error (Makefile.am): Distribute files through
914         EXTRA_DIST, not lib_SOURCES.
915
916 2006-10-12  Eric Blake  <ebb9@byu.net>
917
918         * modules/error (Makefile.am): Distribute files in /lib.
919         * modules/obstack (Makefile.am): Likewise.
920
921 2006-10-12  Bruno Haible  <bruno@clisp.org>
922
923         * modules/acl (Makefile.am): Distribute all files in lib/ through
924         EXTRA_DIST.
925         * modules/arcfour (Makefile.am): Likewise.
926         * modules/arctwo (Makefile.am): Likewise.
927         * modules/argmatch (Makefile.am): Likewise.
928         * modules/argz (Makefile.am): Likewise.
929         * modules/atexit (Makefile.am): Likewise.
930         * modules/backupfile (Makefile.am): Likewise.
931         * modules/c-strtod (Makefile.am): Likewise.
932         * modules/c-strtold (Makefile.am): Likewise.
933         * modules/calloc (Makefile.am): Likewise.
934         * modules/canon-host (Makefile.am): Likewise.
935         * modules/canonicalize (Makefile.am): Likewise.
936         * modules/chdir-long (Makefile.am): Likewise.
937         * modules/chdir-safer (Makefile.am): Likewise.
938         * modules/check-version (Makefile.am): Likewise.
939         * modules/chown (Makefile.am): Likewise.
940         * modules/cloexec (Makefile.am): Likewise.
941         * modules/close-stream (Makefile.am): Likewise.
942         * modules/closeout (Makefile.am): Likewise.
943         * modules/crc (Makefile.am): Likewise.
944         * modules/cycle-check (Makefile.am): Likewise.
945         * modules/des (Makefile.am): Likewise.
946         * modules/dirfd (Makefile.am): Likewise.
947         * modules/dirname (Makefile.am): Likewise.
948         * modules/dup2 (Makefile.am): Likewise.
949         * modules/euidaccess (Makefile.am): Likewise.
950         * modules/exclude (Makefile.am): Likewise.
951         * modules/exitfail (Makefile.am): Likewise.
952         * modules/fcntl-safer (Makefile.am): Likewise.
953         * modules/file-type (Makefile.am): Likewise.
954         * modules/fileblocks (Makefile.am): Likewise.
955         * modules/filemode (Makefile.am): Likewise.
956         * modules/filenamecat (Makefile.am): Likewise.
957         * modules/fnmatch (Makefile.am): Likewise.
958         * modules/fopen-safer (Makefile.am): Likewise.
959         * modules/fpending (Makefile.am): Likewise.
960         * modules/fprintftime (Makefile.am): Likewise.
961         * modules/free (Makefile.am): Likewise.
962         * modules/fsusage (Makefile.am): Likewise.
963         * modules/ftruncate (Makefile.am): Likewise.
964         * modules/fts (Makefile.am): Likewise.
965         * modules/gc (Makefile.am): Likewise.
966         * modules/gc-pbkdf2-sha1 (Makefile.am): Likewise.
967         * modules/getaddrinfo (Makefile.am): Likewise.
968         * modules/getcwd (Makefile.am): Likewise.
969         * modules/getdelim (Makefile.am): Likewise.
970         * modules/getdomainname (Makefile.am): Likewise.
971         * modules/getgroups (Makefile.am): Likewise.
972         * modules/gethostname (Makefile.am): Likewise.
973         * modules/gethrxtime (Makefile.am): Likewise.
974         * modules/getline (Makefile.am): Likewise.
975         * modules/getloadavg (Makefile.am): Likewise.
976         * modules/getlogin_r (Makefile.am): Likewise.
977         * modules/getopt (Makefile.am): Likewise.
978         * modules/getpass (Makefile.am): Likewise.
979         * modules/getpass-gnu (Makefile.am): Likewise.
980         * modules/getsubopt (Makefile.am): Likewise.
981         * modules/gettime (Makefile.am): Likewise.
982         * modules/gettimeofday (Makefile.am): Likewise.
983         * modules/getugroups (Makefile.am): Likewise.
984         * modules/getusershell (Makefile.am): Likewise.
985         * modules/glob (Makefile.am): Likewise.
986         * modules/group-member (Makefile.am): Likewise.
987         * modules/hard-locale (Makefile.am): Likewise.
988         * modules/hash (Makefile.am): Likewise.
989         * modules/hmac-md5 (Makefile.am): Likewise.
990         * modules/hmac-sha1 (Makefile.am): Likewise.
991         * modules/human (Makefile.am): Likewise.
992         * modules/idcache (Makefile.am): Likewise.
993         * modules/imaxabs (Makefile.am): Likewise.
994         * modules/imaxdiv (Makefile.am): Likewise.
995         * modules/inet_ntop (Makefile.am): Likewise.
996         * modules/inet_pton (Makefile.am): Likewise.
997         * modules/inttostr (Makefile.am): Likewise.
998         * modules/isapipe (Makefile.am): Likewise.
999         * modules/lchown (Makefile.am): Likewise.
1000         * modules/long-options (Makefile.am): Likewise.
1001         * modules/lstat (Makefile.am): Likewise.
1002         * modules/malloc (Makefile.am): Likewise.
1003         * modules/mathl (Makefile.am): Likewise.
1004         * modules/mbchar (Makefile.am): Likewise.
1005         * modules/md2 (Makefile.am): Likewise.
1006         * modules/md4 (Makefile.am): Likewise.
1007         * modules/md5 (Makefile.am): Likewise.
1008         * modules/memcasecmp (Makefile.am): Likewise.
1009         * modules/memchr (Makefile.am): Likewise.
1010         * modules/memcmp (Makefile.am): Likewise.
1011         * modules/memcoll (Makefile.am): Likewise.
1012         * modules/memcpy (Makefile.am): Likewise.
1013         * modules/memmem (Makefile.am): Likewise.
1014         * modules/memmove (Makefile.am): Likewise.
1015         * modules/mempcpy (Makefile.am): Likewise.
1016         * modules/memrchr (Makefile.am): Likewise.
1017         * modules/memset (Makefile.am): Likewise.
1018         * modules/memxor (Makefile.am): Likewise.
1019         * modules/mkancesdirs (Makefile.am): Likewise.
1020         * modules/mkdir (Makefile.am): Likewise.
1021         * modules/mkdir-p (Makefile.am): Likewise.
1022         * modules/mkdtemp (Makefile.am): Likewise.
1023         * modules/mkstemp (Makefile.am): Likewise.
1024         * modules/mktime (Makefile.am): Likewise.
1025         * modules/modechange (Makefile.am): Likewise.
1026         * modules/mountlist (Makefile.am): Likewise.
1027         * modules/nanosleep (Makefile.am): Likewise.
1028         * modules/openat (Makefile.am): Likewise.
1029         * modules/pagealign_alloc (Makefile.am): Likewise.
1030         * modules/physmem (Makefile.am): Likewise.
1031         * modules/poll (Makefile.am): Likewise.
1032         * modules/posixtm (Makefile.am): Likewise.
1033         * modules/posixver (Makefile.am): Likewise.
1034         * modules/putenv (Makefile.am): Likewise.
1035         * modules/quote (Makefile.am): Likewise.
1036         * modules/quotearg (Makefile.am): Likewise.
1037         * modules/raise (Makefile.am): Likewise.
1038         * modules/read-file (Makefile.am): Likewise.
1039         * modules/readline (Makefile.am): Likewise.
1040         * modules/readlink (Makefile.am): Likewise.
1041         * modules/readtokens (Makefile.am): Likewise.
1042         * modules/readutmp (Makefile.am): Likewise.
1043         * modules/realloc (Makefile.am): Likewise.
1044         * modules/regex (Makefile.am): Likewise.
1045         * modules/rename (Makefile.am): Likewise.
1046         * modules/rename-dest-slash (Makefile.am): Likewise.
1047         * modules/rijndael (Makefile.am): Likewise.
1048         * modules/rmdir (Makefile.am): Likewise.
1049         * modules/rpmatch (Makefile.am): Likewise.
1050         * modules/safe-read (Makefile.am): Likewise.
1051         * modules/safe-write (Makefile.am): Likewise.
1052         * modules/same (Makefile.am): Likewise.
1053         * modules/save-cwd (Makefile.am): Likewise.
1054         * modules/savedir (Makefile.am): Likewise.
1055         * modules/setenv (Makefile.am): Likewise.
1056         * modules/settime (Makefile.am): Likewise.
1057         * modules/sha1 (Makefile.am): Likewise.
1058         * modules/sig2str (Makefile.am): Likewise.
1059         * modules/snprintf (Makefile.am): Likewise.
1060         * modules/stdlib-safer (Makefile.am): Likewise.
1061         * modules/stpcpy (Makefile.am): Likewise.
1062         * modules/stpncpy (Makefile.am): Likewise.
1063         * modules/strcase (Makefile.am): Likewise.
1064         * modules/strcasestr (Makefile.am): Likewise.
1065         * modules/strchrnul (Makefile.am): Likewise.
1066         * modules/strcspn (Makefile.am): Likewise.
1067         * modules/strdup (Makefile.am): Likewise.
1068         * modules/strerror (Makefile.am): Likewise.
1069         * modules/strftime (Makefile.am): Likewise.
1070         * modules/strndup (Makefile.am): Likewise.
1071         * modules/strnlen (Makefile.am): Likewise.
1072         * modules/strpbrk (Makefile.am): Likewise.
1073         * modules/strsep (Makefile.am): Likewise.
1074         * modules/strstr (Makefile.am): Likewise.
1075         * modules/strtod (Makefile.am): Likewise.
1076         * modules/strtoimax (Makefile.am): Likewise.
1077         * modules/strtok_r (Makefile.am): Likewise.
1078         * modules/strtol (Makefile.am): Likewise.
1079         * modules/strtoll (Makefile.am): Likewise.
1080         * modules/strtoul (Makefile.am): Likewise.
1081         * modules/strtoull (Makefile.am): Likewise.
1082         * modules/strtoumax (Makefile.am): Likewise.
1083         * modules/strverscmp (Makefile.am): Likewise.
1084         * modules/time_r (Makefile.am): Likewise.
1085         * modules/timegm (Makefile.am): Likewise.
1086         * modules/tmpfile-safer (Makefile.am): Likewise.
1087         * modules/unistd-safer (Makefile.am): Likewise.
1088         * modules/unlinkdir (Makefile.am): Likewise.
1089         * modules/userspec (Makefile.am): Likewise.
1090         * modules/utime (Makefile.am): Likewise.
1091         * modules/utimecmp (Makefile.am): Likewise.
1092         * modules/utimens (Makefile.am): Likewise.
1093         * modules/vasnprintf (Makefile.am): Likewise.
1094         * modules/vasprintf (Makefile.am): Likewise.
1095         * modules/vsnprintf (Makefile.am): Likewise.
1096         * modules/xalloc (Makefile.am): Likewise.
1097         * modules/xgetcwd (Makefile.am): Likewise.
1098         * modules/xnanosleep (Makefile.am): Likewise.
1099         * modules/xreadlink (Makefile.am): Likewise.
1100         * modules/xstrtod (Makefile.am): Likewise.
1101         * modules/xstrtol (Makefile.am): Likewise.
1102         * modules/xstrtold (Makefile.am): Likewise.
1103         * modules/yesno (Makefile.am): Likewise.
1104
1105 2006-10-12  Jim Meyering  <jim@meyering.net>
1106
1107         * m4/getloadavg.m4: Revert the change below.
1108
1109         * m4/getloadavg.m4 (gl_GETLOADAVG): Test for the existence of
1110         lib/getloadavg.c using "ls -L", not "test -f".  The latter would
1111         fail with a symlink, which is what coreutils' ./bootstrap now
1112         creates by default.
1113
1114 2006-10-12  Bruno Haible  <bruno@clisp.org>
1115
1116         * lib/inttypes_.h (_LONG_LONG_FORMAT_PREFIX): Don't define for MSVC or
1117         mingw.
1118         (_PRI64_PREFIX, _PRIu64_PREFIX, _SCN64_PREFIX, _SCNu64_PREFIX): Handle
1119         MSVC and mingw explicitly.
1120
1121 2006-10-11  Simon Josefsson  <jas@extundo.com>
1122             Bruno Haible  <bruno@clisp.org>
1123
1124         Add support for multiple gnulib-tool invocations in the scope of a
1125         single configure.ac file.
1126         * gnulib-tool (func_emit_lib_Makefile_am): In the _LIBADD variable,
1127         use a private [LT]LIBOBJS variant. Define a _DEPENDENCIES variable
1128         with the same contents as the _LIBADD variable.
1129         (func_emit_initmacro_start, func_emit_initmacro_end,
1130         func_emit_initmacro_done): New functions.
1131         (func_import, func_create_testdir): Invoke them. Allow the identifiers
1132         gl_LIBOBJS and gl_LTLIBOBJS.
1133
1134 2006-10-11  Bruno Haible  <bruno@clisp.org>
1135
1136         * gnulib-tool (GETTEXTPATH, AUTOHEADER, AUTOPOINT): New variables.
1137         (func_create_testdir): Don't create po/Makefile.am, don't invoke
1138         autoreconf. Instead, invoke autopoint explicitly but move back the
1139         *.m4 files from gnulib.
1140
1141 2006-10-11  Bruno Haible  <bruno@clisp.org>
1142
1143         * gnulib-tool (func_usage): Make module names after --create-testdir
1144         optional.
1145         (func_create_testdir): If no module was specified, use nearly all
1146         modules.
1147
1148 2006-10-12  Jim Meyering  <jim@meyering.net>
1149
1150         Big performance improvement for fts-based tools that use FTS_NOSTAT.
1151         Avoid spurious inode-mismatch problems on non-POSIX file systems.
1152         Details: http://article.gmane.org/gmane.comp.lib.gnulib.bugs/7416
1153         * lib/fts_.h (FTS_DEFER_STAT): Define new flag.
1154         (FTS_OPTIONMASK): Extend the mask to reflect this addition.
1155         * lib/fts.c (DT_IS_KNOWN, DT_MUST_BE): Define.
1156         (FTS_NO_STAT_REQUIRED, FTS_STAT_REQUIRED): Define.
1157         (fts_set_stat_required): New function.
1158         (fts_open): Defer the calls to fts_stat, if possible or requested.
1159         Move the code that maps a command-line fts_info value FTS_DOT to FTS_D
1160         into fts_stat itself.
1161         (fts_read): Perform any required (deferred) fts_stat call.
1162         (fts_build): Likewise, for the directory we're about to open and read.
1163         In the readdir loop, carefully decide whether each entry will require
1164         an eventual call to fts_stat, using dirent.d_type info if available.
1165         (fts_stat): Move the test for whether to honor FTS_COMFOLLOW on
1166         a command line argument into this function.  Update all callers.
1167         Map a return value of FTS_DOT to FTS_D for a command line argument.
1168         * modules/fts (Depends-on): Add d-type.  Alphabetize.
1169         Thanks to Miklos Szeredi for his tenacity and for the initial
1170         bug report about "find" failing on a FUSE-based file system.
1171
1172         * lib/fts.c (fts_open): Use consistent indentation.
1173
1174 2006-10-12  Paul Eggert  <eggert@cs.ucla.edu>
1175
1176         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS): Renamed from
1177         gl_USE_SYSTEM_EXTENSIONS, to fix a coreutils bootstrap failure
1178         reported by Jim Meyering.  All uses of cache variables renamed
1179         to match Autoconf's.
1180         (gl_USE_SYSTEM_EXTENSIONS): New macro, which simply requires
1181         the other one.
1182
1183         * m4/rename-dest-slash.m4 (gl_FUNC_RENAME_TRAILING_DEST_SLASH):
1184         Fix misspelling in diagnostic.
1185
1186 2006-10-11  Paul Eggert  <eggert@cs.ucla.edu>
1187
1188         * lib/mkdir-p.c (HAVE_FCHMOD): Define to false if not already
1189         defined.  Problem reported by Matthew Woehlke.
1190
1191         * lib/inttypes_.h (_LONG_LONG_FORMAT_PREFIX): New macro.
1192         Add support for Tandem NonStop R series.
1193         (_PRI64_PREFIX, _PRIu64_PREFIX, _SCN64_PREFIX, _SCNu64_PREFIX):
1194         Use new macro.
1195
1196         * lib/rename-dest-slash.c: Include stdbool.h but not string.h.
1197         (has_trailing_slash): Omit size arg; all callers changed.
1198         Omit 'inline', since it doesn't help performance and we'd
1199         need to configure it.
1200         Don't count //, ///, etc. as having a trailing slash.
1201         As a side effect, this removes a C99ism reported by Matthew Woehlke.
1202         (rpl_rename_dest_slash): On failure, use rename's errno rather
1203         than (in some cases) an incorrect or junk errno.
1204         Simplify code by removing need to compute length; this does
1205         cause it to make two passes instead of one over the file name,
1206         but it's worth it.
1207
1208         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Undo previous
1209         change, since Autoconf's version may no longer be appropriate now
1210         that we are using CVS Autoconf's version.  Add support for Tandem.
1211
1212 2006-10-11  Paul Eggert  <eggert@cs.ucla.edu>
1213             Bruno Haible  <bruno@clisp.org>
1214
1215         * lib/allocsa.h (sa_alignment_longlong, sa_alignment_max): Test
1216         HAVE_LONG_LONG_INT instead of HAVE_LONG_LONG.
1217         * m4/allocsa.m4 (gl_ALLOCSA): Invoke AC_TYPE_LONG_LONG_INT instead of
1218         gl_AC_TYPE_LONG_LONG.
1219
1220         * lib/printf-args.h (arg_type, argument): Test HAVE_LONG_LONG_INT
1221         instead of HAVE_LONG_LONG.
1222         * lib/printf-args.c (printf_fetchargs): Likewise.
1223         * lib/printf-parse.c (PRINTF_PARSE): Likewise.
1224         * lib/vasnprintf.c (VASNPRINTF): Likewise.
1225         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_ARGS, gl_PREREQ_PRINTF_PARSE,
1226         gl_PREREQ_VASNPRINTF): Invoke AC_TYPE_LONG_LONG_INT instead of
1227         gl_AC_TYPE_LONG_LONG.
1228
1229 2006-10-11  Bruno Haible  <bruno@clisp.org>
1230
1231         * m4/longlong.m4: Add comments.
1232         * m4/ulonglong.m4: Likewise.
1233
1234 2006-10-10  Bruno Haible  <bruno@clisp.org>
1235
1236         Make it possible to #define stpcpy, strdup to aliases.
1237         * lib/stpcpy.c (stpcpy) [!_LIBC]: Don't undefine.
1238         * lib/strdup.c (strdup) [!_LIBC]: Don't undefine.
1239
1240 2006-10-10  Bruno Haible  <bruno@clisp.org>
1241
1242         Make it possible to #define gcd to an alias.
1243         * lib/gcd.c: Include config.h.
1244
1245 2006-10-10  Bruno Haible  <bruno@clisp.org>
1246
1247         Make it possible to #define c_isascii to an alias.
1248         * lib/c-ctype.h: Don't define the macros if NO_C_CTYPE_MACROS is
1249         defined. Undefine the macros before defining them, to avoid gcc
1250         warnings.
1251         * lib/c-ctype.c: Include config.h. Don't undefine the macros; instead,
1252         define NO_C_CTYPE_MACROS early.
1253
1254 2006-10-10  Bruno Haible  <bruno@clisp.org>
1255
1256         Make it possible to #define set_program_name to an alias.
1257         * lib/progname.c: Don't undefine set_program_name; instead, undefine
1258         ENABLE_RELOCATABLE early.
1259
1260 2006-10-10  Paul Eggert  <eggert@cs.ucla.edu>
1261
1262         Port to Tandem NSK OSS, which has 64-bit signed int but at most
1263         32-bit unsigned int.  Problem reported by Matthew Woehlke in:
1264         http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00062.html
1265         More generally, don't assume that 64-bit signed int is available
1266         if unsigned int is, and vice versa.
1267         * lib/inttypes_.h (_PRIu64_PREFIX, _SCNu64_PREFIX): Depend on
1268         unsigned symbols, not on their signed counterparts.
1269         * lib/stdint_.h (uint64_t, uint_least64_t, uint_fast64_t, uintmax_t):
1270         (UINT64_MAX, UINT_LEAST64_MAX, UINT_FAST64_MAX, UINTMAX_MAX):
1271         (UINT64_C, UINTMAX_C):
1272         Likewise.
1273         * lib/strtoimax.c (strtoll): Depend on signed symbols, not their
1274         unsigned counterparts.
1275         (Have_long_long, Unsigned): New macros.
1276         (Int): Renamed from INT.
1277         (strtoimax): Use the new macros.
1278         * m4/stdint.m4 (gl_STDINT_H): Require AC_TYPE_UNSIGNED_LONG_LONG_INT
1279         and substitute HAVE_UNSIGNED_LONG_LONG_INT.
1280         * modules/inttypes (inttypes.h): Substitute
1281         HAVE_UNSIGNED_LONG_LONG_INT.
1282         * modules/stdint (stdint.h): Likewise.
1283         (Files): Add m4/ulonglong.m4.
1284
1285 2006-10-10  Bruno Haible  <bruno@clisp.org>
1286
1287         Fix a gcc -Wshadow warning.
1288         * lib/gl_anyhash_list2.h (hash_resize): Rename local variable 'index'
1289         to 'bucket'.
1290         * lib/gl_anylinked_list2.h (gl_linked_search_from_to,
1291         gl_linked_indexof_from_to): Likewise.
1292         * lib/gl_linkedhash_list.c (add_to_bucket, remove_from_bucket):
1293         Likewise.
1294         * lib/gl_anytreehash_list1.h (add_to_bucket, remove_from_bucket):
1295         Likewise.
1296         * lib/gl_anytreehash_list2.h (gl_tree_search_from_to): Likewise.
1297         Reported by Eric Blake.
1298
1299 2006-10-09  Paul Eggert  <eggert@cs.ucla.edu>
1300
1301         * lib/filemode.h [HAVE_DECL_STRMODE]: Include unistd.h too,
1302         for NetBSD.  Problem reported by Bruno Haible.
1303
1304 2006-10-09  Jim Meyering  <jim@meyering.net>
1305
1306         * lib/lchown.c: Include <sys/stat.h> before "stat-macros.h".
1307         Patch from Bruno Haible.
1308
1309 2006-10-09  Jim Meyering  <jim@meyering.net>
1310
1311         * lib/fts-cycle.c (leave_dir): When "leaving" a top level directory due
1312         to FTS_SKIP, don't copy the parent's uninitialized dev/ino values.
1313         Trigger with e.g., mkdir d && valgrind ./chmod u+rwx d d
1314
1315 2006-10-08  Paul Eggert  <eggert@cs.ucla.edu>
1316
1317         Don't include <config.h> twice; this doesn't work in some cases,
1318         e.g., when config.h has "#define intmax_t long long int" and
1319         we include <config.h>, <inttypes.h>, <config.h> in that order.
1320         Problem reported by Matthew Woehlke in:
1321         http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00073.html
1322         * lib/fprintftime.c: Don't include config.h or fprintftime.h.
1323         * lib/fts-cycle.c: Don't include config.h.
1324         * lib/strftime.c: Include fprintftime.h if FPRINTFTIME is defined.
1325         * lib/xstrtoimax.c: Remove copyright notice since it's short tnow.
1326         Don't include config.h or xstrtol.h.  Define STRTOL_T_MINIMUM
1327         and STRTOL_T_MAXIMUM unconditionally, since we now assume gnulib
1328         inttypes.h.
1329         * lib/xstrtoumax.c: Likewise.
1330         * lib/xstrtol.c: Include config.h and xstrtol.h after defining
1331         __strtol and the like, so that this module is more like its siblings.
1332         (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM) [! defined STRTOL_T_MINIMUM]:
1333         Remove; no longer needed now that we assume gnulib inttypes.h.
1334
1335 2006-10-08  Bruno Haible  <bruno@clisp.org>
1336
1337         * doc/gnulib-tool.texi: Emphasize the drawbacks of the --symlink
1338         option.
1339
1340 2006-10-07  Jim Meyering  <jim@meyering.net>
1341
1342         * modules/inttypes (inttypes.h): Revert what seems to have been
1343         an inadvertent part of today's change: use "|", not "/" in the
1344         substitution for the "/"-containing string, $(ABSOLUTE_INTTYPES_H).
1345
1346 2006-10-07  Bruno Haible  <bruno@clisp.org>
1347
1348         * modules/sublist: New file.
1349
1350 2006-10-07  Bruno Haible  <bruno@clisp.org>
1351
1352         * modules/alloca-opt (alloca.h): Add a "DO NOT EDIT" comment.
1353         * modules/argz (argz.h): Likewise.
1354         * modules/arpa_inet (arpa/inet.h): Likewise.
1355         * modules/byteswap (byteswap.h): Likewise.
1356         * modules/configmake (configmake.h): Likewise.
1357         * modules/fcntl (fcntl.h): Likewise.
1358         * modules/fnmatch (fnmatch.h): Likewise.
1359         * modules/getopt (getopt.h): Likewise.
1360         * modules/glob (glob.h): Likewise.
1361         * modules/inttypes (inttypes.h): Likewise.
1362         * modules/netinet_in (netinet/in.h): Likewise.
1363         * modules/poll (poll.h): Likewise.
1364         * modules/stdbool (stdbool.h): Likewise.
1365         * modules/stdint (stdint.h): Likewise.
1366         * modules/sys_select (sys/select.h): Likewise.
1367         * modules/sys_socket (sys/socket.h): Likewise.
1368         * modules/sys_stat (sys/stat.h): Likewise.
1369         * modules/sysexits (sysexits.h): Likewise.
1370         * modules/unistd (unistd.h): Likewise.
1371         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
1372         Add a "DO NOT EDIT" comment to the generated file.
1373         (func_import): Likewise for gnulib-comp.m4.
1374
1375 2006-10-07  Bruno Haible  <bruno@clisp.org>
1376
1377         * lib/gl_sublist.h: New file.
1378         * lib/gl_sublist.c: New file.
1379
1380 2006-10-06  Paul Eggert  <eggert@cs.ucla.edu>
1381
1382         * lib/mkancesdirs.c (mkancesdirs): Pass to MAKE_DIR both the full file
1383         name (relative to the original working directory) and the file
1384         name component (relative to the temporary working directory).  All
1385         callers changed.
1386         * lib/mkancesdirs.h (mkancesdirs): Adjust prototype to match.
1387         * lib/mkdir-p.c (make_dir_parents): Likewise.
1388         * lib/mkdir-p.h (make_dir_parents): Likewise.
1389
1390 2006-10-06  Eric Blake  <ebb9@byu.net>
1391
1392         Define several macros for use by the clean-temp module.
1393         * m4/close-stream.m4 (gl_CLOSE_STREAM): Define GNULIB_CLOSE_STREAM.
1394         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Define GNULIB_FCNTL_SAFER.
1395         * m4/stdio-safer.m4 (gl_FOPEN_SAFER): Define GNULIB_FOPEN_SAFER.
1396
1397         * lib/clean-temp.h (close_stream_temp): New declaration.
1398         * lib/clean-temp.c (includes): Pull in headers according to what
1399         other modules are in use.
1400         (close_stream_temp) [GNULIB_CLOSE_STREAM]: New function.
1401
1402 2006-10-06  Bruno Haible  <bruno@clisp.org>
1403
1404         * lib/javacomp.c (write_temp_file): Use fopen_temp, fwriteerror_temp
1405         instead of fopen, fwriteerror.
1406
1407 2006-10-06  Bruno Haible  <bruno@clisp.org>
1408
1409         * lib/clean-temp.h (cleanup_temp_file, cleanup_temp_subdir,
1410         cleanup_temp_dir_contents, cleanup_temp_dir): Change return type to
1411         int.
1412         * lib/clean-temp.c (do_unlink, do_rmdir, cleanup_temp_file,
1413         cleanup_temp_subdir, cleanup_temp_dir_contents, cleanup_temp_dir):
1414         Return an error indicator.
1415         Suggested by Eric Blake.
1416
1417 2006-10-06  Bruno Haible  <bruno@clisp.org>
1418
1419         * lib/clean-temp.c (PATH_MAX): Provide a fallback for GNU Hurd.
1420         Reported by Eric Blake.
1421
1422 2006-10-06  Bruno Haible  <bruno@clisp.org>
1423
1424         * modules/closeout (Description): Mention stderr too.
1425
1426 2006-10-06  Bruno Haible  <bruno@clisp.org>
1427         and Paul Eggert  <eggert@cs.ucla.edu>
1428
1429         * lib/closeout.c (close_stdout): Also close stderr.
1430         * lib/closeout.h: Update comment.
1431
1432 2006-10-05  Paul Eggert  <eggert@cs.ucla.edu>
1433
1434         Fix some Darwin-7.9.0 porting problems reported by Bruno Haible in
1435         <http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00063.html>.
1436         * lib/dirchownmod.c: Include lchown.h.
1437         * lib/lchown.c: Don't include files that lchown.h now includes.
1438         Don't declare chown, since lchown.h now does that.
1439         * lib/lchown.h: Include errno.h, sys/types.h, unistd.h.
1440         (lchown): Define to rpl_chown if lchown is declared but
1441         does not exist.  Declare using a prototype if lchown is not
1442         declared.  Add a copyright notice.
1443         * lib/mkstemp.h: Include <unistd.h>.
1444         * lib/openat.c: Include lchown.h.
1445
1446         * lib/fcntl_.h (O_NOFOLLOW): Don't depend on O_NOFOLLOW_IS_INEFFECTIVE;
1447         we now test for that separately.
1448         * lib/fts.c (fts_safe_changedir): Inspect HAVE_WORKING_O_NOFOLLOW
1449         rather than O_NOFOLLOW, when testing whether it's possible to
1450         avoid a race condition reliably.
1451         * lib/savewd.c (savewd_chdir): Likewise.
1452
1453         Remove macros that are no longer needed now that stdint.h is
1454         reliable.
1455         * lib/fsusage.c (UINTMAX_MAX): Remove.
1456         * lib/human.c (SIZE_MAX, UINTMAX_MAX): Remove.
1457         * lib/utimecmp.c (SIZE_MAX): Remove.
1458
1459         * m4/lchown.m4 (gl_FUNC_LCHOWN): Check whether lchown is declared.
1460
1461         * m4/fcntl_h.m4 (gl_FCNTL_H): Define HAVE_WORKING_O_NOFOLLOW instead
1462         of O_NOFOLLOW_IS_INEFFECTIVE.  Define HAVE_WORKING_O_NOATIME if
1463         O_NOATIME works.
1464
1465 2006-10-05  Bruno Haible  <bruno@clisp.org>
1466
1467         * lib/gl_list.h (gl_sortedlist_search_from_to,
1468         gl_sortedlist_indexof_from_to): New declarations.
1469         (gl_list_implementation): New fields sortedlist_search_from_to,
1470         sortedlist_indexof_from_to.
1471         (gl_sortedlist_search_from_to, gl_sortedlist_indexof_from_to): New
1472         inline functions.
1473         * lib/gl_list.c (gl_sortedlist_search_from_to,
1474         gl_sortedlist_indexof_from_to): New functions.
1475         * lib/gl_array_list.c (gl_array_sortedlist_indexof_from_to): New
1476         function.
1477         (gl_array_sortedlist_indexof, gl_array_sortedlist_search): Use it.
1478         (gl_array_sortedlist_search_from_to): New function.
1479         (gl_array_list_implementation): Update.
1480         * lib/gl_carray_list.c (gl_carray_sortedlist_indexof_from_to): New
1481         function.
1482         (gl_carray_sortedlist_indexof, gl_carray_sortedlist_search): Use it.
1483         (gl_carray_sortedlist_search_from_to): New function.
1484         (gl_carray_list_implementation): Update.
1485         * lib/gl_anylinked_list2.h (gl_linked_sortedlist_search_from_to,
1486         gl_linked_sortedlist_indexof_from_to): New functions.
1487         * lib/gl_linked_list.c (gl_linked_list_implementation): Update.
1488         * lib/gl_linkedhash_list.c (gl_linkedhash_list_implementation): Update.
1489         * lib/gl_anytree_list2.h (gl_tree_sortedlist_search_from_to,
1490         gl_tree_sortedlist_indexof_from_to): New functions.
1491         * lib/gl_avltree_list.c (gl_avltree_list_implementation): Update.
1492         * lib/gl_avltreehash_list.c (gl_avltreehash_list_implementation):
1493         Update.
1494         * lib/gl_rbtree_list.c (gl_rbtree_list_implementation): Update.
1495         * lib/gl_rbtreehash_list.c (gl_avltreehash_list_implementation):
1496         Update.
1497
1498 2006-10-05  Bruno Haible  <bruno@clisp.org>
1499
1500         * lib/gl_list.h (gl_list_search_from, gl_list_search_from_to,
1501         gl_list_indexof_from, gl_list_indexof_from_to): New declarations.
1502         (struct gl_list_implementation): Add fields search_from_to,
1503         indexof_from_to. Remove fields search, indexof.
1504         (gl_list_search): Use the search_from_to method.
1505         (gl_list_search_from, gl_list_search_from_to): New functions.
1506         (gl_list_indexof): Use the indexof_from_to method.
1507         (gl_list_indexof_from, gl_list_indexof_from_to): New functions.
1508         * lib/gl_list.c (gl_list_search): Use the search_from_to method.
1509         (gl_list_search_from, gl_list_search_from_to): New functions.
1510         (gl_list_indexof): Use the indexof_from_to method.
1511         (gl_list_indexof_from, gl_list_indexof_from_to): New functions.
1512         * lib/gl_array_list.c (gl_array_indexof_from_to): Renamed from
1513         gl_array_indexof. Add start_index, end_index arguments.
1514         (gl_array_search_from_to): Renamed from gl_array_search. Add
1515         start_index, end_index arguments.
1516         (gl_array_remove, gl_array_list_implementation): Update.
1517         * lib/gl_carray_list.c (gl_carray_indexof_from_to): Renamed from
1518         gl_carray_indexof. Add start_index, end_index arguments.
1519         (gl_carray_search_from_to): Renamed from gl_carray_search. Add
1520         start_index, end_index arguments.
1521         (gl_carray_remove, gl_carray_list_implementation): Update.
1522         * lib/gl_anylinked_list2.h (gl_linked_search_from_to): Renamed from
1523         gl_linked_search. Add start_index, end_index arguments.
1524         (gl_linked_indexof_from_to): Renamed from gl_linked_indexof. Add
1525         start_index, end_index arguments.
1526         (gl_linked_remove): Update.
1527         * lib/gl_linked_list.c (gl_linked_list_implementation): Update.
1528         * lib/gl_linkedhash_list.c (gl_linkedhash_list_implementation): Update.
1529         * lib/gl_anytree_list1.h (iterstack_item_t): Change type of 'rightp'
1530         field to 'size_t'.
1531         * lib/gl_anytree_list2.h (gl_tree_search_from_to): Renamed from
1532         gl_tree_search. Add start_index, end_index arguments.
1533         (gl_tree_indexof_from_to): Renamed from gl_tree_indexof. Add
1534         start_index, end_index arguments.
1535         (gl_tree_remove): Update.
1536         * lib/gl_avltree_list.c (gl_avltree_list_implementation): Update.
1537         * lib/gl_rbtree_list.c (gl_rbtree_list_implementation): Update.
1538         * lib/gl_anytreehash_list1.h (compare_position_threshold): New
1539         function.
1540         * lib/gl_anytreehash_list2.h (gl_tree_search_from_to): Renamed from
1541         gl_tree_search. Add start_index, end_index arguments.
1542         (gl_tree_indexof_from_to): Renamed from gl_tree_indexof. Add
1543         start_index, end_index arguments.
1544         * lib/gl_avltreehash_list.c (gl_avltreehash_list_implementation):
1545         Update.
1546         * lib/gl_rbtreehash_list.c (gl_rbtreehash_list_implementation): Update.
1547
1548 2006-10-05  Bruno Haible  <bruno@clisp.org>
1549
1550         * modules/fwriteerror (configure.ac): Define GNULIB_FWRITEERROR.
1551
1552         * lib/clean-temp.h (open_temp, fopen_temp, close_temp, fclose_temp,
1553         fwriteerror_temp): New declarations.
1554         * lib/clean-temp.c (uintptr_t): Provide fallback definition.
1555         (descriptors): New variable.
1556         (cleanup): First, close the descriptors.
1557         (register_fd, unregister_fd, open_temp, fopen_temp, close_temp,
1558         fclose_temp, fwriteerror_temp): New functions.
1559
1560 2006-10-04  Jim Meyering  <jim@meyering.net>
1561
1562         * lib/fts.c (fts_open): Tiny comment change.
1563
1564 2006-10-04  Bruno Haible  <bruno@clisp.org>
1565
1566         Make it possible to invoke AC_GNU_SOURCE after gl_LOCK_EARLY.
1567         * m4/lock.m4 (gl_LOCK_EARLY_BODY): New macro, extracted code from
1568         gl_LOCK_BODY.
1569         (gl_LOCK_EARLY): Require gl_LOCK_EARLY_BODY, not gl_LOCK_BODY.
1570         (gl_LOCK_BODY): Remove settings of CPPFLAGS, now done in
1571         gl_LOCK_EARLY_BODY.
1572         (gl_LOCK): Require gl_LOCK_BODY.
1573
1574 2006-10-04  Bruno Haible  <bruno@clisp.org>
1575
1576         * lib/gl_oset.h (gl_setelement_threshold_fn): New type.
1577         (gl_oset_search_atleast): New declaration.
1578         (struct gl_oset_implementation): Add field 'search_atleast'.
1579         (gl_oset_search_atleast): New inline function.
1580         * lib/gl_oset.c (gl_oset_search_atleast): New function.
1581         * lib/gl_array_oset.c (gl_array_search_atleast): New function.
1582         (gl_array_oset_implementation): Update.
1583         * lib/gl_anytree_oset.h (gl_tree_search_atleast): New function.
1584         * lib/gl_avltree_oset.c (gl_avltree_oset_implementation): Update.
1585         * lib/gl_rbtree_oset.c (gl_rbtree_oset_implementation): Update.
1586
1587 2006-10-04  Bruno Haible  <bruno@clisp.org>
1588
1589         * lib/fatal-signal.c (fatal_signals) [WOE32]: Add the SIGBREAK signal.
1590
1591 2006-10-03  Bruno Haible  <bruno@clisp.org>
1592
1593         * lib/gl_rbtreehash_list.c (gl_rbtreehash_list_implementation): Renamed
1594         from gl_avltreehash_list_implementation.
1595
1596 2006-10-03  Bruno Haible  <bruno@clisp.org>
1597
1598         * lib/gl_oset.c (gl_oset_add): Fix return type.
1599
1600 2006-10-02  Paolo Bonzini  <bonzini@gnu.org>  (tiny change)
1601
1602         * lib/quotearg.c (mbstate_t) [!HAVE_MBRTOWC]: #define to int.
1603
1604 2006-10-02  Eric Blake  <ebb9@byu.net>
1605
1606         * modules/strnlen (Depends-on): Add extensions.
1607
1608 2006-10-02  Eric Blake  <ebb9@byu.net>
1609
1610         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Use autoconf's
1611         definition in 2.60+.
1612
1613 2006-10-02  Dmitry V. Levin  <ldv@altlinux.org>
1614
1615         * lib/fts.c (fts_close, fts_build, fts_palloc): Remove redundant
1616         checks.
1617
1618 2006-10-02  Bruno Haible  <bruno@clisp.org>
1619
1620         * gnulib-tool (func_emit_lib_Makefile_am): Don't add no-dependencies
1621         to the AUTOMAKE_OPTIONS.
1622         Reported by Jim Meyering.
1623
1624 2006-09-29  Paul Eggert  <eggert@cs.ucla.edu>
1625
1626         Work around bug in Solaris 10 /proc file system:
1627         /proc/self/fd/NNN/.. isn't the parent directory of
1628         the directory whose file descriptor is NNN.  This needs to
1629         be worked around at run time, not compile time, since a
1630         program might be built on Solaris 8, where things work, and
1631         run on Solaris 10.
1632         * lib/openat-priv.h (BUILD_PROC_NAME): Remove.  All callers changed
1633         to use the following interface instead:
1634         (OPENAT_BUFFER_SIZE): New macro.
1635         (openat_proc_name): New function.
1636         * lib/at-func.c (AT_FUNC_NAME): Adjust to above changes.
1637         * lib/openat.c (openat_permissive, openat_needs_fchdir, fdopendir):
1638         Likewise.
1639         * lib/openat-proc.c: New file.
1640         * modules/openat (Files): Add lib/openat-proc.c.
1641         (Depends-on): Add same-inode, stdbool.
1642         * m4/openat.m4 (gl_FUNC_OPENAT): Add AC_LIBOBJ(openat-proc).
1643
1644 2006-09-29  Bruno Haible  <bruno@clisp.org>
1645
1646         * lib/fwriteerror.h (fwriteerror_no_ebadf): New declaration.
1647         * lib/(do_fwriteerror): Renamed from fwriteerror. Add ignore_ebadf
1648         argument. Set stdout_closed before testing for ferror, not after.
1649         (fwriteerror, fwriteerror_no_ebadf): New functions.
1650
1651 2006-09-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1652
1653         * m4/intmax.m4 (gt_TYPE_INTMAX_T): Avoid unused variables warning.
1654
1655 2006-09-28  Paolo Bonzini  <bonzini@gnu.org>
1656
1657         * lib/poll.c (rpl_poll) [__APPLE__]: Use FIONREAD instead of MSG_PEEK.
1658         * m4/poll.m4: Look for sys/ioctl.h and sys/filio.h.
1659
1660 2006-09-28  Jim Meyering  <jim@meyering.net>
1661
1662         * lib/mkdir-p.c: Include "dirchownmod.h", not "dirchownmod.c".
1663         Include <unistd.h>.
1664
1665 2006-09-28  Bruno Haible  <bruno@clisp.org>
1666
1667         * modules/avltreehash-list (Depends-on): Add stdint, remove size_max.
1668         * modules/linkedhash-list (Depends-on): Likewise.
1669         * modules/rbtreehash-list (Depends-on): Likewise.
1670
1671 2006-09-28  Bruno Haible  <bruno@clisp.org>
1672
1673         * lib/strndup.h: Simplify the redefinition of strndup.
1674         (_GL_CONCAT, _GL_XCONCAT, __STRNDUP_ID): Remove macros.
1675         * m4/strndup.m4 (gl_FUNC_STRNDUP): Don't define __STRNDUP_PREFIX.
1676
1677 2006-09-28  Bruno Haible  <bruno@clisp.org>
1678
1679         * lib/gl_avltreehash_list.c: Include <stdint.h> instead of size_max.h.
1680         * lib/gl_linkedhash_list.c: Likewise.
1681         * lib/gl_rbtreehash_list.c: Likewise.
1682
1683 2006-09-27  Paul Eggert  <eggert@cs.ucla.edu>
1684
1685         * lib/canon-host.c (canon_host_r): Work around bug in Darwin 7.9.0
1686         getaddrinfo.
1687
1688         * lib/__fpending.h: Don't include <stdio_ext.h> unless
1689         HAVE_DECL___FPENDING.  This avoids a bug with lsbcc, where
1690         it causes <stdio_ext.h> to cause a compile-time error.
1691         Problem reported by Nelson H. F. Beebe.
1692         * lib/getpass.c: Likewise, except for HAVE_DECL___FSETLOCKING instead
1693         of HAVE_DECL___PENDING.
1694
1695         * m4/fpending.m4 (gl_FUNC_FPENDING): Check for stdio_ext at most once.
1696         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for __fsetlocking's
1697         declaration.
1698
1699 2006-09-27  Jim Meyering  <jim@meyering.net>
1700
1701         This file could end up with a definition for a function
1702         named __strndup, rather than rpl_strndup on a system with
1703         incomplete weak_alias support.
1704         * lib/strndup.c (strndup): Rename from __strndup.
1705         Remove #defines that used to map __strndup to strndup.
1706         Don't use K&R prototypes.
1707         Remove LIBC-related code, since this file is not sync'd with glibc.
1708         * lib/strndup.h: Revamp, accordingly.
1709         * m4/strndup.m4: Modernize.
1710
1711 2006-09-26  Paul Eggert  <eggert@cs.ucla.edu>
1712
1713         * modules/savewd (Depends-on): Add 'raise'.
1714         * lib/savewd.c: Include <signal.h>, for 'raise'.
1715
1716 2006-09-26  Jim Meyering  <jim@meyering.net>
1717
1718         * m4/acl.m4 (AC_FUNC_ACL): Disable ACL support altogether
1719         when we detect Darwin 8.7.0's acl_get_file bug.
1720         Rearrange to perform the new (below) run-test while $LIBS
1721         contains any acl-related library.  Set USE_ACL at the end.
1722         (gl_ACL_GET_FILE): New function.
1723
1724 2006-09-26  Eric Blake  <ebb9@byu.net>
1725
1726         * lib/verror.c: Include <config.h> unconditionally.
1727
1728 2006-09-25  Paul Eggert  <eggert@cs.ucla.edu>
1729
1730         * modules/clock-time (Maintainer): Add self.
1731         * modules/getlogin_r (Depends-on): Add extensions.
1732
1733 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1734
1735         * modules/clock-time: New module.
1736         * modules/nanosleep (Depends-on): Add clock-time.
1737         * modules/gethrxtime (Depends-on): Likewise.
1738         * modules/gettime (Depends-on): Likewise.
1739         * modules/settime (Depends-on): Likewise.
1740
1741         * modules/fts-lgpl: Depend on openat.
1742         * modules/mkancesdirs: Depend on savewd.
1743         * modules/mkdir-p: Likewise.
1744
1745 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1746
1747         * m4/host-os.m4 (gl_HOST_OS): Require AC_CANONICAL_HOST.
1748
1749         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Rename cache variable from
1750         `gl_have_arbitrary_file_name_length_limit' to
1751         `gl_cv_have_arbitrary_file_name_length_limit', so that caching
1752         actually works between configure runs.
1753
1754 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1755             Bruno Haible  <bruno@clisp.org>
1756
1757         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Include <string.h>.
1758
1759 2006-09-25  Jim Meyering  <jim@meyering.net>
1760
1761         * m4/fcntl_h.m4 (gl_FCNTL_H): Fix typo in test for failed open.
1762         This typo caused coreutils/tests/dd/misc to fail on Darwin 8.7.0.
1763
1764 2006-09-25  Eric Blake  <ebb9@byu.net>
1765
1766         * gnulib-tool (func_import, func_create_testdir): Fix typos in
1767         exec's in 2006-09-18 patch when shuffling fds.
1768
1769 2006-09-25  Bruno Haible  <bruno@clisp.org>
1770
1771         * m4/getloadavg.m4 (gl_GETLOADAVG): Fix directory in error message.
1772         Reported by Jim Meyering.
1773
1774 2006-09-24  Jim Meyering  <jim@meyering.net>
1775
1776         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Don't use '>' to
1777         compare a pointer against a literal "0".  That caused failures with
1778         at least HP-UX's hpcc.
1779
1780 2006-09-22  Simon Josefsson  <jas@extundo.com>
1781
1782         * modules/gc-sha1:
1783         * modules/gc-md4:
1784         * modules/gc-hmac-sha1:
1785         * modules/gc-hmac-md5:
1786         * modules/gc-des:
1787         * modules/gc-arcfour: Distribute more files.
1788
1789 2006-09-22  Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
1790
1791         * lib/gl_anylinked_list2.h [lint] (gl_linked_iterator)
1792         (gl_linked_iterator_from_to): Initialize struct completely.
1793         * lib/gl_anytree_list2.h [lint] (gl_tree_iterator): Likewise.
1794         (gl_tree_iterator_from_to): Likewise
1795         * lib/gl_anytree_oset.h [lint] (gl_tree_iterator): Likewise.
1796         * lib/gl_array_list.c [lint] (gl_array_iterator)
1797         (gl_array_iterator_from_to): Likewise.
1798         * lib/gl_array_oset.c [lint] (gl_array_iterator): Likewise.
1799         * lib/gl_carray_list.c [lint] (gl_carray_iterator)
1800         (gl_carray_iterator_from_to): Likewise.
1801
1802         * lib/gc-gnulib.c [GC_USE_HMAC_SHA1]: include hmac.h for hmac_sha1.
1803         * lib/md4.c (md4_process_block): Remove unused variable.
1804         * lib/rijndael-api-fst.c (rijndaelBlockDecrypt): GCC suggests
1805         parentheses for clarity.
1806
1807 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1808
1809         * modules/bison-i18n (Depends-on): Add gettext.
1810
1811 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1812
1813         * m4/fsusage.m4 (gl_STATFS_TRUNCATES): Avoid unused variable.
1814         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): Likewise.
1815         * m4/jm-winsz1.m4 (gl_HEADER_TIOCGWINSZ_IN_TERMIOS_H): Likewise;
1816         also add missing comma that caused broken test.
1817         * m4/link-follow.m4 (gl_AC_FUNC_LINK_FOLLOWS_SYMLINK): Include
1818         stdlib.h, for `abort'.
1819         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Avoid unused
1820         variables.
1821         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Check for and
1822         include unistd.h if present, for `rmdir'.
1823         * m4/physmem.m4 (gl_SYS__SYSTEM_CONFIGURATION): Avoid unused
1824         variables.
1825         * m4/putenv.m4 (gl_FUNC_PUTENV): Rewrite using AC_RUN_IFELSE, and
1826         in the process include standard headers for prototypes.
1827         * m4/readutmp.m4 (gl_READUTMP): Require AC_GNU_SOURCE, so utmpxname
1828         gets declared on GNU/Linux.
1829         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Check for and include
1830         unistd.h, for `rmdir'.
1831         * m4/time_r.m4 (gl_TIME_R): Avoid unused variables.
1832
1833         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Avoid expression that is
1834         always true.
1835         * m4/strndup.m4 (gl_FUNC_STRNDUP): include stdlib.h, for `free'.
1836
1837         * m4/sockpfaf.m4 (gl_SOCKET_FAMILIES): Avoid gcc -Wall warnings.
1838
1839 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1840
1841         * gnulib-tool (func_version): Create output all at once.  This
1842         may help avoid triggering unnecessary SIGPIPEs, and at any
1843         rate it doesn't hurt.
1844
1845 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1846             Bruno Haible  <bruno@clisp.org>
1847
1848         * m4/lock.m4 (gl_LOCK_BODY): Avoid unused variables warning.
1849         * m4/mbswidth.m4 (gl_MBSWIDTH): Likewise.
1850         * m4/signed.m4 (bh_C_SIGNED): Likewise.
1851
1852         * m4/vasprintf.m4 (gl_PREREQ_VASPRINTF_H): New macro.
1853         (gl_FUNC_VASPRINTF): Invoke it.
1854
1855 2006-09-22  Bruno Haible  <bruno@clisp.org>
1856
1857         * m4/getloadavg.m4 (gl_GETLOADAVG): Expect the directory of
1858         getloadavg.c as first argument.
1859
1860 2006-09-22  Bruno Haible  <bruno@clisp.org>
1861
1862         * gnulib-tool (func_import, func_create_testdir): Set gl_source_base
1863         at the beginning of the gl_INIT macro.
1864         * modules/getloadavg (configure.ac): Pass $gl_source_base to
1865         gl_GETLOADAVG.
1866
1867 2006-09-22  Bruno Haible  <bruno@clisp.org>
1868
1869         * gnulib-tool (func_create_megatestdir): Don't include the config-h
1870         module.
1871         Suggested by Ralf Wildenhues.
1872
1873 2006-09-20  Paul Eggert  <eggert@cs.ucla.edu>
1874
1875         Import this patch from libc:
1876
1877         2006-09-06  Jakub Jelinek  <jakub@redhat.com>
1878
1879         * lib/regex_internal.c (re_string_reconstruct): Handle
1880         offset < pstr->valid_raw_len && pstr->offsets_needed case.
1881         Ensure no bytes read before raw_mbs array.  Pass a saved copy of
1882         pstr->valid_len - 1 rather than pstr->valid_raw_len - 1 to
1883         re_string_context_at.
1884
1885         * m4/regex.m4 (gl_REGEX): Check for locale.h, since the test
1886         now requires it.
1887         (gl_PREREQ_REGEX): Don't check for locale.h any more, since
1888         gl_REGEX now does it for us.
1889         (gl_REGEX): Add test taken from
1890         http://sourceware.org/ml/libc-hacker/2006-09/msg00008.html.
1891
1892         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Require AC_SYS_LARGEFILE.
1893         Check that large offsets work.  Modernize Autoconf usages.
1894         Prefer "yes" to mean a good thing rather than a bad.
1895         Don't put "#define mkstemp" in config.h, as this might interfere
1896         with standard system headers that "#define mkstemp mkstemp64".
1897
1898         * modules/mkstemp (Depends-on): Add extensions, so that
1899         mkstemp is visible on some platforms.
1900         (Makefile.am): Add mkstemp.h to EXTRA_DIST.
1901         (Include): Change to "mkstemp.h" from <stdlib.h>.
1902         (Files): Add mkstemp.h.
1903
1904         * lib/mkstemp.h: New file, since some standard headers
1905         #define mkstemp.
1906         * lib/mkstemp.c: Revamp to put the !_LIBC code together.
1907         Include "mkstemp.h".
1908         Make the _LIBC code resemble glibc original more,
1909         e.g., use K&R style.
1910         * lib/mkstemp-safer.c: Include "mkstemp.h" instead of <stdlib.h>.
1911         (mkstemp): Remove, since mkstemp.h does this for us.
1912         * lib/stdlib--.h: Include mkstemp.h.
1913
1914         Import this patch from libc:
1915
1916         2006-04-07  Ulrich Drepper  <drepper@redhat.com>
1917
1918         * lib/tempname.c (__gen_tempname): Change attempts_min
1919         into a macro.  Use preprocessor to decide how to initialize
1920         attempts [Coverity CID 67].
1921
1922 2006-09-20  Bruno Haible  <bruno@clisp.org>
1923
1924         * lib/mkdtemp.c: Import from libc.
1925         2006-04-07  Ulrich Drepper  <drepper@redhat.com>
1926                 * sysdeps/posix/tempname.c (__gen_tempname): Change
1927                 attempts_min into a macro.  Use preprocessor to decide how to
1928                 initialize attempts [Coverity CID 67].
1929         2001-11-27  Paul Eggert  <eggert@twinsun.com>
1930                 * sysdeps/posix/tempname.c (__gen_tempname): Try at least
1931                 ATTEMPTS_MIN or TMP_MAX times, whichever is greater.
1932
1933 2006-09-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1934
1935         * gnulib-tool (func_exit): New function, to allow to pass the
1936         exit status portably through the trap.  Use everywhere.
1937         (--help, --version): Signal a write error.
1938         (trap): catch SIGPIPE, for write errors.
1939         Exit at the end of the trap, with the correct exit status.
1940
1941 2006-09-19  Karl Berry  <karl@gnu.org>
1942
1943         * doc/gnulib.texi: note about the license texinfo files.
1944
1945 2006-09-19  Eric Blake  <ebb9@byu.net>
1946
1947         * gnulib-tool: Avoid space-tab.
1948
1949 2006-09-18  Paul Eggert  <eggert@cs.ucla.edu>
1950
1951         * lib/getaddrinfo.c (getaddrinfo) [defined HAVE_IPV6]: Fix typo
1952         that prevented coreutils 6.1 from building.  Problem reported
1953         by Petter Reinholdtsen.
1954
1955 2006-09-18  Paul Eggert  <eggert@cs.ucla.edu>
1956
1957         * gnulib-tool (avoidlist): Fix typo that broke options like
1958         --avoid=lock that are used by coreutils bootstrap.
1959
1960 2006-09-18  Mark D. Baushke  <mdb@gnu.org>
1961
1962         * m4/inttypes.m4 (gl_INTTYPES_H): Quote "test" args
1963         more systematically.
1964
1965 2006-09-18  Jim Meyering  <jim@meyering.net>
1966
1967         * lib/savewd.c (savewd_restore): Don't shadow: s/status/child_status/.
1968
1969 2006-09-18  Bruno Haible  <bruno@clisp.org>
1970
1971         * modules/inttypes (Files): Remove m4/inttypes-h.m4.
1972
1973 2006-09-18  Bruno Haible  <bruno@clisp.org>
1974
1975         * m4/inttypes-h.m4 (gl_HEADER_INTTYPES_H): Remove macro.
1976         * m4/inttypes-pri.m4: Require autoconf >= 2.52.
1977         (gt_INTTYPES_PRI): Invoke AC_CHECK_HEADERS on inttypes.h. Test
1978         ac_cv_header_inttypes_h instead of gl_cv_header_inttypes_h.
1979         * m4/gettext.m4: Require autoconf >= 2.52.
1980         (gt_INTL_SUBDIR_CORE): Invoke AC_CHECK_HEADERS on inttypes.h.
1981         * m4/inttypes.m4 (gl_INTTYPES_H): Test ac_cv_header_inttypes_h instead
1982         of gl_cv_header_inttypes_h.
1983
1984 2006-09-18  Bruno Haible  <bruno@clisp.org>
1985
1986         * lib/javaversion.c: Include configmake.h.
1987
1988 2006-09-18  Bruno Haible  <bruno@clisp.org>
1989
1990         * gnulib-tool (func_import, func_create_testdir): Use exec tricks to
1991         avoid that the while loops be executed in a subshell.
1992
1993 2006-09-18  Bruno Haible  <bruno@clisp.org>
1994
1995         * MODULES.html.sh (func_module): Break long lines.
1996         Suggested by Bruce Korb <bkorb@gnu.org>.
1997
1998 2006-09-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1999
2000         Speed up by a factor of 1.12.
2001         * gnulib-tool (nl): New variable.
2002         (func_import): Rewrite include directive extraction to only read each
2003         directive once.
2004
2005 2006-09-17  Bruno Haible  <bruno@clisp.org>
2006
2007         * modules/javaversion (Makefile.am): Remove DEFS setting.
2008         (Depends-on): Add configmake, for PKGDATADIR definition.
2009
2010 2006-09-17  Bruno Haible  <bruno@clisp.org>
2011
2012         * gnulib-tool (func_create_testdir): Rewrite all files at once.
2013
2014 2006-09-17  Bruno Haible  <bruno@clisp.org>
2015
2016         * gnulib-tool (func_append): New function, stolen from libtool.m4.
2017         (func_modules_transitive_closure, func_modules_add_dummy,
2018         func_modules_to_filelist, func_import, func_create_testdir,
2019         func_create_megatestdir, ...): Use it wherever possible.
2020         Suggested by Ralf Wildenhues.
2021
2022 2006-09-16  Karl Berry  <karl@gnu.org>
2023
2024         * doc/fdl.texi (ADDENDUM): switch to @heading from @appendixsubsec,
2025         to avoid sectioning errors.
2026         * doc/lgpl.texi, gpl.texi (Copying): downcase @unnumbered title.
2027         [ifinfo]: blank line after @center-ed titles.
2028         * doc/lgpl.texi (Library Copying): Rename main node to GNU LGPL.
2029         Spell FSF address consistently with others.
2030         (These changes approved by rms.)
2031
2032 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2033
2034         Speed up by a factor of 1.61.
2035         * gnulib-tool (func_modules_transitive_closure): Rewrite to not check
2036         already checked module names again.
2037
2038 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2039
2040         Speed up by a factor of 1.13.
2041         * gnulib-tool (func_import): Rewrite all old_files at once; likewise
2042         for new_files, and the input to func_add_or_update.
2043
2044 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2045
2046         * gnulib-tool (func_all_modules, func_modules_to_filelist, func_import,
2047         func_create_testdir, ...): Change 'sort | uniq' to 'sort -u'.
2048
2049 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
2050
2051         * modules/mkancesdirs (Depends-on): Add fcntl.
2052         * modules/savewd: New file.
2053         * MODULES.html.sh (File system functions): Add savewd.
2054
2055         * modules/configmake (Makefile.am): Add support for the
2056         Automake-supplied PKGLIBDIR, PKGINCLUDEDIR, PKGDATADIR.
2057
2058 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
2059
2060         * m4/savewd.m4: New file.
2061
2062 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
2063
2064         * lib/dirchownmod.c: Don't include fcntl.h; no longer needed.
2065         (dirchownmod): New arg FD.  All callers changed.
2066         Use FD rather than opening the directory ourself, as opening is
2067         now the caller's responsibility.
2068         * lib/dirchownmod.h: Likewise.
2069         * lib/mkancesdirs.c: Include <sys/types.h>, for portability to older
2070         hosts that require <sys/types.h> before <sys/stat.h>.  Include
2071         fcntl.h, savewd.h, and unistd.h, not dirname.h and stat-macros.h.
2072         (test_dir): Remove.
2073         (mkancesdirs): Return length of prefix of FILE that has already
2074         been made, or -2 if there is a child doing the work.  Redo
2075         algorithm so that it is O(N) rather than O(N**2).  Optimize away
2076         ".", and treat ".." specially since it might stray back into
2077         already-created areas.  Use a subprocess if necessary.  New arg
2078         WD; all users changed.  MAKE_DIR function should now return 1
2079         if it creates a directory that is not readable.  Return -2 if
2080         a child process is spun off.
2081         * lib/mkancesdirs.h: Include <stddef.h>, for ptrdiff_t.
2082         Adjust signature to match code.
2083         * lib/mkdir-p.c: Include dirname.h, for IS_ABSOLUTE_FILE_NAME.
2084         (make_dir_parents): Use a subprocess if necessary.  New arg WD;
2085         all users changed.
2086         * lib/savewd.c, lib/savewd.h: New files.
2087
2088 2006-09-15  Jim Meyering  <jim@meyering.net>
2089
2090         * modules/rename-dest-slash: New module.
2091         * MODULES.html.sh (posix_compat): Add it here.
2092
2093         * modules/rename: Reflect vb_FUNC_RENAME -> gl_FUNC_RENAME change.
2094
2095 2006-09-15  Jim Meyering  <jim@meyering.net>
2096
2097         * m4/rename-dest-slash.m4 (gl_FUNC_RENAME_TRAILING_DEST_SLASH): New
2098         file.
2099
2100         * m4/rename.m4 (gl_FUNC_RENAME): Rename from vb_FUNC_RENAME.
2101
2102 2006-09-15  Jim Meyering  <jim@meyering.net>
2103
2104         * lib/rename-dest-slash.c (has_trailing_slash): Use
2105         FILE_SYSTEM_PREFIX_LEN, for non-POSIX systems.
2106         (rpl_rename_dest_slash): Perform the cheaper trailing slash
2107         test before testing whether SRC is a directory.
2108         Suggestions from Bruno Haible.
2109
2110         Avoid a warning about an unused variable.
2111         * lib/regex_internal.c (re_dfa_add_node): Move declaration of "type"
2112         into the #ifdef block where it's used.
2113
2114         * lib/rename-dest-slash.c: New file.
2115
2116 2006-09-14  Bruno Haible  <bruno@clisp.org>
2117
2118         * lib/allocsa.c: Include <config.h> unconditionally.
2119         * lib/asnprintf.c: Likewise.
2120         * lib/asprintf.c: Likewise.
2121         * lib/c-strcasecmp.c: Likewise.
2122         * lib/c-strcasestr.c: Likewise.
2123         * lib/c-strncasecmp.c: Likewise.
2124         * lib/c-strstr.c: Likewise.
2125         * lib/classpath.c: Likewise.
2126         * lib/clean-temp.c: Likewise.
2127         * lib/concatpath.c: Likewise.
2128         * lib/copy-file.c: Likewise.
2129         * lib/csharpcomp.c: Likewise.
2130         * lib/csharpexec.c: Likewise.
2131         * lib/execute.c: Likewise.
2132         * lib/fatal-signal.c: Likewise.
2133         * lib/findprog.c: Likewise.
2134         * lib/fwriteerror.c: Likewise.
2135         * lib/gl_array_list.c: Likewise.
2136         * lib/gl_array_oset.c: Likewise.
2137         * lib/gl_avltree_list.c: Likewise.
2138         * lib/gl_avltree_oset.c: Likewise.
2139         * lib/gl_avltreehash_list.c: Likewise.
2140         * lib/gl_carray_list.c: Likewise.
2141         * lib/gl_linked_list.c: Likewise.
2142         * lib/gl_linkedhash_list.c: Likewise.
2143         * lib/gl_list.c: Likewise.
2144         * lib/gl_oset.c: Likewise.
2145         * lib/gl_rbtree_list.c: Likewise.
2146         * lib/gl_rbtree_oset.c: Likewise.
2147         * lib/gl_rbtreehash_list.c: Likewise.
2148         * lib/imaxabs.c: Likewise.
2149         * lib/imaxdiv.c: Likewise.
2150         * lib/javacomp.c: Likewise.
2151         * lib/javaexec.c: Likewise.
2152         * lib/javaversion.c: Likewise.
2153         * lib/linebreak.c: Likewise.
2154         * lib/localcharset.c: Likewise.
2155         * lib/lock.c: Likewise.
2156         * lib/mbchar.c: Likewise.
2157         * lib/mbswidth.c: Likewise.
2158         * lib/mkdtemp.c: Likewise.
2159         * lib/pipe.c: Likewise.
2160         * lib/printf-args.c: Likewise.
2161         * lib/printf-parse.c: Likewise.
2162         * lib/progname.c: Likewise.
2163         * lib/progreloc.c: Likewise.
2164         * lib/readlink.c: Likewise.
2165         * lib/sh-quote.c: Likewise.
2166         * lib/stpcpy.c: Likewise.
2167         * lib/stpncpy.c: Likewise.
2168         * lib/strcasecmp.c: Likewise.
2169         * lib/strcasestr.c: Likewise.
2170         * lib/strcspn.c: Likewise.
2171         * lib/striconv.c: Likewise.
2172         * lib/strncasecmp.c: Likewise.
2173         * lib/strnlen1.c: Likewise.
2174         * lib/strstr.c: Likewise.
2175         * lib/strtok_r.c: Likewise.
2176         * lib/tls.c: Likewise.
2177         * lib/tmpdir.c: Likewise.
2178         * lib/unicodeio.c: Likewise.
2179         * lib/unsetenv.c: Likewise.
2180         * lib/vasnprintf.c: Likewise.
2181         * lib/vasprintf.c: Likewise.
2182         * lib/wait-process.c: Likewise.
2183         * lib/xallocsa.c: Likewise.
2184         * lib/xsetenv.c: Likewise.
2185         * lib/xstriconv.c: Likewise.
2186
2187 2006-09-13  Simon Josefsson  <jas@extundo.com>
2188
2189         * m4/getdate.m4: Don't AC_LIBOBJ([getdate]), automake takes care of
2190         that internally, suggested by Ralf Wildenhues
2191         <Ralf.Wildenhues@gmx.de>.
2192
2193 2006-09-13  Simon Josefsson  <jas@extundo.com>
2194
2195         * gnulib-tool (func_emit_lib_Makefile_am): Use $(LIBOBJS), not
2196         @LIBOBJS@.
2197         Suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
2198
2199 2006-09-13  Paul Eggert  <eggert@cs.ucla.edu>
2200
2201         * lib/_fpending.c: Include <config.h> unconditionally, since we no
2202         longer worry about uses that don't define HAVE_CONFIG_H.
2203         * lib/acl.c, lib/alloca.c, lib/argmatch.c, lib/atexit.c:
2204         * lib/backupfile.c, lib/basename.c, lib/c-stack.c, lib/c-strtod.c:
2205         * lib/calloc.c,lib/ canon-host.c, lib/canonicalize.c, lib/chdir-long.c:
2206         * lib/chdir-safer.c, lib/chown.c, lib/cloexec.c, lib/close-stream.c:
2207         * lib/closeout.c, lib/creat-safer.c, lib/cycle-check.c, lib/diacrit.c:
2208         * lib/dirchownmod.c, lib/dirfd.c, lib/dirname.c, lib/dup-safer.c:
2209         * lib/dup2.c, lib/error.c, lib/euidaccess.c, lib/exclude.c:
2210         * lib/exitfail.c, lib/fchmodat.c, lib/fchown-stub.c, lib/fd-safer.c:
2211         * lib/file-type.c, lib/fileblocks.c, lib/filemode.c, lib/filenamecat.c:
2212         * lib/fnmatch.c, lib/fopen-safer.c, lib/fprintftime.c, lib/free.c:
2213         * lib/fsusage.c, lib/ftruncate.c, lib/fts-cycle.c, lib/fts.c:
2214         * lib/full-write.c, lib/gai_strerror.c, lib/getcwd.c, lib/getdate.y:
2215         * lib/getdomainname.c, lib/getgroups.c, lib/gethostname.c:
2216         * lib/gethrxtime.c, lib/getloadavg.c, lib/getlogin_r.c:
2217         * lib/getndelim2.c, lib/getnline.c, lib/getopt.c, lib/getopt1.c:
2218         * lib/getpass.c, lib/gettime.c, lib/gettimeofday.c, lib/getugroups.c:
2219         * lib/getusershell.c, lib/glob.c, lib/group-member.c:
2220         * lib/hard-locale.c, lib/hash-pjw.c, lib/hash.c, lib/human.c:
2221         * lib/idcache.c, lib/inet_ntop.c, lib/inet_pton.c, lib/inttostr.c:
2222         * lib/isdir.c, lib/lchown.c, lib/linebuffer.c, lib/long-options.c:
2223         * lib/lstat.c, lib/malloc.c, lib/md5.c, lib/memcasecmp.c, lib/memchr.c:
2224         * lib/memcmp.c, lib/memcoll.c, lib/memcpy.c, lib/memmove.c:
2225         * lib/memrchr.c, lib/mkancesdirs.c, lib/mkdir-p.c, lib/mkdir.c:
2226         * lib/mkdirat.c, lib/mkstemp-safer.c, lib/mkstemp.c, lib/modechange.c:
2227         * lib/mountlist.c, lib/nanosleep.c, lib/obstack.c, lib/open-safer.c:
2228         * lib/openat-die.c, lib/openat.c, lib/pagealign_alloc.c, lib/physmem.c:
2229         * lib/pipe-safer.c, lib/posixtm.c, lib/posixver.c, lib/putenv.c:
2230         * lib/quote.c, lib/quotearg.c, lib/raise.c, lib/readtokens.c:
2231         * lib/readtokens0.c, lib/readutmp.c, lib/realloc.c, lib/regex.c:
2232         * lib/rename.c, lib/rmdir.c, lib/rpmatch.c, lib/safe-read.c:
2233         * lib/same.c, lib/save-cwd.c, lib/savedir.c, lib/setenv.c:
2234         * lib/settime.c, lib/sha1.c, lib/sig2str.c, lib/snprintf.c:
2235         * lib/strdup.c, lib/strerror.c, lib/strftime.c, lib/stripslash.c:
2236         * lib/strndup.c, lib/strnlen.c, lib/strpbrk.c, lib/strtod.c:
2237         * lib/strtoimax.c, lib/strtol.c, lib/strverscmp.c, lib/tempname.c:
2238         * lib/time_r.c, lib/timegm.c, lib/tmpfile-safer.c, lib/unlinkdir.c:
2239         * lib/userspec.c, lib/utime.c, lib/utimecmp.c, lib/utimens.c:
2240         * lib/version-etc-fsf.c, lib/version-etc.c, lib/xalloc-die.c:
2241         * lib/xgetcwd.c, lib/xgethostname.c, lib/xmalloc.c, lib/xmemcoll.c:
2242         * lib/xnanosleep.c, lib/xreadlink.c, lib/xstrtod.c, lib/xstrtoimax.c:
2243         * lib/xstrtol.c, lib/xstrtoumax.c, lib/yesno.c:
2244         Likewise.
2245
2246 2006-09-13  Eric Blake  <ebb9@byu.net>
2247
2248         * lib/getopt.c: Fix typo in last commit.
2249
2250 2006-09-12  Sergey Poznyakoff  <gray@gnu.org.ua>
2251
2252         * lib/argp-help.c (argp_doc): Make sure NULL is not passed to
2253         dgettext.
2254
2255 2006-09-12  Jim Meyering  <jim@meyering.net>
2256
2257         * lib/nanosleep.c: Include <sys/types.h> before sys/select.h, to avoid
2258         compilation failure (due to use of pid_t in latter) on NetBSD 1.6.
2259         Reported by Nelson H. F. Beebe.
2260
2261 2006-09-10  Sergey Poznyakoff  <gray@gnu.org.ua>
2262
2263         * lib/argp-parse.c (__argp_parse) [!_LIBC]: Make sure
2264         program_invocation_name and program_invocation_short_name are
2265         initialized.
2266         * lib/argp-namefrob.h: Move declarations of program_invocation_name
2267         and program_invocation_short_name to argp.h, so they are visible
2268         to user programs.
2269         * lib/argp.h: Likewise
2270
2271 2006-09-10  Bruno Haible  <bruno@clisp.org>
2272
2273         * modules/mkdtemp (Files): Remove m4/ulonglong.m4, m4/stdint_h.m4,
2274         m4/inttypes_h.m4, m4/uintmax_t.m4.
2275
2276 2006-09-10  Bruno Haible  <bruno@clisp.org>
2277
2278         * m4/mkdtemp.m4 (gl_PREREQ_MKDTEMP): Don't require
2279         gl_AC_TYPE_UINTMAX_T.
2280
2281 2006-09-10  Bruno Haible  <bruno@clisp.org>
2282
2283         * lib/mkdtemp.c: Include <stdint.h> always. Don't include <inttypes.h>.
2284
2285 2006-09-09  Sergey Poznyakoff  <gray@gnu.org.ua>
2286
2287         * lib/argp.h (struct argp): Document the N_("..") "\v" N_("..")
2288         convention.  Text proposed by Bruno Haible.
2289         (struct argp_option): Document the use of N_() wrappers.
2290
2291         * lib/argp-help.c (argp_doc): Split the untranslated doc string on
2292         '\v', and translate the two parts separately, instead of feeding
2293         the whole string to gettext.  This allows to exclude
2294         '\v' from the strings visible to the translator by writing doc
2295         strings as N_("..") "\v" N_("..").
2296
2297 2006-09-09  Paul Eggert  <eggert@cs.ucla.edu>
2298
2299         * config/srclist.txt: Undo latest change; the bug was fixed.
2300
2301 2006-09-09  Bruno Haible  <bruno@clisp.org>
2302
2303         * gnulib-tool (func_emit_lib_Makefile_am): Eliminate lib_LDFLAGS
2304         assignments if building a library without libtool.
2305         (func_emit_tests_Makefile_am): Likewise. Handle lib_* variables as
2306         in func_emit_lib_Makefile_am.
2307         (func_import): When building a static library libfoo.a, arrange to
2308         define variables LIBFOO_LIBDEPS and LIBFOO_LTLIBDEPS.
2309         (func_create_testdir): Likewise.
2310         * modules/gc (configure.ac, Makefile.am): If building statically,
2311         augment gl_libdeps and gl_ltlibdeps instead of lib_LDFLAGS.
2312         * modules/iconvme (configure.ac, Makefile.am): Likewise.
2313         * modules/striconv (configure.ac, Makefile.am): Likewise.
2314         Based on a suggestion by Ralf Wildenhues.
2315
2316 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
2317
2318         * m4/mktime.m4 (AC_FUNC_MKTIME): Sync from Autoconf.
2319         Check for unistd.h too, since Autoconf doesn't assume POSIX.
2320         Also:
2321
2322         2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
2323         Add year_2050_test to catch glibc bug 2821
2324         <http://sourceware.org/bugzilla/show_bug.cgi?id=2821>.
2325
2326         2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
2327         Prefer #ifdef to #if.
2328
2329         2006-04-02  Paul Eggert  <eggert@cs.ucla.edu>
2330         Return from 'main' instead of calling 'exit'.
2331
2332 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
2333
2334         * lib/mktime.c (guess_time_tm): Fix bug where mktime
2335         returned the maximum time_t value rather than (time_t) -1.
2336         Problem originally reported by William Bardwell
2337         <http://sourceware.org/bugzilla/show_bug.cgi?id=2821>.
2338
2339         * lib/isapipe.h (HAVE_FIFO_PIPES) [!defined HAVE_FIFO_PIPES]:
2340         Moved to here ...
2341         * lib/isapipe.c (HAVE_FIFO_PIPES) [!defined HAVE_FIFO_PIPES]:
2342         ... from here.
2343
2344 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
2345
2346         * config/srclist.txt: Temporarily comment out mktime.c until glibc bug
2347         2821 is fixed.
2348
2349 2006-09-08  Jim Meyering  <jim@meyering.net>
2350
2351         Don't make generated files read-only.  That would bother too many
2352         people.  However, do retain the ability to work when targets are
2353         read-only: remove the destination and temporary files before writing
2354         them (when generated via sed or echo), or by using the -f option for
2355         both cp and mv commands.  Suggestion to use -f from Paul Eggert.
2356         * modules/alloca-opt, modules/argz, modules/arpa_inet:
2357         * modules/byteswap, modules/configmake, modules/fcntl:
2358         * modules/fnmatch, modules/getopt, modules/glob, modules/inttypes:
2359         * modules/localcharset, modules/netinet_in, modules/poll:
2360         * modules/stdbool, modules/stdint, modules/sys_select:
2361         * modules/sys_socket, modules/sys_stat, modules/sysexits:
2362
2363 2006-09-08  Jim Meyering  <jim@meyering.net>
2364
2365         Avoid new build failure on FreeBSD 6.0.
2366         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Include
2367         <sys/param.h> when testing whether getmntinfo uses statvfs.  Patch by
2368         Pavel Tsekov, in <http://savannah.gnu.org/bugs/?17643>.
2369
2370 2006-09-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2371
2372         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Don't use plain echo.
2373
2374 2006-09-07  Jim Meyering  <jim@meyering.net>
2375
2376         Fix global typo in last change: use chmod u-w, not chmod u-x.
2377         Spotted by Paul Eggert and Bruce Korb.
2378         * modules/alloca-opt, modules/argz, modules/arpa_inet:
2379         * modules/byteswap, modules/configmake, modules/fcntl:
2380         * modules/fnmatch, modules/getopt, modules/glob, modules/inttypes:
2381         * modules/localcharset, modules/netinet_in, modules/poll:
2382         * modules/stdbool, modules/stdint, modules/sys_select:
2383         * modules/sys_socket, modules/sys_stat, modules/sysexits:
2384
2385 2006-09-06  Jim Meyering  <jim@meyering.net>
2386
2387         Make generated files be read-only.
2388         * modules/alloca-opt (Makefile.am): Work also when $@ is read-only.
2389         Ensure that each generated file is now read-only.
2390         * modules/argz: Likewise.
2391         * modules/arpa_inet: Likewise.
2392         * modules/byteswap: Likewise.
2393         * modules/configmake: Likewise.
2394         * modules/fcntl: Likewise.
2395         * modules/fnmatch: Likewise.
2396         * modules/getopt: Likewise.
2397         * modules/glob: Likewise.
2398         * modules/inttypes: Likewise.
2399         * modules/netinet_in: Likewise.
2400         * modules/poll: Likewise.
2401         * modules/stdbool: Likewise.
2402         * modules/stdint: Likewise.
2403         * modules/sys_select: Likewise.
2404         * modules/sys_socket: Likewise.
2405         * modules/sys_stat: Likewise.
2406         * modules/sysexits: Likewise.
2407         * modules/localcharset: Same as above, but continue using temporary
2408         file named "t-$@" (why different?) rather than the "$@-t" used
2409         everywhere else.
2410
2411         * modules/sysexits (Makefile.am): Replace literal occurrences
2412         of "sysexit.h" more readable, and more consistent, "$@".
2413
2414 2006-09-06  Bruno Haible  <bruno@clisp.org>
2415
2416         * modules/striconv: New file.
2417         * modules/xstriconv: New file.
2418         * MODULES.html.sh (Internationalization functions): Add striconv,
2419         xstriconv.
2420
2421 2006-09-06  Bruno Haible  <bruno@clisp.org>
2422
2423         * modules/gc (Makefile.am): Augment lib_LDFLAGS, not lib_LIBADD.
2424         * modules/iconvme (Makefile.am): Likewise. Also handle the case of
2425         not using libtool correctly.
2426
2427 2006-09-06  Bruno Haible  <bruno@clisp.org>
2428
2429         * lib/striconv.h: New file.
2430         * lib/striconv.c: New file, merging iconvme.c with GNU gettext's
2431         iconvstring.c.
2432         * lib/xstriconv.h: New file.
2433         * lib/xstriconv.c: New file.
2434
2435 2006-09-06  Bruno Haible  <bruno@clisp.org>
2436
2437         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
2438         lib_..._LDFLAGS.
2439
2440 2006-09-05  Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
2441
2442         * lib/argz_.h: Sync from Libtool.
2443
2444         2006-09-04  George Bosilca <bosilca@cs.utk.edu>
2445                 and Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
2446
2447         * lib/libltdl/argz_.h: It's __cplusplus, not _cplusplus.
2448
2449 2006-09-05  Davide Angelocola <davide.angelocola@tiscali.it>
2450
2451         * modules/trim: New file.
2452
2453 2006-09-05  Davide Angelocola <davide.angelocola@tiscali.it>
2454
2455         * lib/trim.h: New file.
2456         * lib/trim.c: New file.
2457
2458 2006-09-05  Bruno Haible  <bruno@clisp.org>
2459
2460         * MODULES.html.sh (String handling): Add trim.
2461
2462 2006-09-04  Karl Berry  <karl@gnu.org>
2463
2464         * config/srclist.txt (signed.m4, gettext.m4): changes not propagated
2465         until next release.
2466
2467 2006-09-03  Bruno Haible  <bruno@clisp.org>
2468
2469         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Locate mingw shared libraries
2470         correctly.
2471
2472 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
2473
2474         * m4/getloadavg.m4 (gl_GETLOADAVG): Use CONFIGURING_GETLOADAVG,
2475         not gl_GETLOADAVG.  Omit unneeded semicolons.
2476         Problems reported by Ralf Wildenhues in
2477         <http://lists.gnu.org/archive/html/bug-gnulib/2006-09/msg00000.html>.
2478         (gl_PREREQ_GETLOADAVG): Use AC_DEFUN, not m4_define.  Put
2479         at the end, which is the usual gnulib style.
2480
2481         * m4/fstypename.m4 (gl_FSTYPENAME): Use AC_CHECK_MEMBERS instead
2482         of doing all the work ourselves.
2483         * m4/fsusage.m4 (gl_PREREQ_FSUSAGE_EXTRA): Don't check for
2484         sys/statvfs.h since the code doesn't use HAVE_SYS_STATVFS_H.
2485
2486 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
2487
2488         * lib/getloadavg.c: Use CONFIGURING_GETLOADAVG, not gl_GETLOADAVG.
2489         Problem reported by Ralf Wildenhues in
2490         <http://lists.gnu.org/archive/html/bug-gnulib/2006-09/msg00000.html>.
2491
2492         * lib/mountlist.c: All uses of HAVE_F_FSTYPENAME_IN_STATFS replaced by
2493         HAVE_STRUCT_STATFS_F_FSTYPENAME.
2494
2495 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
2496
2497         * gnulib-tool (func_emit_lib_Makefile_am): Fix typos in
2498         yesterday's patch by changing test -n to test -z.
2499
2500 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
2501
2502         * modules/getloadavg (Files): Add m4/getloadavg.m4.
2503         (configure.ac): AC_FUNC_GETLOADAVG -> gl_GETLOADAVG, as
2504         the former is now obsolescent.
2505
2506         * modules/chdir-long (Depends-on): Add fcntl.
2507
2508 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
2509
2510         * m4/fnmatch.m4: Add comment that Autoconf AC_FUNC_FNMATCH is
2511         obsolescent, and programs should use gnulib instead.
2512         * m4/getloadavg.m4: New file, with contents taken from Autoconf
2513         but with prefixes changed.
2514
2515 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
2516
2517         * lib/getloadavg.c [defined gl_GETLOADAVG]: Don't include config.h
2518         or stdbool.h, because they might not exist while configuring.
2519
2520         * lib/chdir-long.c: Include <fcntl.h>, for O_DIRECTORY.
2521         Don't include unistd.h or limits.h; not needed, since chdir-long.h
2522         does that for us.
2523         (O_DIRECTORY): Remove.
2524
2525 2006-08-31  Eric Blake  <ebb9@byu.net>
2526
2527         * gnulib-tool: Don't let emacs change spaces to TAB.
2528
2529 2006-08-31  Bruno Haible  <bruno@clisp.org>
2530
2531         * gnulib-tool: When calling func_import more than once, do it in a
2532         subshell.
2533         Reported by Eric Blake <ebb9@byu.net>.
2534
2535 2006-08-31  Bruno Haible  <bruno@clisp.org>
2536
2537         * gnulib-tool (nl): Remove variable.
2538         (sed_transform_lib_file): Use more robust test for config-h module.
2539         (func_import): Fix typo in 2006-08-25 patch.
2540
2541 2006-08-31  Bruno Haible  <bruno@clisp.org>
2542
2543         * gnulib-tool (func_emit_lib_Makefile_am): When --makefile-name was
2544         specified, augment Makefile.am variables instead of assigning them.
2545
2546 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
2547
2548         Work around a bug in both the Linux and SunOS 64-bit kernels:
2549         nanosleep mishandles sleeps for longer than 2**31 seconds.
2550         Problem reported by Frank v Waveren in
2551         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00298.html>.
2552         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Require gl_CLOCK_TIME.
2553         Check for nanosleep bug.
2554         (LIB_NANOSLEEP): Append clock_gettime library if needed.
2555
2556 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
2557
2558         Work around a bug in both the Linux and SunOS 64-bit kernels:
2559         nanosleep mishandles sleeps for longer than 2**31 seconds.
2560         Problem reported by Frank v Waveren in
2561         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00298.html>.
2562         * lib/nanosleep.c (BILLION): New constant.
2563         (getnow) [HAVE_BUG_BIG_NANOSLEEP]: New functions.
2564         (rpl_nanosleep) [HAVE_BUG_BIG_NANOSLEEP]: Completely new
2565         implementation.
2566
2567 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
2568
2569         * modules/nanosleep (Depends-on): Add gettime.
2570
2571 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
2572         and Simon Josefsson  <jas@extundo.com>
2573         and Oskar Liljeblad  <oskar@osk.mine.nu>
2574
2575         * MODULES.html.sh (Support for building documentation): Add gpl, lgpl.
2576         * gnulib-tool (func_import): New license type 'unmodifiable license
2577         text'.
2578         * modules/fdl: Use it.  Longer description.
2579         * module/gpl, module/lgpl: New files.
2580
2581 2006-08-30  Jim Meyering  <jim@meyering.net>
2582
2583         * lib/isapipe.c (isapipe): Rename local s/fd/fd_pair/ to avoid
2584         shadowing the parameter.
2585
2586 2006-08-29  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2587
2588         Sync from Libtool:
2589
2590         2006-08-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2591
2592         * lib/libltdl/argz.c: Use `#ifdef HAVE_CONFIG_H', to facilitate code
2593         sharing with gnulib.  Report by Eric Blake.
2594
2595 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
2596
2597         * modules/isapipe: New file.
2598         * MODULES.html.sh (File descriptor based Input/Output): Add isapipe.
2599
2600 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
2601
2602         * modules/configmake (Makefile.am): Add a comment, and omit
2603         the CONFIGMAKE_ prefix from generated macro names.  Suggested
2604         by Bruno Haible.
2605
2606 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
2607
2608         * m4/isapipe.m4: New file.
2609
2610 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
2611
2612         * lib/isapipe.c, lib/isapipe.h: New files.
2613
2614 2006-08-29  Jim Meyering  <jim@meyering.net>
2615
2616         * modules/configmake (Makefile.am): Make configmake.h depend on
2617         Makefile.  Otherwise, a stale configmake.h could hang around.
2618
2619 2006-08-29  Eric Blake  <ebb9@byu.net>
2620
2621         * lib/error.c (error_at_line, print_errno_message): Match libc, after
2622         resolution of upstream bug 3044.
2623
2624 2006-08-29  Bruno Haible  <bruno@clisp.org>
2625
2626         * modules/localcharset (Depends-on): Add configmake.
2627         (Makefile.am): Remove setting of LIBDIR through DEFS.
2628
2629 2006-08-29  Bruno Haible  <bruno@clisp.org>
2630
2631         * lib/localcharset.c: Include configmake.h in order to get LIBDIR
2632         defined.
2633
2634 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
2635
2636         * modules/fcntl: New file.
2637         * modules/chdir-safer (Depends-on): Add fcntl.
2638         * modules/fts: Likewise.
2639         * modules/mkdir-p: Likewise.
2640
2641         * modules/stdint (Makefile.am): Do not substitute ABSOLUTE_INTTYPES_H.
2642         This undoes the most recent change, since we're now addressing the
2643         problem in a different way.
2644
2645         * gnulib-tool (emit_lib_Makefile_am): Don't put $makefile_name
2646         into output, since the output might be called Makefile.am even
2647         if $makefile_name is something different.
2648         (func_import): Use $makefile_am rather than
2649         ${makefile_name-Makefile.am}, to fix a bug where makefile_name was
2650         empty.
2651
2652         * modules/inttypes (Files): Add m4/inttypes-h.m4.
2653
2654 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
2655
2656         * m4/inttypes.m4 (gl_INTTYPES_H): Move ABSOLUTE_INTTYPES_H code here...
2657         * m4/stdint.m4 (gl_STDINT_H): ... from here.  This undoes the most
2658         recent change to stdint.m4, since we're now addressing the problem in a
2659         different way.
2660
2661 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
2662
2663         * m4/fcntl_h.m4: New file.
2664
2665 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
2666
2667         * lib/fcntl_.h: New file.
2668         * lib/chdir-safer.c (O_DIRECTORY, O_NOFOLLOW): Remove, now that we have
2669         the fcntl module.
2670         * lib/dirchownmod.c: Likewise.
2671         * lib/fts.c: Likewise.
2672
2673         * lib/inttypes_.h [defined _GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H]:
2674         Include @ABSOLUTE_INTTYPES_H@ if available, but do nothing else.
2675         * lib/stdint_.h (_GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H): Define
2676         just before including <inttypes.h>, to avoid circular inclusion.
2677
2678 2006-08-28  Jim Meyering  <jim@meyering.net>
2679
2680         * doc/visibility.texi: Actually read and correct the grammar of the
2681         sentence affected by yesterday's change.
2682
2683 2006-08-28  Eric Blake  <ebb9@byu.net>
2684
2685         * modules/inttypes (Makefile.am): Fix sed error when inttypes.h
2686         needs wrapper.
2687
2688 2006-08-28  Eric Blake  <ebb9@byu.net>
2689
2690         * m4/inttypes.m4 (gl_INTTYPES_H): Fix missing #endif.
2691
2692 2006-08-28  Eric Blake  <ebb9@byu.net>
2693
2694         * m4/codeset.m4 (AM_LANGINFO_CODESET): Avoid compiler warning.
2695
2696 2006-08-28  Bruno Haible  <bruno@clisp.org>
2697
2698         * modules/c-strstr: New file, from GNU gettext.
2699         * MODULES.html.sh (String handling): Add c-strstr.
2700
2701 2006-08-28  Bruno Haible  <bruno@clisp.org>
2702
2703         * m4/inttypes.m4 (gl_INTTYPES_H): Don't test for the existence of SCNX*
2704         macros.
2705         Reported by Eric Blake.
2706
2707 2006-08-28  Bruno Haible  <bruno@clisp.org>
2708
2709         * lib/vasnprintf.c (EOVERFLOW): Remove definition.
2710         (VASNPRINTF): Return a string of length > INT_MAX without failing.
2711         * lib/vasprintf.c: Include errno.h, limits.h.
2712         (EOVERFLOW): New fallback definition.
2713         (vasprintf): Test here whether the string length is > INT_MAX.
2714         * lib/vsnprintf.c: Include errno.h, limits.h.
2715         (EOVERFLOW): New fallback definition.
2716         (vsnprintf): Fix bug when generated string was too long for the buffer.
2717         Test here whether the string length is > INT_MAX.
2718
2719 2006-08-28  Bruno Haible  <bruno@clisp.org>
2720
2721         * lib/inttypes_.h (SCNX*): Remove definitions.
2722         Reported by Eric Blake.
2723
2724 2006-08-28  Bruno Haible  <bruno@clisp.org>
2725
2726         * lib/c-strstr.h: New file, from GNU gettext.
2727         * lib/c-strstr.c: New file, from GNU gettext.
2728
2729 2006-08-28  Bruno Haible  <bruno@clisp.org>
2730
2731         * gnulib-tool: Reorder some statements.
2732
2733 2006-08-28  Bruno Haible  <bruno@clisp.org>
2734
2735         * gnulib-tool: New option --makefile-name.
2736         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am): Use
2737         $makefile_name.
2738         (func_import): Write $makefile_name to the cache file, and read it from
2739         there unless explicitly specified. Use $makefile_name as file name
2740         instead of Makefile.am. Adjust the recommendations accordingly.
2741
2742 2006-08-28  Bruno Haible  <bruno@clisp.org>
2743
2744         * gnulib-tool (func_verify_module): Check against misapplying patch.
2745
2746 2006-08-28  Bruno Haible  <bruno@clisp.org>
2747
2748         * gnulib-tool (func_relativize, func_relconcat): New functions.
2749         Give an error if --local-dir is given with --update.
2750         Remove trailing slashes from $local_gnulib_dir.
2751         (func_import): Store the relativized $local_gnulib_dir in
2752         gnulib-cache.m4, and read it from there if not specified explicitly.
2753
2754 2006-08-28  Bruno Haible  <bruno@clisp.org>
2755
2756         * gnulib-tool (func_get_tests_module): Don't assume that $gnulib_dir
2757         is the current directory. Respect also $local_gnulib_dir.
2758
2759 2006-08-28  Bruno Haible  <bruno@clisp.org>
2760             Simon Josefsson  <jas@extundo.com>
2761
2762         BeOS portability.
2763         * lib/getaddrinfo.c (PF_INET, PF_UNSPEC): New macros.
2764
2765 2006-08-27  Jim Meyering  <jim@meyering.net>
2766
2767         * doc/visibility.texi: Remove duplicate word: "pointer".
2768
2769 2006-08-26  Bruno Haible  <bruno@clisp.org>
2770
2771         * modules/inttypes (Files): Add lib/inttypes_.h, remove lib/inttypes.h.
2772         Add m4/inttypes.m4, remove m4/_inttypes_h.m4 and m4/include_next.m4.
2773         (Makefile.am): Create inttypes.h from inttypes_.h.
2774         * modules/stdint (Makefile.am): Substitute also ABSOLUTE_INTTYPES_H.
2775
2776         * modules/imaxabs: New file.
2777
2778         * modules/imaxdiv: New file.
2779
2780 2006-08-26  Bruno Haible  <bruno@clisp.org>
2781
2782         * m4/inttypes.m4: New file.
2783         * m4/_inttypes_h.m4: Remove file.
2784         * m4/inttypes-pri.m4 (gt_INTTYPES_PRI): Also AC_SUBST
2785         PRI_MACROS_BROKEN.
2786         * m4/stdint.m4 (gl_STDINT_H): Define also ABSOLUTE_INTTYPES_H.
2787
2788         * m4/imaxabs.m4: New file.
2789
2790         * m4/imaxdiv.m4: New file.
2791
2792 2006-08-26  Bruno Haible  <bruno@clisp.org>
2793
2794         * lib/inttypes_.h: New file.
2795         * lib/inttypes.h: Remove file.
2796         * lib/stdint_.h: Include <inttypes.h> through its absolute filename.
2797
2798         * lib/imaxabs.c: New file.
2799
2800         * lib/imaxdiv.c: New file.
2801
2802 2006-08-25  Paul Eggert  <eggert@cs.ucla.edu>
2803
2804         New config-h module, so that "make" output needn't be cluttered
2805         by -DHAVE_CONFIG_H.
2806         * MODULES.html.sh (Support for building libraries and executables):
2807         Add config-h.
2808         * modules/config-h: New file.
2809         * gnulib-tool (nl, sed_transform_lib_file): New vars.
2810         (func_import): Turn "#ifdef HAVE_CONFIG_H" to "#if 1" if
2811         the config-h module is used.
2812
2813         New configmake module, so that "make" output needn't be cluttered
2814         by fluff like '-DLIBDIR=\"/usr/local/lib\"'.
2815         * MODULES.html.sh (Support for building libraries and executables):
2816         Add configmake.
2817         * modules/configmake: New file.
2818
2819 2006-08-25  Paul Eggert  <eggert@cs.ucla.edu>
2820
2821         * m4/config-h.m4: New file.
2822
2823 2006-08-24  Paul Eggert  <eggert@cs.ucla.edu>
2824
2825         * config/srclist.txt: Add elisp-comp.
2826
2827 2006-08-24  Paul Eggert  <eggert@cs.ucla.edu>
2828
2829         * MODULES.html.sh (Support for building libraries and executables):
2830         Add elisp-comp.
2831         * build-aux/elisp-comp: New file.
2832         * modules/elisp-comp: New file.
2833
2834 2006-08-24  Bruno Haible <bruno@clisp.org>
2835
2836         * gnulib-tool (func_create_testdir): Use non-default values of
2837         sourcebase and m4base.
2838
2839 2006-08-24  Bruno Haible <bruno@clisp.org>
2840
2841         * MODULES.html.sh (Compatibility checks for POSIX:2001 functions: Fix
2842         HTML structure.
2843
2844 2006-08-23  Paul Eggert  <eggert@cs.ucla.edu>
2845
2846         * modules/openat (Depends-on): Add lchown.
2847
2848 2006-08-23  Bruno Haible <bruno@clisp.org>
2849
2850         * gnulib-tool (func_import, func_create_testdir): Emit an invocation
2851         of gl_LOCK_EARLY instead of gl_LOCK.
2852
2853 2006-08-23  Bruno Haible  <bruno@clisp.org>
2854
2855         * m4/lock.m4 (gl_LOCK_BODY): Change the default value of gl_use_threads
2856         on OSF/1 to no.
2857         Reported by Stephen Cartwright <sgcartwr@ucalgary.ca>.
2858
2859 2006-08-23  Bruno Haible  <bruno@clisp.org>
2860
2861         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Don't consider BeOS statvfs
2862         as unusable.
2863
2864         * m4/lock.m4 (gl_LOCK_EARLY): Renamed from gl_LOCK.
2865         (gl_LOCK_BODY): Remove gl_PREREQ_LOCK invocation.
2866         (gl_LOCK): New macro.
2867
2868 2006-08-22  Simon Josefsson  <jas@extundo.com>
2869
2870         * modules/gc-md5 (Makefile.am): Need to add md5.h, after changes
2871         to md5 module.
2872
2873 2006-08-22  Simon Josefsson  <jas@extundo.com>
2874
2875         * MODULES.html.sh: Add "Support for maintaining and release
2876         projects".
2877
2878         * build-aux/gnupload: New file, from coreutils.
2879
2880 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
2881
2882         Avoid the need for AC_LIBSOURCES in m4 macros.
2883         * modules/arcfour (EXTRA_DIST): Add arcfour.h.
2884         * modules/arctwo (EXTRA_DIST): Add arctwo.h.
2885         * modules/check-version (EXTRA_DIST): Add check-version.h.
2886         * modules/crc (EXTRA_DIST): Add crc.h.
2887         * modules/des (EXTRA_DIST): Add des.h.
2888         * modules/gc (EXTRA_DIST): Add gc.h.
2889         * modules/getdelim (EXTRA_DIST): Add getdelim.h.
2890         * modules/getline (EXTRA_DIST): Add getline.h.
2891         * modules/getlogin_r (EXTRA_DIST): Add getlogin_r.h.
2892         * modules/hmac-md5 (EXTRA_DIST): Add hmac.h.
2893         * modules/hmac-sha1 (EXTRA_DIST): Add hmac.h.
2894         * modules/md2 (EXTRA_DIST): Add md2.h.
2895         * modules/md4 (EXTRA_DIST): Add md4.h.
2896         * modules/pagealign_alloc (EXTRA_DIST): Add pagealign_alloc.h.
2897         * modules/read-file (EXTRA_DIST): Add read-file.h.
2898         * modules/readline (EXTRA_DIST): Add readline.h.
2899         * modules/rijndael (EXTRA_DIST): Add rijndael-alg-fst.h,
2900         rijndael-api-fst.h.
2901
2902 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
2903
2904         * m4/rijndael.m4 (gl_ARCFOUR):
2905         * m4/arctwo.m4 (gl_ARCTWO):
2906         * m4/check-version.m4 (gl_CHECK_VERSION):
2907         * m4/crc.m4 (gl_CRC):
2908         * m4/des.m4 (gl_DES):
2909         * m4/gc-pbkdf2-sha1.m4 (gl_GC_PBKDF2_SHA1):
2910         * m4/gc.m4 (gl_GC):
2911         * m4/getdelim.m4 (gl_FUNC_GETDELIM):
2912         * m4/getline.m4 (gl_FUNC_GETLINE):
2913         * m4/getlogin_r.m4 (gl_GETLOGIN_R_SUBSTITUTE):
2914         * m4/hmac-md5.m4 (gl_HMAC_MD5):
2915         * m4/hmac-sha1.m4 (gl_HMAC_SHA1):
2916         * m4/md2.m4 (gl_MD2):
2917         * m4/md4.m4 (gl_MD4):
2918         * m4/pagealign_alloc.m4 (gl_PAGEALIGN_ALLOC):
2919         * m4/read-file.m4 (gl_FUNC_READ_FILE):
2920         * m4/readline.m4 (gl_FUNC_READLINE):
2921         * m4/rijndael.m4 (gl_RIJNDAEL):
2922         Don't use AC_LIBSOURCES; instead, rely on the files in ../modules/
2923         to get the necessary .h files and whatnot.
2924
2925 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
2926
2927         * config/srclist.txt: Remove gnupload, since coreutils now syncs from
2928         gnulib rather than the other way around.
2929         * config/srclistvars.sh (COREUTILS): Remove.
2930
2931 2006-08-22  Jim Meyering  <jim@meyering.net>
2932
2933         * modules/mkdir-p (Makefile.am): Fix typo: s/lib+SOURCES/lib_SOURCES/.
2934
2935         * modules/getpass-gnu (Makefile.am): Add getpass.h to EXTRA_DIST.
2936
2937 2006-08-22  Eric Blake  <ebb9@byu.net>
2938
2939         * modules/regexprops-generic: New file.
2940         * MODULES.html.sh (Support for building documentation): List it.
2941
2942 2006-08-22  Eric Blake  <ebb9@byu.net>
2943
2944         * m4/stdint_h.m4 (gl_AC_HEADER_STDINT_H): Avoid compiler warning.
2945         * m4/inttypes_h.m4 (gl_AC_HEADER_INTTYPES_H): Likewise.
2946         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Likewise.
2947         * m4/intmax_t.m4 (gt_AC_TYPE_INTMAX_T): Likewise.
2948
2949 2006-08-22  Bruno Haible <bruno@clisp.org>
2950
2951         * gnulib-tool (func_emit_lib_Makefile_am): Don't treat lib_LIBRARIES
2952         and lib_LTLIBRARIES like the other lib_* variables.
2953
2954 2006-08-22  Bruno Haible <bruno@clisp.org>
2955
2956         * build-aux/x-to-1.in: New file, from GNU gettext.
2957
2958 2006-08-22  Bruno Haible  <bruno@clisp.org>
2959
2960         * m4/readutmp.m4 (gl_READUTMP): Compile readutmp.c only if <utmp.h> or
2961         <utmpx.h> exists.
2962
2963 2006-08-22  Bruno Haible  <bruno@clisp.org>
2964
2965         * lib/readutmp.h: Skip most definitions if neither <utmp.h> nor
2966         <utmpx.h> exists.
2967
2968 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
2969
2970         BeOS portability.
2971         * lib/dirchownmod.c (dirchownmod): Don't use fchmod if it doesn't
2972         exist.
2973         Problem reported by Bruno Haible.
2974
2975 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
2976
2977         Avoid the need for AC_LIBSOURCES in m4 macros.
2978         * modules/acl (EXTRA_DIST): Add acl.h.
2979         * modules/argmatch (Files): Add m4/argmatch.m4.
2980         (configure.ac): Add gl_ARGMATCH.
2981         (EXTRA_DIST): Renamed from lib_SOURCES, for
2982         consistency with the other modules.  Remove argmatch.c.
2983         * modules/backupfile (EXTRA_DIST): Add backupfile.h.
2984         * modules/c-strtod (EXTRA_DIST): Add c-strtod.h.
2985         * modules/c-strtold (EXTRA_DIST): Add c-strtod.c, c-strtod.h.
2986         * modules/canonhost (EXTRA_DIST): Add c-canonhost.h.
2987         * modules/canonicalize (EXTRA_DIST): Add canonicalize.h.
2988         * modules/chdir-long (EXTRA_DIST): Add chdir-long.h.
2989         * modules/chdir-safer (EXTRA_DIST): Add chdir-safer.h.
2990         * modules/cloexec (EXTRA_DIST): Add cloexec.h.
2991         * modules/close-stream (EXTRA_DIST): Add close-stream.h.
2992         * modules/closeout (EXTRA_DIST): Add closeout.h.
2993         * modules/cycle-check (EXTRA_DIST): Add cycle-check.h.
2994         * modules/dev-ino (EXTRA_DIST): Add dev-ino.h.
2995         * modules/dirfd (EXTRA_DIST): Add dirfd.h.
2996         * modules/dirname (EXTRA_DIST): Renamed from lib_SOURCES.  Add
2997         dirname.h; remove basename.c and stripslash.c.
2998         * modules/exclude (EXTRA_DIST): Add exclude.h.
2999         * modules/exitfail (EXTRA_DIST): Add exitfail.h.
3000         * modules/fcntl-safer (EXTRA_DIST): Add fcntl-safer.h fcntl--.h.
3001         * modules/file-type (EXTRA_DIST): Add file-type.h.
3002         * modules/filemode (EXTRA_DIST): Add filemode.h.
3003         * modules/filenamecat (EXTRA_DIST): Add filenamecat.h.
3004         * modules/fopen-safer (EXTRA_DIST): Add stdio-safer.h stdio--.h.
3005         * modules/fpending (EXTRA_DIST): Add __fpending.h.
3006         * modules/fprintftime (EXTRA_DIST): Add fprintftime.h.
3007         * modules/fsusage (EXTRA_DIST): Add fsusage.h.
3008         * modules/fts (EXTRA_DIST): Add fts_.h fts-cycle.c.
3009         * modules/getcwd (EXTRA_DIST): Add getcwd.h.
3010         * modules/getdate (EXTRA_DIST): Add getdate.c.
3011         * modules/gethrxtime (EXTRA_DIST): Add gethrxtime.h xtime.h.
3012         * modules/getpagesize (EXTRA_DIST): Add getpagesize.h.
3013         * modules/getpass (EXTRA_DIST): Add getpass.h.
3014         * modules/glob (EXTRA_DIST): Add glob_.h glob-libc.h.
3015         * modules/group-member (EXTRA_DIST): Add group-member.h.
3016         * modules/hard-locale (EXTRA_DIST): Add hard-locale.h.
3017         * modules/hash (EXTRA_DIST): Add hash.h.
3018         * modules/human (EXTRA_DIST): Add human.h.
3019         * modules/inttypes (EXTRA_DIST): Add inttypes.h.
3020         * modules/lchmod (EXTRA_DIST): Add lchmod.h.
3021         * modules/lchown (EXTRA_DIST): Add lchown.h.
3022         * modules/long-options (EXTRA_DIST): Add long-options.h.
3023         * modules/lstat (EXTRA_DIST): Add lstat.h.
3024         * modules/md5 (EXTRA_DIST): Add memcasecmp.h.
3025         * modules/memcoll (EXTRA_DIST): Add memcoll.h.
3026         * modules/mempcpy (EXTRA_DIST): Add mempcpy.h.
3027         * modules/memrchr (EXTRA_DIST): Add memrchr.h.
3028         * modules/memxor (EXTRA_DIST): Add memxor.h.
3029         * modules/mkancesdirs (EXTRA_DIST): Add mkancesdirs.h.
3030         * modules/mkdir-p (EXTRA_DIST): Add modechange.h.
3031         * modules/mountlist (EXTRA_DIST): Add mountlist.h.
3032         * modules/openat (EXTRA_DIST): Add at-func.c openat.h openat-priv.h.
3033         * modules/pathmax (EXTRA_DIST): Add pathmax.h.
3034         * modules/physmem (EXTRA_DIST): Add physmem.h.
3035         * modules/posixtm (EXTRA_DIST): Add posixtm.h.
3036         * modules/posixver (EXTRA_DIST): Add posixver.h.
3037         * modules/quote (EXTRA_DIST): Add quote.h.
3038         * modules/quotearg (EXTRA_DIST): Add quotearg.h.
3039         * modules/readtokens (EXTRA_DIST): Add readtokens.h.
3040         * modules/readutmp (EXTRA_DIST): Add readutmp.h.
3041         * modules/regex (EXTRA_DIST): Add regcomp.c regex.h regex_internal.c
3042         regex_internal.h regexec.c.
3043         * modules/safe-read (EXTRA_DIST): Add safe-read.h.
3044         * modules/safe-write (EXTRA_DIST): Add safe-write.h.
3045         * modules/same (EXTRA_DIST): Add same.h.
3046         * modules/same-inode (EXTRA_DIST): Add same-inode.h.
3047         * modules/save-cwd (EXTRA_DIST): Add save-cwd.h.
3048         * modules/savedir (EXTRA_DIST): Add savedir.h.
3049         * modules/sha1 (EXTRA_DIST): Add sha1.h.
3050         * modules/sig2str (EXTRA_DIST): Add sig2str.h.
3051         * modules/stat-macros (EXTRA_DIST): Add stat-macros.h.
3052         * modules/stat-time (EXTRA_DIST): Add stat-time.h.
3053         * modules/stdlib-safer (EXTRA_DIST): Add stdlib-safer.h stdlib--.h.
3054         * modules/strdup (EXTRA_DIST): Add strdup.h.
3055         * modules/strftime (EXTRA_DIST): Add strftime.h.
3056         * modules/strndup (EXTRA_DIST): Add strndup.h.
3057         * modules/strnlen (EXTRA_DIST): Add strnlen.h.
3058         * modules/strverscmp (EXTRA_DIST): Add strverscmp.h.
3059         * modules/time_r (EXTRA_DIST): Add time_r.h.
3060         * modules/timespec (EXTRA_DIST): Add timespec.h.
3061         * modules/tmpfile-safer (EXTRA_DIST): Add stdio-safer.h stdio--.h.
3062         * modules/unistd-safer (EXTRA_DIST): Add unistd-safer.h unistd--.h.
3063         * modules/unlinkdir (EXTRA_DIST): Add unlinkdir.h.
3064         * modules/unlocked-io (EXTRA_DIST): Add unlocked-io.h.
3065         * modules/userspec (EXTRA_DIST): Add userspec.h.
3066         * modules/utimecmp (EXTRA_DIST): Add utimecmp.h.
3067         * modules/utimens (EXTRA_DIST): Add utimens.h.
3068         * modules/xalloc (EXTRA_DIST): Add xalloc.h.
3069         * modules/xgetcwd (EXTRA_DIST): Add xgetcwd.h.
3070         * modules/xnanosleep (EXTRA_DIST): Add xnanosleep.h.
3071         * modules/xreadlink (EXTRA_DIST): Add xreadlink.h.
3072         * modules/xstrtod (EXTRA_DIST): Add xstrtod.h.
3073         * modules/xstrtol (EXTRA_DIST): Add xstrtol.h.
3074         * modules/xstrtold (EXTRA_DIST): Add xstrtod.c xstrtod.h.
3075         * modules/yesno (EXTRA_DIST): Add yesno.h.
3076
3077 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
3078
3079         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Check for fchmod.
3080
3081         * m4/argmatch.m4: New file, from coreutils with AC_LIBSOURCES removed.
3082         * m4/dev-ino.m4, same-inode.m4: Remove.
3083
3084         * m4/_inttypes_h.m4 (gl_INTTYPES_H):
3085         * m4/acl.m4 (AC_FUNC_ACL):
3086         * m4/backupfile.m4 (gl_BACKUPFILE):
3087         * m4/c-strtod.m4 (gl_C99_STRTOLD):
3088         * m4/canon-host.m4 (gl_CANON_HOST):
3089         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME):
3090         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG):
3091         * m4/chdir-safer.m4 (gl_CHDIR_SAFER):
3092         * m4/cloexec.m4 (gl_CLOEXEC):
3093         * m4/close-stream.m4 (gl_CLOSE_STREAM):
3094         * m4/closeout.m4 (gl_CLOSEOUT):
3095         * m4/dirfd.m4 (gl_FUNC_DIRFD):
3096         * m4/dirname.m4 (gl_DIRNAME):
3097         * m4/exclude.m4 (gl_EXCLUDE):
3098         * m4/exitfail.m4 (gl_EXITFAIL):
3099         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER):
3100         * m4/file-type.m4 (gl_FILE_TYPE):
3101         * m4/filemode.m4 (gl_FILEMODE):
3102         * m4/filenamecat.m4 (gl_FILE_NAME_CONCAT):
3103         * m4/fpending.m4 (gl_FUNC_FPENDING):
3104         * m4/fprintftime.m4 (gl_FPRINTFTIME):
3105         * m4/fts.m4 (gl_FUNC_FTS):
3106         * m4/getcwd.m4 (gl_FUNC_GETCWD_NULL):
3107         * m4/getdate.m4 (gl_GETDATE):
3108         * m4/gethrxtime.m4 (gl_GETHRXTIME):
3109         * m4/getpagesize.m4 (gl_GETPAGESIZE):
3110         * m4/getpass.m4 (gl_FUNC_GETPASS):
3111         * m4/gettime.m4 (gl_GETTIME):
3112         * m4/getugroups.m4 (gl_GETUGROUPS):
3113         * m4/glob.m4 (gl_GLOB_SUBSTITUTE):
3114         * m4/group-member.m4 (gl_FUNC_GROUP_MEMBER):
3115         * m4/hard-locale.m4 (gl_HARD_LOCALE):
3116         * m4/hash.m4 (gl_HASH):
3117         * m4/idcache.m4 (gl_IDCACHE):
3118         * m4/lchmod.m4 (gl_FUNC_LCHMOD):
3119         * m4/lchown.m4 (gl_FUNC_LCHOWN):
3120         * m4/long-options.m4 (gl_LONG_OPTIONS):
3121         * m4/lstat.m4 (gl_FUNC_LSTAT):
3122         * m4/md5.m4 (gl_MD5):
3123         * m4/memcasecmp.m4 (gl_MEMCASECMP):
3124         * m4/memcoll.m4 (gl_MEMCOLL):
3125         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY):
3126         * m4/memrchr.m4 (gl_FUNC_MEMRCHR):
3127         * m4/memxor.m4 (gl_MEMXOR):
3128         * m4/mkancesdirs.m4 (gl_MKANCESDIRS):
3129         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS):
3130         * m4/modechange.m4 (gl_MODECHANGE):
3131         * m4/mountlist.m4 (gl_MOUNTLIST):
3132         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP):
3133         * m4/openat.m4 (gl_FUNC_OPENAT):
3134         * m4/pathmax.m4 (gl_PATHMAX):
3135         * m4/physmem.m4 (gl_PHYSMEM):
3136         * m4/posixtm.m4 (gl_POSIXTM):
3137         * m4/posixver.m4 (gl_POSIXVER):
3138         * m4/quote.m4 (gl_QUOTE):
3139         * m4/quotearg.m4 (gl_QUOTEARG):
3140         * m4/readtokens.m4 (gl_READTOKENS):
3141         * m4/readutmp.m4 (gl_READUTMP):
3142         * m4/regex.m4 (gl_REGEX):
3143         * m4/safe-read.m4 (gl_SAFE_READ):
3144         * m4/safe-write.m4 (gl_SAFE_WRITE):
3145         * m4/same.m4 (gl_SAME):
3146         * m4/save-cwd.m4 (gl_SAVE_CWD):
3147         * m4/savedir.m4 (gl_SAVEDIR):
3148         * m4/settime.m4 (gl_SETTIME):
3149         * m4/sha1.m4 (gl_SHA1):
3150         * m4/sig2str.m4 (gl_FUNC_SIG2STR):
3151         * m4/stat-macros.m4 (gl_STAT_MACROS):
3152         * m4/stat-time.m4 (gl_STAT_TIME):
3153         * m4/stdio-safer.m4 (gl_FOPEN_SAFER):
3154         * m4/stdlib-safer.m4 (gl_STDLIB_SAFER):
3155         * m4/strdup.m4 (gl_FUNC_STRDUP):
3156         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME):
3157         * m4/strndup.m4 (gl_FUNC_STRNDUP):
3158         * m4/strnlen.m4 (gl_FUNC_STRNLEN):
3159         * m4/strverscmp.m4 (gl_FUNC_STRVERSCMP):
3160         * m4/time_r.m4 (gl_TIME_R):
3161         * m4/timespec.m4 (gl_TIMESPEC):
3162         * m4/unistd-safer.m4 (gl_UNISTD_SAFER):
3163         * m4/unlinkdir.m4 (gl_UNLINKDIR):
3164         * m4/unlocked-io.m4 (gl_FUNC_GLIBC_UNLOCKED_IO):
3165         * m4/userspec.m4 (gl_USERSPEC):
3166         * m4/utimecmp.m4 (gl_UTIMECMP):
3167         * m4/utimens.m4 (gl_UTIMENS):
3168         * m4/xalloc.m4 (gl_XALLOC):
3169         * m4/xgetcwd.m4 (gl_XGETCWD):
3170         * m4/xnanosleep.m4 (gl_XNANOSLEEP):
3171         * m4/xreadlink.m4 (gl_XREADLINK):
3172         * m4/xstrtod.m4 (gl_XSTRTOD):
3173         * m4/yesno.m4 (gl_YESNO):
3174         Don't use AC_LIBSOURCES; instead, rely on the files in ../modules/
3175         to get the necessary .h files and whatnot.
3176
3177 2006-08-21  Mark D. Baushke  <mdb@gnu.org>
3178             Bruno Haible <bruno@clisp.org>
3179
3180         * gnulib-tool (func_verify_module): Work around Sun's non-POSIX 1003.2
3181         /bin/sh understanding of '!' conditional negation.
3182
3183 2006-08-21  Jim Meyering  <jim@meyering.net>
3184
3185         * modules/openat (Depends-on): Really alphabetize.
3186
3187         * modules/acl (Depends-on): Add error and quote.
3188
3189         * check-module (find_included_lib_files): Add at-func.c to the
3190         ok-to-include-more-than-once white list.
3191
3192         * modules/openat (Depends-on): Add lstat.  Alphabetize.
3193
3194 2006-08-21  Bruno Haible <bruno@clisp.org>
3195
3196         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
3197         Emit a pkgdata_DATA variable only if some snippets add contents to it.
3198         Reported by Martin Lambers <marlam@marlam.de>.
3199
3200 2006-08-21  Bruno Haible <bruno@clisp.org>
3201
3202         * gnulib-tool (func_emit_lib_Makefile_am): If the snippets already
3203         specify an installation location, don't emit a noinst_LIBRARIES or
3204         noinst_LTLIBRARIES assignment.
3205
3206 2006-08-21  Bruno Haible  <bruno@clisp.org>
3207
3208         BeOS portability.
3209         * modules/mbchar (Include): Don't test HAVE_WCTYPE_H any more, since
3210         BeOS has mbrtowc() but no <wctype.h>.
3211
3212 2006-08-21  Bruno Haible  <bruno@clisp.org>
3213
3214         BeOS portability.
3215         * m4/mbchar.m4 (gl_MBCHAR): Compile mbchar.c also if <wctype.h> doesn't
3216         exist.
3217
3218 2006-08-21  Bruno Haible  <bruno@clisp.org>
3219
3220         BeOS portability.
3221         * lib/mbchar.h: Include <wctype.h> only if it exists.
3222
3223 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
3224
3225         Remove files that are no longer needed by their respective modules.
3226         * m4/obstack.m4: Remove.
3227         * m4/strerror_r.m4: Remove.
3228         * m4/uint32_t.m4: Remove.
3229         * m4/uintptr_t.m4: Remove.
3230         * m4/ullong_max.m4: Remove.
3231         * m4/xstrtoimax.m4: Remove.
3232         * m4/xstrtoumax.m4: Remove.
3233
3234         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Do not require
3235         gl_AC_TYPE_UINTMAX_T, gl_STRUCT_DEV_INO, or gl_SAME_INODE, since gnulib
3236         dependencies now capture this.
3237
3238         * m4/cycle-check.m4 (gl_CYCLE_CHECK):
3239         Do not use AC_LIBSOURCES, since gnulib modules now do this.
3240         * m4/fsusage.m4 (gl_FSUSAGE): Likewise.
3241         * m4/human.m4 (gl_HUMAN): Likewise.
3242         * m4/inttostr.m4 (gl_INTTOSTR): Likewise.
3243         * m4/xstrtol.m4 (gl_XSTRTOL): Likewise.
3244
3245         * m4/filemode.m4 (gl_FILEMODE): Require AC_STRUCT_ST_DM_MODE.
3246
3247         * m4/filemode.m4 (gl_PREREQ_FSUSAGE_EXTRA): Do not require
3248         gl_AC_TYPE_INTMAX_T or gl_AC_TYPE_UINTMAX_T, since we now require
3249         stdint.
3250         * m4/human.m4 (gl_HUMAN): Likewise.
3251         * m4/inttostr.m4 (gl_PREREQ_INTTOSTR): Likewise.
3252         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Likewise.
3253         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Likewise.
3254         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Likewise.
3255         * m4/xstrtol (gl_XSTRTOL): Likewise.
3256
3257         * m4/gethrxtime.m4 (gl_XTIME): gl_AC_TYPE_LONG_LONG ->
3258         AC_TYPE_LONG_LONG_INT.
3259         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Likewise.
3260         * m4/strtoll.m4 (gl_FUNC_STRTOLL): Likewise.
3261         * m4/strtoull.m4 (gl_FUNC_STRTOULL): Likewise, for unsigned long.
3262         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Likewise.
3263
3264         * m4/human.m4 (gl_HUMAN): Do not require AM_STDBOOL_H since we depend
3265         on stdbool.
3266
3267         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL_H, gl_PREREQ_XSTRTOL): Remove.
3268         (gl_PREREQ_XSTRTOUL): Remove.
3269
3270         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Check for hasmntopt.
3271
3272         * m4/posixver.m4: Fix comment since head -1 now works even in POSIX
3273         mode.
3274
3275 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
3276
3277         Add and change modules to make it easier for coreutils to use
3278         gnulib-tool.
3279         * modules/backupfile (Files): Remove m4/d-ino.m4.
3280         (Depends-on): Add d-ino.
3281         * modules/cycle-check (Depends-on): Add stdint.
3282         (lib_SOURCES): Add cycle-check.h.
3283         * modules/d-ino: New module.
3284         * modules/d-type: New module.
3285         * modules/error (Files): Remove m4/strerror_r.m4.
3286         * modules/filemode (Files): Add m4/st_dm_mode.m4.
3287         * modules/fsuage (Files): Remove m4/ulonglong.m4, m4/stdint_h.m4,
3288         m4/inttypes_h.m4, m4/uintmax_t.m4.
3289         (Depends-on): Add stdint.
3290         (lib_SOURCES): Add fsusage.h.
3291         * modules/getcwd (Files): Remove d-ino.m4.
3292         (Depends-on): Add d-ino.
3293         * modules/getndelim2 (Depends-on): Add stdint.
3294         * modules/glob (Files): Remove m4/d-type.m4.
3295         (Depends-on): Add d-type.
3296         * modules/host-os: New module.
3297         * modules/human (Files):  Remove m4/ulonglong.m4, m4/stdint_h.m4,
3298         m4/inttypes_h.m4, m4/uintmax_t.m4.
3299         * Depends-on: Add stdint.
3300         (lib_SOURCES): Add human.h.
3301         * modules/inttostr (Files): Remove m4/intmax_t.m4,
3302         m4/inttostr.m4, m4/inttypes_h.m4, m4/longlong.m4, m4/stdint_h.m4,
3303         m4/uintmax_t.m4, m4/ulonglong.m4.
3304         (Depends-on): Add stdint.
3305         (EXTRA_DIST): Add inttostr.h.
3306         * modules/lchmod: New module.
3307         * modules/link-follow: New module.
3308         * modules/mkdir-p (Files): Remove lib/lchmod.h, m4/lchmod.m4.
3309         (Depends-on): Add lchmod.
3310         * modules/mkstemp (Files): Remove m4/ulonglong.m4,
3311         m4/stdint_h.m4, m4/inttypes_h.m4, m4/uintmax_t.m4.
3312         (Depends-on): Add stdint.
3313         * modules/obstack (Files): Remove m4/inttypes_h.m4, m4/obstack.m4,
3314         m4/stdint_h.m4, m4/uintmax_t.m4, m4/ulonglong.m4.
3315         (Depends-on): Add stdint.
3316         (configure.ac): Change gl_OBSTACK to AC_FUNC_OBSTACK.
3317         * modules/perl: New module.
3318         * modules/regex (Depends-on): Add stdint.
3319         * modules/rmdir-errno: New module.
3320         * modules/strtoimax (Files): Remove m4/stdint_h.m4, m4/inttypes_h.m4,
3321         m4/intmax_t.m4.
3322         (Depends-on): Add stdint.
3323         * modules/strtoumax (Files): Remove m4/stdint_h.m4, m4/inttypes_h.m4,
3324         m4/uintmax_t.m4.
3325         (Depends-on): Add stdint.
3326         * modules/unlink-busy: New module.
3327         * modules/utimecmp (Depends-on): Add stdint.
3328         * modules/uptime: New module.
3329         * modules/winsz-ioctl: New module.
3330         * modules/winsz-termios: New module.
3331         * modules/xnanosleep (Depends-on): Add nanosleep.
3332         * modules/ullong_max: Remove.
3333         * modules/xstrtoimax (Files): Remove m4/xstrtoimax.m4.
3334         (configure.ac): Remove gl_XSTRTOIMAX; no action needed now.
3335         * modules/xstrtol (Files): Remove m4/ulonglong.m4, m4/longlong.m4,
3336         m4/stdint_h.m4, m4/inttypes_h.m4, m4/uintmax_t.m4, m4/intmax_t.m4.
3337         (Depends-on): Add inttypes.
3338         (lib_SOURCES): Add xstrtol.h.
3339         * modules/xstrtoumax (Files): Remove m4/xstrtoumax.m4.
3340         (configure.ac): Remove gl_XSTRTOUMAX; no action needed now.
3341         * MODULES.html.sh: Move 'assert' into the assert section.
3342         Move 'dummy' into the linking section.
3343         Remove ullong_max.
3344         Add section for compatibility checks for POSIX:2001 functions,
3345         and put d-ino, d-type, link-follow, rmdir-errno, unlink-busy,
3346         winsz-ioctl, and winsz-termios into it.
3347         Add lchmod.
3348         Add top-level Misc section and put host-os, perl, and uptime
3349         into it.
3350
3351 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
3352
3353         * lib/cycle-check.h: Include <stdint.h> unconditionally, since we
3354         now assume the stdint module.  Do not include inttypes.h.
3355         * lib/fsusage.h: Likewise.
3356         * lib/getndelim2.c: Likewise.
3357         * lib/human.h: Likewise.
3358         * lib/inttostr.h: Likewise.
3359         * lib/obstack.c: Likewise.
3360         * lib/regex_internal.h: Likewise.
3361         * lib/tempname.c: Likewise.
3362         * lib/utimecmp.c: Likewise.
3363         * lib/xstrtol.h: Likewise.
3364
3365         * lib/stat_.h: Fix typo: HAVE_FUNC_LSTAT -> HAVE_LSTAT.
3366
3367         * lib/strtoimax.c: Adjust to macro name changes in Autoconf,
3368         e.g., HAVE_LONG_LONG -> HAVE_LONG_LONG_INT.
3369         * lib/xtime.h: Likewise.
3370
3371 2006-08-19  Paul Eggert  <eggert@cs.ucla.edu>
3372
3373         * modules/openat (Files): Add lib/fchmodat.c.
3374         Fixes problem reported by Jay Youngman.
3375
3376 2006-08-19  Paul Eggert  <eggert@cs.ucla.edu>
3377
3378         * lib/fchmodat.c: New file, from coreutils.  This was inadvertently
3379         omitted in the 2006-08-17 update.  Problem reported by Jay Youngman.
3380
3381 2006-08-18  Paul Eggert  <eggert@cs.ucla.edu>
3382             Bruno Haible  <bruno@clisp.org>
3383
3384         * m4/bison-i18n.m4 (BISON_I18N): Also handle the case where yacc exists
3385         and is a script that invokes bison. Tighten the code. Add comments.
3386
3387 2006-08-18  Jim Meyering  <jim@meyering.net>
3388
3389         * m4/gethrxtime.m4 (gl_PREREQ_GETHRXTIME): Also check for
3390         CLOCK_REALTIME, since gethrxtime may revert to using clock_gettime via
3391         gettime.c.  Gabor Z. Papp reported that gethrxtime-using programs
3392         failed to link due to unresolved clock_gettime on a linux-2.4.x system.
3393
3394 2006-08-18  Bruno Haible  <bruno@clisp.org>
3395
3396         * modules/bison-i18n: New file.
3397         * MODULES.html.sh (Internationalization functions): Add it.
3398
3399 2006-08-18  Bruno Haible  <bruno@clisp.org>
3400
3401         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Also check for
3402         sys/statvfs.h. When getmntinfo was found, check its declaration and
3403         set either MOUNTED_GETMNTINFO or MOUNTED_GETMNTINFO2 depending on it.
3404
3405 2006-08-18  Bruno Haible  <bruno@clisp.org>
3406
3407         * m4/bison-i18n.m4: New file, from bison.
3408
3409 2006-08-18  Bruno Haible  <bruno@clisp.org>
3410
3411         * lib/mountlist.c [MOUNTED_GETMNTINFO2]: Include sys/statvfs.h.
3412         (ME_DUMMY): Treat "kernfs" as a dummy.
3413         (read_file_system_list) [MOUNTED_GETMNTINFO2]: Implement.
3414
3415 2006-08-17  Paul Eggert  <eggert@cs.ucla.edu>
3416
3417         Update from coreutils.
3418
3419         2006-08-15  Jim Meyering  <jim@meyering.net>
3420
3421         * m4/openat.m4 (gl_FUNC_OPENAT): Add at-func.c via AC_LIBSOURCES.
3422
3423         2006-01-17  Jim Meyering  <jim@meyering.net>
3424
3425         * m4/fts.m4 (gl_FUNC_FTS_CORE): Depend on gl_FUNC_OPENAT.
3426
3427         2006-01-11  Jim Meyering  <jim@meyering.net>
3428
3429         * m4/openat.m4 (gl_FUNC_OPENAT): Require and compile fchmodat.c.
3430         Check for the lchmod function.
3431
3432 2006-08-17  Paul Eggert  <eggert@cs.ucla.edu>
3433
3434         Update from coreutils.
3435
3436         * lib/__fpending.h: Add copyright notice.
3437         * lib/fprintftime.h: Likewise.
3438         * lib/savedir.c: Use (C) in copyright notice.
3439         * lib/savedir.h: Likewise.
3440
3441         2006-08-15  Jim Meyering  <jim@meyering.net>
3442
3443         * lib/at-func.c: New file, with the logic of all emulated at-functions.
3444         * lib/openat-priv.h: Include <errno.h> and define ENOSYS,
3445         in support of the EXPECTED_ERRNO macro.
3446         * lib/openat.c (fstatat, unlinkat, fchownat): Remove function
3447         definitions.  Instead, define the appropriate symbols and include
3448         "at-func.c".
3449         * lib/mkdirat.c (mkdirat): Likewise.
3450         * lib/fchmodat.c (fchmodat): Likewise.
3451         (ENOSYS): Remove definition.
3452         * lib/openat.c: Don't include <errno.h>, now that "openat-priv.h" does
3453         it.  Don't include "unistd--.h" -- it wasn't ever used.
3454
3455         2006-01-17  Jim Meyering  <jim@meyering.net>
3456
3457         Rewrite fts.c not to change the current working directory,
3458         by using openat, fstatat, fdopendir, etc..
3459
3460         * lib/fts.c [! _LIBC]: Include "openat.h" and "unistd--.h".
3461         (HAVE_OPENAT_SUPPORT): Define.
3462         [_LIBC] (fchdir): Don't undef or define; no longer used.
3463         (FCHDIR): Define in terms of cwd_advance_fd rather than fchdir.
3464         Now, this `function' always succeeds, and consumes its file descriptor
3465         parameter -- so callers must not close such FDs.  Update callers.
3466         (diropen_fd, opendirat, cwd_advance_fd): New functions.
3467         (diropen): Add parameter, SP.  Adjust all callers.
3468         Implement using diropen_fd, rather than open.
3469         (fts_open): Initialize new member, fts_cwd_fd.
3470         Remove fts_rft-setting code.
3471         (fts_close): Close fts_cwd_fd, if necessary.
3472         (__opendir2): Define in terms of opendir or opendirat,
3473         depending on whether the FST_NOCHDIR flag is set.
3474         (fts_build): Since fts_safe_changedir consumes its FD, and since
3475         this code must do `closedir(dirp)', dup the dirfd(dirp) argument,
3476         and close the dup'd file descriptor upon failure.
3477         (fts_stat): Use fstatat(...AT_SYMLINK_NOFOLLOW) in place of lstat.
3478         (fts_safe_changedir): Tweak semantics to reflect that this function
3479         now calls cwd_advance_fd and hence consumes its FD argument.
3480         * lib/fts_.h [struct FTS] (fts_cwd_fd): New member.
3481         [struct FTS] (fts_rft): Remove now-unused member.
3482         [struct FTS] (fts_cycle.state): Improve comment.
3483
3484         * lib/openat.c (openat_needs_fchdir): New function.
3485         * lib/openat.h (openat_needs_fchdir): Declare it.
3486
3487 2006-08-16  Paul Eggert  <eggert@cs.ucla.edu>
3488
3489         * lib/memcoll.c (memcoll): Set errno = 0 in the shortcut case, too.
3490         Problem and fix reported by Pádraig Brady in
3491         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00099.html>.
3492
3493 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
3494
3495         * modules/cycle-check (configure.ac): Add gl_CYCLE_CHECK.
3496
3497 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
3498
3499         * lib/memcoll.c (memcoll): Optimize for the common case where the
3500         arguments are bytewise equal.
3501
3502 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
3503
3504         * doc/regexprops-generic.texi: Add a copyright notice.
3505
3506 2006-08-15  Bruno Haible  <bruno@clisp.org>
3507
3508         * modules/tmpdir (License): Change to LGPL.
3509
3510 2006-08-15  Bruno Haible  <bruno@clisp.org>
3511
3512         * gnulib-tool (func_all_modules, func_verify_module): COPYING is not a
3513         module.
3514
3515 2006-08-14  Simon Josefsson  <jas@extundo.com>
3516
3517         * config/srclist.txt: Add gnupload.
3518
3519 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
3520
3521         Change copyright notice from LGPL 2 to GPL 2, since that's the
3522         standard form used in the gnulib repository.
3523         * tests/test-lock.c: Likewise.
3524         * tests/test-stdint.c: Likewise.
3525         * tests/test-tls.c: Likewise.
3526
3527         * users.txt: Add bison, diffutils, libprelude, prelude-lml,
3528         prelude-manager.  User shorter URLs for GNU projects, without '?'.
3529         Add copyright notice.
3530
3531         * check-module: Add copyright notice.  Output a copyright
3532         notice if "--version" is specified.
3533         * modules/COPYING: New file.
3534         * tests/test-getaddrinfo.c: Add copyright notice.
3535         * tests/test-verify.c: Likewise.
3536
3537 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
3538
3539         Change copyright notice from LGPL 2 to GPL 2, since that's the
3540         standard form used in the gnulib repository.
3541         * lib/lock.c: LGPL -> GPL.
3542         * lib/lock.h: Likewise.
3543         * lib/strnlen1.c: Likewise.
3544         * lib/strnlen1.h: Likewise.
3545         * lib/tls.c: Likewise.
3546         * lib/tls.h: Likewise.
3547         * lib/tmpdir.c: Likewise.
3548
3549         * lib/TODO: Remove; this belongs only in coreutils.
3550
3551 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
3552
3553         Add copyright notices to long-enough files that lack them, since
3554         otherwise the files aren't clearly free.  Use the same notice that
3555         getdate.texi already uses.
3556         * doc/alloca-opt.texi: Add copyright notice.
3557         * doc/alloca.texi: Likewise.
3558         * doc/ctime.texi: Likewise.
3559         * doc/functions.texi: Likewise.
3560         * doc/gcd.texi: Likewise.
3561         * doc/gnulib-tool.texi: Likewise.
3562         * doc/inet_ntoa.texi: Likewise.
3563         * doc/visibility.texi: Likewise.
3564
3565         * doc/getdate.texi: Update FDL version from 1.1 to 1.2.
3566         * doc/quote.texi: Add copyright notice.
3567
3568         * doc/solaris-versions: Add SunOS 5.10, SunOS 1.x, SunOS 4.0, SunOS
3569         4.0.x, SunOS 4.1.1.1, SunOS 4.1.1_U1, SunOS 4.1.3B.  SunOS 4.1.3
3570         was Solaris 1.1A.  Remove space before B in Solaris 1.1.1B.
3571         Mention SunOS 5.11.  Mention that everything before SunOS 5.7
3572         is now obsolete, and give a pointer to the Sun list.
3573         Add copyright notice.
3574
3575 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
3576
3577         * config/srclistvars.sh: Add copyright notice.
3578
3579 2006-08-14  Eric Blake  <ebb9@byu.net>
3580
3581         Import the following change from libc:
3582
3583         2006-08-12  Ulrich Drepper  <drepper@redhat.com>
3584
3585         Upstream bug 2997.
3586         * lib/misc/error.c: Add space between program name and message if file
3587         name is missing.
3588
3589 2006-08-12  Karl Berry  <karl@gnu.org>
3590
3591         * config/srclist.txt (ssize_t.m4, sig_atomic_t.m4, signalblocking.m4):
3592         remove, these originate in gnulib now.
3593
3594 2006-08-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3595
3596         * doc/Makefile (standards.info standards.html standards.dvi):
3597         Also depend on make-stds.texi.
3598
3599 2006-08-11  Paul Eggert  <eggert@cs.ucla.edu>
3600
3601         * lib/pipe-safer.c (pipe_safer): Fix misspelling: HAVE_FUNC_PIPE ->
3602         HAVE_PIPE.  Fix a file descriptor leak when fd_safer fails.
3603
3604         * lib/regex_internal.c (re_string_skip_chars): Don't assume WEOF fits
3605         in wchar_t.  Problem reported by Eric Blake.
3606
3607         * lib/snprintf.c (snprintf): memcpy LEN bytes, not SIZE - 1, when
3608         LEN is smaller than SIZE.  Suggested by Bruno Haible.
3609         Also, help the compiler to keep LEN in a register.
3610
3611 2006-08-11  Eric Blake  <ebb9@byu.net>
3612
3613         * users.txt: Sort.  Add tar.
3614
3615 2006-08-11  Bruno Haible  <bruno@clisp.org>
3616
3617         * users.txt: New file.
3618
3619 2006-08-11  Bruno Haible  <bruno@clisp.org>
3620
3621         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Include <stdio.h> and <time.h>
3622         before <wchar.h>. Needed for OSF/1 and BSD/OS.
3623
3624 2006-08-10  Paul Eggert  <eggert@cs.ucla.edu>
3625
3626         * modules/snprintf (Depends-on): Remove minmax.
3627         (Maintainer): Add self and Bruno.
3628
3629 2006-08-10  Paul Eggert  <eggert@cs.ucla.edu>
3630
3631         * lib/.cppi-disable: Add snprintf.h, socket_.h.
3632         * lib/snprintf.c: Include <errno.h> and <limits.h>.
3633         (EOVERFLOW): Define if the system does not.
3634         Do not include "minmax.h"; it wasn't used.
3635         (snprintf): Don't assume size_t promotes to an unsigned type.
3636         Fix bug when generated string was too long for the buffer: the
3637         buffer's contents are supposed to be the initial prefix of the
3638         output.  Don't assume vasnprintf returns EOVERFLOW if the size
3639         exceeds INT_MAX; do the check ourselves.
3640
3641         Import the following changes from libc:
3642
3643         2006-06-02  Jakub Jelinek  <jakub@redhat.com>
3644
3645         * lib/posix/regex_internal.c (re_string_skip_chars): If no character
3646         has been converted at all, set *last_wc to WEOF.  If mbrtowc failed,
3647         set wc to the byte which couldn't be converted.
3648         (re_string_reconstruct): Don't clear valid_raw_len before calling
3649         re_string_skip_chars.  If wc is WEOF after re_string_skip_chars, set
3650         tip_context using re_string_context_at.
3651
3652         2006-05-02  Ulrich Drepper  <drepper@redhat.com>
3653
3654         * lib/posix/regex.h: g++ still cannot handled [restrict].
3655
3656         2006-04-21  Ulrich Drepper  <drepper@redhat.com>
3657
3658         * lib/posix/regex.h: Remove special handling for VMS.
3659
3660 2006-08-10  Jim Meyering  <jim@meyering.net>
3661
3662         * modules/same-inode: New module.
3663         * modules/dev-ino: New module.
3664         * modules/cycle-check: Depend on these modules, rather than simply
3665         including their .h files.
3666         (Makefile.am): Don't list cycle-check.[ch] here, now that they're
3667         required via m4/cycle-check.m4.
3668         * modules/same: Depend on new same-inode module, rather than
3669         including same-inode.h.
3670         * modules/chdir-safer: New file.
3671
3672         * modules/chown (Depends-on): Add stat-macros.
3673
3674 2006-08-10  Jim Meyering  <jim@meyering.net>
3675
3676         * m4/cycle-check.m4: New file.
3677         Require gl_STRUCT_DEV_INO and gl_SAME_INODE.
3678         * m4/dev-ino.m4, m4/same-inode.m4: New files.
3679
3680 2006-08-10  Eric Blake  <ebb9@byu.net>
3681
3682         * modules/verror (Depends-on): Remove bogus gl_VERROR that snuck
3683         in from original proposal.
3684
3685 2006-08-10  Eric Blake  <ebb9@byu.net>
3686         and Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3687
3688         * gnulib-tool (func_import): Detect unexpanded macros in gnulib
3689         namespace.
3690
3691 2006-08-10  Bruno Haible  <bruno@clisp.org>
3692
3693         * gnulib-tool (func_create_testdir): Detect unexpanded macros here
3694         as well.
3695
3696 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
3697
3698         Sync from coreutils.
3699
3700         2006-07-19  Mike Frysinger  <vapier@gentoo.org>
3701
3702         * lib/mountlist.c [ME_REMOTE]: Filter out cifs.
3703         Reported by Toralf Förster in <http://bugs.gentoo.org/141012>.
3704
3705 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
3706
3707         * modules/restrict: Remove; no longer needed now that we assume
3708         Autoconf 2.59 or later.
3709         * MODULES.html.sh: Remove 'restrict'.
3710         * modules/argp (Depends-on): Remove 'restrict'.
3711         * modules/base64 (Depends-on): Likewise.
3712         * modules/gc (Depends-on): Likewise.
3713         * modules/getaddrinfo (Depends-on): Likewise.
3714         * modules/glob (Depends-on): Likewise.
3715         * modules/inet_ntop (Depends-on): Likewise.
3716         * modules/inet_pton (Depends-on): Likewise.
3717         * modules/memxor (Depends-on): Likewise.
3718         * modules/regex (Depends-on): Likewise.
3719         * modules/strtok_r (Depends-on): Likewise.
3720         * modules/time_r (Depends-on): Likewise.
3721
3722 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
3723
3724         * m4/argp.m4 (gl_ARGP): Require AC_C_RESTRICT.
3725         * m4/gc.m4 (gl_PREREQ_GC): Likewise.
3726         * m4/glob.m4 (gl_PREREQ_GLOB): Likewise.
3727         * m4/inet_ntop.m4 (gl_PREREQ_INET_NTOP): Likewise.
3728         * m4/inet_pton.m4 (gl_PREREQ_INET_PTON): Likewise.
3729         * m4/memxor.m4 (gl_MEMXOR): Likewise.
3730         * m4/restrict.m4: Remove; no longer needed.  All remaining uses of
3731         gl_C_RESTRICT replaced by AC_C_RESTRICT.
3732
3733         Merge from coreutils.
3734         * m4/regex.m4 (gl_PREREQ_REGEX): Require AC_C_RESTRICT, not
3735         gl_C_RESTRICT, now that we assume Autoconf 2.59 or later.
3736         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Likewise.
3737         * m4/time_r.m4 (gl_TIME_R): Likewise.
3738
3739 2006-08-09  Karl Berry  <karl@gnu.org>
3740
3741         * config/srclist.txt: no more gettext-tools, per Bruno.
3742
3743 2006-08-08  Eric Blake  <ebb9@byu.net>
3744
3745         * modules/verror: New module.
3746         * MODULES.html.sh: Document it.
3747
3748 2006-08-08  Eric Blake  <ebb9@byu.net>
3749
3750         * lib/verror.h, lib/verror.c: New files.
3751
3752 2006-08-08  Eric Blake  <ebb9@byu.net>
3753
3754         * lib/verror.c (verror_at_line): Work around glibc bug 2997, so that
3755         verror_at_line output complies with GNU Coding Standards even when
3756         file is NULL.
3757
3758 2006-08-07  Bruno Haible  <bruno@clisp.org>
3759
3760         * lib/allocsa.h (sa_alignof) [_AIX]: Also consider 'long long' in newer
3761         versions of AIX.
3762         Reported by Ralf Wildenhues.
3763
3764 2006-08-07  Bruno Haible  <bruno@clisp.org>
3765
3766         * gnulib-tool (func_create_testdir): Wrap the set of autoconf snippets
3767         in an AC_DEFUN. Needed so that the autoconf snippets can use
3768         AC_REQUIRE.
3769
3770 2006-08-06  Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3771
3772         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
3773         Initialize pkgdata_DATA.
3774         * modules/javaversion (Makefile.am): Add to pkgdata_DATA, rather than
3775         overriding it.
3776
3777 2006-08-06  Eric Blake  <ebb9@byu.net>
3778
3779         * lib/error.h: Fold in some upstream changes from glibc.
3780         * lib/error.c: Likewise.
3781
3782 2006-08-04  Bruno Haible  <bruno@clisp.org>
3783
3784         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
3785         Make the mostlyclean-local rule depend on mostlyclean-generic.
3786         Reported by Jim Meyering. Solution suggested by Ralf Wildenhues.
3787
3788 2006-07-31  Bruno Haible  <bruno@clisp.org>
3789
3790         * m4/localcharset.m4 (gl_LOCALCHARSET): Remove tests for <stddef.h>,
3791         <stdlib.h>, <string.h>.
3792
3793 2006-07-30  Bruno Haible  <bruno@clisp.org>
3794
3795         * modules/readlink (License): Change to LGPL.
3796
3797 2006-07-30  Bruno Haible  <bruno@clisp.org>
3798
3799         * modules/javaversion (Makefile.am): Distribute javaversion.java and
3800         javaversion.class. Also install javaversion.class in $(pkgdatadir) and
3801         set PKGDATADIR to point to it.
3802
3803 2006-07-30  Bruno Haible  <bruno@clisp.org>
3804
3805         * modules/csharpexec (configure.ac): Comment out macro invocation.
3806         * modules/javaexec (configure.ac): Likewise.
3807         * modules/javacomp-script (configure.ac): Likewise.
3808
3809         * modules/csharpcomp-script (configure.ac): Use AC_REQUIRE.
3810
3811 2006-07-30  Bruno Haible  <bruno@clisp.org>
3812
3813         * modules/clean-temp (Depends-on): Add linkedhash-list, remove
3814         linked-list.
3815
3816 2006-07-30  Bruno Haible  <bruno@clisp.org>
3817
3818         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Assume <string.h> exists.
3819
3820 2006-07-30  Bruno Haible  <bruno@clisp.org>
3821
3822         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
3823         Initialize MOSTLYCLEANFILES to core and *.stackdump, so that core dumps
3824         get removed.
3825
3826 2006-07-29  Bruno Haible  <bruno@clisp.org>
3827
3828         Make it possible for gnulib-tool to work with locally modified or
3829         augmented gnulib repositories.
3830         * gnulib-tool (func_usage): Document --local-dir option.
3831         (local_gnulib_dir): New variable.
3832         Handle --local-dir option.
3833         (func_lookup_file): New function.
3834         (func_all_modules, func_verify_module): Look also in $local_gnulib_dir.
3835         (func_get_description, func_get_filelist, func_get_description,
3836         func_get_filelist, func_get_dependencies, func_get_autoconf_snippet,
3837         func_get_automake_snippet, func_get_include_directive,
3838         func_get_license, func_get_maintainer): Use func_lookup_file.
3839         (func_import, func_create_testdir): Use func_lookup_file.
3840
3841 2006-07-29  Bruno Haible  <bruno@clisp.org>
3842
3843         * modules/setenv (Depends-on): Add unistd.
3844
3845 2006-07-29  Bruno Haible  <bruno@clisp.org>
3846
3847         * lib/setenv.c: Undo unintended modification done on 2006-02-27.
3848
3849 2006-07-29  Bruno Haible  <bruno@clisp.org>
3850
3851         * lib/localcharset.c: Assume <stddef.h>, <stdlib.h>, <string.h> exist.
3852
3853 2006-07-29  Bruno Haible  <bruno@clisp.org>
3854
3855         * gnulib-tool (import, update): If there is no Makefile.am, look at
3856         aclocal.m4, instead of bailing out.
3857
3858 2006-07-29  Bruno Haible  <bruno@clisp.org>
3859
3860         * gnulib-tool (func_usage): Revert most of the 2006-07-15 change.
3861         Categorize the options by when they are useful.
3862
3863 2006-07-29  Bruno Haible  <bruno@clisp.org>
3864
3865         * gnulib-tool (func_usage): Document option --no-libtool.
3866         Handle option --no-libtool.
3867         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am): Update
3868         for changed semantics of $libtool variable.
3869         (func_import): Likewise. If libtool is not used, show this through
3870         an option --no-libtool.
3871         (func_create_testdir): Update.
3872
3873 2006-07-29  Bruno Haible  <bruno@clisp.org>
3874
3875         * gnulib-tool (func_import): Extend error message about missing
3876         --doc-base.
3877
3878 2006-07-29  Bruno Haible  <bruno@clisp.org>
3879
3880         * gnulib-tool (func_import): Don't create the $docbase directory if
3881         there is no file to store there.
3882
3883 2006-07-29  Bruno Haible  <bruno@clisp.org>
3884
3885         * gnulib-tool (autoconf_minversion): If a --dir option is given and
3886         relevant, look for configure.ac there, not in the current directory.
3887         Also use a simple search for AC_PREREQ, not "autoconf --trace".
3888
3889 2006-07-29  Bruno Haible  <bruno@clisp.org>
3890
3891         * gnulib-tool (SORT): New variable.
3892         (func_usage): Undocument --assume-autoconf option.
3893         Remove --assume-autoconf option handling.
3894         (autoconf_minversion): Determine from the contents of configure.ac.
3895         (func_import): Remove autoconf_minversion handling.
3896         Suggested by Eric Blake.
3897
3898 2006-07-29  Bruno Haible  <bruno@clisp.org>
3899
3900         * doc/gnulib-tool.texi (gl_LIBTOOL): Mention --no-libtool option.
3901
3902 2006-07-29  Bruno Haible  <bruno@clisp.org>
3903
3904         * config/srclist.txt (*setenv.[ch]): Remove rules.
3905
3906 2006-07-28  Yoann Vandoorselaere <yoann.v@prelude-ids.com>
3907
3908         * m4/inet_pton.m4, inet_ntop.m4: Check for netinet/in.h too.
3909
3910 2006-07-28  Yoann Vandoorselaere <yoann.v@prelude-ids.com>
3911
3912         * lib/inet_ntop.h, inet_pton.h: Need to include netinet/in.h before
3913         arpa/inet.h.
3914
3915 2006-07-28  Simon Josefsson  <jas@extundo.com>
3916
3917         * modules/inet_ntop (Depends-on): Depend on arpa_inet.
3918         * modules/inet_pton (Depends-on): Likewise.
3919
3920 2006-07-28  Simon Josefsson  <jas@extundo.com>
3921
3922         * m4/netinet_in_h.m4: New file.
3923
3924 2006-07-28  Simon Josefsson  <jas@extundo.com>
3925
3926         * lib/inet_ntop.h, inet_pton.h: No need to guard netinet/in.h
3927         #include's.
3928
3929 2006-07-28  Simon Josefsson  <jas@extundo.com>
3930
3931         * lib/inet_ntop.h, inet_pton.h: No need to guard arpa/inet.h
3932         #include's.
3933
3934 2006-07-28  Paul Eggert  <eggert@cs.ucla.edu>
3935
3936         * lib/modechange.c (mode_compile): Numeric modes now affect setuid and
3937         setgid on directories only if they set these bits.
3938         * lib/modechange.h: Remove obsolete comment about masks.
3939
3940 2006-07-28  Eric Blake  <ebb9@byu.net>
3941
3942         * lib/regex_internal.h (struct re_dfa_t) [!_LIBC]: Avoid invalid C89
3943         macro expansion.
3944
3945 2006-07-28  Bruno Haible <bruno@clisp.org>
3946
3947         * lib/inet_ntop.h, inet_pton.h: Use #if HAVE* instead of #ifdef HAVE*.
3948
3949 2006-07-28  Bruno Haible  <bruno@clisp.org>
3950
3951         * m4/mbchar.m4 (gl_MBCHAR): Also test for iswcntrl.
3952
3953 2006-07-28  Bruno Haible  <bruno@clisp.org>
3954
3955         * lib/mbchar.h (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit,
3956         iswgraph, iswlower, iswprint, iswpunct, iswspace, iswupper, iswxdigit):
3957         Define fallbacks.
3958         Avoids link error on FreeBSD 4.x.
3959         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
3960
3961         * lib/wcwidth.h (iswprint): Assume an ASCII compatible wide character
3962         encoding.
3963         * lib/mbswidth.c (iswcntrl): Likewise.
3964
3965 2006-07-27  Bruno Haible  <bruno@clisp.org>
3966
3967         * m4/stdint.m4 (gl_STDINT_H): Define __STDC_CONSTANT_MACROS during the
3968         test.
3969
3970 2006-07-27  Bruno Haible  <bruno@clisp.org>
3971
3972         * lib/stdint_.h (INT*_C, UINT*_C) [C++]: Define these if
3973         __STDC_CONSTANT_MACROS is defined, not if __STDC_LIMIT_MACROS is
3974         defined.
3975
3976 2006-07-26  Eric Blake  <ebb9@byu.net>
3977
3978         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Check for missing pipe.
3979
3980 2006-07-26  Eric Blake  <ebb9@byu.net>
3981
3982         * lib/mkstemp-safer.c [! HAVE_MKSTEMP]: Add prototype for platforms
3983         like mingw that lack mkstemp.
3984         * lib/pipe-safer.c (pipe_safer) [!HAVE_FUNC_PIPE]: Provide fallback to
3985         avoid compilation warning on mingw.
3986
3987 2006-07-26  Bruno Haible  <bruno@clisp.org>
3988
3989         * m4/stdint.m4 (gl_STDINT_H): Also verify the existence of the macros
3990         INT*_MIN, INT_LEAST*_MAX, INT_LEAST*_MIN, UINT_LEAST*_MAX,
3991         INT_FAST*_MIN, INTPTR_MIN.
3992
3993 2006-07-25  Bruno Haible  <bruno@clisp.org>
3994
3995         * modules/version-etc (Depends-on): Add stdarg.
3996
3997 2006-07-25  Bruno Haible  <bruno@clisp.org>
3998
3999         * m4/stdint.m4 (gl_INTEGER_TYPE_SUFFIX): Avoid 'eval' in front of
4000         complex commands.
4001
4002 2006-07-25  Bruno Haible  <bruno@clisp.org>
4003
4004         * lib/version-etc.c (version_etc_va): Use va_copy, assumed to be
4005         defined in <stdarg.h> or config.h.
4006
4007 2006-07-24  Paul Eggert  <eggert@cs.ucla.edu>
4008
4009         * m4/stdio-safer.m4 (gl_FOPEN_SAFER, gl_TMPFILE_SAFER): New macros.
4010         (gl_STDIO_SAFER): Remove.
4011
4012 2006-07-24  Paul Eggert  <eggert@cs.ucla.edu>
4013
4014         * MODULES.html.sh (File stream based Input/Output):
4015         Add fopen-safer, tmpfile-safer; remove stdio-safer.
4016         * modules/getusershell (Depends-on): Change stdio-safer to fopen-safer.
4017         * modules/fopen-safer, modules/tmpfile-safer: New files.
4018         * modules/stdio-safer: Remove.
4019
4020 2006-07-24  Bruno Haible  <bruno@clisp.org>
4021
4022         * modules/tmpdir: New file.
4023         * MODULES.html.sh (File system functions): Add it.
4024
4025 2006-07-24  Bruno Haible  <bruno@clisp.org>
4026
4027         * modules/javacomp (Depends-on): Add unistd, javaversion, binary-io,
4028         getline, pathname, fwriteerror, clean-temp, xvasprintf, strstr.
4029
4030 2006-07-24  Bruno Haible  <bruno@clisp.org>
4031
4032         * modules/clean-temp: New file.
4033
4034 2006-07-24  Bruno Haible  <bruno@clisp.org>
4035
4036         * m4/tmpdir.m4: New file, from GNU gettext.
4037
4038 2006-07-24  Bruno Haible  <bruno@clisp.org>
4039
4040         * lib/tmpdir.h: New file, from GNU gettext.
4041         * lib/tmpdir.c: New file, from GNU gettext.
4042
4043 2006-07-24  Bruno Haible  <bruno@clisp.org>
4044
4045         * lib/clean-temp.h: New file, from GNU gettext.
4046         * lib/clean-temp.c: New file, from GNU gettext.
4047
4048 2006-07-23  Eric Blake  <ebb9@byu.net>
4049
4050         * modules/stdio-safer (Files): Add tmpfile-safer.c.
4051         (Depends-on): Add binary-io.
4052
4053 2006-07-23  Eric Blake  <ebb9@byu.net>
4054
4055         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Add tmpfile-safer.c.
4056
4057 2006-07-23  Eric Blake  <ebb9@byu.net>
4058
4059         * lib/tmpfile-safer.c: New file.
4060         * lib/stdio-safer.h (fopen_safer): Add prototype.
4061         * lib/stdio--.h (tmpfile): Make safer.
4062
4063 2006-07-23  Bruno Haible  <bruno@clisp.org>
4064
4065         * lib/gl_anylinked_list2.h (ASYNCSAFE): New macro.
4066         (gl_linked_add_first, gl_linked_add_last, gl_linked_add_before,
4067         gl_linked_add_after, gl_linked_add_at, gl_linked_remove_node,
4068         gl_linked_remove_at): Use it.
4069
4070 2006-07-22  Yoann Vandoorselaere <yoann.v@prelude-ids.com>
4071         and Simon Josefsson <jas@extundo.com>
4072
4073         * lib/getaddrinfo.h (AI_PASSIVE): Make sure it is defined.
4074
4075         * lib/getaddrinfo.c (getaddrinfo): Support AI_PASSIVE.
4076
4077 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
4078
4079         * modules/close-stream: New file.
4080         * modules/closeout (Description): Make it clear that it exits
4081         with a diagnostic on error.
4082         (Depends-on): Add close-stream.  Remove fpending, stdbool.
4083         * MODULES.html.sh (File stream based Input/Output): Add close-stream.
4084
4085 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
4086
4087         * m4/close-stream.m4: New file.
4088
4089 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
4090
4091         * lib/close-stream.c, lib/close-stream.h: New files.
4092
4093 2006-07-22  Bruno Haible  <bruno@clisp.org>
4094
4095         Merge from GNU gettext 0.15.
4096
4097         2006-05-01  Bruno Haible  <bruno@clisp.org>
4098
4099                 * build-aux/javacomp.sh.in: Update for changed javacomp.m4.
4100
4101         2006-07-22  Bruno Haible  <bruno@clisp.org>
4102
4103                 * modules/javaversion: New file.
4104                 * MODULES.html.sh (Java): Add javaversion.
4105
4106         2006-03-12  Bruno Haible  <bruno@clisp.org>
4107
4108                 * build-aux/javaexec.sh.in: Update for changed javaexec.m4.
4109
4110         2005-12-04  Bruno Haible  <bruno@clisp.org>
4111
4112                 * build-aux/csharpexec.sh.in: Add support for 'clix' launcher
4113                 (untested).
4114
4115         2006-06-21  Bruno Haible  <bruno@clisp.org>
4116
4117                 Avoid warnings from recent versions of mcs.
4118                 * build-aux/csharpcomp.sh.in (options_mcs): Don't use options
4119                 -o, -L, -r any more. Use options documented since mcs-1.0
4120                 instead. Similarly for -g.
4121
4122         2005-12-04  Bruno Haible  <bruno@clisp.org>
4123
4124                 * build-aux/csharpcomp.sh.in: Suffix for resources is
4125                 .resources, not .resource.
4126
4127         2005-07-09  Bruno Haible  <bruno@clisp.org>
4128
4129                 * build-aux/csharpcomp.sh.in (options_csc): For -l option,
4130                 add a .dll suffix.
4131                 Reported by Mark Junker <mjscod@gmx.de>.
4132
4133         2006-07-22  Bruno Haible  <bruno@clisp.org>
4134
4135                 * modules/gettext: Upgrade to gettext-0.15.
4136                 (Files): Remove m4/isc-posix.m4. Add m4/lock.m4,
4137                 m4/visibility.m4.
4138                 Replace m4/inttypes.m4 with m4/inttypes-h.m4.
4139
4140 2006-07-22  Bruno Haible  <bruno@clisp.org>
4141
4142         Merge from GNU gettext 0.15.
4143
4144         2006-03-25  Bruno Haible  <bruno@clisp.org>
4145
4146                 * lib-link.m4 (AC_LIB_LINKFLAGS_FROM_LIBS): New macro.
4147
4148         2006-07-21  Bruno Haible  <bruno@clisp.org>
4149
4150                 * javacomp.m4 (gt_JAVACOMP): Convert target_version "null" to
4151                 "1.1".
4152
4153         2006-05-09  Bruno Haible  <bruno@clisp.org>
4154
4155                 * javacomp.m4 (gt_JAVACOMP): On Cygwin, set
4156                 CLASSPATH_SEPARATOR to a semicolon. Use CLASSPATH_SEPARATOR
4157                 for the conftestver execution.
4158
4159         2006-05-01  Bruno Haible  <bruno@clisp.org>
4160
4161                 * javacomp.m4 (gt_JAVACOMP): Accept a source-version and an
4162                 optional target-version argument. Verify that the compiler
4163                 groks source of the specified source-version, or add -source
4164                 option as necessary. Verify that the compiler produces
4165                 bytecode in the specified target-version, or add -target and
4166                 -source options as necessary. Make the result of the test
4167                 available as variable CONF_JAVAC. Also log error output in
4168                 config.log.
4169
4170         2006-03-11  Bruno Haible  <bruno@clisp.org>
4171
4172                 * javacomp.m4 (gt_JAVACOMP): Treat gcj-4.x like gcj-3.x.
4173
4174         2006-05-09  Bruno Haible  <bruno@clisp.org>
4175
4176                 * javaexec.m4 (gt_JAVAEXEC): On Cygwin, set
4177                 CLASSPATH_SEPARATOR to a semicolon.
4178
4179         2006-03-12  Bruno Haible  <bruno@clisp.org>
4180
4181                 * javaexec.m4 (gt_JAVAEXEC): Make the result of the test
4182                 available as variable CONF_JAVA, for subsequent autoconf
4183                 tests. Also log error output in config.log.
4184
4185         2006-07-19  Bruno Haible  <bruno@clisp.org>
4186
4187                 * getline.m4 (AM_FUNC_GETLINE): When cross-compiling, assume
4188                 that getline works on glibc2 systems. Needed to avoid trouble
4189                 in relocatable.c.
4190                 Reported by Nils Magnus Larsgard <nmlarsgaard@atmel.no>.
4191
4192         2005-12-04  Bruno Haible  <bruno@clisp.org>
4193
4194                 * csharpexec.m4 (gt_CSHARPEXEC): Add support for 'clix'
4195                 launcher (untested).
4196
4197         2005-12-04  Bruno Haible  <bruno@clisp.org>
4198
4199                 * csharpcomp.m4 (gt_CSHARPCOMP): Also set CSHARPCOMPFLAGS.
4200
4201         2006-07-22  Bruno Haible  <bruno@clisp.org>
4202
4203                 * gettext.m4: Update from GNU gettext-0.15.
4204                 * nls.m4: Likewise.
4205                 * po.m4: Likewise.
4206                 * inttypes-pri.m4: Likewise.
4207                 * inttypes-h.m4: Renamed from inttypes.m4.
4208                 (gl_HEADER_INTTYPES_H): Renamed from gt_HEADER_INTTYPES_H.
4209
4210 2006-07-22  Bruno Haible  <bruno@clisp.org>
4211
4212         Merge from GNU gettext 0.15.
4213
4214         2005-07-05  Bruno Haible  <bruno@clisp.org>
4215
4216                 * printf-args.c (printf_fetchargs): Work around broken
4217                 definition of wint_t on mingw.
4218
4219         2005-02-12  Bruno Haible  <bruno@clisp.org>
4220
4221                 * xallocsa.h: Add extern "C" for C++.
4222
4223         2006-05-17  Bruno Haible  <bruno@clisp.org>
4224
4225                 Cygwin portability.
4226                 * progreloc.c (WIN32_NATIVE): Renamed from WIN32.
4227
4228         2006-04-30  Bruno Haible  <bruno@clisp.org>
4229
4230                 * progreloc.c: Include <mach-o/dyld.h> if available.
4231                 (find_executable): Use _NSGetExecutablePath when possible.
4232
4233         2006-05-06  Charles Wilson  <cygwin@cwilson.fastmail.fm>
4234
4235                 * progreloc.c (maybe_executable) [CYGWIN]: Use the access()
4236                 function.
4237
4238         2005-12-29  Bruno Haible  <bruno@clisp.org>
4239
4240                 * progreloc.c (set_program_name_and_installdir): Fix
4241                 compilation error.
4242
4243         2005-12-04  Bruno Haible  <bruno@clisp.org>
4244
4245                 Cygwin portability.
4246                 * progreloc.c: Include <windows.h> also on Cygwin.
4247                 (find_executable): Add support for Cygwin.
4248                 (set_program_name_and_installdir): Handle also platforms with
4249                 nonempty EXEEXT.
4250
4251         2006-07-11  Bruno Haible  <bruno@clisp.org>
4252
4253                 * javacomp.c: Fix a comment.
4254                 Reported by Jim Meyering.
4255
4256         2006-04-30  Bruno Haible  <bruno@clisp.org>
4257
4258                 * javacomp.h (compile_java_class): Add source_version,
4259                 target_version arguments.
4260                 * javacomp.c: Rewritten to choose only a compiler that
4261                 respects the specified source_version and target_version.
4262
4263         2006-06-27  Bruno Haible  <bruno@clisp.org>
4264
4265                 Assume correct S_ISDIR macro.
4266                 * mkdtemp.c: Remove test of STAT_MACROS_BROKEN.
4267
4268         2006-07-22  Bruno Haible  <bruno@clisp.org>
4269
4270                 * javaversion.h: New file, from GNU gettext.
4271                 * javaversion.c: New file, from GNU gettext.
4272                 * javaversion.java: New file, from GNU gettext.
4273                 * javaversion.class: New file, from GNU gettext.
4274
4275         2006-05-17  Bruno Haible  <bruno@clisp.org>
4276
4277                 Cygwin portability.
4278                 * javaexec.c (execute_java_class): Test for jview program
4279                 also on Cygwin.
4280
4281         2006-04-09  Bruno Haible  <bruno@clisp.org>
4282
4283                 * fatal-signal.c: Don't include string.h.
4284                 (at_fatal_signal): Use a copying loop instead of memcpy.
4285
4286         2005-12-04  Bruno Haible  <bruno@clisp.org>
4287
4288                 * csharpexec.c: Add support for 'clix' launcher (untested).
4289                 (execute_csharp_using_sscli): New function.
4290                 (execute_csharp_program): Call it.
4291
4292         2006-06-21  Bruno Haible  <bruno@clisp.org>
4293
4294                 Avoid warnings from recent versions of mcs.
4295                 * csharpcomp.c (compile_csharp_using_mono): Don't use options
4296                 -o, -L, -r any more. Use options documented since mcs-1.0
4297                 instead. Similarly for -g.
4298
4299         2005-07-09  Bruno Haible  <bruno@clisp.org>
4300
4301                 * csharpcomp.c (compile_csharp_using_sscli): For -l option,
4302                 add a .dll suffix.
4303                 Reported by Mark Junker <mjscod@gmx.de>.
4304
4305         2006-06-17  Bruno Haible  <bruno@clisp.org>
4306
4307                 * config.charset: Update for NetBSD 3.0.
4308
4309         2006-05-17  Bruno Haible  <bruno@clisp.org>
4310
4311                 Cygwin portability.
4312                 * localcharset.c (WIN32_NATIVE): Renamed from WIN32.
4313
4314         2006-05-16  Bruno Haible  <bruno@clisp.org>
4315
4316                 * localcharset.c [CYGWIN]: Include <windows.h>.
4317                 (get_charset_aliases): For Cygwin, return the same CPxxx
4318                 aliases list as under WIN32.
4319                 (locale_charset) [CYGWIN]: Try to retrieve the encoding from
4320                 the environment variables. Fall back to GetACP().
4321
4322         2006-04-05  Bruno Haible  <bruno@clisp.org>
4323
4324                 * config.charset: Update Juan Manuel Guerrero's address.
4325
4326         2005-02-12  Bruno Haible  <bruno@clisp.org>
4327
4328                 * allocsa.h: Add extern "C" for C++.
4329
4330         2005-02-10  Bruno Haible  <bruno@clisp.org>
4331
4332                 * allocsa.h (sa_alignof): Define differently with AIX xlc, to
4333                 avoid a bug of this compiler on AIX 3.2.5 dealing with enums.
4334
4335         2006-07-22  Bruno Haible  <bruno@clisp.org>
4336
4337                 * gettext.h: Update to GNU gettext-0.15.
4338
4339 2006-07-22  Bruno Haible  <bruno@clisp.org>
4340
4341         * config/srclist.txt: Resync printf-args.c, vasnprintf.c,
4342         localcharset.c, mkdtemp.c, config.rpath, lib-ld.m4, lib-link.m4,
4343         lib-prefix.m4, longdouble.m4, ssize_t.m4.
4344
4345 2006-07-21  Eric Blake  <ebb9@byu.net>
4346
4347         * modules/stdlib-safer: New file.
4348         * MODULES.html.sh (File stream based Input/Output): Add
4349         stdlib-safer.
4350
4351 2006-07-21  Eric Blake  <ebb9@byu.net>
4352
4353         * lib/stdlib-safer.h: New file from coreutils, required by
4354         stdlib--.h.
4355
4356 2006-07-20  Paul Eggert  <eggert@cs.ucla.edu>
4357
4358         * gnulib-tool (func_usage): Document --assume-autoconf='latest-stable'.
4359
4360 2006-07-20  Bruno Haible  <bruno@clisp.org>
4361
4362         * gnulib-tool: Recognize new option --assume-autoconf.
4363         (autoconf_minversion): New variable.
4364         (func_get_filelist): Use it to decide whether to add onceonly_2_57.m4.
4365
4366 2006-07-20  Bruno Haible  <bruno@clisp.org>
4367
4368         * MODULES.html.sh (func_all_modules): Add a missing func_begin_table.
4369
4370 2006-07-19  Derek R. Price  <derek@ximbiot.com>
4371
4372         * lib/getaddrinfo.h: Don't define unimplemented AI_* flags.
4373         Reindent and repaginate.
4374
4375 2006-07-19  Derek Price  <derek@ximbiot.com>
4376
4377         * doc/gnulib.texi (Libtool and Windows):  Eliminate passive voice.
4378         Correct grammar.
4379
4380 2006-07-17  Bruno Haible  <bruno@clisp.org>
4381
4382         * modules/list: New file.
4383         * modules/array-list: New file.
4384         * modules/carray-list, modules/carray-list-tests: New files.
4385         * modules/linked-list, modules/linked-list-tests: New files.
4386         * modules/avltree-list, modules/avltree-list-tests: New files.
4387         * modules/rbtree-list, modules/rbtree-list-tests: New files.
4388         * modules/linkedhash-list, modules/linkedhash-list-tests: New files.
4389         * modules/avltreehash-list, modules/avltreehash-list-tests: New files.
4390         * modules/rbtreehash-list, modules/rbtreehash-list-tests: New files.
4391         * modules/oset: New file.
4392         * modules/array-oset: New file.
4393         * modules/avltree-oset, modules/avltree-oset-tests: New files.
4394         * modules/rbtree-oset, modules/rbtree-oset-tests: New files.
4395         * tests/test-carray_list.c: New file.
4396         * tests/test-linked_list.c: New file.
4397         * tests/test-avltree_list.c: New file.
4398         * tests/test-rbtree_list.c: New file.
4399         * tests/test-linkedhash_list.c: New file.
4400         * tests/test-avltreehash_list.c: New file.
4401         * tests/test-rbtreehash_list.c: New file.
4402         * tests/test-avltree_oset.c: New file.
4403         * tests/test-rbtree_oset.c: New file.
4404         * MODULES.html.sh (Container data structures): New section.
4405
4406 2006-07-17  Bruno Haible  <bruno@clisp.org>
4407
4408         * m4/gl_list.m4: New file.
4409
4410 2006-07-17  Bruno Haible  <bruno@clisp.org>
4411
4412         * lib/gl_list.h: New file.
4413         * lib/gl_list.c: New file.
4414         * lib/gl_array_list.h: New file.
4415         * lib/gl_array_list.c: New file.
4416         * lib/gl_carray_list.h: New file.
4417         * lib/gl_carray_list.c: New file.
4418         * lib/gl_linked_list.h: New file.
4419         * lib/gl_linked_list.c: New file.
4420         * lib/gl_anylinked_list1.h: New file.
4421         * lib/gl_anylinked_list2.h: New file.
4422         * lib/gl_avltree_list.h: New file.
4423         * lib/gl_avltree_list.c: New file.
4424         * lib/gl_anyavltree_list1.h: New file.
4425         * lib/gl_anyavltree_list2.h: New file.
4426         * lib/gl_rbtree_list.h: New file.
4427         * lib/gl_rbtree_list.c: New file.
4428         * lib/gl_anyrbtree_list1.h: New file.
4429         * lib/gl_anyrbtree_list2.h: New file.
4430         * lib/gl_anytree_list1.h: New file.
4431         * lib/gl_anytree_list2.h: New file.
4432         * lib/gl_linkedhash_list.h: New file.
4433         * lib/gl_linkedhash_list.c: New file.
4434         * lib/gl_anyhash_list1.h: New file.
4435         * lib/gl_anyhash_list2.h: New file.
4436         * lib/gl_avltreehash_list.h: New file.
4437         * lib/gl_avltreehash_list.c: New file.
4438         * lib/gl_rbtreehash_list.h: New file.
4439         * lib/gl_rbtreehash_list.c: New file.
4440         * lib/gl_anytreehash_list1.h: New file.
4441         * lib/gl_anytreehash_list2.h: New file.
4442
4443         * lib/gl_oset.h: New file.
4444         * lib/gl_oset.c: New file.
4445         * lib/gl_array_oset.h: New file.
4446         * lib/gl_array_oset.c: New file.
4447         * lib/gl_avltree_oset.h: New file.
4448         * lib/gl_avltree_oset.c: New file.
4449         * lib/gl_rbtree_oset.h: New file.
4450         * lib/gl_rbtree_oset.c: New file.
4451         * lib/gl_anytree_oset.h: New file.
4452
4453 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
4454
4455         * m4/mkancesdirs.m4: New file.
4456         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Mention dirchownmod.c,
4457         dirchownmod.h.  Don't require AC_FUNC_ALLOCA, gl_AFS, gl_CHDIR_SAFER;
4458         no longer needed.  Require gl_FUNC_LCHOWN, since dirchownmod.c needs
4459         it.
4460
4461 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
4462
4463         * lib/dirchownmod.c, lib/dirchownmod.h, lib/mkancesdirs.c:
4464         * lib/mkancesdirs.h: New files.
4465         * lib/mkdir-p.c: Don't include alloca.h, stdio.h, sys/types.h,
4466         unistd.h, string.h, chdir-safer.h, dirname.h, lchmod.h, lchown.h,
4467         save-cwd.h.  Instead, include dirchownmod.h and mkancesdirs.h.
4468         (make_dir_parents): New args MAKE_ANCESTOR, OPTIONS, ANNOUNCE,
4469         MODE_BITS.  Remove options VERBOSE_FMT_STRING, CWD_ERRNO.  All
4470         callers changed.  Revamp internals significantly, by not
4471         attempting to create directories that are temporarily more
4472         permissive than the final results.  Do not attempt to use
4473         save_cwd/restore_cwd; it isn't worth it for mkdir and install.
4474         This removes some race conditions, fixes some bugs, and simplifies
4475         things.  Use new dirchownmod function to do owner and mode changes.
4476         * lib/mkdir-p.h: Likewise.
4477         * lib/modechange.c (octal_to_mode): New function.
4478         (struct mode_change): New member mentioned.
4479         (make_node_op_equals): New arg mentioned.  All callers changed.
4480         (mode_compile): Keep track of which mode bits the user has explicitly
4481         mentioned.
4482         (mode_adjust): New arg DIR, so that we implement the X op correctly.
4483         New arg PMODE_BITS, to keep track of which mode bits the user
4484         mentioned; it treats S_ISUID and S_ISGID speciall.
4485         All callers changed.
4486         * lib/modechange.h: Likewise.
4487
4488 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
4489
4490         * MODULES.html.sh: Add mkancestors.
4491         * modules/mkancesdirs: New module.
4492         * modules/mkdir-p (Files): Remove lib/chdir-safer.c, lib/chdir-safer.h,
4493         lib/same-inode.h, m4/afs.m4, m4/chdir-safer.m4.
4494         The chdir-safer and afs files are now orphans; I'll remove them
4495         unless someone speaks up.
4496         Add lib/dirchownmod.c, lib/dirchownmod.h.
4497         (Depends-on): Remove alloca, chown, save-cwd, dirname.
4498         Add lchown, mkancesdirs.
4499         (Maintainer): Add self.
4500
4501 2006-07-15  Karl Berry  <karl@gnu.org>
4502
4503         * gnulib-tool: help message wording/arrangement.
4504
4505 2006-07-14  Simon Josefsson  <jas@extundo.com>
4506
4507         * doc/gnulib.texi (Libtool and Windows): New section.
4508
4509 2006-07-12  Simon Josefsson  <jas@extundo.com>
4510
4511         * modules/gendocs (License): Fix license, approved by Karl.
4512
4513 2006-07-12  Eric Blake  <ebb9@byu.net>
4514
4515         * MODULES.html.sh: Add gendocs.
4516
4517 2006-07-11  Eric Blake  <ebb9@byu.net>
4518
4519         * modules/fdl: New module, to install doc/fdl.texi.
4520         * MODULES.html.sh: Add new section for documentation modules.
4521         * gnulib-tool: Avoid space-tab.
4522         (--doc-base): New option, to manage files from doc.
4523
4524 2006-07-11  Eric Blake  <ebb9@byu.net>
4525
4526         * m4/absolute-header.m4: Fix comments to match recent change.
4527
4528 2006-07-11  Eric Blake  <ebb9@byu.net>
4529
4530         * gnulib-tool: List --doc-base before --tests-base.
4531
4532 2006-07-11  Derek R. Price  <derek@ximbiot.com>
4533
4534         * lib/glob.c: s/NAMLEN/_D_EXACT_NAMLEN/.
4535
4536 2006-07-11  Bruno Haible  <bruno@clisp.org>
4537
4538         * README: Mention where to put documentation.
4539
4540 2006-07-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4541
4542         * doc/functions.texi, gnulib-tool.texi, gnulib.texi: Fix some typos.
4543
4544 2006-07-10  Paul Eggert  <eggert@cs.ucla.edu>
4545
4546         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Like today's change
4547         to stdint.m4.
4548
4549 2006-07-10  Paul Eggert  <eggert@cs.ucla.edu>
4550
4551         * m4/stdint.m4 (gl_STDINT_H): Like yesterday's change to
4552         absolute-header.m4.  Also, set ABSOLUTE_STDINT_H to a string
4553         "no/such/file/stdint.h" when there is no such file, so that
4554         the resulting C code can be parsed by dodgy compilers.
4555         Problems reported by Bob Proulx.
4556
4557 2006-07-10  Derek R. Price  <derek@ximbiot.com>
4558
4559         * lib/backupfile.c, dirfd.h, fts.c, getcwd.c, glob.c, glob_.h:
4560         Ignore the obsolescent !HAVE_DIRENT_H case.  Consolidate NAMLEN
4561         macros into the GNU _D_EXACT_NAMLEN.
4562         * lib/savedir.c:  Likewise.
4563         (savedirstream): Use _D_EXACT_NAMLEN in preference to strlen.
4564
4565 2006-07-10  Derek R. Price  <derek@ximbiot.com>
4566         and Paul Eggert  <eggert@cs.ucla.edu>
4567
4568         * m4/backupfile.m4, d-ino.m4, d-type.m4, dirfd.m4, fts.m4, getcwd.m4:
4569         * m4/savedir.m4:
4570         Ignore the obsolescent !HAVE_DIRENT_H case.  Consolidate NAMLEN
4571         macros into the GNU _D_EXACT_NAMLEN.
4572
4573 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
4574
4575         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Use "" rather than <>
4576         around the absolute name, to work around a problem with the HP-UX
4577         11.23 native C compiler, reported by Bob Proulx.
4578
4579 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
4580
4581         * doc/maintain.texi, make-stds.texi: Sync from
4582         <http://savannah.gnu.org/projects/gnustandards>.
4583
4584 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
4585
4586         * build-aux/depcomp, build-aux/install-sh: Sync from Automake.
4587
4588 2006-07-09  Jim Meyering  <jim@meyering.net>
4589
4590         * m4/glob.m4: Remove a doubled word in a comment.
4591
4592 2006-07-09  Jim Meyering  <jim@meyering.net>
4593
4594         * lib/argp-pv.c: Remove a doubled word in a comment.
4595         * lib/check-version.c (check_version): Likewise.
4596         * lib/javacomp.c (compile_java_class): Likewise.
4597
4598 2006-07-08  Paul Eggert  <eggert@cs.ucla.edu>
4599
4600         * gnulib-tool (func_get_filelist): Don't echo m4/onceonly_2_57.m4,
4601         for the benefit of people using Autoconf 2.60.  If you want to
4602         support older Autoconf versions you can copy m4/onceonly_2_57.m4
4603         (or m4/onceonly.m4, if pre-2.57) manually.
4604
4605 2006-07-08  Jim Meyering  <jim@meyering.net>
4606
4607         * m4/link-follow.m4: Remove one of two adjacent "whether"s in a
4608         comment.
4609         * m4/getopt.m4: Remove one of two adjacent "your"s in a comment.
4610         * m4/regex.m4 (gl_REGEX): Remove one of two adjacent "the"s in a
4611         comment.
4612
4613 2006-07-08  Jim Meyering  <jim@meyering.net>
4614
4615         * lib/getndelim2.h (getndelim2): Remove doubled "after" in comment.
4616
4617 2006-07-07  Simon Josefsson  <jas@extundo.com>
4618
4619         * tests/test-crc.c: Change expected crc value, the test vector
4620         were probably computed using the old broken crc.c?
4621
4622 2006-07-06  Simon Josefsson  <jas@extundo.com>
4623
4624         * modules/sys_socket (Files): Add m4/sockpfaf.m4 (this module is
4625         now the canonical place for the M4 file).
4626
4627         * modules/getaddrinfo (Files): Remove m4/sockpfaf.m4, we get it
4628         from the sys_socket dependency now.
4629
4630         * modules/inet_pton (Files): Ditto.
4631
4632         * modules/inet_ntop (Files): Ditto.
4633
4634 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
4635
4636         * modules/getusershell (configure.ac): Use gl_FUNC_GETUSERSHELL,
4637         not gl_PREREQ_GETUSERSHELL.
4638
4639 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4640
4641         * m4/_inttypes_h.m4 (gl_INTTYPES_H): Use AC_CHECK_DECLS_ONCE
4642         with only one argument, for Autoconf 2.60.
4643         * m4/fileblocks.m4 (gl_PREREQ_FILEBLOCKS): AC_CHECK_DECLS_ONCE may
4644         expand to nothing, so add a shell command to avoid syntax error.
4645         * m4/getpass.m4 (gl_PREREQ_GETPASS): Likewise.
4646
4647 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4648
4649         * lib/strtod.c (strtod): cast the argument of tolower to unsigned char.
4650
4651 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
4652
4653         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Don't check for getenv decl;
4654         no longer needed.  Check for isblank decl.
4655         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Don't check for getenv decl.
4656         * m4/regex.m4 (gl_PREREQ_REGEX): Dheck for isblank decl instead
4657         of existence.
4658
4659 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
4660
4661         * lib/getloadavg.c: Use __VMS, not VMS.
4662         * lib/getopt.c: Likewise.
4663         * lib/getpagesize.h: Likewise.
4664         * lib/glob.c: Remove most VMS cruft; it hasn't been tested for a while
4665         and probably does not work.
4666
4667 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
4668
4669         * lib/.cppi-disable: Add wcwidth.
4670         * lib/fnmatch.c (ISBLANK): Remove.  All uses changed to isblank.
4671         (isblank) [! (defined isblank || HAVE_DECL_ISBLANK)]: New macro.
4672         (ISGRAPH): Remove.  All uses changed to isgraph.
4673         (FOLD) [!defined _LIBC]: Remove special case.
4674         * lib/getdate.y (lookup_word): Remove no-longer-needed call to islower.
4675         * lib/regex_internal.h (isblank): Depend on HAVE_DECL_ISBLANK, not
4676         HAVE_ISBLANK.
4677         * lib/strftime.c (TOLOWER, TOUPPER) [!defined _LIBC]: Remove special
4678         case.
4679
4680 2006-07-06  Jim Hyslop  <jhyslop@dreampossible.ca>  (tiny change)
4681
4682         * lib/getaddrinfo.c: Changes to compile under MSVC6: changed
4683         '#if WIN32_NATIVE' to '#ifdef' & moved WSAAPI macro inside
4684         brackets.  Other minor changes to suppress some compiler
4685         warnings.
4686
4687 2006-07-06  Derek R. Price  <derek@ximbiot.com>
4688         and Paul Eggert  <eggert@cs.ucla.edu>
4689
4690         * m4/backupfile.m4 (gl_BACKUPFILE): Check for dirent.h, instead
4691         of invoking obsolescent AC_HEADER_DIRENT macro.
4692         * m4/d-ino.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_INO): Likewise.
4693         * m4/d-type.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Likewise.
4694         * m4/dirfd.m4 (gl_FUNC_DIRFD): Likewise.
4695         * m4/fts.m4 (gl_FUNC_FTS_CORE): Likewise.
4696         * m4/getcwd.m4 (gl_PREREQ_GETCWD): Likewise.
4697         * m4/glob.m4 (gl_PREREQ_GLOB): Likewise.
4698         * m4/savedir.m4 (gl_SAVEDIR): Likewise.
4699         * m4/readdir.m4: Remove; no longer needed.
4700
4701 2006-07-06  Derek R. Price  <derek@ximbiot.com>
4702         and Paul Eggert  <eggert@cs.ucla.edu>
4703
4704         * lib/backupfile.c [HAVE_DIRENT_H && ! HAVE_NDIR_H]:
4705         Don't worry about this obsolete case any more.
4706         (HAVE_DIR): Remove.  All uses removed; we now assume you can read
4707         directories.
4708         * lib/dirfd.h [HAVE_DIRENT_H && ! HAVE_NDIR_H]: Don't
4709         worry about this obsolete case any more.
4710         * lib/fts.c: Likewise.
4711         * lib/getcwd.c: Likewise.
4712         * lib/glob.h: Likewise.
4713         * lib/savedir.c: Likewise.
4714
4715 2006-07-05  Paul Eggert  <eggert@cs.ucla.edu>
4716
4717         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Use AC_CHECK_DECLS_ONCE
4718         rather than AC_CHECK_DECLS for strtoimax and strtoumax.
4719         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Remove; no longer
4720         needed.
4721         All uses removed.
4722         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
4723         * m4/strtoul.m4 (gl_PREREQ_STRTOUL): Likewise.
4724         * m4/exclude.m4 (gl_EXCLUDE): Don't check for isascii; no longer
4725         needed.
4726         * m4/getdate.m4 (gl_GETDATE): Likewise.
4727         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Likewise.
4728         * m4/memcasecmp.m4 (gl_MEMCASECMP): Likewise.
4729         * m4/strtod.m4 (gl_FUNC_STRTOD): Likewise.
4730         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
4731         * m4/strtoul.m4 (gl_PREREQ_STRTOUL): Likewise.
4732         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
4733         * m4/exclude.m4 (gl_EXCLUDE): Don't require AC_C_INLINE; no longer
4734         needed.
4735
4736 2006-07-05  Paul Eggert  <eggert@cs.ucla.edu>
4737
4738         * lib/memcasecmp.c: Include <limits.h>.
4739         (memcasecmp): Don't assume UCHAR_MAX <= INT_MAX.
4740         * lib/strtod.c (strtod): Don't assume isspace works on negative chars.
4741         Don't assume isdigit succeeds only on '0' through '9'.
4742
4743 2006-07-05  Eric Blake  <ebb9@byu.net>
4744
4745         * modules/getaddrinfo (Depends-on): Add snprintf.
4746
4747 2006-07-05  Eric Blake  <ebb9@byu.net>
4748
4749         * m4/sockpfaf.m4 (gl_SOCKET_FAMILIES): Use gl_HEADER_SYS_SOCKET
4750         to avoid 'header present but could not be compiled' on cygwin.
4751
4752 2006-07-05  Eric Blake  <ebb9@byu.net>
4753
4754         * lib/getaddrinfo.h (NI_NUMERICHOST, NI_NUMERICSERV): Define if
4755         missing from netdb.h.
4756         * lib/getaddrinfo.c (includes): Include inet_ntop and snprintf.
4757
4758 2006-07-05  Derek R. Price  <derek@ximbiot.com>
4759
4760         * m4/calloc.m4 (_AC_FUNC_CALLOC_IF): Don't require AC_HEADER_STDC;
4761         no longer needed.
4762         * m4/exclude.m4 (gl_EXCLUDE): Likewise.
4763         * m4/getdate.m4 (gl_GETDATE): Likewise.
4764         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Likewise.
4765         * m4/memcasecmp.m4 (gl_MEMCASECMP): Likewise.
4766         * m4/strtod.m4 (gl_FUNC_STRTOD): Likewise.
4767         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
4768         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
4769
4770 2006-07-05  Derek R. Price  <derek@ximbiot.com>
4771
4772         * lib/exclude.c (IN_CTYPE_DOMAIN, is_space): Remove; no longer needed.
4773         All uses of is_space replaced by isspace.
4774         * lib/exit.h: Don't talk about STDC_HEADERS.
4775         * lib/fnmatch.c (ISASCII): Remove; no longer needed.  All uses removed.
4776         (ISPRINT, ISDIGIT, ISALNUM, ISALPHA, ISCNTRL, ISLOWER, ISPUNCT):
4777         (ISSPACE, ISUPPER, ISXDIGIT): Remove; no longer needed.  All uses
4778         replaced by isprint etc.
4779         * lib/getdate.y (IN_CTYPE_DOMAIN, ISSPACE, ISALPHA, ISLOWER): Likewise.
4780         * lib/getusershell.c (IN_CTYPE_DOMAIN, ISSPACE): Likewise.
4781         * lib/memcasecmp.c (IN_CTYPE_DOMAIN, ISLOWER, TOUPPER): Likewise.
4782         * lib/strtod.c (IN_CTYPE_DOMAIN, ISSPACE, ISDIGIT, TOLOWER): Likewise.
4783         * lib/strtol.c (IN_CTYPE_DOMAIN): Likewise.
4784         * lib/xstrtol.c (IN_CTYPE_DOMAIN, ISSPACE): Likewise.
4785
4786 2006-07-05  Bruno Haible  <bruno@clisp.org>
4787
4788         * m4/strndup.m4 (gl_FUNC_STRNDUP): When cross-compiling, check whether
4789         the function exists, before testing against AIX.
4790         Reported by Martin Lambers <marlam@marlam.de>.
4791
4792 2006-07-04  Paul Eggert  <eggert@cs.ucla.edu>
4793
4794         * modules/cycle-check (lib_SOURCES): Add same-inode.h.
4795         From Mark D. Baushke.
4796
4797 2006-07-04  Paul Eggert  <eggert@cs.ucla.edu>
4798
4799         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Prepend three slashes
4800         to the absolute name, not just one, to bypass Sun C 5.8's
4801         "warning: #include of /usr/include/... may be non-portable".
4802
4803 2006-07-04  Eric Blake  <ebb9@byu.net>
4804
4805         * modules/dirname-tests: New test module.
4806         * tests/test-dirname.c: New file, replacing dirname.c
4807         TEST_DIRNAME section that was recently deleted.
4808
4809 2006-07-04  Bruno Haible  <bruno@clisp.org>
4810
4811         Assume ANSI C header files and <ctype.h> functions.
4812         * lib/mbswidth.c (IN_CTYPE_DOMAIN, ISPRINT, ISCNTRL): Remove macros.
4813         (mbsnwidth): Use isprint, iscntrl instead.
4814
4815 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
4816
4817         Merge from coreutils.
4818         * MODULES.html.sh: Add xstrtold.
4819         * modules/xstrtold: New file.
4820         * modules/cycle-check (Files): Add lib/same-inode.h.
4821         * modules/dirname (Files): Add m4/double-slash-root.m4.
4822         * modules/getcwd (Files): Add m4/getcwd-abort-bug.m4.
4823         * modules/mkdir-p (Files): Add lib/same-inode.h.
4824         * modules/same (Files): Add lib/same-inode.h.
4825
4826 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
4827
4828         * m4/absolute-header.m4: Renamed from full-header-path.m4.
4829         This is to keep the terminology clean; POSIX talks about
4830         "absolute pathnames", not "full pathnames", but the GNU
4831         Coding Standards say to use "path" for something else;
4832         so use "absolute" to keep both sides happy.
4833         (gl_ABSOLUTE_HEADER): Renamed from gl_FULL_HEADER_PATH.
4834         Set gl_absolute_header, not gl_full_header_path.
4835         Set gl_cv_absolute_<header>, not gl_full_path_<header>.
4836         Define ABSOLUTE_<HEADER>, not FULL_PATH_<HEADER>.
4837         All uses changed.
4838
4839         Merge from coreutils.
4840
4841         2006-06-30  Paul Eggert  <eggert@cs.ucla.edu>
4842
4843         * m4/c-strtod.m4 (gl_C_STRTOLD): Add c-strtod.c to LIBSOURCES.
4844         Require gl_USE_SYSTEM_EXTENSIONS, not gl_C_STRTOD, since we don't
4845         want to require the building of c-strtod.o.
4846         * m4/lib-check.m4 (cu_LIB_CHECK): Remove SEQ_LIBM, since seq no longer
4847         needs -lm directly.
4848         * m4/xstrtod.m4 (gl_XSTRTOLD): New macro.
4849
4850         2006-06-19  Paul Eggert  <eggert@cs.ucla.edu>
4851
4852         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Prefer binutils's
4853         --as-needed option if available.  Problem reported by Albert Chin in
4854         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00114.html>.
4855         However, use -Wl,--as-needed, not bare --as-needed, since HP-UX 11.11
4856         cc merely issues a bunch of annoying warnings for --as-needed
4857         (this problem was reported by Bob Proulx).  Also, try linking with
4858         -lm to detect a bug in binutils 2.16 (this problem was reported
4859         by Ralf Wildenhues).
4860
4861         2006-06-18  Jim Meyering  <jim@meyering.net>
4862
4863         Test for a bug that causes glibc's getcwd to suffer a failed assertion.
4864         * m4/getcwd-abort-bug.m4 (gl_FUNC_GETCWD_ABORT_BUG): New file and
4865         macro.
4866         * m4/getcwd.m4 (gl_FUNC_GETCWD): If we detect support for getcwd_null,
4867         also check for glibc-2.4's abort-inducing bug.
4868
4869         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Fix typo.
4870         Low-probability clean-up should be to use rmdir to get rid of
4871         the just-created directory, not unlink.
4872
4873         * m4/ftruncate.m4 (gl_FUNC_FTRUNCATE): If ftruncate is missing, make
4874         configure fail, and request a bug report to inform us about it.
4875         Add a comment that, barring reports to the contrary, in 2007 we'll
4876         assume ftruncate is universally available.
4877
4878         2006-04-17  Paul Eggert  <eggert@cs.ucla.edu>
4879
4880         * m4/filemode.m4 (gl_FILEMODE): Check for strmode declaration.
4881
4882         2006-03-12  Jim Meyering  <jim@meyering.net>
4883
4884         * m4/chdir-safer.m4 (gl_CHDIR_SAFER): Add same-inode.h to the list.
4885         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Likewise.
4886         * m4/same.m4 (gl_SAME): Likewise.
4887         * m4/root-dev-ino.m4 (gl_ROOT_DEV_INO): Likewise.
4888
4889         2006-03-11  Eric Blake  <ebb9@byu.net>
4890
4891         * m4/double-slash-root.m4: New file, provides gl_DOUBLE_SLASH_ROOT.
4892         * m4/dirname.m4 (gl_DIRNAME): Use gl_DOUBLE_SLASH_ROOT.
4893         * m4/dos.m4 (FILE_SYSTEM_PREFIX_LEN): Move from here to dirname.h.
4894         (FILE_SYSTEM_DRIVE_PREFIX_CAN_BE_RELATIVE): New define.
4895
4896 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
4897
4898         * lib/stdint_.h: Include <sys/types.h> after @FULL_PATH_STDINT_H@, for
4899         MacOS X 10.4.6.  Don't mention <sys/int_types.h>.  Problems
4900         reported by Mark D. Baushke, one in
4901         <http://lists.gnu.org/archive/html/bug-gnulib/2006-07/msg00015.html>.
4902
4903         Merge from coreutils.
4904
4905         * lib/.cppi-disable: Add stdint_.h.
4906         * lib/.cvsignore: Add stdint.h.
4907
4908         2006-06-30  Paul Eggert  <eggert@cs.ucla.edu>
4909
4910         * lib/xstrtod.c (XSTRTOD, DOUBLE): New macros, so that we can support
4911         both double and long double versions.
4912         (XSTRTOD): Renamed from xstrtod.  Use DOUBLE internally.
4913         * lib/xstrtold.c: New file.
4914         * lib/xstrtod.h (xstrtold): New decl.
4915
4916         2006-05-22  Paul Eggert  <eggert@cs.ucla.edu>
4917
4918         * lib/filemode.c (setst): Remove.
4919         (strmode): Rewrite to avoid setst.  This makes the code shorter,
4920         (arguably) clearer, and the generated code is a bit smaller on my
4921         Debian GNU/Linux stable x86 host.
4922
4923         2006-04-17  Paul Eggert  <eggert@cs.ucla.edu>
4924
4925         * lib/filemode.c: Include "filemode.h" first, to test the interface.
4926         Assume that filemode.h includes sys/types.h and sys/stat.h.
4927         (HAVE_ST_DM_MODE): New macro, moved here from ls.c.
4928         (ftypelet): Reorder to put common cases first, for efficiency.
4929         Add 'P', 'w'.  Remove 'M', since it's now the caller's responsibility
4930         to do 'M'.
4931         (strmode): Renamed from mode_string, and now stores 12 bytes instead
4932         of 10, for compatibility with FreeBSD.  All callers changed.
4933         (filemodestring): Now stores 12 bytes instead of 10, and sets file
4934         types that can't be deduced solely from st_mode.  First arg is now a
4935         const pointer.
4936         * lib/filemode.h (HAVE_DECL_STRMODE): Include <string.h> for strmode.
4937         (strmode): Renamed from mode_string.
4938         (filemodestring): New decl.
4939         * lib/stat-macros.h: Don't undef S_ISDOOR, since it's never buggy.
4940         (S_ISDOOR): Don't bother with S_IFDOOR, since that code is never
4941         needed.
4942         (S_ISPORT, S_ISWHT): New macros, if not already defined.
4943
4944         2006-04-12  Paul Eggert  <eggert@cs.ucla.edu>
4945
4946         * lib/fsusage.c: Don't include <inttypes.h> or <stdint.h>, since
4947         fsusage.h now does that.  Include fsusage.h first, to test interface.
4948         Prefer statvfs if it works, since it's blessed by POSIX.  Attempt
4949         at most one method (the old code could have generated decls that
4950         didn't conform to C89, not that this was ever exercised).
4951         * lib/fsusage.h: Include <inttypes.h> and <stdint.h> if they exist.
4952
4953         2006-03-19  Jim Meyering  <jim@meyering.net>
4954
4955         Work even in a chroot where d_ino values for entries in "/"
4956         don't match the stat.st_ino values for the same names.
4957         * lib/getcwd.c (__getcwd): When no d_ino value matches the target inode
4958         number, iterate through all entries again, using lstat instead.
4959         Reported by Kenshi Muto in http://bugs.debian.org/355810, and by
4960         Zouhir Hafidi in https://bugzilla.redhat.com/bugzilla/190656.
4961
4962         * lib/getcwd.c (__getcwd): Clarify a comment.
4963         Use memcpy in place of a call to strcpy.
4964
4965         2006-03-12  Jim Meyering  <jim@meyering.net>
4966
4967         * lib/fts-cycle.c (leave_dir): If cycle-check's saved dev-ino pair
4968         matches that of the current directory (which we're about to chdir ".."
4969         out of), then save the dev-ino of the parent, instead.
4970
4971         * lib/same-inode.h (SAME_INODE): New file/macro.
4972         * lib/chdir-safer.c (SAME_INODE): Remove definition.
4973         Include "same-inode.h", instead.
4974         * lib/same.c: Likewise.
4975         * lib/cycle-check.h: Include "same-inode.h".
4976         (CYCLE_CHECK_REFLECT_CHDIR_UP): Define.
4977         * lib/cycle-check.c (SAME_INODE): Remove definition.
4978         * lib/root-dev-ino.h: Include "same-inode.h".
4979
4980         2006-03-11  Eric Blake  <ebb9@byu.net>
4981
4982         * lib/same.c (same_name): s/base_name/last_component/
4983         * lib/backupfile.c (check_extension, numbered_backup): Likewise.
4984         * lib/filenamecat.c (file_name_concat): Likewise.
4985
4986         2006-03-11  Eric Blake  <ebb9@byu.net>,
4987                     Paul Eggert  <eggert@cs.ucla.edu>
4988
4989         * lib/dirname.h (FILE_SYSTEM_PREFIX_LEN): Move here from dos.m4.
4990         [FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX]: Don't treat 1: as a
4991         drive prefix.
4992         (IS_ABSOLUTE_FILE_NAME): Treat all drive letters as absolute on
4993         platforms like cygwin with FILE_SYSTEM_DRIVE_PREFIX_IS_ABSOLUTE.
4994         (last_component): New method.
4995         * lib/dirname.c (dir_len): Determine when drive letters need a
4996         subsequent slash.  Preserve // when it is special.
4997         (dir_name): Don't append dot when drive letter is absolute.
4998         [TEST_DIRNAME]: Move into a full-blown gnulib test.
4999         * lib/basename.c (base_name): New semantics - malloc the result.
5000         Preserve // when it is special.  Preserve relative files that look
5001         like drive letters.
5002         (base_len): Preserve // when it is special.
5003         (last_component): New method, similar to old base_name semantics.
5004         * lib/stripslash.c (strip_trailing_slashes): Use last_component, not
5005         base_name.  Strip redundant slashes from ///.
5006
5007 2006-07-03  Jim Meyering  <jim@meyering.net>
5008
5009         * lib/cycle-check.h (CYCLE_CHECK_REFLECT_CHDIR_UP): Abort if this
5010         macro is used before the first cycle_check call.
5011
5012 2006-07-03  Eric Blake  <ebb9@byu.net>
5013
5014         * modules/dirname (Depends-on): Add xstrndup.
5015
5016 2006-07-02  Paul Eggert  <eggert@cs.ucla.edu>
5017
5018         * m4/stdint.m4 (gl_STDINT_H): Use more-mnemonic identifiers for
5019         test cases, so that config.log is a bit easier to follow.
5020
5021 2006-07-02  Paul Eggert  <eggert@cs.ucla.edu>
5022
5023         * lib/stdint_.h (intmax_t, uintmax_t): Prefer long to long long if
5024         both are 64 bits, since this seems to be the tradition, and this
5025         prevents gcc -Wformat from warning about usages with PRIuMAX.  If
5026         we ever run into a host that prefers long long to long in this
5027         case, we'll need another configure-time test.  Problem reported by
5028         Jim Meyering.
5029
5030 2006-07-02  Eric Blake  <ebb9@byu.net>
5031
5032         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Simplify by using AC_CHECK_DECLS.
5033
5034 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
5035
5036         * modules/inttypes (Depends-on): No longer depends on stdint.
5037         * modules/stdint (Description): Say more about assumptions.
5038         Say that the fast types might differ.  Say macros are used.
5039         (Files): Remove m4/size_max.m4, m4/wchar_t.m4.  Add m4/longlong.m4.
5040         (Makefile.am): Revise list of substituted symbols to match
5041         new stdint.m4.
5042         * modules/stdint-tests (Files): Add m4/wchar_t.m4, m4/wint_t.m4.
5043         (configure.ac): Add gt_TYPE_WCHAR_T, gt_TYPE_WINT_T.
5044         * tests/test-stdint.c (verify_same_types)
5045         [! (__GNUC__ >= 2 && DO_PEDANTIC)]: Put in a decl, so that
5046         the code conforms to C99/C89.
5047         Test for WCHAR_MIN and WCHAR_MAX only if HAVE_WCHAR_T.
5048         Test for WINT_MIN and WINT_MAX only if HAVE_WINT_T.
5049
5050 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
5051
5052         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Backport from Autoconf 2.60,
5053         but fix a bug, by requiring at least 64 bits.
5054         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Likewise.
5055         * m4/longlong.m4 (gl_AC_TYPE_LONG_LONG): Now just call
5056         AC_TYPE_LONG_LONG_INT.  This macro is obsolete and will go soon.
5057         * m4/ulonglong.m4 (gl_AC_TYPE_UNSIGNED_LONG_LONG) Likewise.
5058
5059         * m4/stdint.m4 (gl_STDINT_H): Rewrite to accommodate stdint_.h
5060         changes.  Make 2.59 a prerequisite.  Check and substitute for
5061         HAVE_LONG_LONG_INT.  Rely on Autoconf to check for stdint.h and
5062         inttypes.h.  Do not use special include files; just use the
5063         defaults.  Check for sys/inttypes.h and sys/bitypes.h in the usual
5064         way now.  Remove no-longer-needed tests for HAVE_LONG_64BIT,
5065         HAVE_LONG_LONG_64BIT, int8_t, int16_t, int32_t, int64_t, uint8_t,
5066         uint16_t, uint32_t uint64_t, int_least8_t, int_least16_t,
5067         int_least32_t, int_least64_t, uint_least8_t, uint_least16_t,
5068         uint_least32_t, uint_least64_t, int_fast8_t, int_fast16_t,
5069         int_fast32_t, int_fast64_t, uint_fast8_t uint_fast16_t,
5070         uint_fast32_t, uint_fast64_t, intptr_t, uintptr_t, intmax_t,
5071         uintmax_t, INT8_MIN, INT8_MAX, UINT8_MAX, INT16_MIN, INT16_MAX,
5072         UINT16_MAX, INT32_MIN, INT32_MAX, UINT32_MAX, INT64_MIN,
5073         INT64_MAX, UINT64_MAX, INT_LEAST8_MIN, INT_LEAST8_MAX,
5074         UINT_LEAST8_MAX, INT_LEAST16_MIN, INT_LEAST16_MAX,
5075         UINT_LEAST16_MAX, INT_LEAST32_MIN, INT_LEAST32_MAX,
5076         UINT_LEAST32_MAX, INT_LEAST64_MIN, INT_LEAST64_MAX,
5077         UINT_LEAST64_MAX, INT_FAST8_MIN, INT_FAST8_MAX, UINT_FAST8_MAX,
5078         INT_FAST16_MIN, INT_FAST16_MAX, UINT_FAST16_MAX, INT_FAST32_MIN,
5079         INT_FAST32_MAX, UINT_FAST32_MAX, INT_FAST64_MIN, INT_FAST64_MAX,
5080         UINT_FAST64_MAX, INTPTR_MIN, INTPTR_MAX, UINTPTR_MAX, INTMAX_MIN,
5081         INTMAX_MAX, UINTMAX_MAX, PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN,
5082         SIG_ATOMIC_MAX, SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN,
5083         WINT_MAX.  Check for C99 conformance more strictly, by detecting
5084         bugs in glibc 2.4, Solaris 10, and OpenBSD 3.9.  On the other hand do
5085         not check for things that C99 does not require, e.g., int8_t.  If
5086         a test isn't needed unless <stdint.h> isn't working, and is
5087         unlikely to be needed for any other reason, then don't do it
5088         unless <stdint.h> isn't working.  Do not check for ptrdiff_t or
5089         size_t, since we assume C89 freestanding at least.  Do not check
5090         for sig_atomic_t, wchar_t, or wint_t, since the code now does
5091         the right thing even if the types are not defined.  Instead use:
5092         (gl_STDINT_TYPE_PROPERTIES): New macro.
5093         (gl_HEADER_STDINT_H, gl_HEADER_INTTYPES_H): Remove.  Don't bother
5094         testing whether <sys/types.h> clashes, as Autoconf does this for
5095         us now.  All uses removed.
5096         (gl_STDINT_CHECK_TYPES, gl_STDINT_MISSING_BOUND):
5097         (gl_STDINT_MISSING_BOUNDS, gl_STDINT_MISSING_BOUNDS2):
5098         (gl_CHECK_TYPE_SAME):
5099         Remove; no longer needed.
5100         (gl_STDINT_BITSIZEOF): Don't bother to check whether the type
5101         exists, since we'll return 0 anyway in that case.
5102         (gl_INTEGER_TYPE_SUFFIX, gl_STDINT_INCLUDES): New macros.
5103
5104 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
5105
5106         * lib/stdint_.h (_GL_STDINT_H): Renamed from _STDINT_H, to avoid
5107         possible collision with system files.
5108         (<stdio.h>, <time.h>, <wchar.h>) [defined __cplusplus && ! defined
5109         __STDC_CONSTANT_MACROS)]: Do not include, since we don't need
5110         WCHAR_MIN and WCHAR_MAX in this case.
5111         (<stddef.h>): Do not include; no longer needed.
5112         (<sys/types.h>): Include if @HAVE_SYS_TYPES_H@, not if
5113         (defined(__OpenBSD__) || defined(__bsdi__) || defined(__sgi)).
5114         (<sys/inttypes.h>): Include if @HAVE_SYS_INTTYPES_H@ &&
5115         !@HAVE_INTTYPES_H@, not if (defined(__FreeBSD__)
5116         && (__FreeBSD__ >= 3) && (__FreeBSD__ <= 4)).
5117         (__STDINT_H__) [@HAVE_STDINT_H@ && defined __sgi && ! defined
5118         __c99]: Define, to work around IRIX <stdint.h> incompatibility.
5119         (@FULL_PATH_STDINT_H@) [!(defined(__sgi) && @HAVE_INTTYPES_H@ &&
5120         !defined(__c99))]: Include in this case too, since it's harmless
5121         now.
5122         (<inttypes.h>) [@HAVE_INTTYPES_H@]: Include, since it's no longer
5123         dangerous to do so.
5124         (@FULL_PATH_INTTYPES_H@) [(defined(__hpux) || defined(_AIX)) &&
5125         @HAVE_INTTYPES_H@]: Do not include, since we now include <inttypes.h>.
5126         (_STDINT_MIN, _STDINT_MAX): New macros.
5127         (int8_t, uint8_t, int16_t, uint16_t, int32_t, uint32_t, int64_t):
5128         (uint64_t, int_least8_t, uint_least8_t, int_least16_t):
5129         (uint_least16_t, int_least32_t, uint_least32_t, int_least64_t):
5130         (uint_least64_t, int_fast8_t, uint_fast8_t, int_fast16_t):
5131         (uint_fast16_t, int_fast32_t, uint_fast32_t, int_fast64_t):
5132         (uint_fast64_t, intptr_t, uintptr_t, intmax_t, uintmax_t): Now
5133         macros, not typedefs; this simplifies things quite a bit.
5134         Use long int for all types narrower than int64_t.
5135         (intmax_t, uintmax_t, INTMAX_C, UINTMAX_C):
5136         Define in terms of long long int or int64_t or long int,
5137         not int64_t or int32_t.  This saves some compile-time testing.
5138         (INT8_MIN, INT8_MAX, UINT8_MAX, INT16_MIN, INT16_MAX, UINT16_MAX):
5139         (INT32_MIN, INT32_MAX, UINT32_MAX, INT64_MIN, INT64_MAX):
5140         (UINT64_MAX, INT_LEAST8_MIN, INT_LEAST8_MAX, UINT_LEAST8_MAX):
5141         (INT_LEAST16_MIN, INT_LEAST16_MAX, UINT_LEAST16_MAX):
5142         (INT_LEAST32_MIN, INT_LEAST32_MAX, UINT_LEAST32_MAX):
5143         (INT_LEAST64_MIN, INT_LEAST64_MAX, UINT_LEAST64_MAX, INT_FAST8_MIN):
5144         (INT_FAST8_MAX, UINT_FAST8_MAX, INT_FAST16_MIN, INT_FAST16_MAX):
5145         (UINT_FAST16_MAX, INT_FAST32_MIN, INT_FAST32_MAX, UINT_FAST32_MAX):
5146         (INT_FAST64_MIN, INT_FAST64_MAX, UINT_FAST64_MAX, INTPTR_MIN):
5147         (INTPTR_MAX, UINTPTR_MAX, INTMAX_MIN, INTMAX_MAX, UINTMAX_MAX):
5148         (PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX):
5149         (SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN, WINT_MAX):
5150         undef any previous version and define our own version, for
5151         simplicity and consistency with the new macros for types.
5152         (PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX):
5153         (SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN, WINT_MAX):
5154         Simplify definitions by using _STDINT_MIN and _STDINT_MAX
5155         where appropriate.  Rely on new symbols @PTRDIFF_T_SUFFIX@,
5156         @SIG_ATOMIC_T_SUFFIX@, @SIZE_T_SUFFIX@, @WCHAR_T_SUFFIX@,
5157         @WINT_T_SUFFIX@ to keep things simple here.
5158         (UINT8_C, UINT16_C, UINT32_C, INT64_C, UINT64_C):
5159         Simplify by assuming typical 8/16/32/64 host, since we're
5160         already doing that elsewhere anyway.
5161         Use (LONG_MAX >> 31 >> 31 == 1) rather than @HAVE_LONG_64BIT@,
5162         and assume long long int is 64 bits if available.  This
5163         speeds up 'configure'.
5164
5165 2006-07-01  Eric Blake  <ebb9@byu.net>
5166
5167         * m4/stdarg.m4 (gl_STDARG_H): Use proper AH_VERBATIM.
5168         Reported by Andreas Buening.
5169
5170 2006-07-01  Eric Blake  <ebb9@byu.net>
5171
5172         * m4/stdarg.m4 (gl_STDARG_H): Properly parenthesize gl_va_copy.
5173
5174 2006-06-30  Jim Hyslop <jhyslop@dreampossible.ca>  (tiny change)
5175
5176         * lib/getaddrinfo.c: fixed typo
5177
5178 2006-06-29  Jim Meyering  <jim@meyering.net>
5179
5180         * modules/strftime (Maintainer): Add my name, since with the
5181         FPRINTFTIME changes strftime.c has forked from glibc.
5182
5183 2006-06-29  Eric Blake  <ebb9@byu.net>
5184
5185         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Use AC_C_INLINE.
5186
5187 2006-06-29  Eric Blake  <ebb9@byu.net>
5188
5189         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): New file.
5190
5191 2006-06-29  Eric Blake  <ebb9@byu.net>
5192
5193         * lib/stat_.h: New file.
5194
5195 2006-06-29  Eric Blake  <ebb9@byu.net>
5196
5197         * lib/stat_.h (rpl_mkdir): Declare inline, to avoid warnings about
5198         unused static function.
5199
5200 2006-06-29  Eric Blake  <ebb9@byu.net>
5201
5202         * doc/functions.texi (Function Portability): Document missing lstat
5203         on mingw.
5204
5205 2006-06-29  Eric Blake  <ebb9@byu.net>
5206
5207         * MODULES.html.sh: Add sys_stat.
5208         * modules/sys_stat: New module.
5209         * modules/mkstemp (Depends-on): Add sys_stat.
5210
5211 2006-06-29  Derek R. Price  <derek@ximbiot.com>
5212
5213         * m4/strftime.m4: Don't call AC_FUNC_STRFTIME.
5214
5215 2006-06-29  Derek R. Price  <derek@ximbiot.com>
5216
5217         * m4/c-bs-a.m4: Removed.
5218
5219 2006-06-29  Derek R. Price  <derek@ximbiot.com>
5220
5221         * lib/strftime.c: Assume strftime() exists.
5222
5223 2006-06-29  Derek Price  <derek@ximbiot.com>
5224
5225         * modules/c-bs-a: Removed - \a is C89.
5226         * MODULES.html.sh: Remove c-bs-a.
5227
5228 2006-06-29  Bruno Haible  <bruno@clisp.org>
5229
5230         * modules/wcwidth (License): Change to LGPL.
5231
5232 2006-06-28  Simon Josefsson  <jas@extundo.com>
5233
5234         * tests/test-getaddrinfo.c: Test getnameinfo too.  Call WSAStartup
5235         on _WIN32.
5236
5237         * modules/getaddrinfo (Depends-on): Add inet_ntop, needed by
5238         getnameinfo.
5239
5240 2006-06-28  Simon Josefsson  <jas@extundo.com>
5241
5242         * m4/getaddrinfo.m4: Look for getnameinfo prototypes too.
5243
5244 2006-06-28  Simon Josefsson  <jas@extundo.com>
5245
5246         * lib/getaddrinfo.c: Try to load ws2_32.dll on Windows, to find the
5247         functions there.  It will succeed on Windows XP, but on Windows
5248         2000 and (presumably) earlier, it will fail, and use the internal
5249         re-implementation.
5250         (use_win32_p): New function.
5251         (getaddrinfo): Use strtoul on servname, to support numeric ports.
5252         Support AI_NUMERICSERV to disable getservbyname.
5253         (getnameinfo): New function, only supports
5254         NI_NUMERICHOST|NI_NUMERICSERV for now.
5255
5256         * lib/getaddrinfo.h: Test and check for AI_* flags separately, MinGW
5257         only have some of them.  Add AI_NUMERICSERV.  Add prototype for
5258         getnameinfo.
5259
5260 2006-06-28  Eric Blake  <ebb9@byu.net>
5261
5262         * modules/wcwidth: New file.
5263         * modules/mbchar (Depends-on): Add wcwidth.
5264         * modules/mbswidth (Depends-on): Add wcwidth.
5265         * MODULES.html.sh: Add wcwidth.
5266
5267 2006-06-28  Eric Blake  <ebb9@byu.net>
5268
5269         * m4/mbswidth.m4 (gl_MBSDWIDTH): Move wcwidth from here...
5270         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): ...to this new file.
5271
5272 2006-06-28  Eric Blake  <ebb9@byu.net>
5273
5274         * lib/xvasprintf.h: Fix comments.
5275
5276 2006-06-28  Eric Blake  <ebb9@byu.net>
5277
5278         * lib/mbchar.h (wcwidth): Include wcwidth.h.
5279         * lib/mbswidth.c (wcwidth): Move from here...
5280         * lib/wcwidth.h: ...to this new file.
5281
5282 2006-06-28  Derek R. Price  <derek@ximbiot.com>
5283
5284         * m4/savedir.m4: Remove AC_FUNC_CLOSEDIR_VOID requirement.
5285
5286         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Don't require AC_C_CONST, since
5287         it's obsolete.
5288         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME): Likewise.
5289
5290 2006-06-28  Derek R. Price  <derek@ximbiot.com>
5291
5292         * lib/savedir.c (CLOSEDIR): Remove.  All uses changed to closedir.
5293         Autoconf 2.60 says this stuff was obsolete.
5294
5295 2006-06-28  Bruno Haible  <bruno@clisp.org>
5296
5297         * modules/wcwidth (Files): Add m4/wchar_t.m4.
5298
5299 2006-06-28  Bruno Haible  <bruno@clisp.org>
5300
5301         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Also require AC_C_INLINE and
5302         gt_TYPE_WCHAR_T.
5303
5304 2006-06-28  Bruno Haible  <bruno@clisp.org>
5305
5306         * lib/wcwidth.h: Declare nothing if !HAVE_WCHAR_T. Provide a fallback
5307         declaration for wcwidth.
5308         * lib/mbswidth.c: Restore the includes of <wchar.h> and <wctypes.h>.
5309
5310 2006-06-28  Bruno Haible  <bruno@clisp.org>
5311
5312         * lib/mkdtemp.c [MINGW]: Include <io.h>.
5313         (mkdir): Define using _mkdir.
5314
5315 2006-06-28  Bruno Haible  <bruno@clisp.org>
5316
5317         * lib/getaddrinfo.h: Fix POSIX URL.
5318         * lib/getaddrinfo.c (WIN32_NATIVE): New macro. Use it instead of
5319         _WIN32.
5320         (use_win32_p): Make static.
5321         (getaddrinfo): Reject service name if it is empty or does not consist
5322         solely of decimal digits, or if its value is > 65535.
5323         (getnameinfo): Remove useless casts.
5324
5325 2006-06-27  Simon Josefsson  <jas@extundo.com>
5326
5327         * modules/sys_select: New file, suggested by Bruno Haible, Paul
5328         Eggert and Martin Lambers.
5329
5330 2006-06-27  Simon Josefsson  <jas@extundo.com>
5331
5332         * m4/sys_select_h.m4: New file, suggested by Bruno Haible, Paul
5333         Eggert and Martin Lambers.
5334
5335 2006-06-27  Bruno Haible  <bruno@clisp.org>
5336
5337         * m4/stdint.m4 (gl_STDINT_BITSIZEOF): For nonexistent types, set the
5338         result to 0, not to empty.
5339         Reported by Martin Neitzel <neitzel@sco.gaertner.de>.
5340
5341 2006-06-27  Bruno Haible  <bruno@clisp.org>
5342
5343         * lib/stdint_.h (intmax_t, uintmax_t): Undefine before typedef.
5344
5345 2006-06-26  Simon Josefsson  <jas@extundo.com>
5346
5347         * m4/inet_ntop.m4: Don't check for sys/types.h, we assume it is
5348         present.
5349
5350 2006-06-26  Paul Eggert  <eggert@cs.ucla.edu>
5351
5352         * lib/base64.c (B64): Use _ as the formal parameter, not x, to avoid
5353         bug in IBM C V6 for AIX.  Problem reported by Larry Jones in
5354         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00181.html>.
5355
5356 2006-06-26  Mark D. Baushke  <mdb@gnu.org>
5357
5358         * m4/stdint.m4 (gl_STDINT_H): Treat BSD/OS like OpenBSD.
5359
5360 2006-06-26  Bruno Haible  <bruno@clisp.org>
5361
5362         * modules/stdint (Makefile.am): Also substitute HAVE_WCHAR_H.
5363
5364 2006-06-26  Bruno Haible  <bruno@clisp.org>
5365
5366         * m4/stdint.m4 (gl_STDINT_H): Test also for <wchar.h>.
5367
5368 2006-06-26  Bruno Haible  <bruno@clisp.org>
5369
5370         * m4/stdint.m4 (gl_STDINT_H): Don't include <stdint.h> when using the
5371         SGI C compiler in pre-C99 mode.
5372         Suggested by Mark D. Baushke and Larry Jones.
5373
5374 2006-06-26  Bruno Haible  <bruno@clisp.org>
5375
5376         * lib/stdint_.h: Include <wchar.h> if necessary for WCHAR_MIN or
5377         WCHAR_MAX.
5378         Reported by Mark D. Baushke and Larry Jones.
5379
5380 2006-06-26  Bruno Haible  <bruno@clisp.org>
5381
5382         * lib/stdint_.h: Don't include <stdint.h> when using the SGI C compiler
5383         in pre-C99 mode.
5384         Suggested by Mark D. Baushke and Larry Jones.
5385
5386 2006-06-23  Simon Josefsson  <jas@extundo.com>
5387             Bruno Haible  <bruno@clisp.org>
5388
5389         * gnulib-tool (func_emit_lib_Makefile_am): Define MOSTLYCLEANDIRS.
5390         Emit mostlyclean-local rule.
5391         (func_emit_tests_Makefile_am): Likewise.
5392         * modules/sys_socket (Makefile.am): Use MOSTLYCLEANDIRS.
5393
5394 2006-06-23  Mark D. Baushke  <mdb@gnu.org>
5395
5396         * lib/stdint_.h: Treat BSD/OS like OpenBSD.
5397
5398 2006-06-23  Bruno Haible  <bruno@clisp.org>
5399
5400         * tests/test-stdint.c: Update to match ISO C 99 Technical
5401         Corrigendum 1.
5402
5403 2006-06-23  Bruno Haible  <bruno@clisp.org>
5404
5405         * m4/stdint.m4 (gl_STDINT_H): Treat IRIX like OpenBSD.
5406
5407 2006-06-23  Bruno Haible  <bruno@clisp.org>
5408
5409         * lib/stdint_.h: Treat IRIX like OpenBSD.
5410
5411 2006-06-23  Bruno Haible  <bruno@clisp.org>
5412
5413         * lib/stdint_.h (UINT8_C, UINT16_C, UINT32_C): Define according to
5414         ISO C 99 Technical Corrigendum 1.
5415
5416 2006-06-22  Simon Josefsson  <jas@extundo.com>
5417
5418         * m4/sockpfaf.m4: Include winsock2.h too, to make it work under
5419         MinGW.
5420
5421 2006-06-22  Paul Eggert  <eggert@cs.ucla.edu>
5422
5423         * lib/glob.c (collated_compare): Remove 'const' uses that weren't
5424         needed.  Some compiler complained about some of them.  Problem reported
5425         by Larry Jones in
5426         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00172.html>.
5427
5428 2006-06-21  Simon Josefsson  <jas@extundo.com>
5429
5430         * tests/test-getaddrinfo.c: New file.
5431
5432         * modules/getaddrinfo-tests: New file.
5433
5434         * MODULES.html.sh: Add inet_pton.
5435
5436         * modules/inet_pton: New file.
5437
5438 2006-06-21  Simon Josefsson  <jas@extundo.com>
5439
5440         * m4/getaddrinfo.m4: Don't define WINVER.  Look for gethostbyname in
5441         -lws2_32 too.  Fixes getaddrinfo on Windows 2000, with the price
5442         of using the (limited) gnulib implementation on Windows XP.
5443
5444         * m4/inet_pton.m4: New file.
5445
5446 2006-06-21  Simon Josefsson  <jas@extundo.com>
5447
5448         * lib/getaddrinfo.c (getaddrinfo): Set ai_family in the return
5449         variable.
5450
5451         * lib/socket_.h: Don't define WINVER.
5452
5453         * lib/inet_pton.h, inet_pton.c: New file, taken from glibc but
5454         slightly modified to work in gnulib.
5455
5456 2006-06-21  Simon Josefsson  <jas@extundo.com>
5457
5458         * doc/gnulib.texi (Windows sockets): Add.
5459
5460 2006-06-21  Paul Eggert  <eggert@cs.ucla.edu>
5461
5462         * lib/read-file.c (fread_file): Start with buffer allocation of
5463         0 bytes rather than 1 byte; this simplifies the code.
5464         Don't invoke feof; it's not needed.  Refactor to avoid duplicate
5465         code to free buffer and save/restore errno.
5466         (internal_read_file): Remove unused local.
5467
5468 2006-06-20  Paul Eggert  <eggert@cs.ucla.edu>
5469
5470         * lib/openat.c (openat): Use ?:, not if, to work around GCC bug 4210
5471         <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=4210>.
5472         Problem reported by Denis Excoffier in
5473         <http://lists.gnu.org/archive/html/bug-tar/2006-06/msg00023.html>.
5474
5475 2006-06-19  Yoann Vandoorselaere <yoann.v@prelude-ids.com>
5476
5477         * modules/sys_socket, modules/socklen: Include sys/types since
5478         FreeBSD 4.x's sys/socket.h needs it.
5479
5480 2006-06-19  Simon Josefsson  <jas@extundo.com>
5481
5482         * lib/inet_ntop.c: Always build inet_ntop4, since inet_ntop6 calls it.
5483
5484 2006-06-19  Paul Eggert  <eggert@cs.ucla.edu>
5485
5486         * lib/alloca_.h (alloca) [defined alloca]: Don't define or declare.
5487
5488 2006-06-19  Bruno Haible  <bruno@clisp.org>
5489
5490         * m4/stdint.m4 (gl_STDINT_H): Enclose the values of FULL_PATH_STDINT_H
5491         and FULL_PATH_INTTYPES_H in angle brackets.
5492         Reported by Mark D. Baushke <mdb@gnu.org>.
5493
5494 2006-06-17  Eric Blake  <ebb9@byu.net>
5495
5496         * m4/rmdir-errno.m4 (gl_FUNC_FMDIR_NOTEMPTY): Assume errno.h declares
5497         errno.
5498
5499 2006-06-17  Bruno Haible  <bruno@clisp.org>
5500
5501         * m4/stdint.m4 (gl_STDINT_H) [FreeBSD >= 5]: Don't include
5502         <sys/inttypes.h>.
5503
5504 2006-06-17  Bruno Haible  <bruno@clisp.org>
5505
5506         * m4/setenv.m4 (gl_PREREQ_SETENV, gl_PREREQ_UNSETENV): Remove test
5507         whether errno is declared. Assume <errno.h> declares errno.
5508
5509 2006-06-17  Bruno Haible  <bruno@clisp.org>
5510
5511         * lib/stdint_.h [FreeBSD >= 5]: Don't include <sys/inttypes.h>.
5512
5513 2006-06-17  Bruno Haible  <bruno@clisp.org>
5514
5515         * lib/stdint_.h (_UINT8_T, _UINT32_T, _UINT64_T): New macros. Fixes a
5516         problem on Solaris 2.5.1.
5517
5518 2006-06-16  Eric Blake  <ebb9@byu.net>
5519
5520         * lib/unsetenv.c [!defined errno]: Assume errno.h declares errno.
5521         * lib/unicodeio.c [!defined errno]: Likewise.
5522         * lib/strtol.c [!defined errno]: Likewise.
5523         * lib/strtod.c [!defined errno]: Likewise.
5524
5525 2006-06-15  Eric Blake  <ebb9@byu.net>
5526
5527         * m4/ssize_t.m4 (gt_TYPE_SSIZE_T): Work in spite of -Werror.
5528
5529 2006-06-15  Eric Blake  <ebb9@byu.net>
5530
5531         * config/srclist.txt (ssize_t.m4): Lose sync.
5532
5533 2006-06-15  Bruno Haible  <bruno@clisp.org>
5534
5535         * modules/stdint (Files): Include m4/full-header-path.m4,
5536         m4/size_max.m4, m4/wchar_t.m4.
5537         (Makefile.am): Many more substitutions.
5538         * modules/stdint-tests: New file.
5539         * tests/test-stdint.c: New file.
5540
5541 2006-06-15  Bruno Haible  <bruno@clisp.org>
5542
5543         * m4/stdint.m4 (gl_STDINT_H): Rewritten to produce a complete stdint.h.
5544         (gl_HEADER_STDINT_H, gl_HEADER_INTTYPES_H, gl_STDINT_CHECK_TYPES,
5545         gl_STDINT_MISSING_BOUND, gl_STDINT_MISSING_BOUNDS,
5546         gl_STDINT_MISSING_BOUNDS2, gl_STDINT_BITSIZEOF, gl_CHECK_TYPES_SIGNED,
5547         gl_CHECK_TYPE_SAME): New macros.
5548
5549 2006-06-15  Bruno Haible  <bruno@clisp.org>
5550
5551         * m4/size_max.m4 (gl_SIZE_MAX): Make it work also when cross-compiling.
5552
5553 2006-06-15  Bruno Haible  <bruno@clisp.org>
5554
5555         * lib/stdint_.h: Rewritten to be fully auto-configured.
5556         Fixes bug on HP-UX/IA64.
5557
5558 2006-06-11  Paul Eggert  <eggert@cs.ucla.edu>
5559
5560         * lib/getdate.y (__attribute__): Don't define if already defined.
5561         Problem reported by Larry Jones.
5562         * lib/utimens.c (__attribute__): Likewise.
5563
5564 2006-06-04  Paul Eggert  <eggert@cs.ucla.edu>
5565
5566         * lib/regexec.c (group_nodes_into_DFAstates): Fix a buffer overrun
5567         reported by Andreas Schwab.
5568
5569 2006-05-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5570             Bruno Haible  <bruno@clisp.org>
5571
5572         * m4/strndup.m4 (gl_FUNC_STRNDUP): Replace the AC_REPLACE_FUNCS with a
5573         check for the declaration of strnlen and a run test that exposes the
5574         AIX 5.1 strnlen bug.  In the failure case, #define strndup to
5575         rpl_strndup.
5576
5577 2006-05-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5578             Bruno Haible  <bruno@clisp.org>
5579
5580         * lib/strndup.c (strndup) [!_LIBC]: Don't undefine macro definition.
5581
5582 2006-05-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5583
5584         * m4/c-strtod.m4 (gl_C99_STRTOLD): Use a link test rather than a
5585         compile test, for Tru64 4.0D.
5586
5587 2006-05-28  Karl Berry  <karl@gnu.org>
5588
5589         * config/srclist.txt (printf-args.c): lose sync.
5590
5591 2006-05-26  Martin Lambers  <marlam@marlam.de>
5592
5593         * lib/getpass.c: Updates the test for the native W32 API, and adds
5594         missing includes, thus fixing compilation warnings.
5595
5596 2006-05-25  Sergey Poznyakoff  <gray@gnu.org.ua>
5597
5598         * lib/exclude.c (exclude_fnmatch): New function.
5599         (excluded_file_name): Call exclude_fnmatch.
5600         * lib/exclude.h (excluded_file_name): New prototype
5601
5602 2006-05-25  Paul Eggert  <eggert@cs.ucla.edu>
5603
5604         * lib/tempname.c (small_open, large_open): New macros.
5605         (__open, __open64) [!_LIBC]: Remove.
5606         (__gen_tempname): Use small_open and large_open instead of __open
5607         and __open64.  This fixes a portability bug on HP-UX 11.11i
5608         reported by Simon Wing-Tang in
5609         <http://lists.gnu.org/archive/html/bug-coreutils/2006-05/msg00114.html>.
5610
5611 2006-05-24  Bruno Haible  <bruno@clisp.org>
5612
5613         * lib/printf-args.c (printf_fetchargs): Turn NULL pointers for
5614         TYPE_STRING and TYPE_WIDE_STRING into a non-NULL replacement.
5615         Reported by Thorsten Maerz <torte@netztorte.de> via
5616         Aaron Stone <aaron@serendipity.cx>.
5617
5618 2006-05-19  Paul Eggert  <eggert@cs.ucla.edu>
5619
5620         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Rename cache variables to use
5621         gl_ rather than jm_.  Link, don't run, so that cross-compiles are
5622         allowed.  Check that resulting type is arithmetic.  Move AC_REQUIRE
5623         and AC_CHECK_HEADERS_ONCE outside of AC_CACHE_CHECK, since they're
5624         not really conditional on the cache.
5625         (gl_PREREQ_NANOSLEEP): Check for sys/select.h.
5626
5627 2006-05-19  Paul Eggert  <eggert@cs.ucla.edu>
5628
5629         * lib/nanosleep.c [HAVE_SYS_SELECT_H]: Include <sys/select.h>.
5630         Use the usual Autoconf way to include <time.h> and/or sys/time.h.
5631         (my_usleep): Don't mishandle maximum value.
5632
5633 2006-05-19  Jim Meyering  <jim@meyering.net>
5634
5635         * lib/getugroups.c: Correct an outdated comment.  From Bruno Haible.
5636
5637 2006-05-17  Bruno Haible  <bruno@clisp.org>
5638
5639         Cygwin portability.
5640         * lib/classpath.c (PATH_SEPARATOR) [CYGWIN]: Define as ':'.
5641
5642 2006-05-17  Bruno Haible  <bruno@clisp.org>
5643
5644         * lib/stdint_.h: Fix recognition of Cygwin.
5645
5646 2006-05-15  Bruno Haible  <bruno@clisp.org>
5647
5648         * build-aux/config.rpath: Improve support for Sun C 5.9 on Linux, based
5649         on libtool patch by Ralf Wildenhues.
5650
5651 2006-05-14  Paul Eggert  <eggert@cs.ucla.edu>
5652
5653         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Fix overly-picky
5654         test for C99 conformance; (bool) 0.5 is an integer constant
5655         expression, but (bool) -0.5 is not.  Problem reported by Fedor
5656         Sergeev in <http://forum.sun.com/jive/thread.jspa?threadID=96202>.
5657
5658 2006-05-11  Simon Josefsson  <jas@extundo.com>
5659
5660         * m4/xvasprintf.m4: Fix obvious typo.
5661
5662 2006-05-11  Jim Meyering  <jim@meyering.net>
5663
5664         * lib/sha1.c (sha1_buffer): Correct comment: s/MD5/SHA1/.  From
5665         James Lemley.
5666
5667 2006-05-10  Simon Josefsson  <jas@extundo.com>
5668
5669         * lib/md4.c: Typo fix, update copyright years.
5670         (K1, K2): Don't use L because it turn computations into 64-bit on
5671         64-bit platforms.
5672
5673 2006-05-10  Paul Eggert  <eggert@cs.ucla.edu>
5674
5675         * lib/crc.c (crc32_update): Remove unnecessary L suffix.
5676         * lib/md4.c (rol): Cast right-shift arg to uint32_t to prevent
5677         unwanted sign propagation, e.g., on hosts with 64-bit int.
5678         There still are some problems with reeelly weird theoretical hosts
5679         (e.g., 33-bit int) but it's not worth worrying about now.
5680         * lib/sha1.c (rol): Likewise.
5681         (K1, K2, K3, K4): Remove unnecessary L suffix.
5682
5683 2006-05-10  Bruno Haible  <bruno@clisp.org>
5684
5685         * lib/des.c: Cast to avoid warnings.
5686
5687 2006-05-09  Bruno Haible  <bruno@clisp.org>
5688
5689         * modules/xvasprintf (Files): Add m4/xvasprintf.m4.
5690         (Depends-on): Depend also on xsize, stdarg.
5691         (configure.ac): Add gl_XVASPRINTF.
5692
5693 2006-05-09  Bruno Haible  <bruno@clisp.org>
5694
5695         * m4/xvasprintf.m4: New file.
5696
5697 2006-05-09  Bruno Haible  <bruno@clisp.org>
5698
5699         * lib/xvasprintf.c: Include limits.h, string.h, xsize.h.
5700         (EOVERFLOW): Define fallback value.
5701         (xstrcat): New function.
5702         (xvasprintf): Recognize the special case of a string concatenation.
5703
5704 2006-05-08  Eric Blake  <ebb9@byu.net>
5705
5706         * gnulib-tool (func_version): Base copyright year on CVS date.
5707         (func_emit_copyright_notice): New function.
5708         (func_emit_lib_Makefile_am): Use it.
5709         (func_emit_tests_Makefile_am): Likewise.
5710         (func_import): Likewise.
5711
5712 2006-05-08  Bruno Haible  <bruno@clisp.org>
5713
5714         * modules/stdarg: New file.
5715         * MODULES.html.sh (func_all_modules): Add section for <stdarg.h>.
5716
5717 2006-05-08  Bruno Haible  <bruno@clisp.org>
5718
5719         * m4/stdarg.m4: New file, from GNU gettext.
5720
5721 2006-05-08  Bruno Haible  <bruno@clisp.org>
5722
5723         * config/srclist.txt (build-aux/config.rpath): different from latest
5724         release.
5725
5726 2006-05-08  Bruno Haible  <bruno@clisp.org>
5727
5728         * build-aux/config.rpath: Add support for Sun C 5.9 on Linux.
5729
5730 2006-05-05  Jim Meyering  <jim@meyering.net>
5731
5732         * m4/warning.m4: New file, derived from bison's file by the same name.
5733
5734 2006-05-03  Bruno Haible  <bruno@clisp.org>
5735
5736         * lib/stdint_.h: Shorter URL.
5737         * lib/inttypes.h: Likewise.
5738
5739 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
5740
5741         * modules/inttypes (Maintainer): Change from Derek Price to 'all'.
5742
5743 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
5744
5745         * lib/verify.h: Document the internals better.  Most of this change
5746         was written by Bruno Haible.
5747
5748 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
5749
5750         * doc/verify.texi: New file, partly based on a proposal by
5751         Bruno Haible.
5752
5753 2006-05-02  Bruno Haible  <bruno@clisp.org>
5754
5755         * m4/full-header-path.m4 (gl_FULL_HEADER_PATH): Move the include_next
5756         test from here...
5757         * m4/_inttypes_h.m4 (gl_INTTYPES_H): ... to here.
5758
5759 2006-04-29  Bruno Haible  <bruno@clisp.org>
5760
5761         * lib/gcd.c: Use WORD_T and GCD instead of unsigned long and gcd.
5762         Suggested by Oskar Liljeblad <oskar@osk.mine.nu>.
5763
5764 2006-04-29  Bruno Haible  <bruno@clisp.org>
5765
5766         * gnulib-tool: Make --update option actually work.
5767
5768 2006-04-29  Bruno Haible  <bruno@clisp.org>
5769
5770         * doc/gcd.texi: New file.
5771         * doc/gnulib.texi: Include it.
5772
5773 2006-04-25  Paul Eggert  <eggert@cs.ucla.edu>
5774
5775         * lib/getdate.y (get_date): When adding relative date, start with the
5776         initial time, not with the result of the first mktime call.
5777
5778 2006-04-25  Bruno Haible  <bruno@clisp.org>
5779
5780         * gnulib-tool (func_import): Output the include directives in three
5781         blocks, sorted separately.
5782         Reported by Ben Pfaff <blp@cs.stanford.edu>.
5783
5784 2006-04-24  Paul Eggert  <eggert@cs.ucla.edu>
5785
5786         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Use prototype
5787         to define main with arguments, for C++.  Reported by Eric Blake.
5788         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC):
5789         Prefer 'int main ()' to 'int main (void)', for C++.
5790         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Likewise.
5791         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Specify a return type
5792         for 'main', for C99 and C++.
5793
5794 2006-04-24  Paul Eggert  <eggert@cs.ucla.edu>
5795
5796         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Use return, not exit.
5797         Don't assume that exit status -1 is valid.
5798         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
5799         * m4/putenv.m4 (gl_FUNC_PUTENV): Likewise.
5800         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Likewise.
5801         * m4/readdir.m4 (GL_FUNC_READDIR): Include <stdlib.h>.
5802         * m4/rename.m4 (vb_FUNC_RENAME): Likewise.
5803         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Use AC_RUN_IFELSE,
5804         not AC_TRY_RUN.  Use return, not exit.  Don't assume that
5805         functions can be used without declaring them, or that you can
5806         exit with status -1.
5807         * m4/utimes-null.m4 (gl_FUNC_UTIMES_NULL): Likewise.
5808
5809 2006-04-24  Karl Berry  <karl@gnu.org>
5810
5811         * config/srclist.txt (longdouble.m4): sync lost.
5812
5813 2006-04-24  Eric Blake  <ebb9@byu.net>
5814
5815         * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Avoid unused variable warning.
5816
5817 2006-04-24  Bruno Haible  <bruno@clisp.org>
5818
5819         * m4/poll.m4 (gl_FUNC_POLL): When cross-compiling, reject also the
5820         poll() implementation in AIX.
5821         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
5822
5823 2006-04-24  Bruno Haible  <bruno@clisp.org>
5824
5825         * m4/poll.m4 (gl_FUNC_POLL): Rearrange code, so that POLL_H gets
5826         assigned exactly once.
5827
5828 2006-04-23  Claudio Fontana  <claudio@gnu.org>
5829             Bruno Haible  <bruno@clisp.org>
5830
5831         * modules/gettext (Makefile.am): Add a -I flag for <libintl.h>.
5832         * gnulib-tool (func_emit_lib_Makefile_am): Emit empty default value
5833         for AM_CPPFLAGS.
5834
5835 2006-04-23  Bruno Haible  <bruno@clisp.org>
5836
5837         * modules/copy-file: Depend on unistd.
5838         * modules/execute: Likewise.
5839         * modules/fatal-signal: Likewise.
5840         * modules/findprog: Likewise.
5841         * modules/mkdtemp : Likewise.
5842         * modules/pipe: Likewise.
5843         * modules/wait-process: Likewise.
5844
5845 2006-04-23  Bruno Haible  <bruno@clisp.org>
5846
5847         * lib/fwriteerror.c (fwriteerror): Call fclose also when an error
5848         condition was already detected.
5849         Reported by Ben Pfaff <blp@cs.stanford.edu>.
5850
5851 2006-04-23  Bruno Haible  <bruno@clisp.org>
5852
5853         * lib/copy-file.c: Include <unistd.h> unconditionally.
5854         * lib/execute.c: Likewise.
5855         * lib/fatal-signal.c: Likewise.
5856         * lib/findprog.c: Likewise.
5857         * lib/mkdtemp.c: Likewise.
5858         * lib/pipe.h: Likewise.
5859         * lib/pipe.c: Likewise.
5860         * lib/wait-process.h: Likewise.
5861
5862 2006-04-23  Bruno Haible  <bruno@clisp.org>
5863
5864         * gnulib-tool (func_usage): Fix --import description. Document
5865         --update.
5866         (func_import): Create temporary file in a temporary directory, if
5867         --dry-run is specified. Silence errors from 'grep' when there are no
5868         m4 files in $m4dir.
5869         (func_create_testdir): Silence errors from 'grep' when there are no
5870         m4 files in $m4dir.
5871         Reported by Karl Berry <karl@freefriends.org>.
5872
5873 2006-04-20  Bruno Haible  <bruno@clisp.org>
5874
5875         * m4/argp.m4 (gl_ARGP): Don't call AC_CHECK_DECLS_ONCE with more than
5876         one argument, so that the code will be portable to Autoconf 2.60.
5877         * m4/getlogin_r.m4 (gl_PREREQ_GETLOGIN_R): Likewise.
5878         * m4/getpass.m4 (gl_PREREQ_GETPASS): Likewise.
5879         * m4/unlocked-io.m4 (gl_FUNC_GLIBC_UNLOCKED_IO): Likewise.
5880
5881 2006-04-19  Derek Price  <derek@ximbiot.com>
5882             Eric Blake  <ebb9@byu.net>
5883
5884         * m4/full-header-path.m4 (gl_FULL_HEADER_PATH): Use </full/path.h>
5885         rather than "/full/path.h".  Update comment to match.  Shorten &
5886         generalize m4_translit call via AS_TR_CPP.
5887
5888 2006-04-19  Derek Price  <derek@ximbiot.com>
5889             Eric Blake  <ebb9@byu.net>
5890
5891         * lib/inttypes.h: Correct grammar in comment.
5892
5893 2006-04-18  Derek Price  <derek@ximbiot.com>
5894             Paul Eggert  <eggert@cs.ucla.edu>
5895
5896         * modules/inttypes: New file.
5897         * modules/strtoimax, modules/strtoumax: Depend on inttypes.
5898
5899 2006-04-18  Derek Price  <derek@ximbiot.com>
5900             Paul Eggert  <eggert@cs.ucla.edu>
5901
5902         * m4/_inttypes_h.m4, m4/full-header-path.m4, m4/include_next.m4:
5903         New files.
5904
5905 2006-04-18  Derek Price  <derek@ximbiot.com>
5906             Paul Eggert  <eggert@cs.ucla.edu>
5907
5908         * lib/inttypes.h: New file.
5909         * lib/strtoimax.c: Assume <inttypes.h>.
5910
5911 2006-04-15  Paul Eggert  <eggert@cs.ucla.edu>
5912
5913         * lib/utimens.c (futimens): glibc futimesat messes up if /proc
5914         isn't mounted.  Problem reported by Kir Kolyshkin.
5915
5916 2006-04-13  Paul Eggert  <eggert@cs.ucla.edu>
5917
5918         * lib/regcomp.c (init_dfa): Don't use wchar_t or wctype_t if
5919         RE_ENABLE_I18N is not defined.  Problem reported by Mark D. Baushke via
5920         Derek R. Price.
5921         * lib/regex.h (RE_DUP_MAX): Update comment to match current
5922         implementation.
5923
5924 2006-04-12  Eric Blake  <ebb9@byu.net>
5925
5926         * modules/time_r (Makefile.am): Remove lib_SOURCES line, as this
5927         is now done automatically by the corresponding Autoconf macro.
5928
5929 2006-04-11  Paul Eggert  <eggert@cs.ucla.edu>
5930
5931         * m4/time_r.m4 (gl_TIME_R): Add AC_LIBSOURCES for time_r.c and
5932         time_r.h.
5933
5934 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
5935
5936         Merge regex changes from libc, removing some of our
5937         POSIX-conformance changes that were rejected and redoing them in a
5938         less-intrusive way.
5939
5940         * lib/regcomp.c (re_compile_internal, init_dfa):
5941         Length arg is now size_t, not Idx.  All uses changed.
5942         (peek_token): Forward decl now says internal_function.
5943         (__re_error_msgid, __re_error_msgid_idx):
5944         Now static rather than extern with attribute_hidden.
5945         (re_compile_pattern) [!defined _LIBC]: Use K&R-style defn.
5946         For some reason libc prefers K&R style defns for external functions.
5947         (regerror) [!defined _LIBC]: Likewise.
5948         (re_set_syntax, re_compile_fastmap, regcomp, regfree, re_comp):
5949         (seek_collating_symbol_entry, lookup_collation_sequence_value):
5950         (build_range_exp, build_collating_symbol):
5951         Use K&R-style defn.
5952         (re_compile_fastmap): Use '\0' to memset, not 0.
5953         (utf8_sb_map): Make the calculations more obvious.
5954         (init_dfa, parse_bracket_exp, build_charclass_op):
5955         Call calloc and cast result, as glibc does.
5956         (init_word_char, fetch_token, peek_token, peek_token_bracket):
5957         (build_range_exp, build_collating_symbol):
5958         Now internal functions.
5959
5960         * lib/regex.c [!defined _LIBC]: Allow compiling with C++ compilers.
5961
5962         * lib/regex.h (__USE_GNU_REGEX): New macro.  Don't depend on
5963         _REGEX_SOURCE any more; depend on _GNU_SOURCE instead.
5964         Don't depend on VMS; depend on __VMS instead, for POSIX
5965         namespace cleanness.
5966         (regoff_t): Define to ssize_t, not long int.
5967
5968         Remove the REG_ macros named below.  Instead, make the old names
5969         (e.g., RE_BACKSLASH_ESCAPE_IN_LISTS) visible only if
5970         __USE_GNU_REGEX.
5971         (REG_BACKSLASH_ESCAPE_IN_LISTS):
5972         (REG_BK_PLUS_QM, REG_CHAR_CLASSES, REG_CONTEXT_INDEP_ANCHORS):
5973         (REG_CONTEXT_INDEP_OPS, REG_CONTEXT_INVALID_OPS):
5974         (REG_DOT_NEWLINE, REG_DOT_NOT_NULL, REG_HAT_LISTS_NOT_NEWLINE):
5975         (REG_INTERVALS, REG_LIMITED_OPS, REG_NEWLINE_ALT):
5976         (REG_NO_BK_BRACES, REG_NO_BK_PARENS, REG_NO_BK_REFS):
5977         (REG_NO_BK_VBAR, REG_NO_EMPTY_RANGES):
5978         (REG_UNMATCHED_RIGHT_PAREN_ORD, REG_NO_POSIX_BACKTRACKING):
5979         (REG_NO_GNU_OPS, REG_DEBUG, REG_INVALID_INTERVAL_ORD):
5980         (REG_IGNORE_CASE, REG_CARET_ANCHORS_HERE):
5981         (REG_CONTEXT_INVALID_DUP, REG_NO_SUB, REG_SYNTAX_EMACS):
5982         (REG_SYNTAX_AWK, REG_SYNTAX_GNU_AWK, REG_SYNTAX_POSIX_AWK):
5983         (REG_SYNTAX_GREP, REG_SYNTAX_EGREP, REG_SYNTAX_POSIX_EGREP):
5984         (REG_SYNTAX_ED, REG_SYNTAX_SED, _REG_SYNTAX_POSIX_COMMON):
5985         (REG_SYNTAX_POSIX_BASIC, REG_SYNTAX_POSIX_MINIMAL_BASIC):
5986         (REG_SYNTAX_POSIX_EXTENDED, REG_SYNTAX_POSIX_MINIMAL_EXTENDED):
5987         (REG_DUP_MAX, REG_UNALLOCATED, REG_REALLOCATE, REG_FIXED):
5988         (REG_NREGS):
5989         Remove.  All uses replaced by the old RE_* names.
5990         (RE_BACKSLASH_ESCAPE_IN_LISTS):
5991         (RE_BK_PLUS_QM, RE_CHAR_CLASSES, RE_CONTEXT_INDEP_ANCHORS):
5992         (RE_CONTEXT_INDEP_OPS, RE_CONTEXT_INVALID_OPS):
5993         (RE_DOT_NEWLINE, RE_DOT_NOT_NULL, RE_HAT_LISTS_NOT_NEWLINE):
5994         (RE_INTERVALS, RE_LIMITED_OPS, RE_NEWLINE_ALT):
5995         (RE_NO_BK_BRACES, RE_NO_BK_PARENS, RE_NO_BK_REFS):
5996         (RE_NO_BK_VBAR, RE_NO_EMPTY_RANGES):
5997         (RE_UNMATCHED_RIGHT_PAREN_ORD, RE_NO_POSIX_BACKTRACKING):
5998         (RE_NO_GNU_OPS, RE_DEBUG, RE_INVALID_INTERVAL_ORD):
5999         (RE_IGNORE_CASE, RE_CARET_ANCHORS_HERE):
6000         (RE_CONTEXT_INVALID_DUP, RE_NO_SUB):
6001         Don't bother having these macros be independent of each others'
6002         values, since they no longer exist in the POSIX name space.
6003
6004         Rename the following member names back to their old names,
6005         unless !__USE_GNU_REGEX.  All uses changed back.
6006         (buffer): Renamed from re_buffer.
6007         (allocated): Renamed from re_allocated.
6008         (used): Renamed from re_used.
6009         (syntax): Renamed from re_syntax.
6010         (fastmap): Renamed from re_fastmap.
6011         (translate): Renamed from re_translate.
6012         (can_be_null): Renamed from re_can_be_null.
6013         (regs_allocated): Renamed from re_regs_allocated.
6014         (fastmap_accurate): Renamed from re_fastmap_accurate.
6015         (no_sub): Renamed from re_no_sub.
6016         (not_bol): Renamed from re_not_bol.
6017         (not_eol): Renamed from re_not_eol.
6018         (newline_anchor): Renamed from re_newline_anchor.
6019         (num_regs): Renamed from rm_num_regs.
6020         (start): Renamed from rm_start.
6021         (end): Renamed from rm_end.
6022
6023         (free_state): Move up a bit.
6024
6025         * lib/regex_internal.h (inline) [__GNUC__ < 3 && defined _LIBC]:
6026         #define to be empty.
6027         (ASCII_CHARS): New macro, replacing all uses of 0x80 and/or SBC_MAX / 2
6028         when that is what is intended.
6029         (SBC_MAX): Define to UCHAR_MAX + 1, not 256.
6030         (__re_error_msgid, __re_error_msgid_idx): Remove decls; not needed.
6031         (MAX): New macro.
6032         (re_xmalloc, re_calloc, re_xrealloc, re_x2realloc): Remove.
6033         All uses changed back to re_malloc, etc.  It's now the caller's
6034         responsibility to check for overflow; all callers changed.
6035         (re_alloc_oversized, re_x2alloc_oversized, re_xnmalloc, re_xnrealloc):
6036         (re_x2nrealloc): Remove.
6037         (free_state): Remove decl.
6038
6039         * lib/regexc.c (regexec, re_match, re_search, re_match_2, re_search_2):
6040         (re_set_registers, re_exec):
6041         Use K&R-style defn.
6042
6043         2006-01-31  Roland McGrath  <roland@redhat.com>
6044
6045         * lib/regcomp.c (calc_eclosure_iter): Remove dead variables.
6046         Reported by Mike Frysinger <vapier@gentoo.org>.
6047
6048         2006-01-15  Andreas Jaeger  <aj@suse.de>
6049
6050         [BZ #1950]
6051         * lib/regex_internal.c (re_string_reconstruct): Adjust for
6052         build_wcs_upper_buffer change.
6053         (build_wcs_upper_buffer): Change return type.
6054
6055         2005-12-10  Ulrich Drepper  <drepper@redhat.com>
6056
6057         * lib/regex_internal.h: Include <stdint.h> if available.
6058
6059         2005-12-06  Paolo Bonzini  <bonzini@gnu.org>
6060
6061         * lib/regex_internal.h (SIZE_MAX): Provide a default definition.
6062
6063         2005-10-14  Ulrich Drepper  <drepper@redhat.com>
6064
6065         * lib/regcomp.c: Adjust for changed secondary hash function.
6066
6067         2005-09-30  Ulrich Drepper  <drepper@redhat.com>
6068
6069         * lib/regex.h: Pretty printing.
6070         Clean up namespace a bit.
6071
6072         2005-09-30  Jakub Jelinek  <jakub@redhat.com>
6073
6074         * lib/regexec.c (update_cur_sifted_state, check_arrival,
6075         check_arrival_add_next_nodes): Avoid using uninitialized variable.
6076
6077         2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
6078                     Ulrich Drepper  <drepper@redhat.com>
6079
6080         [BZ #1302]
6081         * lib/regex_internal.h (bitset_t): Renamed from bitset.  All uses
6082         changed.
6083         (bitset_word_t): Renamed from bitset_word.  All uses changed.
6084
6085         2005-09-22  Ulrich Drepper  <drepper@redhat.com>
6086
6087         [BZ #281]
6088         * lib/regex.h: Define RE_TRANSLATE_TYPE as unsigned char *.
6089         * lib/regcomp.c: Remove unnecessary uses of
6090         unsigned RE_TRANSLATE_TYPE.
6091         * lib/regex_internal.h: Likewise.
6092         * lib/regex_internal.c: Likewise.
6093         * lib/regexec.c: Likewise.
6094         Based on a patch by Stepan Kasal <kasal@ucw.cz>.
6095
6096         2005-09-07  Ulrich Drepper  <drepper@redhat.com>
6097
6098         * lib/regexec.c (find_recover_state): Remove unnecessary
6099         initialization.
6100         (transit_state_bkref): Make DFA a const pointer.
6101         (get_subexp): Likewise.
6102         (check_arrival): Likewise.
6103         (update_cur_sifted_state): Likewise.
6104         (re_search_internal): Likewise.
6105         (prune_impossible_nodes): Likewise.
6106         (acquire_init_state_context): Likewise.
6107         (proceed_next_node): Likewise.
6108         (set_regs): Likewise.
6109         (free_fail_stack_return): Likewise.
6110         (check_arrival_expand_ecl): Mark DFA parameter as const.
6111         (check_arrival_expand_ecl_sub): Likewise.
6112         (check_subexp_limits): Likewise.
6113         (sub_epsilon_src_nodes):  Likewise.
6114         (add_epsilon_src_nodes):  Likewise.
6115         (merge_state_array): Likewise.
6116         (update_regs): Likewise.
6117         (build_trtable): Likewise.
6118         (sift_states_backward): Mark MCTX parameter as const.
6119         (build_sifted_states): Likewise.
6120         (update_cur_sifted_state): Likewise.
6121         (sift_states_mkref): Likewise.
6122         (check_arrival_expand_ecl): Mark eclosure as const.
6123         (check_dst_limits_calc_pos_1): Likewise.
6124         * lib/regex_internal.h (re_match_context_t): Make dfa a const
6125         pointer.
6126
6127         2005-09-06  Ulrich Drepper  <drepper@redhat.com>
6128
6129         * lib/regexec.c (merge_state_with_log): Define dfa as const pointer.
6130         (transit_state_sb): Likewise.
6131         (transit_state_mb): Likewise.
6132         (sift_states_iter_mb): Likewise.
6133         (check_arrival_add_next_nodes): Likewise.
6134         (check_node_accept_bytes): Change first parameter to pointer-to-const.
6135         [_LIBC] (re_search_2_stub): Use mempcpy.
6136
6137         * lib/regex_internal.c (re_string_reconstruct): Avoid calling
6138         mbrtowc for very simple UTF-8 case.
6139
6140         * lib/regex_internal.c (re_acquire_state): Make DFA pointer arg
6141         a pointer-to-const.
6142         (re_acquire_state_context): Likewise.
6143         * lib/regex_internal.h: Adjust prototypes.
6144
6145         * lib/regex.c: Prevent using C++ compilers.
6146
6147         * lib/regex_internal.c (re_acquire_state): Minor code rearrangement.
6148         (re_acquire_state_context): Likewise.
6149
6150 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
6151
6152         * modules/regex (Depends-on): Add ssize_t.
6153
6154 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
6155
6156         * m4/regex.m4 (gl_REGEX): Check for new glibc interface to
6157         translation table.
6158
6159 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
6160
6161         * doc/gnulib-tool.texi (Modified imports): pathname -> file name.
6162
6163 2006-03-29  Mark D. Baushke  <mdb@gnu.org>
6164             Bruno Haible  <bruno@clisp.org>
6165
6166         * lib/stdint_.h: On OpenBSD, don't redefine types already included in
6167         <sys/types.h> and <inttypes.h>.
6168
6169 2006-03-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6170
6171         * m4/argz.m4 (gl_FUNC_ARGZ): If we define `error_t', also define
6172         `__error_t_defined', so argp.h will not typedef the former.
6173
6174 2006-03-25  Paul Eggert  <eggert@cs.ucla.edu>
6175
6176         * m4/regex.m4 (gl_REGEX): Don't insist on REG_SYNTAX_POSIX_EGREP,
6177         REG_SYNTAX_EMACS, and REG_IGNORE_CASE.  Settle for the traditional
6178         glibc names.  Even if glibc is changed to conform to POSIX, the
6179         traditional names will be available anyway, since regex depends on
6180         the extensions module.  Also, fix a longstanding typo in the
6181         implementation of Spencer ERE test #75 from grep 2.3.  Problems
6182         reported by Emanuele Giaquinta.  Also, change sense of cached
6183         variable, so that the message makes sense.
6184
6185 2006-03-24  Simon Josefsson  <jas@extundo.com>
6186
6187         * lib/base64.c: Fix problems reported by Eric Blake <ebb9@byu.net>,
6188         including some doc fixes.
6189         (base64_encode_alloc): Fix +1 bug on allocation failures.
6190
6191 2006-03-24  Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
6192
6193         * lib/base64.c (base64_encode): Do not read past end of array with
6194         unsanitized input on systems with CHAR_BIT > 8.
6195
6196 2006-03-24  Eric Blake  <ebb9@byu.net>
6197
6198         * lib/time_r.c (copy_string_result): Remove, as it is no longer used.
6199
6200 2006-03-22  Karl Berry  <karl@gnu.org>
6201
6202         * config/srclist.txt (*setenv.[ch]): get from coreutils.
6203         * config/srclistvars.sh (COREUTILS): new var.
6204
6205 2006-03-17  Jim Meyering  <jim@meyering.net>
6206
6207         * m4/regex.m4 (gl_REGEX): Fix typo in last change:
6208         s/_REGEX_WIDE_OFFSETS/_REGEX_LARGE_OFFSETS/.
6209
6210 2006-03-16  Paul Eggert  <eggert@cs.ucla.edu>
6211
6212         * m4/regex.m4 (gl_REGEX): Don't check for off_t, since the code
6213         no longer needs it.  Instead, check that regoff_t is as least
6214         as wide as ptrdiff_t.
6215
6216         Don't define _REGEX_WIDE_OFFSETS unless using the included regex,
6217         so that our regex.h stays compatible with the installed regex.
6218         This is helpful for installers who configure --without-included-regex.
6219         Problem reported by Emanuele Giaquinta.
6220
6221 2006-03-16  Paul Eggert  <eggert@cs.ucla.edu>
6222
6223         * lib/regex.h (regoff_t) [defined _REGEX_LARGE_OFFSETS]:
6224         Typedef to long int, not to off_, as POSIX will likely change
6225         in that direction.
6226
6227 2006-03-15  Eric Blake  <ebb9@byu.net>
6228
6229         * m4/dirfd.m4 (gl_FUNC_DIRFD): Use AC_REQUIRE for AC_HEADER_DIRENT.
6230
6231 2006-03-13  Sergey Poznyakoff  <gray@gnu.org.ua>
6232
6233         * lib/argp-help.c (validate_uparams): Fix typo
6234         * lib/argp-parse.c (argp_default_options): Consistently begin help
6235         messages with a lowercase letter.
6236
6237 2006-03-11  Paul Eggert  <eggert@cs.ucla.edu>
6238
6239         * lib/time_r.h (asctime_r, ctime_r): Remove.  These functions can
6240         overrun buffers and shouldn't be used (much as gets shouldn't be
6241         used).
6242         * lib/time_r.c (asctime_r, ctime_r): Likewise.
6243
6244 2006-03-08  Simon Josefsson  <jas@extundo.com>
6245
6246         * m4/gc-random.m4: Permit 'no' as variable values and fix warnings,
6247         suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
6248
6249 2006-03-08  Simon Josefsson  <jas@extundo.com>
6250
6251         * m4/gc-random.m4: Call AC_CANONICAL_HOST and use $host_os instead of
6252         $target, suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
6253
6254 2006-03-08  Simon Josefsson  <jas@extundo.com>
6255
6256         * lib/gc-gnulib.c (randomize): Don't open files called 'no', they
6257         signal that configure disabled the device.
6258
6259 2006-03-08  Simon Josefsson  <jas@extundo.com>
6260
6261         * build-aux/maint.mk: Fix refresh-po, to handle no translated
6262         languages.
6263
6264 2006-03-07  Simon Josefsson  <jas@extundo.com>
6265
6266         * modules/getopt (Depends-on): Add unistd.
6267
6268         * modules/unistd: New file.
6269
6270 2006-03-07  Simon Josefsson  <jas@extundo.com>
6271
6272         * modules/gc-random: New file.
6273
6274 2006-03-07  Simon Josefsson  <jas@extundo.com>
6275
6276         * m4/unistd_h.m4: New file.
6277
6278 2006-03-07  Simon Josefsson  <jas@extundo.com>
6279
6280         * m4/readline.m4 (gl_FUNC_READLINE): Rewrite the cached part of the
6281         test to be side-effect free by storing the result in the cache
6282         variable gl_cv_lib_readline, and moving the assignment of
6283         LIBREADLINE and LTLIBREADLINE outside the COMMANDS-TO-SET-IT.
6284         From Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
6285
6286 2006-03-07  Simon Josefsson  <jas@extundo.com>
6287
6288         * m4/gc-random.m4: New file, mostly from gc.m4.  Warn instead of
6289         error on missing devices (the functions will return an error).
6290
6291         * m4/gc.m4: Move random stuff to gc-random.m4
6292
6293 2006-03-07  Simon Josefsson  <jas@extundo.com>
6294
6295         * lib/unistd_.h: New file.
6296
6297 2006-03-07  Simon Josefsson  <jas@extundo.com>
6298
6299         * lib/gc-libgcrypt.c, gc-gnulib.c: Use GC_USE_RANDOM.
6300
6301 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
6302
6303         * m4/unistd_h.m4 (gl_HEADER_UNISTD): Rename, to match modules file.
6304         Problem reported by Juan Manuel Guerrero.
6305
6306 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
6307
6308         * lib/c-stack.c: Include unistd.h unconditionally, since we now assume
6309         the unistd module.
6310         * lib/getlogin_r.c: Likewise.
6311         * lib/getlogin_r.h: Likewise.
6312         * lib/glob.c: Likewise.
6313         * lib/pagealign_alloc.c: Likewise.
6314         * lib/unistd_.h: Remove; no longer needed.
6315
6316 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
6317
6318         * MODULES.html.sh (Support for systems lacking POSIX:2001):
6319         Add unistd.
6320         * modules/c-stack (Depends-on): Add unistd.
6321         * modules/getlogin_r: Likewise.
6322         * modules/glob: Likewise.
6323         * modules/pagealign_alloc: Likewise.
6324         * modules/unistd (Files): Remove lib/unistd_.h.
6325         (EXTRA_DIST): Remove.
6326         (unistd.h): Create using 'echo' rather than 'cp', so that we don't
6327         need unistd_.h.
6328         (MOSTLYCLEANFILES): Remove unistd.h-t.
6329
6330 2006-03-03  Simon Josefsson  <jas@extundo.com>
6331
6332         * build-aux/maint.mk: Add several syntax checks from CoreUtils.
6333
6334 2006-03-03  Simon Josefsson  <jas@extundo.com>
6335
6336         * build-aux/maint.mk: Add refresh-po rule, based on ideas from
6337         libidn and bison.
6338
6339 2006-03-03  Simon Josefsson  <jas@extundo.com>
6340
6341         * build-aux/maint.mk: Add indent target.
6342
6343 2006-03-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de> (tiny change)
6344
6345         * m4/poll.m4 (gl_FUNC_POLL): If we deem poll(2) unacceptable, use
6346         our replacement poll.h in any case, to avoid a differing
6347         declaration from a system header.  Seen on AIX.
6348
6349 2006-03-01  Simon Josefsson  <jas@extundo.com>
6350
6351         * lib/readline.c: Fix typo, tiny patch from Stepan Kasal
6352         <kasal@ucw.cz>.
6353
6354 2006-03-01  Paul Eggert  <eggert@cs.ucla.edu>
6355
6356         * modules/gettime (Depends-on): Add extensions module.
6357         * modules/nanosleep (Depends-on): Likewise.
6358         * modules/settime (Depends-on): Likewise.
6359
6360 2006-03-01  Paul Eggert  <eggert@cs.ucla.edu>
6361
6362         * m4/clock_time.m4 (gl_CLOCK_TIME): Require gl_USE_SYSTEM_EXTENSIONS,
6363         not merely AC_GNU_SOURCE, for the benefit of Solaris 10 when compiled
6364         pedantically.
6365         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
6366         * m4/timespec.m4 (gl_TIMESPEC): Likewise.
6367
6368         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Use "=" with "test",
6369         not "==".  Reported by Ralf Wildenhues.
6370
6371 2006-03-01  Karl Berry  <karl@gnu.org>
6372
6373         * doc/Copyright/request-*: new files, synced from gnuorg.
6374
6375 2006-03-01  Karl Berry  <karl@gnu.org>
6376
6377         * config/srclist.txt (Copyright/*): new entries.
6378
6379 2006-02-28  Simon Josefsson  <jas@extundo.com>
6380
6381         * lib/getopt.c: Protect #include of unistd.h, for MSVS.
6382
6383 2006-02-27  Simon Josefsson  <jas@extundo.com>
6384
6385         * lib/base64.h: Indent #define's.  From Jim Meyering
6386         <jim@meyering.net>.
6387
6388 2006-02-27  Jim Meyering  <jim@meyering.net>
6389
6390         Revert the change of 2006-02-24, so these files can continue
6391         to be sync'd from gettext.
6392         * lib/mkdtemp.c, setenv.c, unsetenv.c: *Un*-normalize inclusion
6393         of `config.h'.
6394
6395 2006-02-26  Paul Eggert  <eggert@cs.ucla.edu>
6396
6397         * modules/intprops: New file.
6398         * MODULES.html.sh (Numeric conversion functions <stdlib.h>):
6399         Add intprops.
6400         * modules/getloadavg (Files): Remove lib/intprops.h.
6401         (Depends-on): Add intprops.
6402         * modules/human: Likewise.
6403         * modules/inttostr: Likewise.
6404         * modules/openat: Likewise.
6405         * modules/sig2str: Likewise.
6406         * modules/userspec: Likewise.
6407         * modules/utimecmp: Likewise.
6408         * modules/xnanosleep: Likewise.
6409         * modules/xstrtol: Likewise.
6410
6411 2006-02-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny changes)
6412
6413         * modules/xstrtod: Omit xstrtod.h, xstrtod.c; they're in LIB_SOURCES.
6414         * modules/lock-tests (TESTS): Use $(EXEEXT).
6415         * modules/tls-tests: Likewise.
6416         * modules/argp-tests: Likewise.
6417         (check_PROGRAMS): New var, replacing...
6418         (noinst_PROGRAMS, test_argp_SOURCES): Remove.
6419
6420 2006-02-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6421
6422         * lib/mkdtemp.c, lib/setenv.c, lib/unsetenv.c: Normalize inclusion of
6423         `config.h'.
6424
6425 2006-02-24  Paul Eggert  <eggert@cs.ucla.edu>
6426
6427         * lib/glob.c: Say "invalid" rather than "illegal" in comments.
6428
6429 2006-02-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6430
6431         Sync from coreutils.
6432         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Require gl_FUNC_LCHMOD and
6433         gl_CHDIR_SAFER.
6434
6435 2006-02-22  Jim Meyering  <jim@meyering.net>
6436
6437         Sync from coreutils.
6438         * m4/chdir-safer.m4: New file.
6439
6440 2006-02-20  Paul Eggert  <eggert@cs.ucla.edu>
6441
6442         * lib/getcwd.c (AT_FDCWD): Work around a bug in Solaris 9 and 10, where
6443         AT_FDCWD exceeds INT_MAX.
6444         * lib/openat.h (AT_FDCWD): Likewise.
6445
6446 2006-02-17  Eric Blake  <address@hidden>
6447
6448         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Fix caching error.
6449
6450 2006-02-16  Simon Josefsson  <jas@extundo.com>
6451
6452         * modules/getaddrinfo (Depends-on): Add sys_socket.
6453
6454 2006-02-15  Simon Josefsson  <jas@extundo.com>
6455
6456         * build-aux/maint.mk: Add dsyntax-check rule.
6457
6458 2006-02-15  Eric Blake  <ebb9@byu.net>
6459
6460         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Don't attempt using
6461         winsock2.h or ws2tcpip.h when sys/socket.h is present. Fixes
6462         'present but cannot compile' warnings on cygwin.
6463         * m4/socklen.m4 (gl_TYPE_SOCKLEN_T): Use gl_HEADER_SYS_SOCKET.  Don't
6464         use ws2tcpip.h if sys/socket.h works.
6465         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Use gl_HEADER_SYS_SOCKET.
6466         (gl_GETADDRINFO): Don't use ws2tcpip.h when sys/socket.h is present.
6467
6468 2006-02-14  Simon Josefsson  <jas@extundo.com>
6469
6470         * modules/maintainer-makefile (Files): Rename.
6471
6472         * build-aux/GNUmakefile: Rename Makefile.maint to maint.mk
6473         and (the local) Makefile.cfg to maint-cfg.mk.
6474
6475         * build-aux/Makefile.maint, build-aux/maint.mk: Renamed the former
6476         to the latter.
6477
6478         * modules/maintainer-makefile: New module.
6479
6480         * build-aux/Makefile.maint: New file, from GNU CoreUtils, although
6481         severaly stripped to make it possible to build it up from scratch
6482         with reliable tests.
6483
6484         * build-aux/GNUmakefile: New file, from GNU CoreUtils with some
6485         fixes to permit overriding the default actions when configure and
6486         makefile are not available.
6487
6488 2006-02-14  Paul Eggert  <eggert@cs.ucla.edu>
6489
6490         Sync from coreutils.
6491         * modules/lstat (Depends-on): Don't depend on xalloc.
6492         (License): Change from GPL to LGPL, since this is now simply a
6493         replacement for a libc function.
6494
6495 2006-02-14  Jim Meyering  <jim@meyering.net>
6496
6497         Sync from coreutils.
6498
6499         Eliminate the unwelcome (albeit unlikely) possibility of xmalloc
6500         failure on deficient systems, and simplify gnulib lgpl dependencies.
6501         * lib/lstat.c (rpl_lstat): Rewrite to use stat() in place of the
6502         xmalloc/lstat combination.  Based on a patch from Bruno Haible.
6503
6504         * lib/xalloc-die.c: Remove unused definition of N_.
6505
6506 2006-02-14  Jim Meyering  <jim@meyering.net>
6507
6508         Sync from coreutils.
6509         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): Invoke
6510         AC_CHECK_FUNCS(getmntent) unconditionally so that tests of
6511         $ac_cv_func_getmntent (e.g., in gl_LIST_MOUNTED_FILE_SYSTEMS) need not
6512         double-quote uses of that variable, to accommodate the rare case in
6513         which getmntent is available in none of the libraries checked.  This
6514         happens at least on FreeBSD 5.0.
6515
6516 2006-02-13  Simon Josefsson  <jas@extundo.com>
6517
6518         * gnulib-tool (Usage): Fix --import, from
6519         karl@freefriends.org (Karl Berry).
6520
6521 2006-02-13  Sergey Poznyakoff  <gray@gnu.org.ua>
6522
6523         * lib/argp-fmtstream.c: Restore another bugfix lost on 2005-12-12
6524
6525 2006-02-07  Sergey Poznyakoff  <gray@gnu.org.ua>
6526
6527         * lib/argp-namefrob.h: Restore changes accidentally lost during the
6528         "autoupdate" on 2005-12-12.
6529
6530 2006-02-07  Paul Eggert  <eggert@cs.ucla.edu>
6531
6532         * modules/closeout (Depends-on): Remove atexit.
6533
6534 2006-02-07  Paul Eggert  <eggert@cs.ucla.edu>
6535
6536         * lib/closeout.c (close_stdout): Don't assume 'bool' converts nonzero
6537         ints to 0 or 1, as this isn't true for the stdbool.h substitute.
6538
6539 2006-02-05  Paul Eggert  <eggert@cs.ucla.edu>
6540
6541         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Don't #define
6542         __EXTENSIONS__ if this causes compilation to fail.  Problem
6543         reported by Nelson H. F. Beebe with Solaris 10 and Sun C 5.7
6544         c89 -D_XOPEN_SOURCE -D_XOPEN_SOURCE_EXTENDED.
6545
6546 2006-01-27  Paul Eggert  <eggert@cs.ucla.edu>
6547
6548         * lib/fnmatch.c (L_): Renamed from L, to work around a bug in
6549         Mac OS X 10.3.9 with GCC 3 reported by Claudio Fontana in
6550         <http://lists.gnu.org/archive/html/bug-gnulib/2006-01/msg00074.html>.
6551         All uses changed.
6552
6553 2006-01-26  Simon Josefsson  <jas@extundo.com>
6554
6555         * lib/socket_.h: Set WINVER to 0x0501, to make sure getaddrinfo
6556         prototype is visible on mingw32.
6557
6558         * lib/getaddrinfo.h: Define EAI_ADDRFAMILY and EAI_SYSTEM if not set,
6559         for mingw32.
6560
6561         * lib/gai_strerror.c, getaddrinfo.h: Protect netdb.h #include (for
6562         mingw32).
6563
6564 2006-01-26  Paul Eggert  <eggert@cs.ucla.edu>
6565
6566         * lib/fts.c (diropen): Open with O_NOCTTY | O_NONBLOCK too.  Don't
6567         attempt to open for write; this always fails, at least on POSIX
6568         hosts.  This reinstates the 2006-01-09 change, which was
6569         inadvertently removed.
6570
6571 2006-01-26  Bruno Haible  <bruno@clisp.org>
6572
6573         * gnulib-tool (func_import): Use "trap 'exit $?' instead of "trap :".
6574         Reported by Paul Eggert.
6575
6576 2006-01-26  Bruno Haible  <bruno@clisp.org>
6577             Paul Eggert  <eggert@cs.ucla.edu>
6578
6579         * lib/stdbool_.h (_Bool)
6580         [(! (defined __cplusplus || defined __BEOS__)
6581           && !defined __GNUC__
6582           && !(defined __HP_cc || defined __xlc__
6583                || (defined __SUNPRO_C && (__SUNPRO_C < 0x550 || __STDC__ == 1))
6584                || defined __sgi))]:
6585         #define to signed char in these cases too; this simplifies
6586         the code (so that we don't have to worry about HP-UX, AIX, SunPRO,
6587         etc., separately) and makes it more conservative.
6588
6589 2006-01-25  Simon Josefsson  <jas@extundo.com>
6590
6591         * m4/getaddrinfo.m4: Look for getaddrinfo inside ws2tcip.h and
6592         -lws2_32.  Protect sys/socket.h and netdb.h #include's.  Include
6593         ws2tcpip.h with WINVER=0x0501.  All for mingw32.
6594
6595 2006-01-25  Sergey Poznyakoff  <gray@gnu.org.ua>
6596
6597         * lib/argp-namefrob.h: Bugfix. Remove stray #
6598
6599 2006-01-25  Paul Eggert  <eggert@cs.ucla.edu>
6600
6601         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check for xlc bug if __GCC__ too,
6602         so that we test the test.
6603         Check for yet another HP-UX cc bug involving *bool |= bool.
6604
6605 2006-01-25  Karl Berry  <karl@gnu.org>
6606
6607         * config/srclist.txt (vasnprintf.c): sync lost.
6608
6609 2006-01-25  Jim Meyering  <jim@meyering.net>
6610
6611         Sync from the stable (b5) branch of coreutils:
6612
6613         * lib/fts.c (fts_children): Don't let close() clobber errno from
6614         failed fchdir().
6615
6616         * lib/fts.c (fts_stat): When following a symlink-to-directory,
6617         don't necessarily interpret stat-fails+lstat-succeeds as indicating
6618         a dangling symlink.  That can also happen at least for ELOOP.
6619         The fix: return FTS_SLNONE only when the stat errno is ENOENT.
6620         FYI, this bug predates the inclusion of fts.c in coreutils.
6621
6622         * lib/fts.c (fts_open): Put new maxarglen declaration and uses
6623         in their own block, so pre-c99 compilers don't object.
6624
6625         Avoid the double-free (first in fts_read, second in fts_close) that
6626         would occur when an `active' directory is made inaccessible (e.g.,
6627         via chmod a-x) during a traversal.
6628         * lib/fts.c (fts_read): After a failed fchdir, update sp->fts_cur
6629         before returning.  Reproduce this failure by
6630         mkdir -p a/b; cd a; chmod a-x . b
6631         Reported by Stavros Passas.
6632
6633 2006-01-25  Jim Meyering  <jim@meyering.net>
6634
6635         * lib/fileblocks.c: Remove more useless parentheses.
6636         * lib/readutmp.h: Likewise.
6637
6638 2006-01-25  Bruno Haible  <bruno@clisp.org>
6639
6640         * lib/stdbool_.h (_Bool) [IRIX cc]: Define as 'signed char', to avoid
6641         warnings.
6642         Reported by Paul Eggert.
6643
6644 2006-01-25  Bruno Haible  <bruno@clisp.org>
6645
6646         * gnulib-tool (func_import): Use "trap :" instead of "trap -" to get
6647         rid of a trap command. For Solaris sh.
6648         Reported by Mark D. Baushke <mdb@gnu.org>.
6649
6650 2006-01-24  Simon Josefsson  <jas@extundo.com>
6651
6652         * lib/socket_.h (SHUT_WR, SHUT_RDWR): Don't hardcode, suggested by
6653         Bruno.
6654
6655 2006-01-24  Karl Berry  <karl@gnu.org>
6656
6657         * config/srclist.txt (argp-namefrob.h): sync lost.
6658
6659 2006-01-24  Jim Meyering  <jim@meyering.net>
6660
6661         * modules/openat (Files): Add lib/intprops.h.
6662         From Mark D. Baushke.
6663
6664 2006-01-24  Jim Meyering  <jim@meyering.net>
6665
6666         * m4/openat.m4 (gl_FUNC_OPENAT): Add AC_LIBSOURCES([intprops.h]).
6667         Reported by Mark D. Baushke.
6668
6669 2006-01-24  Jim Meyering  <jim@meyering.net>
6670
6671         * lib/socket_.h: Remove useless parentheses in uses of cpp `defined'.
6672
6673 2006-01-24  Bruno Haible  <bruno@clisp.org>
6674
6675         * modules/strnlen (Maintainer): Change from glibc to all.
6676
6677 2006-01-24  Bruno Haible  <bruno@clisp.org>
6678
6679         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check for IBM and HP-UX bugs.
6680         Patch by Paul Eggert.
6681
6682 2006-01-24  Bruno Haible  <bruno@clisp.org>
6683
6684         * lib/stdbool_.h (_Bool) [__cplusplus]: Don't define if the compiler
6685         already has it.
6686         Report and patch by Albert Chin-A-Young  <china@thewrittenword.com> on
6687         2005-11-26.
6688
6689         * lib/stdbool_.h (_Bool) [HP-UX cc, AIX cc,xlc]: Define as
6690         'signed char' to avoid problems with the built-in _Bool type.
6691         Reported by Paul Eggert on 2005-11-26.
6692
6693 2006-01-24  Bruno Haible  <bruno@clisp.org>
6694
6695         * gnulib-tool (func_import): Avoid constructing complicated sed
6696         expressions inside backquote.
6697         Report and solution by Mark D. Baushke <mdb@gnu.org>.
6698
6699 2006-01-23  Ulrich Drepper  <drepper@redhat.com>
6700
6701         These changes imported from libc.
6702         * lib/getopt.c: Use __fxprintf instead of inline stream orientation
6703         test and two separate function calls.
6704         * lib/strndup.c (__strndup): Add libc_hidden_def.
6705
6706 2006-01-23  Simon Josefsson  <jas@extundo.com>
6707
6708         * modules/lock-tests: Use check_PROGRAMS instead of noinst_PROGRAMS.
6709         Remove the test_*_SOURCES variable: automake infers it by default.
6710         * modules/tls-tests: Likewise.
6711
6712 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
6713
6714         Work around porting bugs reported by Dieter in
6715         <http://lists.gnu.org/archive/html/bug-bison/2006-01/msg00049.html>.
6716         * lib/getopt.c (_NOPROTO): Remove; no longer needed.
6717         Include <stdlib.h> and <unistd.h> in all environments; it's safe now.
6718         Include "getopt.h" first, to check interface.
6719         (getenv): Declare only if defined HAVE_DECL_GETENV &&
6720         !HAVE_DECL_GETENV.
6721         * lib/strndup.c [!_LIBC]: Include "strndup.h" to get prototype.
6722         (__strndup): Revert to K&R-style function dfns, the glibc style.
6723         * lib/strnlen.c: Don't claim it's taken from glibc; it's not.
6724         (strnlen, __strnlen): Remove #defines and #undefs; not needed.
6725         Include strnlen.h first, to get prototype properly.
6726         (strnlen): Renamed from __strnlen.
6727         Remove weak alias.
6728
6729 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
6730
6731         * m4/getopt.m4 (gl_PREREQ_GETOPT): Check for getenv decl.
6732
6733 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
6734
6735         * config/srclist.txt: Adjust to reflect glibc reorganization.
6736         This affects only comments.
6737
6738 2006-01-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
6739
6740          * gnulib-tool, build-aux/csharpcomp.sh.in: Do not pass `-q' to mktemp.
6741          Reported by Bruce Korb <bkorb@gnu.org>.
6742
6743 2006-01-22  Paul Eggert  <eggert@cs.ucla.edu>
6744
6745         * lib/quotearg.c (quotearg_buffer_restyled): Add "default: break;"
6746         to pacify gcc -Wswitch-default.
6747
6748 2006-01-22  Bruno Haible  <bruno@clisp.org>
6749
6750         * lib/vasnprintf.c (VASNPRINTF): In the computation of the size of the
6751         temporary buffer for sprintf, take into account the precision also
6752         for 'd', 'i', 'u', 'o', 'x', 'X'.
6753
6754 2006-01-21  Sergey Poznyakoff  <gray@gnu.org.ua>
6755
6756         * modules/argp-tests: New module
6757         * tests/test-argp.c: New file
6758         * tests/test-argp-2.sh: New file
6759
6760 2006-01-21  Sergey Poznyakoff  <gray@gnu.org.ua>
6761
6762         * lib/argp-help.c (usage_long_opt): Do not print DOC options.
6763         (__argp_base_name): Removed
6764         * lib/argp-namefrob.h (__argp_basename): Removed definition. Was a
6765         typo.
6766         (__argp_base_name): Provide macro definition or extern declaration
6767         depending on the configuration
6768
6769 2006-01-20  Simon Josefsson  <jas@extundo.com>
6770
6771         * modules/inet_ntop (Depends-on): Depend on sys_socket.
6772
6773 2006-01-20  Simon Josefsson  <jas@extundo.com>
6774
6775         * lib/inet_ntop.h: Unconditionally include sys/socket.h.
6776
6777 2006-01-20  Paul Eggert  <eggert@cs.ucla.edu>
6778
6779         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Use -Wl,-z,ignore
6780         rather than -Xlinker -z -Xlinker ignore, as it's more portable.
6781         Suggested by Bruno Haible.
6782
6783 2006-01-20  Karl Berry  <karl@gnu.org>
6784
6785         * config/srclist.txt (argp-fmtstream.h, localcharset.c): comment out
6786         until changes propagate, I guess.
6787
6788 2006-01-19  Simon Josefsson  <jas@extundo.com>
6789
6790         * m4/socklen.m4: Look in ws2tcpip.h too, for mingw32.
6791
6792 2006-01-19  Simon Josefsson  <jas@extundo.com>
6793
6794         * lib/socket_.h: Map SHUT_RD, SHUT_WR, SHUT_RDWR correctly.
6795
6796 2006-01-19  Simon Josefsson  <jas@extundo.com>
6797
6798         * gnulib-tool: Set check_PROGRAMS.
6799
6800         * modules/arcfour-tests, modules/arctwo-tests, modules/crc-tests,
6801         modules/des-tests, modules/gc-arcfour-tests,
6802         modules/gc-arctwo-tests, modules/gc-des-tests,
6803         modules/gc-hmac-md5-tests, modules/gc-hmac-sha1-tests,
6804         modules/gc-md2-tests, modules/gc-md4-tests, modules/gc-md5-tests,
6805         modules/gc-pbkdf2-sha1-tests, modules/gc-rijndael-tests,
6806         modules/gc-sha1-tests, modules/gc-tests, modules/hmac-md5-tests,
6807         modules/hmac-sha1-tests, modules/md2-tests, modules/md4-tests,
6808         modules/md5-tests, modules/readline, modules/rijndael-tests: Use
6809         check_PROGRAMS instead of noinst_PROGRAMS to be able to remove
6810         test_*_SOURCES.
6811
6812 2006-01-18  Simon Josefsson  <jas@extundo.com>
6813
6814         * modules/socklen (Depends-on): Depend on sys_socket.
6815
6816 2006-01-18  Simon Josefsson  <jas@extundo.com>
6817
6818         * modules/arcfour-tests, modules/arctwo-tests, modules/crc-tests,
6819         modules/des-tests, modules/gc-arcfour-tests,
6820         modules/gc-arctwo-tests, modules/gc-des-tests,
6821         modules/gc-hmac-md5-tests, modules/gc-hmac-sha1-tests,
6822         modules/gc-md2-tests, modules/gc-md4-tests, modules/gc-md5-tests,
6823         modules/gc-pbkdf2-sha1-tests, modules/gc-rijndael-tests,
6824         modules/gc-sha1-tests, modules/gc-tests, modules/hmac-md5-tests,
6825         modules/hmac-sha1-tests, modules/md2-tests, modules/md4-tests,
6826         modules/md5-tests, modules/readline, modules/rijndael-tests: Add
6827         $(EXEEXT) to automake TESTS variable, for mingw32.
6828
6829 2006-01-17  Simon Josefsson  <jas@extundo.com>
6830
6831         * modules/socklen (Include): Need sys/socket.h.
6832
6833 2006-01-17  Bruno Haible  <bruno@clisp.org>
6834
6835         * modules/ssize_t (Include): Add <sys/types.h>.
6836
6837 2006-01-16  Paul Eggert  <eggert@cs.ucla.edu>
6838
6839         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Don't use ldd, as
6840         it's not portable and it doesn't work with cross-compiles.
6841         Problem reported by Bruno Haible.  Fix missing-$ typo in
6842         'test "gl_cv_ignore_unused_libraries" ...' that prevented
6843         -zignore from being used with Sun's C compiler.
6844
6845 2006-01-12  Simon Josefsson  <jas@extundo.com>
6846
6847         * lib/base64.c: Fix warning, reported by Bruno Haible
6848         <bruno@clisp.org> and patch by Paul Eggert <eggert@CS.UCLA.EDU>.
6849
6850 2006-01-12  Bruno Haible  <bruno@clisp.org>
6851
6852         * modules/ldd: New file.
6853         * build-aux/ldd.sh.in: New file.
6854         * MODULES.html.sh (Support for building libraries and executables): Add
6855         ldd.
6856
6857 2006-01-12  Bruno Haible  <bruno@clisp.org>
6858
6859         * m4/ldd.m4: New file.
6860
6861 2006-01-12  Bruno Haible  <bruno@clisp.org>
6862
6863         * gnulib-tool (func_import, func_create_testdir): Don't go into an
6864         endless loop while replacing $auxdir with build-aux.
6865
6866 2006-01-11  Simon Josefsson  <jas@extundo.com>
6867
6868         * lib/stdint_.h (SIZE_MAX): Add missing (.
6869
6870 2006-01-11  Paul Eggert  <eggert@cs.ucla.edu>
6871
6872         Sync from coreutils.
6873         * lib/md5.c: Fix commentary typos.
6874         (alignof, UNALIGNED_P): No need for a GCC-specific version.
6875         * lib/md5.h (__attribute__): Remove; unused.
6876         * lib/sha1.c: Fix commentary to match md5 better.
6877         * lib/sha1.h (struct sha1_ctx): Use a word buffer, not a byte buffer,
6878         so that we don't need to worry about alignment.  All uses changed.
6879         This merges the 2005-10-28 md5 change into sha1.
6880
6881 2006-01-11  Jim Meyering  <jim@meyering.net>
6882
6883         Sync from coreutils.
6884         * lib/md5.c (OP): Fix spacing.
6885
6886 2006-01-11  Bruno Haible  <bruno@clisp.org>
6887
6888         Ensure automatic ordering between gl_LOCK and gl_ARGP.
6889         * m4/lock.m4 (gl_LOCK_BODY): Renamed from gl_LOCK.
6890         (gl_LOCK): New macro, requiring gl_LOCK_BODY.
6891
6892 2006-01-11  Bruno Haible  <bruno@clisp.org>
6893
6894         Ensure automatic ordering between gl_LOCK and gl_ARGP.
6895         * gnulib-tool (func_import, func_create_testdir): Put gl_LOCK into
6896         the "early" section as well.
6897
6898 2006-01-11  Bruno Haible  <bruno@clisp.org>
6899
6900         Avoid "ar: no archive members specified" error on MacOS X.
6901         * gnulib-tool (func_modules_add_dummy): New function.
6902         (func_import, func_create_testdir): Invoke it.
6903
6904 2006-01-11  Bruno Haible  <bruno@clisp.org>
6905
6906         * gnulib-tool (func_import, func_create_testdir): Replace build-aux
6907         with $auxdir in AC_CONFIG_FILES statements.
6908
6909 2006-01-11  Bruno Haible  <bruno@clisp.org>
6910
6911         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
6912         Initialize also noinst_HEADERS to empty.
6913
6914 2006-01-11  Bruno Haible  <bruno@clisp.org>
6915
6916         * gnulib-tool (AUTOMAKEPATH, AUTOCONF, ACLOCAL, AUTOMAKE): New
6917         variables.
6918         (func_create_megatestdir): Call aclocal, autoconf, automake here, not
6919         autoreconf.
6920
6921 2006-01-11  Bruno Haible  <bruno@clisp.org>
6922
6923         * gnulib-tool (AUTOCONF, ACLOCAL, AUTOMAKE, AUTORECONF): Make
6924         overridable by the user.
6925         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
6926
6927 2006-01-10  Simon Josefsson  <jas@extundo.com>
6928
6929         * modules/sys_socket: New file.
6930
6931 2006-01-10  Simon Josefsson  <jas@extundo.com>
6932
6933         * m4/sys_socket_h.m4: New file.
6934
6935 2006-01-10  Simon Josefsson  <jas@extundo.com>
6936
6937         * lib/socket_.h: New file.
6938
6939 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
6940
6941         * modules/readutmp (Maintainer): Add myself.
6942
6943 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
6944
6945         * m4/memcoll.m4 (gl_MEMCOLL): Don't require AC_FUNC_MEMCMP, undoing
6946         the 2002-12-31 change.  Problem and fix reported by Bruno Haible.
6947         People who are still concerned with buggy memcmp implementations
6948         can invoke gl_FUNC_MEMCMP themselves.
6949
6950 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
6951
6952         * lib/regex_internal.h (BITSET_WORD_BITS):
6953         Work around a bug in 64-bit PGC (before version 6.1-2), where the
6954         preprocessor mishandles large unsigned values as if they were signed.
6955         Problem reported by Claudio Fontana in
6956         <http://lists.gnu.org/archive/html/bug-gnulib/2005-12/msg00061.html>.
6957
6958 2006-01-10  Jim Meyering  <jim@meyering.net>
6959
6960         Avoid the double-free (first in fts_read, second in fts_close) that
6961         would occur when an `active' directory is made inaccessible (e.g.,
6962         via chmod a-x) during a traversal.
6963         * lib/fts.c (fts_read): After a failed fchdir, update sp->fts_cur
6964         before returning.  Reproduce this failure by
6965         mkdir -p a/b; cd a; chmod a-x . b
6966         Reported by Stavros Passas.
6967
6968         Sync from coreutils.
6969         * lib/sha1.c: Tweak grammar in a comment.
6970
6971 2006-01-10  Jim Meyering  <jim@meyering.net>
6972
6973         * m4/fpending.m4: Also include <stdio.h>, for Dragonfly.
6974         Patch by Joerg Sonnenberger.
6975
6976 2006-01-10  Bruno Haible  <bruno@clisp.org>
6977
6978         * modules/readutmp: Depend on module free.
6979         * modules/strtok_r: Depend on module restrict.
6980
6981 2006-01-10  Bruno Haible  <bruno@clisp.org>
6982
6983         * modules/gettext (configure.ac): Add an invocation of
6984         AM_GNU_GETTEXT_VERSION. Needed since autoreconf is used by gnulib-tool.
6985
6986 2006-01-10  Bruno Haible  <bruno@clisp.org>
6987
6988         * m4/localcharset.m4 (gl_LOCALCHARSET): Also test for getc_unlocked.
6989         Reported by Werner Lemberg <wl@gnu.org>.
6990
6991 2006-01-10  Bruno Haible  <bruno@clisp.org>
6992
6993         * lib/localcharset.c: Update from GNU gettext.
6994
6995 2006-01-10  Bruno Haible  <bruno@clisp.org>
6996
6997         * lib/argp.h (__const): Remove macro. Use const instead.
6998         * lib/argp-fmtstream.h (__const): Likewise.
6999         * lib/glob_.h (__const): Remove macro.
7000         * lib/glob-libc.h: Use const instead of __const.
7001
7002 2006-01-10  Bruno Haible  <bruno@clisp.org>
7003
7004         * gnulib-tool (func_emit_tests_Makefile_am): Emit an empty SUBDIR
7005         variable.
7006         Needed to avoid an automake error regarding the 'gettext' module.
7007
7008 2006-01-09  Simon Josefsson  <jas@extundo.com>
7009
7010         * modules/inet_ntop (Depends-on): Add restrict.
7011
7012 2006-01-09  Simon Josefsson  <jas@extundo.com>
7013
7014         * modules/gc-rijndael-tests (License): Put under LGPL.
7015
7016         * modules/gc-des-tests (License): Likewise.
7017
7018         * modules/gc-arcfour-tests (License): Likewise.
7019
7020         * modules/gc-arctwo-tests (License): Likewise.
7021
7022         * modules/gc-pbkdf2-sha1-tests (License): Likewise.
7023
7024         * modules/gc-hmac-sha1-tests (Files): Likewise.
7025
7026         * modules/gc-hmac-md5-tests (License): Likewise.
7027
7028         * modules/gc-sha1-tests (License): Likewise.
7029
7030         * modules/gc-md5-tests (License): Likewise.
7031
7032         * modules/gc-md4-tests (License): Likewise.
7033
7034         * modules/gc-md2-tests (License): Likewise.
7035
7036         * modules/gc-tests (License): Likewise.
7037
7038         * modules/des-tests (License): Likewise.
7039
7040         * modules/md4-tests (License): Likewise.
7041
7042         * modules/md2-tests (License): Likewise.
7043
7044 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
7045
7046         Sync from coreutils:
7047
7048         * MODULES.html.sh (build_lib): New section, with new lib-ignore module.
7049         * modules/lib-ignore: New file.
7050         * modules/mkdir-p (Files): Add chdir-safer.c, chdir-safer.h, lchmod.h,
7051         chdir-safer.m4, lchmod.m4.
7052         * modules/openat: Add mkdirat.c, openat-priv.h.
7053
7054 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
7055
7056         Sync from coreutils.
7057         * m4/lib-ignore.m4: New file.
7058         * m4/lchmod.m4: New file.
7059
7060 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
7061
7062         Sync from coreutils.
7063         * lib/chdir-long.c (cdb_free): Don't bother trying to open directory
7064         for write access: POSIX says that must fail.
7065         * lib/fts.c (diropen): Likewise.
7066         * lib/save-cwd.c (save_cwd): Likewise.
7067         * lib/chdir-long.c (cdb_free): Open with O_NOCTTY | O_NONBLOCK as
7068         well, for minor improvements on hosts that lack O_DIRECTORY.
7069         * lib/chown.c (rpl_chown) [CHOWN_MODIFIES_SYMLINK]:
7070         Don't try O_WRONLY unless O_RDONLY failed wth EACCES.
7071         Fall back on chown if open failed with EACCES.
7072
7073         * lib/gettime.c (gettime) [!defined OK_TO_USE_1S_CLOCK]:
7074         Report an error at compile-time if only a 1-second nominal clock
7075         resolution is found.
7076
7077         * lib/lchmod.h: New file.
7078         * lib/mkdir-p.c: Include lchmod.h, lchown.h.
7079         (make_dir_parents): Use lchown rather than chown, and
7080         lchmod rather than chmod.
7081
7082         * lib/mountlist.c (ME_DUMMY): "none" and "proc" file systems are
7083         dummies too.  Problem with "none" reported by Bob Proulx.  Problem with
7084         "proc" reported by n0dalus.
7085
7086         * lib/mountlist.c: Include <limits.h>.
7087         (dev_from_mount_options)
7088         [defined MOUNTED_GETMNTENT1 || defined MOUNTED_GETMNTENT2]:
7089         New function.  It no longer assumes "dev=" has the System V meaning
7090         on Linux (since it doesn't).  It also parses "dev=" more carefully.
7091         (read_file_system_list)
7092         [defined MOUNTED_GETMNTENT1 || defined MOUNTED_GETMNTENT2]: Use it.
7093         MOUNTED_GETMNTENT2 is new here; the code didn't used to look for
7094         dev= in that case.
7095
7096         * lib/posixtm.h (PDS_PRE_2000): New macro.
7097         * lib/posixtm.c (year): Arg is now syntax_bits rather than
7098         allow_century.  All usages changed.  Reject dates outside the range
7099         1969-1999 if PDS_PRE_2000 is used.
7100
7101 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
7102
7103         Sync from coreutils.
7104         * doc/getdate.texi (General date syntax): Invalid dates are rejected.
7105         (Time of day items): Mention the possibility of leap seconds.
7106         Problem reported by Dr. David Alan Gilbert.
7107
7108 2006-01-09  Jim Meyering  <jim@meyering.net>
7109
7110         Sync from coreutils.
7111
7112         * lib/version-etc.c (COPYRIGHT_YEAR): Update to 2006.
7113
7114         * lib/chdir-safer.h, lib/chdir-safer.c: New files.
7115
7116         * lib/modechange.c (mode_compile): Reject an invalid mode string
7117         that starts with an octal digit.  From Andreas Gruenbacher.
7118
7119         * lib/openat.c: Include "fcntl--.h" and "unistd--.h", to map open
7120         and dup to open_safer and dup_safer, respectively.
7121         (openat_permissive): Fix typo in comment.
7122
7123         * lib/openat.c: Don't include <stdlib.h>, <unistd.h>, <fcntl.h>,
7124         "gettext.h"; either no longer needed or are guaranteed by openat.h.
7125         (_): Remove; no longer needed.
7126         (openat): Renamed from rpl_openat; no need for rpl_openat
7127         since openat.h renames openat for us.
7128         Replace most of the body with a call to openat_permissive,
7129         to avoid duplicate code.
7130         Port to (probably hypothetical) environments were mode_t is
7131         wider than int.
7132         (openat_permissive): Require mode arg, so that we can check
7133         types better.  Put it just after flags.  Change cwd failure
7134         indicator from pointer-to-bool to pointer-to-errno-value.
7135         All callers changed.
7136         Invoke openat_save_fail and/or openat_restore_fail if
7137         cwd_errno is null, so that openat can call us.
7138         (openat_permissive, fdopendir, fstatat, unlinkat):
7139         Simplify errno handling to avoid some duplicate code,
7140         as it's OK to set errno on success.
7141         * lib/openat.h: Revamp code so that function macros depend on
7142         __OPENAT_PREFIX only, not also on AT_FDCWD.
7143         (openat_ro): Remove.  Caller changed to use openat_permissive.
7144         (openat_permissive): Now a macro, if not a function.
7145         (openat_restore_fail, openat_save_fail): Now always functions,
7146         since mkdirat needs them even if __OPENAT_PREFIX is defined.
7147
7148         * lib/openat-priv.h: New file, defining macros used by mkdirat.c
7149         and openat.c.
7150         * lib/mkdirat.c: Include openat-priv.h.
7151         Remove definitions of macros defined therein.
7152         * lib/openat.c: Likewise.
7153
7154         * lib/mkdirat.c (mkdirat): New file and function.
7155         * lib/openat.h (mkdirat): Declare.
7156
7157         * lib/openat.c (fdopendir): Don't change errno when returning non-NULL.
7158
7159         * lib/openat.h (openat_permissive): Declare.
7160         (openat_ro): Define.
7161
7162         * lib/openat.c (EXPECTED_ERRNO): New macro.
7163         (openat_permissive): New function -- used in remove.c rewrite.
7164         (all functions): Set errno just before returning, only if there
7165         was an actual failure.
7166         Use EXPECTED_ERRNO rather than comparing against only ENOTDIR.
7167
7168         Emulate openat-family functions using Linux's procfs, if possible.
7169         Idea and some code based on Ulrich Drepper's glibc changes.
7170
7171         * lib/openat.c: (BUILD_PROC_NAME): New macro.
7172         Include <stdio.h>, <string.h>, "alloca.h" and "intprops.h".
7173         (rpl_openat): Emulate by trying to open /proc/self/fd/%d/%s,
7174         before falling back on save_cwd and restore_cwd.
7175         (fdopendir, fstatat, unlinkat): Likewise.
7176
7177         * lib/openat.c (fstatat, unlinkat): Perform the syscall directly,
7178         skipping the save_cwd...restore_cwd overhead, if FILE is absolute.
7179
7180         * lib/openat.c (rpl_openat): Use the promoted type (int), not mode_t,
7181         as second argument to va_arg.  Otherwise, some versions of gcc
7182         warn that `if this code is reached, the program will abort'.
7183
7184 2006-01-09  Jim Meyering  <jim@meyering.net>
7185
7186         Sync from coreutils.
7187         * m4/openat.m4 (gl_FUNC_OPENAT): Require and compile mkdirat.c.
7188         Require openat-priv.h.
7189
7190 2006-01-09  Bruno Haible  <bruno@clisp.org>
7191
7192         * modules/strnlen (Include): Use strnlen.h.
7193
7194 2006-01-09  Bruno Haible  <bruno@clisp.org>
7195
7196         * m4/stdint.m4 (gl_STDINT_H): Also test for <sys/bitypes.h>.
7197
7198 2006-01-09  Bruno Haible  <bruno@clisp.org>
7199
7200         * lib/sysexit_.h (EX_OK): New macro.
7201         Suggested by Martin Lambers <marlam@marlam.de>.
7202
7203 2006-01-09  Bruno Haible  <bruno@clisp.org>
7204
7205         * lib/stdint_.h: On Linux libc4 and libc5, include <sys/bitypes.h> and
7206         don't define _STDINT_H_NEED_SIGNED_INT_TYPES.
7207
7208 2006-01-09  Bruno Haible  <bruno@clisp.org>
7209
7210         * lib/stdint_.h (SIZE_MAX): Write the value without involving negative
7211         numbers.
7212
7213 2006-01-09  Bruno Haible  <bruno@clisp.org>
7214
7215         * lib/javacomp.sh.in: Move to ../build-aux/javacomp.sh.in.
7216         * lib/javaexec.sh.in: Move to ../build-aux/javaexec.sh.in.
7217         * lib/csharpcomp.sh.in: Move to ../build-aux/csharpcomp.sh.in.
7218         * lib/csharpexec.sh.in: Move to ../build-aux/csharpexec.sh.in.
7219
7220 2006-01-09  Bruno Haible  <bruno@clisp.org>
7221
7222         * build-aux/javacomp.sh.in: New file, moved from lib/.
7223         * modules/javacomp-script (Files): Update.
7224         (configure.ac): Add AC_CONFIG_FILES invocation.
7225         (EXTRA_DIST): Remove variable.
7226
7227         * build-aux/javaexec.sh.in: New file, moved from lib/.
7228         * modules/javaexec (Files): Update.
7229         (configure.ac): Add AC_CONFIG_FILES invocation.
7230         (EXTRA_DIST): Remove javaexec.sh.in.
7231
7232         * build-aux/csharpcomp.sh.in: New file, moved from lib/.
7233         * modules/csharpcomp-script (Files): Update.
7234         (configure.ac): Add AC_CONFIG_FILES invocation.
7235         (EXTRA_DIST): Remove variable.
7236
7237         * build-aux/csharpexec.sh.in: New file, moved from lib/.
7238         * modules/csharpexec (Files): Update.
7239         (configure.ac): Add AC_CONFIG_FILES invocation.
7240         (EXTRA_DIST): Remove csharpexec.sh.in.
7241
7242 2006-01-09  Andreas Gruenbacher  <agruen@suse.de>
7243
7244         Sync from coreutils.
7245
7246         Add POSIX ACL support
7247         * lib/acl.h (copy_acl, set_acl): Add declarations.
7248         * lib/acl.c (acl_entries): Add fallback implementation for POSIX ACL
7249         systems other than Linux.
7250         (chmod_or_fchmod): New function: use fchmod when possible,
7251         and chmod otherwise.
7252         (file_has_acl): Add a POSIX ACL implementation, with a
7253         Linux-specific subcase.
7254         (copy_acl): Add: copy an acl and S_ISUID, S_ISGID, and
7255         S_ISVTX from one file to another.  Fall back to fchmod/chmod when
7256         acls are unsupported.
7257         (set_acl): Add: set a file's acl and S_ISUID, S_ISGID, and
7258         S_ISVTX to a defined value.  Fall back to fchmod/chmod when acls
7259         are unsupported.
7260
7261 2006-01-09  Andreas Gruenbacher  <agruen@suse.de>
7262
7263         Sync from coreutils.
7264         * m4/acl.m4 (AC_FUNC_ACL): Add POSIX ACL and Linux-specific acl tests.
7265
7266 2006-01-07  Bruno Haible  <bruno@clisp.org>
7267
7268         * gnulib-tool (func_import): Add an AC_PROG_RANLIB dependency to
7269         gl_EARLY.
7270
7271 2006-01-04  Paul Eggert  <eggert@cs.ucla.edu>
7272
7273         * lib/strftime.c (tzname): Don't declare if it is already #defined.
7274         Problem reported for Mingw by Mark Junker.
7275
7276 2006-01-04  Paul Eggert  <eggert@cs.ucla.edu>
7277
7278         * README: Gnulib normally doesn't generate a tarball.
7279
7280 2006-01-03  Paul Eggert  <eggert@cs.ucla.edu>
7281
7282         * lib/xtime.h (xtime_make, xtime_nonnegative_nsec, xtime_nsec): Use
7283         long int, not int, for nanosecond counts, so that people who are
7284         used to POSIX struct timespec won't be surprised.  Reported by Jim
7285         Meyering.
7286
7287 2005-12-28  Bruno Haible  <bruno@clisp.org>
7288
7289         * build-aux/config.rpath: Update from GNU gettext.
7290
7291 2005-12-16  Jim Meyering  <jim@meyering.net>
7292
7293         * modules/fprintftime: New module.
7294         * MODULES.html.sh (Date and time <time.h>): Add fprintftime.
7295
7296 2005-12-16  Jim Meyering  <jim@meyering.net>
7297
7298         * m4/fprintftime.m4: New file.
7299
7300 2005-12-16  Jim Meyering  <jim@meyering.net>
7301
7302         * lib/fprintftime.c, lib/fprintftime.h: New files.
7303
7304 2005-12-15  Simon Josefsson  <jas@extundo.com>
7305
7306         * modules/socklen (configure.ac): Fix M4 macro name, to align with
7307         new m4/socklen.m4.
7308
7309 2005-12-10  Sergey Poznyakoff  <gray@gnu.org.ua>
7310
7311         * m4/argp.m4: Define HAVE_DECL_PROGRAM_INVOCATION_NAME and
7312         HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME
7313
7314 2005-12-10  Sergey Poznyakoff  <gray@gnu.org.ua>
7315
7316         * lib/argp-fmtstream.c (__argp_fmtstream_update): Fix coredump
7317         * lib/argp-help.c (fill_in_uparams): Check if the constructed
7318         struct uparams is valid. Fall back to the default values if it is
7319         not.
7320
7321 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
7322
7323         * modules/argp (Files): Add argp-pin.c
7324         (Depends-on): dirname
7325         (lib_SOURCES): Add argp-pin.c
7326
7327 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
7328
7329         * m4/argp.m4:  Check if program_invocation_name and
7330         program_invocation_short_name are declared and define appropriate
7331         macros if they are not.
7332
7333 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
7334
7335         * lib/argp-help.c (__argp_base_name): New function
7336         (__argp_short_program_name): Rewrite using __argp_base_name
7337         * lib/argp-namefrob.h: Define program_invocation_name and
7338         program_invocation_short_name if requested
7339         (__argp_base_name): Add prototype
7340         * lib/argp-parse.c (argp_def): Use gettext wrappers
7341         (argp_default_parser): Use __argp_base_name
7342         * lib/argp-pin.c: New file. Defines program_invocation_name and
7343         program_invocation_short_name on systems that lack them.
7344
7345 2005-12-07  Paul Eggert  <eggert@cs.ucla.edu>
7346
7347         * m4/stat-time.m4 (gl_STAT_TIME): Add check for
7348         TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC, to fix IRIX 5.3
7349         porting problem reported by Georg Schwarz in
7350         <http://lists.gnu.org/archive/html/bug-coreutils/2005-12/msg00083.html>.
7351
7352 2005-12-07  Paul Eggert  <eggert@cs.ucla.edu>
7353
7354         * lib/stat-time.h (STATE_TIMESPEC, STAT_TIMESPEC_NS): Add check for
7355         TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC, to fix IRIX 5.3
7356         porting problem reported by Georg Schwarz in
7357         <http://lists.gnu.org/archive/html/bug-coreutils/2005-12/msg00083.html>.
7358
7359 2005-12-05  Bruno Haible  <bruno@clisp.org>
7360
7361         * lib/csharpcomp.sh.in (options_csc): For -l option, add a .dll suffix.
7362         * lib/csharpcomp.c (compile_csharp_using_sscli): Likewise.
7363         Reported by Mark Junker <mjscod@gmx.de>.
7364
7365 2005-12-02  Paul Eggert  <eggert@cs.ucla.edu>
7366
7367         * m4/socklen.m4 (gl_TYPE_SOCKLEN_T): Renamed from gl_SOCKLEN_T.
7368         Use implementation from Albert Chin, with some
7369         comments/corrections by Stepan Kasal and myself.
7370
7371 2005-12-02  Bruno Haible  <bruno@clisp.org>
7372
7373         * gnulib-tool (func_import): Accept GPLed build tool modules when
7374         --lgpl is given.
7375         * modules/csharpcomp-script: New file.
7376         * modules/csharpcomp: Depend on it.
7377         * modules/javacomp-script: New file.
7378         * modules/javacomp: Depend on it.
7379         Suggested by Simon Josefsson.
7380
7381 2005-12-01  Paul Eggert  <eggert@cs.ucla.edu>
7382
7383         * m4/regex.m4 (gl_REGEX): Check whether off_t can be used in a switch
7384         statement, to work around an HP-UX 10.20 compiler bug reported by
7385         Peter O'Gorman.
7386
7387 2005-11-29  Paul Eggert  <eggert@cs.ucla.edu>
7388
7389         * modules/savedir (Depends-on): Add openat.
7390
7391 2005-11-29  Paul Eggert  <eggert@cs.ucla.edu>
7392
7393         * lib/stdint_.h (intmax_t) [defined intmax_t]: Do not declare.
7394         (uintmax_t) [defined uintmax_t]: Do not declare.
7395         (SIZE_MAX) [defined SIZE_MAX]: Do not define.
7396         This works around a problem if intmax_t.m4 and/or uintmax_t.m4
7397         and/or size_max.m4 are also used.  Problem reported by Mark D. Baushke.
7398         (SIZE_MAX): Define to ((size_t) -1), not (~(size_t)0), for the
7399         sake of portability to weird hosts that C allows (though we don't
7400         know of any practical examples).
7401
7402         * lib/savedir.h (fdsavedir): New decl.
7403         * lib/savedir.c (fdsavedir, savedirstream): New functions; the latter
7404         contains most of the former guts of savedir.
7405         (savedir): Use savedirstream.
7406         Include "openat.h".
7407
7408 2005-11-25  Paul Eggert  <eggert@cs.ucla.edu>
7409
7410         * modules/obstack (Files): Add m4/ulonglong.m4.
7411         Problem reported by Davide Angelocola.
7412
7413 2005-11-15  Paul Eggert  <eggert@cs.ucla.edu>
7414
7415         * lib/xstrtod.c: Don't bother with #pragma STDC FENV_ACCESS ON, as
7416         coreutils no longer futzes with rounding modes.
7417
7418 2005-11-14  Jim Meyering  <jim@meyering.net>
7419
7420         * lib/mkstemp-safer.c: Include <config.h>, required for possible
7421         replacement of mkstemp.
7422
7423 2005-11-10  Simon Josefsson  <jas@extundo.com>
7424
7425         * lib/readline.c: Remove EOL.
7426
7427 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
7428
7429         * modules/gethrxtime (Depends-on): Add gettime.
7430
7431 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
7432
7433         * m4/gethrxtime.m4 (gl_PREREQ_GETHRXTIME): Don't require AC_HEADER_TIME
7434         or gettimeofday; no longer needed.
7435
7436 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
7437
7438         * lib/gethrxtime.c: Include "timespec.h" rather than the sys/time /
7439         time business.
7440         (gethrxtime) [! (HAVE_NANOUPTIME
7441         || (defined CLOCK_MONOTONIC && HAVE_CLOCK_GETTIME)
7442         || HAVE_MICROUPTIME)]: Fall back on gettime rather than rolling
7443         our own approximation.
7444
7445 2005-11-08  Eric Blake  <ebb9@byu.net>
7446
7447         * lib/inet_ntop.h: Use #if !, not #ifndef, for AC_CHECK_DECLS.
7448
7449 2005-11-08  Eric Blake  <ebb9@byu.net>
7450
7451         * lib/getaddrinfo.h: Use #if !, not #ifndef, for AC_CHECK_DECLS.
7452
7453 2005-11-04  Bruno Haible  <bruno@clisp.org>
7454
7455         * gnulib-tool: Implement --update mode.
7456
7457 2005-10-30  Paul Eggert  <eggert@cs.ucla.edu>
7458
7459         Fix porting problem reported by Theodoros V. Kalamatianos.
7460         * lib/utimens.c (futimens) [HAVE_WORKING_UTIMES && HAVE_FUTIMES]:
7461         Don't assume that futimes failing means we must fail.
7462
7463 2005-10-30  Paul Eggert  <eggert@cs.ucla.edu>
7464
7465         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Revamp wording and local
7466         variables to suggest the intended function of the PATH_MAX check.
7467
7468 2005-10-30  Kean Johnston  <jkj@sco.com>
7469
7470         Trivial changes to support SCO systems.
7471         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Check for MAXPATHLEN as well
7472         as PATH_MAX.
7473         * m4/fpending.m4 (gl_FUNC_FPENDING): Correct check for SCO systems,
7474         where __ptr is null when no I/O is pending.
7475
7476 2005-10-29  Paul Eggert  <eggert@cs.ucla.edu>
7477
7478         * lib/getcwd.c (__getcwd): Don't assume that system calls after readdir
7479         leave errno alone.  Problem reported by Dmitry V. Levin.
7480
7481 2005-10-28  Simon Josefsson  <jas@extundo.com>
7482
7483         * tests/test-gc-md4.c, tests/test-gc-md5.c, tests/test-gc-sha1.c:
7484         Test more.
7485
7486         * tests/test-gc-md2.c, tests/test-md2.c: New files.
7487
7488         * modules/md2, modules/md2-tests: New files.
7489
7490 2005-10-28  Simon Josefsson  <jas@extundo.com>
7491
7492         * m4/inet_ntop.m4: More tests.
7493
7494         * m4/gc-md2.m4, md2.m4: New file.
7495
7496 2005-10-28  Simon Josefsson  <jas@extundo.com>
7497
7498         * lib/inet_ntop.h, inet_ntop.c: Make it work under mingw32: Add
7499         "restrict" keywords, as per POSIX.  Protect the function
7500         declaration around HAVE_DECL_INET_NTOP rather than HAVE_INET_NTOP.
7501         Don't use K&R prototypes.  Check the sprintf return values.
7502         Re-define EAFNOSUPPORT if not present.  Indent.
7503
7504         * lib/md5.h, md5.c: Simplify buffer handling visavi alignment,
7505         suggested by Bruno Haible <bruno@clisp.org>.
7506
7507         * lib/gc-gnulib.c, gc-libgcrypt.c: Check calloc return value.
7508
7509         * lib/gc.h: Add MD2 and RMD160 length defines.  Add prototypes.
7510
7511         * lib/gc-libgcrypt.c: Add MD2 (which is not available through
7512         libgcrypt).
7513
7514         * lib/gc-gnulib.c: Add MD2.  Implement gc_hash_* API.
7515
7516         * lib/md2.h, lib/md2.c: New files.
7517
7518 2005-10-28  Paul Eggert  <eggert@cs.ucla.edu>
7519
7520         * lib/savedir.c (savedir): Don't assume that xrealloc etc. leave
7521         errno alone.  Problem reported by Frederic Jolliton.
7522
7523 2005-10-27  Paul Eggert  <eggert@cs.ucla.edu>
7524
7525         * modules/verify (License): Change from GPL to LGPL.  This is a
7526         tiny module and there are apparently near-equivalents that are
7527         under the BSD license.
7528
7529 2005-10-24  Simon Josefsson  <jas@extundo.com>
7530
7531         * modules/sha1: Relicense to LGPL.
7532
7533 2005-10-24  Simon Josefsson  <jas@extundo.com>
7534
7535         * lib/md4.h: Shrink buffer size, now that we changed the type.
7536
7537 2005-10-23  Simon Josefsson  <jas@extundo.com>
7538
7539         * gnulib-tool (func_import): Fix --tests-base.
7540
7541 2005-10-22  Simon Josefsson  <jas@extundo.com>
7542
7543         * modules/arcfour (Depends-on): Need stdint.
7544
7545 2005-10-22  Simon Josefsson  <jas@extundo.com>
7546
7547         * m4/gc.m4: Don't be fooled by --disable-*random-device parameters,
7548         suggested by Bruno Haible <bruno@clisp.org>.  Fix error messages.
7549
7550 2005-10-22  Simon Josefsson  <jas@extundo.com>
7551
7552         * lib/md4.h, md4.c: Simplify buffer handling visavi alignment,
7553         suggested by Bruno Haible <bruno@clisp.org>.
7554
7555 2005-10-22  Simon Josefsson  <jas@extundo.com>
7556
7557         * lib/crc.h: Include stddef.h, for size_t.
7558
7559 2005-10-22  Simon Josefsson  <jas@extundo.com>
7560
7561         * lib/arcfour.h, arcfour.c: Use fixed size indices in the
7562         arcfour_context struct (simplify test vector testing in GNU
7563         Shishi).
7564
7565 2005-10-21  Simon Josefsson  <jas@extundo.com>
7566
7567         * modules/des, modules/des-tests: New files.
7568
7569         * modules/gc-des, modules/gc-des-tests: New files.
7570
7571         * tests/test-des.c, tests/test-gc-des.c: New file.
7572
7573 2005-10-21  Simon Josefsson  <jas@extundo.com>
7574
7575         * modules/arctwo, modules/arctwo-tests: New files.
7576
7577         * tests/test-arctwo.c: New file.
7578
7579         * modules/gc-arctwo, modules/gc-arctwo-tests: New files.
7580
7581         * tests/test-gc-arctwo.c: New file.
7582
7583 2005-10-21  Simon Josefsson  <jas@extundo.com>
7584
7585         * m4/gc.m4: Don't use libgcrypt if gcrypt.h isn't found, suggested by
7586         Bruno Haible <bruno@clisp.org>.
7587
7588         * m4/gc-des.m4: New file.
7589
7590 2005-10-21  Simon Josefsson  <jas@extundo.com>
7591
7592         * m4/arctwo.m4: New file.
7593
7594         * m4/gc-arctwo.m4: New file.
7595
7596 2005-10-21  Simon Josefsson  <jas@extundo.com>
7597
7598         * lib/rijndael-api-fst.c: Fix bugs in CBC mode for more than one
7599         block.
7600
7601 2005-10-21  Simon Josefsson  <jas@extundo.com>
7602
7603         * lib/hmac-md5.c (hmac_md5): Add comments, suggested by Bruno Haible
7604         <bruno@clisp.org>.
7605
7606         * lib/hmac-sha1.c (hmac_sha1): Likewise.
7607
7608         * lib/crc.c (crc32_update): Actually use crc parameter, suggested by
7609         Bruno Haible <bruno@clisp.org>.
7610
7611         * lib/crc.h: Include stdint.h directly, suggested by Bruno Haible
7612         <bruno@clisp.org>.
7613
7614 2005-10-21  Simon Josefsson  <jas@extundo.com>
7615
7616         * lib/gc-libgcrypt.c (gc_cipher_open): Handle ECB.
7617
7618 2005-10-21  Simon Josefsson  <jas@extundo.com>
7619
7620         * lib/gc-gnulib.c: Support ARCTWO in CBC mode.
7621
7622 2005-10-21  Simon Josefsson  <jas@extundo.com>
7623
7624         * lib/des.h, lib/des.c: New files.
7625
7626         * lib/gc-gnulib.c: Support DES.c
7627
7628 2005-10-21  Simon Josefsson  <jas@extundo.com>
7629
7630         * lib/arctwo.h, lib/arctwo.c: New files.
7631
7632         * lib/gc-gnulib.c: Support ARCTWO.
7633
7634 2005-10-21  Simon Josefsson  <jas@extundo.com>
7635
7636         * lib/arctwo.h (arctwo_setkey): Protect variable in CPP macro,
7637         suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
7638
7639 2005-10-21  Simon Josefsson  <jas@extundo.com>
7640
7641         * gnulib-tool (func_import, func_create_testdir): Define automake
7642         conditional GL_COND_LIBTOOL if libtool is used (to be used by modules
7643         Makefile.am snippet),
7644         suggested by Bruno Haible <bruno@clisp.org>.
7645
7646         * modules/gc (Makefile.am): Use it.
7647
7648 2005-10-21  Bruno Haible  <bruno@clisp.org>
7649
7650         * gnulib-tool (func_import, func_create_testdir): Add quoting to last
7651         patch.
7652
7653 2005-10-19  Simon Josefsson  <jas@extundo.com>
7654
7655         * tests/test-gc-rijndael.c: New file.
7656
7657         * modules/gc-rijndael, modules/gc-rijndael-test: New files.
7658
7659 2005-10-19  Simon Josefsson  <jas@extundo.com>
7660
7661         * tests/test-gc-md4.c, tests/test-gc-md5.c: Test gc_hash_buffer
7662         interface too.
7663
7664 2005-10-19  Simon Josefsson  <jas@extundo.com>
7665
7666         * tests/test-gc-arcfour.c: New file.
7667
7668         * modules/gc-arcfour, modules/gc-arcfour-tests: New files.
7669
7670 2005-10-19  Simon Josefsson  <jas@extundo.com>
7671
7672         * modules/gc-md4, modules/gc-md4-tests: New file.
7673
7674         * tests/test-gc-md4.c: New file.
7675
7676 2005-10-19  Simon Josefsson  <jas@extundo.com>
7677
7678         * m4/gc-md4.m4: New file.
7679
7680 2005-10-19  Simon Josefsson  <jas@extundo.com>
7681
7682         * m4/gc-hmac-md5.m4, gc-hmac-sha1.m4, gc-md4.m4,
7683         gc-md5.m4, gc-sha1.m4: Fix typo, suggested by Stepan Kasal
7684         <kasal@ucw.cz>.
7685
7686 2005-10-19  Simon Josefsson  <jas@extundo.com>
7687
7688         * m4/gc-arcfour.m4: New file.
7689
7690         * m4/gc-rijndael.m4: New file.
7691
7692 2005-10-19  Simon Josefsson  <jas@extundo.com>
7693
7694         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Support MD4.
7695
7696 2005-10-19  Simon Josefsson  <jas@extundo.com>
7697
7698         * lib/gc-gnulib.c: Support ARCFOUR.
7699
7700 2005-10-19  Simon Josefsson  <jas@extundo.com>
7701
7702         * lib/gc-gnulib.c: Implement gc_cipher_* API, currently only with AES
7703         support.
7704
7705         * lib/gc.h: Add ECB enum type.
7706
7707         * lib/hmac-md5.c, hmac-sha1.c: Include memxor.h.
7708
7709 2005-10-18  Simon Josefsson  <jas@extundo.com>
7710
7711         * tests/test-md5.c: New file.
7712
7713         * modules/md5-tests: New file.
7714
7715 2005-10-18  Simon Josefsson  <jas@extundo.com>
7716
7717         * tests/test-md4.c: New file.
7718
7719         * modules/md4, modules/md4-tests: New files.
7720
7721 2005-10-18  Simon Josefsson  <jas@extundo.com>
7722
7723         * m4/md4.m4: New file.
7724
7725 2005-10-18  Simon Josefsson  <jas@extundo.com>
7726
7727         * lib/md4.h, lib/md4.c: New files, based on md5.?.
7728
7729 2005-10-17  Stepan Kasal  <kasal@ucw.cz>
7730
7731         * gnulib-tool (func_create_testdir): Omit the second check whether
7732         BUILT_SOURCES in nonempty.
7733
7734 2005-10-17  Simon Josefsson  <jas@extundo.com>
7735
7736         * tests/test-rijndael.c: New file.
7737
7738 2005-10-17  Simon Josefsson  <jas@extundo.com>
7739
7740         * modules/sha1: Depend on stdint instead of md5.
7741
7742         * modules/md5: Depend on stdint, remove uint32_t.
7743
7744 2005-10-17  Simon Josefsson  <jas@extundo.com>
7745
7746         * modules/gc-sha1-tests: New file.
7747
7748         * tests/test-gc-sha1.c: New file.
7749
7750 2005-10-17  Simon Josefsson  <jas@extundo.com>
7751
7752         * m4/md5.m4: Remove call to uint32_t.m4.
7753
7754 2005-10-17  Simon Josefsson  <jas@extundo.com>
7755
7756         * lib/sha1.c: Use uint32_t instead of md5_uint32.t
7757
7758         * lib/sha1.h: Use stdint.h and uint32_t instead of md5_uint32 from
7759         md5.h.
7760
7761         * lib/md5.c: Use uin32_t.  Fix non-gcc UNALIGNED_P macro.
7762
7763         * lib/md5.h: Use stdint.h and uint32_t.  Doc fix.
7764
7765 2005-10-17  Simon Josefsson  <jas@extundo.com>
7766
7767         * lib/gc.h, gc-libgcrypt.c: Add more hash types/functions.
7768
7769 2005-10-17  Simon Josefsson  <jas@extundo.com>
7770
7771         * lib/gc.h, gc-libgcrypt.c: Add ciphers.
7772
7773 2005-10-17  Simon Josefsson  <jas@extundo.com>
7774
7775         * lib/gc-libgcrypt.c (gc_hmac_sha1): Fix assert.
7776
7777         * lib/gc.h (gc_nonce, gc_pseudo_random, gc_random): Add prototypes.
7778
7779 2005-10-17  Bruno Haible  <bruno@clisp.org>
7780
7781         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Change the return statement so
7782         that it can also be used in a test.
7783
7784 2005-10-16  Bruno Haible  <bruno@clisp.org>
7785
7786         * gnulib-tool (func_emit_tests_Makefile_am): Also define
7787         TESTS_ENVIRONMENT, so that individual tests can augment it.
7788
7789         * gnulib-tool (func_create_testdir): Use an intermediate target for
7790         building $(BUILT_SOURCES). Needed because BUILT_SOURCES can contain
7791         macros, like $(ALLOCA_H), which cannot be passed through the command
7792         line.
7793
7794 2005-10-15  Simon Josefsson  <jas@extundo.com>
7795
7796         * modules/rijndael-tests: New file.
7797
7798         * modules/rijndael: New file.
7799
7800 2005-10-15  Simon Josefsson  <jas@extundo.com>
7801
7802         * m4/rijndael.m4: New file.
7803
7804 2005-10-15  Simon Josefsson  <jas@extundo.com>
7805
7806         * lib/rijndael-api-fst.h, lib/rijndael-api-fst.c: New files.
7807
7808         * lib/rijndael-alg-fst.h, lib/rijndael-alg-fst.c: New files.
7809
7810 2005-10-14  Simon Josefsson  <jas@extundo.com>
7811
7812         * tests/test-arcfour.c: New file.
7813
7814         * modules/arcfour, modules/arcfour-tests: New files.
7815
7816 2005-10-14  Simon Josefsson  <jas@extundo.com>
7817
7818         * m4/arcfour.m4: New file.
7819
7820 2005-10-14  Simon Josefsson  <jas@extundo.com>
7821
7822         * lib/arcfour.h, lib/arcfour.c: New files.
7823
7824 2005-10-14  Roland McGrath  <roland@redhat.com>
7825
7826         Import from libc.  [BZ #1331]
7827         * lib/obstack.h [!__STDC__] (obstack_int_grow_fast): Fix misnamed
7828         macro argument.
7829         Reported by Matej Vela <vela@debian.org>.
7830
7831 2005-10-14  Paul Eggert  <eggert@cs.ucla.edu>
7832
7833         * lib/obstack.c [defined _LIBC && defined USE_IN_LIBIO]: Don't
7834         include <wchar.h>; no longer needed.
7835
7836 2005-10-14  Paul Eggert  <eggert@cs.ucla.edu>
7837
7838         * config/srclist.txt: Add glibc bug 321 for obstack.c, obstack.h.
7839
7840 2005-10-14  Jakub Jelinek  <jakub@redhat.com>
7841         and  Ulrich Drepper  <drepper@redhat.com>
7842
7843         Import from libc.
7844         * lib/obstack.c (print_and_abort) [defined _LIBC]: Use __fxprintf
7845         instead of inline stream orientation test and two separate
7846         function calls.  Pay no attention to USE_IN_LIBIO.
7847
7848 2005-10-13  Simon Josefsson  <jas@extundo.com>
7849
7850         * modules/gc-hmac-md5-tests: New file.
7851
7852         * tests/test-gc-hmac-sha1.c: New file.
7853
7854         * tests/test-gc.c (main): Remove MD5 and HMAC-MD5 tests.
7855
7856         * modules/gc-hmac-md5-tests: New file.
7857
7858         * tests/test-gc-md5.c: New file.
7859
7860         * modules/gc-md5-tests: New file.
7861
7862 2005-10-13  Simon Josefsson  <jas@extundo.com>
7863
7864         * lib/gc-pbkdf2-sha1.c (gc_pbkdf2_sha1): Optimize CEIL computation.
7865         Move memory allocation outside of loop.
7866
7867 2005-10-13  Paul Eggert  <eggert@cs.ucla.edu>
7868
7869         * lib/mkdir-p.c (make_dir_parents): Don't report an error if an
7870         intermediate directory is in a read-only file system.  Problem
7871         reported by Eric Blake.
7872
7873 2005-10-13  Oskar Liljeblad  <oskar@osk.mine.nu>
7874
7875         * modules/human (Depends-on): Depend on xstrtoumax, not xstrtol.
7876
7877 2005-10-12  Simon Josefsson  <jas@extundo.com>
7878
7879         * tests/test-hmac-sha1.c: New file.
7880
7881         * modules/hmac-sha1-tests: New file.
7882
7883         * modules/hmac-sha1: New file.
7884
7885 2005-10-12  Simon Josefsson  <jas@extundo.com>
7886
7887         * modules/gc-sha1: New file.
7888
7889 2005-10-12  Simon Josefsson  <jas@extundo.com>
7890
7891         * modules/gc-pbkdf2-sha1, modules/gc-pbkdf2-sha1-tests: New files.
7892
7893         * tests/test-gc-pbkdf2-sha1.c: New file.
7894
7895 2005-10-12  Simon Josefsson  <jas@extundo.com>
7896
7897         * modules/gc-md5, modules/gc-hmac-md5: New files.
7898
7899         * modules/gc (Files): Remove md5, memxor and hmac files.
7900
7901 2005-10-12  Simon Josefsson  <jas@extundo.com>
7902
7903         * m4/gc-pbkdf2-sha1.m4: New file.
7904
7905         * m4/gc-hmac-sha1.m4: New file.
7906
7907         * m4/gc-sha1: New file.
7908
7909         * m4/hmac-sha1.m4: New file.
7910
7911 2005-10-12  Simon Josefsson  <jas@extundo.com>
7912
7913         * m4/gc-md5.m4, m4/gc-hmac-md5.m4: New files.
7914
7915         * m4/gc.m4: Don't call gl_MD5, gl_MEMXOR or gl_HMAC_MD5.
7916
7917 2005-10-12  Simon Josefsson  <jas@extundo.com>
7918
7919         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Use Gc_rc for return types,
7920         suggested by Bruno Haible <bruno@clisp.org>.
7921
7922 2005-10-12  Simon Josefsson  <jas@extundo.com>
7923
7924         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Support SHA-1.
7925
7926 2005-10-12  Simon Josefsson  <jas@extundo.com>
7927
7928         * lib/gc-pbkdf2-sha1.c: New file.
7929
7930         * lib/gc.h: Add gc_pbkdf2_sha1 prototype.
7931
7932 2005-10-12  Simon Josefsson  <jas@extundo.com>
7933
7934         * lib/gc-libgcrypt.c (gc_hmac_sha1): New function.
7935
7936         * lib/gc-gnulib.c (gc_hmac_sha1): New function.
7937
7938 2005-10-12  Simon Josefsson  <jas@extundo.com>
7939
7940         * lib/gc-gnulib.c: Condition MD5 and HMAC-MD5 use on GC_USE_MD5 and
7941         GC_USE_HMAC_MD5, respectively.
7942
7943         * lib/gc-libgcrypt.c (gc_md5): Fix assert call.
7944         (gc_md5): Fix typo.
7945
7946         * lib/gc.h (gc_hash_buffer): Use gc_hash in prototype.
7947
7948         * lib/gc-libgcrypt.c (gc_hash_buffer): Ditto.
7949
7950         * lib/gc-gnulib.c (gc_hash_buffer): Ditto.
7951
7952 2005-10-12  Bruno Haible  <bruno@clisp.org>
7953
7954         * m4/stdbool.m4 (gl_STDBOOL_H): Define as an alias of AM_STDBOOL_H.
7955         Reported by Stepan Kasal <kasal@ucw.cz>.
7956
7957 2005-10-11  Simon Josefsson  <jas@extundo.com>
7958
7959         * tests/test-crc.c: New file.
7960
7961         * modules/crc, modules/crc-tests: New files.
7962
7963 2005-10-11  Simon Josefsson  <jas@extundo.com>
7964
7965         * m4/crc.m4: New file.
7966
7967 2005-10-11  Simon Josefsson  <jas@extundo.com>
7968
7969         * lib/gc.h: Add gc_hash and gc_hash_buffer.
7970
7971         * lib/gc-gnulib.c (gc_hash_buffer): Add.  Reorder #include's.
7972
7973         * lib/gc-libgcrypt.c (gc_hash_buffer): Add.
7974
7975 2005-10-11  Simon Josefsson  <jas@extundo.com>
7976
7977         * lib/crc.h, lib/crc.c: New files.
7978
7979         * lib/gc.h (gc_hash_buffer): Add doc.
7980
7981 2005-10-11  Bruno Haible  <bruno@clisp.org>
7982
7983         * modules/c-strcasestr: New file.
7984         * MODULES.html.sh (String handling <string.h>): Add c-strcasestr.
7985
7986 2005-10-11  Bruno Haible  <bruno@clisp.org>
7987
7988         * modules/c-strcase: New file.
7989         * MODULES.html.sh (String handling <string.h>): Add c-strcase.
7990
7991 2005-10-11  Bruno Haible  <bruno@clisp.org>
7992
7993         * lib/strcasecmp.c: Include limits.h.
7994         (strcasecmp): Avoid integer overflow on exotic platforms.
7995         * lib/strncasecmp.c: Include limits.h.
7996         (strncasecmp): Avoid integer overflow on exotic platforms.
7997         Reported by Paul Eggert.
7998
7999 2005-10-11  Bruno Haible  <bruno@clisp.org>
8000
8001         * lib/c-strcasestr.h: New file, from GNU gettext.
8002         * lib/c-strcasestr.c: New file, from GNU gettext.
8003
8004 2005-10-11  Bruno Haible  <bruno@clisp.org>
8005
8006         * lib/c-strcase.h: New file, from GNU gettext.
8007         * lib/c-strcasecmp.c: New file, from GNU gettext.
8008         * lib/c-strncasecmp.c: New file, from GNU gettext.
8009
8010 2005-10-10  Paul Eggert  <eggert@cs.ucla.edu>
8011
8012         * modules/mempcpy (License): GPL -> LGPL.
8013         * modules/strchrnul (License): Likewise.
8014         * modules/sysexits (License): Likewise.
8015
8016 2005-10-08  Simon Josefsson  <jas@extundo.com>
8017
8018         * config/srclist.txt: Bug 1423 is closed, but 1439 remains.
8019
8020 2005-10-07  Simon Josefsson  <jas@extundo.com>
8021
8022         * m4/memxor.m4: Remove gl_C_RESTRICT call.
8023
8024 2005-10-06  Simon Josefsson  <jas@extundo.com>
8025
8026         * tests/test-hmac-md5.c: New file.
8027
8028         * modules/hmac-md5-tests: New file.
8029
8030         * modules/hmac-md5: New file.
8031
8032 2005-10-06  Simon Josefsson  <jas@extundo.com>
8033
8034         * m4/hmac-md5.m4: New file.
8035
8036         * m4/memxor.m4: Require gl_C_RESTRICT.
8037
8038 2005-10-06  Simon Josefsson  <jas@extundo.com>
8039
8040         * lib/memxor.c (memxor): Avoid casts and warnings.
8041
8042 2005-10-06  Simon Josefsson  <jas@extundo.com>
8043
8044         * lib/hmac-md5.c: New file.
8045
8046         * lib/hmac.h: New file.
8047
8048 2005-10-06  Paul Eggert  <eggert@cs.ucla.edu>
8049
8050         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check that bool
8051         promotes to int, not unsigned int, to catch the AIX 5.3
8052         compiler bug.
8053
8054 2005-10-05  Simon Josefsson  <jas@extundo.com>
8055
8056         * modules/memxor: New file.
8057
8058         * modules/iconv (Files): Move config.rpath to havelib, it is used
8059         there.
8060
8061         * modules/havelib (Files): Add config.rpath.
8062
8063 2005-10-05  Simon Josefsson  <jas@extundo.com>
8064
8065         * m4/memxor.m4: New file.
8066
8067 2005-10-05  Simon Josefsson  <jas@extundo.com>
8068
8069         * lib/memxor.c (memxor): Fix compiler error.
8070
8071         * lib/md5.h (MD5_DIGEST_SIZE, MD5_BLOCK_SIZE): Add, see also
8072         <http://sourceware.org/bugzilla/show_bug.cgi?id=1423>.
8073
8074         * lib/memxor.h, lib/memxor.c: New files.
8075
8076         * lib/getaddrinfo.h: Don't protect sys/types.h with HAVE_SYS_TYPES_H,
8077         we assume all systems have it, suggested by Jim Meyering
8078         <jim@meyering.net>.  Remove HAVE_SYS_SOCKET_H test too, to see if
8079         any systems lack sys/socket.h; mingw32 is known to lack it, but we
8080         don't support it yet anyway.  Also remove HAVE_NETDB_H test, for
8081         same reasons.
8082
8083 2005-10-05  Simon Josefsson  <jas@extundo.com>
8084
8085         * config/srclist.txt: Add glibc bug 1423 for md5.h.
8086
8087 2005-10-05  Paul Eggert  <eggert@cs.ucla.edu>
8088
8089         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Don't check for
8090         sys/socket.h, netdb.h, sys/types.h; the checks areno longer
8091         needed, since the source code now assumes these .h files.
8092
8093 2005-10-05  Derek Price  <derek@ximbiot.com>
8094
8095         * lib/getdelim.c (SIZE_MAX): New macro, if not already defined.
8096
8097 2005-10-05  Bruno Haible  <bruno@clisp.org>
8098
8099         * modules/stdint (License): Change to LGPL.
8100
8101 2005-10-04  Simon Josefsson  <jas@extundo.com>
8102
8103         * lib/getaddrinfo.h: Move sys/types.h include first, reported by "Mark
8104         D. Baushke" <mdb@gnu.org>.
8105
8106 2005-10-04  Bruno Haible  <bruno@clisp.org>
8107
8108         * lib/verify.h (verify_true): Provide alternative definition for C++.
8109
8110 2005-10-03  Paul Eggert  <eggert@cs.ucla.edu>
8111
8112         * lib/getdelim.c: Include getdelim.h first.  Include <limits.h>.
8113         (SSIZE_MAX): New macro, if not already defined.
8114         (getdelim): Fix buffer overrun on 64-bit hosts with lines longer
8115         than 2 GiB.
8116
8117 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
8118
8119         Sync from coreutils.
8120         * m4/openat.m4 (gl_FUNC_OPENAT): Check for fdopendir.
8121         * m4/ullong_max.m4 (gl_ULLONG_MAX): Simplify so that it merely
8122         defines ULONG_MAX_LT_ULLONG_MAX.  Thomas M.Ott reports that
8123         ULLONG_MAX doesn't work with 2.7.2.1.
8124
8125 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
8126
8127         * modules/xreadlink (Makefile.am): Remove lib_SOURCES.
8128         From Ben Pfaff.
8129
8130         * modules/exclude (Depends-on): Depend on verify.
8131         * modules/strtoimax (Depends-on): Likewise.
8132         * modules/utimecmp (Depends-on): Likewise.
8133
8134 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
8135
8136         * lib/exclude.c: Include verify.h.
8137         (verify): Remove.  All callers changed to use verify.h's version.
8138         * lib/strtoimax.c: Likewise.
8139         * lib/utimecmp.c: Likewis.e
8140
8141         Sync from coreutils.
8142         * lib/.cppi-disable: Add getaddrinfo.h, getdelim.h, getline.h,
8143         getpass.c, mbchar.h, mbuiter.h, strcase.h, strnlen.h, strnlen1.h.
8144         * lib/.cvsignore: Add fts.h, search.h, t-fpending.
8145         * lib/settime.c (settime): Fix { typo in previous patch.  Also, don't
8146         bother returning ENOSYS if settimeofday or stime fails; just let
8147         them return whatever errno they want to return.
8148         * lib/utimens.c: Include unistd.h, for dup2.
8149         (futimens): Fix typo: HAVE_FUTIMESAT was misspelled in an #if.
8150         (futimens) [! HAVE_FUTIMESAT]: If !file, set errno before returning -1.
8151
8152 2005-10-02  Jim Meyering  <jim@meyering.net>
8153
8154         Sync from coreutils.
8155         * m4/utimes.m4 (gl_FUNC_UTIMES): Detect the version of utimes
8156         from glibc-2.2.5 that fails for read-only files.
8157
8158 2005-10-02  Jim Meyering  <jim@meyering.net>
8159
8160         Sync from coreutils.
8161         * lib/fts-cycle.c [HAVE_CONFIG_H]: Include <config.h>.
8162         * lib/openat-die.c: Use `#ifdef HAVE_CONFIG_H', not
8163         `#if HAVE_CONFIG_H'.
8164         * lib/openat.c (fdopendir): Do not define if HAVE_FDOPENDIR.
8165         Remove AT_FDCWD test.
8166         Do not consume the fd unless successful.
8167         * lib/openat.h (fdopendir): Do not define if HAVE_FDOPENDIR.
8168         * lib/settime.c (settime): Move the HAVE_STIME block `up' into an #elif
8169         block, so that we don't even try to compile it if settimeofday is
8170         available.  This works around a compilation failure on OSF1 V5.1,
8171         due to stime requiring a `long int*' while tv_sec is `int'.
8172
8173 2005-10-02  Alfred M. Szmidt  <ams@gnu.org>
8174
8175         Sync from coreutils.
8176         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Compare $gl_have_path...
8177         against `yes', rather than just testing for nonempty.
8178
8179 2005-10-01  Simon Josefsson  <jas@extundo.com>
8180
8181         * m4/getaddrinfo.m4: Include sys/types.h for sys/socket.h, on FreeBSD
8182         and Darwin.
8183
8184         * m4/getaddrinfo.m4: Use AC_GNU_SOURCE, GNU only declare getaddrinfo
8185         as an (POSIX) extension.  Check for sys/types.h, sys/socket.h, and
8186         netdb.h too, needed by getaddrinfo.h.  Check if getaddrinfo,
8187         freeaddrinfo and gai_strerror are declared by the POSIX headers.
8188         Check if struct addrinfo is declared.
8189
8190 2005-10-01  Simon Josefsson  <jas@extundo.com>
8191
8192         * lib/getaddrinfo.h: Protect #include's of sys/socket.h and netdb.h.
8193         Only define struct addrinfo if !HAVE_STRUCT_ADDRINFO.  Protect
8194         AI_* and EAI_* definitions.  Protect function declarations.
8195
8196 2005-10-01  Jim Meyering  <jim@meyering.net>
8197
8198         Sync from coreutils.
8199
8200         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Look for getservbyname in these
8201         libraries [inet nsl socket xnet].  Nelson Beebe reported that with
8202         native cc on Solaris 7, getaddrinfo.c requires -lsocket.
8203         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Check for gethostbyname
8204         in the inet and nsl libraries.  Required on Solaris 5.7.
8205
8206 2005-10-01  Jim Meyering  <jim@meyering.net>
8207
8208         Sync from coreutils.
8209         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Check for gethostbyname
8210         in the inet and nsl libraries.  Required on Solaris 5.7.
8211
8212 2005-10-01  Eric Blake  <ebb9@byu.net>  (tiny change)
8213
8214         * lib/getdelim.c (getdelim): Remove unused variables.
8215
8216 2005-09-29  Paul Eggert  <eggert@cs.ucla.edu>
8217
8218         * lib/xtime.h (XTIME_PRECISION): Now of type int, not long long int,
8219         so that the code works even with ancient cpp.  Portability problem
8220         with GCC 2.7.2.1 reported by Thomas M.Ott.
8221
8222 2005-09-27  Paul Eggert  <eggert@cs.ucla.edu>
8223
8224         * modules/regex (Depends-on): Add strcase.
8225
8226         * modules/gethostname (Licence): Change from GPL to LGPL, since
8227         gethostname.c is a trivial implementation of a standard library
8228         function.
8229         * modules/poll (License): Change from GPL to LGPL, since it's
8230         derived from LGPL code.
8231
8232 2005-09-27  Jim Meyering  <jim@meyering.net>
8233
8234         * lib/getcwd.c: Change #ifdef<TAB>HAVE_CONFIG_H to #ifdef
8235         HAVE_CONFIG_H.
8236
8237         * lib/intprops.h (signed_type_or_expr__): Define.
8238         (INT_STRLEN_BOUND) [__GNUC__]: Use a slightly tighter bound
8239         for unsigned types.
8240
8241 2005-09-26  Paul Eggert  <eggert@cs.ucla.edu>
8242
8243         * lib/verify.h (verify_expr): Remove, replacing with:
8244         (verify_true): New macro that returns true instead of void.
8245         (verify_type__): Remove.
8246         (verify): Use verify_true rather than verify_type__.
8247
8248 2005-09-26  Bruno Haible  <bruno@clisp.org>
8249
8250         * modules/mbchar (Include): Mention that HAVE_WCHAR_H && HAVE_WCTYPE_H
8251         is necessary.
8252         (lib_SOURCES): Remove mbchar.c.
8253         * modules/mbfile (Include): Mention that HAVE_MBRTOWC is necessary.
8254         (Files): Add m4/mbrtowc.m4.
8255         * modules/mbiter: Likewise.
8256         * modules/mbuiter: Likewise.
8257
8258 2005-09-26  Bruno Haible  <bruno@clisp.org>
8259
8260         * m4/mbchar.m4 (gl_MBCHAR): Check for wchar.h and wctype.h. Don't
8261         compile mbchar.c if they are not both present.
8262         * m4/mbfile.m4 (gl_MBFILE): Require gl_FUNC_MBRTOWC.
8263         * m4/mbiter.m4 (gl_MBITER): Likewise.
8264         * m4/strstr.m4 (gl_PREREQ_STRSTR): Use AC_REQUIRE.
8265         * m4/strcasestr.m4 (gl_PREREQ_STRCASESTR): Likewise.
8266         * m4/strcase.m4 (gl_PREREQ_STRCASECMP): Likewise.
8267
8268 2005-09-25  Jim Meyering  <jim@meyering.net>
8269
8270         * modules/inet_ntop (Depends-on): Add socklen, since inet_ntop.c
8271         also uses socklen_t.
8272
8273 2005-09-24  Paul Eggert  <eggert@cs.ucla.edu>
8274
8275         * lib/utimens.c (ENOSYS): Define if not already defined.
8276         (futimens): Support having a null PATH if the file descriptor
8277         is nonnegative.
8278
8279         * lib/regex_internal.h (__GNUC_PREREQ, always_inline, inline, pure):
8280         Remove.
8281         (__attribute): Define to empty unless GCC 3.1 or later.
8282         This works around a core dump on OpenBSD 3.4, which has GCC
8283         2.95.3, which dumps core when given __attribute__(()).  It also
8284         simplifies other tests, since we really don't want to bother with
8285         worrying about which ancient version of GCC supported what.
8286         Original problem reported by Yoann Vandoorselaere, with part of
8287         the fix suggested by Derek Price.
8288
8289 2005-09-24  Jim Meyering  <jim@meyering.net>
8290
8291         * lib/verify.h (verify_type__): Use `unsigned int' as the bitfield type
8292         so we can once again use a positive bitfield width of 1 -- now we
8293         don't have to explain why we were using a bitfield width of 2.
8294
8295 2005-09-23  Paul Eggert  <eggert@cs.ucla.edu>
8296
8297         * m4/regex.m4 (gl_REGEX): If replacing, define regcomp to rpl_regcomp,
8298         and similarly for the other external symbols.  Problem reported
8299         by James Gallager.
8300
8301         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Catch Sun Studio 10u1 on Linux
8302         bug reported by Jim Meyering.
8303
8304         * m4/utimens.m4 (gl_UTIMENS): Check for futimesat.
8305         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Undo previous change;
8306         not needed, since socklen is a prerequisite module.
8307
8308 2005-09-23  Paul Eggert  <eggert@cs.ucla.edu>
8309
8310         * lib/getaddrinfo.c [HAVE_NETINET_IN_H]: Include <netinet/in.h>.
8311         Problem reported by Eric Blake.
8312         (getaddrinfo): Initialize se so that it's not garbage.
8313         Redo internal storage allocation so that it doesn't make unportable
8314         assumptions about alignment.
8315         Fix a memory leak.
8316
8317         * lib/utimens.c (futimens): Use futimesat if available.
8318         Prefer it to futimes since it doesn't have the futimes bug.
8319
8320         * lib/verify.h (GL_CONCAT0, GL_CONCAT): Remove.
8321         (verify): Don't use the __LINE__ trick, as it doesn't work in general.
8322         Instead, declare a function that returns a pointer to an array,
8323         and use verify_type__ to declare the size of the array.
8324         Problem and germ of a solution reported by Bruno Haible.
8325         (verify_type__): Use 2, not 1, for bitfield size, to avoid
8326         a warning with Irix 6.5 cc.  Problem reported by Bruno Haible.
8327
8328 2005-09-23  Jim Meyering  <jim@meyering.net>
8329
8330         Sync from coreutils.
8331         Correct build failure (socklen_t not defined) on at least
8332         mips-sgi-irix6.5 and alphaev67-dec-osf5.1.
8333         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Require gl_SOCKLEN_T.
8334
8335 2005-09-23  Jim Meyering  <jim@meyering.net>
8336
8337         * modules/getaddrinfo (Depends-on): Add socklen.
8338
8339 2005-09-23  Bruno Haible  <bruno@clisp.org>
8340
8341         * tests/test-verify.c: New file.
8342
8343 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
8344
8345         Sync from coreutils.
8346
8347         * modules/argmatch (Depends-on): Add verify.
8348         * modules/getloadavg (Depends-on): Depend on fcntl-safer, not
8349         unistd-safer.
8350         * modules/save-cwd (Depends-on): Likewise.
8351
8352         * modules/openat (Files): Add lib/openat-die.c.
8353         (Depends-on): Remove error, exitfail.
8354         Add dirname.
8355
8356         * modules/verify: New file.
8357         * MODULES.html.sh (Diagnostics <assert.h>): New section,
8358         with "verify" module.
8359
8360 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
8361
8362         Sync from coreutils.
8363
8364         * m4/backupfile.m4, calloc.m4, chown.m4, cloexec.m4, dup2.m4:
8365         * m4/fileblocks.m4, free.m4, ftruncate.m4, getcwd.m4, getpagesize.m4:
8366         * m4/getugroups.m4, group-member.m4, idcache.m4, link-follow.m4:
8367         * m4/mkstemp.m4, mktime.m4, mountlist.m4, nanosleep.m4, pathmax.m4:
8368         * m4/physmem.m4, posixver.m4, putenv.m4, safe-read.m4, same.m4:
8369         * m4/save-cwd.m4, stdio-safer.m4, unistd-safer.m4, unlinkdir.m4:
8370         * m4/userspec.m4, xgetcwd.m4, xreadlink.m4:
8371         Don't bother checking for string.h, stdlib.h, unistd.h.
8372         * m4/fts.m4 (gl_FUNC_FTS_CORE): Don't require
8373         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK; that's now the lstat
8374         module's job.
8375         * m4/jm-macros.m4 (gl_MACROS): Likewise.
8376         * m4/prereq.m4 (gl_PREREQ): Add gl_FUNC_LSTAT.
8377
8378         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): New macro.
8379         (gl_GETDATE): Use it.
8380
8381         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Don't bother checking for unistd.h.
8382
8383 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
8384
8385         Sync from coreutils.
8386
8387         * lib/.cppi-disable: Add regcomp.c, regex_internal.c, regex_internal.h,
8388         stat-time.h.
8389         * lib/argmatch.h: Include verify.h
8390         (ARGMATCH_VERIFY): Use verify rather than rolling our own.
8391         (ARGMATCH_ASSERT): Remove; unused.
8392         * lib/canonicalize.c: Assume STDC_HEADERS.
8393         * lib/exclude.c: Include "strcase.h".
8394         * lib/regex_internal.h [!defined _LIBC]: Likewise.
8395         * lib/getusershell.c: Include stdio--.h rather than stdio.h
8396         and stdio-safer.h.
8397         (getusershell): Call fopen, not fopen_safer.
8398         * lib/save-cwd.c: Include fcntl--.h rather than fcntl.h.
8399         Do not include unistd-safer.h.
8400         (save_cwd): Don't call fd_safer; no longer needed
8401         now that we include fcntl--.h.
8402
8403         * lib/getdate.y (relative_time): New type.
8404         (RELATIVE_TIME_0): New constant.
8405         (parser_control): Use relative_time instead of doing it ourselves.
8406         (%union): Add new relative_time rel member.
8407         (tYEAR_UNIT, tMONTH_UNIT, tHOUR_UNIT, tMINUTE_UNIT, tSEC_UNIT):
8408         Now typeless.
8409         (relunit, relunit_snumber): Now of type rel.
8410         (zone, rel, relunit, get_date): Adjust to above changes.
8411
8412         * lib/getloadavg.c: Include fcntl--.h rather than fcntl.h.
8413         Do not include unistd-safer.h.
8414         (getloadavg): Don't call fd_safer; no longer needed
8415         now that we include fcntl--.h.
8416
8417         * lib/mkdir-p.c (ENOSYS): Define to EEXIST if not defined.
8418         (make_dir_parents): Treat ENOSYS like EEXIST.
8419
8420         Improve quality of diagnostics on restore_cwd failure.
8421         * lib/mkdir-p.h (make_dir): Remove.  All uses replaced by mkdir.
8422         (make_dir_parents): Last arg is now int * (for errno), not bool *.
8423         * lib/mkdir-p.c (make_dir, make_dir_parents): Likewise.
8424         Rewrite "mkdir -p" algorithm to avoid the need for "stat"
8425         each time through the loop.  Do not diagnose restore_cwd failure;
8426         that is the caller's job (and perhaps the caller does not care).
8427
8428         * lib/mkdir-p.c (CLEANUP_CWD, CLEANUP): Remove.
8429         (make_dir_parents): Revamp to avoid need for CLEANUP_CWD, CLEANUP.
8430         If the file already exists but is not a directory, don't bother
8431         to try to make its parents.
8432         Close potential file descriptor leak if we can't chdir("/") (!).
8433         Don't always return true if chdir($PWD) fails; return true only
8434         if the requested action was done successfully (except for the
8435         chdir($PWD)).
8436         Don't log final directory unless we actually made it.
8437         Refactor to avoid duplicate code to fix up permissions.
8438         Don't attempt to fix up parent permissions if chdir($PWD) fails.
8439
8440         * lib/strftime.c (my_strftime): Rewrite the previous change slightly,
8441         to make it a bit faster and (I hope) clearer.
8442         * lib/strftime.c (my_strftime): Add support for %:z, %::z, %:::z.
8443         Fix bug in formats like %2N.
8444
8445         * lib/verify.h: New file.
8446
8447 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
8448
8449         Sync from coreutils.
8450         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Check for netinet/in.h.
8451
8452 2005-09-22  Jim Meyering  <jim@meyering.net>
8453
8454         Sync from coreutils.
8455
8456         * m4/lstat.m4 (gl_FUNC_LSTAT):
8457         Use AC_LIBSOURCES to require lstat.c and lstat.h.
8458         Remove obsolete comment.
8459         * m4/xreadlink.m4: Use AC_LIBSOURCES and AC_LIBOBJ.
8460         * m4/xstrtod.m4: Likewise.
8461
8462         * m4/openat.m4 (gl_FUNC_OPENAT): Add openat-die.c.
8463
8464 2005-09-22  Jim Meyering  <jim@meyering.net>
8465
8466         Sync from coreutils.
8467
8468         * lib/backupfile.c: Use ARGMATCH_VERIFY, just in case.
8469
8470         * lib/posixtm.c (posixtime) [lint]: Initialize *all* of tm0, not just
8471         the .tm_year member, since otherwise gcc-4.0 would now warn about
8472         tm_zone, tm_gmtoff, tm_isdst, tm_yday, tm_wday.
8473
8474         * lib/quotearg.c (quotearg_n_options): Change code to be suboptimal, in
8475         order to avoid an unsuppressible warning from gcc on 64-bit systems.
8476
8477         * lib/getdate.y (get_date): Undo part of the 2005-04-04 change, so that
8478         the command "date -d'2005-03-27 +1 day'" succeeds once again, even
8479         when run in a time zone for which daylight savings time is in effect
8480         for the starting date.
8481
8482         * lib/mkdir-p.c (make_dir_parents): Don't let a failed chdir($PWD)
8483         stop us from restricting permissions of just-created absolute-named
8484         directories.
8485         * lib/mkdir-p.c (CLEANUP_CWD): Return *true*, not false when failing
8486         to restore initial working directory.
8487         * lib/mkdir-p.c (make_dir_parents): New parameter:
8488         different_working_dir, to tell caller if/when we change the working
8489         directory and are unable to return to the initial one.
8490         * lib/mkdir-p.h (make_dir_parents): Update prototype.
8491         * lib/mkdir-p.c (CLEANUP_CWD): Change one more `return 1' to
8492         `return false'.  This fixes a bug introduced on 2004-07-30.
8493
8494         * lib/openat.c (fdopendir): Be sure to close the supplied
8495         file descriptor before returning.  This makes our replacement
8496         implementation a little closer to Solaris's, where fdopendir
8497         ties the file descriptor to the returned DIR* pointer.
8498         * lib/openat.c (unlinkat): New function.
8499         * lib/openat.h (unlinkat): Add prototype.
8500         * lib/openat-die.c (openat_save_fail): Rename from openat_save_die.
8501         (openat_restore_fail): Rename from openat_restore_die.
8502         * lib/openat.c, openat.h: Reflect s/_die/_fail/ renaming.
8503
8504         Provide an alternative to exiting immediately upon save_cwd or
8505         restore_cwd failure.  Now, an application can arrange e.g.,
8506         to perform a longjump in that case.
8507         * lib/openat.c: Include dirname.h.
8508         Use IS_ABSOLUTE_FILE_NAME rather than testing for leading slash.
8509         (rpl_openat, fdopendir, fstatat): Call openat_save_die
8510         and openat_restore_die rather than calling error directly.
8511         Don't include "error.h" or "exitfail.h"; they're no longer needed.
8512
8513         * lib/openat-die.c (openat_save_die, openat_restore_die): New file.
8514         * lib/openat.h (openat_save_die, openat_restore_die): Declare and
8515         define.
8516
8517         * lib/strftime.c [FPRINTFTIME] (fprintftime): Provide a new interface:
8518         size_t fprintftime (FILE *fp, char const *fmt, struct tm const *tm,
8519                             int utc, int nanoseconds);
8520         Background:
8521         date should not have to allocate a megabyte of virtual memory to
8522         handle a format argument like +%1048575T.  When implemented with
8523         strftime, it must allocate such a buffer, use strftime to fill it
8524         in, print it, then free it.
8525         With fprintftime, it simply prints everything and exits.
8526         With no need for memory allocation, that's one fewer way to fail.
8527         * lib/strftime.c (my_strftime): Parse the colons of %:::z *after* the
8528         optional field width, not before, so we accept %9:z, not %:9z.
8529         (my_strftime): Be sure to use L_('x') for literals.
8530
8531         * lib/backupfile.c, lib/canon-host.c, lib/canonicalize.c, lib/chown.c:
8532         * lib/cloexec.c, lib/dup-safer.c, lib/dup2.c, lib/euidaccess.c:
8533         * lib/fd-safer.c, lib/fileblocks.c, lib/fopen-safer.c, lib/fsusage.c:
8534         * lib/ftruncate.c, lib/getcwd.c, lib/getcwd.h, lib/getloadavg.c:
8535         * lib/getopt_.h, lib/getpagesize.h, lib/getugroups.c:
8536         * lib/group-member.c, lib/human.h, lib/idcache.c, lib/mkdir-p.c:
8537         * lib/mountlist.c, lib/nanosleep.c, lib/pathmax.h, lib/physmem.c:
8538         * lib/posixver.c, lib/putenv.c, lib/raise.c, lib/safe-read.c:
8539         * lib/same.c, lib/save-cwd.c, lib/setenv.c, lib/settime.c:
8540         * lib/tempname.c, lib/unlinkdir.c, lib/unsetenv.c, lib/userspec.c:
8541         * lib/xgethostname.c, lib/xreadlink.c:
8542         Assume HAVE_UNISTD_H, i.e., include <unistd.h> unconditionally.
8543
8544         * lib/chown.c, lib/cloexec.c, lib/dup-safer.c, lib/dup2.c:
8545         * lib/fsusage.c, lib/getcwd.c, lib/getloadavg.c, lib/mountlist.c:
8546         * lib/openat.h, lib/save-cwd.c, lib/tempname.c:
8547         Assume HAVE_FCNTL_H (i.e., include <fcntl.h> unconditionally,
8548         and don't include <sys/file.h>).
8549
8550 2005-09-22  Eric Blake  <ebb9@byu.net>  (tiny change)
8551
8552         Sync from coreutils.
8553
8554         * lib/getloadavg.c (getloadavg) [__CYGWIN__]: Port to cygwin.
8555         [__linux__]: Allocate a big enough buffer for /proc/loadavg.
8556         [!LDAV_DONE]: Avoid unused variable warning.
8557
8558 2005-09-21  Bruno Haible  <bruno@clisp.org>
8559
8560         * lib/unicodeio.h (unicode_to_mb): New declaration.
8561
8562 2005-09-20  Derek Price  <derek@ximbiot.com>
8563
8564         * lib/getaddrinfo.c: Don't include <netdb.h> included from
8565         getaddrinfo.h.
8566
8567 2005-09-20  Bruno Haible  <bruno@clisp.org>
8568
8569         * gnulib-tool: Remove trailing slashes from the values specified for
8570         --source-base, --m4-base, --tests-base, --aux-dir.
8571         Suggested by Simon Josefsson <jas@extundo.com>.
8572
8573 2005-09-20  Bruno Haible  <bruno@clisp.org>
8574
8575         * gnulib-tool (func_all_modules, func_modules_transitive_closure,
8576         func_modules_to_filelist, func_import, func_create_testdir): Make all
8577         sorting results locale-independent, so that gnulib-cache.m4 doesn't
8578         change when gnulib-tool is invoked in a different locale.
8579
8580 2005-09-19  Simon Josefsson  <jas@extundo.com>
8581
8582         * m4/socklen.m4: Fix typo.
8583
8584 2005-09-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8585
8586         Use a consistent style for including <config.h>.
8587         * lib/__fpending.c, lib/acl.c, lib/argmatch.c, lib/argp-help.c,
8588         lib/argp-parse.c, lib/argp-pvh.c, lib/backupfile.c, lib/basename.c,
8589         lib/c-stack.c, lib/calloc.c, lib/check-version.c, lib/cloexec.c,
8590         lib/closeout.c, lib/copy-file.c, lib/creat-safer.c, lib/cycle-check.c,
8591         lib/dirfd.c, lib/dirname.c, lib/dup-safer.c, lib/dup2.c,
8592         lib/euidaccess.c, lib/exclude.c, lib/exitfail.c, lib/fatal-signal.c,
8593         lib/fd-safer.c, lib/file-type.c, lib/fileblocks.c, lib/filemode.c,
8594         lib/filenamecat.c, lib/findprog.c, lib/fnmatch.c, lib/fopen-safer.c,
8595         lib/free.c, lib/fsusage.c, lib/ftruncate.c, lib/full-write.c,
8596         lib/fwriteerror.c, lib/getaddrinfo.c, lib/getcwd.c, lib/getdelim.c,
8597         lib/getline.c, lib/getlogin_r.c, lib/getndelim2.c, lib/getnline.c,
8598         lib/getopt1.c, lib/getpass.c, lib/group-member.c, lib/hard-locale.c,
8599         lib/hash-pjw.c, lib/hash.c, lib/human.c, lib/idcache.c,
8600         lib/inet_ntop.c, lib/isdir.c, lib/long-options.c, lib/malloc.c,
8601         lib/memcasecmp.c, lib/memcmp.c, lib/memcoll.c, lib/memcpy.c,
8602         lib/memmove.c, lib/mkdir-p.c, lib/modechange.c, lib/mountlist.c,
8603         lib/open-safer.c, lib/physmem.c, lib/pipe-safer.c, lib/pipe.c,
8604         lib/poll.c, lib/posixver.c, lib/progname.c, lib/progreloc.c,
8605         lib/putenv.c, lib/quote.c, lib/quotearg.c, lib/readline.c,
8606         lib/readlink.c, lib/realloc.c, lib/regex.c, lib/rename.c, lib/rmdir.c,
8607         lib/rpmatch.c, lib/safe-read.c, lib/same.c, lib/save-cwd.c,
8608         lib/savedir.c, lib/sig2str.c, lib/strcspn.c, lib/strerror.c,
8609         lib/stripslash.c, lib/strncasecmp.c, lib/strndup.c, lib/strnlen.c,
8610         lib/strnlen1.c, lib/strsep.c, lib/strstr.c, lib/strtod.c,
8611         lib/strtoimax.c, lib/strtol.c, lib/strverscmp.c, lib/tempname.c,
8612         lib/time_r.c, lib/userspec.c, lib/utimecmp.c, lib/version-etc-fsf.c,
8613         lib/version-etc.c, lib/wait-process.c, lib/xalloc-die.c, lib/xgetcwd.c,
8614         lib/xmalloc.c, lib/xmemcoll.c, lib/xnanosleep.c, lib/xreadlink.c,
8615         lib/xsetenv.c, lib/xstrndup.c, lib/xstrtoimax.c, lib/xstrtol.c,
8616         lib/xstrtoumax.c, lib/yesno.c:
8617         Standardize inclusion of config.h.
8618         * lib/__fpending.h, lib/dirfd.h, lib/getdate.h, lib/human.h,
8619         lib/inttostr.h:  Removed inclusion of config.h from header files.
8620         * lib/inttostr.c:  Adjusted in-tree users.
8621         * lib/timespec.h: Remove superfluous warning to include config.h.
8622         * lib/atexit.c, lib/chdir-long.c, lib/chown.c, lib/fchown-stub.c,
8623         lib/getgroups.c, lib/gettimeofday.c, lib/lchown.c, lib/lstat.c,
8624         lib/mkdir.c, lib/mkstemp.c, lib/nanosleep.c, lib/openat.c, lib/raise.c,
8625         lib/readtokens0.c, lib/readutmp.c, lib/unlinkdir.c: Guard inclusion of
8626         config.h with HAVE_CONFIG_H.
8627
8628 2005-09-19  Jim Meyering  <jim@meyering.net>
8629
8630         * modules/pathmax (License): Change to LGPL.
8631
8632 2005-09-19  Derek Price  <derek@ximbiot.com>
8633
8634         * config/srclist.txt: glibc's glob.h is now in lib/glob-libc.h.
8635
8636 2005-09-19  Bruno Haible  <bruno@clisp.org>
8637
8638         * gnulib-tool (import): Provide default for --tests-base.
8639
8640 2005-09-19  Bruno Haible  <bruno@clisp.org>
8641
8642         * doc/quote.texi: New file, extracted from gnulib.texi.
8643         * doc/ctime.texi: New file, extracted from gnulib.texi.
8644         * doc/inet_ntoa.texi: New file, extracted from gnulib.texi.
8645         * doc/gnulib-tool.texi: New file, extracted from gnulib.texi.
8646         * doc/gnulib.texi: Include them.
8647
8648 2005-09-18  Bruno Haible  <bruno@clisp.org>
8649
8650         Portability fix.
8651         * gnulib-tool (func_readlink): New function.
8652         (func_ln_if_changed): Use it.
8653
8654 2005-09-18  Bruno Haible  <bruno@clisp.org>
8655
8656         * gnulib-tool: Support --with-tests also with --import.
8657         (func_emit_tests_Makefile_am): Use variables $m4base and $testsbase.
8658         (func_import): Use variables $testsbase and $inctests. Emit a
8659         gl_TESTS_BASE form into gnulib-cache.m4. Create $testsbase/Makefile.am.
8660         Remind the user to add AC_CONFIG_FILES($testsdir/Makefile) and
8661         SUBDIRS += $testsdir.
8662         (func_create_testdir): Update.
8663
8664 2005-09-18  Bruno Haible  <bruno@clisp.org>
8665
8666         * gnulib-tool: Revise --dry-run implementation. Use variable $doit
8667         instead of $dry_run.
8668         (func_cp_if_changed, func_mv_if_changed): Remove functions.
8669         (func_ln_if_changed): Don't handle dry-run here.
8670         (func_import): In dry-run mode, detect more precisely which actions
8671         would be performed, and don't use "...ing" verbs.
8672
8673 2005-09-18  Bruno Haible  <bruno@clisp.org>
8674
8675         * gnulib-tool (func_tmpdir): New function, taken from GNU gettextize.
8676         (func_import): Use join on two temporary files instead of three nested
8677         loops, in order to determine which files are new or old.
8678
8679 2005-09-18  Bruno Haible  <bruno@clisp.org>
8680
8681         * gnulib-tool (func_import): Comment out code that spits out the
8682         new files with --dry-run.
8683
8684 2005-09-18  Bruno Haible  <bruno@clisp.org>
8685
8686         * doc/gnulib.texi (Invoking gnulib-tool): 50% rewritten.
8687
8688 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
8689
8690         * lib/stat-time.h: New file.
8691         * lib/timespec.h (ST_TIME_CMP_NS, ST_TIME_CMP, ATIME_CMP, CTIME_CMP):
8692         (MTIME_CMP, TIMESPEC_NS): Remove.  Now done by stat-time.h,
8693         in a different way.
8694         (timespec_cmp): New function.
8695         * lib/utimecmp.c: Include stat-time.h.
8696         (SYSCALL_RESOLUTION): Depend on whether various struct stat
8697         members exist, not on the obsolescent ST_MTIM_NSEC.
8698         (utimecmp): Use the new stat-time functions rater than TIMESPEC_NS.
8699
8700 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
8701
8702         * config/srclist.txt: Remove glibc bug 1033 and uncomment mktime.c.
8703
8704 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
8705
8706         * MODULES.html.sh (File system functions): Add stat-time.
8707         * modules/stat-time: New file.
8708         * modules/timespec (Files): Remove m4/st_mtim.m4; this
8709         is now done in a different way, by the stat-time module.
8710         * modules/utimecmp (Depends-on): Add stat-time.
8711
8712 2005-09-15  Paul Eggert  <eggert@cs.ucla.edu>
8713
8714         * m4/st_mtim.m4: Remove.  Superseded by...
8715         * m4/stat-time.m4: New file.
8716         * m4/timespec.m4 (gl_TIMESPEC): Require AC_C_INLINE.
8717         Do not invoke AC_STRUCT_ST_MTIM_NSEC; no longer needed.
8718
8719 2005-09-15  Derek Price  <derek@ximbiot.com>
8720
8721         * m4/strstr.m4 (gl_FUNC_STRSTR): Don't define strstr here.
8722
8723 2005-09-15  Derek Price  <derek@ximbiot.com>
8724
8725         * lib/regex_internal.h: Blank `pure' for GNUC < 3.
8726         * lib/regex_internal.c: Ditto, using this...
8727         (__GNUC_PREREQ): ...new macro.
8728         * lib/regcomp.c, regexec.c: Blank `always_inline' for GNUC < 3.1
8729         using...
8730         (__GNUC_PREREQ): ...this new macro.
8731
8732         * lib/strstr.h: Include string.h. Define strstr as a macro here.
8733
8734 2005-09-15  Derek Price  <derek@ximbiot.com>
8735             Paul Eggert  <eggert@cs.ucla.edu>
8736
8737         * lib/regcomp.c, regexec.c, regex_internal.c: Back out previous
8738         changes, consolidating in...
8739         * lib/regex_internal.h: ...this file.
8740
8741 2005-09-13  Jim Meyering  <jim@meyering.net>
8742
8743         * lib/canon-host.c: Filter through gnu indent and reword comments
8744         slightly.
8745         * lib/canon-host.h (ch_strerror_r): Tweak cpp indentation and spacing.
8746
8747 2005-09-13  Derek Price  <derek@ximbiot.com>
8748
8749         * lib/canon-host.c (canon_host_r): Set *cherror on memory allocation
8750         failure.
8751         Reported by Jim Meyering  <jim@meyering.net>.
8752
8753 2005-09-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
8754
8755         * lib/base64.c: Typo.
8756         (base64_encode): Put b64str in initialized data section.
8757
8758 2005-09-12  Paul Eggert  <eggert@cs.ucla.edu>
8759
8760         Merge glibc and coreutils changes into gnulib, plus a few
8761         extra fixes.
8762         * lib/md5.c: Use #error rather than a string.
8763         (CYCLIC): New macro, from glibc source.  Use it instead of rol.
8764         * lib/md5.h (__GNUC_PREREQ, __THROW): Define if not defined already.
8765         (__attribute__): Define to empty for non recent-GCC.
8766         (__md5_buffer, __md5_finish_ctx, __md5_init_ctx, __md5_process_block):
8767         (__md5_process_bytes, __md5_read_ctx, __md5_stream):
8768         Renamed from their non-__ counterparts, with new macros replacing
8769         them if not _LIBC.  Add __THROW attribute.
8770         (rol): Remove.
8771         (struct md5_ctx): Align buffer if using GCC.
8772         * lib/sha1.h (struct sha1_ctx): Likewise.
8773         * lib/sha1.c (SWAP): Renamed from the NOTSWAP.  All uses changed.
8774         The old name was backwards.
8775         (NOTSWAP): Remove; not used.
8776         (rol): New macro, moved here from md5.h.
8777         (sha1_process_block): Remove a FIXME that doesn't make sense.
8778
8779 2005-09-12  Derek Price  <derek@ximbiot.com>
8780
8781         Return usable errors from canon-host.
8782         * lib/canon-host.h: New file.
8783         * lib/canon-host.c (canon_host): Wrap...
8784         (canon_host_r): ...this new function, which now relies exclusively on
8785         getaddrinfo.
8786         (ch_strerror): New function.
8787         (last_cherror): New global.
8788         * lib/getaddrinfo.c: Move include of getaddrinfo.h first to test
8789         interface.
8790         (getaddrinfo): Add AI_CANONNAME functionality.  Don't do arithmetic on
8791         void *.
8792         (freeaddrinfo): Free ai->ai_canonname when set.
8793
8794 2005-09-12  Derek Price  <derek@ximbiot.com>
8795
8796         Make canon-host require getaddrinfo.
8797         * m4/canon-host.m4 (gl_CANON_HOST): Remove most dependencies.
8798         AC_LIBSOURCE canon-host.h.  Call...
8799         (gl_PREREQ_CANON_HOST): ...this new function, which requires
8800         gl_GETADDRINFO.
8801         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Compile gai_strerror when needed.
8802
8803 2005-09-12  Derek Price  <derek@ximbiot.com>
8804
8805         * modules/canon-host: Add canon-host.h.  Depend on getaddrinfo.  Make
8806         LGPL.
8807         * modules/getaddrinfo: Add link to opengroup spec.  Depend on strdup.
8808
8809 2005-09-12  Derek Price  <derek@ximbiot.com>
8810
8811         * lib/gai_strerror.c: Include config.h when available.  Include
8812         getaddrinfo.h before other headers to test interface.
8813         Reported by Larry Jones <lawrence.jones@ugs.com>.
8814
8815 2005-09-12  Derek Price  <derek@ximbiot.com>
8816             Paul Eggert  <eggert@cs.ucla.edu>
8817
8818         * modules/glob (Files): Add glob-libc.h.
8819
8820 2005-09-12  Derek Price  <derek@ximbiot.com>
8821             Paul Eggert  <eggert@cs.ucla.edu>
8822
8823         * m4/glob.m4 (gl_GLOB_SUBSTITUTE): AC_LIBSOURCES for glob.c,
8824         glob_.h, glob-libc.h.
8825         (gl_PREREQ_GLOB): Remove _SYS_CDEFS_H hack; no longer needed.
8826
8827 2005-09-12  Derek Price  <derek@ximbiot.com>
8828             Paul Eggert  <eggert@cs.ucla.edu>
8829
8830         * lib/glob-libc.h: Renamed from glob_.h.  The new version is
8831         taken from libc's glob.h, except with '#ifdef __GLOB_GNULIB'
8832         protecting things that should be done only in gnulib contexts.
8833         * lib/glob_.h: New file, containing only the glob things needed for
8834         gnulib.
8835         (GLOB_PREFIX): Remove.  All uses changed to look for __GLOB_GNULIB.
8836         (__GLOB_CONCAT, __GLOB_XCONCAT, __GLOB_ID): Remove; no longer needed.
8837         (glob, globfree, glob_pattern_p): Now defined simply in terms of
8838         rpl_glob, rpl_globfree, rpl_glob_pattern_p.
8839         (__GLOB_GNULIB): New macro, to keep the glob.h changes clearer
8840         and to respect the namespace rules better.
8841
8842 2005-09-08  Simon Josefsson  <jas@extundo.com>
8843
8844         * modules/socklen: New file.
8845
8846 2005-09-08  Simon Josefsson  <jas@extundo.com>
8847
8848         * m4/socklen.m4: New file.
8849
8850 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
8851
8852         * modules/utimens (Files): Add m4/utimbuf.m4, since
8853         m4/utimens.m4 requires gl_CHECK_TYPE_STRUCT_UTIMBUF.
8854         Reported by Sergey Poznyakoff.
8855
8856 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
8857
8858         * lib/glob.c (glob, globfree, __glob_pattern_p): Use old-style function
8859         definitions, since that's the preferred style in glibc.
8860         Fix a minor spacing issue, and update copyright notice to match
8861         glibc's.
8862
8863 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
8864
8865         * config/srclist.txt: Remove glibc bug 1061; it's been fixed.
8866
8867 2005-09-06  Simon Josefsson  <jas@extundo.com>
8868
8869         * lib/getpass.c (getpass): Fix typo, test for HAVE_TCSETATTR and not
8870         TCSETATTR.  Reported by Derek Price <derek@ximbiot.com>.
8871
8872 2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
8873
8874         * lib/regex_internal.h (bitset_not): Add parens to avoid gcc -Wall
8875         warning.
8876
8877 2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
8878
8879         * config/srclist.txt: Add glibc bug 1302.
8880
8881 2005-09-05  Paul Eggert  <eggert@cs.ucla.edu>
8882
8883         Change bitset word type from unsigned int to unsigned long int,
8884         as this has better performance on typical 64-bit hosts.
8885         Port bitset code to hosts with unusual word sizes.
8886         * lib/regcomp.c (build_equiv_class, build_charclass, build_range_exp):
8887         (build_collating_symbol):
8888         Prefer bitset to re_bitset_ptr_t in prototypes, when the actual
8889         argument is a bitset.  This is merely a style issue, but it makes
8890         it clearer that an entire array is expected.
8891         (re_compile_fastmap_iter, init_dfa, init_word_char, optimize_subexps):
8892         * lib/regcomp.c (lower_subexp, parse_bracket_exp, built_charclass_op):
8893         Port to the case where bitset_word is not the same as unsigned int.
8894         * lib/regex_internal.h (bitset_set, bitset_clear, bitset_contain):
8895         (bitset_not, bitset_merge, bitset_set_all, bitset_mask):
8896         Likewise.
8897         * lib/regexec.c (check_dst_limits_calc_pos_1,
8898         check_subexp_matching_top):
8899         (build_trtable, group_nodes_into_DFAstates):
8900         Likewise.
8901         * lib/regcomp.c (re_compile_fastmap_iter, utf8_sb_map, optimize_utf8):
8902         Don't assume that SBC_MAX is a multiple of BITSET_WORD_BITS.
8903         * lib/regex_internal.h (bitset_set_all, bitset_not): Likewise.
8904         * lib/regexec.c (group_nodes_into_DFAstates): Likewise.
8905         * lib/regcomp.c (utf8_sb_map): Don't assume UINT_MAX == 0xffffffff.
8906         * lib/regcomp.c (optimize_subexps, lower_subexp):
8907         Work even if bitset_word has holes in its bitwise representation.
8908         * lib/regex_internal.h (BITSET_WORD_BITS): Likewise.
8909         * lib/regexec.c (check_dst_limits_calc_pos_1,
8910         check_subexp_matching_top):
8911         Likewise.
8912         * lib/regex_internal.c (re_string_reconstruct):
8913         Don't assume UCHAR_MAX == 255.
8914         * lib/regex_internal.h (bitset_set_all): Likewise.
8915         * lib/regex_internal.h (BITSET_WORD_BITS): Renamed from UINT_BITS.
8916         All uses changed.
8917         (BITSET_WORDS): Renamed from BITSET_UINTS.  All uses changed.
8918         (bitset_word): New type, replacing 'unsigned int' for bitset uses.
8919         All uses changed.
8920         (BITSET_WORD_MAX): New macro.
8921         (bitset_set, bitset_clear, bitset_contain, bitset_empty):
8922         (bitset_set_all, bitset_copy):  Now inline functions, not macros.
8923         (bitset_empty, bitset_copy):
8924         Prefer sizeof (bitset) to multiplying it out ourselves.
8925         (bitset_not_merge): Remove; unused.
8926         (bitset_contain): Return bool, not unsigned int with one bit on.
8927         All callers changed.
8928         * lib/regexec.c (build_trtable): Don't assume bitset has no stricter
8929         alignment than re_node_set; do this by defining a new internal
8930         type struct dests_alloc and using it to allocate memory.
8931
8932 2005-09-05  Bruno Haible  <bruno@clisp.org>
8933
8934         * gnulib-tool (func_import): Fix comparison in handling of symbolic
8935         links.
8936
8937 2005-09-04  Martin Lambers <marlam@marlam.de>  (tiny change)
8938
8939         * modules/size_max (Makefile.am): Add size_max.h
8940
8941 2005-09-04  Derek Price  <derek@ximbiot.com>
8942
8943         * gnulib-tool (func_import): Fix reversed $symbolic logic.
8944
8945 2005-09-03  Simon Josefsson  <jas@extundo.com>
8946
8947         * gnulib-tool: Fix typo.
8948
8949 2005-09-03  Simon Josefsson  <jas@extundo.com>
8950
8951         * config/srclist.txt: Add glibc bug 1293.
8952
8953 2005-09-03  Derek Price  <derek@ximbiot.com>
8954
8955         * m4/getlogin_r (gl_GETLOGIN_R): Fix cut & paste error.
8956         From Larry Jones <lawrence.jones@ugs.com>.
8957
8958 2005-09-02  Simon Josefsson  <jas@extundo.com>
8959
8960         * modules/socklen: New file.
8961
8962 2005-09-02  Simon Josefsson  <jas@extundo.com>
8963
8964         * modules/havelib: New module.
8965
8966         * modules/gettext, modules/iconv, modules/lock, modules/readline:
8967         Use havelib.
8968
8969 2005-09-02  Paul Eggert  <eggert@cs.ucla.edu>
8970
8971         Check for arithmetic overflow when calculating sizes, to prevent
8972         some buffer-overflow issues.  These patches are conservative, in the
8973         sense that when I couldn't determine whether an overflow was possible,
8974         I inserted a run-time check.
8975         * lib/regex_internal.h (re_xmalloc, re_xrealloc, re_x2realloc): New
8976         macros.
8977         (SIZE_MAX) [!defined SIZE_MAX]: New macro.
8978         (re_alloc_oversized, re_x2alloc_oversized, re_xnmalloc):
8979         (re_xnrealloc, re_x2nrealloc): New inline functions.
8980         * lib/regcomp.c (init_dfa, analyze, build_range_exp,
8981         parse_bracket_exp):
8982         (build_equiv_class, build_charclass): Check for arithmetic overflow
8983         in size expression calculations.
8984         * lib/regex_internal.c (re_string_realloc_buffers):
8985         (build_wcs_upper_buffer, re_node_set_add_intersect):
8986         (re_node_set_init_union, re_node_set_insert, re_node_set_insert_last):
8987         (re_dfa_add_node, register_state): Likewise.
8988         * lib/regexec.c (re_search_stub, re_copy_regs, re_search_internal):
8989         (prune_impossible_nodes, push_fail_stack, set_regs, check_arrival):
8990         (build_trtable, extend_buffers, match_ctx_init, match_ctx_add_entry):
8991         (match_ctx_add_subtop, match_ctx_add_sublast): Likewise.
8992
8993 2005-09-02  Paul Eggert  <eggert@cs.ucla.edu>
8994
8995         * modules/inttostr (Files): Add m4/inttypes_h.m4, m4/stdint_h.m4,
8996         m4/ulonglong.m4.  Problem reported by Martin Lambers.
8997
8998 2005-09-02  Bruno Haible  <bruno@clisp.org>
8999
9000         Support for lib vs. lib64 distinction on biarch platforms.
9001         * m4/lib-prefix.m4 (AC_LIB_PREPARE_MULTILIB): New macro.
9002         (AC_LIB_PREFIX): Require it. Use $acl_libdirstem instead of 'lib'.
9003         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Likewise.
9004
9005 2005-09-02  Bruno Haible  <bruno@clisp.org>
9006
9007         * gnulib-tool (import): In the other first-use case, provide defaults
9008         as well.
9009
9010 2005-09-02  Bruno Haible  <bruno@clisp.org>
9011
9012         * config/srclist.txt: lib-link.m4 and lib-prefix.m4 currently have
9013         patches not yet found in the latest gettext release.
9014
9015 2005-09-01  Paul Eggert  <eggert@cs.ucla.edu>
9016
9017         * lib/glob.c (GET_LOGIN_NAME_MAX): Renamed from LOGIN_NAME_MAX,
9018         to avoid a collision with bits/local_lim.h in glibc.
9019         All uses changed.  Problem reported by Dmitry V. Levin in
9020         <http://sources.redhat.com/bugzilla/show_bug.cgi?id=1060>.
9021
9022         * lib/regex_internal.c (build_wcs_upper_buffer): Fix portability
9023         bugs in int versus size_t comparisons.
9024         (re_string_context_at): Fix bug where the code assumed that
9025         Idx is signed.
9026
9027         Use bool where appropriate.
9028         * lib/regcomp.c (re_set_fastmap): ICASE arg is bool, not int.
9029         All callers changed.
9030         (calc_eclosure_iter): Likewise, for ROOT arg.
9031         (parse_bracket_element): Likewise, for ACCEPT_HYPHEN arg.
9032         (build_charclass_op): Likewise, for NON_MATCH arg.
9033         * lib/regex_internal.c (re_string_allocate, re_string_construct):
9034         (re_string_construct_common): Likewise, for ICASE arg.
9035         * lib/regexec.c (re_search_2_stub, re_search_stub):
9036         Likewise, for RET_LEN arg.
9037         (check_matching): Likewise, for FL_LONGEST_MATCH arg.
9038         (set_regs): Likewise, for FL_BACKTRACK arg.
9039         * lib/regcomp.c (re_compile_fastmap_iter, optimize_utf8):
9040         (duplicate_node_closure, calc_inveclosure, calc_eclosure):
9041         (calc_eclosure_iter, parse_bracket_exp):
9042         Use bool for internal variables that are booleans.
9043         * lib/regexec.c (re_search_internal, check_matching,
9044         proceed_next_node):
9045         (set_regs, build_sifted_states, sift_states_bkref):
9046         (check_arrival_add_next_nodes, check_arrival_expand_ecl_sub):
9047         (expand_bkref_cache, build_trtable, group_nodes_into_DFAstates):
9048         (find_collation_sequence_value):
9049         Likewise.
9050         * lib/regex_internal.c (re_node_set_insert, re_node_set_insert_last):
9051         (re_node_set_compare):
9052         Return bool, not int. All callers changed.
9053         * lib/regexec.c (check_halt_node_context, check_dst_limits):
9054         (build_trtable, check_node_accept): Likewise.
9055         * lib/regex_internal.h: Include stdbool.h.
9056
9057         Fix bugs uncovered when converting to bool.
9058         * lib/regcomp.c (calc_eclosure_iter): Check for storage allocation
9059         failure instead of charging ahead blindly.
9060         * lib/regex_internal.c (register_state): Likewise.
9061         * lib/regexec.c (re_search_2_stub): Use simpler method than boolean
9062         for freeing internal storage.
9063         (group_nodes_into_DFA_states): Use unsigned int, not int, for
9064         bitset pieces used as boolean, to avoid undefined behavior
9065         on hosts that do int overflow checking.
9066
9067 2005-09-01  Paul Eggert  <eggert@cs.ucla.edu>
9068
9069         * config/srclist.txt: Add glibc bugs 1285-1287.
9070
9071 2005-09-01  Jim Meyering  <jim@meyering.net>
9072
9073         * m4/lchown.m4: Require gl_FUNC_CHOWN, for the definition of
9074         CHOWN_MODIFIES_SYMLINK, which is used by lchown.c.
9075         Require gl_STAT_MACROS, too.
9076
9077 2005-09-01  Bruno Haible  <bruno@clisp.org>
9078
9079         * gnulib-tool (import): In the first-use case, provide defaults.
9080
9081 2005-09-01  Bruno Haible  <bruno@clisp.org>
9082
9083         * gnulib-tool (func_import): Remove the .tmp files.
9084
9085 2005-09-01  Bruno Haible  <bruno@clisp.org>
9086
9087         * gnulib-tool (func_import): Fix handling of symbolic links.
9088
9089 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
9090
9091         On 64-bit hosts (where size_t is 64 bits and int is 32 bits), the
9092         old glibc regex code mishandles strings longer than 2**31 bytes.
9093         This patch fixes this when the regex code is used in gnulib
9094         (i.e., outside glibc).
9095
9096         This patch should not affect the use of the regex code inside
9097         glibc.  No doubt this problem also needs to be handled for glibc
9098         as well, but the result will be an incompatible change to the
9099         glibc ABI, and the old ABI will have to be supported too.  That
9100         can be the the subject for another patch.
9101
9102         * lib/regex.h (_REGEX_LARGE_OFFSETS): New feature-test macro,
9103         governing whether the rest of this patch is active.  By default,
9104         the macro is disabled and the patch has no effect.
9105         (regoff_t) [defined _REGEX_LARGE_OFFSETS]: Define to off_t, not int.
9106         (__re_idx_t, __re_size_t, __re_long_size_t): New types.
9107         (struct re_pattern_buffer, re_search, re_search_2, re_match):
9108         (re_match_2, re_set_registers): Use the new types.
9109         * lib/regex_internal.h (Idx, re_hashval_t): New types.
9110         (REG_MISSING, REG_ERROR, REG_VALID_INDEX, REG_VALID_NONZERO_INDEX):
9111         New macros.
9112         (re_node_set, re_charset_t, re_token_t, re_string_realloc_buffers):
9113         (re_string_context_at, bin_tree_t, re_dfastate_t):
9114         (struct re_state_table_entry, state_array_t, re_sub_match_last_t):
9115         (re_sub_match_top_t, re_match_context_t, re_sift_context_t):
9116         (struct re_fail_stack_ent_t, struct re_fail_stack_t, struct re_dfa_t):
9117         (re_string_char_size_at, re_string_wchar_at):
9118         (re_string_elem_size_at):
9119         Use the new types and macros to port to 64-bit hosts.
9120         Use unsigned types for internal values, so that the code
9121         mostly works even for arrays larger than SSIZE_MAX.
9122         * lib/regcomp.c (re_compile_internal, init_dfa, duplicate_node):
9123         (search_duplicated_node, calc_eclosure_iter, fetch_number):
9124         (parse_reg_exp, parse_branch, parse_expression, parse_sub_exp):
9125         (build_equiv_class, build_charclass, re_compile_fastmap_iter):
9126         (free_dfa_content, create_initial_state, optimize_utf8, analyze):
9127         (optimize_subexps, calc_first, link_nfa_nodes, duplicate_node_closure):
9128         (calc_inveclosure, parse_dup_op, build_range_exp):
9129         (build_collating_symbol, parse_bracket_exp, build_charclass_op):
9130         (fetch_number, create_token_tree, mark_opt_subexp):
9131         Likewise.
9132         * lib/regex_internal.c (re_string_construct_common,
9133         create_ci_newstate):
9134         (create_cd_newstate, re_string_allocate, re_string_construct):
9135         (re_string_realloc_buffers, build_wcs_upper_buffer):
9136         (re_string_skip_chars, build_upper_buffer, re_string_translate_buffer):
9137         (re_string_reconstruct, re_string_peek_byte_case):
9138         (re_string_fetch_byte_case, re_string_context_at):
9139         (re_node_set_alloc, re_node_set_init_1, re_node_set_init_2):
9140         (re_node_set_init_copy, re_node_set_add_intersect):
9141         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
9142         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
9143         (re_node_set_remove_at, re_dfa_add_node, calc_state_hash):
9144         (re_acquire_state, re_acquire_state_context, register_state):
9145         Likewise.
9146         * lib/regex.c (match_ctx_init, match_ctx_add_entry,
9147         search_cur_bkref_entry):
9148         (match_ctx_add_subtop, match_ctx_add_sublast, sift_ctx_init):
9149         (re_search_internal, re_search_2_stub, re_search_stub)
9150         (re_copy_regs, check_matching, check_halt_state_context, update_regs):
9151         (push_fail_stack, sift_states_iter_mb, build_sifted_states):
9152         (update_cur_sifted_state, check_dst_limits):
9153         (check_dst_limits_calc_pos_1, check_dst_limits_calc_pos):
9154         (check_subexp_limits, sift_states_bkref, merge_state_array):
9155         (check_subexp_matching_top, get_subexp, get_subexp_sub):
9156         (find_subexp_node, check_arrival, check_arrival_add_next_nodes):
9157         (check_arrival_expand_ecl, check_arrival_expand_ecl_sub):
9158         (expand_bkref_cache, check_node_accept_bytes):
9159         (group_nodes_into_DFAstates, check_node_accept, regexec, re_match):
9160         (re_search, re_match_2, re_search_2, prune_impossible_nodes):
9161         (acquire_init_state_context, check_halt_node_context):
9162         (proceed_next_node, pop_fail_stack, set_regs, free_fail_stack_return):
9163         (sift_states_backward, clean_state_log_if_needed):
9164         (sub_epsilon_src_nodes, add_epsilone_src_nodes, merge_state_with_log):
9165         (find_recover_state, transit_state_sb, transit_state_mb):
9166         (transit_state_bkref, build_trtable, match_ctx_clean):
9167         Likewise.
9168         * lib/regcomp.c (parse_dup_op): Add an extra test if Idx is unsigned,
9169         to work around an assumption that REG_MISSING is negative.
9170
9171         * lib/regcomp.c (re_comp) [defined _REGEX_RE_COMP || defined _LIBC]:
9172         (seek_collating_symbol_entry) [defined _LIBC]:
9173         (lookup_collation_sequence_value) [defined _LIBC]:
9174         (build_range_exp, build_collating_symbol) [defined _LIBC]:
9175         Use prototypes rather than old-style function definitions.
9176         * lib/regexec.c (re_exec) [defined _REGEX_RE_COMP || defined _LIBC]:
9177         (transit_state_sb) [0]:
9178         (find_collation_sequence_value) [defined _LIBC]: Likewise.
9179
9180         * lib/regexec.c (re_search_internal): Simplify update of rm_so and
9181         rm_eo.
9182
9183         * lib/regcomp.c (re_compile_fastmap_iter, init_dfa, init_word_char):
9184         (optimize_subexps, lower_subexp):
9185         Don't assume 1<<31 has defined behavior on hosts with 32-bit int,
9186         since the signed shift might overflow.  Use 1u<<31 instead.
9187         * lib/regex_internal.h (bitset_set, bitset_clear, bitset_contain):
9188         Likewise.
9189         * lib/regexec.c (check_dst_limits_calc_pos_1,
9190         check_subexp_matching_top): Likewise.
9191
9192         * lib/regcomp.c (optimize_subexps, lower_subexp):
9193         Use CHAR_BIT rather than 8, for clarity.
9194         * lib/regexec.c (check_dst_limits_calc_pos_1):
9195         (check_subexp_matching_top): Likewise.
9196         * lib/regcomp.c (init_dfa): Make table_size unsigned, so that we don't
9197         have to worry about portability issues when shifting it left.
9198         Remove no-longer-needed test for table_size > 0.
9199         * lib/regcomp.c (parse_sub_exp): Do not shift more bits than there are
9200         in a word, as the resulting behavior is undefined.
9201         * lib/regexec.c (check_dst_limits_calc_pos_1): Likewise;
9202         in one case, a <= should have been an <, and in another case the
9203         whole test was missing.
9204         * lib/regex_internal.h (BYTE_BITS): Remove.  All uses changed to
9205         the standard name CHAR_BIT.
9206         * lib/regexec.c (match_ctx_add_entry): Don't assume that ~0 == -1;
9207         this is not true on one's complement and signed-magnitude hosts.
9208
9209         * lib/regex_internal.h (re_sub_match_top_t): Remove unused member
9210         next_last_offset.
9211         (struct re_dfa_t): Remove unused member states_alloc.
9212         * lib/regcomp.c (init_dfa): Don't initialize unused members.
9213
9214 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
9215
9216         * m4/regex.m4 (gl_REGEX): Require AC_SYS_LARGEFILE, Define
9217         _REGEX_LARGE_OFFSETS).  Test for regoff_t/off_t bug in 64-bit
9218         and large-file glibc and in 32-bit large-file Solaris.
9219
9220 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
9221
9222         * lib/regex_internal.c (re_string_reconstruct): Don't assume buffer
9223         lengths fit in regoff_t; this isn't true if regoff_t is the same
9224         width as size_t.
9225         * lib/regex.c (re_search_internal): 5th arg is LAST_START
9226         (= START + RANGE) instead of RANGE.  This avoids overflow
9227         problems when regoff_t is the same width as size_t.
9228         All callers changed.
9229         (re_search_2_stub): Check for overflow when adding the
9230         sizes of the two strings.
9231         (re_search_stub): Check for overflow when adding START
9232         to RANGE; if it occurs, substitute the extreme value.
9233
9234 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
9235
9236         * config/srclist.txt: Add glibc bugs 1273, 1278-1282, 1284.
9237
9238 2005-08-31  Jim Meyering  <jim@meyering.net>
9239
9240         * lib/regcomp.c (search_duplicated_node): Make first pointer arg
9241         a pointer-to-const.
9242         * lib/regex_internal.c (create_ci_newstate, create_cd_newstate):
9243         (register_state): Likewise.
9244         * lib/regexec.c (search_cur_bkref_entry, check_dst_limits):
9245         (check_dst_limits_calc_pos_1, check_dst_limits_calc_pos):
9246         (group_nodes_into_DFAstates): Likewise.
9247
9248 2005-08-31  Jim Meyering  <jim@meyering.net>
9249
9250         * check-module: Add a FIXME comment.
9251
9252 2005-08-31  Eric Blake  <ebb9@byu.net>
9253
9254         * modules/unistd-safer (Files): Add unistd--.h.
9255         * modules/stdio-safer (Files): Add stdio--.h.
9256
9257 2005-08-31  Derek Price  <derek@ximbiot.com>
9258
9259         * lib/getdelim.c (getdelim): Return EOF on EOF.
9260         Reported by Larry Jones <lawrence.jones@ugs.com>.
9261
9262 2005-08-31  Bruno Haible  <bruno@clisp.org>
9263
9264         Avoid unnecessary diffs in the generated lib/Makefile.am.
9265         * gnulib-tool (func_emit_lib_Makefile_am): Don't write the cmd into
9266         the generated files.
9267         (func_import): Don't set cmd.
9268
9269 2005-08-31  Bruno Haible  <bruno@clisp.org>
9270
9271         * lib/strstr.c: Include <stddef.h>, for NULL.
9272         * lib/strcasestr.c: Likewise.
9273         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
9274
9275 2005-08-31  Bruno Haible  <bruno@clisp.org>
9276
9277         * gnulib-tool: New option --macro-prefix.
9278         (func_import): Use macro_prefix.
9279         (import): Handle option --macro-prefix.
9280
9281 2005-08-31  Bruno Haible  <bruno@clisp.org>
9282
9283         * gnulib-tool (import): Rename most ac_* variables to cached_*.
9284         Also use new variables cached_lgpl, cached_libtool.
9285
9286 2005-08-31  Bruno Haible  <bruno@clisp.org>
9287
9288         * gnulib-tool (func_import): Require AC_GNU_SOURCE etc. instead of
9289         always instantiating them.
9290
9291 2005-08-31  Bruno Haible  <bruno@clisp.org>
9292
9293         * gnulib-tool (func_import): Read the previous cached settings
9294         from gnulib-cache.m4 and gnulib-comp.m4. Remove files that were
9295         earlier added by gnulib but are now dropped. Warn when a gnulib file
9296         overwrites a non-gnulib file.
9297
9298 2005-08-31  Bruno Haible  <bruno@clisp.org>
9299
9300         * gnulib-tool (func_import): Generate two files gnulib-cache.m4 and
9301         gnulib-comp.m4 instead of a single gnulib.m4, to make it easy for
9302         projects that don't keep autogenerated files in CVS. Put into
9303         actioncmd only the specified modules, not the transitive closure.
9304
9305 2005-08-31  Bruno Haible  <bruno@clisp.org>
9306
9307         * gnulib-tool (func_import): Fix defaulting of $libname and $libtool.
9308         Create directories that shall be filled.
9309         (import): Don't look for gl_* macros in configure.ac. Recurse across
9310         all directories containing a gnulib-cache.m4 files, if meaningful.
9311
9312 2005-08-31  Bruno Haible  <bruno@clisp.org>
9313
9314         * gnulib-tool (func_import): Emit also a stub for gl_LIBTOOL.
9315         (import): Set seen_libtool when we see gl_LIBTOOL.
9316
9317 2005-08-31  Bruno Haible  <bruno@clisp.org>
9318
9319         * gnulib-tool (func_import): Also copy m4/gnulib-tool.m4. Omit
9320         declaration macro definitions from generated gnulib.m4.
9321
9322 2005-08-30  "Oskar Liljeblad" <oskar@osk.mine.nu>
9323
9324         * lib/iconvme.h: Add prototype for iconv_alloc.
9325
9326 2005-08-29  Simon Josefsson  <jas@extundo.com>
9327
9328         * lib/iconvme.c: Fix errno.
9329
9330 2005-08-29  Bruno Haible  <bruno@clisp.org>
9331
9332         * gnulib-tool: Enclose all occurrences of $destdir in "...", so
9333         that it works when the directory contains spaces.
9334
9335 2005-08-29  Bruno Haible  <bruno@clisp.org>
9336
9337         * gnulib-tool (import): Avoid unnecessary spaces in $avoidlist.
9338
9339 2005-08-29  Bruno Haible  <bruno@clisp.org>
9340
9341         * gnulib-tool (func_import): Emit more comments into gnulib.m4.
9342         Emit more advice.
9343
9344 2005-08-29  Bruno Haible  <bruno@clisp.org>
9345         and Stepan Kasal  <kasal@ucw.cz>
9346
9347         * check-module: If more parameters are given, check each of them
9348         separately; add more exceptions, as noted by Jim Meyering.
9349         (check_module): New procedure.
9350         (%exempt_header): Now contains all exceptions.
9351
9352 2005-08-29  Ben Pfaff  <blp@cs.stanford.edu>
9353
9354         * modules/byteswap (Makefile.am): Fix rule to not assume GNU make.
9355
9356 2005-08-29  "Oskar Liljeblad" <oskar@osk.mine.nu>
9357
9358         * lib/iconvme.c: Split iconv_string into iconv_alloc.
9359
9360 2005-08-28  Bruno Haible  <bruno@clisp.org>
9361
9362         * m4/gnulib-tool.m4: New file.
9363
9364 2005-08-27  Jim Meyering  <jim@meyering.net>
9365
9366         * modules/unistd-safer (Files): Add pipe-safer.c.
9367         * modules/fcntl-safer (Files): Add creat-safer.c.
9368
9369 2005-08-27  Jim Meyering  <jim@meyering.net>
9370
9371         * m4/stdlib-safer.m4: New file.  From coreutils.
9372         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Add stdio--.h.
9373         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Add creat-safer.c to the
9374         AC_LIBSOURCES list and arrange to compile it via AC_LIBOBJ.
9375         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Likewise, add pipe-safer.c.
9376         Add pipe-safer.c and unistd--.h to the AC_LIBSOURCES list.
9377
9378 2005-08-27  Jim Meyering  <jim@meyering.net>
9379
9380         * lib/fopen-safer.c: Merge minor changes from coreutils.
9381         * lib/dup-safer.c: Likewise.
9382         * lib/fd-safer.c: Likewise.
9383
9384         Merge from coreutils.
9385         * lib/stdio--.h: New file.
9386         * lib/stdlib--.h: New file.
9387         * lib/mkstemp-safer.c: New file.
9388
9389         GNU tar needs these.
9390         * lib/pipe-safer.c: New file.
9391         * lib/creat-safer.c: New file.
9392         * lib/fcntl--.h (creat): Define to creat_safer.
9393         * lib/fcntl-safer.h: Include <sys/types.h> and declare creat_safer.
9394         * lib/unistd--.h (pipe): Define to pipe_safer.
9395         * lib/unistd-safer.h: Declare pipe_safer.
9396
9397 2005-08-26  Simon Josefsson  <jas@extundo.com>
9398
9399         * lib/getpass.c: Use _WIN32 instead of WIN32, suggested by Bruno
9400         Haible <bruno@clisp.org>.
9401
9402 2005-08-26  Paul Eggert  <eggert@cs.ucla.edu>
9403
9404         * lib/regex_internal.h: Remove all references to
9405         RE_NO_INTERNAL_PROTOTYPES; no longer neeeded now that we assume C89
9406         or better.
9407         (bitset_not, bitset_merge, bitset_not_merge):
9408         (bitset_mask, re_string_allocate, re_string_construct):
9409         (re_string_reconstruct, re_string_destruct, re_string_elem_size_at):
9410         (re_string_char_size_at, re_string_wchar_at, re_string_peek_byte_case):
9411         (re_string_fetch_byte_case, re_node_set_alloc, re_node_set_init_1):
9412         (re_node_set_init_2, re_node_set_init_copy, re_node_set_add_intersect):
9413         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
9414         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
9415         (re_node_set_remove_at, re_dfa_add_node, re_acquire_state):
9416         (re_acquire_state_context):
9417         Remove unnecessary forward decls.
9418         (re_string_char_size_at, re_string_wchar_at, re_string_elem_size_at):
9419         Put __attribute at function definition,
9420         now that the function decl has been removed.
9421         * lib/regex_internal.c (re_string_peek_byte_case):
9422         (re_string_fetch_byte_case, re_node_set_compare, re_node_set_contains):
9423         Likewise.
9424
9425 2005-08-25  Stepan Kasal  <kasal@ucw.cz>
9426
9427         * m4/regex.m4: Add AC_PREREQ(2.50).
9428         (gl_REGEX): If --with-included-regex was given, skip the autodetection.
9429
9430 2005-08-25  Simon Josefsson  <jas@extundo.com>
9431
9432         * m4/getpass.m4: Check for termios.h, tcgetattr, tcsetattr, and
9433         __fsetlocking.
9434
9435 2005-08-25  Simon Josefsson  <jas@extundo.com>
9436
9437         * lib/getpass.c: Add WIN32 implementation.  Conditionalize use of
9438         termios.h, tcgetattr, tcsetattr and __fsetlocking.  Remove some
9439         GLIBC specific code.
9440
9441 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
9442
9443         Make regex safe for g++.  This fixes one real bug (an "err"
9444         that should have been "*err").  g++ problem reported by
9445         Sam Steingold.
9446         * lib/regex_internal.h (re_calloc): New macro, consistent with
9447         re_malloc etc.  All callers of calloc changed to use re_calloc.
9448         * lib/regex_internal.c (build_wcs_upper_buffer): Return reg_errcode_t,
9449         not int.  All callers changed.
9450         * lib/regcomp.c (re_compile_fastmap_iter): Don't use
9451         alloca (mb_cur_max); just use an array of size MB_LEN_MAX.
9452         * lib/regexec.c (push_fail_stack): Use re_realloc, not realloc.
9453         (find_recover_state): Change "err" to "*err"; this fixes what
9454         appears to be a real bug.
9455         (check_arrival_expand_ecl_sub): Be consistent about reg_errcode_t
9456         versus int.
9457
9458 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
9459
9460         * modules/regex (Depends-on): Add malloc, since the code
9461         assumes that !malloc(0) means failure.
9462
9463 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
9464
9465         * lib/regexec.c (set_regs): Don't alloca with an unbounded size.
9466
9467         alloca modernization/simplification for regex.
9468         * lib/regex.c: Remove portability cruft for alloca.  This no longer
9469         needs to be at the start of the file, and can be moved into
9470         regex_internal.h and simplified.
9471         * lib/regex_internal.h: Include <alloca.h>.
9472         (__libc_use_alloca) [!defined _LIBC]: New macro.
9473         * lib/regexec.c (build_trtable): Remove "#ifdef _LIBC", since the code
9474         now works outside glibc.
9475
9476 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
9477
9478         * config/srclist.txt: Add glibc bugs 1241, 1245.
9479
9480 2005-08-25  Jim Meyering  <jim@meyering.net>
9481
9482         * lib/open-safer.c: Include <config.h>.
9483         Otherwise, we'd lose LARGEFILE support in any file using
9484         e.g. "fcntl--.h"
9485
9486 2005-08-25  Bruno Haible  <bruno@clisp.org>
9487
9488         * m4/minmax.m4: Require autoconf 2.52.
9489         (gl_MINMAX_IN_HEADER): Add comments. Use m4_pushdef/m4_popdef instead
9490         of define/undefine. Use AS_TR_SH and AS_TR_CPP as more robust
9491         alternatives of translit over the alphabet.
9492         Based on a patch from Stepan Kasal <kasal@ucw.cz>.
9493
9494 2005-08-24  Simon Josefsson  <jas@extundo.com>
9495
9496         * tests/test-getpass.c: New file.
9497
9498 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
9499
9500         * m4/regex.m4 (gl_REGEX): Use POSIX-compliant spellings when testing
9501         for GNU regex features.
9502
9503 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
9504
9505         * lib/regcomp.c (regerror): 2nd arg is 'restrict', as per POSIX.
9506         * lib/regex.h (regerror): Likewise.
9507
9508         * lib/regex.c: Do not include <sys/types.h>, as POSIX no longer
9509         requires this.  (The code never needed it.)
9510
9511         * lib/regcomp.c, regex_internal.c, regex_internal.h, regexec.c:
9512         All uses of recently-renamed identifiers changed to use the new,
9513         POSIX-compliant names.  The code will build and run just fine
9514         without these changes, but it's better to eat our own dog food
9515         and use the standard-conforming names.
9516
9517         * lib/regex.h: Fix a multitude of POSIX name space violations.
9518         These changes have an effect only for programs that define
9519         _POSIX_C_SOURCE, _POSIX_SOURCE, or _XOPEN_SOURCE; they
9520         do not change anything for programs compiled in the normal way.
9521         Also, there is no effect on the ABI.
9522
9523         (_REGEX_SOURCE): New macro.
9524         Do not include <stddef.h> if _XOPEN_SOURCE and VMS are both
9525         defined and _GNU_SOURCE is not; this fixes a name space violation.
9526
9527         Rename the following macros to obey POSIX requirements.
9528         The old names are still visible as macros if _REGEX_SOURCE is defined.
9529         (REG_BACKSLASH_ESCAPE_IN_LISTS): renamed from
9530         RE_BACKSLASH_ESCAPE_IN_LISTS.
9531         (REG_BK_PLUS_QM): renamed from RE_BK_PLUS_QM.
9532         (REG_CHAR_CLASSES): renamed from RE_CHAR_CLASSES.
9533         (REG_CONTEXT_INDEP_ANCHORS): renamed from RE_CONTEXT_INDEP_ANCHORS.
9534         (REG_CONTEXT_INDEP_OPS): renamed from RE_CONTEXT_INDEP_OPS.
9535         (REG_CONTEXT_INVALID_OPS): renamed from RE_CONTEXT_INVALID_OPS.
9536         (REG_DOT_NEWLINE): renamed from RE_DOT_NEWLINE.
9537         (REG_DOT_NOT_NULL): renamed from RE_DOT_NOT_NULL.
9538         (REG_HAT_LISTS_NOT_NEWLINE): renamed from RE_HAT_LISTS_NOT_NEWLINE.
9539         (REG_INTERVALS): renamed from RE_INTERVALS.
9540         (REG_LIMITED_OPS): renamed from RE_LIMITED_OPS.
9541         (REG_NEWLINE_ALT): renamed from RE_NEWLINE_ALT.
9542         (REG_NO_BK_BRACES): renamed from RE_NO_BK_BRACES.
9543         (REG_NO_BK_PARENS): renamed from RE_NO_BK_PARENS.
9544         (REG_NO_BK_REFS): renamed from RE_NO_BK_REFS.
9545         (REG_NO_BK_VBAR): renamed from RE_NO_BK_VBAR.
9546         (REG_NO_EMPTY_RANGES): renamed from RE_NO_EMPTY_RANGES.
9547         (REG_UNMATCHED_RIGHT_PAREN_ORD): renamed from
9548         RE_UNMATCHED_RIGHT_PAREN_ORD.
9549         (REG_NO_POSIX_BACKTRACKING): renamed from RE_NO_POSIX_BACKTRACKING.
9550         (REG_NO_GNU_OPS): renamed from RE_NO_GNU_OPS.
9551         (REG_DEBUG): renamed from RE_DEBUG.
9552         (REG_INVALID_INTERVAL_ORD): renamed from RE_INVALID_INTERVAL_ORD.
9553         (REG_IGNORE_CASE): renamed from RE_ICASE.  This renaming is a bit
9554         unusual, since we can't clash with the POSIX REG_ICASE.
9555         (REG_CARET_ANCHORS_HERE): renamed from RE_CARET_ANCHORS_HERE.
9556         (REG_CONTEXT_INVALID_DUP): renamed from RE_CONTEXT_INVALID_DUP.
9557         (REG_NO_SUB): renamed from RE_NO_SUB.
9558         (REG_SYNTAX_EMACS): renamed from RE_SYNTAX_EMACS.
9559         (REG_SYNTAX_AWK): renamed from RE_SYNTAX_AWK.
9560         (REG_SYNTAX_GNU_AWK): renamed from RE_SYNTAX_GNU_AWK.
9561         (REG_SYNTAX_POSIX_AWK): renamed from RE_SYNTAX_POSIX_AWK.
9562         (REG_SYNTAX_GREP): renamed from RE_SYNTAX_GREP.
9563         (REG_SYNTAX_EGREP): renamed from RE_SYNTAX_EGREP.
9564         (REG_SYNTAX_POSIX_EGREP): renamed from RE_SYNTAX_POSIX_EGREP.
9565         (REG_SYNTAX_ED): renamed from RE_SYNTAX_ED.
9566         (REG_SYNTAX_SED): renamed from RE_SYNTAX_SED.
9567         (_REG_SYNTAX_POSIX_COMMON): renamed from _RE_SYNTAX_POSIX_COMMON.
9568         (REG_SYNTAX_POSIX_BASIC): renamed from RE_SYNTAX_POSIX_BASIC.
9569         (REG_SYNTAX_POSIX_MINIMAL_BASIC): renamed from
9570         RE_SYNTAX_POSIX_MINIMAL_BASIC.
9571         (REG_SYNTAX_POSIX_EXTENDED): renamed from RE_SYNTAX_POSIX_EXTENDED.
9572         (REG_SYNTAX_POSIX_MINIMAL_EXTENDED): renamed from
9573         RE_SYNTAX_POSIX_MINIMAL_EXTENDED.
9574         (REG_DUP_MAX): renamed from RE_DUP_MAX.  No need to undef it.
9575         (REG_UNALLOCATED): Renamed from REGS_UNALLOCATED.
9576         (REG_REALLOCATE): Renamed from REGS_REALLOCATE.
9577         (REG_FIXED): Renamed from REGS_FIXED.
9578         (REG_NREGS): Renamed from RE_NREGS.
9579
9580         (REG_ICASE, REG_NEWLINE, REG_NOSUB): Do not depend on the values
9581         of other REG_* macros, since POSIX says the user is allowed to
9582         #undef these macros selectively.
9583
9584         (reg_errcode_t): Update comment stating what other tables need
9585         to be consistent.
9586
9587         Rename the following enum values to obey POSIX requirements.
9588         The old names are still visible as macros.
9589         (_REG_ENOSYS): Renamed from REG_ENOSYS.  Define even if _XOPEN_SOURCE
9590         is not defined, since GNU is supposed to be a superset of POSIX as
9591         much as possible, and since we want reg_errcode_t to be a signed
9592         type for implementation consistency.
9593         (_REG_NOERROR): Renamed from REG_NOERROR.
9594         (_REG_NOMATCH): Renamed from REG_NOMATCH.
9595         (_REG_BADPAT): Renamed from REG_BADPAT.
9596         (_REG_ECOLLATE): Renamed from REG_ECOLLATE.
9597         (_REG_ECTYPE): Renamed from REG_ECTYPE.
9598         (_REG_EESCAPE): Renamed from REG_EESCAPE.
9599         (_REG_ESUBREG): Renamed from REG_ESUBREG.
9600         (_REG_EBRACK): Renamed from REG_EBRACK.
9601         (_REG_EPAREN): Renamed from REG_EPAREN.
9602         (_REG_EBRACE): Renamed from REG_EBRACE.
9603         (_REG_BADBR): Renamed from REG_BADBR.
9604         (_REG_ERANGE): Renamed from REG_ERANGE.
9605         (_REG_ESPACE): Renamed from REG_ESPACE.
9606         (_REG_BADRPT): Renamed from REG_BADRPT.
9607         (_REG_EEND): Renamed from REG_EEND.
9608         (_REG_ESIZE): Renamed from REG_ESIZE.
9609         (_REG_ERPAREN): Renamed from REG_ERPAREN.
9610         (REG_ENOSYS, REG_NOERROR, REG_NOMATCH, REG_BADPAT, REG_ECOLLATE):
9611         (REG_ECTYPE, REG_EESCAPE, REG_ESUBREG, REG_EBRACK, REG_EPAREN):
9612         (REG_EBRACE, REG_BADBR, REG_ERANGE, REG_ESPACE, REG_BADRPT, REG_EEND):
9613         (REG_ESIZE, REG_ERPAREN): Now macros, not enum constants.
9614
9615         (_REG_RE_NAME, _REG_RM_NAME): New macros.
9616         (REG_TRANSLATE_TYPE): Renamed from RE_TRANSLATE_TYPE.  All uses
9617         changed.  But support the old name if the new one is not defined
9618         and if _REGEX_SOURCE.
9619
9620         Change the following member names in struct re_pattern_buffer.
9621         The old names are still supported if !_REGEX_SOURCE.
9622         The new names are always supported, regardless of _REGEX_SOURCE.
9623         (re_buffer): Renamed from buffer.
9624         (re_allocated): Renamed from allocated.
9625         (re_used): Renamed from used.
9626         (re_syntax): Renamed from syntax.
9627         (re_fastmap): Renamed from fastmap.
9628         (re_translate): Renamed from translate.
9629         (re_can_be_null): Renamed from can_be_null.
9630         (re_regs_allocated): Renamed from regs_allocated.
9631         (re_fastmap_accurate): Renamed from fastmap_accurate.
9632         (re_no_sub): Renamed from no_sub.
9633         (re_not_bol): Renamed from not_bol.
9634         (re_not_eol): Renamed from not_eol.
9635         (re_newline_anchor): Renamed from newline_anchor.
9636
9637         Change the following member names in struct re_registers.
9638         The old names are still supported if !_REGEX_SOURCE.
9639         The new names are always supported, regardless of _REGEX_SOURCE.
9640         (rm_num_regs): Renamed from num_regs.
9641         (rm_start): Renamed from start.
9642         (rm_end): Renamed from end.
9643
9644         (re_set_syntax, re_compile_pattern, re_compile_fastmap):
9645         (re_search, re_search_2, re_match, re_match_2, re_set_registers):
9646         Prepend __ to parameter names.
9647
9648         Undo yesterday's changes.
9649
9650 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
9651
9652         * config/srclist.txt: Remove glibc bug 1233 and add 1236, which
9653         supersedes it. Add glibc bugs 1237, 1238, 1240.  Comment out
9654         lib/regex.c.
9655
9656 2005-08-24  Jim Meyering  <jim@meyering.net>
9657
9658         Sync from coreutils.
9659         * m4/fcntl-safer.m4: New file.
9660
9661         * m4/xgetcwd.m4: Use AC_LIBSOURCES and AC_LIBOBJ to indicate source
9662         and object files for this module.
9663
9664 2005-08-24  Jim Meyering  <jim@meyering.net>
9665
9666         Sync from coreutils.
9667         * lib/fcntl--.h, lib/fcntl-safer.h, lib/open-safer.c: New files.
9668
9669 2005-08-24  Jim Meyering  <jim@meyering.net>
9670
9671         * modules/xgetcwd (Makefile.am): Remove `lib_SOURCES += ...' line,
9672         now that xgetcwd.m4 requires xgetcwd.c and xgetcwd.h.
9673
9674 2005-08-24  Jim Meyering  <jim@meyering.net>
9675
9676         * modules/fcntl-safer: New module.
9677         * modules/fts (Depends-on): Add fcntl-safer.
9678         * MODULES.html.sh (File descriptor based Input/Output):
9679         Add fcntl-safer.
9680
9681 2005-08-24  Bruno Haible  <bruno@clisp.org>
9682
9683         Support for unit test modules.
9684         * modules/README: Mention tests modules.
9685         * modules/TEMPLATE-TESTS: New file.
9686         * gnulib-tool: New options --extract-tests-module, --with-tests and
9687         --tests-base (unused for the moment).
9688         (testsbase, inctests): New variables.
9689         (func_all_modules): Exclude TEMPLATE-TESTS and *-tests.
9690         (func_verify_module): Exclude TEMPLATE-TESTS.
9691         (func_verify_nontests_module, func_verify_tests_module): New functions.
9692         (func_get_dependencies): Add implicit dependency for tests modules.
9693         (func_get_tests_module): New function.
9694         (func_modules_transitive_closure): When --with-tests was specified,
9695         include the unit tests as well, unless explicitly avoided.
9696         (func_emit_lib_Makefile_am): Ignore the tests modules here.
9697         (func_emit_tests_Makefile_am): New function.
9698         (func_create_testdir): When --with-tests was specified, emit a
9699         tests/ directory.
9700         * MODULES.html.sh (Future developments): Update.
9701
9702 2005-08-24  Bruno Haible  <bruno@clisp.org>
9703
9704         * modules/tls-tests: New file.
9705         * tests/test-tls.c: New file, from GNU gettext.
9706
9707 2005-08-24  Bruno Haible  <bruno@clisp.org>
9708
9709         * modules/lock-tests: New file.
9710         * tests/test-lock.c: New file, from GNU gettext.
9711
9712 2005-08-24  Bruno Haible  <bruno@clisp.org>
9713
9714         * lib/lock.h: Add multiple inclusion guard.
9715         * lib/tls.h: Add multiple inclusion guard.
9716
9717 2005-08-24  Bruno Haible  <bruno@clisp.org>
9718
9719         * gnulib-tool: Add support for the --aux-dir option to
9720         --create-testdir, --create-megatestdir, --test, --megatest.
9721         (func_create_testdir, func_create_megatestdir): Optionally emit a
9722         AC_CONFIG_AUX_DIR directive.
9723         (create-testdir, create-megatestdir, test, megatest): Provide a
9724         default value for $auxdir.
9725
9726 2005-08-24  Bruno Haible  <bruno@clisp.org>
9727
9728         * gnulib-tool (import): Use compound statement instead of subshell
9729         where possible.
9730
9731 2005-08-24  Bruno Haible  <bruno@clisp.org>
9732
9733         * gnulib-tool (import): Change --aux-dir default to "build-aux".
9734
9735 2005-08-24  Bruno Haible  <bruno@clisp.org>
9736
9737         * gnulib-tool (func_version): Update.
9738
9739 2005-08-24  Bruno Haible  <bruno@clisp.org>
9740
9741         * gnulib-tool (func_import, func_create_testdir,
9742         func_create_megatestdir): Quote all autoconf macro arguments.
9743
9744 2005-08-24  Bruno Haible  <bruno@clisp.org>
9745
9746         * gnulib-tool (func_create_megatestdir): Call autoreconf without the
9747         option --force, because --force causes the aclocal.m4 of each
9748         subdirectory to be newer than the corresponding config.h.in.
9749
9750 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
9751
9752         * m4/regex.m4 (gl_INCLUDED_REGEX): Remove; no longer used.
9753         All contents moved to gl_REGEX.
9754         (gl_REGEX): Don't bother checking whether lib/regex.c exists;
9755         assume that it does.
9756
9757 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
9758
9759         * lib/regex.h (REG_NOSYS)
9760         [!defined _XOPEN_SOURCE && 200112L <= _POSIX_C_SOURCE]:
9761         Define, since POSIX requires it as of 2001.
9762         (_REG_ENOSYS)
9763         [! (defined _XOPEN_SOURCE || 200112L <= _POSIX_C_SOURCE)]:
9764         New private symbol, used to keep the enum signed in all cases.
9765         * lib/regex.h (RE_NO_EMPTY_RANGES): Fix doc bug reported by James
9766         Youngman in
9767         <http://lists.gnu.org/archive/html/bug-gnulib/2005-07/msg00132.html>.
9768
9769         * lib/regex_internal.c (re_string_skip_chars, register_state):
9770         (calc_state_hash):
9771         Remove forward decls; no longer needed now that we use prototypes.
9772         * lib/regexec.c (acquire_init_state_context, check_halt_node_context):
9773         (proceed_next_node, pop_fail_stack, sub_epsilon_src_nodes):
9774         (clean_state_log_if_needed): Likewise.
9775
9776 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
9777
9778         * config/srclist.txt: Add glibc bugs 1231-1233.
9779
9780 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
9781
9782         Fix problems reported by Sam Steingold in
9783         <http://lists.gnu.org/archive/html/bug-gnulib/2005-08/msg00007.html>.
9784         * lib/regexec.c (sift_states_bkref): Fix portability bug: the code
9785         assumed that reg_errcode_t is a signed type, which is not
9786         necessarily true if _XOPEN_SOURCE is not defined.
9787         * lib/regex_internal.c (calc_state_hash): Put 'inline' before type,
9788         since some compilers warn about it otherwise.
9789
9790 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
9791
9792         * lib/regcomp.c (create_initial_state): Remove duplicate decl.
9793         (init_word_char, create_initial_state, duplicate_node_closure):
9794         (fetch_token, peek_token_bracket, build_range_exp):
9795         (build_collating_symbol): Remove forward decls; no longer needed
9796         now that we use prototypes.
9797
9798         * lib/regcomp.c:
9799         (re_compile_pattern, re_set_syntax, re_compile_fastmap):
9800         (re_compile_fastmap_iter, regcomp, regerror, regfree):
9801         (re_compile_internal, init_dfa, init_word_char, free_workarea_compile):
9802         (create_initial_state, optimize_utf8, analyze, postorder, preorder):
9803         (optimize_subexps, lower_subexps, lower_subexp, calc_first, calc_next):
9804         (link_nfa_nodes, duplicate_node_closure, search_duplicated_node):
9805         (duplicate_node, calc_inveclosure, calc_eclosure, calc_eclosure_iter):
9806         (fetch_token, peek_token, peek_token_bracket, parse, parse_reg_exp):
9807         (parse_branch, parse_expression, parse_sub_exp, parse_dup_op):
9808         (build_range_exp, build_collating_symbol, parse_bracket_exp):
9809         (parse_bracket_element, parse_bracket_symbol, build_equiv_class):
9810         (build_charclass, build_charclass_op, fetch_number, create_tree):
9811         (create_token_tree, mark_opt_subexp, duplicate_tree):
9812         Use prototypes rather than old-style definitions.
9813
9814         * lib/regex_internal.c:
9815         (re_string_allocate, re_string_construct, re_string_realloc_buffers):
9816         (re_string_construct_common, build_wcs_buffer, build_wcs_upper_buffer):
9817         (re_string_skip_chars, build_upper_buffer, re_string_translate_buffer):
9818         (re_string_reconstruct, re_string_peek_byte_case):
9819         (re_string_fetch_byte_case, re_string_destruct, re_string_context_at):
9820         (re_node_set_alloc, re_node_set_init_1, re_node_set_init_2):
9821         (re_node_set_init_copy, re_node_set_add_intersect):
9822         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
9823         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
9824         (re_node_set_remove_at, re_dfa_add_node, calc_state_hash):
9825         (re_acquire_state, re_acquire_state_context, register_state):
9826         (create_ci_newstate, create_cd_newstate, free_state):
9827         Likewise.
9828         * lib/regexec.c (regexec, re_match, re_search, re_match_2,
9829         re_search_2):
9830         (re_search_2_stub, re_search_stub, re_copy_regs, re_set_registers):
9831         (re_search_internal, prune_impossible_nodes):
9832         (acquire_init_state_context, check_matching, static):
9833         (check_halt_node_context, check_halt_state_context, proceed_next_node):
9834         (push_fail_stack, pop_fail_stack, set_regs, free_fail_stack_return):
9835         (update_regs, sift_states_backward, build_sifted_states):
9836         (clean_state_log_if_needed, merge_state_array):
9837         (update_cur_sifted_state, add_epsilon_src_nodes):
9838         (sub_epsilon_src_nodes, check_dst_limits, check_dst_limits_calc_pos_1):
9839         (check_dst_limits_calc_pos, check_subexp_limits, sift_states_bkref):
9840         (sift_states_iter_mb, transit_state, merge_state_with_log, static):
9841         (find_recover_state, check_subexp_matching_top, transit_state_mb):
9842         (transit_state_bkref, get_subexp, get_subexp_sub, find_subexp_node):
9843         (check_arrival, check_arrival_add_next_nodes):
9844         (check_arrival_expand_ecl, check_arrival_expand_ecl_sub):
9845         (expand_bkref_cache, build_trtable, group_nodes_into_DFAstates):
9846         (check_node_accept_bytes, check_node_accept, extend_buffers):
9847         (match_ctx_init, match_ctx_clean, match_ctx_free, match_ctx_add_entry):
9848         (search_cur_bkref_entry, match_ctx_add_subtop, match_ctx_add_sublast):
9849         (sift_ctx_init):
9850         Likewise.
9851
9852         * lib/regex_internal.h:
9853         (re_string_allocate, re_string_construct, re_string_reconstruct):
9854         (re_string_realloc_buffers, build_wcs_buffer, build_wcs_upper_buffer):
9855         (build_upper_buffer, re_string_translate_buffer, re_string_destruct):
9856         (re_string_elem_size_at, re_string_char_size_at, re_string_wchar_at):
9857         (re_string_context_at, re_string_peek_byte_case):
9858         (re_string_fetch_byte_case): Declare even if RE_NO_INTERNAL_PROTOTYPES
9859         is defined, since we now use prototypes always.
9860
9861         * lib/regex.h (_RE_ARGS): Remove.  No longer needed, since we assume
9862         C89 or better.  All uses removed.
9863
9864 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
9865
9866         * config/srclist.txt: Add glibc bugs 1220-1227.
9867
9868 2005-08-20  Jim Meyering  <jim@meyering.net>
9869
9870         * lib/regexec.c (regexec, re_search_stub) [!_LIBC]: Omit declaration
9871         of unused local, dfa.
9872
9873 2005-08-20  Bruno Haible  <bruno@clisp.org>
9874
9875         * m4/regex.m4 (gl_PREREQ_REGEX): Require AC_GNU_SOURCE.
9876
9877 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
9878
9879         * lib/regex_internal.c (re_string_realloc_buffers, re_node_set_insert):
9880         (re_node_set_insert_last, re_dfa_add_node):
9881         Rename local variables to avoid GCC shadowing warnings.
9882
9883 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
9884
9885         * lib/regex_internal.c (re_acquire_state, re_acquire_state_context)
9886         [defined lint]: Suppress bogus uninitialized-variable warnings.
9887
9888         * lib/regcomp.c (duplicate_node): Return new index, not an error code,
9889         and let the caller return REG_ESPACE if out of space.  This
9890         removes an uninitialied-variable warning with GCC 4.0.1, and also
9891         avoids taking the address of a local variable.  All callers
9892         changed.
9893
9894 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
9895
9896         * config/srclist.txt: Comment out $LIBCSRC/posix/regex_internal.c,
9897         $LIBCSRC/posix/regexec.c.
9898         Add glibc bug 1217 for regcomp.c.
9899
9900 2005-08-19  Jim Meyering  <jim@meyering.net>
9901
9902         * lib/regexec.c (proceed_next_node): Redo local variables to
9903         avoid GCC shadowing warnings.
9904
9905 2005-08-18  Bruno Haible  <bruno@clisp.org>
9906
9907         * lib/strstr.c (strstr): Fix return value in multibyte case.
9908         * lib/strcasestr.c (strcasestr): Likewise.
9909
9910 2005-08-17  Paul Eggert  <eggert@cs.ucla.edu>
9911
9912         * lib/regex.h: Remove useless space-before-tab.  From coreutils.
9913
9914 2005-08-17  Jim Meyering  <jim@meyering.net>
9915
9916         Make the %s format (seconds since the epoch) work for a negative
9917         number and when used with a zero-padded field width, e.g. %015s.
9918
9919         * lib/strftime.c (my_strftime): Move the `do_number_sign_and_padding'
9920         label so that it precedes the code to set `digits'.  Otherwise,
9921         %0Ns wouldn't work.  Before this change, `date -d @-22 +%05s' would
9922         print `00-22'.  Now, it prints `-0022', as it should.
9923
9924 2005-08-17  Bruno Haible  <bruno@clisp.org>
9925
9926         * modules/strstr (Files): Add m4/mbrtowc.m4.
9927         (Depends-on): Add mbuiter.
9928
9929 2005-08-17  Bruno Haible  <bruno@clisp.org>
9930
9931         * modules/strcasestr: New file.
9932         * MODULES.html.sh (String handling, based on ANSI C 89): Add
9933         strcasestr.
9934
9935 2005-08-17  Bruno Haible  <bruno@clisp.org>
9936
9937         * modules/strcase (Depends-on): Add mbuiter. Remove strnlen1, mbchar.
9938
9939 2005-08-17  Bruno Haible  <bruno@clisp.org>
9940
9941         * modules/mbuiter: New file.
9942         * MODULES.html.sh (Extended multibyte and wide character utilities):
9943         Add mbuiter.
9944
9945 2005-08-17  Bruno Haible  <bruno@clisp.org>
9946
9947         * m4/strstr.m4 (gl_FUNC_STRSTR): Use the replacement function always.
9948         (gl_PREREQ_STRSTR): Use gl_FUNC_MBRTOWC.
9949
9950 2005-08-17  Bruno Haible  <bruno@clisp.org>
9951
9952         * m4/strcasestr.m4: New file.
9953
9954 2005-08-17  Bruno Haible  <bruno@clisp.org>
9955
9956         * lib/strstr.h: Ignore HAVE_STRSTR, always declare the gnulib function.
9957         * lib/strstr.c: Completely rewritten, with multibyte locale support.
9958
9959 2005-08-17  Bruno Haible  <bruno@clisp.org>
9960
9961         * lib/strcasestr.h: New file.
9962         * lib/strcasestr.c: New file.
9963
9964 2005-08-17  Bruno Haible  <bruno@clisp.org>
9965
9966         * lib/strcasecmp.c: Use mbuiter.h.
9967
9968 2005-08-17  Bruno Haible  <bruno@clisp.org>
9969
9970         * lib/mbuiter.h: New file.
9971
9972 2005-08-16  Paul Eggert  <eggert@cs.ucla.edu>
9973
9974         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Do not override the results
9975         of gl_GETOPT_SUBSTITUTE.  That way, if both gl_GETOPT_SUBSTITUTE
9976         and gl_GETOPT are both invoked via different paths (as happens
9977         with GNU tar CVS because it uses both argp and getopt), the former
9978         wins.
9979
9980 2005-08-16  Bruno Haible  <bruno@clisp.org>
9981
9982         * modules/tls: New file.
9983         * MODULES.html.sh (Multithreading): Add tls.
9984
9985 2005-08-16  Bruno Haible  <bruno@clisp.org>
9986
9987         * modules/strnlen1: New file.
9988         * MODULES.html.sh (String handling): Add strnlen1.
9989
9990 2005-08-16  Bruno Haible  <bruno@clisp.org>
9991
9992         * modules/strcase (Files): Add m4/mbrtowc.m4.
9993         (Depends-on): Add strnlen1, mbchar.
9994
9995 2005-08-16  Bruno Haible  <bruno@clisp.org>
9996
9997         * modules/mbiter: New file.
9998         * MODULES.html.sh (Extended multibyte and wide character utilities):
9999         Add mbiter.
10000
10001 2005-08-16  Bruno Haible  <bruno@clisp.org>
10002
10003         * modules/mbfile: New file.
10004         * MODULES.html.sh (Extended multibyte and wide character utilities):
10005         Add mbfile.
10006
10007 2005-08-16  Bruno Haible  <bruno@clisp.org>
10008
10009         * modules/mbchar: New file.
10010         * MODULES.html.sh (Extended multibyte and wide character utilities):
10011         New section.
10012
10013 2005-08-16  Bruno Haible  <bruno@clisp.org>
10014
10015         * m4/tls.m4: New file, from GNU gettext.
10016
10017 2005-08-16  Bruno Haible  <bruno@clisp.org>
10018
10019         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Use the replacement function
10020         always.
10021         (gl_PREREQ_STRCASECMP): Use gl_FUNC_MBRTOWC.
10022
10023 2005-08-16  Bruno Haible  <bruno@clisp.org>
10024
10025         * m4/mbiter.m4: New file.
10026
10027 2005-08-16  Bruno Haible  <bruno@clisp.org>
10028
10029         * m4/mbfile.m4: New file.
10030
10031 2005-08-16  Bruno Haible  <bruno@clisp.org>
10032
10033         * m4/mbchar.m4: New file.
10034
10035 2005-08-16  Bruno Haible  <bruno@clisp.org>
10036
10037         * lib/tls.h: New file, from GNU gettext.
10038         * lib/tls.c: New file, from GNU gettext.
10039
10040 2005-08-16  Bruno Haible  <bruno@clisp.org>
10041
10042         * lib/strnlen1.h: New file.
10043         * lib/strnlen1.c: New file.
10044
10045 2005-08-16  Bruno Haible  <bruno@clisp.org>
10046
10047         * lib/strcasecmp.c (struct mbiter_multi): Remove at_end field.
10048         (mbi_init): Update.
10049         (mbi_avail, mbi_advance): Let the iteration end before the terminating
10050         NUL byte, not after it.
10051
10052 2005-08-16  Bruno Haible  <bruno@clisp.org>
10053
10054         * lib/strcase.h (strcasecmp): Add note in comments.
10055         * lib/strncasecmp.c: Use code from strcasecmp.c.
10056         * lib/strcasecmp.c: Use mbchar module. Define private mbiter variant.
10057         (strcasecmp): Work correctly in multibyte locales.
10058
10059 2005-08-16  Bruno Haible  <bruno@clisp.org>
10060
10061         * lib/mbiter.h: New file.
10062
10063 2005-08-16  Bruno Haible  <bruno@clisp.org>
10064
10065         * lib/mbfile.h: New file.
10066
10067 2005-08-16  Bruno Haible  <bruno@clisp.org>
10068
10069         * lib/mbchar.h: New file.
10070         * lib/mbchar.c: New file.
10071
10072 2005-08-16  Bruno Haible  <bruno@clisp.org>
10073
10074         * lib/mbchar.h (mb_cmp, mb_casecmp): Order the invalid characters after
10075         the valid ones. Makes the comparison operations transitive:
10076         cmp (a, b) < 0 && cmp (b, c) < 0 ==> cmp (a, c) < 0.
10077         * lib/strcasecmp.c (strcasecmp): Use mb_casecmp.
10078
10079 2005-08-15  Simon Josefsson  <jas@extundo.com>
10080
10081         * modules/ssize_t (License): Change to 'unlimited'.
10082
10083         * gnulib-tool (sed_extract_prog): Recognize 'unlimited' license.
10084
10085 2005-08-15  Paul Eggert  <eggert@cs.ucla.edu>
10086
10087         * config/srclist.txt: Comment out $LIBCSRC/posix/regex.h.
10088         Add comments for each pending glibc patch.
10089
10090 2005-08-15  Bruno Haible  <bruno@clisp.org>
10091
10092         * lib/regex.h (__restrict_arr): Don't define to __restrict if
10093         __cplusplus is defined.
10094
10095 2005-08-14  Jim Meyering  <jim@meyering.net>
10096
10097         Sync from coreutils.
10098
10099         * lib/fts-cycle.c (setup_dir, enter_dir, leave_dir, free_dir):
10100         Use the hash-table-based cycle-detection code not just when
10101         FTS_TIGHT_CYCLE_CHECK if specified, but also with FTS_LOGICAL.
10102         Reported by James Youngman in
10103         <http://lists.gnu.org/archive/html/bug-gnulib/2005-08/msg00011.html>.
10104         * lib/fts_.h: Mention that with FTS_LOGICAL, we use
10105         FTS_TIGHT_CYCLE_CHECK.
10106         * lib/fts.c (fts_cross_check) [FTS_DEBUG]:
10107         s/active_dir_ht/fts_cycle.ht/. This lets us compile with -DFTS_DEBUG,
10108         once again.
10109         * lib/fts.c [! _LIBC]: Include "lstat.h" rather than rolling our own.
10110         * lib/fts.c (fd_safer): Remove decl.
10111         Include fcntl--.h rather than unistd-safer.h
10112         (fts_safe_changedir): Don't call fd_safer; no longer needed
10113         now that we include fcntl--.h.
10114
10115 2005-08-12  Simon Josefsson  <jas@extundo.com>
10116
10117         * modules/getndelim2: Use ssize_t module.
10118         * modules/getnline: Likewise.
10119         * modules/safe-read: Likewise.
10120         * modules/xreadlink: Likewise.
10121
10122         * modules/ssize_t: New file.
10123
10124 2005-08-12  Simon Josefsson  <jas@extundo.com>
10125
10126         * m4/readline.m4: Look for termcap, curses or ncurses if required.
10127
10128 2005-08-12  Simon Josefsson  <jas@extundo.com>
10129
10130         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
10131         ssize_t.
10132
10133 2005-08-12  Simon Josefsson  <jas@extundo.com>
10134
10135         * MODULES.html.sh (Extra functions based on ANSI C 89: Misc): Add
10136         readline, getdelim and check_version.
10137         (Support for systems lacking ISO C 99: Sizes of integer types):
10138         Add size_max.
10139
10140 2005-08-12  Bruno Haible  <bruno@clisp.org>
10141
10142         * m4/readline.m4 (gl_FUNC_READLINE): Look for ncurses first.
10143
10144 2005-08-11  Simon Josefsson  <jas@extundo.com>
10145
10146         * modules/readline: New file.
10147
10148         * modules/strnlen (Files): Add strnlen.h.
10149
10150 2005-08-11  Simon Josefsson  <jas@extundo.com>
10151
10152         * m4/readline.m4: New file.
10153
10154 2005-08-11  Simon Josefsson  <jas@extundo.com>
10155
10156         * lib/readline.h, readline.c: New file.
10157
10158 2005-08-11  Simon Josefsson  <jas@extundo.com>
10159
10160         * doc/gnulib.texi (Initial import, Finishing touches): Mention
10161         gl_AVOID.
10162
10163 2005-08-11  Bruno Haible  <bruno@clisp.org>
10164
10165         * lib/strnlen.h (strnlen): Change parameter name to match comment.
10166
10167 2005-08-10  Stepan Kasal  <kasal@ucw.cz>
10168
10169         * m4/onceonly_2_57.m4: Really require Autoconf 2.57.
10170
10171 2005-08-10  Simon Josefsson  <jas@extundo.com>
10172
10173         * tests/test-iconvme.c: New file.
10174
10175 2005-08-10  Simon Josefsson  <jas@extundo.com>
10176
10177         * m4/strnlen.m4: New file.
10178
10179         * m4/strndup.m4: Don't check for strnlen declaration, done in
10180         strnlen.m4.
10181
10182 2005-08-10  Simon Josefsson  <jas@extundo.com>
10183
10184         * lib/strndup.c: Use strnlen.h.
10185
10186         * lib/strnlen.h: New file.
10187
10188 2005-08-08  Ralf Wildenhues <Ralf.Wildenhues@gmx.de>  (tiny change)
10189
10190         * README: Typos.
10191
10192 2005-08-02  Simon Josefsson  <jas@extundo.com>
10193
10194         * modules/readline: New file.
10195
10196 2005-08-02  Simon Josefsson  <jas@extundo.com>
10197
10198         * modules/getdelim: New file.
10199
10200         * modules/getline: Rewrite, don't use getndelim2.
10201
10202 2005-08-02  Simon Josefsson  <jas@extundo.com>
10203
10204         * m4/getline.m4: Separate out getdelim stuff into separate module.
10205
10206         * m4/getdelim.m4: New file.
10207
10208 2005-08-02  Simon Josefsson  <jas@extundo.com>
10209
10210         * lib/getline.h, getline.c: Rewrite.
10211
10212         * lib/getdelim.h, lib/getdelim.c: New files, ported from glibc.
10213
10214 2005-07-31  Bruno Haible  <bruno@clisp.org>
10215
10216         * lib/lock.h (gl_lock_initializer): New macro.
10217         (gl_lock_define_initialized): Use it.
10218         (gl_rwlock_initializer): New macro.
10219         (gl_rwlock_define_initialized): Use it.
10220         (gl_recursive_lock_initializer): New macro.
10221         (gl_recursive_lock_define_initialized): Use it.
10222
10223 2005-07-30  Karl Berry  <karl@gnu.org>
10224
10225         * doc/gnulib.texi (Initial import): mention -I$(top_builddir)/lib.
10226         Report from Ben Pfaff, regarding getopt.
10227
10228 2005-07-26  Paul Eggert  <eggert@cs.ucla.edu>
10229
10230         Add support to getopt for Emacs, which doesn't use LIBOBJS in the
10231         normal way.
10232         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE_HEADER): New macro.
10233         (gl_GETOPT_SUBSTITUTE): Use it.  Invoke gl_PREREQ_GETOPT.
10234         (gl_GETOPT_IFELSE, gl_GETOPT_CHECK_HEADERS): New macros.
10235         (gl_GETOPT): Use the new macros.  Most of the implementation
10236         is moved to the new macros.  This is for programs like Emacs
10237         that don't want all the functionality of gl_GETOPT.
10238
10239 2005-07-26  Bruno Haible  <bruno@clisp.org>
10240
10241         * m4/lock.m4: Update from GNU gettext.
10242
10243 2005-07-26  Bruno Haible  <bruno@clisp.org>
10244
10245         * lib/lock.h: Update from GNU gettext.
10246         * lib/lock.c: Update from GNU gettext.
10247
10248 2005-07-25  Paul Eggert  <eggert@cs.ucla.edu>
10249
10250         * m4/regex.m4 (gl_INCLUDED_REGEX): Use AC_RUN_IFELSE instead of the
10251         obsolescent AC_TRY_RUN.  Include the default includes files, for
10252         'exit'.
10253
10254 2005-07-24  Bruno Haible  <bruno@clisp.org>
10255
10256         * modules/visibility: New file.
10257         * MODULES.html.sh (Misc): Add visibility.
10258
10259 2005-07-24  Bruno Haible  <bruno@clisp.org>
10260
10261         * m4/visibility.m4: New file.
10262
10263 2005-07-24  Bruno Haible  <bruno@clisp.org>
10264
10265         * doc/visibility.texi: New file.
10266
10267 2005-07-22  Bruno Haible  <bruno@clisp.org>
10268
10269         * modules/alloca-opt (Makefile.am): Remove explicit dependency on
10270         $(ALLOCA_H), redundant through BUILT_SOURCES.
10271         * modules/argz (Makefile.am): Remove explicit dependency on $(ARGZ_H),
10272         redundant through BUILT_SOURCES.
10273         * modules/byteswap (Makefile.am): Remove explicit dependency on
10274         $(BYTESWAP_H), redundant through BUILT_SOURCES.
10275         * modules/fnmatch (Makefile.am): Remove explicit dependency on
10276         $(FNMATCH_H), redundant through BUILT_SOURCES.
10277         * modules/getopt (Makefile.am): Remove explicit dependency on
10278         $(GETOPT_H), redundant through BUILT_SOURCES.
10279         * modules/glob (Makefile.am): Remove explicit dependency on $(GLOB_H),
10280         redundant through BUILT_SOURCES.
10281         * modules/poll (Makefile.am): Remove explicit dependency on $(POLL_H),
10282         redundant through BUILT_SOURCES.
10283         * modules/stdbool (Makefile.am): Remove explicit dependency on
10284         $(STDBOOL_H), redundant through BUILT_SOURCES.
10285         * modules/stdint (Makefile.am): Remove explicit dependency on
10286         $(STDINT_H), redundant through BUILT_SOURCES.
10287         * modules/sysexits (Makefile.am): Add $(SYSEXITS_H) to BUILT_SOURCES.
10288         Remove explicit dependency on $(SYSEXITS_H).
10289         Reported by Alexandre Duret-Lutz <adl@src.lip6.fr>.
10290
10291 2005-07-18  Simon Josefsson  <jas@extundo.com>
10292
10293         * lib/check-version.c (check_version): Accept identical versions too.
10294
10295 2005-07-18  Bruno Haible  <bruno@clisp.org>
10296
10297         * modules/lock: New file.
10298         * MODULES.html.sh (Multithreading): New section.
10299
10300 2005-07-18  Bruno Haible  <bruno@clisp.org>
10301
10302         * m4/lock.m4: New file, from GNU gettext.
10303
10304 2005-07-18  Bruno Haible  <bruno@clisp.org>
10305
10306         * lib/lock.h: New file, from GNU gettext.
10307         * lib/lock.c: New file, from GNU gettext.
10308
10309 2005-07-18  Bruno Haible  <bruno@clisp.org>
10310
10311         * lib/lock.h (gl_once_t): New type.
10312         (gl_once_define, gl_once): New macros.
10313         * lib/lock.c (fresh_once): New variable.
10314         (glthread_once, glthread_once_call, glthread_once_singlethreaded): New
10315         functions.
10316
10317 2005-07-16  Simon Josefsson  <jas@extundo.com>
10318
10319         * doc/gnulib.texi (Library version handling): Add ELF symbol collision
10320         workaround, suggested by Bruno.
10321
10322 2005-07-15  Paul Eggert  <eggert@cs.ucla.edu>
10323
10324         * modules/xalloc (Depends-on): Add xalloc-die.
10325         * modules/xvasprintf (Depends-on): Add xalloc-die.
10326
10327 2005-07-15  Paul Eggert  <eggert@cs.ucla.edu>
10328
10329         * lib/quotearg.c: Add translator comment suggested by Bruno Haible,
10330         with a minor change.
10331
10332 2005-07-15  Bruno Haible  <bruno@clisp.org>
10333
10334         * m4/poll.m4 (gl_FUNC_POLL): Check against MacOS X 10.4 poll() bug.
10335         When using lib/poll.c, define poll as rpl_poll.
10336
10337 2005-07-14  Paul Eggert  <eggert@cs.ucla.edu>
10338
10339         * modules/argp (Depends-on): Remove unlocked-io.
10340
10341 2005-07-14  Derek Price  <derek@ximbiot.com>
10342
10343         * m4/glob.m4 (gl_GLOB): Cache glob interface check result.  Add check
10344         for glob symlink bug.
10345
10346 2005-07-14  Bruno Haible  <bruno@clisp.org>
10347
10348         * m4/argp.m4 (gl_ARGP): Remove invocation of gl_FUNC_GLIBC_UNLOCKED_IO.
10349         Instead, test for *_unlocked function declarations directly.
10350
10351 2005-07-11  Simon Josefsson  <jas@extundo.com>
10352
10353         * modules/size_max: New file.
10354
10355         * modules/xsize: Depend on size_max module for size_max.m4.
10356
10357 2005-07-11  Simon Josefsson  <jas@extundo.com>
10358
10359         * lib/size_max.h: New file.
10360
10361 2005-07-11  Paul Eggert  <eggert@cs.ucla.edu>
10362
10363         * lib/version-etc-fsf.c (version_etc_copyright): Parameterize the
10364         copyright symbol and the year.
10365         * lib/version-etc.c (COPYRIGHT_YEAR): New constant.
10366         (version_etc_va): Use parameterized copyright notice.
10367         Reword to conform to the current GNU coding standards.
10368
10369 2005-07-11  Karl Berry  <karl@gnu.org>
10370
10371         * doc/gnulib.texi (Quoting): new node.
10372         (Initial import): more info, from Patrice.
10373
10374 2005-07-11  Bruno Haible  <bruno@clisp.org>
10375
10376         * gnulib-tool (func_usage): Document option --avoid.
10377         (Command line options): Handle --avoid.
10378         (func_acceptable): New function.
10379         (func_modules_transitive_closure): Use it.
10380
10381 2005-07-11  Bruno Haible  <bruno@clisp.org>
10382
10383         * MODULES.html.sh: Use shortcut URLs to the www.opengroup.org site.
10384         Reported by Jim Meyering.
10385
10386 2005-07-10  Bruno Haible  <bruno@clisp.org>
10387
10388         * m4/size_max.m4 (gl_SIZE_MAX): Cast ~(size_t)0 back to size_t.
10389         Needed when size_t is smaller than 'unsigned int'.
10390         Reported by Paul Eggert.
10391
10392 2005-07-09  Sergey Poznyakoff  <gray@gnu.org.ua>
10393
10394         * modules/argp (Depends-on): Add unlocked-io
10395
10396 2005-07-09  Sergey Poznyakoff  <gray@gnu.org.ua>
10397
10398         * lib/argp-namefrob.h: Include unlocked-io.h. Removed unnecessary
10399         block of defines.
10400
10401 2005-07-08  Paul Eggert  <eggert@cs.ucla.edu>
10402
10403         * config/srclist.txt: Comment out regcomp.c, since we have a porting
10404         fix now.
10405
10406 2005-07-08  Eric Blake  <ebb9@byu.net>  (tiny change)
10407         and Paul Eggert  <eggert@cs.ucla.edu>
10408
10409         * lib/regcomp.c (init_dfa, build_range_exp): Store __btowc value
10410         in wint_t, not wchar_t.  Remove now-unnecessary cast.
10411
10412 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
10413
10414         * modules/regex (Files): Add lib/regex_internal.c,
10415         lib/regex_internal.h, lib/regexec.c, lib/regcomp.c, m4/codeset.m4.
10416         (Depends-on): Add extensions.
10417         (Makefile.am): Remove lib_SOURCES; now done by m4 code.
10418
10419 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
10420
10421         * m4/backupfile.m4 (gl_BACKUPFILE): Use AC_CHECK_FUNCS_ONCE on
10422         pathconf.
10423         * m4/same.m4 (gl_SAME): Likewise.
10424         Require AC_SYS_LONG_FILE_NAMES; bug reported by Gerrit P. Haase.
10425
10426         * m4/regex.m4: Adjust to new libc regex implementation.
10427         (gl_INCLUDED_REGEX): Add AC_LIBSOURCES for
10428         all the .c and .h parts of (the new) regex.
10429         Quote the m4 stuff better.
10430         Check for RE_ICASE bug of old gnulib.
10431         Check for REG_STARTEND of recent libc.
10432         Rename local variables from jm_* to gl_*.
10433         Quote operand of "test -f".
10434         Say "recent enough" version of libc, not "version 2".
10435         (gl_PREREQ_REGEX): Remove AC_FUNC_ALLOCA, since alloca is a
10436         prerequisite module.  Remove AC_HEADER_STDC; no longer needed.
10437         Check for locale.h, isblank, mbrtowc, wcrtomb, wcscoll.
10438         Remove check for btowc, isascii.
10439         Require AM_LANGINFO_CODESET.
10440
10441 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
10442
10443         * lib/regex.c, regex.h: Sync from libc.
10444         * lib/regcomp.c, lib/regexec_internal.c, lib/regex_internal.h:
10445         * lib/regexec.c:
10446         New files, synced from libc, except that regex_internal.h
10447         currently has a small porting fix.
10448
10449 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
10450
10451         * config/srclist.txt: Add regcomp.c, regex.c, regex.h,
10452         regex_internal.c, regexec.c.
10453         Add regex_internal.h too, but as a comment, since the libc version
10454         is currently broken in gnulib mode.
10455
10456 2005-07-06  Paul Eggert  <eggert@cs.ucla.edu>
10457
10458         Support programs like Emacs that use gnulib but not gettext.
10459         * MODULES.html.sh (Internationalization functions): Add gettext-h.
10460         * modules/gettext-h: New file.
10461         * modules/gettext (Files): Remove lib/gettext.h.
10462         (Depends-on): Add gettext-h.
10463         (Makefile.am): Remove lib_SOURCES.
10464         * modules/argmatch, modules/c-stack, modules/closeout:
10465         * modules/copy-file, modules/csharpcomp, modules/csharpexec:
10466         * modules/execute, modules/file-type, modules/getaddrinfo:
10467         * modules/getopt, modules/human, modules/javacomp:
10468         * modules/javaexec, modules/mkdir-p, modules/obstack:
10469         * modules/openat, modules/pagealign_alloc, modules/pipe:
10470         * modules/quotearg, modules/regex, modules/rpmatch:
10471         * modules/unicodeio, modules/userspec, modules/version-etc:
10472         * modules/wait-process, modules/xalloc-die, modules/xmemcoll:
10473         * modules/xsetenv:
10474         Depend on gettext-h, not gettext.
10475
10476 2005-07-05  Paul Eggert  <eggert@cs.ucla.edu>
10477
10478         * gnulib-tool (func_import): Add support for 'public domain' license.
10479         * modules/alloca, modules/atexit, modules/memmove:
10480         Now public domain, not GPL.
10481         * modules/dup2, modules/getpagesize, modules/malloc, modules/memset:
10482         * modules/realloc, modules/strerror, modules/strtod:
10483         Now LGPL, not GPL.
10484
10485 2005-07-05  Bruno Haible  <bruno@clisp.org>
10486
10487         * m4/mbrtowc.m4 (gl_FUNC_MBRTOWC): Upgrade to version from current
10488         autoconf CVS. Needed for mingw.
10489
10490 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
10491
10492         Remove the dependency of the strftime module on the tzset module.
10493         * modules/strftime (Depends-on): Remove dependency on tzset.
10494
10495 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
10496
10497         Remove the dependency of the strftime module on the tzset module.
10498         * m4/strftime.m4 (gl_FUNC_STRFTIME): Don't require
10499         gl_FUNC_TZSET_CLOBBER.
10500
10501 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
10502
10503         Remove the dependency of the strftime module on the tzset module.
10504         * lib/strftime.c (my_strftime)
10505         [! defined _LIBC && ! HAVE_RUN_TZSET_TEST]:
10506         Copy the input structure, to work around some of the bug with
10507         Solaris 2.5.1 and Solaris 2.6.  If you still care about these old
10508         Solaris releases, you should also use the tzset module, but we won't
10509         require it as a dependency any more since we don't want LGPLed code
10510         to depend on GPLed code.
10511
10512 2005-07-02  Jim Meyering  <jim@meyering.net>
10513
10514         * m4/chown.m4, cloexec.m4, dup2.m4, fsusage.m4:
10515         * m4/getcwd-path-max.m4, getcwd.m4, mkstemp.m4, mountlist.m4:
10516         * m4/pagealign_alloc.m4, save-cwd.m4, unistd-safer.m4:
10517         Don't check for fcntl.h, and don't test for HAVE_FCNTL_H.
10518
10519 2005-07-02  Jim Meyering  <jim@meyering.net>
10520
10521         * lib/backupfile.c (backup_args): Change a `0' to NULL.
10522
10523 2005-07-01  Paul Eggert  <eggert@cs.ucla.edu>
10524
10525         * lib/xnanosleep.c: Include timespec.h, since OpenBSD 3.4 <time.h>
10526         declares only 'struct timespec;' (!).
10527
10528 2005-07-01  Jim Meyering  <jim@meyering.net>
10529
10530         * lib/chown.c, cloexec.c, dup-safer.c, dup2.c, fsusage.c, getcwd.c:
10531         * lib/getloadavg.c, mountlist.c, openat.h, pagealign_alloc.c:
10532         * lib/save-cwd.c, tempname.c:
10533         Assume HAVE_FCNTL_H (i.e., include <fcntl.h> unconditionally,
10534         and don't include <sys/file.h>).
10535
10536 2005-06-29  Jim Meyering  <jim@meyering.net>
10537
10538         * lib/mkdir-p.c (make_dir_parents): Don't apply sizeof to a hard-coded
10539         type name.  Use the variable name instead.
10540         * lib/idcache.c (getuser, getuidbyname, getgroup, getgidbyname):
10541         Likewise.
10542
10543 2005-06-28  Simon Josefsson  <jas@extundo.com>
10544
10545         * modules/check-version (Files): Add check-version.m4.
10546
10547 2005-06-28  Simon Josefsson  <jas@extundo.com>
10548
10549         * m4/check-version.m4: New file, suggested by Jim Meyering
10550         <jim@meyering.net>.
10551
10552 2005-06-28  Simon Josefsson  <jas@extundo.com>
10553
10554         * lib/check-version.h, lib/check-version.c: New files.
10555
10556 2005-06-28  Simon Josefsson  <jas@extundo.com>
10557
10558         * lib/base64.c (base64_encode): Indent.  Rename 'b64' to avoid
10559         collision with global variable.  Better indentation.  Don't
10560         increment buffer pointer beyond buffer end.  Based on comments
10561         from Paul Eggert <eggert@cs.ucla.edu>.
10562
10563         * lib/base64.h: Indent.
10564
10565 2005-06-28  Simon Josefsson  <jas@extundo.com>
10566
10567         * doc/gnulib.texi (Library version handling): New section.
10568
10569 2005-06-28  Jim Meyering  <jim@meyering.net>
10570
10571         * check-module (find_included_lib_files): Hard-code another
10572         pair of exceptions: fts.c includes fts-cycle.c and unistd-safer.h
10573         but modules/fts-lgpl (correctly) does not list those files.
10574
10575         * modules/canonicalize (Files): Add lib/pathmax.h.
10576
10577 2005-06-25  Simon Josefsson  <jas@extundo.com>
10578
10579         * modules/check-version: New file.
10580
10581 2005-06-24  Paul Eggert  <eggert@cs.ucla.edu>
10582
10583         * lib/canon-host.c (canon-host): Append trailing "," to 0 in
10584         initializer of struct addrinfo, as an indication that we don't
10585         care how many members the structure has.
10586
10587 2005-06-24  Derek Price  <derek@ximbiot.com>
10588         and Bruno Haible  <bruno@clisp.org>
10589
10590         Remove stat module & update lstat.
10591         * m4/lstat.m4 (gl_FUNC_LSTAT): Drop AC_FUNC_LSTAT in favor of
10592         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
10593         * m4/stat.m4: Remove this file.
10594
10595 2005-06-24  Derek Price  <derek@ximbiot.com>
10596         and Bruno Haible  <bruno@clisp.org>
10597
10598         Remove stat module & update lstat.
10599         * lib/stat.c: Remove this file...
10600         (slash_aware_lstat): ...moving this content and its support...
10601         * lib/lstat.c (rpl_lstat): ...into here.
10602         * lib/lstat.h: New file.
10603
10604 2005-06-24  Derek Price  <derek@ximbiot.com>
10605         and Bruno Haible  <bruno@clisp.org>
10606
10607         Remove stat module & update lstat.
10608         * config/srclist.txt (libc sources): Remove stat.
10609
10610 2005-06-24  Derek Price  <derek@ximbiot.com>
10611         and Bruno Haible  <bruno@clisp.org>
10612
10613         Remove stat module & update lstat.
10614         * MODULES.html.sh (stat): Remove.
10615         * MODULES.html: Regenerated.
10616         * modules/lstat (Description): Correct function name.
10617         (Files): Add "lstat.h".
10618         (Depends-on): Remove stat, add xalloc, stat-macros.
10619         * modules/stat: Remove this file.
10620         (Include): Add "lstat.h", remove <sys/stat.h>.
10621
10622 2005-06-23  Paul Eggert  <eggert@cs.ucla.edu>
10623
10624         * lib/mktime.c: Include <string.h> even if !DEBUG.  (From glibc.)
10625         (ranged_convert): Don't save conversion in a temporary struct.
10626         This causes a warning with GCC 4.0.0, and anyway in the typical
10627         case it's not worth the extra 100 bytes or so of code.
10628         (ranged_convert, __mktime_internal): When calling a function via a
10629         pointer P, use P () rather than (*P) (), as we now assume C89 or
10630         better.
10631
10632 2005-06-22  Paul Eggert  <eggert@cs.ucla.edu>
10633
10634         * lib/readutmp.c (desirable_utmp_entry): Fix bug where "who -b" and
10635         "who -r" failed to give output.  Problem reported by Tim Waugh.
10636
10637         * lib/xmalloc.c (HAVE_GNU_CALLOC): New constant.
10638         (xcalloc): Use it to avoid needless tests.
10639         Problem reported by Jim Meyering.
10640
10641 2005-06-20  Derek Price  <derek@ximbiot.com>
10642
10643         * m4/bison.m4: Note that precious decls of YACC & YFLAGS will be
10644         unnecessary for Autoconfs > 2.59c.
10645
10646 2005-06-16  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
10647
10648         * lib/argp.h (__option_is_short): Check upper limit of
10649         __key. Isprint() requires its argument to have the value
10650         of an unsigned char or EOF.
10651
10652 2005-06-16  Jim Meyering  <jim@meyering.net>
10653
10654         * lib/calloc.c (rpl_calloc): Allocate a 1-byte buffer (not 1xS or Nx1)
10655         when either N or S is zero.
10656
10657 2005-06-16  Derek Price  <derek@ximbiot.com>
10658
10659         * m4/bison.m4: Declare YACC & YFLAGS precious.
10660
10661 2005-06-10  Paul Eggert  <eggert@cs.ucla.edu>
10662
10663         * lib/fnmatch.c (fnmatch): If there is an encoding error in a
10664         multibyte string or pattern, fall back on unibyte matching.
10665         Problem reported by James Youngman.
10666
10667 2005-06-08  Bruno Haible  <bruno@clisp.org>
10668
10669         * modules/csharpcomp: New file.
10670         * MODULES.html.sh (C#): Add csharpcomp.
10671
10672 2005-06-08  Bruno Haible  <bruno@clisp.org>
10673
10674         * m4/csharpcomp.m4: New file, from GNU gettext.
10675
10676 2005-06-08  Bruno Haible  <bruno@clisp.org>
10677
10678         * lib/csharpcomp.h: New file, from GNU gettext.
10679         * lib/csharpcomp.c: New file, from GNU gettext.
10680         * lib/csharpcomp.sh.in: New file, from GNU gettext.
10681
10682 2005-06-08  Bruno Haible  <bruno@clisp.org>
10683
10684         * lib/binary-io.h (fileno): Undefine before defining it. Avoids a gcc
10685         warning on mingw.
10686
10687 2005-06-07  Derek Price  <derek@ximbiot.com>
10688
10689         Sync from CVS.
10690         * lib/glob_.h: Indent nested #ifdef.
10691
10692 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
10693
10694         Sync from coreutils.
10695         Use "file name" when talking about file names, instead of "filename"
10696         or "path", as per the GNU coding standards.
10697         * lib/mkdir-p.c: Renamed from makepath.c.
10698         (make_dir_parents): Renamed from make_path.  All callers changed.
10699         * lib/mkdir-p.h: Likewise.  All includers changed.
10700         * lib/filenamecat.c: Renamed from path-concat.c.
10701         (file_name_concat): Renamed from path_concat.  All callers changed.
10702         [TEST_FILE_NAME_CONCAT]: Renamed from TEST_PATH_CONCAT.
10703         * lib/filenamecat.h: Likewise.  All includers changed.
10704         * lib/acl.c: Don't use "path" or "filename" to mean "file name"
10705         in comments or local variable names.
10706         * lib/basename.c: Likewise.
10707         * lib/canonicalize.c, canonicalize.h: Likewise.
10708         * lib/dirname.c, dirname.h: Likewise.
10709         * lib/euidaccess.c: Likewise.
10710         * lib/exclude.c: Likewise
10711         * lib/fnmatch_.h, fnmatch_loop.c: Likewise.
10712         * lib/fsusage.c, fsuage.h: Likewise.
10713         * lib/fts.c, fts_.h: Likewise.
10714         * lib/getcwd.c: Likewise.
10715         * lib/getloadavg.c: Likewise.
10716         * lib/mkstemp.c: Likewise.
10717         * lib/mountlist.c, mountlist.h: Likewise.
10718         * lib/openat.c, openat.h: Likewise.
10719         * lib/readlink-stub.c: Likewise.
10720         * lib/readutmp.c, readutmp.h: Likewise.
10721         * lib/rename.c: Likewise.
10722         * lib/rmdir.c: Likewise.
10723         * lib/same.c: Likewise.
10724         * lib/savedir.c: Likewise.
10725         * lib/stripslash.c: Likewise.
10726         * lib/tempname.c: Likewise.
10727         * lib/xreadlink.c: Likewise.
10728         * lib/exclude.c (excluded_file_name): Renamed from excluded_filename.
10729         All uses changed.
10730         * lib/exclude.h: Likewise.
10731
10732         * lib/euidaccess.c (getuid, getgid, getuid, getegid)
10733         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
10734         * lib/idcache.c (getpwuid, getpwnam, getgrgid, getgrnam)
10735         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
10736         * lib/pathmax.h: Include <limits.h> unconditionally, since other
10737         files have been getting away with it for years (MORE/BSD 4.3
10738         is extinct now).
10739         * lib/userspec.c (getpwnam, getgrnam, getgrgid)
10740         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
10741
10742         * lib/pathmax.h (_POSIX_PATH_MAX) [!defined _POSIX_PATH_MAX]:
10743         Define to 256, not 255, as per modern POSIX.
10744
10745 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
10746
10747         Sync from coreutils.
10748         Use "file name" when talking about file names, instead of "filename"
10749         or "path", as per the GNU coding standards.
10750         * MODULES.html.sh: mkdir-p renamed from makepath.
10751         filenamecat renamed from path-concat.
10752         * modules/filenamecat: Renamed from modules/path-concat.
10753         (Files): filenamecat.h and filenamecat.c renamed from
10754         path-concat.h and path-concat.c.
10755         (configure.ac): gl_FILE_NAME_CONCAT, not gl_PATH_CONCAT.
10756         (Include): filenamecat.h, not path-concat.h.
10757         * modules/mkdir-p: Renamed from modules/makepath.
10758         (Files): mkdir-p.h and mkdir-p.c renamed from makepath.h and
10759         makepath.c.
10760         (configure.ac): gl_MKDIR_PARENTS, not gl_MAKEPATH.
10761         (Include): mkdir-p.h, not makepath.h.
10762
10763 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
10764
10765         Sync from coreutils.
10766         * m4/mkdir-p.m4: Renamed from makepath.m4.
10767         (gl_MKDIR_PARENTS): Renamed from gl_MAKEPATH.  All uses changed.
10768         Rename files from makepath.c to mkdir-p.c, and from
10769         makepath.h to mkdir-p.h.
10770         * m4/filenamecat.m4: Renamed from path-concat.m4.
10771         (gl_FILE_NAME_CONCAT): Renamed from gl_PATH_CONCAT.  All uses changed.
10772         Rename files from path-concat.c to filenamecat.c,
10773         and from path-concat.h to filenamecat.h.
10774         * m4/getcwd-path-max.m4: Don't use "path" or "filename" to mean
10775         "file name" in local variables or comments.
10776         * m4/rename.m4: Likewise.
10777
10778 2005-06-01  Bruno Haible  <bruno@clisp.org>
10779
10780         * modules/csharpexec: New file.
10781         * MODULES.html.sh (C#): New section.
10782
10783 2005-06-01  Bruno Haible  <bruno@clisp.org>
10784
10785         * m4/csharp.m4: New file, from GNU gettext.
10786         * m4/csharpexec.m4: New file, from GNU gettext.
10787
10788 2005-06-01  Bruno Haible  <bruno@clisp.org>
10789
10790         * lib/csharpexec.h: New file, from GNU gettext.
10791         * lib/csharpexec.c: New file, from GNU gettext.
10792         * lib/csharpexec.sh.in: New file, from GNU gettext.
10793
10794 2005-05-31  Derek Price  <derek@ximbiot.com>
10795             Paul Eggert  <eggert@cs.ucla.edu>
10796
10797         Sync from cvs.
10798         * m4/glob.m4: s/MISSING_SYS_CDEFS_H/_SYS_CDEFS_H/ and comment.
10799
10800 2005-05-31  Derek Price  <derek@ximbiot.com>
10801             Paul Eggert  <eggert@cs.ucla.edu>
10802
10803         Sync from cvs.
10804         * lib/glob_.h: s/MISSING_SYS_CDEFS_H/_SYS_CDEFS_H/ and comment.
10805
10806 2005-05-29  Derek Price  <derek@ximbiot.com>
10807
10808         * config/srclist.txt (glob_.h, glob.c): Add these files.
10809
10810 2005-05-29  Derek Price  <derek@ximbiot.com>
10811
10812         * MODULES.html.sh: Add glob to Enhanced POSIX.2001 section.
10813         * modules/glob: New file.
10814         * modules/getlogin_r: Add link to POSIX spec in description.
10815
10816 2005-05-29  Derek Price  <derek@ximbiot.com>
10817             Paul Eggert  <eggert@cs.ucla.edu>
10818
10819         * m4/glob.m4: New file.
10820
10821 2005-05-29  Derek Price  <derek@ximbiot.com>
10822             Paul Eggert  <eggert@cs.ucla.edu>
10823
10824         * lib/glob_.h, lib/glob.c: New files.
10825
10826 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
10827
10828         * modules/fts (Files): Remove m4/inttypes-pri.m4.
10829         * modules/fts-lgpl (Depends-on): Remove gettext.
10830
10831 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
10832
10833         * m4/fts.m4 (gl_FUNC_FTS_CORE): Don't check for inttypes.h or stdint.h,
10834         and don't require gt_INTTYPES_PRI.
10835
10836 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
10837
10838         * lib/getlogin_r.c (getlogin_r): Don't set errno to 0 on return.
10839
10840         * lib/fts.c: Don't worry about debugging on pre-C99-compatible hosts;
10841         the configuration hassle isn't worth it.
10842         Include inttypes.h and stdint.h unconditionally if FTS_DEBUG.
10843         (LONGEST_MODIFIER, PRIuMAX): Remove.
10844
10845 2005-05-27  Bruno Haible  <bruno@clisp.org>
10846
10847         * lib/getlogin_r.h: Remove second include of <stddef.h>.
10848
10849 2005-05-26  Paul Eggert  <eggert@cs.ucla.edu>
10850
10851         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Define
10852         _POSIX_PTHREAD_SEMANTICS for Solaris.
10853
10854 2005-05-25  Derek Price  <derek@ximbiot.com>
10855
10856         * MODULES.html.sh: Add getlogin_r to POSIX.2001 support section.
10857
10858 2005-05-25  Derek Price  <derek@ximbiot.com>
10859             Paul Eggert  <eggert@cs.ucla.edu>
10860
10861         * modules/getlogin_r, m4/getlogin_r.m4: New files.
10862         * lib/getlogin_r.c, getlogin_r.h: New files.
10863
10864 2005-05-25  Bruno Haible  <bruno@clisp.org>
10865             Derek Price  <derek@ximbiot.com>
10866
10867         * lib/getlogin_r.h: Simplify API documentation.
10868
10869 2005-05-23  Derek Price  <derek@ximbiot.com>
10870
10871         * modules/minmax (Files): Add m4/minmax.m4.
10872         (configure.ac): Add gl_MINMAX.
10873
10874 2005-05-22  Paul Eggert  <eggert@cs.ucla.edu>
10875
10876         * lib/fts.c (fd_safer) [_LGPL_PACKAGE]: New static function,
10877         so that unistd-safer.h (GPL'ed code) need not be included.
10878
10879 2005-05-22  Bruno Haible  <bruno@clisp.org>
10880
10881         * m4/minmax.m4: New file.
10882         Based on a patch by Derek Price <derek@ximbiot.com>.
10883
10884 2005-05-22  Bruno Haible  <bruno@clisp.org>
10885
10886         * lib/stdint_.h (_STDINT_H_HAVE_INT64): New macro. Use it in #ifdefs.
10887         (INT64_MIN): Fix definition.
10888         Suggested by Paul Eggert <eggert@cs.ucla.edu>.
10889
10890         * lib/stdint_.h (_STDINT_H_NEED_SIGNED_INT_TYPES): Renamed from
10891         NEED_SIGNED_INT_TYPES.
10892
10893         * lib/stdint_.h (_STDINT_H_HAVE_SYSTEM_INTTYPES): Renamed from
10894         HAVE_SYSTEM_INTTYPES.
10895
10896 2005-05-22  Bruno Haible  <bruno@clisp.org>
10897
10898         * lib/minmax.h: Include <limits.h> only when it defines MIN, MAX.
10899         Also include <sys/param.h> if it defines MIN, MAX.
10900         Based on a patch by Derek Price <derek@ximbiot.com>.
10901
10902 2005-05-21  Jim Meyering  <jim@meyering.net>
10903
10904         * modules/fts (Files): Add m4/inttypes-pri.m4.
10905         (Depends-on): Add lstat and remove gettext.  Alphabetize.
10906
10907 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
10908
10909         New fts module.
10910         * lib/fts.c: Don't include "cycle-check.h" or "hash.h".
10911         (setup_dir, free_dir): New functions.
10912         (enter_dir, leave_dir): Define trivial
10913         alternatives of _LGPL_PACKAGE.  Move to fts-cycle.c if !_LGPL_PACKAGE.
10914         (HT_INITIAL_SIZE, ENTER_DIR): Remove.  All uses removed.
10915         (LEAVE_DIR): Fix typo: pass Fts and Ent to leave_dir.
10916         (struct Active_dir, AD_compare, AD_hash, enter_dir, leave_dir):
10917         Move to fts-cycle.c.
10918         (fts_open): Use setup_dir.
10919         (fts_close): Use free_dir.
10920         (fts_read): Have just one copy of the ENTER_DIR code rather than three.
10921         This adds a label and some gotos, but the alternatives were messier.
10922         Check for memory allocation failure when entering a dir.
10923         (fts_stat) [_LGPL_PACKAGE]: Bring back glibc cycle detection code.
10924         * lib/fts_.h (_LGPL_PACKAGE) [defined _LIBC]: New macro.
10925         (FTS): New member fts_cycle, that is a union that contains the
10926         old active_dir_ht and cycle_state.  All uses changed to mention
10927         fts_cycle.ht and fts_cycle.state.
10928         * lib/fts-cycle.c: New file, containing GPL'ed code migrated out of
10929         fts.c, with the following changes:
10930         (setup_dir, free_dir): New functions.
10931         (enter_dir): Now returns bool.  Return true if successful, false
10932         if memory exhausted.  All callers changed.
10933         Do not bother partly cleaning up on
10934         memory allocation failure; that is free_dir's job.
10935         However, free ad if hash_insert fails, to avoid memory leak.
10936         (enter_dir, leave_dir): Accommodate change to FTS by inspecting
10937         fts->fts_options to see which union member to use.
10938
10939 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
10940
10941         * m4/fts.m4 (gl_FUNC_FTS_CORE): Renamed from gl_FUNC_FTS.
10942         (gl_FUNC_FTS, gl_FUNC_FTS_LGPL): New macros.
10943
10944 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
10945
10946         * MODULES.html.sh (File system functions): Add fts, fts-lgpl.
10947
10948 2005-05-20  Jim Meyering  <jim@meyering.net>
10949
10950         * lib/unlinkdir.h (cannot_unlink_dir) [UNLINK_CANNOT_UNLINK_DIR]:
10951         Now a macro, to pacify GCC.
10952
10953 2005-05-20  Eric Blake  <ebb9@byu.net>  (tiny change)
10954
10955         * m4/chown.m4 (gl_FUNC_CHOWN): Correct sense of test for honoring IDs
10956         of -1.
10957
10958 2005-05-20  Eric Blake  <ebb9@byu.net>  (tiny change)
10959
10960         * lib/chown.c (rpl_chown): Return -1 on failure.
10961
10962 2005-05-18  Paul Eggert  <eggert@cs.ucla.edu>
10963
10964         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME]):
10965         Don't check for stddef.h.
10966         * m4/fts.m4 (gl_FUNC_FTS): Don't require AC_HEADER_STDC, as we
10967         don't use its results.
10968         Don't check for fcntl.h, stddef.h, stdlib.h, string.h, unistd.h,
10969         since we include them unconditionally.  Don't require
10970         AM_STDBOOL_H, since stdbool is a prerequisite.
10971         Don't require AC_C_CONST, AC_TYPE_SIZE_T or check for ptrdiff_t
10972         since we assume C89 or better.
10973         Don't require AC_FUNC_CLOSEDIR_VOID, AC_FUNC_LSTAT, or AC_FUNC_STAT,
10974         as we don't use their results.
10975         Don't check for fchdir, memmove, memset, strrchr, as we use
10976         them unconditionally.
10977         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER): Don't define
10978         GETTIMEOFDAY_CLOBBERS_LOCALTIME_BUFFER, since nobody uses it.
10979
10980 2005-05-18  Paul Eggert  <eggert@cs.ucla.edu>
10981
10982         * lib/canonicalize.c: Include canonicalize.h first, to test interface.
10983         Include <stddef.h> unconditionally, since we assume C89 now.
10984         All uses of PTR_INT_TYPE replaced by ptrdiff_t.
10985         * lib/fts.c: Include fts_.h first, to check interface.
10986         Do not include intprops.h; no longer needed.
10987         Include cycle-check.h and hash.h, since fts_.h no longer does.
10988         Remove unnecessary casts of closedir to void.
10989         (fts_build): Use a simpler method (not involving TYPE_SIGNED) to
10990         decide whether to decrement nlinks.
10991         * lib/fts_.h: Do not include hash.h or cycle-check.h; no longer needed.
10992         (FTS): Use struct hash_table * instead of Hash_table, so that
10993         we no longer need to include hash.h here.
10994
10995 2005-05-18  Jim Meyering  <jim@meyering.net>
10996
10997         * modules/dirfd (License): Change to LGPL.  Most of the code
10998         is already in the public domain.
10999
11000 2005-05-18  Jim Meyering  <jim@meyering.net>
11001
11002         * m4/fts.m4 (AC_LIBSOURCES): Add intprops.h to the list.
11003         Reported by Yoann Vandoorselaere.
11004
11005 2005-05-17  Jim Meyering  <jim@meyering.net>
11006
11007         * m4/fts.m4: New file, from coreutils.
11008
11009 2005-05-17  Jim Meyering  <jim@meyering.net>
11010
11011         * lib/fts.c, lib/fts_.h: New files, from coreutils.
11012
11013 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
11014
11015         Sync from coreutils.
11016         * m4/unlinkdir.m4: New file.
11017
11018 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
11019
11020         Sync from coreutils.
11021         * lib/unlinkdir.c, lib/unlinkdir.h: New files.
11022         * lib/gethrxtime.c, lib/gethrxtime.h, lib/getpass.h, lib/mountlist.h,
11023         lib/path-concat.c, lib/regex.h, lib/unlocked-io.h, lib/xtime.h:
11024         White space changes only.
11025         * lib/makepath.c (make_path): Port to hosts where leading "//" is
11026         special.
11027         * lib/yesno.c: Include getline.h, not ctype.h.
11028         (yesno): Don't remove leading white space; POSIX doesn't allow it.
11029         Use getline to remove arbitrary restriction on response length.
11030
11031 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
11032
11033         * config/srclist-update: Spell out "Street" in FSF postal
11034         mail address; this is the style the FSF seems to prefer.
11035
11036         * build-aux/depcomp, build-aux/install-sh, build-aux/mdate-sh,
11037         build-aux/missing, build-aux/mkinstalldirs: Sync from Automake;
11038         this updates FSF postal mail address.
11039
11040         Sync from coreutils.
11041         * modules/unlinkdir: New file.
11042         * modules/yesno (Depends-on): Add getline.
11043         * MODULES.html.sh (File system functions): Add unlinkdir.
11044
11045 2005-05-13  Paul Eggert  <eggert@cs.ucla.edu>
11046
11047         * lib/byteswap_.h, lib/getsubopt.h, lib/iconvme.h, lib/strsep.c,
11048         lib/strsep.h:
11049         Change the initial comment to refer to GPL, not LGPL.
11050         gnulib-tool will change it to LGPL as needed.
11051
11052         * lib/__fpending.c, lib/acl.c, lib/acl.h, lib/alloca_.h, lib/allocsa.c,
11053         lib/allocsa.h, lib/argmatch.c, lib/argmatch.h, lib/argp-ba.c,
11054         lib/argp-eexst.c, lib/argp-fmtstream.c, lib/argp-fmtstream.h,
11055         lib/argp-fs-xinl.c, lib/argp-help.c, lib/argp-namefrob.h,
11056         lib/argp-parse.c, lib/argp-pv.c, lib/argp-pvh.c, lib/argp-xinl.c,
11057         lib/argp.h, lib/argz.c, lib/argz_.h, lib/asnprintf.c, lib/asprintf.c,
11058         lib/atanl.c, lib/backupfile.c, lib/backupfile.h, lib/base64.c,
11059         lib/base64.h, lib/basename.c, lib/binary-io.h, lib/byteswap_.h,
11060         lib/c-ctype.c, lib/c-ctype.h, lib/c-stack.c, lib/c-stack.h,
11061         lib/c-strtod.c, lib/calloc.c, lib/canon-host.c, lib/canonicalize.c,
11062         lib/canonicalize.h, lib/ceill.c, lib/chdir-long.c, lib/chdir-long.h,
11063         lib/chown.c, lib/classpath.c, lib/classpath.h, lib/cloexec.c,
11064         lib/closeout.c, lib/closeout.h, lib/concatpath.c, lib/config.charset,
11065         lib/copy-file.c, lib/copy-file.h, lib/cycle-check.c, lib/cycle-check.h,
11066         lib/diacrit.c, lib/diacrit.h, lib/dirfd.c, lib/dirfd.h, lib/dirname.c,
11067         lib/dirname.h, lib/dummy.c, lib/dup-safer.c, lib/dup2.c, lib/eealloc.h,
11068         lib/error.c, lib/error.h, lib/euidaccess.c, lib/exclude.c,
11069         lib/exclude.h, lib/execute.c, lib/execute.h, lib/exit.h,
11070         lib/exitfail.c, lib/exitfail.h, lib/expl.c, lib/fatal-signal.c,
11071         lib/fatal-signal.h, lib/fd-safer.c, lib/file-type.c, lib/file-type.h,
11072         lib/fileblocks.c, lib/filemode.c, lib/filemode.h, lib/findprog.c,
11073         lib/findprog.h, lib/floorl.c, lib/fnmatch.c, lib/fnmatch_.h,
11074         lib/fnmatch_loop.c, lib/fopen-safer.c, lib/free.c, lib/frexpl.c,
11075         lib/fsusage.c, lib/fsusage.h, lib/full-read.c, lib/full-read.h,
11076         lib/full-write.c, lib/full-write.h, lib/fwriteerror.c,
11077         lib/fwriteerror.h, lib/gai_strerror.c, lib/gcd.c, lib/gcd.h,
11078         lib/getaddrinfo.c, lib/getaddrinfo.h, lib/getcwd.c, lib/getcwd.h,
11079         lib/getdate.h, lib/getdate.y, lib/getdomainname.c, lib/getdomainname.h,
11080         lib/getgroups.c, lib/gethostname.c, lib/gethrxtime.c, lib/gethrxtime.h,
11081         lib/getline.c, lib/getline.h, lib/getloadavg.c, lib/getndelim2.c,
11082         lib/getndelim2.h, lib/getnline.c, lib/getnline.h, lib/getopt.c,
11083         lib/getopt1.c, lib/getopt_.h, lib/getopt_int.h, lib/getpagesize.h,
11084         lib/getpass.c, lib/getpass.h, lib/getsubopt.c, lib/getsubopt.h,
11085         lib/gettext.h, lib/gettime.c, lib/gettimeofday.c, lib/getugroups.c,
11086         lib/getusershell.c, lib/group-member.c, lib/group-member.h,
11087         lib/hard-locale.c, lib/hard-locale.h, lib/hash-pjw.c, lib/hash-pjw.h,
11088         lib/hash.c, lib/hash.h, lib/human.c, lib/human.h, lib/iconvme.c,
11089         lib/iconvme.h, lib/idcache.c, lib/inet_ntop.h, lib/intprops.h,
11090         lib/inttostr.c, lib/inttostr.h, lib/isdir.c, lib/javacomp.c,
11091         lib/javacomp.h, lib/javacomp.sh.in, lib/javaexec.c, lib/javaexec.h,
11092         lib/javaexec.sh.in, lib/lbrkprop.h, lib/lchown.c, lib/ldexpl.c,
11093         lib/linebreak.c, lib/linebreak.h, lib/linebuffer.c, lib/linebuffer.h,
11094         lib/localcharset.c, lib/localcharset.h, lib/logl.c, lib/long-options.c,
11095         lib/long-options.h, lib/lstat.c, lib/makepath.c, lib/makepath.h,
11096         lib/malloc.c, lib/mathl.h, lib/mbswidth.c, lib/mbswidth.h, lib/md5.c,
11097         lib/md5.h, lib/memcasecmp.c, lib/memcasecmp.h, lib/memchr.c,
11098         lib/memcmp.c, lib/memcoll.c, lib/memcoll.h, lib/memcpy.c, lib/memmem.c,
11099         lib/memmem.h, lib/mempcpy.c, lib/mempcpy.h, lib/memrchr.c,
11100         lib/memrchr.h, lib/memset.c, lib/minmax.h, lib/mkdir.c, lib/mkdtemp.c,
11101         lib/mkdtemp.h, lib/mkstemp.c, lib/mktime.c, lib/modechange.c,
11102         lib/modechange.h, lib/mountlist.c, lib/mountlist.h, lib/nanosleep.c,
11103         lib/obstack.c, lib/obstack.h, lib/openat.c, lib/openat.h,
11104         lib/pagealign_alloc.c, lib/pagealign_alloc.h, lib/path-concat.c,
11105         lib/path-concat.h, lib/pathmax.h, lib/pathname.h, lib/physmem.c,
11106         lib/physmem.h, lib/pipe.c, lib/pipe.h, lib/poll.c, lib/poll_.h,
11107         lib/posixtm.c, lib/posixtm.h, lib/posixver.c, lib/printf-args.c,
11108         lib/printf-args.h, lib/printf-parse.c, lib/printf-parse.h,
11109         lib/progname.c, lib/progname.h, lib/progreloc.c, lib/putenv.c,
11110         lib/quote.c, lib/quote.h, lib/quotearg.c, lib/quotearg.h, lib/raise.c,
11111         lib/readlink.c, lib/readtokens.c, lib/readtokens.h, lib/readtokens0.c,
11112         lib/readtokens0.h, lib/readutmp.c, lib/readutmp.h, lib/realloc.c,
11113         lib/ref-add.sin, lib/ref-del.sin, lib/regex.c, lib/regex.h,
11114         lib/rename.c, lib/rmdir.c, lib/rpmatch.c, lib/safe-read.c,
11115         lib/safe-read.h, lib/safe-write.c, lib/safe-write.h, lib/same.c,
11116         lib/same.h, lib/save-cwd.c, lib/save-cwd.h, lib/savedir.c,
11117         lib/savedir.h, lib/setenv.c, lib/setenv.h, lib/settime.c,
11118         lib/sh-quote.c, lib/sh-quote.h, lib/sha1.c, lib/sha1.h, lib/sig2str.c,
11119         lib/sig2str.h, lib/sincosl.c, lib/snprintf.c, lib/snprintf.h,
11120         lib/sqrtl.c, lib/stat-macros.h, lib/stat.c, lib/stdbool_.h,
11121         lib/stdint_.h, lib/stdio-safer.h, lib/stpcpy.c, lib/stpcpy.h,
11122         lib/stpncpy.c, lib/stpncpy.h, lib/strcase.h, lib/strcasecmp.c,
11123         lib/strchrnul.c, lib/strchrnul.h, lib/strcspn.c, lib/strdup.c,
11124         lib/strdup.h, lib/strerror.c, lib/strftime.c, lib/strftime.h,
11125         lib/stripslash.c, lib/strndup.c, lib/strndup.h, lib/strnlen.c,
11126         lib/strpbrk.c, lib/strpbrk.h, lib/strsep.c, lib/strsep.h, lib/strstr.c,
11127         lib/strstr.h, lib/strtod.c, lib/strtoimax.c, lib/strtok_r.c,
11128         lib/strtok_r.h, lib/strtol.c, lib/strtoll.c, lib/strtoul.c,
11129         lib/strtoull.c, lib/strverscmp.c, lib/strverscmp.h, lib/sysexit_.h,
11130         lib/tempname.c, lib/time_r.c, lib/time_r.h, lib/timegm.c, lib/timegm.h,
11131         lib/timespec.h, lib/trigl.c, lib/trigl.h, lib/ucs4-utf16.h,
11132         lib/ucs4-utf8.h, lib/unicodeio.c, lib/unicodeio.h, lib/unistd-safer.h,
11133         lib/unlocked-io.h, lib/unsetenv.c, lib/userspec.c, lib/utf16-ucs4.h,
11134         lib/utf8-ucs4.h, lib/utime.c, lib/utimecmp.c, lib/utimecmp.h,
11135         lib/utimens.c, lib/vasnprintf.c, lib/vasnprintf.h, lib/vasprintf.c,
11136         lib/vasprintf.h, lib/version-etc-fsf.c, lib/version-etc.c,
11137         lib/version-etc.h, lib/vsnprintf.c, lib/vsnprintf.h, lib/w32spawn.h,
11138         lib/wait-process.c, lib/wait-process.h, lib/xalloc-die.c, lib/xalloc.h,
11139         lib/xallocsa.c, lib/xallocsa.h, lib/xasprintf.c, lib/xgetcwd.c,
11140         lib/xgetcwd.h, lib/xgetdomainname.c, lib/xgetdomainname.h,
11141         lib/xgethostname.c, lib/xmalloc.c, lib/xmemcoll.c, lib/xnanosleep.c,
11142         lib/xreadlink.c, lib/xreadlink.h, lib/xsetenv.c, lib/xsetenv.h,
11143         lib/xsize.h, lib/xstrndup.c, lib/xstrndup.h, lib/xstrtod.c,
11144         lib/xstrtod.h, lib/xstrtoimax.c, lib/xstrtol.c, lib/xstrtol.h,
11145         lib/xstrtoumax.c, lib/xtime.h, lib/xvasprintf.c, lib/xvasprintf.h,
11146         lib/yesno.c, lib/yesno.h:
11147         Update FSF postal mail address.
11148
11149 2005-05-13  Paul Eggert  <eggert@cs.ucla.edu>
11150
11151         * MODULES.html.sh, README, gnulib-tool, tests/test-base64.c,
11152         tests/test-memmem.c, tests/test-stpncpy.c:
11153         Update FSF postal mail address.
11154
11155 2005-05-13  Bruno Haible  <bruno@clisp.org>
11156
11157         * lib/stdint_.h (int64_t, uint64_t, int_least64_t, uint_least64_t,
11158         int_fast64_t, uint_fast64_t, intmax_t, uintmax_t, INT64_MIN, INT64_MAX,
11159         UINT64_MAX, INT_LEAST64_MIN, INT_LEAST64_MAX, UINT_LEAST64_MAX,
11160         INT_FAST64_MIN, INT_FAST64_MAX, UINT_FAST64_MAX, INTMAX_MIN,
11161         INTMAX_MAX, UINTMAX_MAX, INT64_C, UINT64_C, INTMAX_C, UINTMAX_C):
11162         Add support for 64-bit integers in the MSVC compiler.
11163
11164 2005-05-12  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
11165
11166         * modules/getdate (Makefile.am): Add getdate.c to EXTRA_DIST
11167
11168 2005-05-12  Eric Blake  <ebb9@byu.net>  (tiny change)
11169
11170         * gnulib-tool (func_import): Sort and uniquify recommended includes.
11171
11172 2005-05-11  Paul Eggert  <eggert@cs.ucla.edu>
11173
11174         * doc/getdate.texi (General date syntax): Don't say that date
11175         date --iso-8601=ns generates acceptable dates; it doesn't yet.
11176         Problem reported by Nic Ferrier.
11177
11178 2005-05-10  Yoann Vandoorselaere <yoann.v@prelude-ids.com>
11179
11180         * lib/getaddrinfo.c: Don't fail when SOCK_STREAM or SOCK_DGRAM are
11181         specified in ai_socktype. Fix invalid ai_protocol
11182         check. ai_protocol is usually set to 0 or depending on
11183         ai_family/ai_socktype to IPPROTO_TCP / IPPROTO_UDP.  Checking for
11184         SOCK_STREAM / SOCK_DGRAM in ai_protocol was invalid.  Set
11185         ai_socktype / ai_protocol in the returned addrinfo structure.
11186
11187 2005-05-10  Simon Josefsson  <jas@extundo.com>
11188
11189         * m4/getaddrinfo.m4: Look in libnsl/libsocket for getaddrinfo, from
11190         Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
11191
11192 2005-05-10  Karl Berry  <karl@gnu.org>
11193
11194         * doc/fdl.texi, gpl.texi, lgpl.texi, COPYING: update FSF address
11195         (from http://www.gnu.org/licenses).
11196         * doc/COPYING.LIB: also rename to COPYING.LESSER.
11197         * doc/COPYING.DOC: remove; per rms, only needed in doc files, so
11198         fdl.texi suffices.
11199
11200 2005-05-10  Karl Berry  <karl@gnu.org>
11201
11202         * config/srclist.txt (COPYING.LESSER): rename from COPYING.LIB.
11203         (COPYING.DOC): remove.
11204
11205         * config/srclist-update: new FSF address.
11206
11207 2005-05-10  Derek Price  <derek@ximbiot.com>
11208
11209         * m4/getopt.m4 (gl_GETOPT): Check for Solaris 10 bug, not decl, when
11210         possible.
11211
11212 2005-05-09  Yoann Vandoorselaere <yoann.v@prelude-ids.com>
11213             Bruno Haible  <bruno@clisp.org>
11214
11215         * modules/inet_ntop: New file.
11216         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
11217         inet_ntop.
11218
11219 2005-05-09  Yoann Vandoorselaere <yoann.v@prelude-ids.com>
11220             Bruno Haible  <bruno@clisp.org>
11221
11222         * m4/inet_ntop.m4: New file.
11223
11224 2005-05-09  Yoann Vandoorselaere <yoann.v@prelude-ids.com>
11225             Bruno Haible  <bruno@clisp.org>
11226
11227         * lib/inet_ntop.h: New file.
11228         * lib/inet_ntop.c: New file, from glibc with modifications.
11229
11230 2005-05-09  Paul Eggert  <eggert@cs.ucla.edu>
11231
11232         * modules/time_r (License): Change to LGPL.
11233         * modules/extensions (License): Change to LGPL.  Actually,
11234         the license is more permissive than that, but currently gnulib-tool
11235         doesn't know how to handle more-permissive licenses.
11236
11237         * modules/stat-macros (Depends-on): Don't depend on stat-macros (!).
11238         Problem reported by Dave Love.
11239
11240 2005-05-08  Jim Meyering  <jim@meyering.net>
11241
11242         * lib/classpath.c (PATH_SEPARATOR): Remove insignificant trailing
11243         blank.
11244
11245 2005-05-06  Paul Eggert  <eggert@cs.ucla.edu>
11246
11247         * modules/argmatch (Depends-on): Add stdbool.
11248         * modules/backupfile (Depends-on): Likewise.
11249         * modules/chdir-long (Depends-on): Likewise.
11250         * modules/closeout (Depends-on): Likewise.
11251         * modules/cycle-check (Depends-on): Likewise.
11252         * modules/dirname (Depends-on): Likewise.
11253         * modules/fnmatch (Depends-on): Likewise.
11254         * modules/fsusage (Depends-on): Likewise.
11255         * modules/fwriteerror (Depends-on): Likewise.
11256         * modules/getcwd (Depends-on): Likewise.
11257         * modules/getloadavg (Depends-on): Likewise.
11258         * modules/hard-locale (Depends-on): Likewise.
11259         * modules/makepath (Depends-on): Likewise.
11260         * modules/mountlist (Depends-on): Likewise.
11261         * modules/nanosleep (Depends-on): Likewise.
11262         * modules/posixtm (Depends-on): Likewise.
11263         * modules/quotearg (Depends-on): Likewise.
11264         * modules/readtokens (Depends-on): Likewise.
11265         * modules/readtokens0 (Depends-on): Likewise.
11266         * modules/readutmp (Depends-on): Likewise.
11267         * modules/save-cwd (Depends-on): Likewise.
11268         * modules/strftime (Depends-on): Likewise.
11269         * modules/userspec (Depends-on): Likewise.
11270         * modules/utimecmp (Depends-on): Likewise.
11271         * modules/xgetcwd (Depends-on): Likewise.
11272         * modules/xnanosleep (Depends-on): Likewise.
11273         * modules/xstrtod (Depends-on): Likewise.
11274         * modules/yesno (Depends-on): Likewise.
11275
11276 2005-05-05  Paul Eggert  <eggert@cs.ucla.edu>
11277
11278         * m4/getopt.m4 (gl_GETOPT): Check for Solaris 10 getopt, and avoid
11279         needless checks.
11280
11281 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
11282
11283         Merge from coreutils.  Among other things,
11284         add bulletproofing for cases where stdin, stdout, or stderr are closed.
11285         * lib/fd-safer.c: New file.
11286         * lib/fcntl-safer.h, open-safer.c: Remove.
11287         * lib/chdir-long.c: Fix comment "fetish" -> "coreutils".
11288         * lib/dup-safer.c: Include unistd-safer.h first.
11289         Don't include errno.h.
11290         (dup_safer) [!defined F_DUPFD]: Let fd_safer do the real work.
11291         * lib/file-type.h: Don't assume invoker included sys/stat.h first.
11292         * lib/file-type.c: Rely on file-type.h change.
11293         * lib/getloadavg.c: Include unistd-safer.h.
11294         (getloadavg): Use safer open.
11295         * lib/getusershell.c: Include "stdio-safer.h".
11296         (getusershell): Use safer fopen.
11297         * lib/long-options.c (long_options): Use NULL rather than 0.
11298         * lib/modechange.h (mode_free): Remove; all callers changed to invoke
11299         'free'.
11300         * lib/modechange.c: Likewise.
11301         xstrtol.h, stdbool.h, stddef.h: Don't include; no longer needed.
11302         (MODE_DONE): New constant.
11303         (struct mode_change): Remove 'next' member.
11304         (make_node_op_equals): New function; like the old one of the
11305         same name, except it allocates an array.
11306         (mode_compile, mode_create_from_ref): Use it.
11307         (mode_compile): Allocate result as an array, not a linked list.
11308         Parse octal string ourself, so that we catch mistakes like "+0".
11309         (mode_adjust): Arg is an array, not a linked list.
11310         * lib/modechange.c: Include stat-macros.h, xalloc.h.
11311         (S_ISDIR, S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR):
11312         (S_IRGRP, S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH, S_IRXWU):
11313         (S_IRWXG, S_IRWXO, CHMOD_MODE_BITS):
11314         Remove.  This is now stat-macros.h's job.
11315         (talloc): Remove.  All callers replaced by xalloc, so that
11316         our invokers don't have to worry about reporting memory failures.
11317         (make_node_op_equals): Remove.
11318         (MODE_ORDINARY_CHAGE, MODE_X_IF_ANY_X, MODE_COPY_EXISTING):
11319         New constants.
11320         (struct mode_change): Moved here from modechange.h.
11321         (mode_append_entry): Remove.
11322         (mode_compile): Remove MASKED_OPS arg, since it encouraged
11323         apps to have incorrect behavior.  Use simpler algorithm for head
11324         and tail.  Don't futz with umask; that's now the job of mode_adjust.
11325         Detect more invalid usages rather than having somewhat-random behavior.
11326         Don't insert an "a=" action, as that leads to incorrect behavior.
11327         (mode_compile, mode_create_from_ref): Return NULL on error instead
11328         of an enum, since now there's only one way to have an error.  All
11329         callers changed.
11330         (mode_adjust): Accept new arg UMASK_VALUE, and interpret it
11331         at the correct time.  Simplify calculation of "+u" and its ilk.
11332         Don't mishandle "+X".
11333         (mode_free): Remove "register" and localize decls.
11334         * lib/modechange.h (MODE_X_IF_ANY_X, MODE_COPY_EXISTING):
11335         (struct mode_change): Move to modechange.c; callers don't
11336         need to see this stuff.
11337         (MODE_MASK_EQUALS, MODE_MASK_PLUS, MODE_MASK_MINUS, MODE_MASK_ALL):
11338         (MODE_INVALID, MODE_MEMORY_EXHAUSTED, MODE_BAD_REFERENCE): Remove.
11339         (mode_change, mode_adjust): Reflect the new signatures noted above.
11340         * lib/nanosleep.c (rpl_nanosleep): Include "timespec.h" before macros
11341         that might redefine system include files.
11342         (siginterrupt) [!HAVE_SIGINTERRUPT]: New macro.
11343         (my_usleep): Use NULL rather than (void *) 0.
11344         (rpl_nanosleep) [!defined SA_NOCLDSTOP]:
11345         Use siginterrupt to specify that system calls should be interrupted.
11346         (rpl_nanosleep): Move initialization of suspended closer to call of
11347         my_usleep.
11348         * lib/readutmp.h (read_utmp): New arg OPTIONS.  All uses changed.
11349         * lib/readutmp.c: Likewise.  Include signal.h, stdbool.h.
11350         (desirable_utmp_entry): New function.
11351         (read_utmp) [defined UTMP_NAME_FUNCTION]: Redo memory allocation
11352         using x2nrealloc, to simplify logic.
11353         (read_utmp) [!defined UTMP_NAME_FUNCTION]: Check for overflow in
11354         size calculation.  Do not assume utmp file is a regular file.
11355         * lib/readutmp.h (UT_PID): Moved here from ../src/who.c.
11356         (READ_UTMP_CHECK_PIDS): New constant.
11357         * lib/save-cwd.c: Include unistd-safer.h.
11358         (save_cwd): Use fd_safer.
11359         * lib/tempname.c (S_ISDIR, S_IRUSR, S_IRUSR, S_IWUSR, S_IXUSR): Remove.
11360         [!_LIBC] Include "stat-macros.h" instead.
11361         * lib/unistd-safer.h (fd_safer): New decl.
11362
11363 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
11364
11365         * modules/getloadavg (Depends-on): Add unistd-safer.
11366         * modules/getusershell (Depends-on): Add stdio-safer.
11367         * modules/lstat (Depends-on): Remove xalloc.
11368         * modules/mkstemp (Depends-on): Add stat-macros.
11369         * modules/modechange (Depends-on): Remove xstrtol.
11370         Add stat-macros, xalloc.
11371         * modules/save-cwd (Depends-on): Add unistd-safer.
11372         * modules/stdio-safer (Makefile.am): Remove lib_SOURCES.
11373         * modules/unistd-safer (Files): Add lib/fd-safer.c
11374         (Makefile.am): Remove lib_SOURCES.
11375
11376         * MODULES.html.sh (Enhancements for POSIX:2001 functions):
11377         Remove fcntl-safer; unistd-safer supersedes it.
11378
11379 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
11380
11381         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Don't require
11382         AC_HEADER_STAT.
11383         * m4/lchown.m4 (gl_FUNC_CHOWN): Likewise.
11384         (gl_PREREQ_CHOWN): Remove.
11385         * m4/lstat.m4 (gl_FUNC_LSTAT): Require AC_FUNC_LSTAT instead of calling
11386         it.  Don't require AC_HEADER_STAT.
11387         (gl_PREREQ_LSTAT): Remove.
11388         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Check stdint.h only once.
11389         Don't require AC_HEADER_STAT.
11390         * m4/rmdir.m4 (gl_FUNC_RMDIR): Don't require AC_HEADER_STAT.
11391         (gl_PREREQ_RMDIR): Remove.
11392         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME): Don't
11393         mention stat-macros.h or AC_HEADER_STAT, since we'll make
11394         the stat-macros module a prerequisite.
11395         * m4/file-type.m4 (gl_FILE_TYPE): Likewise.
11396         * m4/filemode.m4 (gl_FILEMODE): Likewise.
11397         * m4/makepath.m4 (gl_MAKEPATH): Likewise.
11398         * m4/modechange.m4 (gl_MODECHANGE): Likewise.
11399         * m4/clock_time.m4 (gl_CLOCK_TIME): Use gl_ rather than fetish_ for
11400         variable names.
11401         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Renamed from
11402         fetish_FUNC_RMDIR_NOTEMPTY.  All uses changed.  Use gl_ for
11403         variable prefixes.
11404         * m4/fcntl-safer.m4: Remove.
11405         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Use AC_LIBSOURCES and AC_LIBOBJ.
11406         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Likewise.
11407         Invoke gl_PREREQ_FD_SAFER.
11408         (gl_PREREQ_FD_SAFER): New macro.
11409         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): Check for siginterrupt.
11410         * m4/readutmp.m4 (gl_READUTMP): Require AC_C_INLINE.
11411         Use AC_CHECK_HEADERS_ONCE and AC_CHECK_FUNCS_ONCE when possible.
11412         Remove duplicate call to AC_LIBOBJ(readutmp).
11413         (gl_PREREQ_READUTMP): Remove.  All uses inlined.
11414
11415         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Check for message, not for
11416         MAP_ANON.  Problem reported by Moriyoshi Koizumi to bug-cvs.
11417
11418 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
11419
11420         * MODULES.html.sh (Misc): Add byteswap.
11421
11422 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
11423
11424         * modules/getcwd (Depends-on): Add extensions.
11425         * modules/openat (Depends-on): Likewise.
11426
11427 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
11428
11429         * modules/byteswap: New file.
11430
11431 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
11432
11433         * m4/byteswap.m4: New file.
11434
11435 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
11436
11437         * lib/byteswap_.h: New file.
11438
11439 2005-04-25  Karl Berry  <karl@gnu.org>
11440
11441         * m4/gettext.m4: Update from GNU gettext 0.14.4.
11442
11443 2005-04-25  Albert Chin  <china@thewrittenword.com>
11444
11445         * lib/regex.c: Include <stdio.h>, as a workaround to a Compaq Desktop
11446         Toolkit C bug.
11447
11448 2005-04-21  Oskar Liljeblad  <oskar@osk.mine.nu>
11449
11450         * gnulib-tool (Options): Add -s for --symlink/--symbolic.
11451         (func_ln_if_changed) Remove forcibly for no error message
11452         in case file does not exist.
11453
11454 2005-04-19  Simon Josefsson  <jas@extundo.com>
11455
11456         * gnulib-tool (Options): Make --symlink mean --symbolic.
11457
11458 2005-04-18  Oskar Liljeblad <oskar@osk.mine.nu>
11459
11460         * doc/gnulib.texi (Initial import): Fix.  Mention --aux-dir.
11461
11462 2005-04-16  Simon Josefsson  <jas@extundo.com>
11463
11464         * modules/getpass-gnu (Makefile.am): Don't mention getpass.h.
11465
11466 2005-04-15  Simon Josefsson  <jas@extundo.com>
11467
11468         * m4/getpass.m4 (gl_FUNC_GETPASS): Use AC_LIBSOURCES.
11469
11470 2005-04-15  Simon Josefsson  <jas@extundo.com>
11471
11472         * gnulib-tool: Rename --symlink to --symbolic.
11473
11474 2005-04-15  Oskar Liljeblad <oskar@osk.mine.nu>
11475
11476         * gnulib-tool: Add -s, --symlink option to gnulib-tool to make
11477         symbolic links to files instead of copying/moving.  Add --aux-dir,
11478         specifying directory relative --dir where auxiliary build tools
11479         are placed.
11480
11481 2005-04-14  Bruno Haible  <bruno@clisp.org>
11482
11483         * modules/allocsa (License): Change to LGPL.
11484         Requested by Yoann Vandoorselaere <yoann@prelude-ids.org>.
11485
11486 2005-04-13  Paul Eggert  <eggert@cs.ucla.edu>
11487
11488         * lib/getdate.y (zone): Allow relunit_snumber after tZONE, so
11489         that "UTC +1 second" continues to work.  Problem reported
11490         by Dmitry V. Levin.
11491         (relunit_snumber): New rule.
11492         (relunit): Use it.
11493
11494 2005-04-12  Paul Eggert  <eggert@cs.ucla.edu>
11495
11496         * lib/getdate.y (universal_time_zone_table): New constant.
11497         (time_zone_table): Remove GMT, UT, UTC entries; they're now in
11498         universal_time_zone_table.
11499         (lookup_zone): Prefer universal_time_zone_table to
11500         local_time_zone_table, so that "GMT" time stamps are allowed in
11501         London during the summer.  Problem reported by Ian Abbott.
11502
11503 2005-04-12  Jim Meyering  <jim@meyering.net>
11504
11505         * lib/human.c (humblock): Set *options even when returning due to
11506         xstrtoumax conversion failure.  Thanks to a used-uninitialized
11507         warning from gcc-4.
11508
11509 2005-04-09  Jim Meyering  <jim@meyering.net>
11510
11511         * lib/posixtm.c (posixtime) [lint]: Avoid spurious warning from gcc-4's
11512         -Wuninitialized: initialize tm0.tm_year.
11513
11514 2005-04-04  Paul Eggert  <eggert@cs.ucla.edu>
11515
11516         * lib/getdate.y (parser_control): rels_seen is now a boolean, not a
11517         count, since there's no maximum.  All uses changed.
11518         Add member dsts_seen.
11519         (local_zone): Accumulate dsts_seen rather than relying on tm_isdst
11520         not being INT_MAX.
11521         (get_date): Initialize dsts_seen, and check that it doesn't go over 1.
11522         Use pc_rels_seen to decide whther a date is absolute.
11523
11524         * lib/getdate.y (number): Don't overwrite year.
11525         (get_date): Initialize pc.year.digits to 0, not 4, to enable above
11526         check.
11527
11528 2005-04-02  Simon Josefsson  <jas@extundo.com>
11529
11530         * lib/getaddrinfo.h: Fix OpenBSD compilation failure, inspired by tiny
11531         patch from Yoann Vandoorselaere <yoann@prelude-ids.org>.
11532
11533 2005-03-28  Eric Blake  <ebb9@byu.net>  (tiny change)
11534
11535         * m4/getcwd-path-max.m4: Return success on systems such as Cygwin
11536         where no absolute path name can be longer than PATH_MAX.
11537
11538 2005-03-27  Jim Meyering  <jim@meyering.net>
11539
11540         * lib/argmatch.c: Clarify comment: null-terminated -> NULL-terminated.
11541
11542 2005-03-26  Paul Eggert  <eggert@cs.ucla.edu>
11543
11544         * lib/intprops.h (INT_STRLEN_BOUND, INT_BUFSIZE_BOUND):
11545         "one's complement" -> "ones' complement" in comment, as per Knuth.
11546         "value of type" -> "type or expression" in comment.
11547         * lib/mktime.c, strftime.c: Propagate intprops.h comment nits.
11548
11549 2005-03-26  Jim Meyering  <jim@meyering.net>
11550
11551         Comment nits.
11552         * lib/intprops.h: Add the apostrophe in `(one|two)'s complement'.
11553         Correct typos: s/or/of/.
11554
11555 2005-03-26  Jim Meyering  <jim@meyering.net>
11556
11557         * modules/check-include-files: Move to ../ and rename to...
11558         * check-module: ...this.
11559
11560 2005-03-25  Jim Meyering  <jim@meyering.net>
11561
11562         * modules/xvasprintf (Files): Add xalloc.h.
11563
11564 2005-03-23  Paul Eggert  <eggert@cs.ucla.edu>
11565
11566         * modules/gettext (Files): config/config.rpath ->
11567         build-aux/config.rpath
11568         * modules/iconv (Files): Likewise.
11569         Problem reported by Oskar Liljeblad.
11570
11571 2005-03-23  Jim Meyering  <jim@meyering.net>
11572
11573         * modules/check-include-files: New script to check for
11574         missing dependencies, multiple includes, etc.
11575
11576         * modules/c-strtold (Depends-on): Add xalloc.
11577         * modules/c-strtod (Depends-on): Add xalloc.
11578         * modules/hash (Depends-on): Add xalloc.
11579         (Files): Remove lib/xalloc.h.
11580
11581         * modules/gethrxtime (Files): Add lib/gethrxtime.h.
11582         * modules/userspec (Files): Add lib/inttostr.h.
11583
11584 2005-03-23  Jim Meyering  <jim@meyering.net>
11585
11586         * lib/canonicalize.c: Remove duplicate `#include "stat-macros.h"'.
11587
11588 2005-03-22  Jim Meyering  <jim@meyering.net>
11589
11590         * modules/stat-macros: New module.
11591         * modules/canonicalize, modules/euidaccess, modules/file-type,
11592         * modules/filemode, modules/lchown, modules/makepath,
11593         * modules/rmdir, modules/stat: Depend on new stat-macros module
11594         rather than listing lib/stat-macros.h manually.
11595         Don't add stat-macros.h to lib_SOURCES or list it in Files: section.
11596
11597 2005-03-22  Jim Meyering  <jim@meyering.net>
11598
11599         * m4/stat-macros.m4 (gl_STAT_MACROS): New file/macro.
11600
11601 2005-03-22  Bruno Haible  <bruno@clisp.org>
11602
11603         * config/srclist.txt: Replace target directory 'config' with
11604         'build-aux'.
11605         * config/config.guess, config.sub, config.rpath, depcomp, install-sh:
11606         * config/mdate-sh, missing, mkinstalldirs, texinfo.tex: Move to
11607         ../build-aux/.
11608
11609 2005-03-21  Paul Eggert  <eggert@cs.ucla.edu>
11610
11611         * modules/chdir-long (Depends-on): Add mempcpy.
11612
11613         * modules/acl, modules/backupfile, modules/c-strtod,
11614         modules/c-strtold, modules/canon-host, modules/canonicalize,
11615         modules/cloexec, modules/closeout, modules/dirfd, modules/dirname,
11616         modules/exclude, modules/exitfail, modules/file-type,
11617         modules/filemode, modules/fpending, modules/fsusage, modules/getcwd,
11618         modules/getdate, modules/getline, modules/getpagesize,
11619         modules/getpass, modules/getugroups, modules/group-member,
11620         modules/hard-locale, modules/hash, modules/human, modules/idcache,
11621         modules/inttostr, modules/long-options, modules/makepath,
11622         modules/md5, modules/memcasecmp, modules/memcoll,
11623         modules/modechange, modules/mountlist, modules/path-concat,
11624         modules/pathmax, modules/physmem, modules/posixtm, modules/posixver,
11625         modules/quote, modules/quotearg, modules/readtokens, modules/readutmp,
11626         modules/safe-read, modules/safe-write, modules/same, modules/savedir,
11627         modules/settime, modules/sha1, modules/sig2str, modules/strdup,
11628         modules/strftime, modules/strndup, modules/strverscmp,
11629         modules/timespec, modules/unlocked-io, modules/userspec,
11630         modules/utimecmp, modules/utimens, modules/xalloc, modules/xstrtol,
11631         modules/yesno:
11632         Remove lib_SOURCES line from Makefile.am section, as this is now
11633         done automatically by the corresponding Autoconf macro.
11634
11635 2005-03-21  Jim Meyering  <jim@meyering.net>
11636
11637         Changes imported from coreutils.
11638
11639         * lib/cycle-check.c: Don't include xalloc.h.
11640
11641         * lib/path-concat.c: Don't include assert.h.
11642         (path_concat): Remove assertion that would have triggered
11643         for ABASE starting with more than one slash.
11644         Reported by Andreas Schwab.
11645
11646         * lib/path-concat.c (path_concat): Set *BASE_IN_RESULT
11647         properly when ABASE is an absolute file name.
11648         Correct the description of this function.
11649         Include <assert.h>.
11650         Add an assertion and a test driver.
11651         This fixes a bug introduced on 2004-07-02.
11652         Andreas Schwab reported the resulting failure of cp --parents:
11653         http://lists.gnu.org/archive/html/bug-coreutils/2005-01/msg00130.html
11654
11655 2005-03-21  Jim Meyering  <jim@meyering.net>
11656
11657         * m4/chdir-long.m4 (gl_PREREQ_CHDIR_LONG): Invoke gl_FUNC_MEMRCHR.
11658         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Check for memrchr decl.
11659
11660 2005-03-21  Jim Meyering  <jim@meyering.net>
11661         and  Paul Eggert  <eggert@cs.ucla.edu>
11662
11663         * m4/acl.m4, m4/backupfile.m4, m4/c-strtod.m4, m4/canon-host.m4,
11664         m4/canonicalize.m4, m4/cloexec.m4, m4/closeout.m4, m4/dirfd.m4,
11665         m4/dirname.m4, m4/exclude.m4, m4/exitfail.m4, m4/file-type.m4,
11666         m4/filemode.m4, m4/fpending.m4, m4/fsusage.m4, m4/getcwd.m4,
11667         m4/getdate.m4, m4/getline.m4, m4/getpagesize.m4, m4/getpass.m4,
11668         m4/getugroups.m4, m4/group-member.m4, m4/hard-locale.m4, m4/hash.m4,
11669         m4/human.m4, m4/idcache.m4, m4/inttostr.m4, m4/long-options.m4,
11670         m4/makepath.m4, m4/md5.m4, m4/memcasecmp.m4, m4/memcoll.m4,
11671         m4/modechange.m4, m4/mountlist.m4, m4/nanosleep.m4, m4/path-concat.m4,
11672         m4/pathmax.m4, m4/physmem.m4, m4/posixtm.m4, m4/posixver.m4,
11673         m4/quote.m4, m4/quotearg.m4, m4/readtokens.m4, m4/readutmp.m4,
11674         m4/safe-read.m4, m4/safe-write.m4, m4/same.m4, m4/savedir.m4,
11675         m4/settime.m4, m4/sha1.m4, m4/sig2str.m4, m4/strdup.m4, m4/strftime.m4,
11676         m4/strndup.m4, m4/strverscmp.m4, m4/timespec.m4, m4/unlocked-io.m4,
11677         m4/userspec.m4, m4/utimecmp.m4, m4/utimens.m4, m4/xalloc.m4,
11678         m4/xnanosleep.m4, m4/xstrtol.m4, m4/yesno.m4:
11679         Use AC_LIBSOURCES and AC_LIBOBJ to indicate source and object files
11680         for these modules.
11681
11682 2005-03-18  Paul Eggert  <eggert@cs.ucla.edu>
11683
11684         * lib/strftime.c (my_strftime): If the underlying strftime returns 0
11685         (which shouldn't happen), generate nothing instead of returning 0
11686         immediately, so that nstrftime (NULL, ...) doesn't return 0.
11687
11688 2005-03-16  Bruno Haible  <bruno@clisp.org>
11689
11690         * modules/stdint (Makefile.am): Use HAVE_LONG_LONG_64BIT instead of
11691         HAVE_LONGLONG_64BIT.
11692
11693 2005-03-16  Bruno Haible  <bruno@clisp.org>
11694
11695         * m4/stdint.m4 (gl_STDINT_H): Define HAVE_LONG_LONG_64BIT instead of
11696         HAVE_LONGLONG_64BIT.
11697
11698 2005-03-16  Bruno Haible  <bruno@clisp.org>
11699
11700         * lib/stdint_.h: Use HAVE_LONG_LONG_64BIT instead of
11701         HAVE_LONGLONG_64BIT.
11702
11703 2005-03-15  Paul Eggert  <eggert@cs.ucla.edu>
11704
11705         * lib/strftime.c (my_strftime): Prepend space to format so that we can
11706         reliably distinguish strftime failure from empty output on POSIX
11707         hosts.
11708
11709 2005-03-15  Paul Eggert  <eggert@cs.ucla.edu>
11710
11711         * lib/iconvme.c (SIZE_MAX): New macro, if not already defined.
11712         (iconv_string): Don't guess a size-zero buffer, as that might cause
11713         buffer overrun.  Instead, avoid multiplying by MB_LEN_MAX if the
11714         result would be 'too large', where 'too large' is (heuristically)
11715         the square root of SIZE_MAX, divided by MB_LEN_MAX to allay
11716         overflow concerns.  This will prevent some unwanted malloc failures
11717         when the inputs are very large.
11718
11719 2005-03-15  Karl Berry  <karl@gnu.org>
11720
11721         * config/srclist.txt (config.rpath): from gettext.
11722         * config/config.rpath: update.
11723
11724 2005-03-15  Bruno Haible  <bruno@clisp.org>
11725
11726         * lib/regex.c (byte_re_match_2_internal): Rename local variable 'not'
11727         to 'negate'.
11728
11729         * lib/regex.c (byte_re_match_2_internal): Reduce scope of same_str_p
11730         variable.
11731
11732         * lib/regex.c (EXTEND_BUFFER, regcomp): Cast the realloc/malloc
11733         results.
11734
11735 2005-03-14  Simon Josefsson  <jas@extundo.com>
11736
11737         * lib/timegm.h: Use proper prototype CPP guards, reported by Dave Love
11738         <fx@gnu.org>.
11739
11740 2005-03-14  Paul Eggert  <eggert@cs.ucla.edu>
11741
11742         * lib/mktime.c (TYPE_TWOS_COMPLEMENT, TYPE_ONES_COMPLEMENT,
11743         TYPE_SIGNED_MAGNITUDE, TYPE_MINIMUM, TYPE_MAXIMUM): Sync from
11744         intprops.h.
11745         * lib/strtol.c: Likewise.
11746
11747 2005-03-14  Jim Meyering  <jim@meyering.net>
11748
11749         * lib/strftime.c (my_strftime) [HAVE_STRFTIME && ! (_NL_CURRENT
11750         && HAVE_STRUCT_ERA_ENTRY)]: Initialize the first byte of ubuf[]
11751         to be nonzero so that we (and caller) can detect the difference
11752         between a valid zero-length expansion and an error return, even
11753         when the underlying strftime fails before writing anything into
11754         that location.
11755
11756 2005-03-14  Bruno Haible  <bruno@clisp.org>
11757
11758         * m4/lib-link.m4, gettext.m4, nls.m4, po.m4:
11759         Update from GNU gettext 0.14.3.
11760
11761 2005-03-10  Jim Meyering  <jim@meyering.net>
11762
11763         * m4/save-cwd.m4 (gl_SAVE_CWD): Check for fchdir.
11764
11765 2005-03-10  Jim Meyering  <jim@meyering.net>
11766
11767         * lib/save-cwd.c [!HAVE_FCHDIR]: Define open, fchdir, and chdir_long
11768         so that this module works on systems without fchdir.
11769
11770 2005-03-09  Paul Eggert  <eggert@cs.ucla.edu>
11771
11772         Factor int-properties macros into a single file, except for
11773         glibc-related files.
11774         * lib/intprops.h: New file.
11775         * lib/getloadavg.c: Include it instead of limits.h.
11776         (INT_STRLEN_BOUND): Remove.
11777         * lib/human.c: Include intprops.h.
11778         (group_number): Use INT_STRLEN_BOUND instead of rolling it ourself.
11779         * lib/human.h (LONGEST_HUMAN_READABLE): Use 146/485 rather than
11780         302/1000.
11781         * lib/inttostr.h: Include intprops.h instead of limits.h.
11782         (INT_STRLEN_BOUND, INT_BUFSIZE_BOUND): Remove.
11783         * lib/mktime.c (TYPE_IS_INTEGER, TYPE_TWOS_COMPLEMENT): New macros,
11784         for consistency with intprops.h.
11785         (time_t_is_integer, twos_complement_arithmetic): Use them.
11786         * lib/sig2str.h: Include <signal.h>, intprops.h.
11787         (INT_STRLEN_BOUND): Remove.
11788         * lib/strftime.c (TYPE_SIGNED): Remove.
11789         (INT_STRLEN_BOUND): Switch to same implementation as intprops.h.
11790         * lib/strtol.c: Adjust comments to match intprops.h.
11791         * lib/userspec.c: Include intprops.h.
11792         (TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Remove.
11793         * lib/utimecmp.c, xnanosleep.c, xstrtol.c: Likewise.
11794         * lib/utimecmp.c (utimecmp): Use TYPE_IS_INTEGER, TYPE_TWOS_COMPLEMENT
11795         instead of rolling our own expressions.
11796         * lib/xstrtol.c: Include xstrtol.h first, to test interface.
11797
11798         * lib/strftime.c: Include <stdbool.h>.  Use bool where appropriate,
11799         instead of int.
11800         (my_strftime): Do not mishandle years close to INT_MAX, by doing
11801         the right thing even if adding 1900 would overflow.  Similarly
11802         for tm_mon + 1 and tm_yday + 1.
11803         Make %Y always equivalent to %C%y, and similarly for %G and %g.
11804         (DO_NUMBER, DO_NUMBER_SPACEPAD): Set digits to d, not a conditional.
11805         (DO_SIGNED_NUMBER): New macro.
11806         (my_strftime) [HAVE_TZNAME]: Don't dump core if tp->tm_dst > 1.
11807
11808 2005-03-07  Bruno Haible  <bruno@clisp.org>
11809
11810         * m4/mmap-anon.m4 (MAP_FILE, MAP_FAILED): Remove definitions.
11811
11812 2005-03-07  Bruno Haible  <bruno@clisp.org>
11813
11814         * lib/pagealign_alloc.c (MAP_FILE, MAP_FAILED): Define fallbacks.
11815
11816 2005-03-04  Derek R. Price  <derek@ximbiot.com>
11817
11818         * gnulib-tool (func_cp_if_changed, func_mv_if_changed): New functions.
11819         (func_import): Only replace files via --import when they have actually
11820         changed.
11821
11822 2005-03-03  Derek R. Price  <derek@ximbiot.com>
11823
11824         * m4/mmap-anon.m4: New file.
11825         * m4/pagealign_alloc.m4: New file.
11826
11827 2005-03-03  Derek R. Price  <derek@ximbiot.com>
11828             Bruno Haible  <bruno@clisp.org>
11829
11830         * modules/pagealign_alloc: New file.
11831         * MODULES.html.sh (Memory management functions): Add pagealign_alloc.
11832
11833 2005-03-03  Derek R. Price  <derek@ximbiot.com>
11834             Bruno Haible  <bruno@clisp.org>
11835
11836         * lib/pagealign_alloc.h: New file.
11837         * lib/pagealign_alloc.c: New file.
11838
11839 2005-03-03  Bruno Haible  <bruno@clisp.org>
11840
11841         * m4/inttypes.m4, isc-posix.m4, once-only.m4:
11842         Use an all-permissive copyright notice, recommended by RMS.
11843
11844 2005-03-02  Bruno Haible  <bruno@clisp.org>
11845
11846         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Undo the replacement here. Because
11847         of AIX, the replacement has to be done only after <string.h> is
11848         included, therefore not in config.h. stpncpy.h does the replacement,
11849         and stpncpy.c uses it.
11850
11851 2005-03-02  Bruno Haible  <bruno@clisp.org>
11852
11853         * lib/stpncpy.h (stpncpy): Define as a macro without arguments, so that
11854         stpncpy.c uses it.
11855
11856 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
11857
11858         Remove workaround for bug in Linux kernel 2.6.8 or thereabouts.
11859         The workaround isn't strictly needed for POSIX conformance, and
11860         it's too much of a pain to configure and maintain.  We'll ask
11861         people to fix their kernels instead.
11862         * lib/xnanosleep.c: Don't include gethrxtime.h or xtime.h.
11863         (NANOSLEEP_BUG_WORKAROUND): Remove.
11864         (xnanosleep): Remove the workaround.
11865
11866 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
11867
11868         * modules/gettime (Makefile.am): Remove lib_SOURCES line.
11869         Reported by Derek Price.
11870         (Include): Add "timespec.h".
11871
11872         * modules/xnanosleep (Depends-on): Remove gethrxtime.
11873
11874 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
11875
11876         * m4/xnanosleep.m4 (gl_XNANOSLEEP): Remove configuration attempting
11877         to detect nanosleep bug.
11878
11879 2005-03-01  Bruno Haible  <bruno@clisp.org>
11880
11881         * lib/vasnprintf.c (EOVERFLOW): Define to a fallback if needed.
11882
11883 2005-02-26  Paul Eggert  <eggert@cs.ucla.edu>
11884
11885         * modules/gethrxtime: New file.
11886         * modules/xnanosleep (Files): Add m4/xnanosleep.m4.
11887         (Depends-on): Add gethrxtime.
11888         (configure.ac): Add gl_XNANOSLEEP.
11889         (Makefile.am): Remove lib_SOURCES line.
11890
11891 2005-02-25  Paul Eggert  <eggert@cs.ucla.edu>
11892
11893         * m4/gethrxtime.m4, m4/xnanosleep.m4: New files.
11894         * m4/gettime.m4 (gl_GETTIME): Check for nanotime.
11895
11896 2005-02-25  Paul Eggert  <eggert@cs.ucla.edu>
11897
11898         * lib/gethrxtime.h, lib/gethrxtime.c, lib/xtime.h: New files.
11899         * lib/timespec.h (gettime): Return void, since it always
11900         succeeds now.  All uses changed.
11901         * lib/gettime.c (gettime) Likewise.
11902         [HAVE_NANOTIME]: Prefer nanotime.
11903         Assume gettimeofday succeeds, as POSIX requires.
11904         Assime time () succeeds, since other code already does.
11905         * lib/xnanosleep.c: Include xtime.h and gethrxtime.h, not xalloc.h.
11906         (timespec_subtract): Remove.
11907         (NANOSLEEP_BUG_WORKAROUND): New constant.
11908         (xnanosleep): Use gethrxtime rather than gettime; this simplifies
11909         things considerably.  Use it only on GNU/Linux hosts, since the
11910         workaround shouldn't be needed elsewhere.
11911
11912 2005-02-24  Bruno Haible  <bruno@clisp.org>
11913
11914         * modules/gettext (Files): Add m4/glibc2.m4.
11915
11916 2005-02-24  Bruno Haible  <bruno@clisp.org>
11917
11918         * m4/gettext.m4, intdiv0.m4, intmax.m4, inttypes-pri.m4, lcmessage.m4:
11919         * m4/lib-link.m4, lib-prefix.m4, nls.m4, po.m4, printf-posix.m4:
11920         * m4/progtest.m4:
11921         Update from GNU gettext 0.14.2.
11922         * m4/glibc2.m4: New file, from GNU gettext 0.14.2.
11923
11924 2005-02-24  Bruno Haible  <bruno@clisp.org>
11925
11926         * lib/localcharset.c: Update from GNU gettext 0.14.2.
11927         * lib/config.charset: Update from GNU gettext 0.14.2.
11928
11929 2005-02-24  Bruno Haible  <bruno@clisp.org>
11930
11931         * lib/gettext.h: Update from GNU gettext 0.14.2.
11932
11933 2005-02-23  Simon Josefsson  <jas@extundo.com>
11934
11935         * m4/iconvme.m4: New file.
11936
11937 2005-02-23  Jim Meyering  <jim@meyering.net>
11938
11939         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Revert yesteday's
11940         change.
11941         Thanks to Bruno Haible for catching it.
11942
11943 2005-02-22  Simon Josefsson  <jas@extundo.com>
11944
11945         * modules/iconvme: New file.
11946
11947         * MODULES.html.sh: Add iconvme.
11948
11949 2005-02-22  Simon Josefsson  <jas@extundo.com>
11950
11951         * lib/iconvme.h, lib/iconvme.c: New files, from libc.
11952
11953 2005-02-22  Simon Josefsson  <jas@extundo.com>
11954
11955         * config/srclist.txt: Sync iconvme.h, iconvme.c from libc.
11956
11957 2005-02-22  Jim Meyering  <jim@meyering.net>
11958
11959         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Fix typo:
11960         s/ifndef/ifdef/.
11961
11962 2005-02-20  Neil Conway  <neilc@samurai.com>
11963
11964         * lib/xgethostname.c (xgethostname): Check for ENOMEM, which is
11965         returned by OSX/Darwin if the specified buffer is not large
11966         enough for the hostname.
11967
11968 2005-02-03  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
11969
11970         * lib/argp-help.c (__argp_help): Create a fake struct argp_state and
11971         pass it to _help, otherwise the latter coredumps trying to
11972         dereference state.root_argp.
11973
11974 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
11975
11976         * modules/chdir-long (Depends-on): Add memrchr.
11977         * modules/memrchr (Files): Add lib/memrchr.h.
11978         (Include): "memrchr.h".
11979
11980 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
11981
11982         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Add AC_LIBSOURCES, for memrchr.h.
11983
11984 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
11985
11986         * lib/memrchr.h: New file.
11987         * lib/chdir-long.c: Include it.
11988         * lib/memrchr.c [!defined _LIBC]: Include it rather than <string.h>
11989         Don't bother including stddef.h.
11990
11991 2005-02-01  Paul Eggert  <eggert@cs.ucla.edu>
11992
11993         * lib/mountlist.h (MOUNTLIST_H_): New macro, to protect against double
11994         inclusion.
11995         Include <sys/types.h>, for dev_t.
11996         (ME_DUMMY, ME_REMOTE): Move from here....
11997         * lib/mountlist.c (ME_DUMMY, ME_REMOTE): To here.
11998         (ME_DUMMY): Count "subfs" as a dummy.  Problem reported by
11999         Dmitry V. Levin.
12000         Include mountlist.h first, to test the interface.
12001
12002 2005-01-29  Bruno Haible  <bruno@clisp.org>
12003
12004         * lib/progname.c (program_name): Initialize.
12005         Needed when linking statically on MacOS X.
12006
12007 2005-01-28  Paul Eggert  <eggert@cs.ucla.edu>
12008
12009         Sync from coreutils.
12010         * modules/getloadavg (Files): Remove m4/getloadavg.m4.
12011         (Depends-on): Add c-strtod.
12012         (configure.ac): Replace gl_FUNC_GETLOADAVG with AC_FUNC_GETLOADAVG.
12013
12014 2005-01-28  Paul Eggert  <eggert@cs.ucla.edu>
12015
12016         Sync from coreutils.
12017         * m4/getloadavg.m4, glibc.m4, search-libs.m4: Remove.
12018
12019         Remove files that are specific to coreutils.
12020         * m4/check-decl.m4, jm-macros.m4, lib-check.m4, prereq.m4: Remove.
12021
12022 2005-01-28  Bruno Haible  <bruno@clisp.org>
12023
12024         * modules/javacomp: New file.
12025         * MODULES.html.sh (Java): Add javacomp.
12026
12027 2005-01-28  Bruno Haible  <bruno@clisp.org>
12028
12029         * m4/javacomp.m4: New file, from GNU gettext.
12030
12031 2005-01-28  Bruno Haible  <bruno@clisp.org>
12032
12033         * lib/javacomp.sh.in: New file, from GNU gettext.
12034         * lib/javacomp.h: New file, from GNU gettext.
12035         * lib/javacomp.c: New file, from GNU gettext.
12036
12037 2005-01-26  Simon Josefsson  <jas@extundo.com>
12038
12039         * lib/gai_strerror.c: Use GPL in header.
12040
12041 2005-01-26  Bruno Haible  <bruno@clisp.org>
12042
12043         * modules/javaexec: New file.
12044         * MODULES.html.sh (Java): Add javaexec.
12045
12046 2005-01-26  Bruno Haible  <bruno@clisp.org>
12047
12048         * m4/javaexec.m4: New file, from GNU gettext.
12049
12050 2005-01-26  Bruno Haible  <bruno@clisp.org>
12051
12052         * lib/javaexec.sh.in: New file, from GNU gettext.
12053         * lib/javaexec.h: New file, from GNU gettext.
12054         * lib/javaexec.c: New file, from GNU gettext.
12055
12056 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
12057
12058         * modules/lchown (Depends-on): Remove lchown.h
12059
12060 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
12061
12062         * m4/sysexits.m4 (gl_SYSEXITS): Reverted logic. SYSEXITS_H
12063         must be defined if the header file was not found, in order
12064         to provide a replacement. Reported by Todd Vierling <tv@duh.org>
12065
12066 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
12067
12068         * lib/argp-help.c (hol_entry_help): Avoid using non-constant
12069         initializers for struct pentry_state.
12070         (__argp_error): Check return value of __asprintf
12071         (__argp_failure): Translate error message
12072
12073         * lib/argp-parse.c: Removed braces around the expansion of N_()
12074
12075 2005-01-23  Paul Eggert  <eggert@cs.ucla.edu>
12076
12077         * m4/acl.m4, afs.m4, alloca.m4, argp.m4, assert.m4, atexit.m4,
12078         backupfile.m4, base64.m4, bison.m4, c-bs-a.m4, c-stack.m4,
12079         c-strtod.m4, calloc.m4, canon-host.m4, canonicalize.m4,
12080         clock_time.m4, cloexec.m4, closeout.m4, d-ino.m4, d-type.m4,
12081         dirfd.m4, dirname.m4, dos.m4, dup2.m4, error.m4, euidaccess.m4,
12082         exclude.m4, exitfail.m4, extensions.m4, fcntl-safer.m4,
12083         file-type.m4, fileblocks.m4, filemode.m4, fnmatch.m4, fpending.m4,
12084         free.m4, fstypename.m4, fsusage.m4, ftruncate.m4, getaddrinfo.m4,
12085         getcwd-path-max.m4, getcwd.m4, getdate.m4, getdomainname.m4,
12086         getgroups.m4, gethostname.m4, getline.m4, getndelim2.m4,
12087         getnline.m4, getopt.m4, getpagesize.m4, getpass.m4, getsubopt.m4,
12088         gettime.m4, gettimeofday.m4, getugroups.m4, getusershell.m4,
12089         group-member.m4, hard-locale.m4, hash.m4, host-os.m4, human.m4,
12090         idcache.m4, inttostr.m4, isdir.m4, jm-winsz1.m4, jm-winsz2.m4,
12091         link-follow.m4, long-options.m4, ls-mntd-fs.m4, lstat.m4,
12092         makepath.m4, mathl.m4, md5.m4, memcasecmp.m4, memchr.m4,
12093         memcmp.m4, memcoll.m4, memcpy.m4, memmem.m4, memmove.m4,
12094         memrchr.m4, memset.m4, mkdir-slash.m4, mkstemp.m4, mktime.m4,
12095         modechange.m4, mountlist.m4, nanosleep.m4, obstack.m4,
12096         path-concat.m4, pathmax.m4, perl.m4, physmem.m4, poll.m4,
12097         posixtm.m4, posixver.m4, putenv.m4, quote.m4, quotearg.m4,
12098         readdir.m4, readtokens.m4, readutmp.m4, regex.m4, rename.m4,
12099         restrict.m4, rmdir-errno.m4, rmdir.m4, rpmatch.m4, same.m4,
12100         savedir.m4, settime.m4, sha1.m4, sig2str.m4, snprintf.m4,
12101         sockpfaf.m4, st_dm_mode.m4, st_mtim.m4, stat.m4, stdint.m4,
12102         stdio-safer.m4, strchrnul.m4, strdup.m4, strerror.m4,
12103         strerror_r.m4, strftime.m4, strndup.m4, strnlen.m4, strsep.m4,
12104         strtod.m4, strtoimax.m4, strtok_r.m4, strtol.m4, strtoll.m4,
12105         strtoul.m4, strtoull.m4, strtoumax.m4, strverscmp.m4, sysexits.m4,
12106         time_r.m4, timegm.m4, timespec.m4, tm_gmtoff.m4, tzset.m4,
12107         uint32_t.m4, uintptr_t.m4, unistd-safer.m4, unlink-busy.m4,
12108         unlocked-io.m4, uptime.m4, userspec.m4, utimbuf.m4, utime.m4,
12109         utimecmp.m4, utimens.m4, utimes-null.m4, vsnprintf.m4, xalloc.m4,
12110         xgetcwd.m4, xreadlink.m4, xstrndup.m4, xstrtod.m4, xstrtoimax.m4,
12111         xstrtol.m4, xstrtoumax.m4, yesno.m4:
12112         Use an all-permissive copyright notice, recommended by RMS.
12113
12114 2005-01-21  Paul Eggert  <eggert@cs.ucla.edu>
12115
12116         * modules/chdir-long (Depends-on): Remove mempcpy.
12117
12118 2005-01-21  Jim Meyering  <jim@meyering.net>
12119
12120         * lib/openat.h (AT_SYMLINK_NOFOLLOW): Define to 4096, so it's the
12121         same value as for Solaris 9.
12122
12123         * lib/chdir-long.c (chdir_long): Rewrite to remove limitation on
12124         component length.  This included changing the parameter to be
12125         of type `char *' rather than `char const *'.
12126         * lib/chdir-long.h (chdir_long): Update prototype.
12127
12128         * lib/openat.c (fdopendir, fstatat): New functions.
12129         * lib/openat.h: Include headers required for use of DIR and struct
12130         stat.
12131         [AT_SYMLINK_NOFOLLOW]: Define.
12132         (fdopendir, fstatat): Add prototypes.
12133
12134 2005-01-21  Bruno Haible  <bruno@clisp.org>
12135
12136         * modules/classpath: New file.
12137         * MODULES.html.sh (Java): Add classpath.
12138
12139 2005-01-21  Bruno Haible  <bruno@clisp.org>
12140
12141         * lib/classpath.h: New file, from GNU gettext.
12142         * lib/classpath.c: New file, from GNU gettext.
12143
12144 2005-01-20  Simon Josefsson  <jas@extundo.com>
12145
12146         * modules/version-etc-fsf: New file.
12147
12148 2005-01-20  Simon Josefsson  <jas@extundo.com>
12149
12150         * lib/version-etc-fsf.c: New file, with version_etc_copyright.
12151         * lib/version-etc.c: Remove version_etc_copyright.
12152         * lib/version-etc.h (version_etc_copyright): Use [] instead of * in
12153         prototype, suggested by Paul Eggert <eggert@CS.UCLA.EDU>.
12154
12155 2005-01-20  Simon Josefsson  <jas@extundo.com>
12156
12157         * lib/base64.h (isbase64): Add.
12158
12159         * lib/base64.c (isb64): Rename to isbase64, use to_uchar instead of
12160         using a unsigned prototype, don't inline.
12161         (base64_decode): Use it.
12162
12163 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
12164
12165         * m4/save-cwd.m4 (gl_SAVE_CWD): Remove check for fcntl; we now assume
12166         it.
12167
12168 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
12169
12170         * lib/save-cwd.c (save_cwd): Remove code to support the case
12171         where fchdir is missing or flaky.
12172
12173 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
12174
12175         * MODULES.html.sh (Command-line arguments): Add version-etc-fsf.
12176
12177 2005-01-19  Paul Eggert  <eggert@cs.ucla.edu>
12178
12179         * modules/mempcpy (Makefile.am): Remove mention of mempcpy.h;
12180         AC_LIBSOURCES now does this.
12181         * MODULES.html.sh (Sizes of integer types <limits.h>): New element,
12182         with new ullong_max module.
12183
12184 2005-01-19  Bruno Haible  <bruno@clisp.org>
12185
12186         * modules/sh-quote: New file.
12187         * MODULES.html.sh (Executing programs): Add sh-quote.
12188
12189 2005-01-19  Bruno Haible  <bruno@clisp.org>
12190
12191         * lib/sh-quote.h: New file, from GNU gettext.
12192         * lib/sh-quote.c: New file, from GNU gettext.
12193
12194 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
12195
12196         Merge from coreutils.
12197         * m4/ullong_max.m4: New file.
12198         * m4/jm-macros.m4 (gl_MACROS): Require gl_ULLONG_MAX.
12199         (gl_MACROS): Assume localeconv exists.
12200
12201 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
12202
12203         Merge changes from coreutils, as described below in several
12204         changelogs dated today.
12205
12206         * lib/save-cwd.c: Include "save-cwd.h" before other include files.
12207         (O_DIRECTORY): Remove; not needed here, since "." must be
12208         a directory.  All uses removed.
12209         (save_cwd): Use __sgi || __sun, not sun || __sun.  __sun is
12210         universal on Suns, and we also need to test for IRIX.
12211         Revamp code to use 'if' rather than '#if'.
12212         Avoid unnecessary comparison of cwd->desc to 0.
12213
12214         * lib/utimens.c (futimens): Robustify the previous patch, by checking
12215         for known valid error numbers rather than observed invalid ones.
12216
12217 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
12218
12219         * modules/ullong_max: New file.
12220
12221         * modules/chdir-long, modules/openat: New files.
12222         * modules/save-cwd (Depends-on): Depend on chdir-long.
12223         (Makefile.am): Remove lib_SOURCES; now handled by AC_LIBSOURCES.
12224
12225 2005-01-18  Jim Meyering  <jim@meyering.net>
12226
12227         Merge from coreutils.
12228         * m4/chdir-long.m4, m4/openat.m4: New files.
12229         * m4/save-cwd.m4 (gl_SAVE_CWD): Add AC_LIBSOURCES for save-cwd.c,
12230         save-cwd.h.  Add AC_LIBOBJ for save-cwd.
12231         * m4/chown.m4 (gl_FUNC_CHOWN): When cross-compiling, assume that chown
12232         is sane and DOES follow symlinks.  Besides, testing 20 different
12233         systems found no broken chown implementations.
12234         Prompted by a change in rsync's copy of this macro.
12235         * m4/jm-macros.m4 (gl_MACROS): Require gl_FUNC_CHDIR_LONG.
12236
12237         * m4/lchown.m4 (gl_FUNC_LCHOWN): Use AC_LIBSOURCES.
12238
12239         * m4/utimes.m4: Work around tests/touch/empty-file failure on a system
12240         (sparc64, Linux-2.4.28, glibc-2.3.3) that didn't honor utimes'
12241         NULL-means-set-to-current-time semantics.
12242         Remove temporary file immediately, rather than waiting
12243         for configure's at-exit trap code to do it.
12244
12245 2005-01-18  Jim Meyering  <jim@meyering.net>
12246
12247         * lib/version-etc.c (version_etc_copyright): Update copyright date.
12248
12249         * lib/utimens.c (futimens): Account for the fact that futimes
12250         can also fail with errno == ENOSYS or errno == ENOENT.
12251         Patch from Dmitry V. Levin.
12252
12253         Change the name of the robust chdir function from chdir to chdir_long.
12254         * lib/save-cwd.c: Include chdir-long.h rather than chdir.h.
12255         (restore_cwd): Use chdir_long, not chdir.
12256         * lib/chdir-long.c: Renamed from chdir.c.
12257         * lib/chdir-long.h: Renamed from chdir.h.
12258         [!defined PATH_MAX]: Define chdir_long to chdir on systems like the
12259         Hurd.
12260
12261 2005-01-18  Bruno Haible  <bruno@clisp.org>
12262
12263         * m4/allocsa.m4, m4/codeset.m4, m4/copy-file.m4, m4/eaccess.m4:
12264         * m4/eealloc.m4, m4/eoverflow.m4, m4/execute.m4, m4/fatal-signal.m4:
12265         * m4/findprog.m4, m4/glibc21.m4, m4/iconv.m4, m4/intmax_t.m4:
12266         * m4/inttypes_h.m4, m4/lib-ld.m4, m4/lib-link.m4, m4/lib-prefix.m4:
12267         * m4/linebreak.m4, m4/localcharset.m4, m4/longdouble.m4:
12268         * m4/longlong.m4, m4/mbrtowc.m4, m4/mbstate_t.m4, m4/mbswidth.m4:
12269         * m4/mkdtemp.m4, m4/pipe.m4, m4/readlink.m4, m4/safe-read.m4:
12270         * m4/safe-write.m4, m4/setenv.m4, m4/sig_atomic_t.m4:
12271         * m4/signalblocking.m4, m4/signed.m4, m4/size_max.m4, m4/ssize_t.m4:
12272         * m4/stdbool.m4, m4/stdint_h.m4, m4/stpcpy.m4, m4/stpncpy.m4:
12273         * m4/strcase.m4, m4/strcspn.m4, m4/strpbrk.m4, m4/strstr.m4:
12274         * m4/ucs4-utf.m4, m4/uintmax_t.m4, m4/ulonglong.m4, m4/unicodeio.m4:
12275         * m4/utf-ucs4.m4, m4/vasnprintf.m4, m4/vasprintf.m4:
12276         * m4/wait-process.m4, m4/wchar_t.m4, m4/wint_t.m4, m4/xsize.m4:
12277         Use an all-permissive copyright notice, recommended by RMS.
12278
12279 2005-01-18  Bob Proulx  <bob@proulx.com>
12280
12281         * lib/obstack.c [DEFAULT_ALIGNMENT]: Use an intermediate type to
12282         simplify offsetof() macro construct to avoid compile failure with
12283         native HP-UX 11.0 ANSI C compiler.
12284
12285 2005-01-17  Bruno Haible  <bruno@clisp.org>
12286
12287         * lib/stpncpy.c: Remove HAVE_STPNCPY and gnu_stpncpy renaming,
12288         redundant because stpncpy.m4 takes care of it.
12289
12290 2005-01-17  Bruno Haible  <bruno@clisp.org>
12291
12292         * lib/progreloc.c: Include xalloc.h instead of xmalloc.h.
12293
12294 2005-01-17  Bruno Haible  <bruno@clisp.org>
12295
12296         * lib/progreloc.c (xstrdup): Define as strdup if no xmalloc should be
12297         used.
12298
12299 2005-01-17  Bruno Haible  <bruno@clisp.org>
12300
12301         * lib/fwriteerror.h (fwriteerror): Change specification to include
12302         fclose.
12303         * lib/fwriteerror.c: Include <stdbool.h>.
12304         (fwriteerror): At the end, close the file stream. Record whether
12305         stdout was already closed.
12306
12307 2005-01-17  Bruno Haible  <bruno@clisp.org>
12308
12309         * lib/execute.c (environ): Declare if needed.
12310         * lib/pipe.c (environ): Likewise.
12311         Reported by Michael Schloh von Bennewitz <michael.schloh@cw.com>.
12312
12313 2005-01-11  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
12314
12315         * modules/argp: Depend on vsnprintf
12316
12317 2005-01-10  Jim Meyering  <jim@meyering.net>
12318
12319         * modules/closeout (Depends-on): Add atexit.
12320
12321 2005-01-06  Bruno Haible  <bruno@clisp.org>
12322
12323         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Rename stpncpy to gnu_stpncpy here.
12324
12325 2005-01-04  Paul Eggert  <eggert@cs.ucla.edu>
12326
12327         * lib/human.c (SIZE_MAX, UINTMAX_MAX): Move these conditional
12328         definitions to be after all include files, to avoid collisions.
12329         Problem reported by Bob Proulx.
12330
12331 2005-01-04  Jim Meyering  <jim@meyering.net>
12332
12333         Changes imported from coreutils.
12334         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Rather than using "conftestXXXXXX"
12335         as the mkstemp template, use a temporary directory and an
12336         8.3-friendly template to avoid trouble on systems like DJGPP.
12337         Reported by Juan M. Guerrero via Stepan Kasal.
12338         * m4/(gl_FUNC_MKSTEMP): Include <unistd.h> for the declaration of
12339         close. Remove the temporary directory right away, rather than waiting
12340         for configure's at-exit trap code to do it.
12341         Suggestion from Stepan Kasal.
12342
12343 2005-01-01  Simon Josefsson  <jas@extundo.com>
12344
12345         * gnulib-tool: Print #include directives when --import'ing.
12346
12347 2004-12-28  Simon Josefsson  <jas@extundo.com>
12348
12349         * tests/test-base64.c: Include required header files.  Remove
12350         unused variables.
12351
12352 2004-12-28  Paul Eggert  <eggert@cs.ucla.edu>
12353
12354         * modules/error (Depends-on): Remove gettext.
12355
12356 2004-12-28  Paul Eggert  <eggert@cs.ucla.edu>
12357
12358         * lib/error.c [!_LIBC && !ENABLE_NLS]: Do not include "gettext.h";
12359         not needed.  This removes a dependency on the gettext module.
12360         [defined _LIBC]: Do not include <libintl.h>; not needed.
12361
12362 2004-12-24  Paul Eggert  <eggert@cs.ucla.edu>
12363
12364         * m4/c-strtod.m4 (gl_C99_STRTOLD): New macro.
12365         (gl_C_STRTOD): Use it instead of AC_CHECK_DECLS_ONCE(strtold).
12366
12367 2004-12-24  Paul Eggert  <eggert@cs.ucla.edu>
12368
12369         * lib/c-strtod.c (STRTOD): Depend on HAVE_C99_STRTOLD, not
12370         HAVE_DECL_STRTOLD.
12371
12372 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
12373
12374         * modules/getdate (Depends-on): Remove alloca-opt.
12375
12376 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
12377
12378         * m4/getdate.m4 (gl_GETDATE): Remove AC_FUNC_ALLOCA.
12379
12380 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
12381
12382         * lib/argp-parse.c: Include <stddef.h>.
12383         (alignof, alignto): New macros.
12384         (parser_init): Don't assume that void * is aligned sufficiently
12385         for struct option.
12386
12387         * lib/getdate.y (YYSTACK_USE_ALLOCA): Define to 0, since there's no
12388         need to extend the stack.
12389         (YYINITDEPTH): New macro, so that the initial stack isn't overly
12390         large.
12391
12392 2004-12-22  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
12393
12394         * lib/argp-parse.c (parser_init): Avoid arithmetics on void pointers.
12395
12396 2004-12-19  Paul Eggert  <eggert@cs.ucla.edu>
12397
12398         * modules/regex (lib_SOURCES): Remove regex.c, undoing previous
12399         (2004-10-24) change.  Apparently this was a false alarm.
12400
12401         * modules/getdate: Depend on alloca-opt, not alloca.
12402
12403 2004-12-19  Paul Eggert  <eggert@cs.ucla.edu>
12404
12405         * lib/alloca_.h: Conditionalize on _GNULIB_ALLOCA_H, not _ALLOCA_H.
12406         Remove now-obsolete comment about AIX.
12407         * lib/getdate.y: Include <alloca.h> only if HAVE_ALLOCA.
12408         (YYSTACK_USE_ALLOCA): Define to 0 if !HAVE_ALLOCA.
12409         (YYMAXDEPTH): New macro.
12410
12411 2004-12-18  Simon Josefsson  <jas@extundo.com>
12412
12413         * modules/alloca: Depend on alloca-opt, instead of duplicating it.
12414
12415 2004-12-18  Bruno Haible  <bruno@clisp.org>
12416
12417         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Also test for sigaction.
12418
12419 2004-12-18  Bruno Haible  <bruno@clisp.org>
12420
12421         * lib/fatal-signal.c (fatal_signals): Make non-const.
12422         (init_fatal_signals): New function.
12423         (uninstall_handlers, install_handlers): Ignore signals that were set to
12424         SIG_IGN.
12425         (at_fatal_signal): Call init_fatal_signals.
12426         (init_fatal_signal_set): Likewise. Ignore signals that were set to
12427         SIG_IGN.
12428         Reported by Paul Eggert.
12429
12430 2004-12-18  Bruno Haible  <bruno@clisp.org>
12431
12432         * doc/alloca.texi: New file.
12433         * doc/alloca-opt.texi: New file.
12434
12435 2004-12-17  Jim Meyering  <jim@meyering.net>
12436
12437         * config/install-sh: Use `(exit N); exit N', not `(exit N); exit'.
12438         Otherwise, install-sh could exit with improper exit status when
12439         exiting via a trapped interrupt.  Thanks to a report from Bob Proulx.
12440
12441 2004-12-16  Simon Josefsson  <jas@extundo.com>
12442
12443         * tests/test-base64.c: Add license.
12444
12445 2004-12-15  Stepan Kasal  <address@hidden>
12446
12447         * gnulib-tool (func_emit_lib_Makefile_am): Shorten a long sed command.
12448
12449 2004-12-12  Paul Eggert  <eggert@cs.ucla.edu>
12450
12451         * modules/getcwd (Files): Add m4/d-ino.m4.
12452         Suggested by Mark D. Baushke.
12453
12454 2004-12-08  Paul Eggert  <eggert@cs.ucla.edu>
12455
12456         * lib/getdate.y (textint): New member "negative".
12457         (time_zone_hhmm): New function.
12458         Expect 14 shift-reduce conflicts, not 13.
12459         (o_colon_minutes): New rule.
12460         (time, zone): Use it to add support for +HH:MM, UTC+HH:MM.
12461         (yylex): Set the "negative" member of signed numbers.
12462
12463 2004-12-08  Paul Eggert  <eggert@cs.ucla.edu>
12464
12465         * doc/getdate.texi (Time of day items, Time zone items):
12466         Describe new formats +00:00, UTC+00:00.
12467
12468 2004-12-07  Paul Eggert  <eggert@cs.ucla.edu>
12469
12470         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): Fix typo in previous change:
12471         spurious "-l"s.  Problem reported by Stepan Kasal.
12472
12473 2004-12-06  Paul Eggert  <eggert@cs.ucla.edu>
12474
12475         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): New macro, to work around bug
12476         in Autoconf 2.59.  Problem reported by Mark D. Baushke.
12477
12478 2004-12-04  Simon Josefsson  <jas@extundo.com>
12479
12480         * modules/getaddrinfo (License): Add LGPL, reported by Yoann
12481         Vandoorselaere <yoann@prelude-ids.org>.
12482
12483 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
12484
12485         Changes imported from coreutils.
12486         * m4/hard-locale.m4 (gl_HARD_LOCALE): Assume locale.h and setlocale
12487         exist.
12488         * m4/human.m4 (gl_HUMAN): Assume locale.h and localeconv exist.
12489
12490 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
12491
12492         Changes imported from coreutils.
12493         * lib/hard-locale.c: Assume <locale.h> exists.
12494         Include "strdup.h".
12495         (GLIBC_VERSION): New macro.
12496         (hard_locale): Assume setlocale exists.
12497         Rewrite to avoid #ifdef.
12498         Use strdup rather than malloc + strcpy.
12499         * lib/human.c: Assume <locale.h> exists.
12500         (human_readable): Assume localeconv exists.
12501
12502 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
12503
12504         * modules/hard-locale (Depends-on): Add strdup.
12505
12506 2004-12-01  Jakub Jelinek  <jakub@redhat.com>
12507
12508         * lib/mktime.c (__mktime_internal): If SEC_REQUESTED != SEC,
12509         convert T2, not T.  (Imported from libc.)
12510
12511 2004-11-30  Simon Josefsson  <jas@extundo.com>
12512
12513         * modules/restrict (License): Change to LGPL.
12514
12515 2004-11-30  Simon Josefsson  <jas@extundo.com>
12516
12517         * m4/restrict.m4: Add copyright and copying conditions.
12518
12519 2004-11-30  Simon Josefsson  <jas@extundo.com>
12520
12521         * m4/base64.m4: New file.
12522
12523 2004-11-30  Simon Josefsson  <jas@extundo.com>
12524
12525         * MODULES.html.sh (Extra functions based on ANSI C 89): Add
12526         base64.
12527
12528         * tests/test-base64.c: New file.
12529
12530         * modules/base64: New file.
12531
12532 2004-11-30  Paul Eggert  <eggert@cs.ucla.edu>
12533
12534         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX):
12535         Define HAVE_PARTLY_WORKING_GETCWD if getcwd is partly working.
12536
12537         * m4/readutmp.m4 (gl_READUTMP): Don't check for sys/param.h.
12538
12539 2004-11-30  Paul Eggert  <eggert@cs.ucla.edu>
12540
12541         * lib/getcwd.c (is_ENAMETOOLONG): New macro.
12542         (__getcwd.c): Don't restore errno; glibc doesn't.
12543         [HAVE_PARTLY_WORKING_GETCWD && !defined AT_FDCWD]: Try system getcwd
12544         first, falling back to our code only if its results look suspicious.
12545         Ensure that the resulting buffer is only as large as necessary.
12546
12547         * lib/readutmp.c: Include readutmp.h first.
12548         Include <errno.h>, since readutmp.h no longer does that.
12549         * lib/readutmp.h: Don't include <errno.h>,
12550         <sys/param.h>, <time.h>; not needed to establish interface.
12551         (errno): Remove decl.
12552         (HAVE_STRUCT_XTMP_UT_TYPE): Remove; no longer needed.
12553         (UT_TYPE_EQ, UT_TYPE_NOT_DEFINED, UT_TYPE_BOOT_TIME,
12554         UT_TYPE_USER_PROCESS, IS_USER_PROCESS): New macros.
12555
12556 2004-11-28  Simon Josefsson  <jas@extundo.com>
12557
12558         * lib/base64.h, base64.c: New file.
12559
12560 2004-11-27  Paul Eggert  <eggert@cs.ucla.edu>
12561
12562         * lib/getcwd.h: New file, which I forgot to check in on 2004-11-25.
12563
12564 2004-11-26  Paul Eggert  <eggert@cs.ucla.edu>
12565
12566         * modules/getcwd (Files): Add lib/getcwd.h, m4/getcwd.m4.
12567         (Depends-on): Remove pathmax, same.  Add mempcpy.
12568         (configure.ac): GL_FUNC_GETCWD_PATH_MAX -> gl_FUNC_GETCWD.
12569         (Makefile.am): Append getcwd.h to lib_SOURCES.
12570         (Include): Add getcwd.h.
12571         (Maintainer): Change from Jim Meyering to "all, glibc",
12572         since getdate now uses intended-for-glibc code.
12573         * modules/xgetcwd (Files): Remove m4/getcwd.m4.
12574         (Depends-on): Depend on getcwd.  Do not depend on pathmax.
12575
12576 2004-11-25  Paul Eggert  <eggert@cs.ucla.edu>
12577
12578         Fix problems reported by Scott S. Tinsley for HP-UX 11.11 using
12579         HP's ANSI C compiler.
12580         * lib/fsusage.c (statvfs) [HAVE_SYS_STATVFS_H]: Remove decl.
12581         Declaring int functions causes warnings on some modern systems and
12582         shouldn't be needed to compile on ancient ones.
12583         * lib/same.c (MIN) [defined MIN]: Don't define, since it's already
12584         defined.
12585
12586         * lib/getcwd.c: Replace by a copy of glibc/sysdeps/posix/getcwd.c, but
12587         with the following changes.
12588         (__set_errno): Parenthesize properly.
12589         Include <stdbool.h>.
12590         (MIN, MAX, MATCHING_INO): New macros.
12591         (__getcwd): Define with prototype, not K&R form.
12592         Use heuristics to allocate default buffer on stack if possible.
12593         If AT_FDCWD is defined, use openat and fstatat to avoid O(N**2)
12594         behavior, and to avoid the PATH_MAX limit when computing
12595         ../../../../...
12596         Use MATCHING_INO to compare inode number to file.
12597         Check for arithmetic overflow in size calculations.
12598         Fix bug in reallocation of dot array that caused getcwd to fail
12599         on directories nested deeper than 75.
12600         Be more careful about saving errno on error.
12601         Do not use realloc; use only free+malloc, as this is a bit
12602         more flexible and avoids a needless copy operation.
12603         Do not inspect st_dev and st_ino for symbolic links; POSIX
12604         doesn't specify the latter.
12605         Check for closedir errors.
12606         Avoid needless casts.
12607         Use "#ifdef weak_alias" around weak_alias, to be like other
12608         glibc code.
12609         The following changes to getcwd.c have effect only when used in
12610         gnulib; they have no effect inside glibc proper.
12611         (#pragma alloca) [defined _AIX && !defined __GNUC__]: Remove,
12612         as alloca isn't used.
12613         (alloca, __alloca): Likewise.
12614         [!_LIBC]: Include "getcwd.h", "mempcpy.h".
12615         Include <stddef.h>, <stdlib.h>, <string.h>, <limits.h>
12616         unconditionally, as gnulib assumes C89 or better.
12617         Do not include <sys/param.h>.
12618         (errno) [!defined __GNU_LIBRARY__ && !defined STDC_HEADERS]: Remove
12619         no-longer-necessary 'extern int errno' decl; gnulib assumes C89 or
12620         better.
12621         (NULL) [!defined NULL]: Remove; we assume C89 or better.
12622         Include <dirent.h> in a way that is compatible with modern Autoconf.
12623         (_D_ALLOC_NAMELEN, _D_EXACT_NAMLEN):
12624         New macros, if not already defined.
12625         Include <unistd.h> if _LIBC, not if __GNU_LIBRARY__.
12626         Use "_LIBC", not "defined _LIBC", for consistency.
12627         (HAVE_MEMPCPY): Remove; no longer needed now that gnulib has
12628         a mempcpy module.
12629         (__lstat, __closedir, __opendir, __readdir) [!_LIBC]: New macros.
12630         (GETCWD_RETURN_TYPE): Remove.  All uses replaced by char *.
12631         * lib/xgetcwd.c: David MacKenzie's old code was removed, so give
12632         credit only to Jim Meyering and adjust the copyright dates.
12633         Do not include <limits.h>, <stdio.h>, <sys/types.h>,
12634         <stdlib.h>, <unistd.h>, "pathmax.h".
12635         Instead, include "xgetcwd.h" (first) and "getcwd.h".
12636         (INITIAL_BUFFER_SIZE): Remove.
12637         (xgetcwd): Rely on getcwd, since we now depend on a reliable one.
12638
12639 2004-11-25  Paul Eggert  <eggert@cs.ucla.edu>
12640
12641         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Renamed from
12642         GL_FUNC_GETCWD_PATH_MAX for consistency.  All uses changed.
12643         Use the _ONCE methods, for efficiency.
12644         Check for fcntl.h.  In test program, include <errno.h>
12645         and <fcntl.h> if available.  Remove old K&R cruft from
12646         test program.  Check for common errors in GNU/Linux,
12647         OpenBSD, and Solaris.  Just set gl_cv_func_getcwd_path_max;
12648         don't do AC_LIBOBJ, as that's getcwd.m4's job.
12649         * m4/getcwd.m4 (gl_FUNC_GETCWD_NULL): Renamed from
12650         AC_FUNC_GETCWD_NULL.  All used changed.  Change cache variable
12651         name accordingly.
12652         (gl_FUNC_GETCWD, gl_PREREQ_GETCWD): New macros.  Revamp to
12653         accommodate new getcwd.c.
12654         * m4/jm-macros.m4 (gl_MACROS): Don't require GL_FUNC_GETCWD_PATH_MAX.
12655         * m4/prereq.m4 (gl_PREREQ): Add gl_FUNC_MEMPCPY.
12656         * m4/xgetcwd.m4 (gl_XGETCWD): Replace with gl_FUNC_GETCWD, since
12657         that's all we need now.
12658
12659 2004-11-23  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
12660
12661         * m4/argp.m4 (gl_ARGP): Require gl_GETOPT_SUBSTITUTE unconditionally:
12662         argp-parse.c depends on getopt internals, that means we should
12663         always use our getopt, to be on the safe side.
12664         * m4/getopt.m4 (gl_GETOPT): Check if GETOPT_H is already set, in
12665         order not to spoil the result of an eventual previous invocation
12666         of gl_GETOPT_SUBSTITUTE.
12667
12668 2004-11-23  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
12669
12670         * lib/getopt_.h: Re-addition of __getopt_argv_const caused
12671         redefinition warnings. To avoid them, include the defines
12672         in `#if !defined __need_getopt ... #endif'. The only place
12673         where __getopt_argv_const is used is in definitions
12674         of getopt_long and getopt_long_only below, which are as well
12675         protected by `#ifndef __need_getopt'.
12676         [defined __GETOPT_PREFIX && !defined __need_getopt]: Undef
12677         __need_getopt after including <stdio.h> and <unistd.h> These
12678         headers might have defined it.
12679
12680 2004-11-23  Paul Eggert  <eggert@cs.ucla.edu>
12681
12682         * m4/utimens.m4 (gl_UTIMENS): Check for futimes function.
12683
12684 2004-11-23  Paul Eggert  <eggert@cs.ucla.edu>
12685
12686         * lib/utimens.c (__attribute__, ATTRIBUTE_UNUSED): New macros.
12687         (futimens): New function, which uses futimes if available.
12688         (futimens, utimens): Support timespec==NULL, with same semantics
12689         as utime and utimens.
12690         * lib/utimens.h (futimens): New decl.
12691
12692 2004-11-23  Jim Meyering  <jim@meyering.net>
12693
12694         * lib/getopt_.h: Remove trailing blanks.
12695
12696 2004-11-23  Jim Meyering  <jim@meyering.net>
12697
12698         * lib/__fpending.c: Add comment.
12699
12700 2004-11-22  Paul Eggert  <eggert@cs.ucla.edu>
12701
12702         * modules/canonicalize (Depends-on): Add xreadlink.
12703         Problem reported by James Youngman.
12704
12705 2004-11-20  Paul Eggert  <eggert@cs.ucla.edu>
12706
12707         * lib/getopt_.h (__GETOPT_CONCAT, __GETOPT_XCONCAT, __GETOPT_ID):
12708         New macros.
12709         (getopt, getopt_long, getopt_long_only, optarg, opterr, optind,
12710         optopt): Use them instead of invoking ## directly; otherwise, the
12711         symbols will be __GETOPT_PREFIXgetopt rather than rpl_getopt.
12712
12713 2004-11-19  Bruno Haible  <bruno@clisp.org>
12714
12715         * lib/strtok_r.c: Move comments from here...
12716         * lib/strtok_r.h: ... to here.
12717
12718 2004-11-17  Paul Eggert  <eggert@cs.ucla.edu>
12719
12720         * m4/calloc.m4 (_AC_FUNC_CALLOC_IF): Check for buggy calloc
12721         implementations that mishandle size_t overflow.
12722
12723 2004-11-17  Paul Eggert  <eggert@cs.ucla.edu>
12724
12725         * lib/realloc.c (rpl_realloc): Call 'free' if n==0, since realloc
12726         might fail.  Problem reported by Yoann Vandoorselaere.
12727         * lib/calloc.c (rpl_calloc): Defend against buggy calloc
12728         implementations that mishandle size_t overflow.
12729
12730 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
12731
12732         * modules/canon-host (Depends-on): Add strdup.
12733
12734 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
12735
12736         * m4/canon-host.m4 (gl_CANON_HOST): Check for getaddrinfo.
12737
12738 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
12739
12740         * lib/canon-host.c: Include "strdup.h".
12741         (canon_host): Use getaddrinfo if available, so that IPv6 works.
12742         Use strdup instead of malloc/strcpy to duplicate strings.
12743
12744         * lib/human.h (LONGEST_HUMAN_READABLE): Add 1 for space before unit.
12745         (human_space_before_unit): New constant.
12746         * lib/human.c (human_readable): Support it.
12747
12748         * lib/xgetcwd.c: Include <limits.h>, for PATH_MAX.
12749         (xgetcwd): Set errno correctly when failing.
12750         Work around Solaris 9 bug: getcwd sets errno==ERANGE even though
12751         the failure is actually due to a PATH_MAX problem.
12752
12753         Further getopt changes to make it more likely that glibc will
12754         buy the changes back.
12755         * lib/getopt.c (POSIXLY_CORRECT): New constant.
12756         (getopt): Use it, so to preserve glibc semantic
12757         * lib/getopt1.c (getopt_long, getopt_long_only): Arg is char * const *
12758         when compiling for libc.
12759         * lib/getopt_.h (__getopt_argv_const): Bring it back.
12760         (getopt_long, getopt_long_only): Use it.
12761
12762         * lib/getopt.c (_getopt_initialize, _getopt_internal_r,
12763         _getopt_internal): New arg POSIXLY_CORRECT.  All callers changed.
12764         (getopt): Argv is now char * const *, as per standard.
12765         (_getopt_internal_r, _getopt_internal): Argv is now char **,
12766         not char *__getopt_argv_const *.
12767         * lib/getopt1.c (getopt_long, _getopt_long_r, getopt_long_only,
12768         _getopt_long_only_r): Likewise.
12769         * lib/getopt_.h (getopt, getopt_long, geopt_long_only): Likewise.
12770         * lib/getopt_int.h (_getopt_internal, _getopt_internal_r,
12771         _getopt_long_r, _getopt_long_only_r): Likewise.
12772         * lib/getopt_.h (__getopt_argv_const): Remove.
12773         (getopt): Argv is now char * const *, as per standard.
12774
12775         * lib/getdate.y (tORDINAL): New token.
12776         (day, relunit): Allow it for relative times.
12777         (relative_time_table): Use tORDINAL for ordinals.
12778
12779 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
12780
12781         * doc/getdate.texi (General date syntax): "next" is 1, not 2.
12782         Document that "second" isn't allowed as an ordinal number.
12783
12784 2004-11-16  Jim Meyering  <jim@meyering.net>
12785
12786         * modules/closeout (Depends-on): Add fpending.
12787
12788 2004-11-15  Jim Meyering  <jim@meyering.net>
12789
12790         * lib/closeout.c: Include "__fpending.h" once again.
12791         Include <stdbool.h>.
12792         (close_stdout): Don't fail just because stdout was closed initially,
12793         since some programs don't write to stdout in the normal course of
12794         operation (other than --version and --help), and we don't want this
12795         function to make e.g. `touch file >&-' fail.
12796         But do fail if it was closed and someone has tried to write to it.
12797         E.g., `printf foo >&-' must fail.
12798
12799 2004-11-13  Jim Meyering  <jim@meyering.net>
12800
12801         * m4/jm-macros.m4: Do require gl_FUNC_FPENDING.
12802
12803 2004-11-12  Simon Josefsson  <jas@extundo.com>
12804
12805         * config/srclist.txt: Add strtok_r.c, glibc bought our changes, but a
12806         small doc fix is still pending.
12807
12808 2004-11-11  Simon Josefsson  <jas@extundo.com>
12809
12810         * modules/strtok_r: New file.
12811
12812         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
12813         strtok_r.
12814
12815 2004-11-11  Simon Josefsson  <jas@extundo.com>
12816
12817         * m4/strtok_r.m4: New file.
12818
12819         * m4/getopt.m4: Replace opterr.
12820
12821 2004-11-11  Simon Josefsson  <jas@extundo.com>
12822
12823         * lib/strtok_r.h, strtok_r.c: New file.
12824
12825 2004-11-11  Paul Eggert  <eggert@cs.ucla.edu>
12826
12827         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE): Define __GETOPT_PREFIX instead
12828         of replacing opterr, getopt, etc.  This should handle the
12829         powerpc-apple-darwin5.5 problem recently noted by Simon Josefsson.
12830
12831 2004-11-11  Paul Eggert  <eggert@cs.ucla.edu>
12832
12833         * lib/getopt_.h (__getopt_argv_const): New macro, to be used so that
12834         we can stop lying to compilers about the constness of argv when we
12835         are compiled outside glibc.
12836         (getopt, getopt_long, getopt_long_only): Use it.
12837         * lib/getopt.c (_getopt_initialize, _getopt_internal_r,
12838         _getopt_internal, getopt): Likewise.
12839         * lib/getopt1.c (getopt_long, _getopt_long_r, getopt_long_only,
12840         _getopt_long_only_r): Likewise.
12841         * lib/getopt_int.h (_getopt_internal, _getopt_internal_r,
12842         _getopt_long_r, _getopt_long_only_r): Likewise.
12843
12844         * lib/getopt_.h [defined __GETOPT_PREFIX && !defined __need_getopt]:
12845         Include <stdlib.h> and <stdio.h>, and <unistd.h> if available.
12846         Then rename getopt to __GETOPT_PREFIX##getopt, and so forth for
12847         the other external symbols.
12848         (getopt) [!defined __GNU_LIBRARY]: Use prototype, not old-style
12849         declaration, since the above renaming now works around collisions.
12850
12851 2004-11-11  Jim Meyering  <jim@meyering.net>
12852
12853         * lib/linebreak.c: Remove trailing blanks.
12854         * lib/alloca_.h: Likewise.
12855         * lib/acosl.c: Likewise.
12856         * lib/euidaccess.c: Likewise.
12857         * lib/allocsa.h: Likewise.
12858
12859 2004-11-10  Simon Josefsson  <jas@extundo.com>
12860
12861         * m4/getaddrinfo.m4: New file.
12862
12863 2004-11-10  Simon Josefsson  <jas@extundo.com>
12864
12865         * lib/getaddrinfo.h, lib/getaddrinfo.c: New files.
12866
12867 2004-11-10  Simon Josefsson  <jas@extundo.com>
12868
12869         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
12870         getaddrinfo.
12871
12872         * modules/getaddrinfo: New file.
12873
12874 2004-11-10  Paul Eggert  <eggert@cs.ucla.edu>
12875
12876         * m4/prereq.m4 (gl_PREREQ): Require gt_FUNC_SETENV.
12877
12878 2004-11-10  Paul Eggert  <eggert@cs.ucla.edu>
12879
12880         * lib/mktime.c (SHR): New macro, which is a portable
12881         substitute for >> that should work even on Crays.
12882         (TIME_T_MIDPOINT, ydhms_diff, __mktime_internal): Use it.
12883         Problem reported by Mark D. Baushke in
12884         <http://lists.gnu.org/archive/html/bug-gnulib/2004-11/msg00071.html>.
12885         * lib/getdate.y (SHR): Likewise.
12886         (tm_diff): Use it.
12887         * lib/strftime.c (SHR): Likewise.
12888         (tm_diff): Use it.
12889         * lib/quotearg.c (struct quoting_options): Use unsigned int for
12890         quote_these_too, so that right shifts are well defined.  All uses
12891         changed.
12892
12893 2004-11-10  Jim Meyering  <jim@meyering.net>
12894
12895         Ensure that no close failure goes unreported.
12896         * lib/closeout.c (close_stdout): Always close stdout.  I.e., don't
12897         return early when it seems there's nothing to flush.
12898         Don't include __fpending.h.
12899
12900 2004-11-10  Jim Meyering  <jim@meyering.net>
12901
12902         * modules/closeout (Depends-on): Remove fpending.
12903
12904 2004-11-10  Jim Meyering  <jim@meyering.net>
12905
12906         * m4/jm-macros.m4 (gl_MACROS): Don't require gl_FUNC_FPENDING.
12907
12908 2004-11-09  Paul Eggert  <eggert@cs.ucla.edu>
12909
12910         * m4/strftime.m4 (_gl_STRFTIME_PREREQS): Remove.  Move its body to
12911         gl_FUNC_STRFTIME.
12912         (gl_FUNC_STRFTIME): Use AC_CHECK_FUNCS_ONCE and AC_CHECK_HEADERS_ONCE
12913         and AC_REQUIRE when possible, to avoid duplicate checks.
12914         Check for <wchar.h>.
12915
12916 2004-11-09  Paul Eggert  <eggert@cs.ucla.edu>
12917
12918         * lib/strftime.c (DO_MULTIBYTE): Check for wchar.h, too.
12919
12920 2004-11-09  Bruno Haible  <bruno@clisp.org>
12921
12922         * m4/sockpfaf.m4: New file.
12923
12924 2004-11-05  Bruno Haible  <bruno@clisp.org>
12925
12926         * lib/readlink.c: Include stddef.h, needed for size_t on Woe32.
12927         Reported by Mark D. Baushke <mdb@cvshome.org>.
12928
12929 2004-11-04  Bruno Haible  <bruno@clisp.org>
12930
12931         2004-09-11  Bruno Haible  <bruno@clisp.org>
12932                 * allocsa.valgrind: New file.
12933         2004-02-06  Bruno Haible  <bruno@clisp.org>
12934                 * allocsa.h (sa_alignof): Define differently with HP-UX cc, to
12935                 avoid a bug of this cc on HP-UX 10.20 dealing with enums.
12936                 Reported by Christopher Seip <chris.seip@hp.com>.
12937
12938 2004-11-04  Bruno Haible  <bruno@clisp.org>
12939
12940         * modules/allocsa (Files): Add lib/allocsa.valgrind.
12941         (Makefile.am): Distribute it.
12942
12943 2004-11-03  Paul Eggert  <eggert@cs.ucla.edu>
12944
12945         * lib/xreadlink.c (xreadlink): AIX and HP-UX readlink return -1
12946         with errno == ERANGE if the buffer is too small.
12947         Problem reported by Mark D. Baushke.
12948
12949 2004-11-03  Albert Chin <china@thewrittenword.com>
12950             Paul Eggert  <eggert@cs.ucla.edu>
12951
12952         * m4/uint32_t.m4 (gl_AC_TYPE_UINT32_T): When determining uint32_t
12953         equivalent, substitute $ac_type for equivalent type rather than
12954         blindly using uint32_t *always* which won't work if uint32_t is not
12955         available.  Define _UINT32_T to work around typedef of uint32_t if
12956         <sys/sched.h>, <pthread.h>, or <semaphore.h> used on Solaris
12957         2.5.1.
12958
12959 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
12960
12961         * m4/jm-macros.m4: Sync from coreutils.
12962         (gl_MACROS): Check for mbrlen, for pathchk.
12963         (gl_CHECK_ALL_TYPES): Require AC_TYPE_MBSTATE_T, for pathchk.
12964
12965 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
12966
12967         * lib/xreadlink.c (MAXSIZE): New macro.
12968         (xreadlink): Use it instead of SSIZE_MAX.  Ensure initial buffer
12969         size does not exceed MAXSIZE.  Avoid cast.
12970         As suggested by Mark D. Baushke in
12971         <http://lists.gnu.org/archive/html/bug-gnulib/2004-11/msg00009.html>,
12972         if readlink fails with buffer size just under MAXSIZE, try again
12973         with MAXSIZE.
12974
12975 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
12976
12977         * config/srclist.txt: Add mktime.c; glibc bought all our changes.
12978
12979 2004-11-02  Derek R. Price  <derek@ximbiot.com>
12980         and  Paul Eggert  <eggert@cs.ucla.edu>
12981
12982         * lib/getdate.y [!TEST]: Include <stdio.h>, since we use sprintf now.
12983         (get_date): Overparenthesize to avoid GCC warning.
12984
12985 2004-11-02  Bruno Haible  <bruno@clisp.org>
12986
12987         * m4/setenv.m4 (gt_FUNC_SETENV): Define VOID_UNSETENV if unsetenv()
12988         returns void.
12989
12990 2004-11-02  Bruno Haible  <bruno@clisp.org>
12991
12992         * lib/setenv.h (unsetenv): Define as a macro if the system's unsetenv()
12993         function returns void.
12994
12995 2004-11-01  Paul Eggert  <eggert@cs.ucla.edu>
12996
12997         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for declarations of
12998         fflush_unlocked, flockfile, funlockfile, funlockfile,
12999         fputs_unlocked, putc_unlocked.
13000
13001 2004-11-01  Paul Eggert  <eggert@cs.ucla.edu>
13002
13003         * lib/getpass.c (fflush_unlocked, flockfile, funlockfile)
13004         (funlockfile, fputs_unlocked, putc_unlocked): Don't define if
13005         already declared.
13006
13007 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
13008
13009         * modules/getdate (Files): Add doc/getdate.texi.
13010         (Depends-on): Add setenv, xalloc.
13011
13012 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
13013
13014         * lib/getdate.y: Add support for TZ="foo" within a date string.
13015         Fix some bugs near time_t boundaries.  Reject dates with
13016         out-of-range components, e.g., "Sept 31".
13017         Include <stdlib.h>, "setenv.h", "xalloc.h".
13018         (ISDIGIT_LOCALE): Remove; unused.
13019         Note that the TZ and time functions used here are not reentrant.
13020         (mktime_ok, get_tz): New functions.
13021         (TZBUFSIZE): New constant.
13022         (get_date): Parse leading TZ="foo".  Reject out-of-range components;.
13023         This requires that we sometimes generate our own TZ="XXX..." setting.
13024
13025 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
13026
13027         * doc/getdate.texi: New file, from coreutils with modifications for
13028         the new TZ parsing.
13029
13030 2004-10-27  Derek R. Price  <derek@ximbiot.com>
13031
13032         * lib/mktime.c (not_equal_tm): Remove redundant check.
13033
13034 2004-10-24  Paul Eggert  <eggert@cs.ucla.edu>
13035
13036         * modules/regex (lib_SOURCES): Add regex.c.
13037         Reported by James Youngman in
13038         <http://lists.gnu.org/archive/html/bug-gnulib/2004-10/msg00199.html>.
13039
13040 2004-10-24  Paul Eggert  <eggert@cs.ucla.edu>
13041
13042         * lib/getdate.y: Use Bison 1.875 features, and some minor
13043         code cleanups.  This change does not affect semantics.
13044         Don't include <stdlib.h>; no longer needed.
13045         Don't include unlocked-io.h; only the "#if TEST" code uses
13046         stdio, and performance isn't crucial there.
13047         (PC, YYLEX_PARAM, YYPARSE_PARAM): Remove; replaced by
13048         Bison 1.875 features as described below.
13049         All uses of "PC." replaced by "pc->".
13050         (YYSTYPE): Add a forward declaration.
13051         (yylex, yyerror): Use full prototypes in forward decls.
13052         Use "%pure-parser" rather than obsolescent "%pure_parser".
13053         Use %parse-param and %lex-param instead of obsolescent
13054         YYPARSE_PARAM and YYLEX_PARAM.
13055         (meridian_table, month_and_day_table, time_units_table,
13056         relative_time_table, time_zone_table, military_table,
13057         lookup_zone, lookup_word, get_date):
13058         Use NULL instead of 0 where appropriate.
13059         (to_hour): Avoid abort (), to avoid a dependency on
13060         stdlib.h.
13061         (yyerror, yylex): Now accepts parser_control * arg.
13062         (main) [TEST]: Use '\0' rather than 0 for char.
13063
13064 2004-10-22  Paul Eggert  <eggert@cs.ucla.edu>
13065
13066         * m4/getpagesize.m4 (gl_GETPAGESIZE): Check for <sys/param.h>.
13067
13068 2004-10-22  Paul Eggert  <eggert@cs.ucla.edu>
13069
13070         * lib/getpagesize.c (getpagesize): Don't assume <sys/param.h> exists.
13071         It's now the caller's responsibility to handle the case where
13072         !HAVE_GETPAGESIZE && !defined getpagesize.
13073
13074         * lib/mktime.c (leapyear): Arg is long int, not int.
13075
13076 2004-10-18  Paul Eggert  <eggert@cs.ucla.edu>
13077
13078         * lib/argp-fs-xinl.c, argp-xinl.c: Update from glibc.
13079
13080 2004-10-17  Paul Eggert  <eggert@cs.ucla.edu>
13081
13082         * gnulib-tool (func_emit_lib_Makefile_am): Fix typo: a $ was
13083         missing.  Problem reported by James Youngman.
13084
13085 2004-10-16  Simon Josefsson  <jas@extundo.com>
13086
13087         * gnulib-tool: Fix comments.  Fix parse problem.
13088         (func_emit_lib_Makefile_am): Don't hard code a in libgl_a_SOURCES.
13089
13090 2004-10-15  Paul Eggert  <eggert@cs.ucla.edu>
13091
13092         * m4/getopt.m4 (gl_GETOPT): Detect and reject the incompatible BSD
13093         implementation of getopt_long.  Problem reported by Alexander Taler in:
13094         http://lists.gnu.org/archive/html/bug-gnulib/2004-10/msg00103.html
13095
13096 2004-10-15  Bruno Haible  <bruno@clisp.org>
13097
13098         * gnulib-tool: Untabify. Initialize supplied_libname.
13099         (func_usage): More homogenous output.
13100         (func_modules_transitive_closure, func_modules_to_filelist,
13101         func_emit_lib_Makefile_am): New functions.
13102         (func_import): New function, extracted from big case statement. Use
13103         func_get_license, func_modules_transitive_closure,
13104         func_modules_to_filelist, func_emit_lib_Makefile_am. Initialize
13105         opt_lgpl. Don't use test -a, as it's not portable.
13106         (func_create_testdir): Use func_modules_transitive_closure,
13107         func_modules_to_filelist, func_emit_lib_Makefile_am.
13108
13109 2004-10-15  Bruno Haible  <bruno@clisp.org>
13110
13111         * gnulib-tool (func_import): Let gl_INIT define LTALLOCA when needed.
13112
13113 2004-10-15  Bruno Haible  <bruno@clisp.org>
13114
13115         * gnulib-tool (func_emit_lib_Makefile_am): Add markers to separate
13116         the portions belonging to each module.
13117         Suggested by Derek Robert Price <derek@ximbiot.com>.
13118
13119 2004-10-12  Simon Josefsson  <jas@extundo.com>
13120
13121         * lib/getpass.c (fflush_unlocked, flockfile, funlockfile)
13122         (fputs_unlocked, putc_unlocked) [!_LIBCS && !USE_UNLOCKED_IO]: Map
13123         to real functions.
13124
13125 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
13126
13127         * modules/vsnprintf: New file.
13128
13129 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
13130
13131         * m4/vsnprintf.m4: New file.
13132
13133 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
13134
13135         * lib/vsnprintf.h: New file.
13136         * lib/vsnprintf.c: New file.
13137
13138 2004-10-11  Bruno Haible  <bruno@clisp.org>
13139
13140         * MODULES.html.sh (Support for systems lacking ISO C 99): Add
13141         vsnprintf.
13142
13143 2004-10-10  Paul Eggert  <eggert@cs.ucla.edu>
13144
13145         * config/srclistvars.sh: Add GNUSTANDARDS (for eggert only).
13146
13147 2004-10-07  Bruno Haible  <bruno@clisp.org>
13148
13149         * lib/snprintf.c (snprintf): Avoid a memory allocation if the result
13150         fits into the provided buffer.
13151
13152 2004-10-06  Paul Eggert  <eggert@cs.ucla.edu>
13153
13154         * lib/diacrit.c, diacrit.h: Add GPL notice.
13155
13156         * lib/atanl.c, logl.c: Add GPL notice, to match glibc's added LGPL
13157         notice.
13158         * lib/atanl.c (atanl): Keep the code as similar to glibc as possible.
13159         * lib/logl.c (logl): Keep the code as similar to glibc as possible.
13160         This avoids a potential constant-folding bug.
13161
13162 2004-10-05  Bruno Haible  <bruno@clisp.org>
13163
13164         * m4/strsep.m4 (gl_FUNC_STRSEP): Require AC_GNU_SOURCE. Don't check
13165         for the declaration of strsep.
13166
13167 2004-10-05  Bruno Haible  <bruno@clisp.org>
13168
13169         * lib/strsep.h: Don't declare strsep() if HAVE_STRSEP.
13170
13171 2004-10-04  Simon Josefsson  <jas@extundo.com>
13172
13173         * modules/memmem: New file.
13174         * tests/test-memmem.c: New file.
13175         * MODULES.html.sh (Extra functions based on ANSI C 89): Add memmem.
13176
13177 2004-10-04  Simon Josefsson  <jas@extundo.com>
13178
13179         * m4/memmem.m4: New file.
13180
13181 2004-10-04  Simon Josefsson  <jas@extundo.com>
13182
13183         * lib/memmem.h: New file.
13184         * lib/memmem.c: New file, taken from glibc.
13185
13186 2004-10-04  Simon Josefsson  <jas@extundo.com>
13187
13188         * lib/error.c, md5.c, regex.c: Use '#if USE_UNLOCKED_IO' instead of
13189         '#ifdef USE_UNLOCKED_IO'.
13190
13191 2004-10-04  Simon Josefsson  <jas@extundo.com>
13192
13193         * config/srclist.txt: Add memmem from glibc.
13194
13195 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
13196
13197         * modules/xalloc (Files, Makefile.am): Remove xstrdup.c.
13198
13199         * modules/argmatch, modules/argp, modules/closeout, modules/error,
13200         modules/exclude, modules/getdate, modules/getline,
13201         modules/getndelim2, modules/getpass, modules/getpass-gnu,
13202         modules/getusershell, modules/linebuffer, modules/md5,
13203         modules/mountlist, modules/posixtm, modules/readtokens,
13204         modules/readutmp, modules/regex, modules/sha1,
13205         modules/version-etc, modules/yesno:
13206         Remove dependency on unlocked-io.
13207
13208 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
13209
13210         * m4/xalloc.m4 (gl_PREREQ_XSTRDUP): Remove.  All uses removed.
13211
13212         * m4/unlocked-io.m4: Add copyright notice.
13213         (gl_FUNC_GLIBC_UNLOCKED_IO): Define USE_UNLOCKED_IO.
13214
13215 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
13216
13217         * lib/xalloc.h (xmemdup): Renamed from xclone.  All uses changed.
13218         * lib/xmalloc.c (xmemdup): Likewise.
13219         * lib/xalloc.h (CCLONE, CLONE, NEW, XCALLOC, XMALLOC, XREALLOC,
13220         XFREE): Remove these long-obsolescent macros.
13221         * lib/xmalloc.c (xstrdup): Implementation moved here from xstrdup.c
13222         * lib/xstrdup.c: Remove.
13223
13224         * lib/regex.c (re_comp): Cast gettext return value to char *,
13225         Problem reported by Martin Neitzel via Mark D. Baushke.
13226
13227 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
13228
13229         * lib/argmatch.c, closeout.c, error.c, exclude.c, getdate.y,
13230         getndelim2.c, getpass.c, getusershell.c, linebuffer.c,
13231         md5.c, mountlist.c, posixtm.c, readtokens.c, readutmp.c,
13232         regex.c, sha1.c, version-etc.c, yesno.c:
13233         Include "unlocked-io.h" only if USE_UNLOCKED_IO.
13234         * lib/unlocked-io.h: Don't worry about USE_UNLOCKED_IO; that's now
13235         the includer's responsibility.
13236
13237         Sync from coreutils.
13238
13239         * lib/modechange.c (mode_compile): Don't decrement a pointer that
13240         points to the start of a string, as the C Standard says the
13241         resulting behavior is undefined.
13242
13243         * lib/backupfile.h (enum backuptype): Rename none -> no_backups,
13244         simple -> simple_backups, numbered_existing ->
13245         numbered_existing_backups, numbered -> numbered_backups
13246         to avoid shadowing problems.  All uses changed.
13247         * lib/argmatch.c (enum backuptype) [defined TEST]: Likewise.
13248         * lib/backupfile.c (check_extension, numbered_backup):
13249         Rename locals to avoid shadowing 'basename'.
13250         * lib/backupfile.h (VALID_BACKUP_TYPE): Don't evaluate arg more than
13251         once.
13252
13253         * lib/.cppi-disable: Add getopt_.h, getopt_int.h.
13254         * lib/.cvsignore: Add getopt.h.
13255
13256 2004-10-04  Bruno Haible  <bruno@clisp.org>
13257
13258         * modules/README: New file.
13259         * gnulib-tool (func_all_modules, func_verify_module): modules/README is
13260         not a module.
13261
13262 2004-10-02  Jim Meyering  <jim@meyering.net>
13263
13264         * lib/dirfd.h, getpagesize.h: Add copyright notice.
13265
13266 2004-10-01  Yoann Vandoorselaere <yoann@prelude-ids.org>
13267
13268         * modules/strsep: New file.
13269
13270 2004-10-01  Yoann Vandoorselaere <yoann@prelude-ids.org>
13271
13272         * m4/strsep.m4: New file.
13273
13274 2004-10-01  Yoann Vandoorselaere <yoann@prelude-ids.org>
13275
13276         * lib/strsep.h: New file.
13277         * lib/strsep.c: New file.
13278
13279 2004-10-01  Simon Josefsson  <jas@extundo.com>
13280
13281         * lib/snprintf.c (snprintf): Handle size==0.
13282
13283 2004-10-01  Simon Josefsson  <jas@extundo.com>
13284             Bruno Haible  <bruno@clisp.org>
13285
13286         * lib/snprintf.c: Include <stdarg.h>, <stdlib.h>, <string.h>.
13287         (snprintf): Declare 'args'.
13288
13289 2004-10-01  Paul Eggert  <eggert@cs.ucla.edu>
13290
13291         * lib/snprintf.c: Remove comments as to why each header is needed.
13292
13293 2004-10-01  Bruno Haible  <bruno@clisp.org>
13294
13295         * MODULES.html.sh: Add strsep.
13296
13297 2004-09-30  Simon Josefsson  <jas@extundo.com>
13298
13299         * modules/snprintf: New file.
13300
13301 2004-09-30  Simon Josefsson  <jas@extundo.com>
13302
13303         * m4/snprintf.m4: New file.
13304
13305 2004-09-30  Simon Josefsson  <jas@extundo.com>
13306
13307         * lib/snprintf.h, lib/snprintf.c: New files.
13308
13309 2004-09-30  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
13310
13311         * lib/argp-help.c (canon_doc_option): Fixed coredump if *name==NULL
13312         (hol_entry_help): Never translate an empty string.
13313         Do not translate option tag (opt->name) if OPTION_NO_TRANS is set
13314         * lib/argp.h (OPTION_NO_TRANS): New option.
13315
13316 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
13317
13318         * modules/argp (Maintainer): Replace Simon Josefsson
13319         by Sergey Poznyakoff.
13320
13321 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
13322
13323         * config/srclist.txt: Comment-out argp/argp.h, until we get the argp
13324         changes merged back into glibc.
13325
13326 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
13327
13328         * MODULES.html.sh (Support for systems lacking ISO C 99): Add snprintf.
13329
13330 2004-09-29  Oskar Liljeblad  <oskar@osk.mine.nu>
13331
13332         * lib/xvasprintf.c: Include xalloc.h.
13333         (xvasprintf): Use xalloc_die, not xmalloc_die.
13334
13335 2004-09-29  Bruno Haible  <bruno@clisp.org>
13336
13337         * modules/alloca-opt: New file, derived from modules/alloca.
13338         * modules/allocsa: Depend on alloca-opt instead of alloca.
13339         * modules/setenv: Likewise.
13340         * modules/vasnprintf: Likewise.
13341         * MODULES.html.sh: Add alloca-opt.
13342
13343 2004-09-28  Simon Josefsson  <jas@extundo.com>
13344
13345         * gnulib-tool: New parameter --lgpl, to asseert that modules are
13346         LGPL, and to replace license template from GPL to LGPL.
13347
13348 2004-09-28  Paul Eggert  <eggert@cs.ucla.edu>
13349
13350         * modules/dummy: Change license to LGPL.
13351
13352 2004-09-28  Paul Eggert  <eggert@cs.ucla.edu>
13353
13354         * lib/dummy.c: Change copyright notice to FSF, and license to GPL.
13355
13356 2004-09-24  Simon Josefsson  <jas@extundo.com>
13357
13358         * modules/minmax (License): Change from GPL to LGPL.
13359
13360 2004-09-23  Simon Josefsson  <jas@extundo.com>
13361
13362         * gnulib-tool (--import): Typo.
13363
13364 2004-09-23  Simon Josefsson  <jas@extundo.com>
13365
13366         * gnulib-tool (--import): Make sure *.m4 end up in m4/ by default.
13367
13368 2004-09-22  Bruno Haible  <bruno@clisp.org>
13369
13370         * modules/*: Add 'License' field.
13371         * gnulib-tool: Accept --extract-license option.
13372         (func_get_license): New function.
13373
13374 2004-09-21  Bruno Haible  <bruno@clisp.org>
13375
13376         * modules/vasnprintf (Files): Add m4/stdint_h.m4, m4/inttypes_h.m4.
13377         Reported by Simon Josefsson.
13378
13379 2004-09-20  Paul Eggert  <eggert@cs.ucla.edu>
13380
13381         * modules/inttostr (Files): Add m4/longlong.m4, since it uses
13382         gl_AC_TYPE_LONG_LONG.
13383
13384 2004-09-20  Paul Eggert  <eggert@cs.ucla.edu>
13385
13386         * config/srclist.txt: Add getsubopt.c, since libc bought our changes.
13387
13388 2004-09-18  Simon Josefsson  <jas@extundo.com>
13389         and  Paul Eggert  <eggert@cs.ucla.edu>
13390
13391         * gnulib-tool: Replace various ad-hoc automake/autoconf/aclocal
13392         calls with autoreconf.  Define GL_LIB.
13393
13394 2004-09-14  Karl Berry  <karl@gnu.org>
13395
13396         * config/srclist.txt: unsync setenv.c, sigh.
13397
13398 2004-09-13  Paul Eggert  <eggert@cs.ucla.edu>
13399
13400         * lib/argp-pvh.c (argp_program_version_hook): Provide initial value.
13401         Problem reported by Bruno Haible in:
13402         http://lists.gnu.org/archive/html/bug-tar/2004-09/msg00023.html
13403
13404 2004-09-13  Paul Eggert  <eggert@cs.ucla.edu>
13405
13406         * config/srclist.txt: Comment out argp-pvh.c.
13407
13408 2004-09-11  Paul Eggert  <eggert@cs.ucla.edu>
13409
13410         * lib/mempcpy.h: Wrap the entire include file inside #ifndef mempcpy,
13411         in case some system header has #define'd it.  Problem reported by
13412         Soeren D. Schulze in
13413         <http://lists.gnu.org/archive/html/bug-gnulib/2004-09/msg00017.html>.
13414
13415 2004-09-09  Karl Berry  <karl@gnu.org>
13416
13417         * regex.[ch]: delete from the root.  These were supposed to be
13418                 synced with emacs cvs, but this has not happened for about
13419                 a year, and anyway nothing else uses emacs regex.[ch].
13420                 bug-gnulib mail from Jeff Bailey, 9 Sep 2004 15:49:24 -0700.
13421                 lib/regex[.ch] is untouched.
13422
13423 2004-09-09  Bruno Haible  <bruno@clisp.org>
13424
13425         * modules/vasnprintf (Files): Add m4/eoverflow.m4.
13426
13427 2004-09-09  Bruno Haible  <bruno@clisp.org>
13428
13429         * m4/eoverflow.m4: New file, taken from GNU libiconv eilseq.m4 with
13430         modifications.
13431         * m4/vasnprintf.m4 (gl_FUNC_VASNPRINTF): Require gl_EOVERFLOW.
13432
13433 2004-09-08  Oskar Liljeblad  <oskar@osk.mine.nu>
13434
13435         * modules/xvasprintf: New file.
13436         * MODULES.html.sh (Extra functions based on ANSI C 89): Add vasprintf.
13437
13438 2004-09-08  Oskar Liljeblad  <oskar@osk.mine.nu>
13439
13440         * lib/xvasprintf.h: New file.
13441         * lib/xvasprintf.c: New file.
13442         * lib/xasprintf.c: New file.
13443
13444 2004-09-08  Bruno Haible  <bruno@clisp.org>
13445
13446         * m4/stdint.m4: New file, taken from GNU clisp with modifications.
13447
13448 2004-09-08  Bruno Haible  <bruno@clisp.org>
13449
13450         * lib/vasnprintf.c (VASNPRINTF): Signal EOVERFLOW if the resulting
13451         length is > INT_MAX.
13452         * lib/vasprintf.c (vasprintf): Don't test for length > INT_MAX any
13453         more.
13454
13455 2004-09-08  Bruno Haible  <bruno@clisp.org>
13456
13457         * lib/stdint_.h: New file, taken from GNU clisp.
13458
13459 2004-09-08  Bruno Haible  <bruno@clisp.org>
13460             Oskar Liljeblad  <oskar@osk.mine.nu>
13461
13462         * modules/stdint: New file.
13463         * MODULES.html.sh (Support for systems lacking ISO C 99): Add stdint.
13464
13465 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
13466
13467         Import from coreutils.
13468         * lib/userspec.c: Don't use <alloca.h>, so that we don't use alloca on
13469         strings on unbounded length.  alloca's performance benefits aren't
13470         that important here.
13471         (V_STRDUP): Remove.
13472         (parse_with_separator): New function, with most of the internals
13473         of the old parse_user_spec.  Allow user to omit both user and group,
13474         for compatibility with FreeBSD.
13475         Clone only the user name, not the entire spec.
13476         Do not set *uid, *gid unless entirely successful.
13477         Avoid memory leak in some failing cases.
13478         Fix regression for USER.GROUP reported by Dmitry V. Levin in
13479         <http://lists.gnu.org/archive/html/bug-coreutils/2004-08/msg00102.html>
13480         (parse_user_spec): Rewrite to use parse_with_separator.
13481
13482 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
13483
13484         * modules/userspec: Don't depend on alloca.
13485
13486 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
13487
13488         * m4/userspec.m4 (gl_USERSPEC): Don't require AC_FUNC_ALLOCA.
13489
13490 2004-08-17  Paul Eggert  <eggert@cs.ucla.edu>
13491
13492         * MODULES.html.sh: Add xalloc-die, c-strtod, c-strtold, raise,
13493         readtokens0, getcwd, fcntl-safer, canonicalize, cycle-check,
13494         utimecmp, utimens, xnanosleep.  Rename sha to sha1.
13495
13496 2004-08-16  Simon Josefsson  <jas@extundo.com>
13497
13498         * gnulib-tool: Use sed instead of autoconf --trace, inspired by
13499         libtoolize behaviour by "Gary V. Vaughan" <gary@gnu.org>.
13500         Add --dry-run for --import.
13501         Let user provided command line parameters override configure.ac
13502         settings.
13503
13504 2004-08-12  Simon Josefsson  <jas@extundo.com>
13505
13506         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE): New macro,
13507         as discussed with Paul Eggert in threads rooted at
13508         <http://lists.gnu.org/archive/html/bug-gnulib/2004-06/msg00039.html>
13509         and
13510         <http://lists.gnu.org/archive/html/bug-gnulib/2004-07/msg00001.html>.
13511         Before, the test was empty, and relied on ELIDE_CODE in source
13512         code.)
13513         (gl_PREREQ_GETOPT): New macro.
13514         (gl_GETOPT): Use them.
13515
13516 2004-08-12  Simon Josefsson  <jas@extundo.com>
13517
13518         * lib/getopt.c, getopt1.c: Remove ELIDE_CODE hack.
13519         * lib/getopt_.h: Renamed from getopt.h.
13520
13521 2004-08-12  Simon Josefsson  <jas@extundo.com>
13522
13523         * gnulib-tool: Add --source-base, --m4-base, --libtool options.
13524         Change default library name from libfoo to libgnu.
13525         Now, if you have a configure.ac that says:
13526                 gl_SOURCE_BASE(gl)
13527                 gl_M4_BASE(gl/m4)
13528                 gl_MODULES(error getopt etcetera)
13529                 gl_INIT
13530         you can import all you need by running:
13531                 ../gnulib/gnulib-tool --import
13532
13533         * modules/getopt (Files): Rename getopt.h to getopt_.h.
13534         (Makefile.am): Rewrite, use logic from argz.
13535         (Include): Use <getopt.h> instead of "getopt.h".
13536
13537 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
13538
13539         * modules/argp (Files): Add m4/unlocked-io.m4.
13540         (Depends-on): Add extensions.
13541
13542 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
13543
13544         * m4/argp.m4 (gl_ARGP): Do not check for argp.h or argp_parse; nobody
13545         uses HAVE_ARGP_H or HAVE_ARGP_PARSE.
13546         Require gl_FUNC_GLIBC_UNLOCKED_IO, gl_USE_SYSTEM_EXTENSIONS.
13547         Check for program_invocation_name, program_invocation_short_name,
13548         flockfile, funlockfile, features.h, _getopt_long_only_r.
13549
13550 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
13551
13552         * lib/argp-help.c, argp-parse.c: Use "gettext.h" instead of
13553         its complicated substitute.
13554         * lib/argp-help.c: Include <errno.h>, for program_invocation_short_name
13555         and program_invocation_name.
13556         (__argp_basename) [!_LIBC]: Remove; the only use was
13557         replaced by its body.
13558         (__argp_short_program_name): Change condition from
13559         !defined __argp_short_program_name to
13560         ! (defined _LIBC || HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME),
13561         to match argp-namefrob.h.
13562         (__argp_failure): Don't assume strerror_r returns char *.
13563         * lib/argp-parse.c (N_): Define unconditionally.
13564         (argp_default_options): Fill out initializers with 0 to avoid
13565         gcc warnings.
13566
13567 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
13568
13569         * config/srclist.txt: Remove getopt.c, getopt.h (renamed to getopt_.h),
13570         getopt1.c.
13571
13572 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
13573
13574         Merge from coreutils.
13575
13576         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for wmemchr and wmemcpy.
13577
13578         * m4/obstack.m4 (gl_PREREQ_OBSTACK): Require
13579         gl_AC_HEADER_INTTYPES_H, gl_AC_HEADER_STDINT_H, gl_AC_TYPE_UINTMAX_T.
13580
13581 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
13582
13583         Merge from coreutils.
13584
13585         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Don't set to 1 if missing
13586         wmemchr or wmemcpy.  Problem reported by Robert Dahlem
13587         for Reliant Unix 5.43.
13588
13589         * lib/obstack.c: Include <inttypes.h> and <stdint.h> if available.
13590         (union fooround): Use uintmax_t, not long int.
13591         The rest is a merge from libc:
13592         [defined _LIBC]: Include <shlib-compat.h>.
13593         (_obstack) [defined _LIBC]: Remove after 2.3.4.
13594
13595         * lib/settime.c (settime): Recode to avoid warning with
13596         Sun Forte C 6U2.
13597
13598         * lib/strverscmp.c: Convert to UTF-8.
13599
13600 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
13601
13602         * modules/obstack (Files): Add m4/inttypes_h.m4, m4/stdint_h.m4,
13603         m4/uintmax_t.m4.
13604
13605 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
13606
13607         * modules/xalloc-die: New file.
13608         * modules/xalloc: Remove dependencies on error, gettext, exitfail.
13609
13610         * modules/md5 (Files): Add m4/uint32_t.m4.
13611         * modules/sha1: Renamed from modules/sha.
13612         (Files):
13613         Rename lib/sha.h to lib/sha1.h.
13614         Rename lib/sha.c to lib/sha1.c.
13615         Rename m4/sha.m4 to m4/sha1.m4.
13616         (lib_SOURCES): Likewise.
13617         (configure.ac): Rename gl_SHA to gl_SHA1.
13618         (Include): sha.h -> sha1.h.
13619
13620 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
13621
13622         * m4/uint32_t.m4, m4/uintptr_t.m4: New files.
13623         * m4/sha1.m4: Renamed from sha.m4.
13624         (gl_SHA1): Renamed from gl_SHA.  All uses changed.
13625
13626 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
13627
13628         * lib/obstack.h (obstack_empty_p):
13629         Don't assume that chunk->contents is suitably aligned.
13630         * lib/obstack.c (_obstack_begin, _obstack_begin_1, _obstack_newchunk):
13631         Likewise. Problem reported by Benno in
13632         <http://sources.redhat.com/ml/libc-alpha/2004-08/msg00055.html>.
13633
13634         * lib/chown.c (rpl_chown): Work even if the file is writeable but not
13635         readable.  This could be improved further but it'd take some work.
13636
13637 2004-08-08  Simon Josefsson  <jas@extundo.com>
13638
13639         * modules/xgethostname (Depends-on): Remove exit and error (not
13640         used).
13641
13642         * modules/getpass-gnu: Add getpass.h.
13643         (Depends-on): Add stdbool.
13644         * modules/getpass: Add getpass.h.
13645
13646 2004-08-08  Simon Josefsson  <jas@extundo.com>
13647
13648         * m4/getpass.m4 (gl_FUNC_GETPASS, gl_FUNC_GETPASS_GNU):
13649         Check getpass declaration.
13650
13651 2004-08-08  Simon Josefsson  <jas@extundo.com>
13652
13653         * lib/xgethostname.c: Don't include error.h (not used).
13654
13655         * lib/getpass.h: Add.
13656         * lib/getpass.c: Include getpass.h first.
13657
13658 2004-08-08  Paul Eggert  <eggert@cs.ucla.edu>
13659
13660         * lib/xalloc-die.c: New file.
13661         * lib/xalloc.h (xalloc_fail_func, xalloc_msg_memory_exhausted): Remove.
13662         All uses removed.
13663         * lib/xmalloc.c (xalloc_fail_func, xalloc_msg_memory_exhausted):
13664         Likewise. Move inclusions of gettext.h, error.h, exitfail.h to
13665         xalloc-die.c.
13666         (_, N_, xalloc_die): Move to xalloc-die.c.
13667         * lib/userspec.c (parse_user_spaec): Use xstrdup rather than strdup,
13668         so that we needn't mess with xalloc_msg_memory_exhausted.
13669
13670         * lib/sha1.h: Renamed from sha.h.
13671         (SHA1_H): Renamed from _SHA_H.
13672         (sha1_ctx): Renamed from sha_ctx.
13673         (sha1_init_ctx): Renamed from sha_init_ctx.
13674         (sha1_process_block): Renamed from sha_process_block.
13675         (sha1_process_bytes): Renamed from sha_process_bytes.
13676         (sha1_finish_ctx): Renamed from sha_finish_ctx.
13677         (sha1_read_ctx): Renamed from sha_read_ctx.
13678         (sha1_stream): Renamed from sha_stream.
13679         (sha1_buffer): Renamed from sha_buffer.
13680         * lib/sha1.c: Likewise; renamed from sha.c.
13681         Do not include <sys/types.h>.
13682         Include <stddef.h> rather than <stdlib.h>.
13683
13684 2004-08-08  Bruno Haible  <bruno@clisp.org>
13685
13686         * lib/pathname.h (FILE_SYSTEM_PREFIX_LEN): Renamed from
13687         FILESYSTEM_PREFIX_LEN.
13688         * lib/progreloc.c: Likewise.
13689         * lib/concatpath.c (concatenated_pathname): Use FILE_SYSTEM_PREFIX_LEN.
13690
13691 2004-08-06  Simon Josefsson  <jas@extundo.com>
13692
13693         * modules/progname (Depends-on): Don't depend on stdbool.
13694
13695 2004-08-06  Simon Josefsson  <jas@extundo.com>
13696
13697         * modules/getsubopt: New file.
13698         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
13699         getsubopt.
13700
13701 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
13702
13703         More merge from coreutils.
13704
13705         * m4/utimens.m4, m4/utimecmp.m4: New files.
13706         * m4/backupfile.m4, euidacces.m4, acl.m4, afs.m4, calloc.m4, dirfd.m4,
13707         fsusage.m4, jm-macros.m4, ls-mntd-fs.m4, md5.m4, mountlist.m4,
13708         prereq.m4, sha.m4: Import changes from coreutils.
13709
13710 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
13711
13712         More merge from coreutils.
13713         * modules/raise, modules/readtokens0, modules/utimens:
13714         * modules/utimecmp, module/xnanosleep: New files.
13715         * modules/strftime: Add lib/strftime.h.
13716         Change include from <time.h> to "strftime.h".
13717         * modules/yesno: Add lib/yesno.h.
13718         * modules/backupfile: Remove lib/addext.c.
13719         * modules/euidaccess: Add stat-macros.h.
13720         * modules/canonicalize, modules/euidaccess,
13721         modules/filemode, modules/lchown, modules/makepath,
13722         modules/rmdir, modules/stat: Likewise.
13723
13724 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
13725
13726         Merge from tar.
13727         * lib/argp-help.c (make_hol, hol_append): Don't assume that
13728         SIZE_MAX is a valid preprocessor constant.
13729         (__argp_basename): Change from "#ifndef _LIBC"
13730         to "#ifndef __argp_short_program_name", so that
13731         we don't compile these functions for tar.
13732
13733         More merges from coreutils.
13734         * lib/raise.c, lib/readtokens0.h, lib/readtokens0.c, lib/strftime.h:
13735         * lib/utimens.h, lib/utimens.c, lib/utimecmp.h, lib/utimecmp.c:
13736         * lib/xnanosleep.h, lib/xnanosleep.c, lib/yesno.h: New files.
13737         * lib/addext.c: Remove; no longer needed.
13738         * lib/yesno.c, lib/argmatch.h, lib/argmatch.c, lib/backupfile.h,
13739         lib/backupfile.c, lib/euidaccess.c, lib/filemode.c, lib/closeout.c,
13740         lib/dup2.c, lib/exclude.c, lib/fileblocks.c, lib/filemode.c,
13741         lib/fnmatch.c, lib/fnmtahc_loop.c, lib/fopen-safer.c, lib/fsusage.c,
13742         lib/fsusage.h, lib/ftruncate.c, lib/full-write.c, lib/getdate.y,
13743         lib/getloadavg.c, lib/getugroups.c, lib/hard-locale.c,
13744         lib/hard-locale.h, lib/hash.c, lib/human.c, lib/human.h, lib/lchown.c,
13745         lib/lchown.h, lib/makepath.c, lib/makepath.h, lib/md5.c, lib/md5.h,
13746         lib/memchr.c, lib/memcoll.c, lib/memrchr.c, lib/modechange.c,
13747         lib/modechange.h, lib/mountlist.c, lib/mountlist.h, lib/nanosleep.c,
13748         lib/posixtm.c, lib/putenv.c, quotearg.c, lib/quotearg.h,
13749         lib/readtokens.c, lib/readutmp.c, lib/readutmp.h, lib/rmdir.c,
13750         lib/safe-read.c, lib/save-cwd.c, lib/savedir.c, lib/setenv.c,
13751         lib/sig2str.c, lib/stat.c, lib/strtoimax.c, lib/strverscmp.c,
13752         lib/userspec.c, lib/utime.c, lib/version-etc.c., lib/xgethostname.c,
13753         lib/xmemcoll.c, lib/xreadlink.c, lib/xstrtod.c, lib/xstrtod.h,
13754         lib/xstrtoimax.c, lib/xstrtol.c, lib/xstrtol.h, lib/xstrtoumax.c:
13755         Import changes from coreutils.
13756
13757 2004-08-05  Simon Josefsson  <jas@extundo.com>
13758
13759         * m4/strdup.m4: Always run gl_PREREQ_STRDUP, since strdup.h need it.
13760
13761 2004-08-05  Simon Josefsson  <jas@extundo.com>
13762
13763         * m4/getsubopt.m4: New file.
13764
13765 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
13766
13767         Merge from coreutils.
13768
13769         * m4/c-strtod.m4, m4/canonicalize.m4, m4/fcntl-safer.m4:
13770         * m4/getcwd-path-max.m4: New files.
13771
13772         * m4/dos.m4 (gl_AC_DOS): filesystem -> file system renaming.
13773         FILESYSTEM_PREFIX_LEN ->
13774         FILE_SYSTEM_PREFIX_LEN.
13775         FILESYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX ->
13776         FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX.
13777         FILESYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR ->
13778         FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR.
13779
13780         * m4/path-concat.m4 (gl_PATH_CONCAT): Don't require gl_AC_DOS, the
13781         prerequisite modules now handle the DOS stuff.
13782         Don't check for unistd.h.
13783
13784 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
13785
13786         Merge from coreutils.
13787
13788         * lib/.gdb-history: Remove; this doesn't belong here.
13789
13790         * lib/c-strtod.c, lib/c-strtod.h, lib/c-strtold.c, lib/cycle-check.c:
13791         * lib/cycle-check.h, lib/dev-ino.h, lib/canonicalize.h:
13792         * lib/canonicalize.c, lib/fcntl-safer.h, lib/fcntl-safer.c:
13793         * lib/getcwd.c: New files.
13794
13795         * lib/dirname.h: Include <stdbool.h>.
13796         (FILE_SYSTEM_PREFIX_LEN): Renamed from FILESYSTEM_PREFIX_LEN,
13797         for consistency with POSIX terminology.  All uses changed.
13798         (IS_ABSOLUTE_FILE_NAME, IS_RELATIVE_FILE_NAME): New macros.
13799         (strip_trailing_slashes): Use bool for booleans.
13800         * lib/stripslash.c (strip_trailing_slashes): Likewise.
13801
13802         * lib/error.c: Work around bug in OpenBSD 3.4 sterror_r: it
13803         sometimes returns a positive errno value even when it succeeds.
13804         (print_errno_message) [!LIBC]: Fall back on strerror if
13805         __strerror_r fails.
13806
13807         * lib/path-concat.c (mempcpy): Don't define if a system header defines
13808         it. Don't include stdio.h, stdlib.h, unistd.h, strdup.h.
13809         (longest_relative_suffix): New function.
13810         (path_concat): Use it.  Assume first argument is not NULL.
13811         Port to DOS.  Omit redundant separators.
13812         Report an error instead of returning NULL.
13813         Use mempcpy instead of memcpy.
13814         (xpath_concat): Remove: not declared or used.
13815
13816         * lib/same.h: Include <stdbool.h>
13817         (same_name): Return bool, not int.
13818         * lib/same.c (same_name): Likewise.
13819         (errno): Don't declare; we assume C89 or better now.
13820
13821         * lib/stat-macros (S_ISCTG, S_ISOFD, S_ISOFL): New macros,
13822         if not already defined.
13823
13824         * lib/xgetcwd.c (errno): Don't declare; we assume C89 or better now.
13825         * lib/dup-safer.c (errno): Likewise.
13826
13827 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
13828
13829         Merge from coreutils.
13830         * modules/c-strtod, modules/c-strtold, modules/canonicalize:
13831         * modules/cycle-check, modules/fcntl-safer, modules/getcwd: New files.
13832         * modules/path-concat: Don't depend on strdup.
13833
13834 2004-08-03  Simon Josefsson  <jas@extundo.com>
13835
13836         * lib/strdup.h: Only use HAVE_DECL_STRDUP if defined.
13837         * lib/progname.h: Don't include stdbool.h.
13838
13839 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
13840
13841         * modules/fatal: Remove, as the "fatal" module wasn't used or working.
13842         * MODULES.html.sh (func_all_modules): Remove fatal.
13843
13844 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
13845
13846         * m4/fatal.m4: Remove, as the "fatal" module wasn't used or working.
13847
13848 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
13849
13850         * lib/fatal.c, fatal.h: Remove as the "fatal" module wasn't used or
13851         working.
13852
13853 2004-08-02  Simon Josefsson  <jas@extundo.com>
13854
13855         * lib/getsubopt.h: New file, with comments from Bruno Haible.
13856         * lib/getsubopt.c: New file, from glibc, but slightly modified based on
13857         suggestions from Paul Eggert <eggert@cs.ucla.edu>.
13858
13859 2004-08-01  Simon Josefsson  <jas@extundo.com>
13860
13861         * lib/xgetdomainname.c: Include stdlib.h, for free().
13862
13863 2004-07-19  Bruno Haible  <bruno@clisp.org>
13864
13865         * MODULES.html.sh (func_all_modules): Add dummy.
13866
13867 2004-07-16  Simon Josefsson  <jas@extundo.com>
13868
13869         * modules/dummy: New file.
13870
13871 2004-07-16  Simon Josefsson  <jas@extundo.com>
13872
13873         * lib/dummy.c: New file.
13874
13875 2004-07-16  Bruno Haible  <bruno@clisp.org>
13876
13877         * lib/backupfile.h: Add extern "C" for C++.
13878         * lib/closeout.h: Likewise.
13879         * lib/copy-file.h: Likewise.
13880         * lib/findprog.h: Likewise.
13881         * lib/full-write.h: Likewise.
13882         * lib/pathname.h: Likewise.
13883         * lib/progname.h: Likewise.
13884         * lib/stpcpy.h: Likewise.
13885         * lib/stpncpy.h: Likewise.
13886         * lib/strcase.h: Likewise.
13887         * lib/strstr.h: Likewise.
13888         * lib/xalloc.h: Likewise.
13889
13890         * lib/mbswidth.h: Add extern "C" for C++.
13891         Reported by Albert Chin-A-Young <china@thewrittenword.com>.
13892
13893 2004-07-13  Robert Millan  <robertmh@gnu.org>
13894
13895         * m4/host-os.m4: s/KNetBSD/kNetBSD/g and s/KFreeBSD/kFreeBSD/g.
13896
13897 2004-07-09  Simon Josefsson  <jas@extundo.com>
13898
13899         * lib/getndelim2.c: Include stddef.h, for ptrdiff_t.  (FreeBSD 4.9
13900         failed without this.)
13901
13902 2004-07-09  Paul Eggert  <eggert@cs.ucla.edu>
13903
13904         * modules/chown (Files): Add lib/fchown-stub.c, since
13905         gl_PREREQ_CHOWN invokes AC_LIBOBJ(fchown-stub).
13906
13907 2004-07-09  Paul Eggert  <eggert@cs.ucla.edu>
13908
13909         * lib/fchown-stub.c: New file.
13910
13911 2004-06-24  Jim Meyering  <jim@meyering.net>
13912
13913         * lib/obstack.h (obstack_base): Cast to (void *), per documentation.
13914
13915 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
13916
13917         * modules/argz: Omit "#include".
13918
13919         * MODULES.html.sh (func_all_modules): Add calloc, to match
13920         2004-06-01 addition of calloc module.
13921
13922 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
13923
13924         * m4/argz.m4: New file, which is autoupdated from libtool.
13925
13926 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
13927
13928         * lib/argz.c, lib/argz_.h: New files, which are autoupdated from
13929         libtool.
13930
13931 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
13932
13933         * config/srclist-update: Don't insist on "USA." before the
13934         close-comment, as libtool omits the period and puts the */ on a
13935         separate line.
13936         * config/srclist.txt: Add argz.c, argz_.h, argz.m4.
13937         * config/srclistvars.sh: Add LIBTOOL (for eggert only).
13938
13939 2004-06-22  Gary V. Vaughan  <gary@gnu.org>
13940
13941         * modules/argz: New file.
13942         * MODULES.html.sh (func_all_modules): Add argz.
13943
13944 2004-06-12  Jim Meyering  <jim@meyering.net>
13945         and  Paul Eggert  <eggert@cs.ucla.edu>
13946
13947         * modules/hash (Files): Add lib/xalloc.h.
13948         * modules/pipe (Depends-on): Add wait-process.
13949         * modules/stat (Depends-on): Add xalloc.
13950         * modules/userspec (Files): Add lib/userspec.h.
13951         * modules/xstrto
13952
13953         Upgrade from gettext-0.13.
13954         * modules/gettext (Files): Add m4/intmax.m4, m4/longdouble.m4,
13955         m4/longlong.m4, m4/printf-posix.m4, m4/signed.m4, m4/size_max.m4,
13956         m4/wchar_t.m4, m4/wint_t.m4, m4/xsize.m4.
13957
13958 2004-06-10  Jim Meyering  <jim@meyering.net>
13959
13960         * lib/calloc.c: New file.
13961
13962 2004-06-06  Paul Eggert  <eggert@cs.ucla.edu>
13963
13964         * lib/getdate.y (yylex): Allow space between sign and number.
13965         Problem reported by Dan Jacobson.
13966
13967 2004-06-01  Paul Eggert  <eggert@cs.ucla.edu>
13968
13969         Merge from coreutils CVS.
13970
13971         * m4/backupfile.m4, dirname.m4, human.m4, inttypes.m4, longlong.m4,
13972         makepath.m4, memchr.m4, memcmp.m4, mountlist.m4, path-concat.m4,
13973         putenv.m4, quotearg.m4, readutmp.m4, strtoimax.m4, strtoll.m4,
13974         strtoull.m4, strtoumax.m4, ulonglong.m4, vasnprintf.m4,
13975         xstrtol.m4: Fix copyright date and/or serial number.
13976
13977         * m4/chown.m4 (gl_PREREQ_CHOWN): Check for fcntl.h.
13978         See if we need an fchown replacement.
13979         (gl_FUNC_CHOWN_FOLLOWS_SYMLINK): New macro.
13980         (gl_FUNC_CHOWN): Require gl_FUNC_CHOWN_FOLLOWS_SYMLINK,
13981         and use the replacement function if we detect either defect.
13982
13983         * m4/prereq.m4 (gl_PREREQ): Add gl_ALLOCSA, gl_CLOEXEC, gl_INTTOSTR,
13984         gl_UTIMECMP.
13985
13986 2004-06-01  Paul Eggert  <eggert@cs.ucla.edu>
13987         and  Jim Meyering  <jim@meyering.net>
13988
13989         Merge from coreutils CVS.
13990
13991         * lib/stat-macros.h: New file, with contents from file-type.h
13992         and coreutils' system.h.
13993         * lib/file-type.c: Include "stat-macros.h".
13994         * lib/file-type.h (file_type): Move all macro definitions to new file,
13995         stat-macros.h.
13996
13997         * lib/chown.c (rpl_chown) [CHOWN_FAILS_TO_HONOR_ID_OF_NEGATIVE_ONE]:
13998         Wrap old code with this conditional.
13999         [CHOWN_MODIFIES_SYMLINK]: Try to work around a chown
14000         function that does not dereference symlinks.
14001         * lib/lchown.c (lchown) [CHOWN_MODIFIES_SYMLINK]: Just call chown.
14002
14003         * lib/xreadlink.c: Include xreadlink.h first, to catch .h file
14004         dependency problems.
14005         (xreadlink): Accept new arg SIZE, for efficiency.
14006         All decls and uses changed.
14007         * lib/xreadlink.h: Include <stddef.h>, for size_t.
14008
14009         * lib/.cppi-disable: Add alloca_.h, allocsa.h, exit.h, getndelim2.h,
14010         gettext.h, localcharset.h, strdup.h, strndup.h, strtoul.c, time_r.h.
14011
14012         * lib/.cvsignore: Add alloca.h, fnmatch.h, poll.h, stdbool.h,
14013         sysexits.h.
14014
14015 2004-06-01  Jim Meyering  <jim@meyering.net>
14016
14017         * m4/calloc.m4: New file.
14018
14019 2004-05-31  Paul Eggert  <eggert@cs.ucla.edu>
14020
14021         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Detect _Bool bug in HP aC++/ANSI
14022         C B3910B A.05.55 [Dec 04 2003].  Problem reported by Jim Meyering.
14023         Also, fix a typo in a diagnostic.
14024
14025 2004-05-30  Paul Eggert  <eggert@cs.ucla.edu>
14026
14027         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Do not require AC_FUNC_MALLOC
14028         or AC_FUNC_REALLOC.
14029
14030 2004-05-30  Paul Eggert  <eggert@cs.ucla.edu>
14031
14032         * lib/xmalloc.c (HAVE_MALLOC, HAVE_REALLOC): Do not require these
14033         macros to be defined.
14034         (xnmalloc_inline, xnrealloc_inline, xcalloc): Do not die if
14035         the allocator returns NULL because the requested size is zero.
14036
14037 2004-05-20  Paul Eggert  <eggert@cs.ucla.edu>
14038
14039         * lib/malloc/obstack.c (_obstack) [defined _LIBC]: Bring back this
14040         var.  Add comment explaining why libc still defines it.  This
14041         merges the following patch from glibc:
14042         http://sources.redhat.com/ml/libc-alpha/2004-05/msg00157.html
14043
14044 2004-05-20  Andreas Schwab  <schwab@suse.de>
14045
14046         * m4/free.m4: Replace free if it not known to work, not the other
14047         way round.
14048
14049 2004-05-19  Paul Eggert  <eggert@cs.ucla.edu>
14050
14051         * lib/obstack.c (_obstack): Remove unused variable.  It hasn't been
14052         present in glibc since revision 1.1 of this file.
14053         * lib/obstack.h (_obstack_free, obstack_1grow, obstack_1grow_fast,
14054         obstack_alignment_mask, obstack_alloc, obstack_base,
14055         obstack_blank, obstack_blank_fast, obstack_chunk_size,
14056         obstack_copy, obstack_copy0, obstack_finish, obstack_grow,
14057         obstack_grow0, obstack_init, obstack_int_grow,
14058         obstack_int_grow_fast, obstack_make_room, obstack_memory_used,
14059         obstack_next_free, obstack_object_size, obstack_ptr_grow,
14060         obstack_ptr_grow_fast, obstack_room): Remove declarations of
14061         nonexistent functions.
14062
14063 2004-05-18  Karl Berry  <karl@gnu.org>
14064
14065         * config/srclist.txt: break link for vasnprintf.c.
14066
14067 2004-05-17  Paul Eggert  <eggert@cs.ucla.edu>
14068
14069         Port obstack to the AS/400, where pointers are 16 bytes wide and
14070         you cannot cast an integer to a valid pointer.  This patch is
14071         currently waiting to be integrated into glibc; see
14072         <http://sources.redhat.com/ml/libc-alpha/2004-05/msg00073.html>.
14073
14074         * lib/obstack.h (__PTR_TO_INT, __INT_TO_PTR): Remove.
14075         All uses of __INT_TO_PTR (PTR_TO_INT ...) replaced by __PTR_ALIGN.
14076         (__BPTR_ALIGN, __PTR_ALIGN): New macros.
14077         (struct obstack): temp member is now a union of a pointer and
14078         an integer, instead of an integer.  All integer uses changed.
14079         This does not affect the physical layout of struct obstack,
14080         except on hosts (like the AS/400) where the size or alignment of
14081         void * is greater than that of ptrdiff_t.
14082         (obstack_finish) [! (defined __GNUC__ && defined __STDC__ &&
14083         __STDC__)]: Store temporary in pointer member of union, not
14084         integer member.
14085         * lib/obstack.c: Include <stddef.h>, for offsetof.
14086         (struct fooalign): Remove; it doesn't need a name.
14087         (union fooround): Change double to long double, and add void *.
14088         (DEFAULT_ALIGNMENT): Use offsetof to compute.
14089         (DEFAULT_ALIGNMENT, DEFAULT_ROUNDING): Now an enum constant,
14090         not a macro.  Hence the values are always int; so remove all
14091         casts-to-int in uses.
14092
14093 2004-05-17  Paul Eggert  <eggert@cs.ucla.edu>
14094
14095         * config/srclist.txt: Break link for argp-help.c and argp-parse.c until
14096         we can get this patch merged into glibc.
14097
14098 2004-05-17  Derek R. Price  <derek@ximbiot.com>
14099             Paul Eggert  <eggert@cs.ucla.edu>
14100
14101         * m4/argp: Depend on alloca.
14102
14103 2004-05-17  Derek R. Price  <derek@ximbiot.com>
14104             Paul Eggert  <eggert@cs.ucla.edu>
14105
14106         * lib/argp-help.c, argp-parse.c: Assume <alloca.h> rather than
14107         freecoding.
14108
14109 2004-05-17  Bruno Haible  <bruno@clisp.org>
14110
14111         * lib/vasnprintf.c (VASNPRINTF): Correctly handle the case of a
14112         precision that consists of a '.' followed by an empty digit string.
14113         Patch by Tor Lillqvist <tml@iki.fi>.
14114
14115 2004-05-16  Paul Eggert  <eggert@cs.ucla.edu>
14116
14117         * m4/alloca.m4 (gl_FUNC_ALLOCA): Define HAVE_ALLOCA_H always,
14118         for backward compatibility with older code.  We need our own
14119         alloca.h if _AIX is defined.  Define HAVE_ALLOCA if we discover
14120         it under some other name, and our alloca.h will define it.
14121
14122 2004-05-16  Paul Eggert  <eggert@cs.ucla.edu>
14123             Derek Price  <derek@ximbiot.com>
14124
14125         * lib/alloca.c: Include <alloca.h>, to get our interface.
14126         * lib/alloca_.h: Use __alloca on AIX, so that we don't have to
14127         include <alloca.h> first.  Use C89 prototype for alloca; this
14128         requires including <stddef.h> for size_t.  Use extern "C" if C++.
14129         Use #elif for simplicity, since we can assume C89 now.
14130         Don't try to source the system alloca.h since it will not be found
14131         and to prevent recursively including its replacement.
14132         * lib/fnmatch.c: Include <alloca.h> instead of opencoding.
14133         * lib/regex.c: Likewise.
14134
14135 2004-05-16  Derek Price  <derek@ximbiot.com>
14136             Paul Eggert  <eggert@cs.ucla.edu>
14137
14138         getline cleanup.  This changes the getndelim2 API: both order of
14139         arguments, and meaning of delim2 (now uses EOF, not 0, to indicate
14140         no delimiter).
14141
14142         * lib/getline.c: Don't include stddef.h or stdio.h, since our
14143         interface does that.
14144         (getline): Always use getdelim, so that we don't have two
14145         copies of this code.
14146         * lib/getndelim2.c: Include <limits.h>, <inttypes.h>, <stdint.h>
14147         if available.
14148         (PTRDIFF_MAX, SIZE_MAX, SSIZE_MAX): Define if not defined.
14149         (GETNDELIM2_MAXIMUM): New macro.
14150         (getndelim2): Reorder arguments.  delim==EOF now means no delimiter,
14151         instead of the old practice of delim2==0.  All callers changed.
14152         Return -1 on overflow, instead of returning junk.
14153         Do not set *linesize unless allocation succeeds.
14154         * lib/getndelim2.h: Do not include stddef.h; no longer needed, now
14155         that we include sys/types.h.
14156         * lib/getnline.h: Likewise.
14157         * lib/getndelim2.h (GETNLINE_NO_LIMIT): New macro.
14158         (getndelim2): Reorder arguments.
14159         * lib/getnline.c (getnline, getndelim):
14160         Don't discard the NMAX argument.
14161         (getnline): Invoke getndelim, to avoid code duplication.
14162         * lib/getnline.h (GETNLINE_NO_LIMIT): New macro, used instead
14163         of (size_t) -1 by callers of the getnline family.
14164
14165 2004-05-13  Paul Eggert  <eggert@cs.ucla.edu>
14166
14167         * m4/gettime.m4 (gl_GETTIME): Require gl_TIMESPEC.
14168         Check for gettimeofday.
14169         * m4/settime.m4 (gl_SETTIME): Require gl_TIMESPEC.
14170         Check for settimeofday, stime.
14171
14172 2004-05-13  Paul Eggert  <eggert@cs.ucla.edu>
14173
14174         * lib/nanosleep.c (suspended): Change its type from int to
14175         sig_atomic_t volatile.
14176         (first_call): Make it private to rpl_nanosleep, and have it
14177         be zero initially as that's a bit faster.
14178         (my_usleep): Round up fractional times instead of truncating them,
14179         as this is the usual meaning for 'sleep'.
14180
14181         * lib/gettime.c (gettime): Fall back on `time' if `gettimeofday'
14182         doesn't work.
14183         * lib/settime.c: Include <unistd.h>, for stime (on Solaris 8, anyway).
14184         (ENOSYS): Define if not defined.
14185         (settime): Fall back on stime if it exists and settimeofday fails.
14186         But don't bother with fallbacks if a method fails with errno == EPERM.
14187
14188 2004-05-11  Jim Meyering  <jim@meyering.net>
14189
14190         Prior to this change, the save_cwd caller required read access to the
14191         current directory on most systems (ones with the fchdir function).
14192
14193         * lib/save-cwd.c (save_cwd) [HAVE_FCHDIR]: If opening `.' read-only
14194         fails, try write-only, and finally, resort to using xgetcwd.
14195
14196 2004-05-06  Paul Eggert  <eggert@cs.ucla.edu>
14197
14198         * lib/obstack.c, obstack.h: Import changes from libc.
14199
14200 2004-04-28  Bruno Haible  <bruno@clisp.org>
14201
14202         * lib/findprog.c (find_in_path): Treat Cygwin like Windows, since it
14203         also implicitly appends .exe to executables.
14204         * lib/localcharset.c (ISSLASH): Treat Cygwin like Windows, since it now
14205         accepts Windows pathnames.
14206         * lib/pathname.h (ISSLASH, IS_PATH_WITH_DIR, FILESYSTEM_PREFIX_LEN):
14207         Treat Cygwin like Windows, since it now accepts Windows pathnames.
14208         * lib/progreloc.c (ISSLASH, IS_PATH_WITH_DIR, FILESYSTEM_PREFIX_LEN):
14209         Treat Cygwin like Windows, since it now accepts Windows pathnames.
14210         Reported by Derek Robert Price <derek@ximbiot.com>.
14211
14212 2004-04-21  Karl Berry  <karl@gnu.org>
14213
14214         * config/srclist.txt (localcharset.c): break sync.
14215
14216 2004-04-20  Paul Eggert  <eggert@twinsun.com>
14217
14218         * m4/host-os.m4: Add a copyright notice.
14219
14220 2004-04-20  Jim Meyering  <jim@meyering.net>
14221
14222         Change UTILS_ to gl_ in AC_DEFINE'd names.
14223         Change utils_- and jm_-prefixed variables, too.
14224         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Renamed from
14225         UTILS_FUNC_MKDIR_TRAILING_SLASH.
14226         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Renamed from UTILS_FUNC_MKSTEP.
14227
14228         * m4/dirfd.m4 (gl_FUNC_DIRFD): Rename from UTILS_FUNC_DIRFD.
14229         Don't emit trailing blanks.
14230         Also rename jm_-prefixed variables to have gl_ prefix.
14231
14232         * m4/host-os.m4 (gl_HOST_OS): Rename from UTILS_HOST_OS.
14233         Also rename jm_-prefixed variables to have gl_ prefix.
14234
14235         * m4/jm-macros.m4: Reflect the renamings.
14236         * m4/prereq.m4: Likewise.
14237
14238 2004-04-20  Jim Meyering  <jim@meyering.net>
14239
14240         * lib/getndelim2.c (getndelim2): Upon realloc failure, don't leak
14241         memory.
14242
14243 2004-04-20  Jim Meyering  <jim@meyering.net>
14244             Bruno Haible  <bruno@clisp.org>
14245
14246         * lib/localcharset.c (get_charset_aliases) [!VMS && !WIN32]: Don't leak
14247         memory when realloc fails.
14248
14249 2004-04-19  Jim Meyering  <jim@meyering.net>
14250
14251         * m4/readutmp.m4 (gl_PREREQ_READUTMP): Require gl_FUNC_FREE,
14252         now that readutmp.c may call `free (0)'.
14253
14254 2004-04-19  Bruno Haible  <bruno@clisp.org>
14255
14256         * m4/mbrtowc.m4: Change jm_ to gl_ in cache variables as well.
14257         * m4/inttypes_h.m4: Likewise.
14258         * m4/stdint_h.m4: Likewise.
14259         * m4/intmax_t.m4: Likewise.
14260         * m4/uintmax_t.m4: Likewise.
14261
14262 2004-04-18  Jim Meyering  <jim@meyering.net>
14263
14264         * m4/prereq.m4: Don't forbid jm_ prefix.
14265
14266         * m4/afs.m4, m4/allocsa.m4, m4/assert.m4, m4/backupfile.m4:
14267         * m4/bison.m4, m4/check-decl.m4, m4/chown.m4, m4/d-ino.m4:
14268         * m4/d-type.m4, m4/dirname.m4, m4/dos.m4, m4/error.m4, m4/fpending.m4:
14269         * m4/fstypename.m4, m4/fsusage.m4, m4/ftruncate.m4, m4/getdate.m4:
14270         * m4/getgroups.m4, m4/gettext.m4, m4/glibc21.m4, m4/group-member.m4:
14271         * m4/human.m4, m4/intmax.m4, m4/intmax_t.m4, m4/inttostr.m4:
14272         * m4/inttypes.m4, m4/inttypes_h.m4, m4/jm-macros.m4, m4/jm-winsz1.m4:
14273         * m4/jm-winsz2.m4, m4/lchown.m4, m4/lib-check.m4, m4/link-follow.m4:
14274         * m4/localcharset.m4, m4/longlong.m4, m4/ls-mntd-fs.m4, m4/lstat.m4:
14275         * m4/makepath.m4, m4/mbrtowc.m4, m4/mbswidth.m4, m4/memchr.m4:
14276         * m4/memcmp.m4, m4/mkdtemp.m4, m4/mkstemp.m4, m4/mountlist.m4:
14277         * m4/nanosleep.m4, m4/path-concat.m4, m4/perl.m4, m4/prereq.m4:
14278         * m4/putenv.m4, m4/quotearg.m4, m4/regex.m4, m4/stat.m4:
14279         * m4/stdint_h.m4, m4/strftime.m4, m4/strtoimax.m4, m4/strtoll.m4:
14280         * m4/strtoull.m4, m4/strtoumax.m4, m4/timespec.m4, m4/uintmax_t.m4:
14281         * m4/ulonglong.m4, m4/unlink-busy.m4, m4/unlocked-io.m4, m4/uptime.m4,
14282         * m4/utimbuf.m4, m4/utime.m4, m4/utimes-null.m4, m4/vasnprintf.m4:
14283         * m4/xstrtoimax.m4, m4/xstrtol.m4, m4/xstrtoumax.m4:
14284         Change jm_ to gl_ in AC_DEFINE'd names. Update all uses.
14285
14286 2004-04-18  Jim Meyering  <jim@meyering.net>
14287
14288         * lib/readutmp.c (read_utmp) [UTMP_NAME_FUNCTION]: Upon realloc
14289         failure, don't leak memory and do call END_UTMP_ENT.
14290
14291 2004-04-16  Jim Meyering  <jim@meyering.net>
14292
14293         * m4/prereq.m4 (jm_PREREQ_STAT): Remove macro.  It is specific to
14294         coreutils' stat program.
14295         (gl_PREREQ): Don't require jm_PREREQ_STAT.
14296
14297 2004-04-11  Paul Eggert  <eggert@twinsun.com>
14298
14299         * lib/inttostr.h: Include <limits.h> unconditionally, since we assume
14300         C89.
14301         (CHAR_BIT): Remove, since we assume C89.
14302         Include <stdint.h> if available, as per current Autoconf CVS advice.
14303
14304 2004-03-31  Jim Meyering  <jim@meyering.net>
14305
14306         * m4/prereq.m4: Require AC_FUNC_MALLOC, not jm_FUNC_MALLOC.
14307         Require AC_FUNC_REALLOC, not jm_FUNC_REALLOC.
14308         * m4/xalloc.m4: Likewise.
14309
14310 2004-03-30  Paul Eggert  <eggert@twinsun.com>
14311
14312         Merge from coreutils.
14313
14314         * m4/inttostr.m4: New file.
14315         * m4/getdate.m4 (gl_GETDATE): Remove time-related stuff.
14316         Require AM_STDBOOL_H and gl_TIMESPEC instead.
14317         Require gl_CLOCK_TIME.
14318         * m4/clock_time.m4 (gl_CLOCK_TIME): Require AC_GNU_SOURCE.
14319
14320 2004-03-30  Paul Eggert  <eggert@twinsun.com>
14321
14322         * lib/cloexec.h, cloexec.c (set_cloexec_flag): Return int
14323         not bool, to be more consistent with Unix conventions.
14324         Suggested by Bruno Haible.
14325
14326         Merge from coreutils.
14327
14328         * lib/imaxtostr.c, lib/inttostr.c, lib/inttostr.h, lib/offtostr.c:
14329         * lib/umaxtostr.c: New files.
14330
14331         * lib/getdate.h: Include stdbool.h, and timespec.h instead of
14332         the usual <time.h> dance.
14333         (get_date): Change signature to support fractional time stamps.
14334         All callers changed.
14335         * lib/getdate.y: Include "getdate.h" first, as we can now
14336         assume C89 and don't need to worry about 'const'.
14337         Similarly, include "unlocked-io.h" near start, not in middle.
14338         Include <limits.h>.
14339         (textint.value): Use long int rather than int.
14340         (textint.digits): Use size_t rather than int.
14341         (BILLION, LOG10_BILLION): New constants.
14342         (parser_control): New member rel_ns.  Members day_ordinal,
14343         time_zone, month, day, hour, minutes, rel_year, rel_month,
14344         rel_day, rel_hour, rel_minutes, rel_seconds
14345         are now long int, not int.  Member seconds is now struct timespec,
14346         not int.  New member timespec_seen.  Members dates_seen, days_seen,
14347         local_zones_seen, rels_seen, times_seen, zones_seen are now size_t,
14348         not int.
14349         (%union.intval): Now long int, not int.
14350         New member timespec.
14351         (tSDECIMAL_NUMBER, tUDECIMAL_NUMBER): New tokens.
14352         (seconds, signed_seconds, unsigned_seconds): New nonterminals.
14353         (spec): Now is a timespec or an item list.
14354         (timespec, items): New nonterminals.
14355         (time, rel, relunit, number, get_date):
14356         Add support for fractional seconds.
14357         (time): Fix bug: seconds weren't cleared in "00:00 +0000" syntax.
14358         (gmtime, localtime, mktime): Remove decls; not needed with C89.
14359         (to_hour): First arg is now long int, not int.
14360         (to_year): Returns long int, not int.
14361         Don't treat year -70 like 70.
14362         (tm_diff): Returns long int, not int.
14363         (lookup_word): Use bool instead of int when appropriate.
14364         (yylex): Use size_t for count, not int.
14365         Detect overflow when parsing large integer constants.
14366         Add support for fractions.
14367         (get_date): Make pointers 'const' if possible.
14368         Use more-portable code to detect integer overflow.
14369         (main) [TEST]: Adjust to above changes.  Test for localtime failure.
14370         Don't use ctime; it's not reliable if the year has >4 digits.
14371
14372         * lib/human.c (humblock): Inspect BLOCKSIZE if BLOCK_SIZE isn't set.
14373         This is for compatibility with BSD.
14374
14375         * lib/timespec.h (ST_TIME_CMP_NS, ST_TIME_CMP): Define.
14376         (ATIME_CMP, CTIME_CMP, MTIME_CMP, TIMESPEC_NS): Likewise.
14377         From coreutils' system.h.
14378
14379         * lib/userspec.c: Don't include "posixver.h".
14380         (parse_user_spec): Fall back on USER.GROUP parsing, regardless
14381         of POSIX version, as POSIX 1003.1-2001 allows that behavior as a
14382         compatible extension.  Simplify code by removing a boolean int
14383         that was always nonzero if a string was nonnull.
14384
14385 2004-03-30  Jim Meyering  <jim@meyering.net>
14386
14387         Merge from coreutils.
14388
14389         Avoid a configure-time warning about sys/ucred.h on OSF V4.0.
14390         * m4/ls-mntd-fs.m4: Test for sys/ucred.h separately, since
14391         on some systems one must include <grp.h> before it.
14392         Reported by Christian Krackowizer.
14393
14394 2004-03-30  Jim Meyering  <jim@meyering.net>
14395
14396         Merge from coreutils.
14397
14398         * lib/mountlist.c [HAVE_SYS_UCRED_H]: Include grp.h before sys/ucred.h.
14399
14400         * lib/readtokens.c (readtoken): Don't leak 64 bytes when reading
14401         an empty input stream.
14402
14403         * lib/readtokens.c: Include <stdbool.h>.
14404         (readtoken): Use `size_t' rather than int/long.
14405         All callers adjusted.
14406         Use `bool' rather than `int' where appropriate.
14407         Use memset rather than an explicit loop.
14408         Use x2nrealloc rather than xrealloc.
14409         Allow the use of `\0' as a delimiter.
14410         (readtokens): Likewise.
14411         * lib/readtokens.h (readtoken, readtokens): Update prototypes.
14412
14413 2004-03-30  Jim Meyering  <jim@meyering.net>
14414
14415         * m4/realloc.m4: Remove file, since now it does no more than
14416         AC_REQUIRE([AC_FUNC_REALLOC]), and that can be done via
14417         the `configure.ac' section of module/realloc.
14418         * m4/malloc.m4: Likewise, but for AC_FUNC_MALLOC.
14419
14420 2004-03-30  Bruno Haible  <bruno@clisp.org>
14421
14422         * lib/getloadavg.c (getloadavg): Don't assume setlocale returns
14423         nonnull.
14424
14425 2004-03-29  Paul Eggert  <eggert@twinsun.com>
14426
14427         Merge changes to getloadavg.c from coreutils and Emacs.
14428
14429         * lib/getloadavg.c [!defined HAVE_SETLOCALE] (setlocale):
14430         Define to an expression, not to the empty string.
14431         Include cloexec.h and xalloc.h.
14432         (getloadavg): Restore LC_NUMERIC locale after setting it temporarily.
14433         Use set_cloexec_flag rather than rolling our own.
14434         * lib/cloexec.c, lib/cloexec.h: New files.
14435
14436 2004-03-29  Paul Eggert  <eggert@twinsun.com>
14437
14438         * m4/cloexec.m4: New file.
14439
14440 2004-03-18  Paul Eggert  <eggert@twinsun.com>
14441
14442         * lib/getopt.h: Sync with libc CVS.
14443
14444 2004-03-18  Paul Eggert  <eggert@twinsun.com>
14445             Bruno Haible  <bruno@clisp.org>
14446
14447         * m4/mbswidth.m4 (gl_MBSWIDTH): Also test whether <wchar.h> declares
14448         mbswidth.
14449
14450 2004-03-18  Paul Eggert  <eggert@twinsun.com>
14451             Bruno Haible  <bruno@clisp.org>
14452
14453         * lib/mbswidth.h: Include <wchar.h> only if
14454         HAVE_DECL_MBSWIDTH_IN_WCHAR_H, not on all platforms that have
14455         <wchar.h>.
14456         * lib/mbswidth.c: Include <stdio.h> and <time.h> before <wchar.h>.
14457
14458 2004-03-09  Paul Eggert  <eggert@twinsun.com>
14459
14460         * lib/argp-parse.c, getopt.c, getopt.h, getopt1.c:
14461         Sync with libc CVS.
14462         * lib/getopt_int.h: New file, also synced from libc.
14463
14464 2004-03-09  Paul Eggert  <eggert@twinsun.com>
14465
14466         * config/srclistvars.sh: Add GNUWWWLICENSES for eggert.
14467         * config/srclist.txt: Sync getopt with libc.  Add getopt_int.h.
14468         Bring back getopt.c, getopt.h, getopt1.c.
14469
14470 2004-03-07  Paul Eggert  <eggert@twinsun.com>
14471
14472         * m4/c-stack.m4 (gl_PREREQ_C_STACK): Renamed from jm_PREREQ_C_STACK.
14473         All uses changed.  Check for sa_sigaction member; this fixes
14474         a bug first reported by Jason Andrade in
14475         <http://mail.gnu.org/archive/html/bug-textutils/2003-03/msg00027.html>.
14476
14477 2004-03-07  Paul Eggert  <eggert@twinsun.com>
14478
14479         * lib/c-stack.c (SIGACTION_WORKS): New macro.  Use it instead of long
14480         '#if' expressions.  Unlike the code it replaces, it does not
14481         depend on (defined _SC_PAGESIZE).  However, it does depend on
14482         HAVE_STRUCT_SIGACTION_SA_SIGACTION; this last change fixes a bug
14483         first reported by Jason Andrade in
14484         <http://mail.gnu.org/archive/html/bug-textutils/2003-03/msg00027.html>.
14485
14486 2004-02-25  Simon Josefsson  <jas@extundo.com>
14487
14488         * m4/strdup.m4 (gl_PREREQ_STRDUP): Check whether strdup is declared.
14489
14490 2004-02-25  Simon Josefsson  <jas@extundo.com>
14491
14492         * lib/strdup.h: New file.
14493         * lib/strdup.c: Include it.
14494         * lib/path-concat.c: Include strdup.h. Drop strdup declaration.
14495         * lib/userspec.c: Include strdup.h. Drop strdup declaration.
14496
14497 2004-02-23  Karl Berry  <karl@gnu.org>
14498
14499         * doc/maintain.texi, doc/standards.texi, doc/make-stds.texi: new files
14500         (from fencepost.gnu.org:/gd/gnuorg).
14501
14502 2004-02-23  Karl Berry  <karl@gnu.org>
14503
14504         * config/srclistvars.sh (GNUORG) [karl]: redefine.
14505         * config/srclist.txt: add maintain/standards documents.
14506
14507 2004-02-18  Bruno Haible  <bruno@clisp.org>
14508
14509         * m4/xsize.m4 (gl_XSIZE): Require AC_C_INLINE.
14510         Reported by Derek Robert Price <derek@ximbiot.com>.
14511
14512 2004-02-16  Karl Berry  <karl@gnu.org>
14513
14514         * config/mkinstalldirs, install-sh: update from automake.
14515
14516 2004-02-06  Karl Berry  <karl@gnu.org>
14517
14518         * m4/po.m4: update from gettext 0.14.1.
14519
14520 2004-02-06  Karl Berry  <karl@gnu.org>
14521
14522         * lib/config.charset: update from gettext 0.14.1.
14523
14524 2004-02-05  Paul Eggert  <eggert@twinsun.com>
14525
14526         Add comments and code, prompted by suggestions from Bruno Haible
14527         for sh-quote.
14528         * lib/quotearg.h (quotearg_alloc): New decl.  Improve the comments
14529         describing the enum quoting_style values.
14530         * lib/quotearg.c (quotearg_alloc): New function.
14531         (quotearg_buffer_restyled): Treat lone { and } as special.
14532         Treat = as special.  Work around bug with older shells
14533         that "see" a '\' that is really the 2nd byte of a multibyte char.
14534         Quote empty string with shell_quoting_style.
14535
14536 2004-02-03  Bruno Haible  <bruno@clisp.org>
14537
14538         * m4/pipe.m4: New file, from GNU gettext.
14539
14540 2004-02-03  Bruno Haible  <bruno@clisp.org>
14541
14542         * lib/pipe.h: New file, from GNU gettext.
14543         * lib/pipe.c: New file, from GNU gettext.
14544
14545 2004-01-27  Bruno Haible  <bruno@clisp.org>
14546
14547         * m4/execute.m4: New file, from GNU gettext.
14548
14549 2004-01-27  Bruno Haible  <bruno@clisp.org>
14550
14551         * lib/execute.h: New file, from GNU gettext.
14552         * lib/execute.c: New file, from GNU gettext.
14553         * lib/w32spawn.h: New file, from GNU gettext.
14554
14555 2004-01-24  Paul Eggert  <eggert@twinsun.com>
14556
14557         Merge from diffutils.
14558
14559         * lib/file-type.c (file_type): Add typed memory objects.
14560         * lib/file-type.h (S_TYPEISTMO): New macro.
14561
14562         * lib/c-stack.h (c_stack_action): Remove argv argument.
14563         * lib/c-stack.c (c_stack_action): Likewise.  All uses changed.
14564         (die): Don't calculate message unless segv_action returns.
14565         (get_stack_location, min_address_from_argv, max_address_from_argv,
14566         volatile stack_base, volatile_stack_size): Remove.
14567         (segv_handler): If ! HAVE_XSI_STACK_OVERFLOW_HEURISTIC, assume
14568         that every segmentation violation is a stack overflow.  (Ouch!)
14569         See Debian bug 136249 (still outstanding) for more info about why
14570         HAVE_XSI_STACK_OVERFLOW_HEURISTIC fails on Linux kernels.
14571
14572 2004-01-24  Paul Eggert  <eggert@twinsun.com>
14573
14574         Exit-status fix from coreutils.
14575
14576         Use exit_failure consistently in place of EXIT_FAILURE,
14577         so that program exit statuses are consistent on failure.
14578
14579         * lib/argmatch.c (ARGMATCH_DIE) [! defined ARGMATCH_DIE]:
14580         Include "exitfail.h", and use exit_failure rather than EXIT_FAILURE.
14581         * lib/argmatch.h: Comment fix to match the above.
14582         * lib/obstack.c (obstack_exit_failure) [!defined _LIBC]:
14583         Now a macro referring to exit_failure, instead of a separate
14584         variable.  Include "exitfail.h" to get it.
14585         * lib/xstrtol.h: Include "exitfail.h".
14586         (STRTOL_FATAL_ERROR): Exit with status exit_failure, not 2.
14587
14588         * lib/long-options.c (parse_long_options): Use prototype
14589         for usage function arg.  Pass it EXIT_SUCCESS rather than 0,
14590         for clarity.
14591
14592 2004-01-21  Jim Meyering  <jim@meyering.net>
14593
14594         * lib/mktime.c (__mktime_internal) [!_LIBC]: Define to mktime_internal
14595         so as not to conflict with a different-sized __mktime_internal
14596         function in GNU libc.
14597         * lib/timegm.c (__mktime_internal) [!_LIBC]: Likewise.
14598         Problem building statically-linked `ls' reported by Michael Brunnbauer.
14599
14600 2004-01-20  Karl Berry  <karl@gnu.org>
14601
14602         * config/config.guess: update from config.
14603
14604         * config/srclistvars.sh: GNUWWWLICENSES for karl.
14605
14606 2004-01-20  Bruno Haible  <bruno@clisp.org>
14607
14608         Safer stack allocation.
14609         * lib/setenv.c: Include allocsa.h.
14610         (alloca): Remove fallback definition.
14611         (freea): Remove macro.
14612         (__add_to_environ) [!_LIBC]: Use allocsa instead of alloca. Use freesa
14613         instead of freea.
14614
14615 2004-01-20  Bruno Haible  <bruno@clisp.org>
14616
14617         * m4/eealloc.m4: New file, from GNU gettext.
14618
14619 2004-01-20  Bruno Haible  <bruno@clisp.org>
14620
14621         * m4/allocsa.m4: New file, from GNU gettext.
14622
14623 2004-01-20  Bruno Haible  <bruno@clisp.org>
14624
14625         * lib/xallocsa.h: New file, from GNU gettext.
14626         * lib/xallocsa.c: New file, from GNU gettext.
14627
14628 2004-01-20  Bruno Haible  <bruno@clisp.org>
14629
14630         * lib/wait-process.c: On Windows, include windows.h. Needed on mingw.
14631
14632 2004-01-20  Bruno Haible  <bruno@clisp.org>
14633
14634         * lib/wait-process.c (wait_subprocess): Add ignore_sigpipe argument.
14635         * lib/wait-process.c (wait_subprocess): Likewise. Handle SIGPIPE
14636         specially.
14637
14638 2004-01-20  Bruno Haible  <bruno@clisp.org>
14639
14640         * lib/wait-process.c (wait_process): Disable the 2003-10-31 waitid()
14641         patch.
14642
14643 2004-01-20  Bruno Haible  <bruno@clisp.org>
14644
14645         * lib/wait-process.c (cleanup_slaves): Use ANSI C declaration.
14646
14647 2004-01-20  Bruno Haible  <bruno@clisp.org>
14648
14649         * lib/eealloc.h: New file.
14650
14651 2004-01-20  Bruno Haible  <bruno@clisp.org>
14652
14653         * lib/binary-io.h: Avoid warnings on Cygwin.
14654
14655 2004-01-20  Bruno Haible  <bruno@clisp.org>
14656
14657         * lib/allocsa.h: New file, from GNU gettext.
14658         * lib/allocsa.c: New file, from GNU gettext.
14659
14660 2004-01-18  Karl Berry  <karl@gnu.org>
14661
14662         * doc/gpl.texi, doc/lgpl.texi: new files.
14663
14664 2004-01-18  Karl Berry  <karl@gnu.org>
14665
14666         * config/srclistvars.sh (GNUWWWLICENSES): new variable.
14667         * config/srclist.txt ({fdl,gpl,lgpl}.text): get from there.
14668
14669 2004-01-15  Paul Eggert  <eggert@twinsun.com>
14670
14671         Merge from coreutils.
14672
14673         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Check for uintptr_t.
14674         * m4/posixver.m4 (gl_POSIXVER): Require gl_DEFAULT_POSIX2_VERSION.
14675         (gl_DEFAULT_POSIX2_VERSION): Move
14676         the documentation from 'configure' into 'config.hin',
14677         so that 'configure --help' isn't burdened by it and
14678         we don't have to worry about its formatting there.
14679         Reword the documentation so that it's more succinct
14680         and can be run together into a single paragraph.
14681         * m4/same.m4 (gl_SAME): Check for pathconf.
14682
14683 2004-01-15  Paul Eggert  <eggert@twinsun.com>
14684
14685         Merge from coreutils.
14686
14687         * lib/posixver.c: Include posixver.h.
14688
14689         * lib/same.c: Include <stdbool.h>, <limits.h>.
14690         (_POSIX_NAME_MAX): Define if not defined.
14691         (MIN): New macro.
14692         (same_name): If file names are silently truncated, report
14693         that the file names are the same if they are the same after
14694         the silent truncation.
14695
14696         * lib/xstrtod.h (xstrtod): Accept an extra arg, specifying the
14697         conversion function.
14698         * lib/xstrtod.c (xstrtod): Likewise.  All callers changed to
14699         include c-strtod.h and use c_strtod.  Don't include stdlib.h; no
14700         longer needed.
14701
14702 2004-01-15  Jim Meyering  <jim@meyering.net>
14703
14704         Merge from coreutils.
14705
14706         * m4/clock_time.m4 (gl_CLOCK_TIME): Don't set LIB_CLOCK_GETTIME
14707         if no library is required.
14708         * m4/jm-macros.m4: Don't require UTILS_SYS_OPEN_MAX.
14709         * m4/jm-macros.m4 (jm_MACROS): Require gl_FUNC_FREE.
14710         * m4/jm-macros.m4 (jm_MACROS): Require autoconf-2.58.
14711         (AC_LANG_SOURCE): Remove definition, now that we require autoconf-2.58.
14712         * m4/jm-macros.m4 (jm_MACROS): Don't require AC_FUNC_FTW.
14713         * m4/lib-check.m4 (jm_LIB_CHECK): Do not set LIB_CRYPT to the
14714         value, $ac_cv_search_crypt, if it's "none required".
14715         * m4/posixver.m4 (gl_DEFAULT_POSIX2_VERSION): New macro.
14716         * m4/prereq.m4 (jm_PREREQ): Require AC_FUNC_GETLOADAVG,
14717         not gl_FUNC_GETLOADAVG.
14718         * m4/prereq.m4 (jm_PREREQ): Require gl_READTOKENS, gl_MD5, gl_MAKEPATH,
14719         gl_LONG_OPTIONS, and gl_IDCACHE, gl_GETUGROUPS.
14720
14721 2004-01-15  Jim Meyering  <jim@meyering.net>
14722
14723         Merge from coreutils.
14724
14725         * lib/md5.h (rol) [__GNUC__ && __i386__]: Don't use `asm' code.  These
14726         days, gcc-3.x does better all by itself.  Patch from Dean Gaudet:
14727         http://mail.gnu.org/archive/html/bug-coreutils/2003-11/msg00144.html
14728
14729         * lib/posixver.c (DEFAULT_POSIX2_VERSION): Use definition of new,
14730         optional configure-time default.
14731
14732         * lib/version-etc.c (version_etc_copyright): Update copyright date.
14733
14734         * lib/xreadlink.c (xreadlink): Correct outdated comment.
14735
14736 2004-01-15  Alexandre Duret-Lutz  <adl@gnu.org>
14737
14738         Merge from coreutils.
14739
14740         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Do not set LIB_NANOSLEEP to the
14741         value, $ac_cv_search_nanosleep, if it's "none required".
14742
14743 2004-01-14  Paul Eggert  <eggert@twinsun.com>
14744
14745         * lib/fnmatch_loop.c (ALLOCA_LIMIT): Remove macro, which collided
14746         with like-named macro in fnmatch.c.
14747         (EXT): Use an internal constant instead.
14748
14749         Merge fnmatch patches from glibc.
14750         * lib/fnmatch.c (mbsinit): Remove define.
14751         Add libc_hidden_ver (__fnmatch, fnmatch).
14752         * lib/fnmatch_loop.c (FCT): Cast to int32_t and UCHAR when appropriate.
14753         Adjust to renaming of collseq_table_lookup to __collseq_table_lookup.
14754
14755 2004-01-14  Karl Berry  <karl@gnu.org>
14756
14757         * config/install-sh: update from automake.
14758
14759 2004-01-13  Karl Berry  <karl@gnu.org>
14760
14761         * config/install-sh: update from automake.
14762
14763 2004-01-09  Karl Berry  <karl@gnu.org>
14764
14765         * config/install-sh: update from automake.
14766
14767 2004-01-05  Karl Berry  <karl@gnu.org>
14768
14769         * config/config.{sub,guess}: update from config.
14770
14771 2003-12-31  Karl Berry  <karl@gnu.org>
14772
14773         * config/depcomp: update from automake.
14774
14775 2003-12-14  Karl Berry  <karl@gnu.org>
14776
14777         * lib/config.charset: update from gettext-runtime.
14778
14779 2003-12-03  Paul Eggert  <eggert@twinsun.com>
14780
14781         * lib/getgroups.c (getgroups): xmalloc takes one argument, not two.
14782         Bug reported by Alfred M. Szmidt.
14783
14784 2003-12-03  Bruno Haible  <bruno@clisp.org>
14785
14786         * m4/gettext.m4: Upgrade from gettext-0.13.
14787         * m4/po.m4: Upgrade from gettext-0.13.
14788         * m4/size_max.m4 (gl_SIZE_MAX): Don't use the _ONCE macros here.
14789         * m4/intmax.m4: New file, from gettext-0.13.
14790         * m4/printf-posix.m4: New file, from gettext-0.13.
14791
14792 2003-11-29  Karl Berry  <karl@gnu.org>
14793
14794         * lib/argp-{help.c,parse.c,namefrob.h}, argp.h: update from libc.
14795
14796 2003-11-25  Paul Eggert  <eggert@twinsun.com>
14797             Bruno Haible  <bruno@clisp.org>
14798
14799         * lib/printf-parse.h: Don't include sys/types.h.
14800         (ARG_NONE): New macro.
14801         (char_directive): Change type of *arg_index fields to size_t.
14802         * lib/printf-parse.c: Don't include sys/types.h.
14803         (SSIZE_MAX): Remove macro.
14804         (PRINTF_PARSE): Change the type of the arg_index variables to size_t.
14805         Remove unnecessary overflow check.
14806         * lib/vasnprintf.c (VASNPRINTF): Update for type change of *arg_index
14807         fields.
14808
14809 2003-11-25  Bruno Haible  <bruno@clisp.org>
14810
14811         * modules/vasnprintf (Files): Remove m4/ssize_t.m4.
14812
14813 2003-11-25  Bruno Haible  <bruno@clisp.org>
14814
14815         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_PARSE): Don't require
14816         gt_TYPE_SSIZE_T.
14817
14818 2003-11-24  Paul Eggert  <eggert@twinsun.com>
14819
14820         * modules/alloca: Remove dependency on xalloc.
14821
14822 2003-11-24  Paul Eggert  <eggert@twinsun.com>
14823
14824         * lib/alloca.c: Remove dependency on xalloc module.
14825         (xalloc_die): Remove.
14826         (memory_full) [!defined emacs]: New macro.
14827         [!defined emacs]: Don't include xalloc.h.
14828         (alloca): Invoke memory_full, not xalloc_die, if malloc fails or
14829         address arithmetic overflows.  Change datatypes a bit to avoid
14830         unnecessary casts.
14831
14832 2003-11-22  Jim Meyering  <jim@meyering.net>
14833
14834         * lib/xmalloc.c (x2nrealloc_inline): Fix typos in comments:
14835         s/size/size_t/.
14836
14837 2003-11-21  Karl Berry  <karl@gnu.org>
14838
14839         * config/config.{sub,guess}: update from config.
14840
14841 2003-11-18  Karl Berry  <karl@gnu.org>
14842
14843         * config/config.{sub,guess}: update from config.
14844
14845         * config/(printf-{parse,args}.[ch]): sync broken, sigh.
14846
14847 2003-11-17  Paul Eggert  <eggert@twinsun.com>
14848
14849         * README: Mention that S+T cannot overflow if S is the size of
14850         an existing object and T is sufficiently small.
14851
14852 2003-11-17  Jim Meyering  <jim@meyering.net>
14853
14854         On systems without utime and without a utimes function capable of
14855         dealing with a NULL struct utimbuf* argument, this utime replacement
14856         could -- in unusual circumstances -- leak a file descriptor.
14857         * lib/utime.c: Include <unistd.h> and <errno.h>.
14858         (utime_null): Be sure to close `fd' and to preserve errno.
14859         Reported by Geoff Collyer via Arnold Robbins.
14860
14861 2003-11-17  Bruno Haible  <bruno@clisp.org>
14862
14863         * modules/vasnprintf (Files): Add m4/ssize_t.m4.
14864         (Depends-on): Add xsize.
14865
14866 2003-11-17  Bruno Haible  <bruno@clisp.org>
14867
14868         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_PARSE): Require gt_TYPE_SSIZE_T.
14869
14870 2003-11-17  Bruno Haible  <bruno@clisp.org>
14871
14872         * lib/vasnprintf.c (alloca): Remove fallback definition.
14873         (freea): Remove definition.
14874         (VASNPRINTF): Use alloca only for small sizes, say <= 4000 bytes.
14875         Reported by Paul Eggert.
14876
14877 2003-11-16  Paul Eggert  <eggert@twinsun.com>
14878             Bruno Haible  <bruno@clisp.org>
14879
14880         Protect against address arithmetic overflow.
14881         * lib/printf-args.h: Include stddef.h.
14882         (arguments): Change type of field 'count' to size_t.
14883         * lib/printf-args.c (printf_fetchargs): Use size_t instead of
14884         'unsigned int' where appropriate.
14885         * lib/printf-parse.h: Include sys/types.h.
14886         (char_directive): Change type of *arg_index fields to ssize_t.
14887         (char_directives): Change type of fields 'count', max_*_length to
14888         size_t.
14889         * lib/printf-parse.c: Include sys/types.h and xsize.h.
14890         (SSIZE_MAX): Define fallback value.
14891         (PRINTF_PARSE): Use size_t instead of 'unsigned int' and ssize_t
14892         instead of 'int' where appropriate. Check a_allocated, d_allocated
14893         against overflow. Reject %m$ argument numbers > SSIZE_MAX + 1.
14894         * lib/vasnprintf.c: Include xsize.h.
14895         (VASNPRINTF): Use size_t instead of 'unsigned int' where appropriate.
14896         Check alloca, malloc, realloc, ENSURE_ALLOCATION arguments against
14897         overflow. Avoid wraparound when converting a width or precision from
14898         decimal to binary.
14899
14900 2003-11-16  Bruno Haible  <bruno@clisp.org>
14901
14902         Update from GNU gettext.
14903         * lib/printf-parse.c: Generalize to it can be compiled for wide
14904         strings.
14905         (PRINTF_PARSE, CHAR_T, DIRECTIVE, DIRECTIVES): New macros.
14906         * lib/vasnprintf.c: Generalize to it can be compiled for wide strings.
14907         (VASNPRINTF, CHAR_T, DIRECTIVE, DIRECTIVES, PRINTF_PARSE, USE_SNPRINTF,
14908         SNPRINTF): New macros.
14909         Don't include <alloca.h> if the file is used inside libintl.
14910         (local_wcslen): New function, for Solaris 2.5.1.
14911         (VASNPRINTF): Use it instead of wcslen.
14912
14913 2003-11-16  Bruno Haible  <bruno@clisp.org>
14914
14915         * lib/xsize.h (xmax): New function.
14916         (xsum, xsum3, xsum4): Declare as "pure" functions.
14917
14918 2003-11-12  Paul Eggert  <eggert@twinsun.com>
14919
14920         * modules/xalloc (Files): Undo latest change, since xalloc.h
14921         no longer needs SIZE_MAX or PTRDIFF_MAX.
14922
14923 2003-11-12  Paul Eggert  <eggert@twinsun.com>
14924
14925         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Do not require gl_SIZE_MAX or
14926         gl_PTRDIFF_MAX.
14927
14928 2003-11-12  Paul Eggert  <eggert@twinsun.com>
14929
14930         * lib/xstrtol.c (__xstrtol): Remove "break" immediately after
14931         "return", to pacify some unknown compiler.  Problem reported
14932         by Joerg Schilling.
14933
14934 2003-11-12  Paul Eggert  <eggert@twinsun.com>
14935
14936         * lib/xalloc.h: Do not include <limits.h> or <stdint.h>.
14937         (xalloc_oversized): Use sizeof (ptrdiff_t) and sizeof (size_t) for
14938         the heuristic, rather than PTRDIFF_MAX and SIZE_MAX.  This
14939         heuristic is just as accurate as far as we know, and it removes a
14940         dependency on size_max.m4 and ptrdiff_max.m4.
14941
14942 2003-11-11  Bruno Haible  <bruno@clisp.org>
14943
14944         * modules/xsize (Files): Add m4/size_max.m4.
14945         * modules/xalloc (Files): Add m4/size_max.m4, m4/ptrdiff_max.m4.
14946
14947 2003-11-11  Bruno Haible  <bruno@clisp.org>
14948
14949         * m4/size_max.m4: New file.
14950         * m4/ptrdiff_max.m4: New file.
14951         * m4/xsize,m4 (gl_XSIZE): Require gl_SIZE_MAX.
14952         * m4/xalloc.m4 (gl_PREREQ_XALLOC): New macro.
14953         (gl_XALLOC): Invoke it.
14954
14955 2003-11-11  Bruno Haible  <bruno@clisp.org>
14956
14957         * lib/xsize.h (SIZE_MAX): Remove fallback definition.
14958         * lib/xalloc.h: Include limits.h. Assume SIZE_MAX and PTRDIFF_MAX are
14959         defined.
14960
14961 2003-11-10  Paul Eggert  <eggert@twinsun.com>
14962
14963         * lib/xalloc.h (xalloc_oversized): [! (defined PTRDIFF_MAX &&
14964         PTRDIFF_MAX < SIZE_MAX)]: Fix off-by-one error that would have
14965         rejected some allocations of exactly SIZE_MAX - 2 bytes.
14966         From Bruno Haible.
14967         [defined PTRDIFF_MAX && PTRDIFF_MAX < SIZE_MAX]: Use SIZE_MAX,
14968         not (size_t) -1, since it's defined here.
14969
14970 2003-11-09  Karl Berry  <karl@gnu.org>
14971
14972         * config/mkinstalldirs, depcomp, mdate-sh: update from automake.
14973
14974 2003-11-06  Paul Eggert  <eggert@twinsun.com>
14975
14976         * lib/xalloc.h [HAVE_STDINT_H]: Include <stdint.h>.
14977         (xalloc_oversized) [! (PTRDIFF_MAX < SIZE_MAX)]:
14978         Reject sizes of exactly SIZE_MAX bytes.
14979         * lib/xreadlink.c: Include "xalloc.h" before checking whether SIZE_MAX
14980         is defined, since "xalloc.h" now defines SIZE_MAX on modern hosts.
14981
14982 2003-11-05  Bruno Haible  <bruno@clisp.org>
14983
14984         * lib/xsize.h: Include limits.h, to avoid a possible collision with
14985         SIZE_MAX defined in <limits.h> on Solaris.
14986
14987 2003-11-04  Jim Meyering  <jim@meyering.net>
14988
14989         * modules/sysexits: Use the `$(VAR)' notation for AC_SUBST'd
14990         variable names, rather than @VAR@.
14991         * modules/poll: Likewise.
14992
14993 2003-11-04  Bruno Haible  <bruno@clisp.org>
14994
14995         * modules/xsize: New file.
14996         * modules/linebreak: Depend on xsize.
14997         * MODULES.html.sh (func_all_modules): Add xsize.
14998
14999 2003-11-04  Bruno Haible  <bruno@clisp.org>
15000
15001         * m4/xsize.m4: New file.
15002
15003 2003-11-04  Bruno Haible  <bruno@clisp.org>
15004
15005         * lib/xsize.h: New file.
15006         * lib/linebreak.c: Include xsize.h.
15007         (mbs_possible_linebreaks, mbs_width_linebreaks): Check malloc()
15008         argument for overflow.
15009         Suggested by Paul Eggert.
15010
15011 2003-11-03  Karl Berry  <karl@gnu.org>
15012
15013         * config/config.{guess,sub}: update from config.
15014
15015 2003-11-03  Jim Meyering  <jim@meyering.net>
15016
15017         * modules/userspec (lib_SOURCES): Add userspec.h.
15018         (Include): Add "userspec.h".
15019         Improve description.
15020
15021 2003-11-03  Jim Meyering  <jim@meyering.net>
15022
15023         * lib/userspec.c: Include "userspec.h".
15024         * lib/userspec.h: New file.
15025
15026 2003-11-03  Bruno Haible  <bruno@clisp.org>
15027
15028         * m4/wait-process.m4 (gl_WAIT_PROCESS): Also check for waitid.
15029
15030 2003-11-03  Bruno Haible  <bruno@clisp.org>
15031
15032         * lib/wait-process.c (wait_process): Use waitid with WNOWAIT if
15033         available, to avoid (extremely rare) race condition.
15034         Suggested by Paul Eggert.
15035
15036 2003-11-02  Karl Berry  <karl@gnu.org>
15037
15038         * config/srclist.txt (vasprintf.c): sync broken, sigh.
15039
15040 2003-10-31  Paul Eggert  <eggert@twinsun.com>
15041
15042         * lib/mountlist.h (struct mount_entry.me_type_malloced): New member.
15043         * lib/mountlist.c (SIZE_MAX): Define if not defined already.
15044         (read_filesystem_list): Set and use me_type_malloced.
15045         Use "sizeof *me" rather than "sizeof (struct mount_entry)" (or
15046         whatever the type happens to be), for brevity and consistency.
15047         Check for size calculation overflow on Alphas running OSF/1.
15048
15049 2003-10-31  Jim Meyering  <jim@meyering.net>
15050
15051         * lib/hash.c: Include "xalloc.h" for use of xalloc_oversized.
15052
15053         * lib/linebuffer.c: Include <string.h> for declaration of memset.
15054
15055 2003-10-30  Paul Eggert  <eggert@twinsun.com>
15056             Bruno Haible  <bruno@clisp.org>
15057
15058         * lib/vasprintf.c: Include <limits.h>, <stdlib.h>.
15059         (vasprintf): Fail if the resulting length doesn't fit in an 'int'.
15060
15061 2003-10-30  Paul Eggert  <eggert@cs.ucla.edu>
15062
15063         * m4/host-os.m4 (UTILS_HOST_OS): Change netbsd*-gnu pattern back to
15064         netbsd*-gnu*.  Suggested by Robert Millan.
15065
15066 2003-10-29  Paul Eggert  <eggert@twinsun.com>
15067
15068         * modules/group-member: Depend on stdbool.
15069
15070 2003-10-29  Paul Eggert  <eggert@twinsun.com>
15071
15072         * m4/xalloc.m4 (gl_XALLOC): Undo previous change.
15073
15074 2003-10-29  Paul Eggert  <eggert@twinsun.com>
15075
15076         * m4/host-os.m4 (UTILS_HOST_OS): Resurrect netbsd*-gnu.  Add comments
15077         to it, and to knetbsd*-gnu and kfreebsd*-gnu.  Remove the '*' from
15078         after the 'gnu' in these cases.  This fixes some bugs in the
15079         previous change, and is based on suggestions by Robert Millan.
15080
15081 2003-10-29  Paul Eggert  <eggert@twinsun.com>
15082
15083         * lib/xalloc.h (xalloc_oversized): Now a macro, not a function,
15084         so that it works even if SIZE_MAX < N.  Do not include <stdbool.h>;
15085         no longer needed.
15086         * lib/quotearg.c (quotearg_n_options): Use it.
15087         * lib/group-member.c: Include <stdbool.h>.
15088         (free_group_info): Arg is now const *; don't free arg.
15089         (get_group_info): Now returns bool and accepts struct group_info *,
15090         rather than returning a malloc'ed struct group_info *.
15091         All uses changed.  Check for overflow in internal size calculation.
15092
15093         * lib/getusershell.c (readname): Simplify the code by using x2nrealloc
15094         rather than xmalloc/xrealloc.
15095         * lib/linebuffer.c (initbuffer, readlinebuffer): Simplify the code by
15096         using x2realloc rather than xmalloc/xrealloc.  Also, fix a C
15097         conformance bug: the old code used a pointer after freeing the
15098         storage that it addressed.
15099         * lib/hash.c (hash_initialize): Simplify the code by using
15100         xalloc_oversized rather than doing it by hand.
15101         * lib/getgroups.c (getgroups): Don't use xrealloc, since we don't need
15102         the buffer preserved.  Use free and xmalloc instead.
15103         * lib/quotearg.c (quotearg_n_options): Likewise.
15104         Use a simpler test for size overflow.  Don't use xalloc_oversized
15105         because unsigned int might be wider than size_t (!); this suggests
15106         that we should switch from unsigned int to size_t for slot numbers.
15107
15108 2003-10-28  Paul Eggert  <eggert@twinsun.com>
15109
15110         * m4/host-os.m4 (UTILS_HOST_OS): Identify GNU/KFreeBSD and
15111         GNU/KNetBSD.  These implementations use glibc atop the FreeBSD and
15112         NetBSD kernels.  Requested by Richard Stallman.
15113
15114 2003-10-27  Paul Eggert  <eggert@twinsun.com>
15115
15116         * lib/exclude.c (new_exclude): Use xzalloc rather than xmalloc
15117         to allocate the returned structure.  Do not allocate a subarray,
15118         as x2nrealloc will do that.
15119         (add_exclude): Use x2nrealloc to reallocate ex->exclude,
15120         instead of xnrealloc.
15121         (add_exclude_file): Use x2realloc instead of malloc + xnrealloc.
15122
15123 2003-10-27  Bruno Haible  <bruno@clisp.org>
15124
15125         * lib/stdbool_.h: Better support for BeOS.
15126
15127 2003-10-26  Paul Eggert  <eggert@twinsun.com>
15128
15129         * m4/xalloc.m4 (gl_XALLOC): Requore AC_C_INLINE, since xalloc.h
15130         now uses inline.
15131
15132 2003-10-26  Paul Eggert  <eggert@twinsun.com>
15133
15134         * lib/xalloc.h (xalloc_oversized): New static inline function, for
15135         callers that want to do their own size-overflow checking.  Include
15136         <stdbool.h>, since xalloc_oversized returns bool.
15137         * lib/xalloc.c (array_size_overflow): Remove.  All callers changed
15138         to use xalloc_oversized.
15139
15140         Add two functions x2realloc, x2nrealloc, for programs that grow
15141         arrays dynamically by doubling their sizes.
15142         * lib/xalloc.h (x2realloc, x2nrealloc): New decls.
15143         * lib/xmalloc.c (x2nrealloc_inline, x2nrealloc, x2realloc):
15144         New functions.
15145
15146         Port to C99 semantics for 'inline' of external functions.
15147         Bug reported by Bruno Haible.
15148         * lib/xmalloc.c (xnmalloc_inline): New static inline function,
15149         with the old contents of xnmalloc.
15150         (xnmalloc, xmalloc): Use it.
15151         (xnrealloc_inline): New static inline function,
15152         with the old contents of xnrealloc.
15153         (xnrealloc, xrealloc): Use it.
15154
15155         * lib/alloc.c (alloca): xmalloc cannot return NULL, so don't test for
15156         that.
15157
15158 2003-10-26  Karl Berry  <karl@gnu.org>
15159
15160         * config/srclist.txt (COPYING.DOC): no longer available from
15161         /gd/gnuorg; don't know where the ultimate source is.
15162
15163 2003-10-25  Paul Eggert  <eggert@twinsun.com>
15164
15165         Fix several address-calculation bugs in the hash modules,
15166         plus some minor code cleanup.
15167
15168         * lib/hash.h: Include <stdbool.h>, for bool.
15169         * lib/hash.c: Don't include <stdbool.h>, since hash.h does it now.
15170         * lib/hash.h (Hash_hasher, hash_get_n_buckets, hash_get_n_buckets_used,
15171         hash_get_n_entries, hash_get_max_bucket_length,
15172         hash_get_entries, hash_do_for_each, hash_string, hash_initialize,
15173         hash_rehash): Use size_t rather than unsigned.
15174         * lib/hash.c (struct hash_table, hash_get_n_buckets,
15175         hash_get_n_buckets_used, hash_get_n_entries,
15176         hash_get_max_bucket_length, hash_table_ok, hash_print_statistics,
15177         hash_get_entries, hash_do_for_each, hash_string, is_prime,
15178         next_prime, hash_initialize, hash_rehash, hash_delete, hash_print):
15179         Likewise.
15180         (SIZE_MAX): Define if not defined.
15181         (hash_get_max_bucket_length, hash_table_ok, hash_lookup,
15182         hash_get_first, hash_get_next, hash_get_entries, hash_do_for_each,
15183         hash_print):
15184         Use const * when possible.
15185         (hash_string): Use (unsigned char) *P rather than *(unsigned char *) P.
15186         (check_tuning): Fix bug: if tuning parameters were very close to
15187         0 or 1, rounding errors could have caused subscript violations.
15188         (hash_initialize, allocate_entry, hash_print): Remove unnecessary cast.
15189         (hash_initialize): Add 'fail:' label
15190         to free table and return NULL, and use it to simplify code.
15191         Use calloc rather than clearing the storage ourself.
15192         (hash_initialize, hash_rehash): Check for arithmetic overflow in
15193         buffer size calculations.
15194         * lib/hash-pjw.h (hash_pjw): Use size_t, not unsigned.
15195         Include <stddef.h>, for size_t.
15196         * lib/hash-pjw.c (hash_pjw): Likewise.
15197         Switch to method described by Bruno Haible.
15198         Include <limits.h>, for CHAR_BIT.
15199         (SIZE_BITS): New macro.
15200
15201 2003-10-23  Paul Eggert  <eggert@twinsun.com>
15202
15203         * m4/getline.m4 (AM_FUNC_GETLINE):
15204         Don't include getndelim2.o twice into LIBOBJS; this breaks on some
15205         hosts.  Problem reported by Derek Robert Price in
15206         <http://mail.gnu.org/archive/html/bug-gnulib/2003-10/msg00092.html>.
15207         This patch can be withdrawn after Autoconf 2.58 is required for gnulib.
15208         * m4/getndelim2.m4 (gl_GETNDELIM2): Likewise.
15209
15210 2003-10-21  Paul Eggert  <eggert@twinsun.com>
15211
15212         * lib/getndelim2.c (getndelim2): When size calculation overflows,
15213         ceiling the allocation at NMAX bytes rather than silently
15214         discarding input bytes before NMAX is reached.  This makes
15215         a difference only if NMAX exceeds SIZE_MAX / 2.
15216
15217         * lib/obstack.c: Merge from glibc.
15218         [defined _LIBC]: Include <obstack.h>, not "obstack.h".
15219         Add libc_hidden_def (_obstack_newchunk).
15220         (_obstack_free) [! defined _LIBC]: Remove.
15221         [defined _LIBC]: Make a strong alias from obstack_free, rather than
15222         a clone of the function body.
15223         (fputs) [defined _LIBC && defined USE_IN_LIBIO]: Remove.
15224         [defined _LIBC && !defined USE_IN_LIBIO]: Include <libio/iolibio.h>.
15225
15226         * lib/obstack.h: Indenting cleanup, to make it easier to merge with
15227         glibc.
15228         (obstack_grow, obstack_grow0): Remove unnecessary parentheses around
15229         arg to memcpy.
15230
15231         * lib/obstack.h (obstack_1grow_fast): Properly parenthesize arg.
15232         (obstack_ptr_grow_fast, obstack_int_grow_fast):
15233         Don't use lvalue casts, as GCC plans to remove support for them
15234         in GCC 3.5.  Reported by Joseph S. Myers.  This bug
15235         was also present in the non-GCC version, indicating that this
15236         code had always been buggy and had never been widely used.
15237         (obstack_1grow, obstack_ptr_grow, obstack_int_grow, obstack_blank):
15238         Use the fast variant of each macro, rather than copying the
15239         definiens of the fast variant; that way, we'll be more likely to
15240         catch future bugs in the fast variants.
15241
15242 2003-10-20  Bruno Haible  <bruno@clisp.org>
15243
15244         * modules/wait-process: New file.
15245         * MODULES.html.sh (func_all_modules): Add wait-process.
15246
15247 2003-10-20  Bruno Haible  <bruno@clisp.org>
15248
15249         * m4/wait-process.m4: New file.
15250
15251 2003-10-20  Bruno Haible  <bruno@clisp.org>
15252
15253         * lib/wait-process.h: New file, from GNU gettext.
15254         * lib/wait-process.c: New file, from GNU gettext.
15255
15256 2003-10-19  Jim Meyering  <jim@meyering.net>
15257
15258         * lib/vasnprintf.c (vasnprintf): Work around losing snprintf on
15259         HPUX 10.20.
15260
15261 2003-10-18  Karl Berry  <karl@gnu.org>
15262
15263         * config/config.guess: update from config.
15264
15265 2003-10-16  Paul Eggert  <eggert@twinsun.com>
15266
15267         * lib/getgroups.c: Include <errno.h>, <stdlib.h>.
15268         (getgroups): First arg is int, not size_t.
15269         Don't let 'free' mangle errno.
15270
15271 2003-10-16  Paul Eggert  <eggert@twinsun.com>
15272
15273         * README: Mention that gnulib assumes that (foo *) NULL + 0 == NULL.
15274
15275 2003-10-16  Karl Berry  <karl@gnu.org>
15276
15277         * config/config.{guess,sub}: update from config.
15278
15279 2003-10-16  Jim Meyering  <jim@meyering.net>
15280
15281         * lib/xmalloc.c: Include <string.h>, for declarations of memset and
15282         memcpy.
15283
15284 2003-10-15  Paul Eggert  <eggert@twinsun.com>
15285
15286         * lib/exclude.c: Do not include <inttypes.h> or <stdint.h>.
15287         (SIZE_MAX): Remove.
15288         (new_exclude, add_exclude_file): Initial size no longer needs to
15289         be a power of 2.
15290         (add_exclude, add_exclude_file): Use xnrealloc instead of rolling
15291         our own address arithmetic overflow checking.
15292
15293         * lib/fnmatch.c (SIZE_MAX): Define if standard headers don't.
15294         (fnmatch): Do not alloca more than 2000 wide characters;
15295         instead, use malloc for large buffers.
15296         Check for address arithmetic overflow, and return -1
15297         with errno set to ENOMEM in that case.
15298         * lib/fnmatch_loop.c (ALLOCA_LIMIT): New macro.
15299         (NEW_PATTERN): Do not alloca more than 8000 bytes;
15300         instead, return -1.  Check for address arithmetic overflow.
15301
15302 2003-10-14  Paul Eggert  <eggert@twinsun.com>
15303
15304         Handle invalid suffixes and overflow independently, so that
15305         callers can treat them independently as needed.  Fix some bugs in
15306         suffix handling, e.g., "100k@" was not diagnosed as an invalid
15307         suffix for a human-readable blocksize.  The major caller-visible
15308         change is the addition of a new
15309         LONGINT_INVALID_SUFFIX_CHAR_WITH_OVERFLOW enum value, indicating
15310         that both overflow and suffix chars were found.
15311
15312         * lib/human.c (humblock): Don't check separately for invalid suffix
15313         char; that is xstrtoumax's job (now that its bug is fixed).
15314         * lib/xstrtoimax.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM) [defined
15315         INTMAX_MAX]: New macros.
15316         * lib/xstrtol.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM, TYPE_MINIMUM,
15317         TYPE_MAXIMUM): New macros.
15318         (bkm_scale, bkm_scale_by_power): Return strtol_error, not int.
15319         (bkm_scale, bkm_scale_by_power, __xstrtol): Return maximal values
15320         if overflow occurs, as it's what __strtol does and it's more useful
15321         in practice.
15322         (__xstrtol): If __strtol reports some error other than ERANGE,
15323         reflect it to the caller as LONGINT_INVALID.  If it reports
15324         ERANGE, continue the rest of parsing, and report LONGINT_OVERFLOW
15325         | LONGINT_INVALID_SUFFIX_CHAR if both errors occur.
15326         * lib/xstrtol.h (LONGINT_INVALID_SUFFIX_CHAR_WITH_OVERFLOW): New enum
15327         value.
15328         (_STRTOL_ERROR): Handle it.  Abort when given unknown error codes.
15329         * lib/xstrtoul.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM): New macros.
15330         * lib/xstrtoumax.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM)
15331         [defined UINTMAX_MAX]: New macros.
15332
15333 2003-10-14  Bruno Haible  <bruno@clisp.org>
15334
15335         * modules/fatal-signal: Add m4/sig_atomic_t.m4 to file list.
15336
15337 2003-10-14  Bruno Haible  <bruno@clisp.org>
15338
15339         * m4/sig_atomic_t: New file, from GNU gettext.
15340         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Require gt_TYPE_SIG_ATOMIC_T.
15341
15342 2003-10-14  Bruno Haible  <bruno@clisp.org>
15343
15344         * lib/fatal-signal.h: Improved comments. Suggested by Paul Eggert.
15345         * lib/fatal-signal.c: Use sig_atomic_t. Suggested by Paul Eggert.
15346         Also use volatile where needed.
15347
15348 2003-10-12  Paul Eggert  <eggert@twinsun.com>
15349
15350         * modules/xalloc: Do not depend on 'exit'.  Depend on 'stdbool'.
15351         Change maintainer from Bruno Haible to 'all'.
15352
15353 2003-10-12  Paul Eggert  <eggert@twinsun.com>
15354
15355         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Require AC_C_INLINE.
15356
15357 2003-10-12  Paul Eggert  <eggert@twinsun.com>
15358
15359         * lib/xalloc.h (xnmalloc, xzalloc, xnrealloc, xclone): New decls.
15360         (XMALLOC, XCALLOC, XREALLOC, XFREE, CCLONE, CLONE): Deprecate,
15361         and define in terms of the other primitives.
15362         * lib/xmalloc.c: Include stdbool.h; do not include exit.h.
15363         (SIZE_MAX): Define if not already defined.
15364         (array_size_overflow): New function.
15365         (xalloc_die): Abort instead of exiting if 'error' returns.
15366         (xnmalloc, xnrealloc, xzalloc, xclone): New functions.
15367         (xmalloc, xrealloc): Use them.
15368         (xcalloc): Check for address arithmetic overflow.
15369         * lib/xstrdup.c (xstrdup): Use xclone, since memcpy should be
15370         a bit faster than strcpy.
15371
15372 2003-10-10  Simon Josefsson  <jas@extundo.com>
15373
15374         * modules/argp (Depends-on): Add restrict and strcase.
15375
15376 2003-10-10  Simon Josefsson  <jas@extundo.com>
15377
15378         * m4/argp.m4: Add AC_C_INLINE.
15379
15380 2003-10-08  Paul Eggert  <eggert@twinsun.com>
15381
15382         Merge getpass from libc, plus a few fixes.
15383
15384         * lib/getpass.c (HAVE_STDIO_EXT) [_LIBC]: Define to 1.
15385         Include <stdbool.h>.
15386         Include <stdio_ext.h> if HAVE_STDIO_H, otherwise define
15387         __fsetlocking to empty.
15388         [_LIBC]: Do not include "getline.h" or "unlocked-io.h", but
15389         do include <bits/libc-lock.h>.
15390         Do not include <fcntl.h>; not needed.
15391         [_LIBC]: Include <wchar.h>.
15392         (NOTCANCEL_MODE): New macro.
15393         (flockfile, funlockfile) [_LIBC]: New macros.
15394         (__libc_cleanup_push, __libc_cleanup_pop, __getline, __tcgetattr)
15395         [!_LIBC]: New macros.
15396         (call_fclose): New function.
15397         (getpass): Use it.  Save tty stream separately; this simplifies the
15398         code and makes it more reliable if stdin happens to equal stdout.
15399         Invoke __fsetlocking on tty.
15400         Handle thread cancellation if needed.
15401         Namespace cleanup (use __tcgetattr, __getline).
15402         Use bool for Booleans.
15403         [USE_IN_LIBIO]: Handle wide streams.
15404         [!_LIBC]: Unconditionally do the fseek, since we don't know what
15405         stream might go where.
15406
15407         * lib/unlocked-io.h: Include <stdio.h>, so that the caller
15408         doesn't have to include <stdio.h> before us.
15409         (clearerr_unlocked, feof_unlocked, ferror_unlocked,
15410         fflush_unlocked, fgets_unlocked, fputc_unlocked, fputs_unlocked,
15411         fread_unlocked, fwrite_unlocked, getc_unlocked, getchar_unlocked,
15412         putc_unlocked, putchar_unlocked): Define to the unlocked counterpart
15413         if not declared, so that we can use getpass.c code from libc without
15414         rewriting it.
15415         (flockfile, ftrylockfile, funlockfile): New macros.
15416
15417 2003-10-08  Paul Eggert  <eggert@twinsun.com>
15418
15419         * modules/getpass: Depend on stdbool.
15420
15421 2003-10-08  Paul Eggert  <eggert@twinsun.com>
15422
15423         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for stdio_ext.h.
15424
15425 2003-10-07  Karl Berry  <karl@gnu.org>
15426
15427         * config/config.{guess,sub}: update from config.
15428
15429 2003-10-06  Jim Meyering  <jim@meyering.net>
15430             Bruno Haible  <bruno@clisp.org>
15431
15432         This lets translators provide better translations for the
15433         "Written by ..." part of --version output.
15434         * lib/version-etc.h: Include stdarg.h.
15435         (version_etc_copyright): Declare as readonly.
15436         (version_etc): Make this function variadic with a NULL-terminated list
15437         of author name strings.
15438         (version_etc_va): New declaration.
15439         * lib/version-etc.c: Include stdarg.h, stdlib.h.
15440         (version_etc_copyright): Declare as readonly.
15441         (version_etc_va): New function. Provide a different translatable string
15442         for each possible number of authors < 10. Abbreviate when there are 10
15443         authors or more.
15444         (version_etc): Make this function variadic. Call version_etc_va.
15445         Suggestion from Gary V. Vaughan.
15446
15447         * lib/long-options.h (parse_long_options): Change prototype: the
15448         authors string is moved to the end and becomes variadic.
15449         * lib/long-options.c: Include stdarg.h.
15450         (parse_long_options): Make this function variadic, too.
15451         Call version_etc_va, not version_etc.
15452
15453 2003-10-06  Bruno Haible  <bruno@clisp.org>
15454
15455         * modules/version-etc-2: Remove file.
15456         * MODULES.html.sh (func_all_modules): Remove version-etc-2.
15457
15458 2003-10-06  Bruno Haible  <bruno@clisp.org>
15459
15460         * modules/fatal-signal: New file.
15461         * MODULES.html.sh (func_all_modules): Add fatal-signal.
15462
15463 2003-10-06  Bruno Haible  <bruno@clisp.org>
15464
15465         * m4/fatal-signal.m4: New file.
15466         * m4/signalblocking.m4: New file, from GNU gettext.
15467
15468 2003-10-06  Bruno Haible  <bruno@clisp.org>
15469
15470         * lib/version-etc-2.h: Remove file.
15471         * lib/version-etc-2.c: Remove file.
15472
15473 2003-10-06  Bruno Haible  <bruno@clisp.org>
15474
15475         * lib/fatal-signal.h: New file, from GNU gettext.
15476         * lib/fatal-signal.c: New file, from GNU gettext.
15477
15478 2003-10-05  Paul Eggert  <eggert@twinsun.com>
15479
15480         * README: Rework advice for preventing empty .o files.
15481         Don't recommend ELIDE constructs.  Recommend <stddef.h>,
15482         not <sys/types.h>.
15483
15484 2003-10-04  Karl Berry  <karl@gnu.org>
15485
15486         * lib/argp*: update from libc.
15487
15488 2003-10-04  Karl Berry  <karl@gnu.org>
15489
15490         * config/config.{guess,sub}: update from config.
15491
15492 2003-10-02  Bruno Haible  <bruno@clisp.org>
15493
15494         * modules/lchown (Include): Add lchown.h.
15495         * modules/time_r (Include): Use "..." syntax.
15496         * modules/xgetdomainname (Include): Add xgetdomainname.h.
15497
15498 2003-10-01  Simon Josefsson  <jas@extundo.com>
15499
15500         * MODULES.html.sh (func_all_modules): Move gethostname from section
15501         'based on' to section 'lacking' POSIX:2001.
15502
15503 2003-10-01  Larry Jones  <lawrence.jones@eds.com>
15504
15505         * lib/getpass.c (getpass): Use a no-op fseek when switching from input
15506         to output mode on the same stream.
15507
15508 2003-09-29  Paul Eggert  <eggert@twinsun.com>
15509
15510         * lib/strftime.c (tm_diff) [! HAVE_TM_GMTOFF]:
15511         Fix arg typo in previous patch.
15512
15513 2003-09-28  Jim Meyering  <jim@meyering.net>
15514
15515         * lib/error.c: Correct cpp indentation.
15516
15517 2003-09-27  Paul Eggert  <eggert@twinsun.com>
15518
15519         * modules/free: New file.
15520
15521 2003-09-27  Paul Eggert  <eggert@twinsun.com>
15522
15523         * m4/free.m4: New file.
15524
15525 2003-09-27  Paul Eggert  <eggert@twinsun.com>
15526
15527         * lib/minmax.h (MIN, MAX)
15528         [__STDC__ && defined __GNUC__ && __GNUC__ >= 2]:
15529         Omit the special code that used __typeof__, since we worry that
15530         it could be more trouble than it's worth.  See:
15531         http://mail.gnu.org/archive/html/bug-gnulib/2003-01/msg00090.html
15532         http://mail.gnu.org/archive/html/bug-gnulib/2003-01/msg00095.html
15533
15534         * lib/free.c: New file.
15535
15536 2003-09-27  Oskar Liljeblad  <oskar@osk.mine.nu>
15537
15538         Trivial fixes to Makefile.am parts of module listings.
15539         * modules/strstr: Append strstr.h to lib_SOURCES.
15540         * modules/strcase: Likewise, for strcase.h.
15541
15542 2003-09-27  Karl Berry  <karl@gnu.org>
15543
15544         * config/mkinstalldirs: update from automake.
15545
15546 2003-09-26  Paul Eggert  <eggert@twinsun.com>
15547
15548         * lib/error.c (SIZE_MAX) [!defined SIZE_MAX]: Define.
15549         (error_tail): Do not loop, reallocating temporary buffer, since
15550         the output cannot contain more wide characters than the input
15551         contains bytes, the size must be big enough already.  This avoids
15552         one potential size overflow calculation.  Check for size overflow
15553         when calculating temporary buffer size.  Free temporary buffer
15554         when done, if it was allocated with malloc; this plugs a memory
15555         leak.  Remove casts from void * to pointers, that are no longer
15556         needed now that we're assuming C89 or better.
15557
15558         Merge error changes from glibc.
15559
15560         * lib/error.c, error.h: Update copyright notice header to match glibc.
15561         * lib/error.c [defined _LIBC]: Include <errno.h>, <bits/libc-lock.h>.
15562         (error, error_at_line) [defined _LIBC && defined __libc_ptf_call]:
15563         Disable cancellation while printing error.
15564         * lib/error.h: Prepend __ to parameter names.
15565
15566 2003-09-26  Jim Meyering  <jim@meyering.net>
15567
15568         * lib/error.c (error_tail): Move some declarations
15569         into inner scope where the local variables are used.
15570
15571 2003-09-26  Bruno Haible  <bruno@clisp.org>
15572
15573         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Add comments about the AIX
15574         stpncpy().
15575         Don't define stpncpy through config.h; it's now done through stpncpy.h.
15576
15577 2003-09-26  Bruno Haible  <bruno@clisp.org>
15578
15579         * lib/stpncpy.h (gnu_stpncpy): New declaration.
15580         (stpncpy): Define as alias for gnu_stpncpy.
15581         * lib/stpncpy.c [!_LIBC]: Define gnu_stpncpy, not stpncpy.
15582
15583 2003-09-25  Simon Josefsson  <jas@extundo.com>
15584
15585         * lib/xgetdomainname.h: New file.
15586         * lib/xgetdomainname.c: New file.
15587
15588 2003-09-25  Simon Josefsson  <jas@extundo.com>
15589             Bruno Haible  <bruno@clisp.org>
15590
15591         * modules/getdomainname: New file.
15592         * modules/xgetdomainname: New file.
15593         * MODULES.html.sh (func_all_modules): Add getdomainname,
15594         xgetdomainname.
15595
15596 2003-09-25  Simon Josefsson  <jas@extundo.com>
15597             Bruno Haible  <bruno@clisp.org>
15598
15599         * m4/getdomainname.m4: New file.
15600
15601 2003-09-25  Simon Josefsson  <jas@extundo.com>
15602             Bruno Haible  <bruno@clisp.org>
15603
15604         * lib/getdomainname.h: New file.
15605         * lib/getdomainname.c: New file.
15606
15607 2003-09-25  Karl Berry  <karl@gnu.org>
15608
15609         * lib/argp-fmtstream.c, argp-help.c: update from libc.
15610
15611 2003-09-25  Karl Berry  <karl@gnu.org>
15612
15613         * config/install-sh: update from automake.
15614
15615 2003-09-25  Bruno Haible  <bruno@clisp.org>
15616
15617         * modules/version-etc-2: New file, from modules/version-etc with
15618         modifications.
15619         * MODULES.html.sh (func_all_modules): Add version-etc-2.
15620
15621 2003-09-25  Bruno Haible  <bruno@clisp.org>
15622
15623         * lib/version-etc-2.h: New file, from version-etc.h with modifications.
15624         * lib/version-etc-2.c: New file, from version-etc.c with modifications.
15625
15626 2003-09-24  Simon Josefsson  <jas@extundo.com>
15627
15628         * modules/xgethostname: Add xgethostname.h.
15629
15630 2003-09-24  Paul Eggert  <eggert@twinsun.com>
15631
15632         * lib/linebuffer.c (freebuffer): Don't free the argument, just
15633         the buffer associated with the argument.  Bug reported by
15634         Simon Josefsson.
15635
15636 2003-09-24  Paul Eggert  <eggert@twinsun.com>
15637
15638         * README: Document assumptions that 'int' is at least 32 bits
15639         wide, that integer arithmetic is 2's complement without overflow,
15640         that there are no holes in integer values, that adding sizes of
15641         two nonoverlapping objects can't overflow, and that all-bits-zero
15642         yields scalar zero.  Fix spelling and capitalization typos.
15643
15644 2003-09-19  Karl Berry  <karl@gnu.org>
15645
15646         * lib/argp.h: update from libc.
15647
15648 2003-09-17  Paul Eggert  <eggert@twinsun.com>
15649
15650         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Call AC_BEFORE first,
15651         to avoid spurious warnings like "AC_RUN_IFELSE was called before
15652         gl_USE_SYSTEM_EXTENSIONS" from autoreconf.
15653
15654 2003-09-17  Paul Eggert  <eggert@twinsun.com>
15655
15656         * gnulib-tool: Use "test -h", not "test -L", for portability
15657         to Solaris 8 /bin/sh.  (This bug is fixed in Solaris 9.)
15658         (tags_regexp): Remove, since \| doesn't conform to POSIX.
15659         (sed_extract_prog): Issue s commands one-by-one, rather than
15660         using \| in one s command.
15661
15662 2003-09-16  Paul Eggert  <eggert@twinsun.com>
15663
15664         * lib/linebuffer.c (readlinebuffer): Return NULL immediately upon
15665         input error, instead of returning NULL the next time we are called
15666         (and therefore losing track of errno).
15667
15668 2003-09-16  Bruno Haible  <bruno@clisp.org>
15669
15670         * gnulib-tool (func_create_testdir): Warn about duplicated
15671         dependencies.
15672
15673 2003-09-15  Paul Eggert  <eggert@twinsun.com>
15674
15675         * modules/argmatch, modules/fatal, modules/obstack,
15676         modules/xalloc, modules/xgethostname: Sort dependencies by
15677         importance, not alphabetically.
15678
15679 2003-09-15  Paul Eggert  <eggert@twinsun.com>
15680
15681         * lib/getndelim2.c (getndelim2): Don't trash errno when a read
15682         fails, so that the caller gets the proper errno.
15683
15684         * lib/readutmp.c (read_utmp): Likewise.
15685         Check for fstat error.  Close stream and free storage
15686         when failing.
15687
15688 2003-09-14  Karl Berry  <karl@gnu.org>
15689
15690         * config/srclist.txt (strdup.c): disable for c89 changes.
15691
15692 2003-09-14  Jim Meyering  <jim@meyering.net>
15693
15694         * lib/getloadavg.c: Correct cpp indentation.
15695         * lib/strdup.c: Likewise.
15696         * lib/vasnprintf.c: Likewise.
15697
15698 2003-09-14  Bruno Haible  <bruno@clisp.org>
15699
15700         * modules/fwriteerror: New file.
15701         * MODULES.html.sh (func_all_modules): Add fwriteerror.
15702
15703 2003-09-14  Bruno Haible  <bruno@clisp.org>
15704
15705         * lib/fwriteerror.h: New file.
15706         * lib/fwriteerror.c: New file.
15707
15708 2003-09-12  Paul Eggert  <eggert@twinsun.com>
15709
15710         * modules/argmatch, modules/exitfail, modules/fatal, modules/obstack,
15711         modules/xgethostname, modules/xalloc: Depend on exit.
15712
15713 2003-09-12  Paul Eggert  <eggert@twinsun.com>
15714
15715         * m4/error.m4: Require AC_FUNC_STRERROR_R rather than invoking it.
15716
15717         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Require AC_AIX
15718         and AC_MINIX, too, so that their extensions are available.
15719
15720         * m4/prereq.m4 (jm_PREREQ_ADDEXT): Remove.  All uses removed.
15721         This macro has been superseded by gl_BACKUPFILE.
15722
15723         More patches to assume C89 or better.
15724
15725         * m4/error.m4 (gl_ERROR): Don't check for vprintf.
15726
15727         * m4/check-decl.m4 (jm_CHECK_DECLS): Include <string.h>, <stdlib.h>
15728         unconditionally.
15729         * m4/closeout.m4 (gl_CLOSEOUT): Don't check for stdlib.h.
15730         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER):
15731         Include <string.h>, <stdlib.h> unconditionally.
15732         * m4/lstat.m4 (gl_PREREQ_LSTAT): Don't check for stdlib.h, free.
15733         * m4/readdir.m4 (GL_FUNC_READDIR): Don't check for string.h.
15734         * m4/readutmp.m4 (gl_PREREQ_READUTMP): Don't check for standard C
15735         headers or for string.h.
15736         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Don't check for stdlib.h
15737         or strtoul.
15738
15739         * m4/mkstemp.m4 (jm_PREREQ_TEMPNAME): Do not require standard C
15740         headers.
15741         * m4/strdup.m4 (gl_PREREQ_STRDUP): Likewise.
15742         * m4/userspec.m4 (gl_USERSPEC): Likewise.
15743         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Likewise.
15744         * m4/xstrtod.m4 (gl_XSTRTOD): Likewise.
15745         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
15746         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't check for limits.h,
15747         memcpy, memset.
15748         (jm_FUNC_GNU_STRFTIME): Don't require standard C headers.
15749         * m4/strtod.m4 (gl_FUNC_STRTOD): Do not check for float.h.
15750         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Do not check for stdlib.h,
15751         strtol.
15752         * m4/strtol.m4 (gl_FUNC_STRTOL): Do not check for limits.h.
15753         * m4/userspec.m4 (gl_USERSPEC): Do not check for string.h.
15754         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Do not check for string.h, strtol,
15755         strtoul.
15756
15757 2003-09-12  Paul Eggert  <eggert@twinsun.com>
15758
15759         * lib/argmatch.c, fatal.c, xgethostname.c, xmalloc.c: Include exit.h.
15760         * lib/obstack.c [!defined _LIBC]: Likewise.
15761         * lib/argmatch.c (EXIT_FAILURE): Remove; now done by exit.h
15762         * lib/exitfail.c, fatal.c, xgethostname.c, xmalloc.c: Likewise.
15763         * lib/exitfail.c: Don't include stdlib.h; no longer needed.
15764
15765         More changes to assume C89 or better.
15766
15767         * lib/error.c (error_tail): Assume vprintf.
15768
15769         * lib/argmatch.c (getenv): Remove decl.
15770         * lib/progreloc.c (get_full_program_name): Define via prototype.
15771         * lib/setenv.c (clearenv): Likewise.
15772         * lib/stpncpy.c: Do not include <string.h> or <sys/types.h>; not
15773         needed.
15774         * lib/strdup.c: Include <stdlib.h>, <string.h> unconditionally.
15775         (malloc, memcpy): Remove decls.
15776         * lib/strftime.c (HAVE_LIMITS_H, STDC_HEADERS) [defined _LIBC]: Remove.
15777         (HAVE_MEMCPY) [defined emacs && !defined HAVE_BCOPY]: Remove.
15778         Include <limits.h>, <stddef.h>, <stdlib.h>, <string.h> unconditionally.
15779         (memcpy): Remove macro.
15780         (MEMCPY) [!defined COMPILE_WIDE]: Define to memcpy unconditionally.
15781         (__P): Remove.  All uses removed.
15782         (PTR): Remove.  All uses changed to void *.
15783         (CHAR_BIT, NULL): Remove.
15784         (spaces, zeros, memset_space, memset_zero)
15785         [!defined memset && !defined HAVE_MEMSET && !defined _LIBC]:
15786         Remove.
15787         (LOCALE_PARAM, LOCALE_PARAM_DECL): Remove.
15788         (memcpy_lowcase, memcpy_uppcase, tm_diff, iso_week_days):
15789         Define with prototype.
15790         Remove now-unnecessary prototype decl.
15791         (extra_args_spec): Assume ANSI C.  All uses changed.
15792         (extra_args_spec_iso): Remove.
15793         (my_strftime, emacs_strftimeu): Define via prototype.
15794         * lib/strtod.c: Include <float.h>, <stdlib.h>, <string.h>
15795         unconditionally.
15796         (DBL_MAX, DBL_MIN, HUGE_VAL, NULL): Remove decls.
15797         * lib/strtoimax.c: Include <stdlib.h> unconditionally.
15798         (strtoul, strtol): Remove decls.
15799         * lib/strtol.c (STDC_HEADERS, HAVE_LIMITS_H, NULL, ULONG_MAX,
15800         LONG_MAX): Remove.
15801         Include <limits.h>, <stddef.h>, <stdlib.h>, <string.h> unconditionally.
15802         (LOCALE_PARAM_DECL): Remove.  All uses changed to LOCALE_PARAM_PROTO.
15803         (LOCALE_PARAM_PROTO): New macro.
15804         (INTERNAL, INTERNAL1, WEAKNAME): Assume ANSI C, not K&R.
15805         (INTERNAL (strtol), strtol): Define with a prototype.
15806         (PARAMS): Remove.  All uses removed.
15807         * lib/tempname.c: Include <string.h> unconditionally.
15808         * lib/userspec.c: Include <stdlib.h>, <string.h> unconditionally.
15809         * lib/xgethostname.c (main): Define with a prototype.
15810         * lib/xmalloc.c: Include "xalloc.h" first, to check interface.
15811         Include <stdlib.h> unconditionally.
15812         (calloc, malloc, realloc, free): Remove decls.
15813         * lib/xstrtod.c: Include "xstrtod.h" first, to check interface.
15814         Include <stdlib.h> unconditionally.  Sort include file names.
15815         (strtod): Remove.
15816         (xstrtod): Define with a prototype.
15817         * lib/xstrtol.c: Include <stdlib.h>, <string.h> unconditionally.
15818         (strtol, strtoul): Remove decls.
15819
15820 2003-09-11  Paul Eggert  <eggert@twinsun.com>
15821
15822         More patches to assume C89 or better.
15823         * m4/strndup.m4 (gl_PREREQ_STRNDUP): Remove STDC_HEADERS check.
15824         * m4/strnlen.m4 (gl_PREREQ_STRNLEN): Don't check for memory.h,
15825         string.h, memchr, STDC_HEADERS.
15826
15827 2003-09-11  Paul Eggert  <eggert@twinsun.com>
15828
15829         * lib/strndup.c: Don't include <stdio.h>, <sys/types.h>.
15830         Include <stdlib.h>, <string.h> unconditionally.
15831         Remove now-unnecessary cast to char *.
15832         * lib/strnlen.c: Include <string.h> unconditionally.
15833         * lib/yesno.c (yesno): Define with a prototype.
15834
15835 2003-09-11  Bruno Haible  <bruno@clisp.org>
15836
15837         * config/srclist.txt (setenv.c, unsetenv.c): Disable for the moment.
15838
15839 2003-09-10  Jim Meyering  <jim@meyering.net>
15840
15841         * lib/error.c: Correct indentation of cpp directives.
15842
15843 2003-09-10  Bruno Haible  <bruno@clisp.org>
15844
15845         * m4/strcspn.m4 (gl_PREREQ_STRCSPN): Remove <string.h> check.
15846         * m4/strpbrk.m4 (gl_PREREQ_STRPBRK): Remove <string.h> check.
15847         * m4/strstr.m4 (gl_PREREQ_STRSTR): Remove <string.h> check.
15848         * m4/unicodeio.m4 (gl_UNICODEIO): Remove <string.h> check.
15849         * m4/setenv.m4 (gl_PREREQ_SETENV, gl_PREREQ_UNSETENV): Remove
15850         <stdlib.h> and <string.h> checks.
15851         * m4/xreadlink.m4 (gl_XREADLINK): Remove <stdlib.h> check.
15852         * m4/yesno.m4 (gl_YESNO): Remove <stdlib.h> check.
15853
15854 2003-09-10  Bruno Haible  <bruno@clisp.org>
15855
15856         * lib/strcspn.c: Include <string.h> unconditionally.
15857         * lib/strpbrk.c: Include <string.h> unconditionally.
15858         * lib/strstr.c: Include <string.h> unconditionally.
15859         * lib/unicodeio.c: Include <string.h> unconditionally.
15860         * lib/setenv.c: Include <stdlib.h> and <string.h> unconditionally.
15861         * lib/unsetenv.c: Likewise.
15862         * lib/xreadlink.c: Include <stdlib.h> unconditionally.
15863         * lib/yesno.c: Include <stdlib.h> unconditionally.
15864         (rpmatch): Add prototype.
15865
15866 2003-09-09  Paul Eggert  <eggert@twinsun.com>
15867
15868         More patches to assume C89 or better.
15869         * m4/getcwd.m4 (AC_FUNC_GETCWD_NULL): Don't check for stdlib.h.
15870         * m4/getopt.m4 (gl_GETOPT): Don't check for string.h.
15871         * m4/getugroups.m4 (gl_GETUGROUPS): Do not check for standard C headers
15872         or for string.h.
15873         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Do not check for
15874         stdlib.h.
15875         * m4/group-member.m4 (gl_PREREQ_GROUP_MEMBER): Do not require standard
15876         C headers.
15877         * m4/hard-locale.m4 (gl_HARD_LOCALE): Do not check for stdlib.h,
15878         string.h.
15879         * m4/hash.m4 (gl_HASH): Do not check for stdlib.h, malloc, free.
15880         * m4/human.m4 (gl_HUMAN): Do not check for stdlib.h, string.h, getenv.
15881         * m4/idcache.m4 (gl_IDCACHE): Do not check for standard C headers,
15882         or for string.h.
15883         * m4/long-options.m4 (gl_LONG_OPTIONS): Do not check for stdlib.h.
15884         * m4/makepath.m4 (gl_MAKEPATH): Do not check for string.h or standard
15885         C headers.
15886         * m4/md5.m4 (gl_MD5): Don't check for limits.h, standard C headers,
15887         memcpy.
15888         * m4/sha.m4 (gl_SHA): Don't check for standard Cheaders, memcpy.
15889         * m4/memchr.m4 (jm_PREREQ_MEMCHR): Don't check for limits.h, stdlib.h.
15890         * m4/memcmp.m4 (gl_PREREQ_MEMCMP): Don't check for string.h.
15891         * m4/memcoll.m4 (gl_MEMCOLL): Likewise.
15892         * m4/memrchr.c (gl_PREREQ_MEMRCHR): Don't check for limits.h.
15893         * m4/mkdir-slash.m4 (gl_PREREQ_MKDIR): Don't check for stdlib.h,
15894         string.h, free.
15895         * m4/mktime.m4 (gl_PREREQ_MKTIME): Don't check for standard C headers.
15896         * m4/modechange.m4 (gl_MODECHANGE): Don't check for standard C headers.
15897         * m4/mountlist.m4 (gl_PREREQ_MOUNTLIST_EXTRA): Don't check for standard
15898         C headers, or for string.h.
15899         * m4/obstack.m4 (gl_OBSTACK): Don't check for stddefe.h, string.h.
15900         (gl_PREREQ_OBSTACK): Don't check for stdlib.h.
15901         * m4/path-concat.m4 (gl_PATH_CONCAT): Don't check for standard C
15902         headers, memory.h, stdlib.h, string.h, strings.h.
15903         * m4/posixtm.m4 (gl_POSIXTM): Don't check for stdlib.h, string.h.
15904         * m4/posixver.m4 (gl_POSIXVER): Don't check for getenv.
15905         * m4/putenv.m4 (gl_PREREQ_PUTENV): Don't check for string.h, memcpy,
15906         strchr.
15907         * m4/readtokens.m4 (gl_READTOKENS): Don't check for standard C
15908         headers, memory.h, string.h.
15909         * m4/regex.m4 (jm_PREREQ_REGEX): Do not check for limits.h, string.h.
15910         * m4/rename.m4 (gl_PREREQ_RENAME): Do not check for stdlib.h, string.h,
15911         free.
15912         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Don't check for standard C
15913         headers.
15914         * m4/same.m4 (gl_SAME): Don't check for stdlib.h, string.h, free.
15915         * m4/save-cwd.m4 (gl_SAVE_CWD): Don't check for standard C headers.
15916         * m4/savedir.m4 (gl_SAVEDIR): Don't check for standard C headers.
15917         * m4/strchrnul.m4 (gl_PREREQ_STRCHRNUL): Don't check for string.h.
15918         * m4/xgetcwd.m4 (gl_XGETCWD): Don't check for stdlib.h.
15919
15920 2003-09-09  Paul Eggert  <eggert@twinsun.com>
15921
15922         More K&R removal.
15923
15924         * lib/acosl.c (main): Use a prototype.
15925         * lib/asinl.c, cosl.c, expl.c, frexpl.c, ldexpl.c, sinl.c,
15926         tanl.c: Likewise.
15927
15928         * lib/getloadavg.c (getloadavg, main): Define via prototypes.
15929
15930         * lib/getopt.h (struct option.name): Assume C89, and use 'const'.
15931         (getopt, etopt_long, getopt_long_only, _getopt_internal)
15932         [defined __GNU_LIBRARY__]: Assume C89, so we can always declare
15933         with a prototype.
15934         * lib/getopt.c (const): Remove macro.
15935         Include <string.h> unconditionally.
15936         (my_index): Remove; all uses changed to strchr.
15937         (strlen): Remove decl.
15938         (exchange): Remove forward decl; no longer needed.
15939         (exchange, _getopt_initialize, _getopt_internal, getopt, main):
15940         Define with prototype.
15941         * lib/getopt1.c (const): Remove macro.
15942         (getopt_long, getopt_long_only, main): Define with prototype.
15943
15944         * lib/getugroups.c: Include <string.h> unconditionally.
15945
15946         * lib/getusershell.c: Include <stdlib.h> unconditionally.
15947         (getusershell, setusershell, endusershell, readname, main):
15948         Define with prototypes.
15949
15950         * lib/group-member.c: Include group-member.h first.
15951         Include <stdlib.h> unconditionally.
15952
15953         * lib/hard-locale.c: Include hard-locale.h first.
15954         Include <stdlib.h>, <string.h> unconditionally.
15955
15956         * lib/hash.c (free, malloc): Remove decls.
15957         Include <stdlib.h> unconditionally.
15958
15959         * lib/human.c: Include <stdlib.h>, <string.h> unconditionally.
15960         (getenv): Do not declare.
15961
15962         * lib/idcache.c: Include <string.h> unconditionally.
15963
15964         * lib/long-options.c: Include long-options.h first, to test interface.
15965         Include <stdlib.h> unconditionally.
15966
15967         * lib/makepath.c: Include makepath.h first, to test interface.
15968         Include <stdlib.h> and <string.h> unconditionally.
15969
15970         * lib/linebuffer.c: Include <stdlib.h>.
15971         (free): Remove decl.
15972
15973         * lib/malloc.c: Include <stdlib.h>, for malloc; don't bother with
15974         stddef.h. rpl_malloc returns void *, not char *.
15975         * lib/realloc.c (rpl_realloc): Likewise.  Also, define with a
15976         prototype.
15977
15978         * lib/md5.h: Include <limits.h> unconditionally.
15979         (UINT_MAX_32_BITS): Don't worry about non-__STDC__ case.
15980         (__P): Remove; all uses removed.
15981         * lib/md5.c: Include "md5.h" first.
15982         (md5_init_ctx, md5_read_ctx, md5_finish_ctx, md5_stream,
15983         md5_buffer, md5_process_bytes, md5_process_block):
15984         Define with prototypes.
15985         * lib/sha.h (__P): Remove all uses.  (It wasn't defined??)
15986         * lib/sha.c: Include "sha.h" first.
15987         Include <stdlib.h>, <string.h> unconditionally.
15988
15989         * lib/memchr.c (__ptr_t): Remove; all uses changed to void *.
15990         * lib/memcmp.c (__ptr_t): Likewise.
15991         * lib/memrchr.c (__ptr_t): Likewise.
15992         * lib/memchr.c, memcmp.c, memcoll.c, memrchr.c:
15993         Include <string.h> unconditionally.
15994         * lib/memchr.c, memrchr.c: Include <limits.h> unconditionally.
15995         * lib/memchr.c: Include <stdlib.h> unconditionally.
15996         * lib/memchr.c (LONG_MAX): Remove.
15997         * lib/memrchr.c (LONG_MAX): Likewise.
15998         * lib/memchr.c (__memchr): Define via a prototype.
15999         * lib/memrchr.c (__memrchr): Likewise.
16000         * lib/memcmp.c (__P): Remove, and remove all uses.
16001         (memcmp_bytes, memcmp_common_alignment, memcmp_not_common_alignment):
16002         Remove forward decls; no longer needed.
16003         * lib/memcpy.c, memmove.c, memset.c: Include <stddef.h>.
16004         Use types required by C89 in prototype.
16005
16006         * lib/mkdir.c: Include <stdlib.h>, <string.h> unconditionally.
16007         * lib/savedir.c: Likewise.
16008         * lib/mkdir.c (free): Remove decl.
16009         * lib/rmdir.c (rmdir): Define with a prototype.
16010         * lib/savedir.c: Include savedir.h first, to test interface.
16011
16012         * lib/mktime.c (STDC_HEADERS): Remove.
16013         Include <stdlib.h>, <string.h> unconditionally.
16014
16015         * lib/modechange.c: Include <stdlib.h> unconditionally.
16016         (malloc): Remove decl.
16017
16018         * lib/mountlist.c: Include <stdlib.h>, <string.h> unconditionally.
16019         (free): Remove decl.
16020
16021         * lib/obstack.h (PTR_INT_TYPE) [!defined __PTRDIFF_TYPE__]:
16022         Define to ptrdiff_t, without bothering to check HAVE_STDDEF_H.
16023         (This type really should be intptr_t, but that's a C99ism.)
16024         (_obstack_memcpy): Remove: all uses changed to memcpy.
16025         Include <string.h> unconditionally.
16026         (struct obstack): Assume __STDC__ for types of members
16027         chunkfun, freefun, extra_arg.
16028         (_obstack_newchunk, _obstack_free, _obstack_begin, _obstack_begin_1,
16029         _obstack_memory_used, obstack_alloc_failed_handler, obstack_init,
16030         obstack_begin, obstack_specify_allocation,
16031         obstack_specify_allocation_with_arg, obstack_chunkfun,
16032         obstack_freefun, obstack_free) [! (defined __STDC__ && __STDC__)]:
16033         Remove unprototyped decls and the macros that use them.
16034         * lib/obstack.c (POINTER): Remove.  All uses changed to void *.
16035         (obstack_alloc_failed_handler, CALL_CHUNKFUN, CALL_FREEFUN,
16036         _obstack_begin, _obstack_begin_1, _obstack_allocated_p)
16037         (defined __STDC__ && __STDC__)]:
16038         Remove nonprototyped code.
16039         Include <stdlib.h> unconditionally.
16040         (_obstack_begin, _obstack_begin_1, _obstack_newchunk,
16041         _obstack_allocated_p, _obstack_free, obstack_free,
16042         _obstack_memory_used, print_and_abort):
16043         Define using prototypes.
16044         (obstack_1grow, obstack_1grow_fast, obstack_alloc, obstack_base,
16045         obstack_blank, obstack_blank_fast, obstack_copy, obstack_copy0,
16046         obstack_finish, obstack_grow, obstack_grow0, obstack_make_room,
16047         obstack_next_free, obstack_object_size, obstack_room) [0]:
16048         Remove unused, unprototyped code.
16049
16050         * lib/path-concat.c: Include <stdlib.h>, <string.h> unconditionally.
16051
16052         * lib/physmem.c (physmem_total, physmem_available, main): Define
16053         with prototypes.
16054
16055         * lib/posixtm.c: Include <stdlib.h>, <string.h> unconditionally.
16056         (main): Define with a prototype.
16057
16058         * lib/posixver.c (getenv): Remove decl.
16059
16060         * lib/putenv.c (malloc): Returns void *, not char *.
16061         Include <string.h> unconditionally.
16062         (strchr, memcpy, NULL): Do not define.
16063
16064         * lib/readtokens.c: Include readtokens.h first, to test interface.
16065         Include <stdlib.h>, <string.h> unconditionally.
16066         (init_tokenbuffer): Define with a prototype.
16067
16068         * lib/regex.c (PARAMS): Remove.  All uses removed.
16069         All uses of _RE_ARGS removed, too.
16070         Include <stddef.h>, <stdlib.h>, <string.h>, <limits.h>
16071         unconditionally.
16072         (bzero): Assume memset exists.
16073         (memcmp, memcpy, NULL): Remove.
16074         (SIGN_EXTEND_CHAR): Remove; all uses replaced by casts to signed
16075         char, or assignments to local vars of type signed char.
16076         (init_syntax_once, PREFIX(extract_number_and_incr),
16077         PREFIX(print_partial_compiled_pattern),
16078         PREFIX(print_compiled_pattern), PREFIX(print_double_string),
16079         convert_mbs_to_wcs, print_fastmap, re_set_syntax,
16080         PREFIX(regex_grow_registers), PREFIX(regex_compile),
16081         PREFIX(store_op1), PREFIX(store_op2), PREFIX(insert_op1),
16082         PREFIX(insert_op2), PREFIX(at_begline_loc_p),
16083         PREFIX(at_endline_loc_p), group_in_compile_stack, insert_space,
16084         wcs_compile_range, byte_compile_range, truncate_wchar,
16085         PREFIX(re_compile_fastmap), re_compile_fastmap, re_set_registers,
16086         re_search, re_search_2, PREFIX(re_search_2), re_match, re_match_2,
16087         count_mbs_length, wcs_re_match_2_internal,
16088         byte_re_match_2_internal, PREFIX(group_match_null_string_p),
16089         PREFIX(alt_match_null_string_p),
16090         PREFIX(common_op_match_null_string_p), PREFIX(bcmp_translate),
16091         re_compile_pattern, re_comp, re_exec, regcomp, regexec, regerror,
16092         regfree, PREFIX(extract_number)): Define with prototype.  Remove
16093         now-unnecessary declaration, if any.
16094         (byte_compile_range, PREFIX(regex_compile), re_comp, re_exec,
16095         regcomp, regexec):
16096         Remove now-unnecessary casts among pointer types.
16097         * lib/regex.h (_RE_ARGS): Remove.  All uses removed.
16098
16099         * lib/rename.c: Include <stdlib.h>, <string.h> unconditionally.
16100         (free): Remove decl.
16101
16102         * lib/rpmatch.c: Include <stdlib.h> unconditionally.
16103
16104         * lib/same.c: Include <stdlib.h>, <string.h> unconditionally.
16105         (free): Remove decl.
16106
16107         * lib/save-cwd.c: Include <stdlib.h> unconditionally.
16108         * lib/xgetcwd.c: Likewise.
16109
16110         * lib/stat.c: Include <stdlib.h>, <string.h> unconditionally.
16111         (free): Remove decl.
16112
16113         * lib/strchrnul.c (strchrnul): Define with a prototype.
16114         Fix bug: c_in was not converted to char before searching.
16115
16116         The following changes are not K&R related:
16117
16118         * lib/group-member.h: Include <sys/types.h>, so that this file is
16119         self-contained.
16120         * lib/makepath.h: Likewise.
16121
16122         * lib/getusershell.c (readname, default_index, line_size, readname):
16123         Use size_t, not int, for sizes.
16124         (readname): If the size overflows, report an error instead of
16125         looping forever.
16126
16127 2003-09-09  Paul Eggert  <eggert@twinsun.com>
16128
16129         * config/srclist.txt: Do not get getopt.h, getopt1.c, or regex.h from
16130         libc.
16131
16132 2003-09-09  Paul Eggert  <eggert@twinsun.com>
16133
16134         * README: New section: portability guidelines.
16135
16136 2003-09-09  Derek Robert Price  <derek@ximbiot.com>
16137
16138         * m4/getndelim2.m4 (gl_PREREQ_GETNDELIM2): Assume stdlib.h per the
16139         C89 spec.
16140
16141 2003-09-09  Derek Robert Price  <derek@ximbiot.com>
16142
16143         * lib/getndelim2.c: Assume stdlib.h per the C89 spec.
16144
16145 2003-09-08  Paul Eggert  <eggert@twinsun.com>
16146
16147         Assume C89 or better; remove K&R cruft.
16148         A few of these changes were first proposed by Derek Robert Price
16149         in <http://mail.gnu.org/archive/html/bug-gnulib/2003-07/msg00105.html>.
16150
16151         * lib/addext.c: Include <string.h> unconditionally.
16152         * lib/backupfile.c: Include <string.h>, <stdlib.h> unconditionally.
16153         Don't declare getenv or malloc.
16154
16155         * lib/alloca.c: Include <string.h>, <stdlib.h> unconditionally.
16156         (POINTER_TYPE, pointer): Remove; all uses changed to void *.
16157         (NULL): Remove.
16158         (find_stack_direction, alloca): Use prototypes.
16159
16160         * lib/atexit.c (atexit): Define using a prototype.
16161
16162         * lib/basename.c, dirname.c, stripslash.c:
16163         Include <string.h> unconditionally.
16164
16165         * lib/bcopy.c: Include <stddef.h>.
16166         (bcopy): Define with prototype, using 'const' and 'void' and 'size_t'.
16167
16168         * lib/canon-host.c: Include <stdlib.h>, <string.h> unconditionally.
16169
16170         * lib/error.h (error, error_at_line, error_print_progname)
16171         [! (defined (__STDC__) && __STDC__)]: Remove decls.
16172         * lib/error.c: Include error.h first, to check interface.
16173         Include <stdarg.h>, <stdlib.h>, <string.h> unconditionally.
16174         (VA_START): Remove; all uses changeed to va_start.
16175         (exit, strerror): Remove decls.
16176         (error_print_progname): Prototype uncondionally.
16177         Don't include <errno.h>; no longer needed.
16178         (private_strerror): Remove.
16179         (error_tail): Always define.
16180         (error, error_at_line): Assume C89 or better; always use prototypes.
16181         * lib/fatal.c: Include "fatal.h" first, to test interface.
16182         Include <stdarg.h>, <stdlib.h>, <string.h> unconditionally.
16183         (VA_START): Remove; all uses changed to va_start.
16184         [! (HAVE_VPRINTF || HAVE_DOPRNT || _LIBC)]: Remove support for
16185         this case.
16186         (exit): Remove decl.
16187         (fatal): Prototype unconditionally.  Assume va_start works.
16188         Abort at end, to pacify gcc.
16189
16190         * lib/euidaccess.c (main): Define with a prototype.
16191
16192         * lib/exclude.c: Include <stdlib.h>, <string.h> unconditionally.
16193
16194         * lib/exitfail.c: Include <stdlib.h> unconditionally.
16195
16196         * lib/fnmatch_.h (__P): Remove.  All uses changed to assume
16197         prototypes.
16198         * lib/fnmatch.c: Include fnmatch.h first, to test interface.
16199         Include <string.h>, <stddef.h>, <stdlib.h> unconditionally.
16200         (getenv): Remove decl.
16201         (fnmatch): Define using a prototype.
16202         * lib/fnmatch_loop.c (FCT): Remove forward decl; no longer needed.
16203         (FCT): Define using a prototype.
16204
16205         * lib/getdate.y: Include <stdlib.h>, <string.h> unconditionally.
16206
16207         * lib/gethostname.c: Include <stddef.h>.
16208         (gethostname): Define with prototype.  Length is size_t, not int.
16209
16210 2003-09-08  Paul Eggert  <eggert@twinsun.com>
16211
16212         Assume C89 or better; remove K&R cruft.
16213         * m4/alloca.m4 (gl_PREREQ_ALLOCA): Don't check for stdlib.h, string.h.
16214         * m4/backupfile.m4 (gl_BACKUPFILE): Don't check for stdlib.h,
16215         string.h, getenv, malloc.
16216         * m4/dirname.m4 (gl_DIRNAME): Don't check for string.h or C standard
16217         headers.
16218         * m4/canon-host.m4 (gl_CANON_HOST): Don't check for string.h, stdlib.h.
16219         * m4/error.m4 (jm_PREREQ_ERROR): Do not require STDC headers, and
16220         do not check for strerror.
16221         * m4/exclude.m4: Do not check for stdlib.h, string.h, strings.h.
16222         * m4/exitfail.m4 (gl_EXITFAIL): Do not check for stdlib.h.
16223         * m4/fatal.m4 (gl_FATAL): Do not require STDC headers, and
16224         do not check for doprnt or vprintf.
16225         * m4/fnmatch.m4 (gl_PREREQ_FNMATCH_EXTRA): Remove.  All uses removed.
16226         * m4/getdate.m4 (gl_GETDATE): Don't check for stdlib.h or string.h.
16227
16228 2003-09-08  Paul Eggert  <eggert@twinsun.com>
16229
16230         * lib/getversion.c: Remove; was migrated to backupfile.c in 1997.
16231         getversion.c should have been removed then, but was accidentally
16232         preserved.
16233
16234         * lib/utime.c [!HAVE_UTIMES_NULL]: Include <sys/stat.h>, <fcntl.h>.
16235         (utime_null): Fix typo: 'st' was sometimes called 'sb'.
16236
16237 2003-09-08  Karl Berry  <karl@gnu.org>
16238
16239         * config/config.sub, config.guess, srclistvars.sh: update from savannah
16240                 config, forget about prep.
16241
16242         * config/depcomp, missing: update from automake.
16243
16244 2003-09-07  Paul Eggert  <eggert@twinsun.com>
16245
16246         * modules/time_r: Depend on 'restrict'.  Fix from Simon Josefsson in
16247         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00028.html>.
16248
16249 2003-09-07  Paul Eggert  <eggert@twinsun.com>
16250
16251         * lib/time_r.c (gmtime_r, localtime_r): Fix silly typo: missing arg to
16252         copy_tm_result.  Bug reported by Simon Josefsson in
16253         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00028.html>.
16254
16255 2003-09-06  Paul Eggert  <eggert@twinsun.com>
16256
16257         * m4/time_r.m4: New file.
16258         * m4/mktime.m4 (gl_PREREQ_MKTIME): Remove check for limits.h.
16259         * m4/timegm.m4 (gl_FUNC_TIMEGM): Assume that timegm is buggy if mktime
16260         is. Check for timegm declaration.
16261         (gl_PREREQ_TIMEGM): Require gl_FUNC_MKTIME.
16262         Do not check for gmtime_r.
16263         Replace mktime if __mktime_internal does not exist and if mktime
16264         hasn't been replaced already.
16265
16266 2003-09-06  Paul Eggert  <eggert@twinsun.com>
16267
16268         * lib/time_r.c, lib/time_r.h: New files.
16269
16270         * lib/mktime.c (my_mktime_localtime_r): Remove; all uses changed to
16271         __localtime_r.
16272         (__localtime_r) [!defined _LIBC]: New macro.  Include <time_r.h>.
16273         (__mktime_internal) [!defined _LIBC]: Now extern, not static.
16274
16275         * lib/strftime.c (my_strftime_gmtime_r): Remove; all uses changed to
16276         __gmtime_r.
16277         (my_strftime_localtime_r): Remove; all uses changed to __localtime_r.
16278         (__gtime_r, __localtime_r) [!HAVE_TM_GMTOFF]: New macros.
16279         Include <time_r.h>.
16280
16281         * lib/timegm.c: Switch to glibc implementation, with the following
16282         changes:
16283         [defined HAVE_CONFIG_H]: Include <config.h>.
16284         [!defined _LIBC]: Include "timegm.h" rather than <time.h>.
16285         (__mktime_internal) [!defined _LIBC]: New decl.
16286         (__gmtime_r) [!defined _LIBC]: New macro and function.
16287         (timegm): Use a prototype, since gnulib assumes C89.
16288         Do not bother declaring tmp to be const, as it's not really usefu.
16289         * lib/timegm.h: Hoist "#include <time.h>" out of #ifdef.
16290         (timegm): Declare only if HAVE_DECL_TIMEGM.
16291
16292 2003-09-06  Paul Eggert  <eggert@twinsun.com>
16293
16294         * MODULES.html.sh (func_all_modules): Add time_r.
16295         * modules/time_r: New file.
16296         * modules/mktime, modules/strftime, modules/timegm: Depend on time_r.
16297         * modules/timegm: Depend on mktime.  Change maintainer to "all, glibc".
16298
16299 2003-09-03  Paul Eggert  <eggert@twinsun.com>
16300
16301         * lib/human.c (human_readable): Fix bug that rounded 10501 to 10k.
16302         Bug reported by Lute Kamstra in
16303         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00003.html>.
16304
16305         * lib/getdate.y (relative_time_table): Use tDAY_UNIT for "tomorrow",
16306         "yesterday", "today", and "now" rather than tMINUTE_UNIT.  Of
16307         course with correspondingly smaller numbers for tomorrow and
16308         yesterday.  From Tadayoshi Funaba.  Originally installed into
16309         sh-utils on 1999-08-07, but the patch got lost (I guess during the
16310         coreutils merge?).
16311
16312 2003-08-31  Simon Josefsson  <jas@extundo.com>
16313
16314         * modules/timegm: New file.
16315         * MODULES.html.sh (func_all_modules): Add timegm.
16316
16317 2003-08-31  Simon Josefsson  <jas@extundo.com>
16318
16319         * m4/timegm.m4: New file.
16320
16321 2003-08-31  Simon Josefsson  <jas@extundo.com>
16322
16323         * lib/timegm.h: New file.
16324         * lib/timegm.c: New file.  Based on
16325         wget-1.8.2/src/http.c:mktime_from_utc.
16326
16327 2003-08-31  Karl Berry  <karl@gnu.org>
16328
16329         * lib/argp.h: update from libc.
16330
16331 2003-08-28  Bruno Haible  <bruno@clisp.org>
16332
16333         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Remove AC_DEFINE of fnmatch here.
16334         This avoids havoc on compilers for which '#define fnmatch rpl_fnmatch'
16335         followed by '#define fnmatch fnmatch_posix' gives an error.
16336
16337 2003-08-28  Bruno Haible  <bruno@clisp.org>
16338
16339         * lib/binary-io.h: Undefine O_BINARY before defining it. This avoids a
16340         warning on QNX, which defines O_BINARY to 000000.
16341
16342 2003-08-27  Jim Meyering  <jim@meyering.net>
16343
16344         * m4/mkstemp.m4: Require that the system mkstemp be able to create
16345         70 temporary files, not just 30.  Tru64 V4.0F's mkstemp function
16346         would fail after 32.  Reported by Danny Levinson.  Details here:
16347         http://mail.gnu.org/archive/html/bug-coreutils/2003-08/msg00124.html
16348
16349 2003-08-24  Bruno Haible  <bruno@clisp.org>
16350
16351         * lib/binary-io.h: Include <stdio.h>, to avoid a compilation error when
16352         MSVC7 <stdio.h> is included later.
16353
16354 2003-08-22  Simon Josefsson  <jas@extundo.com>
16355
16356         * modules/strndup (Makefile.am): Add strndup.h to lib_SOURCES.
16357
16358 2003-08-20  Karl Berry  <karl@gnu.org>
16359
16360         * m4/lib-ld.m4: serial 1003 from gettext, no changes besides serial.
16361
16362 2003-08-20  Bruno Haible  <bruno@clisp.org>
16363
16364         * modules/progname: New file.
16365         * MODULES.html.sh (func_all_modules): Add progname.
16366
16367 2003-08-20  Bruno Haible  <bruno@clisp.org>
16368
16369         * lib/progname.h: New file, from GNU gettext.
16370         * lib/progname.c: New file, from GNU gettext.
16371         * lib/progreloc.c: New file, from GNU gettext.
16372
16373 2003-08-19  Jim Meyering  <jim@meyering.net>
16374
16375         * m4/lib-ld.m4: Revert yesterday's change, per Bruno's request here:
16376         http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00155.html
16377
16378 2003-08-19  Bruno Haible  <bruno@clisp.org>
16379
16380         * m4/xalloc.m4 (gl_PREREQ_XSTRDUP): Don't check for <string.h> any
16381         more.
16382
16383 2003-08-19  Bruno Haible  <bruno@clisp.org>
16384
16385         * lib/xstrdup.c: Assume <string.h> exists.
16386
16387 2003-08-18  Paul Eggert  <eggert@twinsun.com>
16388
16389         * modules/stdbool: Add BUILT_SOURCES.  Prefer $@ to target name
16390         in makefile rules.
16391
16392 2003-08-18  Jim Meyering  <jim@meyering.net>
16393
16394         * m4/getloadavg.m4: Use [\t ], not [ \t] (where \t is a literal TAB).
16395         * m4/lib-ld.m4: Likewise.
16396
16397 2003-08-18  Jim Meyering  <jim@meyering.net>
16398
16399         * lib/setenv.h: Indent nested cpp directive.
16400         * lib/vasnprintf.c: Remove trailing blanks.
16401
16402 2003-08-17  Simon Josefsson  <jas@extundo.com>
16403
16404         * modules/xstrndup: New file.
16405         * MODULES.html.sh (func_all_modules): Add xstrndup.
16406
16407 2003-08-17  Simon Josefsson  <jas@extundo.com>
16408
16409         * modules/argp: Fix autoconf macro name. Add more dependencies.
16410
16411 2003-08-17  Simon Josefsson  <jas@extundo.com>
16412
16413         * m4/xstrndup.m4: New file.
16414
16415 2003-08-17  Simon Josefsson  <jas@extundo.com>
16416
16417         * m4/argp.m4: New file.
16418
16419 2003-08-17  Simon Josefsson  <jas@extundo.com>
16420             Bruno Haible  <bruno@clisp.org>
16421
16422         * lib/xstrndup.h: New file.
16423         * lib/xstrndup.c: New file.
16424
16425 2003-08-17  Bruno Haible  <bruno@clisp.org>
16426
16427         * modules/strndup (Files, Include): Add lib/strndup.h.
16428
16429 2003-08-17  Bruno Haible  <bruno@clisp.org>
16430
16431         * modules/euidaccess (Files): Add lib/euidaccess.h.
16432
16433 2003-08-17  Bruno Haible  <bruno@clisp.org>
16434
16435         * lib/strndup.h: New file.
16436
16437 2003-08-17  Bruno Haible  <bruno@clisp.org>
16438
16439         * gnulib-tool (func_create_testdir): Handle gl_USE_SYSTEM_EXTENSIONS
16440         like AC_GNU_SOURCE.
16441         * modules/extensions (configure.ac): Comment out the invocation of
16442         gl_USE_SYSTEM_EXTENSIONS.
16443
16444 2003-08-16  Paul Eggert  <eggert@twinsun.com>
16445
16446         Merges from coreutils, etc.
16447         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Insert ':' to prevent a syntax
16448         error in gl_FUNC_MATCH.  This fixes a bug I introduced on 2003-05-28.
16449         * m4/readlink.m4 (gl_PREREQ_READLINK): Renamed from gl_PREREQ_READLINE,
16450         fixing a typo.
16451         * m4/host-os.m4 (UTILS_HOST_OS): Add GNU/NetBSD, GNU/FreeBSD.
16452         * m4/hash.m4 (gl_HASH): Use AM_STDBOOL_H, not AC_HEADER_STDBOOL.
16453
16454 2003-08-16  Paul Eggert  <eggert@twinsun.com>
16455
16456         Document merge from coreutils.
16457         * modules/alloca: Append $(ALLOCA_H) to BUILT_SOURCES.
16458         * modules/fnmatch: Append $(FNMATCH_H) to BUILT_SOURCES.
16459         * modules/utime: Add m4/utimes-null.m4.
16460
16461 2003-08-16  Paul Eggert  <eggert@twinsun.com>
16462
16463         * lib/regex.h, strdup.c, strtoll.c, strtoul.c: Do not normalize white
16464         space, undoing this 2003-08-12 change:
16465         <http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00080.html>
16466
16467 2003-08-16  Paul Eggert  <eggert@twinsun.com>
16468
16469         * config/srclist.txt: Get regex.h, strdup.c, strtoll.c,
16470         strtoul.c from libc, undoing this 2003-08-12 change:
16471         <http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00080.html>
16472
16473 2003-08-16  Jim Meyering  <jim@meyering.net>
16474
16475         Merges from coreutils.
16476         * m4/readdir.m4 (GL_FUNC_READDIR): Change name to have GL_ (not jm_)
16477         prefix.  Adjust cache variables similarly.  Create 500 rather than
16478         just 300 files, to exercise bug on Darwin6.5, too.
16479         * m4/perl.m4 (jm_PERL): Use $am_missing_run, not undefined
16480         $missing_dir.
16481         * m4/jm-winsz1.m4: Require AC_SYS_POSIX_TERMIOS, not
16482         AM_SYS_POSIX_TERMIOS.
16483         Reported by mkc@mathdogs.com.
16484         Also change use of $am_cv_sys_posix_termios
16485         to $ac_cv_sys_posix_termios.  Reported by Andreas Schwab.
16486         * m4/getgroups.m4 (jm_FUNC_GETGROUPS): Rewrite to use AC_FUNC_GETGROUPS
16487         and (if needed) to call AC_LIBOBJ and to set GETGROUPS_LIB.
16488         * m4/fsusage.m4 [__GLIBC__]: GNU libc's statvfs stats each mount point
16489         in /proc/mounts until it finds one with matching device number.  This
16490         is unnecessary when the FILE argument *is* a mount point.  No stat call
16491         is necessary in that case.  So, disable the statvfs-testing code on
16492         systems with GNU libc.  Reported by Andrei Gaponenko via Tim Waugh
16493         as RedHat bug# 84846.
16494         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Limit stack size
16495         to 1MB, so as not to render systems with no stack size limit (e.g.,
16496         linux-2.2.x) unusable.  Suggestion and code from Bruno Haible.
16497         Include <unistd.h>.  On some systems,
16498         it is required for the definition of _SC_PAGESIZE.
16499
16500 2003-08-16  Jim Meyering  <jim@meyering.net>
16501
16502         Merge from coreutils.
16503         * lib/xstrtoimax.c: #else #if -> #elif.
16504         * lib/xstrtoumax.c: Likewise.
16505
16506 2003-08-16  Jim Meyering  <jim@meyering.net>
16507
16508         * m4/utimes.m4 (gl_FUNC_UTIMES): New file.
16509         * m4/utimes.m4: Removed.
16510         * m4/utimes-null.m4: Renamed from utimes.m4.
16511
16512         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Limit stack size
16513         to 1MB, so as not to render systems with no stack size limit (e.g.,
16514         linux-2.2.x) unusable.  Suggestion and code from Bruno Haible.
16515         Include <unistd.h>.  On some systems,
16516         it is required for the definition of _SC_PAGESIZE.
16517
16518 2003-08-16  Jim Meyering  <jim@meyering.net>
16519         and Paul Eggert  <eggert@cs.ucla.edu>
16520
16521         Merges from coreutils, etc.
16522
16523         * m4/jm-macros.m4 (AC_LANG_SOURCE(C)): New macro, undefine, then define
16524         using the latest version from cvs.  This avoids problems with #line
16525         directives using a vendor (Sun) compiler.
16526         (jm_MACROS): Bump prerequisite from 2.52g to 2.57.
16527         Don't set GETGROUPS_LIB here; now it's
16528         done via getgroups.m4's wrapper function.
16529         AC_SUBST OPTIONAL_BIN_PROGS, OPTIONAL_BIN_ZCRIPTS, and MAN here,
16530         rather than just in sh-util/configure.in, so that the
16531         now-shared-by-fileutils-and-textutils lib/Makefile.am are all the
16532         same.
16533         Use AC_CONFIG_LIBOBJ_DIR(lib) to tell the new
16534         AC_FUNC_GETLOADAVG where to find getloadavg.c.
16535         Require AC_FUNC_FTW, gt_INTTYPES_PRI, gl_CLOCK_TIME,
16536         UTILS_SYS_OPEN_MAX, GL_FUNC_GETCWD_PATH_MAX, GL_FUNC_READDIR,
16537         gl_FSUSAGE, gl_MOUNTLIST, AC_FUNC_CANONICALIZE_FILE_NAME.
16538         Remove code that is now done by the newly-required macros.
16539         Append $(EXEEXT) to DF_PROG.
16540         AC_LIBOBJ fchdir-stub if fchdir doesn't exist; similarly for fchown.
16541         Do not invoke or require the following here,
16542         since prereq.m4 or some gnulib .m4 now does this for us:
16543         gl_REGEX, UTILS_FUNC_MKDIR_TRAILING_SLASH, jm_BISON, gl_FUNC_MKTIME,
16544         jm_FUNC_LSTAT, jm_FUNC_STAT, jm_FUNC_REALLOC, jm_FUNC_MALLOC,
16545         jm_FUNC_NANOSLEEP, jm_FUNC_READDIR, jm_FUNC_MEMCMP,
16546         jm_FUNC_GLIBC_UNLOCKED_IO, AC_FUNC_FNMATCH_GNU, jm_FUNC_PUTENV,
16547         jm_AC_PREREQ_XSTRTOUMAX, jm_AC_PREREQ_XSTRTOIMAX,
16548         AC_FUNC_ERROR_AT_LINE, jm_FUNC_GNU_STRFTIME, AC_FUNC_VPRINTF,
16549         vb_FUNC_RENAME, UTILS_FUNC_MKSTEP, jm_FUNC_UTIME, AM_FUNC_GETLINE,
16550         AC_FUNC_OBSTACK.
16551         Do not replace the following functions, as this is now the job
16552         of some gnulib .m4: strcasecmp, strncasecmp, dup2, gethostname,
16553         getusershell, sig2str, strcspn, stpcpy, strstr, strtol, strtoul
16554         strpbrk, euidaccess, memcmp, rmdir, rpmatch, strndup, strverscmp,
16555         atexit getpass, strdup, getpagesize.
16556         Replace 'raise'.
16557         Do not check for the following functions, as this is now the job
16558         of some gnulib .m4: bcopy, canonicalize_file_name, fchdir, ftime,
16559         getcwd, getmntinfo, resolvepath.  But check for sysctl, setreuid,
16560         setregid.
16561         (jm_CHECK_ALL_HEADERS): Do not check for fenv.h.
16562         Check for sys/sysctl.h.
16563         (jm_CHECK_ALL_TYPES): Do not require AC_STRUCT_TM, AC_STRUCT_TIMEZONE,
16564         jm_CHECK_TYPE_STRUCT_TIMESPEC.  Invoke gt_TYPE_SSIZE_T instead
16565         of checking for ssize_t ourselves.
16566
16567         * m4/prereq.m4 (jm_PREREQ): Don't invoke macros; AC_REQUIRE them.
16568         Require every macro that gnulib/modules/* suggests for us.
16569         (jm_PREREQ_ADDEXT): New macro.
16570         (jm_PREREQ_STAT): Check for 'struct statfs' on Ultrix 4.4.
16571         Require jm_AC_TYPE_LONG_LONG instead of invoking it.
16572
16573         * m4/physmem.m4 (gl_SYS__SYSTEM_CONFIGURATION): New macro.
16574         (gl_PHYSMEM): Use it.
16575         Also check for `table' function.
16576         Check for new headers and functions.
16577         Add check for sys/sysmp.h.
16578         With suggestions from Kaveh Ghazi.
16579         Ignore headers that are present but cannot be compiled.  This
16580         avoids spurious warnings on Solaris 9 sparc with Forte Developer 7
16581         C 5.4.
16582
16583 2003-08-15  Paul Eggert  <eggert@twinsun.com>
16584
16585         Document merge from coreutils.
16586         * modules/userspec: Depend on posixver.
16587         * modules/strftime: Depend on tzset.
16588
16589 2003-08-15  Paul Eggert  <eggert@twinsun.com>
16590
16591         * lib/config.charset, ref-add.sin, ref-del.sin: Use three spaces,
16592         rather than tab, after '#' in shell-script copyright notices.
16593         Suggested by Bruno Haible.
16594
16595 2003-08-15  Paul Eggert  <eggert@twinsun.com>
16596
16597         * config/srclist-update: Use three spaces, rather than tab, after '#'
16598         in shell-script copyright notices.  Suggested by Bruno Haible.
16599         Remove unnecessary parenthesization in regular expression.
16600
16601 2003-08-15  Jim Meyering  <jim@meyering.net>
16602
16603         Merge from coreutils.
16604         * lib/xgethostname.c: Include <stdlib.h>.
16605         (xghostname): Don't exit for anything other than memory-related
16606         failure; just return NULL.
16607         * lib/userspec.c: Include "posixver.h".
16608         (parse_user_spec): Accept `.' as a separator only
16609         in pre-POSIX-200112 mode.
16610         * lib/strtoimax.c: Use #elif rather than #else #if.
16611         * lib/strftime.c (my_strftime) [!_LIBC && HAVE_TZNAME && HAVE_TZSET]:
16612         Remove function, now that we can rely on a working tzset function.
16613         [!_LIBC]: Ensure that the required autoconf test has been run.
16614         [!defined _NL_CURRENT && HAVE_STRFTIME]:
16615         Use underlying_strftime for %r.
16616         * lib/sha.c: Merge in some clean-up and optimization changes from
16617         glibc.
16618         * lib/sha.c (sha_stream) [BLOCKSIZE]: Move definition to top of file.
16619         Ensure that it is a multiple of 64.
16620         Rearrange loop exit tests so as to avoid performing an
16621         additional fread after encountering an error or EOF.
16622         * lib/realloc.c: Update copyright date.
16623
16624 2003-08-15  Jim Meyering  <jim@meyering.net>
16625         and Paul Eggert  <eggert@twinsun.com>
16626
16627         Merge from coreutils.
16628         * lib/readutmp.h (HAVE_UTMPX_H): Undef if struct utmp has the ut_exit
16629         member but strut utmpx does not.  Needed for AIX 4.3.3.
16630         (UT_EXIT_E_TERMINATION, UT_EXIT_E_EXIT): Define.
16631
16632 2003-08-15  Jim Meyering  <jim@meyering.net>
16633         and Paul Eggert  <eggert@cs.ucla.edu>
16634
16635         Merges from coreutils, etc.
16636         * m4/strftime.m4 (_jm_STRFTIME_PREREQS):
16637         Require gl_FUNC_TZSET_CLOBBER.
16638         * m4/readutmp.m4 (gl_READUTMP): Check for ut_exit.ut_exit,
16639         ut_exit.e_exit, ut_exit.ut_termination, and ut_exit.e_termination
16640         members.
16641
16642 2003-08-14  Paul Eggert  <eggert@twinsun.com>
16643
16644         Help the merge from coreutils.
16645         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): New macro.
16646         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Use it.
16647         * m4/tzset.m4: Use it too.
16648
16649 2003-08-14  Paul Eggert  <eggert@twinsun.com>
16650
16651         * modules/tzset: New file.
16652
16653 2003-08-14  Jim Meyering  <jim@meyering.net>
16654
16655         Merges from coreutils.
16656         * modules/fnmatch: Use the `$(FNMATCH_H)' notation for AC_REPLACED
16657         variable names, rather than @FNMATCH_H@.
16658         * modules/alloca: Likewise for $(ALLOCA_H).
16659
16660         * modules/fnmatch (fnmatch.h): Use `$@' in the commands, in place of
16661         the three copies of the literal target, `fnmatch.h'.
16662         * modules/alloca (alloca.h): Likewise.
16663
16664 2003-08-14  Jim Meyering  <jim@meyering.net>
16665
16666         Merge from coreutils.
16667         * m4/tzset.m4: New file.
16668         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Move the
16669         MOUNTED_VMOUNT test to precede the MOUNTED_GETMNTENT1 tests, since
16670         otherwise, AIX 5.1 systems would end up using the latter.
16671         MOUNTED_GETMNTENT1 support is inadequate on such systems: 1) detecting
16672         whether a file system is remote doesn't work  2) the MOUNTED_VMOUNT
16673         code reports the HOSTNAME:/MOUNT_POINT, while the MOUNTED_GETMNTENT1
16674         code reports merely /MOUNT_POINT.  Reported by Mike Jetzer.
16675
16676 2003-08-14  Jim Meyering  <jim@meyering.net>
16677
16678         Merge from coreutils.
16679         * lib/obstack.h: Whitespace changes.
16680         * lib/mountlist.c: Remove anachronistic casts of xmalloc, xrealloc,
16681         and xcalloc return values.
16682         (read_filesystem_list) [MOUNTED_GETFSSTAT]:
16683         Use MNT_NOWAIT, rather than MNT_WAIT.  Otherwise, `df DIR' could
16684         hang on OSF/1 5.1 for DIR on both local and remote file systems.
16685         Reported by (and fix confirmed by) Nelson H. F. Beebe.
16686         (read_filesystem_list) [MOUNTED_VMOUNT]: Detect any
16687         error from mntctl.
16688         Use mntctl's return value to drive the entry-processing loop, since
16689         we can't rely on the value of the vmt_length member in the last
16690         entry.  On some systems doing so could result in exhausting
16691         virtual memory.  Based in part on a patch from Mike Jetzer.
16692
16693 2003-08-14  Jim Meyering  <jim@meyering.net>
16694         and Paul Eggert  <eggert@twinsun.com>
16695
16696         Merges from coreutils, plus other fixes.
16697         * lib/physmem.c: Merge in portability changes from gcc/libiberty
16698         to support AIX, IRIX, Tru64, and Windows.  See the ChangeLog there
16699         for credits and details.  Thanks to Kaveh Ghazi for helping
16700         to keep these files in sync.
16701         (ARRAY_SIZE): Define it.
16702         (physmem_total, physmem_available): Add comments. From Kaveh Ghazi.
16703         * lib/memcasecmp.c: Remove unnecessary parentheses after 'defined'.
16704         (memcasecmp): Don't assume size_t fits in unsigned int.
16705         Remove casts and duplicate code.
16706         * lib/md5.c: Include <string.h> and <stdlib.h> unconditionally.
16707         (memcpy): Remove definition.
16708         Merge in some clean-up and optimization changes from glibc.
16709         [BLOCKSIZE]: Move definition to top of file.
16710         Ensure that it is a multiple of 64.
16711         Rearrange loop exit tests so as to avoid performing an
16712         additional fread after encountering an error or EOF.
16713         * lib/md5.h (md5_uintptr): Define.
16714         * lib/makepath.c (CLEANUP_CWD): Report an error if we failed to
16715         return to the initial working directory.  Preserve errno
16716         for caller.
16717         * lib/idcache.c: Include "xalloc.h".
16718         (xmalloc, xrealloc): Remove decls.
16719         (getuser): Remove casts no longer required in C89.
16720         * lib/human.c: Include stdio.h, for sprintf.
16721         * lib/group-member.c: Include "xalloc.h".
16722         (xmalloc, xrealloc): Remove decls.
16723         (get_group_info): Remove casts no longer required in C89.
16724         * lib/getusershell.c (readname): Remove casts no longer required in
16725         C89.
16726         * lib/gettimeofday.c (rpl_gmtime, rpl_tzset): New functions.
16727         * lib/getline.c: Whitespace fix, from coreutils.
16728
16729 2003-08-13  Paul Eggert  <eggert@twinsun.com>
16730
16731         * m4/exclude.m4 (gl_EXCLUDE): Require AC_C_INLINE, AC_HEADER_STDC.
16732         Check for isascii.
16733
16734         * m4/gettext.m4, iconv.m4, intdiv0.m4, inttypes-pri.m4, lib-link.m4,
16735         lib-prefix.m4, longdouble.m4, po.m4, progtest.m4, signed.m4:
16736         Undo previous (whitespace-only) change.
16737
16738 2003-08-13  Paul Eggert  <eggert@twinsun.com>
16739
16740         * lib/exclude.c: Include <ctype.h>
16741         (IN_CTYPE_DOMAIN): New macro.
16742         (is_space): New fn.
16743         (add_exclude_file): If LINE_END is a space, ignore trailing spaces
16744         and empty lines.
16745
16746         * lib/argp-help.c, argp-parse.c, config.charset, getopt.h:
16747         Undo previous (whitespace-only) change.
16748
16749 2003-08-13  Paul Eggert  <eggert@twinsun.com>
16750
16751         * config/srclist-update: Change update back to the old behavior,
16752         leaving whitespace alone.  Use one 'sed' command rather than a
16753         pipeline.
16754         (fixlicense): Now a variable, not a function.
16755         (remove_trailing_blanks): Remove.
16756         (fixfile): Don't invoke unexpand or cat, or remove trailing blanks.
16757         * config/config.guess, config.sub, install-sh, missing, texinfo.tex:
16758         Undo previous (whitespace-only) change.
16759
16760 2003-08-12  Paul Eggert  <eggert@twinsun.com>
16761
16762         Merge from coreutils.
16763         * modules/euidaccess: Add lib_SOURCES, include for new
16764         file euidaccess.h
16765
16766 2003-08-12  Paul Eggert  <eggert@twinsun.com>
16767
16768         * m4/gettext.m4, iconv.m4, intdiv0.m4, inttypes-pri.m4, lib-link.m4,
16769         lib-prefix.m4, longdouble.m4, po.m4, progtest.m4, signed.m4:
16770         Normalize leading white space and remove trailing white space.
16771
16772         Merge from coreutils
16773         * m4/euidaccess.m4 (gl_FUNC_EUIDACCESS): Check for euidaccess decl.
16774
16775         * m4/lib-ld.m4, lib-link.m4, lib-prefix.m4: Regenerate from gettext
16776         0.12.1.  These files are now being upgraded automatically by
16777         ../config/srclist-update.
16778
16779 2003-08-12  Paul Eggert  <eggert@twinsun.com>
16780
16781         * lib/argp-help.c, argp-parse.c, config.charset, getopt.h:
16782         Normalize leading white space and remove trailing white space.
16783         * lib/ref-add.sin, ref-del.sin: Use '#' before empty line in copyright
16784         notice, as per ../config/srclist-update.
16785
16786         Merge from coreutils.
16787         * lib/euidaccess.h: New file.
16788         * lib/euidaccess.c: Include it.
16789         * lib/.cppi-disable: Add printf-args.h, printf-parse.h, stdbool_.h,
16790         vasnprintf.h, vasprintf.h.  Remove strdup.c, gettext.h.
16791         * lib/regex.h, strdup.c, strtoll.c, strtoul.c: Normalize white space.
16792
16793 2003-08-12  Paul Eggert  <eggert@twinsun.com>
16794
16795         * config/srclist-update: Add copyright notice.
16796         (remove_id_lines, remove_trailing_blanks): New constants.
16797         (fixfile): Use them to normalize spacing a bit in copied files.
16798         * config/config.guess, config.sub, install-sh, missing, texinfo.tex:
16799         Normalize leading white space and remove trailing white space.
16800
16801         * config/texinfo.tex: Sync with texinfo.
16802
16803         * config/srclist.txt: Don't get regex.h, strdup.c, strtoll.c,
16804         strtoul.c from libc, to merge coreutils whitespace changes.
16805
16806         * config/srclist.txt: Get the following m4 files from gettext:
16807         codeset.m4, gettext.m4, glibc21.m4, iconv.m4, intdiv0.m4,
16808         inttypes-pri.m4, lcmessage.m4, lib-ld.m4, lib-link.m4, lib-prefix.m4,
16809         longdouble.m4, nls.m4, po.m4, progtest.m4, signed.m4, wchar_t.m4,
16810         wint_t.m4.
16811
16812 2003-08-12  Karl Berry  <karl@gnu.org>
16813
16814         * config/srclist.txt: can't sync vasnprintf.c any more, changes have
16815         been made.
16816
16817 2003-08-11  Paul Eggert  <eggert@twinsun.com>
16818
16819         * modules/gnu-source, m4/gnu-source.m4:
16820         Remove; we're assuming Autoconf 2.54 or later now.
16821         Suggested by Bruno Haible.
16822         * MODULES.html.sh (func_all_modules): Remove gnu-source.
16823
16824 2003-08-11  Bruno Haible  <bruno@clisp.org>
16825
16826         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF): Also check for wcslen.
16827
16828 2003-08-11  Bruno Haible  <bruno@clisp.org>
16829
16830         * lib/vasnprintf.c (local_wcslen): New function, for Solaris 2.5.1.
16831         (vasnprintf): Use it instead of wcslen.
16832
16833 2003-08-11  Bruno Haible  <bruno@clisp.org>
16834
16835         * lib/stdbool_.h (_Bool): Undo last change; instead use a negative enum
16836         value to ensure that _Bool promotes to int. Use #define for _Bool when
16837         using the Solaris C compiler. Adds comments suggested by Paul Eggert.
16838
16839 2003-08-10  Karl Berry  <karl@gnu.org>
16840
16841         * lib/regex.h: update from libc (whitespace fix).
16842
16843 2003-08-09  Paul Eggert  <eggert@twinsun.com>
16844
16845         Merge some files from coreutils.  These changes were
16846         originally made by Jim Meyering.
16847         * lib/acl.c: Include <sys/types.h> before <sys/stat.h>;
16848         many older Unixes require this.
16849         * lib/alloca.c (alloca): Remove cast to argument of free;
16850         no longer needed in C89.
16851         * lib/alloca_.h, regex.h: Fix white space to match
16852         what GNU indent does.
16853
16854 2003-08-09  Paul Eggert  <eggert@twinsun.com>
16855
16856         * m4/regex.m4 (jm_INCLUDED_REGEX): Change "\201" to "\371";
16857         apparently Emacs's Unicode mode got confused before my 2003-08-05
16858         checkin.
16859
16860 2003-08-08  Paul Eggert  <eggert@twinsun.com>
16861
16862         * m4/extensions.m4: New file.
16863         * m4/timespec.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC):
16864         Require gl_USE_SYSTEM_EXTENSIONS.
16865         * m4/unlocked-io.m4 (jm_FUNC_GLIBC_UNLOCKED_IO):
16866         Require gl_USE_SYSTEM_EXTENSIONS rather than AC_GNU_SOURCE.
16867
16868 2003-08-08  Paul Eggert  <eggert@twinsun.com>
16869
16870         * MODULES.html.sh (func_all_modules): Add extensions, gnu-source.
16871         * modules/extensions, modules/gnu-source: New files.
16872         * modules/timespec, modules/unlocked-io: Depend on extensions.
16873
16874 2003-08-07 Paul Eggert  <eggert@twinsun.com>
16875
16876         * modules/restrict: New file.
16877         * MODULES.html.sh (func_all_modules): Add restrict.
16878         * modules/regex: Depend on restrict.
16879
16880 2003-08-07  Paul Eggert  <eggert@twinsun.com>
16881
16882         * m4/restrict.m4: New file.
16883         * m4/regex.m4 (jm_PREREQ_REGEX): Add gl_C_RESTRICT.
16884
16885 2003-08-07  Bruno Haible  <bruno@clisp.org>
16886
16887         * modules/getndelim2 (Makefile.am): Add the files to EXTRA_DIST, not
16888         lib_SOURCES, because getndelim2.m4 now uses AC_LIBOBJ(getndelim2).
16889
16890 2003-08-07  Bruno Haible  <bruno@clisp.org>
16891
16892         * m4/getndelim2.m4 (gl_GETNDELIM2): Use AC_LIBOBJ(getndelim2). This
16893         makes the module 'getndelim2' compatible with the module 'getline'.
16894
16895 2003-08-05  Paul Eggert  <eggert@twinsun.com>
16896
16897         * m4/regex.m4 (jm_INCLUDED_REGEX): Replace a single non-ASCII
16898         byte with "\201" to avoid glitches when editing that source file
16899         with multi-gnome-terminal.
16900
16901 2003-08-05  Paul Eggert  <eggert@twinsun.com>
16902
16903         * lib/bumpalloc.h: Remove.
16904
16905 2003-08-05  Paul Eggert  <eggert@twinsun.com>
16906
16907         * MODULES.html.sh (func_all_modules): Remove bumpalloc.
16908         * modules/bumpalloc: Remove.
16909
16910 2003-08-04  Paul Eggert  <eggert@twinsun.com>
16911
16912         * lib/getloadavg.c: Change copyright notice and spacing to conform to
16913         GNU coding style.
16914
16915         Merge from coreutils.
16916         * lib/error.c [!USE_IN_LIBIO]: Omit this case; assume USE_IN_LIBIO is
16917         1. From glibc.
16918         * lib/getdate.y (date): Also accept dates like May-23-2003; suggestion
16919         from Karl Berry, implemented by Jim Meyering.
16920         * lib/getgroups.c: Include "xalloc.h" instead of declaring xalloc fns;
16921         from Dmitry V. Levin.
16922         Remove anachronistic cast of xrealloc.
16923         * lib/fnmatch_.h (__const): Remove.  Use 'const'.
16924         * lib/fnmatch_loop.c (NEW_PATTERN): Cast alloca return value to proper
16925         type. Otherwise, it wouldn't compile with at least /bin/cc on
16926         ymp-cray-unicos9.0.2.X.
16927         Combine two mostly-identical uses of alloca into one.
16928         Thanks to the Cray-Cyber project for access to a Cray Y-MP.
16929
16930 2003-08-04  Dave Love <d.love@dl.ac.uk>
16931
16932         [From Emacs.]
16933
16934         * lib/getloadavg.c: Check `__unix' as well as `unix'.  Use #ifdef, not
16935         #if.  Check HAVE_LIBKSTAT as well as LOAD_AVE_TYPE.  Check
16936         F_SETFD, not FD_SETFD.  Use HAVE_STRUCT_NLIST_N_UN_N_NAME, not
16937         obsolete NLIST_NAME_UNION.
16938         [__GNU__]: Undef BSD and FSCALE.
16939         [!NLIST_STRUCT]: Remove conditional definition of NLIST_STRUCT.
16940
16941 2003-08-03  Paul Eggert  <eggert@twinsun.com>
16942
16943         * lib/stdbool_.h (_Bool): Make it signed char, instead of
16944         an enum type, so that it's guaranteed to promote to int.  See:
16945         <http://mail.gnu.org/archive/html/bug-gnulib/2003-07/msg00124.html>
16946
16947 2003-08-03  Karl Berry  <karl@gnu.org>
16948
16949         * config/depcomp: update from automake.
16950
16951 2003-07-31  Paul Eggert  <eggert@twinsun.com>
16952
16953         * lib/strerror.c: Include config.h, limits.h.  Declare sprintf.
16954         (strerror): Don't assume that a printable int fits in 14 bytes.
16955
16956 2003-07-31  Bruno Haible  <bruno@clisp.org>
16957
16958         * modules/getpass-gnu: New file.
16959         * MODULES.html.sh (func_all_modules): Add getpass-gnu.
16960
16961 2003-07-31  Bruno Haible  <bruno@clisp.org>
16962
16963         * m4/getpass.m4 (gl_FUNC_GETPASS_GNU): New macro.
16964
16965 2003-07-24  Karl Berry  <karl@gnu.org>
16966
16967         * config/missing: update from automake.
16968
16969 2003-07-24  Derek Robert Price  <derek@ximbiot.com>
16970             Bruno Haible  <bruno@clisp.org>
16971
16972         * lib/getline.h (getline, getdelim): Change return type to ssize_t.
16973         * lib/getline.c (getline, getdelim): Likewise.
16974         Remove _GNU_SOURCE define; now it's defined in config.h through
16975         m4/getline.m4.
16976
16977 2003-07-23  Karl Berry  <karl@gnu.org>
16978
16979         * config/config.sub: update from prep.
16980
16981 2003-07-22  Paul Eggert  <eggert@twinsun.com>
16982
16983         * modules/xalloc (Depends-on): Add exitfail.
16984         * modules/xmemcoll: Likewise.
16985
16986 2003-07-22  Paul Eggert  <eggert@twinsun.com>
16987
16988         * lib/xalloc.h (XCALLOC, XREALLOC, CCLONE): Fix under- and
16989         over-parenthesization in macros.
16990
16991         Sync with coreutils.
16992
16993         * lib/xalloc.h (XMALLOC, XCALLOC, XREALLOC): Remove casts not
16994         required by C99.
16995
16996         Use `exit_failure' for xalloc and xmemcoll instead of their own
16997         private exit-failure variables.
16998         * lib/xalloc.h (xalloc_exit_failure): Remove.
16999         * lib/xmalloc.c: Likewise.  Include exitfail.h.
17000         (xalloc_die): Use exit_failure instead of xalloc_exit_failure.
17001         * lib/xmemcoll.h (xmemcoll_exit_failure): Remove.
17002         * lib/xmemcoll.c: Likewise.  Include exitfail.h.
17003         (xmemcoll): Use exit_failure instead of xalloc_exit_failure.
17004
17005 2003-07-20  Jim Meyering  <jim@meyering.net>
17006
17007         * modules/closeout (Depends-on): Add exitfail.
17008         Suggestion from Bruno Haible.
17009
17010 2003-07-19  Karl Berry  <karl@gnu.org>
17011
17012         * config/config.sub: update from prep.
17013
17014 2003-07-18  Paul Eggert  <eggert@twinsun.com>
17015
17016         * lib/closeout.h (close_stdout_set_status, close_stdout_status):
17017         Remove.
17018         * lib/closeout.c: Likewise.  Include "closeout.h" right after config.h,
17019         to test that it can stand by itself.  Include "exitfail.h".
17020         Clients should set exit_failure instead.
17021         (EXIT_FAILURE): Remove; no longer needed.  Do not include <stdlib.h>.
17022
17023 2003-07-18  Bruno Haible  <bruno@clisp.org>
17024
17025         * modules/getndelim2: New file.
17026         * modules/getline: Share files with module getndelim2.
17027         * modules/getnline: Depend on getndelim2 instead of sharing files with
17028         it. Add getnline.c to lib_SOURCES.
17029         * MODULES.html.sh (func_all_modules): Add getndelim2.
17030
17031 2003-07-18  Bruno Haible  <bruno@clisp.org>
17032
17033         * m4/getndelim2.m4: New file.
17034         * m4/getline.m4 (AM_FUNC_GETLINE): Add AC_LIBOBJ of getndelim2.c and
17035         invoke gl_PREREQ_GETNDELIM2.
17036         (gl_PREREQ_GETLINE): Drop AC_HEADER_STDC, now done by
17037         gl_PREREQ_GETNDELIM2.
17038         * m4/getnline.m4 (gl_GETNLINE): Drop AC_HEADER_STDC, now done by
17039         gl_GETNDELIM2.
17040
17041 2003-07-18  Bruno Haible  <bruno@clisp.org>
17042
17043         * lib/getndelim2.h: New file.
17044         * lib/getndelim2.c: Make into a module of its own. Include config.h,
17045         getndelim2.h.
17046         (getndelim2): Make non-static. Change return type to ssize_t.
17047         * lib/getline.h: Change argument names.
17048         * lib/getline.c: Include getndelim2.h instead of getndelim2.c.
17049         * lib/getnline.c: Include getndelim2.h.
17050
17051 2003-07-18  Andreas Schwab  <schwab@suse.de>
17052
17053         * lib/memcoll.c (memcoll) [!HAVE_STRCOLL]: Clear errno.
17054
17055 2003-07-17  Karl Berry  <karl@gnu.org>
17056
17057         * config/config.sub: update from prep.
17058
17059 2003-07-17  Bruno Haible  <bruno@clisp.org>
17060
17061         * modules/getnline: New file.
17062         * modules/getline: Add lib/getndelim2.c to source file list.
17063         * MODULES.html.sh (func_all_modules): Add getnline.
17064
17065 2003-07-17  Bruno Haible  <bruno@clisp.org>
17066
17067         * m4/getnline.m4: New file.
17068
17069 2003-07-17  Bruno Haible  <bruno@clisp.org>
17070
17071         * m4/Makefile.am.in: Remove file.
17072         * m4/Makefile.am: Remove file.
17073         * m4/Makefile.in: Remove file.
17074
17075 2003-07-17  Bruno Haible  <bruno@clisp.org>
17076
17077         * lib/getnline.h: New file.
17078         * lib/getnline.c: New file.
17079         * lib/getndelim2.c: New file, extracted from getline.c.
17080         (getndelim2): Renamed from getdelim2, with added nmax argument.
17081         * lib/getline.c: Include getndelim2.c.
17082         (getdelim2): Moved out to getndelim2.c.
17083         (getline, getdelim): Update.
17084
17085 2003-07-17  Bruno Haible  <bruno@clisp.org>
17086
17087         * lib/Makefile.am: Remove file.
17088         * lib/Makefile.in: Remove file.
17089
17090 2003-07-17  Bruno Haible  <bruno@clisp.org>
17091
17092         * configure.in: Remove file.
17093         * Makefile.in: Remove file.
17094
17095 2003-07-17  Bruno Haible  <bruno@clisp.org>
17096
17097         * MODULES.html.sh: Put the </BODY> right before </HTML>.
17098
17099 2003-07-16  Karl Berry  <karl@gnu.org>
17100
17101         * config/srclist-update: was running fixlicense twice, which caused
17102                 texinfo.tex to be nullified for some reason.  Simplify,
17103                 $gplsrc is no longer needed as far as I can see?
17104
17105 2003-07-16  Jim Meyering  <jim@meyering.net>
17106
17107         * modules/save-cwd: Depend on xgetcwd.  From Derek Price.
17108
17109 2003-07-15  Paul Eggert  <eggert@twinsun.com>
17110
17111         * config/srclist.txt: Get the following files from gettext-runtime/intl
17112         instead: config.charset, localcharset.c, localcharset.h, ref-add.sin,
17113         ref-del.sin.  From Bruno Haible.
17114         * config/srclist-update (fixfile): Change grep pattern again, since the
17115         previous fix didn't work (there was another trailing $).  Use
17116         '[$]' to escape the $s.
17117
17118 2003-07-15  Karl Berry  <karl@gnu.org>
17119
17120         * lib/vasnprintf.c: update from gettext.
17121
17122 2003-07-15  Karl Berry  <karl@gnu.org>
17123
17124         * config/srclist-update (fixfile): Change grep pattern, since 'Id'
17125         gets expanded when surrounded by '$'.
17126
17127 2003-07-15  Jim Meyering  <jim@meyering.net>
17128
17129         * modules/save-cwd: Don't depend on error.  From Derek Price.
17130
17131 2003-07-15  Jim Meyering  <jim@meyering.net>
17132
17133         * lib/makepath.c (make_path): Enclose diagnostic in _(...).
17134
17135 2003-07-14  Simon Josefsson  <jas@extundo.com>
17136
17137         * modules/mempcpy: New file.
17138         * MODULES.html.sh (func_all_modules): Add mempcpy.
17139
17140 2003-07-14  Simon Josefsson  <jas@extundo.com>
17141
17142         * m4/mempcpy.m4: New file.
17143
17144 2003-07-14  Simon Josefsson  <jas@extundo.com>
17145
17146         * lib/mempcpy.h: New file.
17147         * lib/mempcpy.c: New file.
17148
17149 2003-07-14  Paul Eggert  <eggert@twinsun.com>
17150
17151         * modules/getdate, modules/posixtm: Depend on mktime.
17152
17153 2003-07-14  Paul Eggert  <eggert@twinsun.com>
17154
17155         * lib/ceill.c, expl.c, floorl.c, frexpl.c, ldexpl.c, mathl.h,
17156         sincosl.c, sqrtl.c, trigl.c, trigl.h, poll.c, poll_.h, mkstemp.c,
17157         unicodeio.c, unicodeio.h, unlocked-io.h:
17158         Switch from LGPL to GPL.
17159
17160 2003-07-14  Paul Eggert  <eggert@twinsun.com>
17161
17162         * lib/asnprintf.c, asprintf.c, config.charset, gettext.h,
17163         localcharset.c, localcharset.h, mkdtemp.c, printf-args.c,
17164         printf-args.h, printf-parse.c, printf-parse.h, ref-add.sin,
17165         ref-del.sin, setenv.c, unsetenv.c, vasnprintf.c, vasnprintf.h,
17166         vasprintf.c, vasprintf.h: Regenerate.  These files are now being
17167         updated automatically by ../config/srclist-update.  This changes
17168         their license from LPGL to GPL.
17169
17170 2003-07-14  Paul Eggert  <eggert@twinsun.com>
17171
17172         * config/srclist.txt: Add tons more gettext files.  $GETTEXT is now
17173         assumed to refer to the root of the most recent stable gettext version.
17174         * config/srclistvars.sh: Add defaults for eggert.
17175         * config/srclist-update: Convert LGPL to GPL in shell scripts, too.
17176         Match "This program" as well as "The program".  This is needed
17177         for gettext.
17178
17179 2003-07-14  Jim Meyering  <jim@meyering.net>
17180
17181         Don't emit diagnostics.  Let callers do that.
17182         * lib/save-cwd.c: Don't include "error.h".
17183         (save_cwd): Don't call error.  Ensure that errno is valid
17184         when returning nonzero.
17185
17186         * lib/save-cwd.h (restore_cwd): Update prototype.
17187         * lib/save-cwd.c (restore_cwd): Remove two parameters.
17188         Simplify.  Don't call error upon failure.  Let callers do that.
17189         (save_cwd): Mention that Irix 5.3 has the same problem as SunOS 4
17190         when auditing is enabled.  But don't bother updating the #if.
17191
17192 2003-07-11  Alexandre Duret-Lutz  <adl@gnu.org>
17193
17194         * lib/obstack.h (__INT_TO_PTR): Revert change of 2003-03-13;
17195         it breaks C++ compilation.
17196         [!__GNUC__ || !__STDC__] (obstack_finish): Cast result to void*.
17197
17198 2003-07-10  Simon Josefsson  <jas@extundo.com>
17199
17200         * modules/strchrnul (Makefile.am): Add strchrnul.h.
17201
17202 2003-07-10  Jim Meyering  <jim@meyering.net>
17203
17204         * m4/clock_time.m4: Remove trailing blank.
17205         * m4/intmax_t.m4: Likewise.
17206
17207 2003-07-10  Jim Meyering  <jim@meyering.net>
17208
17209         * lib/vasnprintf.c: Remove trailing blanks.
17210         Make cpp indentation consistent.
17211
17212 2003-07-09  Paul Eggert  <eggert@twinsun.com>
17213
17214         * lib/alloca_.h, euidaccess.c, getpass.c, memrchr.c, obstack.h,
17215         posixver.c, strftime.c, strnlen.c, strverscmp.c:
17216         Switch from LGPL to GPL.
17217
17218 2003-07-09  Paul Eggert  <eggert@twinsun.com>
17219
17220         * config/srclist.txt: Sort sublists.  Add
17221         $LIBCSRC/sysdeps/generic/strtoul.c. In comments, add more libc files
17222         that differ from gnulib for one reason or another; we'd like this list
17223         to be smaller but for now let's document what we have.
17224
17225 2003-07-08  Paul Eggert  <eggert@twinsun.com>
17226
17227         * config/srclist-update: Port to POSIX 1003.1-2001 hosts by avoiding
17228         the use of GNU extensions.  Change "x=`eval echo $x`" to the shorter
17229         and sweeter "eval x=$x".
17230         * config/srclist.txt: Get lib/argp* from glibc.
17231
17232 2003-07-07  Paul Eggert  <eggert@twinsun.com>
17233
17234         * lib/mktime.c: Fix some boundary cases and remove need for floating
17235         point.
17236
17237         Issue a compile-time diagnostic if time_t is floating point, or if
17238         two's complement arithmetic is not in effect, or if arithmetic
17239         right shift does not propagate the sign.  These assumptions were
17240         all in the original code but they weren't checked.
17241
17242         (TIME_T_MIDPOINT, verify): New macros.
17243         (__isleap): Remove; it has integer overflow problems.
17244         (leapyear): New function, without those problems.
17245         (ydhms_tm_diff): Remove; splitting into two parts.
17246         (ydhms_diff): New function, containing the arithmetic part of
17247         the old ydhms_tm_diff function.  Issue a compile-time
17248         diagnostic if we are not using C99 integer division.
17249         Avoid casts when possible.
17250         (guess_time_tm): New function, containing the checking part of
17251         the old ydhms_tm_diff function.  Return the new value, rather than
17252         the difference between it and the old.  Accept a new argument T
17253         so that *T specifies the old value.  Check for overflow in the result.
17254
17255         (__mktime_internal): Use a time_t offset, not a long int offset.
17256         This undoes the 2003-06-04 change, which is no longer needed now
17257         that we have better overflow checking.
17258         (localtime_offset): Likewise.
17259
17260         (__mktime_internal): Avoid harmful overflow on hosts where time_t
17261         and long are 64-bit but int is only 32-bit.
17262         (ydhms_diff): Use long int to store year1 and yday1.
17263         Issue a compile-time diagnostic if long int is not wide enough.
17264
17265         (__mktime_internal): Use long int to store adjusted year and yday.
17266         Use plain C rather than preprocessor commands, if that doesn't
17267         affect efficiency.
17268         Check for overflow (and try to repair) after each probe
17269         rather than checking only at the very end.  This avoids some bugs
17270         (e.g., southern hemisphere, behind GMT, and GMT offset at minimum time
17271         does not equal GMT offset at maximum time).
17272         Use integer to check for overflow rather than floating point; this
17273         is more portable to non-IEEE hosts, and is a tad faster.
17274         When we detect that we are oscillating between two values,
17275         don't check whether tm_isdst has the requested value, since
17276         we already know the answer.  When tm_isdst has the wrong value,
17277         use a different heuristic to find the right one, based on the
17278         extreme values actually observed in practice in tz2003a,
17279         rather than the (overly optimistic) "previous 3 calendar quarters".
17280
17281         (not_equal_tm, print_tm, check_result): Use "const T" rather than
17282         "T const" to accommodate glibc style.
17283         (check_result): Use less-confusing report format.  "long" -> "long int.
17284         (main): Likewise.
17285         Don't loop if the iteration overflows time_t.
17286         Allow a negative step in the iteration.
17287
17288 2003-07-06  Karl Berry  <karl@gnu.org>
17289
17290         * config/depcomp: update from automake.
17291         * config/config.sub: update from prep.
17292
17293 2003-07-03  Karl Berry  <karl@gnu.org>
17294
17295         * config/config.guess: update from prep.
17296
17297 2003-07-01  Paul Eggert  <eggert@twinsun.com>
17298
17299         * m4/xreadlink.m4 (gl_XREADLINK): Don't check for sys/types.h, since
17300         xreadlink.c now includes it unconditionally.
17301
17302 2003-07-01  Paul Eggert  <eggert@twinsun.com>
17303
17304         * lib/xreadlink.c: Include <sys/types.h> unconditionally, instead of
17305         having it depend on HAVE_SYS_TYPES_H.
17306
17307 2003-07-01  Bruno Haible  <bruno@clisp.org>
17308
17309         * m4/ssize_t.m4 (gt_TYPE_SSIZE_T): Don't include <unistd.h>.
17310         <sys/types.h> should be sufficient.
17311         Reported by Paul Eggert.
17312
17313 2003-06-26  Karl Berry  <karl@gnu.org>
17314
17315         * config/depcomp: update from automake.
17316
17317 2003-06-26  Bruno Haible  <bruno@clisp.org>
17318
17319         * modules/human: Depend on module stdbool.
17320
17321 2003-06-25  Bruno Haible  <bruno@clisp.org>
17322
17323         * modules/readlink: New file.
17324         * modules/xreadlink: Depend on it.
17325         * MODULES.html.sh (func_all_modules): Add readlink.
17326
17327 2003-06-25  Bruno Haible  <bruno@clisp.org>
17328
17329         * m4/readlink.m4: New file.
17330
17331 2003-06-25  Bruno Haible  <bruno@clisp.org>
17332
17333         * lib/readlink.c: New file.
17334
17335 2003-06-22  Karl Berry  <karl@gnu.org>
17336
17337         * config/srclist.txt: update mkinstalldirs from automake.
17338         * config/mkinstalldirs: update.
17339
17340 2003-06-22  Bruno Haible  <bruno@clisp.org>
17341
17342         Portability to mingw32.
17343         * m4/ssize_t.m4: New file, from GNU gettext.
17344         * m4/safe-read.m4 (gl_PREREQ_SAFE_READ): Require gt_TYPE_SSIZE_T.
17345         * m4/xreadlink.m4 (gl_XREADLINK): Require gt_TYPE_SSIZE_T.
17346
17347 2003-06-22  Bruno Haible  <bruno@clisp.org>
17348
17349         * modules/safe-read: Add m4/ssize_t.m4.
17350         * modules/xreadlink: Add m4/ssize_t.m4.
17351
17352 2003-06-20  Bruno Haible  <bruno@clisp.org>
17353
17354         Assume C89, so PARAMS isn't needed.
17355         * lib/unicodeio.h (PARAMS): Remove.
17356         * lib/unicodeio.c: Don't use PARAMS.
17357
17358 2003-06-18  Karl Berry  <karl@gnu.org>
17359
17360         * config/config.{guess,sub}: update from prep.
17361
17362 2003-06-18  Jim Meyering  <jim@meyering.net>
17363
17364         Merge changes from coreutils.
17365         * lib/readutmp.c: Include <string.h> and <stdlib.h> unconditionally.
17366         Remove explicit declarations of xmalloc and realloc.
17367         Include xalloc.h.
17368         (read_utmp): Remove anachronistic cast of xmalloc.
17369
17370 2003-06-17  Paul Eggert  <eggert@twinsun.com>
17371
17372         Assume C89, so PARAMS isn't needed.
17373         * lib/backupfile.h (PARAMS): Remove.  All uses removed.
17374         * lib/closeout.h, lib/dirname.h, lib/filemode.h, lib/fsusage.h,
17375         lib/getdate.h, lib/getline.h, lib/group-member.h, lib/hard-locale.h,
17376         lib/hash.h, lib/linebuffer.h, lib/long-options.h, lib/makepath.h,
17377         lib/memcasecmp.h, lib/memcoll.h, lib/modechange.h, lib/mountlist.h,
17378         lib/path-concat.h, lib/physmem.h, lib/posixtm.h, lib/quote.h,
17379         lib/readutmp.h, lib/same.h, lib/save-cwd.h, lib/savedir.h,
17380         lib/stdio-safer.h, lib/strtoimax.c, lib/strverscmp.h,
17381         lib/unistd-safer.h, lib/version-etc.h, lib/xalloc.h, lib/xreadlink.h,
17382         lib/xstrtod.h, lib/xstrtol.h: Likewise.
17383         * lib/filemode.h, lib/hard-locale.h, lib/memcoll.h, lib/modechange.h,
17384         lib/physmem.h, lib/same.h, lib/strverscmp.h: Do not include config.h;
17385         no longer needed. Anyway, config.h should always be included before any
17386         other file.
17387
17388 2003-06-11  Simon Josefsson  <jas@extundo.com>
17389
17390         * modules/sysexits: New file.
17391         * MODULES.html.sh (func_all_modules): Add sysexits.
17392
17393 2003-06-11  Simon Josefsson  <jas@extundo.com>
17394
17395         * lib/sysexit_.h: New file.
17396
17397 2003-06-11  Derek Price  <derek@ximbiot.com>
17398
17399         * lib/stat.c [LSTAT]: Compile/use slash_aware_lstat only if it is
17400         necessary.
17401
17402 2003-06-11  Bruno Haible  <bruno@clisp.org>
17403
17404         * m4/sysexits.m4: New file.
17405
17406 2003-06-10  Simon Josefsson <jas@extundo.com>
17407
17408         * lib/argp.h: New file, from glibc.
17409         * lib/argp-ba.c: New file, from glibc.
17410         * lib/argp-eexst.c: New file, from glibc.
17411         * lib/argp-fmtstream.c: New file, from glibc.
17412         * lib/argp-fmtstream.h: New file, from glibc.
17413         * lib/argp-fs-xinl.c: New file, from glibc.
17414         * lib/argp-help.c: New file, from glibc.
17415         * lib/argp-namefrob.h: New file, from glibc.
17416         * lib/argp-parse.c: New file, from glibc.
17417         * lib/argp-pv.c: New file, from glibc.
17418         * lib/argp-pvh.c: New file, from glibc.
17419         * lib/argp-xinl.c: New file, from glibc.
17420
17421 2003-06-10  Simon Josefsson  <jas@extundo.com>
17422
17423         * modules/strchrnul: New file.
17424
17425 2003-06-10  Simon Josefsson  <jas@extundo.com>
17426
17427         * modules/argp: New file.
17428
17429 2003-06-10  Simon Josefsson  <jas@extundo.com>
17430
17431         * m4/strchrnul.m4: New file.
17432
17433 2003-06-10  Simon Josefsson  <jas@extundo.com>
17434
17435         * lib/strchrnul.h: New file.
17436         * lib/strchrnul.c: New file.
17437
17438 2003-06-10  Bruno Haible  <bruno@clisp.org>
17439
17440         * MODULES.html.sh (func_all_modules): Add strchrnul and argp.
17441
17442 2003-06-07  Karl Berry  <karl@gnu.org>
17443
17444         * config/config.{guess,sub}: update from prep.
17445
17446 2003-06-07  Jim Meyering  <jim@meyering.net>
17447
17448         * modules/strtod: Use $(...) notation, not @...@ for
17449         AC_REPLACE'd variables.
17450         * modules/localcharset: Likewise.
17451
17452 2003-06-07  Jim Meyering  <jim@meyering.net>
17453
17454         * lib/readtokens.h: Put `Free Software Foundation, Inc.'
17455         in place of my name in the copyright comment.
17456         Remove definition and uses of __P.
17457
17458         From coreutils.
17459         * lib/stat.c: Don't declare xmalloc explicitly.
17460         Instead, include "xalloc.h".
17461         * lib/readtokens.c (readtokens): Remove anachronistic casts of xmalloc,
17462         xrealloc, and xcalloc return values.
17463         * lib/xgetcwd.c (xgetcwd): Include "xgetcwd.h".
17464         Improve comment.
17465         * lib/xgetcwd.h: Remove definition/uses of PARAMS.
17466
17467 2003-06-07  Bruno Haible  <bruno@clisp.org>
17468
17469         * modules/poll (Makefile.am): Use explicit creation rule for poll.h, to
17470         avoid AC_CONFIG_LINKS.
17471         * modules/fnmatch (Makefile.am): Use explicit creation rule for
17472         fnmatch.h, to avoid AC_CONFIG_LINKS.
17473         * modules/alloca (Makefile.am): Make creation of alloca.h Ctrl-C safe.
17474
17475 2003-06-07  Bruno Haible  <bruno@clisp.org>
17476
17477         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH, gl_FUNC_FNMATCH_POSIX,
17478         gl_FUNC_FNMATCH_GNU): Set FNMATCH_H instead of invoking
17479         AC_CONFIG_LINKS. Needed to allow for a different name of the lib
17480         directory.
17481         * m4/poll.m4 (gl_FUNC_POLL): Set POLL_H instead of invoking
17482         AC_CONFIG_LINKS. Needed to allow for a different name of the lib
17483         directory.
17484
17485 2003-06-06  Jim Meyering  <jim@meyering.net>
17486
17487         Merge from coreutils.
17488         * lib/same.c: (same_name): Declare *_basename locals to be `const'.
17489         Consolidate declarations and initializations of *_base* locals.
17490
17491         Merge from coreutils.
17492         This avoids a core dump on systems without GNU putenv,
17493         when running `env -u SOME_ALREADY_UNSET_VARIABLE'.
17494         * lib/putenv.c (__set_errno, LOCK, UNLOCK): Define.
17495         (unsetenv): New static function, from GNU libc.
17496         (rpl_putenv): Use it.
17497
17498         * lib/modechange.c: Remove trailing blanks.
17499
17500         Merge from coreutils.
17501         * lib/fsusage.c: Remove declaration of statfs.
17502         It conflicted with one from OSF/1 5.1 in <sys/mount.h>.
17503
17504         * lib/posixtm.c: Include <stdbool.h> unconditionally.
17505
17506 2003-06-06  Jim Meyering  <jim@meyering.net>
17507
17508         * lib/stdbool_.h: Renamed from stdbool.h.in.
17509
17510 2003-06-06  Jim Meyering  <jim@meyering.net>
17511             Bruno Haible  <bruno@clisp.org>
17512
17513         * modules/stdbool: Reflect renaming: stdbool.h.in -> stdbool_.h.
17514         Adjust Makefile.am snippet not to redirect directly to target.
17515         Use $(STDBOOL_H) notation, not @STDBOOL_H@ for AC_REPLACE'd variables.
17516
17517 2003-06-05  Paul Eggert  <eggert@twinsun.com>
17518
17519         * lib/mktime.c (__mktime_internal): When resolving a tm_isdst
17520         mismatch, look in future quarters as well as past.  This fixes a
17521         bug when processing fall-backwards gaps immediately after a long
17522         period of daylight-saving time.
17523
17524         * lib/mktime.c: Assume freestanding C89 or better.
17525         (HAVE_LIMITS_H): Remove.  Assume it's 1.
17526         (__P): Remove; not used.
17527         (CHAR_BIT, INT_MIN, INT_MAX): Remove; <limits.h> defines them.
17528         (mktime, not_equal_tm, print_tm, check_result,
17529         main): Use prototypes.  Use const * where appropriate.
17530         (main): Fix typo in testing code that uncovered by above changes.
17531         (Local Variables): Remove -DHAVE_LIMITS_H from compile-command.
17532
17533 2003-06-04  Paul Eggert  <eggert@twinsun.com>
17534
17535         * m4/human.m4 (gl_HUMAN): Require AM_STDBOOL_H.  Check for
17536         locale.h, localeconv.  This merges changes from coreutils.
17537
17538         * m4/mktime.m4 (AC_FUNC_MKTIME): New macro, taken from Autoconf CVS.
17539         It can be removed after the next Autoconf is released.
17540         * m4/exclude.m4 (gl_EXCLUDE): Don't check for sys/types.h; no loner
17541         needed.
17542
17543 2003-06-04  Paul Eggert  <eggert@twinsun.com>
17544
17545         * lib/mktime.c: Fix Debian bug 177940
17546         <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=177940>.
17547         (localtime_offset): Now long int, not time_t, because we want it
17548         to be guaranteed to be signed.  All uses changed.
17549         (__mktime_internal): If overflow would occur when adding offset,
17550         don't add it.
17551
17552         Merge 'human' changes from coreutils.  Rewrite to support
17553         locale-specific notations like thousands separators.
17554         * lib/human.c: Simplify authorship notice.
17555         Include human.h immediately after config.h.
17556         <sys/types.h>, <stdio.h>: Do not include; no longer needed.
17557         <limits.h>: Do not include, since human.h does.
17558         (SIZE_MAX, UINTMAX_MAX): New macros.
17559         <strings.h>: Include if HAVE_STRINGS_H, not if !HAVE_STRING_H.
17560         <locale.h>: Include if HAVE_LOCALE_H and HAVE_LOCALECONV.
17561         (HUMAN_READABLE_SUFFIX_LENGTH_MAX): New macro.
17562         (power_letter): Renamed from suffixes.
17563         (generate_suffix_backwards): Remove.
17564         (adjust_value): Now takes int style (because of human.h changes)
17565         and long double value (for greater precision on some platforms).
17566         (group_number): New function.
17567         (human_readable): Use it.  Use integer options, not enum.
17568         Put the options before the sizes in the arg list.
17569         Support all the new options.
17570         The old human_readable function has been removed;
17571         use inttostr.h instead.
17572         (human_readable, default_block_size, humblock):
17573         Use uintmax_t, not int, for block sizes.
17574         (human_readable_inexact, block_size_types): Remove.
17575         (block_size_opts): New constant.
17576         (human_options): Renamed from human_block_size, with new signature
17577         that allows block sizes up to UINTMAX_MAX.  All callers changed.
17578         * lib/human.h: Add copyright and authorship notice.
17579         Include <limits.h> and <stdbool.h> unconditionally.
17580         (PARAMS): Remove.  All uses removed.
17581         (LONGEST_HUMAN_READABLE): Add support for thousands separator.
17582         (enum human_inexact_style): Remove tag; now a nameless enum.
17583         (human_floor, human_ceiling, human_round_to_even): Now have
17584         values 2, 0, 1 rather than -1, 1, 0.
17585         (human_group_digits, human_suppress_point_zero, human_autoscale,
17586         human_base_1024, human_SI, human_B): New constants.
17587         (human_readable_inexact, human_block_size): Remove.
17588         (human_readable): Size args are now uintmax_t, not int.
17589         (human_options): New decl.
17590
17591         * lib/exclude.c: (new_exclude, add_exclude): Remove casts that are
17592         unnecessary now that we assume C89 or better.  This change
17593         imported from coreutils.
17594
17595         * lib/mktime.c (__mktime_internal): Do not reject negative timestamps
17596         arbitrarily.  This is the same patch as 2003-05-28, but it got lost
17597         in the 2003-05-30 sync from glibc.
17598
17599         .h files should stand alone, but we shouldn't include <sys/types.h>
17600         if we can get away with just <stddef.h>.
17601
17602         * lib/__fpending.h, addext.c, backupfile.c, exclude.c, getline.c,
17603         malloc.c, putenv.c, realloc.c, strcasecmp.c: Include <stddef.h>
17604         rather than <sys/types.h>, as we merely need size_t.
17605         * lib/dirname.h, memcoll.h, xalloc.h, xmemcoll.h: Include <stddef.h>,
17606         to get size_t.
17607         * lib/hash.h, linebuffer.h, readtokens.h, stdio-safer.h, version-etc.h:
17608         Include <stdio.h>, to get FILE.
17609         * lib/memcasecmp.c: Don't include <sys/types.h>, as we can assume
17610         memcasecmp.h has included <stddef.h> and all we need is size_t.
17611         * lib/memcoll.c: Include "memcoll.h", which gets us size_t and checks
17612         our interface, instead of including <sys/types.h>
17613
17614 2003-06-04  Paul Eggert  <eggert@twinsun.com>
17615
17616         * config/srclist.txt ($LIBCSRC/time/mktime.c lib gpl): Comment out for
17617         now, as glibc mktime is buggy on non-glibc systems.
17618
17619 2003-06-03  Karl Berry  <karl@gnu.org>
17620
17621         * config/config.sub: update from prep.
17622
17623 2003-06-02  Paul Eggert  <eggert@twinsun.com>
17624
17625         [from coreutils]
17626         Fix some minor time-related bugs with POSIX time arguments.
17627         Some valid time stamps were being rejected (notably -1, and
17628         time stamps before 1900 on 64-bit hosts).  And some invalid
17629         time stamps were being accepted, e.g. September 31.
17630
17631         * lib/posixtm.h (posixtime): Return bool instead of time_t, so
17632         that we can return (time_t) -1 successfully.
17633         * lib/posixtm.c: Likewise.
17634         [HAVE_STDBOOL_H]: Include <stdbool.h>.
17635         (bool, false, true) [!HAVE_STDBOOL_H]: New type.
17636         (t): Remove static var.
17637         (year, posix_time_parse): Now takes struct tm * arg to modify, instead
17638         of static var.  All uses changed.
17639         (year): Do not reject years before 1900; they can occur with
17640         64-bit time_t.
17641         (posix_time_parse): Do not check for out-of-range components;
17642         that is now the caller's responsibility, since our checks were
17643         only approximations.
17644         (posixtime): Use mktime to check for out-of-range components,
17645         since it knows them exactly.
17646         If mktime returns (time_t) -1, check whether an error actually occurred
17647         by invoking localtime on -1.
17648         (main) [TEST_POSIXTIME]: Check for input data errors, and report
17649         posixtime failures better.
17650         Improve the test data (in comments only).
17651
17652 2003-06-02  Karl Berry  <karl@gnu.org>
17653
17654         * config/mkinstalldirs (version): new variable.
17655         (--version): new option.
17656         (usage): improve message.
17657
17658 2003-05-30  Karl Berry  <karl@gnu.org>
17659
17660         * lib/mktime.c: update from libc.
17661
17662 2003-05-30  Bruno Haible  <bruno@clisp.org>
17663
17664         * modules/gettext: Add files m4/nls.m4 and m4/po.m4.
17665         * config/config.rpath: Upgrade to gettext-0.12.1.
17666
17667 2003-05-30  Bruno Haible  <bruno@clisp.org>
17668
17669         * m4/gettext.m4: Upgrade to gettext-0.12.1.
17670         * m4/nls.m4: New file, from gettext-0.12.1.
17671         * m4/po.m4: New file, from gettext-0.12.1.
17672         * m4/progtest.m4: Upgrade to gettext-0.12.1.
17673
17674 2003-05-30  Bruno Haible  <bruno@clisp.org>
17675
17676         * lib/config.charset: Upgrade to gettext-0.12.1 and libiconv-1.9.1.
17677         * lib/localcharset.h: Likewise.
17678         * lib/localcharset.c: Likewise.
17679
17680 2003-05-29  Karl Berry  <karl@gnu.org>
17681
17682         * config/config.rpath: update from gettext.
17683
17684 2003-05-28  Paul Eggert  <eggert@twinsun.com>
17685
17686         Assume the headers required for C89 freestanding compilers.
17687         * m4/backupfile.m4 (gl_BACKUPFILE): Don't check for limits.h.
17688         * m4/fsusage.m4 (gl_PREREQ_FSUSAGE_EXTRA): Likewise.
17689         * m4/human.m4 (gl_HUMAN): Likewise.
17690         * m4/pathmax.m4 (gl_PATHMAX): Likewise.
17691         * m4/rpmatch.m4 (gl_FUNC_RPMATCH): Likewise.
17692         * m4/userspec.m4 (gl_USERSPEC): Likewise.
17693         * m4/xreadlink.m4 (gl_XREADLINK): Likewise.
17694         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
17695         * m4/quote.m4 (gl_QUOTE): Don't check for stddef.h.
17696
17697 2003-05-28  Paul Eggert  <eggert@twinsun.com>
17698
17699         Assume the headers required for C89 freestanding compilers.
17700         * lib/addext.c, lib/backupfile.c, lib/fsusage.c, lib/human.c,
17701         lib/pathmax.h, lib/rpmatch.c, lib/userspec.c, lib/xreadlink.c,
17702         lib/xstrtol.c: Include <limits.h> without checking for HAVE_LIMITS_H.
17703         * lib/backupfile.c, lib/fsusage.c, lib/hash.c, lib/human.c,
17704         lib/safe-read.c, lib/userspec.c, lib/xstrtol.c (CHAR_BIT): Don't
17705         define, since <limits.h> is guaranteed to do that.
17706         * lib/fatal.c: Include <stdarg.h> without checking for __STDC__.
17707         * lib/exclude.c: Include <stdbool.h> unconditionally.
17708         * lib/tempname.c: Include <stddef.h> unconditionally.
17709         * lib/hash.c: Include <limits.h>, since we no longer define CHAR_BIT.
17710         * lib/modechange.c, rpmatch.c (NULL): Don't define, since
17711         <stddef.h> does that.
17712         * lib/quote.c: Dont include <stddef.h> or <sys/types.h>; not needed.
17713         * lib/safe-read.c (INT_MAX): Don't define, since <limits.h> does that.
17714         * lib/safe-read.c (TYPE_MINIMUM, TYPE_MAXIMUM): Remove; no longer
17715         needed.
17716         * lib/xstrtol.c: Likewise.
17717         * lib/safe-read.c: Remove TYPE_SIGNED; no longer needed.
17718         * lib/savedir.c: Include <stddef.h> instead of defining NULL.
17719
17720         * lib/addext.c (addext): Use assignment rather than cast, to avoid
17721         warnings on some platforms.
17722
17723         * lib/mktime.c (__mktime_internal): Do not reject negative timestamps
17724         arbitrarily.
17725
17726 2003-05-26  Jim Meyering  <jim@meyering.net>
17727
17728         Merge in a change from coreutils:
17729         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Test the cache variable, not one
17730         that is guaranteed to be `no'.  Use `no_such_member' to indicate
17731         that condition, rather than `-1' which is slightly misleading.
17732         Change the name of the cache variable to have the gl_ prefix.
17733         Prompted by a patch from Richard Dawe for DJGPP.
17734
17735 2003-05-24  Karl Berry  <karl@gnu.org>
17736
17737         * config/config.guess: update from prep.
17738
17739 2003-05-22  Karl Berry  <karl@gnu.org>
17740
17741         * gnulib-tool (func_usage): =LIBRARY not =libRARY in help msg.
17742
17743 2003-05-20  Karl Berry  <karl@gnu.org>
17744
17745         * config/config.guess: update from prep.
17746
17747 2003-05-18  Karl Berry  <karl@gnu.org>
17748
17749         * config/srclistvars.sh (TEXMF): use TEXMFROOT instead, since TEXMF
17750         might actually be set by the user.
17751
17752         * config/depcomp, install-sh, mdate-sh: update from automake.
17753
17754 2003-05-17  Bruno Haible  <bruno@clisp.org>
17755
17756         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Fix a quoting bug leading to an
17757         invalid expansion for AC_EGREP_CPP.
17758         * m4/strtoimax.m4 (gl_FUNC_STRTOIMAX): Likewise.
17759         * m4/strtoumax.m4 (gl_FUNC_STRTOUMAX): Likewise.
17760         Suggested by Akim Demaille <akim@epita.fr> in
17761         http://mail.gnu.org/archive/html/bug-autoconf/2003-05/threads.html
17762
17763 2003-05-12  Jim Meyering  <jim@meyering.net>
17764
17765         * lib/strftime.c (my_strftime): Let the `-' (no-pad) flag affect
17766         the space-padded-by-default conversion specifiers, %e, %k, %l.
17767
17768 2003-05-12  Bruno Haible  <bruno@clisp.org>
17769
17770         * lib/linebreak.c (iconv_string_length): Don't return -1 just because
17771         the string is longer than 4 KB.
17772
17773 2003-05-11  Karl Berry  <karl@gnu.org>
17774
17775         * config/config.{guess,sub}: update from prep.
17776
17777 2003-05-09  Bruno Haible  <bruno@clisp.org>
17778
17779         * modules/error: Add m4/strerror_r.m4 to file list.
17780
17781 2003-05-03  Bruno Haible  <bruno@clisp.org>
17782
17783         Upgrade to Unicode-4.0.
17784         * lib/linebreak.c (nonspacing_table_data): Change width of U+00AD,
17785         U+0350..U+0357, U+035D..U+035F, U+0600..U+0603, U+0610..U+0615,
17786         U+0656..U+0658, U+0A01, U+0AE2..U+0AE3, U+0CBC, U+17B4..U+17B5,
17787         U+17DD, U+1920..U+1922, U+1927..U+192B, U+1932, U+1939..U+193B
17788         from 1 to 0. Change width of U+0CBF, U+0CC6, U+180E from 0 to 1.
17789         (uc_width): Change width of U+4DC0..U+4DFF from 2 to 1. Change width
17790         of U+2A6D7..U+2F7FF, U+2FA1E..U+2FFFD, U+30000..U+3FFFD from 1 to 2.
17791         Change width of U+E0100..U+E01EF from 1 to 0.
17792
17793 2003-04-25  Jim Meyering  <jim@meyering.net>
17794
17795         * lib/copy-file.c (copy_file_preserving): Declare buf_size to be
17796         of type size_t, not int.
17797
17798 2003-04-25  Bruno Haible  <bruno@clisp.org>
17799
17800         * lib/copy-file.c: Include <stddef.h>, for size_t.
17801
17802 2003-04-21  Paul Eggert  <eggert@twinsun.com>
17803
17804         * m4/error.m4 (gl_ERROR): Do not put under dynamic conditions some
17805         code which expansion is under static control.  Patch imported from
17806         Akim Demaille's patch to Bison; see
17807         <http://mail.gnu.org/archive/html/bison-patches/2003-03/msg00057.html>.
17808
17809 2003-04-14  Bruno Haible  <bruno@clisp.org>
17810
17811         * m4/error.m4 (jm_PREREQ_ERROR): Use AC_FUNC_VPRINTF.
17812
17813 2003-04-11  Jim Meyering  <jim@meyering.net>
17814
17815         Merge changes from Coreutils.
17816
17817         2003-03-22  Jim Meyering  <jim@meyering.net>
17818
17819         * lib/strftime.c (widen): Cast alloca return value to proper type.
17820
17821         2003-01-19  Ulrich Drepper  <drepper@redhat.com>
17822
17823         From GNU libc.
17824         * lib/strftime.c (my_strftime): Handle very large width
17825         specifications for numeric values correctly.  Improve checks for
17826         overflow.
17827
17828         2003-01-19  Jim Meyering  <jim@meyering.net>
17829
17830         * lib/strftime.c (widen) [COMPILE_WIDE]: Merge nearly-identical
17831         definitions.
17832         (nl_get_alt_digit) [! defined my_strftime]: Define.
17833         (my_strftime) [_NL_CURRENT]: Merge nearly-identical uses of
17834         _nl_get_alt_digit and _nl_get_walt_digit.
17835
17836         * lib/strftime.c (my_strftime): Merge in locale-related changes from
17837         libc. These changes have no effect outside of _LIBC.
17838
17839 2003-04-10  Bruno Haible  <bruno@clisp.org>
17840
17841         * modules/findprog: New file.
17842         * MODULES.html.sh (func_all_modules): Add it.
17843
17844 2003-04-10  Bruno Haible  <bruno@clisp.org>
17845
17846         * m4/findprog.m4: New file.
17847         * m4/eaccess.m4: New file.
17848
17849 2003-04-10  Bruno Haible  <bruno@clisp.org>
17850
17851         * lib/findprog.h: New file, from GNU gettext.
17852         * lib/findprog.c: New file, from GNU gettext.
17853
17854 2003-04-05  Jim Meyering  <jim@meyering.net>
17855
17856         Merge changes from Coreutils.
17857
17858         * lib/exclude.h (PARAMS): Remove definition and uses.
17859         * lib/exclude.c: Remove uses of `PARAMS'.
17860
17861         * lib/dirname.c [TEST_DIRNAME]: Update build instructions for test.
17862         Add test-cases for DOS filenames. Declare program_name.
17863         (main): Set up program_name.  Patch by Rich Dawe.
17864
17865         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Detect any
17866         error from mntctl.
17867         Use mntctl's return value to drive the entry-processing loop, since
17868         we can't rely on the value of the vmt_length member in the last
17869         entry.  On some systems doing so could result in exhausting
17870         virtual memory.  Based in part on a patch from Mike Jetzer.
17871
17872 2003-04-04  Bruno Haible  <bruno@clisp.org>
17873
17874         * modules/linebreak: New file.
17875         * MODULES.html.sh (func_all_modules): Add it.
17876
17877 2003-04-04  Bruno Haible  <bruno@clisp.org>
17878
17879         * m4/linebreak.m4: New file.
17880
17881 2003-04-04  Bruno Haible  <bruno@clisp.org>
17882
17883         * lib/linebreak.h: New file, from GNU gettext.
17884         * lib/linebreak.c: New file, from GNU gettext with slight
17885         modifications.
17886         * lib/lbrkprop.h: New file, from GNU gettext.
17887
17888 2003-04-03  Bruno Haible  <bruno@clisp.org>
17889
17890         * modules/utf8-ucs4: New file.
17891         * modules/utf16-ucs4: New file.
17892         * modules/ucs4-utf8: New file.
17893         * modules/ucs4-utf16: New file.
17894         * MODULES.html.sh (func_all_modules): Add them.
17895
17896 2003-04-03  Bruno Haible  <bruno@clisp.org>
17897
17898         * m4/utf-ucs4.m4: New file.
17899         * m4/ucs4-utf.m4: New file.
17900
17901 2003-04-03  Bruno Haible  <bruno@clisp.org>
17902
17903         * lib/utf8-ucs4.h: New file, from GNU gettext.
17904         * lib/utf16-ucs4.h: New file, from GNU gettext.
17905         * lib/ucs4-utf8.h: New file, from GNU gettext.
17906         * lib/ucs4-utf16.h: New file, from GNU gettext.
17907
17908 2003-04-02  Bruno Haible  <bruno@clisp.org>
17909
17910         * modules/binary-io: New file.
17911         * MODULES.html.sh (func_all_modules): Add it.
17912
17913 2003-04-02  Bruno Haible  <bruno@clisp.org>
17914
17915         * lib/binary-io.h: New file, from GNU gettext.
17916
17917 2003-04-01  Bruno Haible  <bruno@clisp.org>
17918
17919         * modules/pathname: New file.
17920         * MODULES.html.sh (func_all_modules): Add it.
17921
17922 2003-04-01  Bruno Haible  <bruno@clisp.org>
17923
17924         * lib/pathname.h: New file, from GNU gettext.
17925         * lib/concatpath.c: New file, from GNU gettext.
17926
17927 2003-03-30  Bruno Haible  <bruno@clisp.org>
17928
17929         * m4/copy-file.m4 (gl_COPY_FILE): Add check for chown().
17930
17931 2003-03-30  Bruno Haible  <bruno@clisp.org>
17932
17933         * lib/copy-file.c (copy_file_preserving): Don't set owner if the
17934         function chown() doesn't exist.
17935
17936 2003-03-28  Bruno Haible  <bruno@clisp.org>
17937
17938         * modules/copy-file: New file.
17939         * MODULES.html.sh (func_all_modules): Add it.
17940
17941 2003-03-28  Bruno Haible  <bruno@clisp.org>
17942
17943         * m4/copy-file.m4: New file.
17944
17945 2003-03-28  Bruno Haible  <bruno@clisp.org>
17946
17947         * lib/copy-file.h: New file, from GNU gettext.
17948         * lib/copy-file.c: New file, from GNU gettext.
17949
17950 2003-03-18  Jim Meyering  <jim@meyering.net>
17951
17952         * lib/quote.c (quote_n): Fix typo in comment.
17953
17954 2003-03-18  Bruno Haible  <bruno@clisp.org>
17955
17956         * m4/onceonly.m4: Use m4_defn instead of defn, for better error
17957         checking.
17958         * m4/onceonly_2_57.m4: Likewise.
17959
17960 2003-03-17  Bruno Haible  <bruno@clisp.org>
17961
17962         * m4/onceonly.m4: Require autoconf 2.54 or newer.
17963         (m4_quote): Remove macro.
17964         * m4/onceonly_2_57.m4: Require autoconf 2.54 or newer.
17965
17966 2003-03-14  Jim Meyering  <jim@meyering.net>
17967
17968         Merge changes from Coreutils.
17969         * lib/obstack.h (obstack_object_size): Declare temporary, __o,
17970         to be const, in order to avoid warnings.
17971         (obstack_room): Likewise.
17972         (obstack_empty_p): Likewise.
17973
17974 2003-03-14  Bruno Haible  <bruno@clisp.org>
17975
17976         * m4/onceonly_2_57.m4 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE,
17977         AC_CHECK_DECLS_ONCE): Quote AC_FOREACH variable-expansions properly.
17978
17979 2003-03-13  Paul Eggert  <eggert@twinsun.com>
17980
17981         Merge changes from Bison.
17982         * lib/obstack.h: (__INT_TO_PTR) [__STDC__]: Cast result to
17983         (void *) to avoid diagnostic with native c89 on SGI IRIX 6.5
17984         when compiling Bison 1.875's `bitset bset = obstack_alloc
17985         (bobstack, bytes);'.  Problem reported by Nelson H. F. Beebe.
17986         * lib/hash.c: Include <stdbool.h> unconditionally.
17987
17988 2003-03-13  Paul Eggert  <eggert@twinsun.com>
17989
17990         * m4/onceonly.m4 (m4_quote): New macro.
17991         (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE, AC_CHECK_DECLS_ONCE):
17992         Quote AC_FOREACH variable-expansions properly.
17993
17994 2003-03-13  Paul Eggert  <eggert@twinsun.com>
17995
17996         * doc/COPYING.DOC, fdl.texi: Sync with latest FSF version.
17997
17998 2003-03-09  Paul Eggert  <eggert@twinsun.com>
17999
18000         * lib/argmatch.c (EXIT_FAILURE): Define if the system doesn't.
18001         Reported by Bruce Becker; see:
18002         http://mail.gnu.org/archive/html/bug-bison/2003-03/msg00017.html
18003
18004 2003-03-03  Paul Eggert  <eggert@twinsun.com>
18005             Bruno Haible  <bruno@clisp.org>
18006
18007         * lib/mbswidth.h: Include <wchar.h>. Needed for UnixWare 7.1.1.
18008         Reported by John Hughes, see
18009         http://mail.gnu.org/archive/html/bug-bison/2003-02/msg00030.html
18010
18011 2003-02-20  Bruno Haible  <bruno@clisp.org>
18012
18013         * MODULES.html.sh (func_all_modules): Add poll.
18014
18015 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
18016
18017         * modules/poll: New file.
18018
18019 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
18020
18021         * lib/poll_.h: New file.
18022         * lib/poll.c: New file.
18023
18024 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
18025
18026         * m4/poll.m4: New file.
18027
18028 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
18029
18030         * modules/mathl: New file.
18031
18032 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
18033
18034         * lib/mathl.h: New file.
18035         * lib/acosl.c: New file.
18036         * lib/asinl.c: New file.
18037         * lib/atanl.c: New file.
18038         * lib/ceill.c: New file.
18039         * lib/cosl.c: New file.
18040         * lib/expl.c: New file.
18041         * lib/floorl.c: New file.
18042         * lib/frexpl.c: New file.
18043         * lib/ldexpl.c: New file.
18044         * lib/logl.c: New file.
18045         * lib/sincosl.c: New file.
18046         * lib/sinl.c: New file.
18047         * lib/sqrtl.c: New file.
18048         * lib/tanl.c: New file.
18049         * lib/trigl.c: New file.
18050         * lib/trigl.h: New file.
18051
18052 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
18053
18054         * m4/mathl.m4: New file.
18055
18056 2003-02-18  Bruno Haible  <bruno@clisp.org>
18057
18058         * MODULES.html.sh (func_all_modules): Add mathl.
18059
18060 2003-02-17  Bruno Haible  <bruno@clisp.org>
18061
18062         * modules/mkdtemp: New module.
18063         * MODULES.html.sh (func_all_modules): Add it.
18064
18065 2003-02-17  Bruno Haible  <bruno@clisp.org>
18066
18067         * m4/mkdtemp.m4: New file, from GNU gettext with modifications.
18068
18069 2003-02-17  Bruno Haible  <bruno@clisp.org>
18070
18071         * lib/mkdtemp.h: New file, from GNU gettext.
18072         * lib/mkdtemp.c: New file, from GNU gettext.
18073
18074 2003-02-02  Jim Meyering  <jim@meyering.net>
18075
18076         * m4/regex.m4 (jm_INCLUDED_REGEX): Detect broken re_search in
18077         e.g. glibc-2.2.93.
18078
18079 2003-01-31  Bruno Haible  <bruno@clisp.org>
18080
18081         * m4/rename.m4 (vb_FUNC_RENAME): Add a redirection from 'rename' to
18082         'rpl_rename'.
18083         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Add a redirection from 'strnlen' to
18084         'rpl_strnlen'.
18085         * m4/strtod.m4 (gl_FUNC_STRTOD): Add a redirection from 'strtod' to
18086         'rpl_strtod'.
18087         * m4/utime.m4 (jm_FUNC_UTIME): Add a redirection from 'utime' to
18088         'rpl_utime'.
18089
18090 2003-01-31  Bruno Haible  <bruno@clisp.org>
18091
18092         * lib/rename.c: #undef rename before defining rpl_rename.
18093         * lib/strnlen.c: #undef strnlen, define rpl_strnlen instead of strnlen.
18094
18095 2003-01-30  Bruno Haible  <bruno@clisp.org>
18096
18097         * modules/vasnprintf, modules/vasprintf: New modules.
18098         * MODULES.html.sh (func_all_modules): Add them.
18099
18100 2003-01-30  Bruno Haible  <bruno@clisp.org>
18101
18102         * m4/signed.m4: New file, from GNU gettext.
18103         * m4/longdouble.m4: New file, from GNU gettext.
18104         * m4/wchar_t.m4: New file, from GNU gettext.
18105         * m4/wint_t.m4: New file, from GNU gettext.
18106         * m4/vasnprintf.m4: New file.
18107         * m4/vasprintf.m4: New file.
18108
18109 2003-01-30  Bruno Haible  <bruno@clisp.org>
18110
18111         * lib/printf-args.h: New file, from GNU gettext.
18112         * lib/printf-args.c: New file, from GNU gettext.
18113         * lib/printf-parse.h: New file, from GNU gettext.
18114         * lib/printf-parse.c: New file, from GNU gettext.
18115         * lib/vasnprintf.h: New file, from GNU gettext.
18116         * lib/vasnprintf.c: New file, from GNU gettext.
18117         * lib/asnprintf.c: New file, from GNU gettext.
18118         * lib/vasprintf.h: New file, from GNU gettext with modifications.
18119         * lib/vasprintf.c: New file, from GNU gettext.
18120         * lib/asprintf.c: New file, from GNU gettext.
18121
18122 2003-01-29  Bruno Haible  <bruno@clisp.org>
18123
18124         * modules/stpncpy: New module.
18125         * MODULES.html.sh (func_all_modules): Add it.
18126
18127 2003-01-29  Bruno Haible  <bruno@clisp.org>
18128
18129         * m4/stpncpy.m4: New file.
18130
18131 2003-01-29  Bruno Haible  <bruno@clisp.org>
18132
18133         * lib/stpncpy.h: New file, from GNU gettext with modifications.
18134         * lib/stpncpy.c: New file, from GNU gettext with modifications.
18135
18136 2003-01-28  Bruno Haible  <bruno@clisp.org>
18137
18138         * modules/c-ctype: New module.
18139         * MODULES.html.sh (func_all_modules): Add it.
18140
18141 2003-01-28  Bruno Haible  <bruno@clisp.org>
18142
18143         * lib/c-ctype.h: New file, from GNU gettext, with changes suggested by
18144         Paul Eggert.
18145         * lib/c-ctype.c: New file, from GNU gettext, with changes suggested by
18146         Paul Eggert.
18147
18148 2003-01-27  Bruno Haible  <bruno@clisp.org>
18149
18150         * modules/xsetenv: New module.
18151         * MODULES.html.sh (func_all_modules): Add it.
18152
18153 2003-01-27  Bruno Haible  <bruno@clisp.org>
18154
18155         * lib/xsetenv.h: New file, from GNU gettext.
18156         * lib/xsetenv.c: New file, from GNU gettext.
18157
18158 2003-01-23  Jim Meyering  <jim@meyering.net>
18159
18160         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Correct typo: s/-1/no/ that kept this
18161         from working on systems without dirfd (at least Irix and OSF1/Tru64).
18162
18163 2003-01-23  Bruno Haible  <bruno@clisp.org>
18164
18165         * modules/minmax: New module.
18166         * MODULES.html.sh (func_all_modules): Add it.
18167
18168 2003-01-23  Bruno Haible  <bruno@clisp.org>
18169
18170         * lib/minmax.h: New file, from GNU gettext, with comments from Paul
18171         Eggert.
18172
18173 2003-01-22  Bruno Haible  <bruno@clisp.org>
18174
18175         * modules/exit: New module.
18176         * MODULES.html.sh (func_all_modules): Add it.
18177
18178 2003-01-22  Bruno Haible  <bruno@clisp.org>
18179
18180         * lib/exit.h: New file, from GNU gettext.
18181
18182 2003-01-19  Bruno Haible  <bruno@clisp.org>
18183
18184         * gnulib-tool: Recognize option --extract-maintainer.
18185         (func_get_maintainer): New function.
18186         * modules/*: Add Maintainer entry.
18187
18188 2003-01-16  Jim Meyering  <jim@meyering.net>
18189
18190         * m4/regex.m4: The `regex' struct is both input and output.
18191         Initialize it before each use.  Patch by Tim Waugh.
18192
18193 2003-01-16  Bruno Haible  <bruno@clisp.org>
18194
18195         * MODULES.html.sh: Add a table of contents. Add the module name as
18196         leftmost column. Add hyperlinks.
18197
18198 2003-01-15  Bruno Haible  <bruno@clisp.org>
18199
18200         * m4/md5.m4 (gl_MD5): Require AC_C_INLINE.
18201
18202 2003-01-15  Bruno Haible  <bruno@clisp.org>
18203
18204         * m4/longlong.m4 (jm_AC_TYPE_LONG_LONG): Also test the LL suffix.
18205         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Also test the ULL
18206         suffix.
18207
18208 2003-01-15  Bruno Haible  <bruno@clisp.org>
18209
18210         * m4/alloca.m4 (gl_FUNC_ALLOCA): Invoke AC_EGREP_CPP prerequisites.
18211
18212 2003-01-15  Bruno Haible  <bruno@clisp.org>
18213
18214         * lib/stpcpy.h (stpcpy): Use ANSI C function declarations.
18215         * lib/strcase.h (strcasecmp, strncasecmp): Likewise.
18216
18217 2003-01-14  Jim Meyering  <jim@meyering.net>
18218
18219         * lib/same.c (same_name): Tweak a comment.
18220
18221 2003-01-14  Bruno Haible  <bruno@clisp.org>
18222
18223         * lib/same.c (same_name): Reorder tests so as to avoid calling stat()
18224         when a string comparison is sufficient.
18225
18226 2003-01-14  Bruno Haible  <bruno@clisp.org>
18227
18228         * lib/readtokens.c (readtoken): Cast character to 'unsigned char', not
18229         'unsigned int'.
18230
18231 2003-01-14  Bruno Haible  <bruno@clisp.org>
18232
18233         * lib/hash-pjw.c: Add comment about low quality of this function.
18234
18235 2003-01-13  Bruno Haible  <bruno@clisp.org>
18236
18237         * modules/stpcpy: Distribute lib/stpcpy.h.
18238         * modules/setenv: Depend on alloca. Distribute lib/setenv.h.
18239
18240 2003-01-13  Bruno Haible  <bruno@clisp.org>
18241
18242         * modules/*: Add a description.
18243         * modules/strpbrk: Fix Makefile.am snippet.
18244         * modules/strtoimax: Fix dependencies.
18245         * modules/strtoumax: Likewise.
18246
18247 2003-01-13  Bruno Haible  <bruno@clisp.org>
18248
18249         * gnulib-tool (func_create_testdir): Substitute lib_OBJECTS.
18250         * modules/alloca (Makefile.am): All object files depend on alloca.h.
18251         * modules/stdbool (Makefile.am): All object files depend on stdbool.h.
18252
18253 2003-01-13  Bruno Haible  <bruno@clisp.org>
18254
18255         * gnulib-tool (func_create_testdir): Store config/* files in the main
18256         directory.
18257         * config.rpath: Move to ...
18258         * config/config.rpath: ... here.
18259         * modules/gettext: Contains config/config.rpath, not config.rpath.
18260         * modules/iconv: Likewise.
18261
18262 2003-01-12  Paul Eggert  <eggert@twinsun.com>
18263
18264         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
18265         to avoid collisions with libcurses and libreadline.
18266
18267         * m4/getstr.m4: Remove.
18268         * m4/getline.m4 (gl_PREREQ_GETLINE): Require AC_HEADER_STDC.
18269
18270 2003-01-12  Paul Eggert  <eggert@twinsun.com>
18271
18272         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
18273         to avoid collisions with libcurses and libreadline.
18274
18275         * lib/Makefile.am (libfetish_a_SOURCES): Remove getstr.c, getstr.h.
18276         * lib/getstr.h, getstr.c: Remove.
18277         * lib/getline.c: Include "getline.h", to check interface.
18278         Move body of old getstr.c here: this defines MIN_CHUNK and
18279         declares getdelim2, which is renamed from getstr.
18280         (getline, getdelim): Adjust to renaming of getstr -> getdelim2.
18281
18282         * lib/linebuffer.c (readlinebuffer): Renamed from readline.
18283         All uses changed.
18284         * lib/linebuffer.h: Likewise.
18285         (readline): Remove backward-compatibility macro.
18286
18287 2003-01-12  Paul Eggert  <eggert@twinsun.com>
18288
18289         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
18290         to avoid collisions with libcurses and libreadline.
18291         * getstr: Remove.
18292         * MODULES.html.sh: Remove getstr.
18293         * modules/getline: Depend on unlocked-io, not getstr.
18294
18295 2003-01-12  Jim Meyering  <jim@meyering.net>
18296
18297         * lib/makepath.c: Don't test HAVE_ERRNO_H.  It's not necessary.
18298
18299 2003-01-10  Bruno Haible  <bruno@clisp.org>
18300
18301         * modules/alloca: Change Makefile.am requirements. Simplify Include
18302         requirements. Add lib/alloca_.h to file list.
18303
18304 2003-01-10  Bruno Haible  <bruno@clisp.org>
18305
18306         * m4/alloca.m4 (gl_FUNC_ALLOCA): Also define ALLOCA_H.
18307
18308 2003-01-10  Bruno Haible  <bruno@clisp.org>
18309
18310         * lib/alloca_.h: New file.
18311         * lib/getdate.y: Unconditionally include alloca.h.
18312         * lib/makepath.c: Likewise.
18313         * lib/setenv.c: Likewise.
18314         * lib/userspec.c: Likewise.
18315
18316 2003-01-09  Karl Berry  <karl@gnu.org>
18317
18318         * MODULES.html.sh: include `dirname $0` in PATH, to find
18319         gnulib-tool.
18320
18321 2003-01-09  Bruno Haible  <bruno@clisp.org>
18322
18323         * modules/stdbool: Change configure.ac, Makefile.am requirements.
18324         Simplify Include requirements. Add lib/stdbool.h.in to file list.
18325
18326 2003-01-09  Bruno Haible  <bruno@clisp.org>
18327
18328         * m4/stdbool.m4 (AM_STDBOOL_H): New macro.
18329
18330 2003-01-09  Bruno Haible  <bruno@clisp.org>
18331
18332         * lib/stdbool.h.in: New file.
18333
18334 2003-01-09  Bruno Haible  <bruno@clisp.org>
18335
18336         * gnulib-tool (func_all_modules): Ignore files ending in ~.
18337         * MODULES.html.sh: Likewise.
18338
18339 2003-01-08  Jim Meyering  <jim@meyering.net>
18340
18341         * lib/full-write.c: Undefine and define-away `const' after inclusion
18342         of errno.h, not before.  Suggestion from Bruno Haible.
18343
18344 2003-01-08  Bruno Haible  <bruno@clisp.org>
18345
18346         * modules/full-read: Depend on full-write.
18347
18348 2003-01-08  Bruno Haible  <bruno@clisp.org>
18349
18350         * lib/safe-read.c: Include specification header first, to ensure its
18351         selfcontainedness.
18352         * lib/full-write.c: Likewise.
18353
18354 2003-01-07  Jim Meyering  <jim@meyering.net>
18355
18356         * lib/full-write.c: Rework so that it may serve to define full_read,
18357         too.
18358         * lib/full-read.c: Simply #define FULL_READ and include full-write.c.
18359
18360 2003-01-07  Bruno Haible  <bruno@clisp.org>
18361
18362         * lib/strtoimax.c: Include <stdint.h> as an alternative to
18363         <inttypes.h>.
18364         * lib/xstrtol.h: Likewise.
18365         * lib/xstrtoimax.c: Likewise.
18366         * lib/xstrtoumax.c: Likewise.
18367         * lib/human.h: Likewise.
18368
18369         * lib/tempname.c: Include <inttypes.h> too. Avoids a compilation error
18370         on systems that have <inttypes.h> but not <stdint.h>.
18371
18372 2003-01-07  Bruno Haible  <bruno@clisp.org>
18373
18374         * MODULES.html.sh: Add copyright notice.
18375         (missed_files): Omit CVS directory entries.
18376         (func_module): Make it work with sed-3.02.
18377         * MODULES.txt: Remove file.
18378
18379 2003-01-06  Jim Meyering  <jim@meyering.net>
18380
18381         * lib/version-etc.c: Update year in translatable copyright string.
18382
18383 2003-01-03  Karl Berry  <karl@gnu.org>
18384
18385         * config/config.{guess,sub}: update from prep.
18386
18387 2003-01-02  Karl Berry  <karl@gnu.org>
18388
18389         * doc/COPYING.DOC: belatedly updated to 1.2.
18390
18391 2003-01-01  Karl Berry  <karl@gnu.org>
18392
18393         * gnulib-tool (func_verify_module): report module name $module in
18394         error message, not $1.
18395         * gnulib-tool (create-testdir): don't complain if destdir couldn't
18396         be created, only if it doesn't exist.
18397         * gnulib-tool (last_checkin_date): don't expand the $Date here.
18398
18399 2002-12-31  Paul Eggert  <eggert@twinsun.com>
18400
18401         * m4/memcoll.m4 (gl_MEMCOLL): Require AC_FUNC_MEMCMP.
18402
18403 2002-12-31  Paul Eggert  <eggert@twinsun.com>
18404
18405         * lib/memcoll.c (memcoll): Fall back on a simple algorithm using
18406         memcmp if strcoll doesn't work.
18407
18408 2002-12-31  Bruno Haible  <bruno@clisp.org>
18409
18410         * lib/utime.c (utime_null): No need to call ftruncate if the file was
18411         nonempty.
18412
18413 2002-12-31  Bruno Haible  <bruno@clisp.org>
18414
18415         * lib/memcoll.c (STRCOLL): New macro.
18416         (memcoll): Use it.
18417
18418 2002-12-31  Bruno Haible  <bruno@clisp.org>
18419
18420         * lib/localcharset.h: New file.
18421         * lib/localcharset.c: Include it.
18422         * lib/unicodeio.c: Likewise.
18423
18424 2002-12-31  Bruno Haible  <bruno@clisp.org>
18425
18426         * lib/getstr.h (getstr): Define, to avoid clash with libcurses.
18427         * lib/linebuffer.h (readline): Define, to avoid clash with libreadline.
18428
18429 2002-12-31  Bruno Haible  <bruno@clisp.org>
18430
18431         * lib/getline.h: Include <stddef.h>, for size_t.
18432
18433         * lib/unicodeio.h: Include <stddef.h>, for size_t.
18434         * lib/unicodeio.c: Don't include <stddef.h>.
18435
18436 2002-12-31  Bruno Haible  <bruno@clisp.org>
18437
18438         * lib/getdate.y (get_date): Test HAVE_STRUCT_TM_TM_ZONE, not
18439         HAVE_TM_ZONE.
18440
18441 2002-12-24  Karl Berry  <karl@gnu.org>
18442
18443         * config/config.guess: update from prep.
18444
18445 2002-12-24  Bruno Haible  <bruno@clisp.org>
18446
18447         General infrasructure.
18448         * m4/README: Rewritten.
18449         * m4/onceonly.m4: New file.
18450         * m4/onceonly_2_57.m4: New file.
18451
18452         Module atexit.
18453         * m4/atexit.m4: New file.
18454
18455         Module strtod.
18456         * m4/strtod.m4: New file.
18457
18458         Module strtol.
18459         * m4/strtol.m4: New file.
18460
18461         Module strtoul.
18462         * m4/strtoul.m4: New file.
18463
18464         Module memchr.
18465         * m4/memchr.m4: New file.
18466
18467         Module memcmp.
18468         * m4/memcmp.m4 (gl_PREREQ_MEMCMP): New macro.
18469         (jm_FUNC_MEMCMP): Invoke it.
18470
18471         Module memcpy.
18472         * m4/memcpy.m4: New file.
18473
18474         Module memmove.
18475         * m4/memmove.m4: New file.
18476
18477         Module memset.
18478         * m4/memset.m4: New file.
18479
18480         Module strcspn.
18481         * m4/strcspn.m4: New file.
18482
18483         Module strpbrk.
18484         * m4/strpbrk.m4: New file.
18485
18486         Module strstr.
18487         * m4/strstr.m4: New file.
18488
18489         Module strerror.
18490         * m4/strerror.m4: New file.
18491
18492         Module mktime.
18493         * m4/mktime.m4: Renamed from jm-mktime.m4.
18494         (gl_PREREQ_MKTIME): New macro.
18495         (gl_FUNC_MKTIME): Renamed from jm_FUNC_MKTIME. Invoke gl_PREREQ_MKTIME.
18496
18497         Module malloc.
18498         * m4/malloc.m4 (gl_PREREQ_MALLOC): New macro.
18499         (jm_FUNC_MALLOC): Use AC_FUNC_MALLOC. Invoke gl_PREREQ_MALLOC.
18500         Don't define HAVE_DONE_WORKING_MALLOC_CHECK, since nothing uses it.
18501
18502         Module realloc.
18503         * m4/realloc.m4 (gl_PREREQ_REALLOC): New macro.
18504         (jm_FUNC_REALLOC): Use AC_FUNC_REALLOC. Invoke gl_PREREQ_REALLOC.
18505         Don't define HAVE_DONE_WORKING_REALLOC_CHECK, since nothing uses it.
18506
18507         Module strftime.
18508         * m4/tm_gmtoff.m4: New file, extracted from strftime.m4.
18509         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Use AC_FUNC_STRFTIME.
18510         Don't test for bcopy (we are not emacs). Invoke AC_TYPE_MBSTATE_T and
18511         gl_TM_GMTOFF.
18512         (_jm_STRFTIME_PREREQS, jm_FUNC_GNU_STRFTIME): Use onceonly macros.
18513
18514         Module xalloc.
18515         * m4/xalloc.m4: New file.
18516
18517         Module alloca.
18518         * m4/alloca.m4: New file.
18519
18520         Module putenv.
18521         * m4/putenv.m4 (gl_PREREQ_PUTENV): New macro.
18522         (jm_FUNC_PUTENV): Invoke it.
18523
18524         Module setenv.
18525         * m4/setenv.m4 (gt_FUNC_SETENV): New macro.
18526         (gt_CHECK_VAR_DECL): Fix quoting error that led to infinite loop in m4
18527         when invoked twice.
18528         (gt_PREREQ_SETENV, gt_PREREQ_UNSETENV): New macros, replacing old
18529         gt_FUNC_SETENV.
18530
18531         Module memrchr.
18532         * m4/memrchr.m4: New file.
18533
18534         Module stpcpy.
18535         * m4/stpcpy.m4: New file.
18536
18537         Module strcase.
18538         * m4/strcase.m4: New file.
18539
18540         Module strdup.
18541         * m4/strdup.m4: New file.
18542
18543         Module strnlen.
18544         * m4/strnlen.m4: New file.
18545
18546         Module strndup.
18547         * m4/strndup.m4: New file.
18548
18549         Module xstrtod.
18550         * m4/xstrtod.m4: New file.
18551
18552         Module xstrtol.
18553         * m4/xstrtol.m4: New file.
18554
18555         Module getdate.
18556         * m4/getdate.m4: New file.
18557
18558         Module unlocked-io.
18559         * m4/unlocked-io.m4: Renamed from jm-glibc-io.m4.
18560         (jm_FUNC_GLIBC_UNLOCKED_IO): Invoke AC_GNU_SOURCE. Use onceonly macros.
18561         * m4/jm-glibc-io.m4n: Remove file.
18562
18563         Module long-options.
18564         * m4/long-options.m4: New file.
18565
18566         Module md5.
18567         * m4/md5.m4: New file.
18568
18569         Module sha.
18570         * m4/sha.m4: New file.
18571
18572         Module getstr.
18573         * m4/getstr.m4: New file.
18574
18575         Module getline.
18576         * m4/getline.m4 (gl_PREREQ_GETLINE): New macro.
18577         (AM_FUNC_GETLINE): Invoke AC_GNU_SOURCE. Use <stdlib.h>, not
18578         <sys/types.h>, for size_t. Use the function name gnu_getline, not
18579         simply getline. Infoke gl_PREREQ_GETLINE.
18580
18581         Module obstack.
18582         * m4/obstack.m4: New file.
18583
18584         Module hash.
18585         * m4/hash.m4: New file.
18586
18587         Module readtokens.
18588         * m4/readtokens.m4: New file.
18589
18590         Module strverscmp.
18591         * m4/strverscmp.m4: New file.
18592
18593         Module stdbool.
18594         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Add test for _Bool. Needed for
18595         OSF/1.
18596
18597         Module strtoll.
18598         * m4/strtoll.m4: New file.
18599
18600         Module strtoull.
18601         * m4/strtoull.m4: New file.
18602
18603         Module strtoimax.
18604         * m4/strtoimax.m4: New file.
18605
18606         Module strtoumax.
18607         * m4/strtoumax.m4: New file.
18608
18609         Module xstrtoimax.
18610         * m4/xstrtoimax.m4 (jm_XSTRTOIMAX): Renamed from
18611         jm_AC_PREREQ_XSTRTOIMAX.
18612         Moved the strtol prerequisites to strtol.m4.
18613         Moved the strtoll prerequisites to strtoll.m4.
18614         Moved the strtoimax prerequisites to strtoimax.m4.
18615
18616         Module xstrtoumax.
18617         * m4/xstrtoumax.m4 (jm_XSTRTOUMAX): Renamed from
18618         jm_AC_PREREQ_XSTRTOUMAX.
18619         Moved the strtoul prerequisites to strtoul.m4.
18620         Moved the strtoull prerequisites to strtoull.m4.
18621         Moved the strtoumax prerequisites to strtoumax.m4.
18622
18623         Module chown.
18624         * m4/chown.m4 (gl_PREREQ_CHOWN): New macro.
18625         (jm_FUNC_CHOWN): Use AC_FUNC_CHOWN. Invoke gl_PREREQ_CHOWN.
18626
18627         Module dup2.
18628         * m4/dup2.m4: New file.
18629
18630         Module ftruncate.
18631         * m4/ftruncate.m4 (gl_PREREQ_FTRUNCATE): New macro.
18632         (jm_FUNC_FTRUNCATE): Use AC_REPLACE_FUNCS. Invoke gl_PREREQ_FTRUNCATE.
18633
18634         Module getgroups.
18635         * m4/getgroups.m4 (gl_PREREQ_GETGROUPS): New macro.
18636         (jm_FUNC_GETGROUPS): Use AC_FUNC_GETGROUPS. Invoke gl_PREREQ_GETGROUPS.
18637
18638         Module gettimeofday.
18639         * m4/gettimeofday.m4 (gl_PREREQ_GETTIMEOFDAY): New macro.
18640         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Use onceonly macros. Invoke
18641         gl_PREREQ_GETTIMEOFDAY.
18642
18643         Module mkdir.
18644         * m4/mkdir-slash.m4 (gl_PREREQ_MKDIR): New macro.
18645         (UTILS_FUNC_MKDIR_TRAILING_SLASH): Invoke gl_PREREQ_MKDIR.
18646
18647         Module mkstemp.
18648         * m4/mkstemp.m4 (gl_PREREQ_MKSTEMP): New macro.
18649         (jm_PREREQ_TEMPNAME): New macro, from prereq.m4. Also invoke
18650         jm_AC_TYPE_UINTMAX_T.
18651         (UTILS_FUNC_MKSTEMP): Invoke gl_PREREQ_MKSTEMP and jm_PREREQ_TEMPNAME.
18652
18653         Module stat.
18654         * m4/stat.m4 (gl_PREREQ_STAT): New macro.
18655         (jm_FUNC_STAT): Use AC_FUNC_STAT. Invoke gl_PREREQ_STAT.
18656
18657         Module lstat.
18658         * m4/lstat.m4 (gl_PREREQ_LSTAT): New macro.
18659         (jm_FUNC_LSTAT): Use AC_FUNC_LSTAT. Invoke gl_PREREQ_LSTAT.
18660
18661         Module timespec.
18662         * m4/timespec.m4 (gl_TIMESPEC): New macro.
18663         (jm_CHECK_TYPE_STRUCT_TIMESPEC): Add check for <sys/time.h>.
18664         * m4/st_mtim.m4: Indentation.
18665
18666         Module nanosleep.
18667         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): New macro.
18668         (jm_FUNC_NANOSLEEP): Add check for <sys/time.h>. Invoke
18669         gl_PREREQ_NANOSLEEP.
18670
18671         Module regex.
18672         * m4/regex.m4 (jm_PREREQ_REGEX): New macro.
18673         (jm_INCLUDED_REGEX): Invoke jm_PREREQ_REGEX.
18674         (gl_REGEX): New macro.
18675
18676         Module rename.
18677         * m4/rename.m4 (gl_PREREQ_RENAME): New macro.
18678         (vb_FUNC_RENAME): Invoke gl_PREREQ_RENAME.
18679
18680         Module rmdir.
18681         * m4/rmdir.m4: New file.
18682
18683         Module utime.
18684         * m4/utimbuf.m4 (jm_CHECK_TYPE_STRUCT_UTIMBUF): Use onceonly macros.
18685         * m4/utime.m4 (gl_PREREQ_UTIME): New macro.
18686         (jm_FUNC_UTIME): Invoke gl_PREREQ_UTIME.
18687
18688         Module dirname.
18689         * m4/dirname.m4: New file.
18690
18691         Module getopt.
18692         * m4/getopt.m4: New file.
18693
18694         Module unistd-safer.
18695         * m4/unistd-safer.m4: New file.
18696
18697         Module fnmatch.
18698         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Include <stdlib.h>, for exit()
18699         declaration.
18700         (gl_PREREQ_FNMATCH_EXTRA): New macro.
18701         (gl_FUNC_FNMATCH_POSIX): New macro.
18702         (gl_FUNC_FNMATCH_GNU): Renamed from AC_FUNC_FNMATCH_GNU. Invoke
18703         gl_PREREQ_FNMATCH_EXTRA. Use the function name gnu_fnmatch, not
18704         simply fnmatch.
18705
18706         Module exclude.
18707         * m4/exclude.m4: New file.
18708
18709         Module human.
18710         * m4/human.m4: New file.
18711
18712         Module acl.
18713         * m4/acl.m4: Nop.
18714
18715         Module backupfile.
18716         * m4/backupfile.m4: New file.
18717         * m4/d-ino.m4: Indentation.
18718
18719         Module fsusage.
18720         * m4/fsusage.m4 (gl_FSUSAGE): New macro.
18721         (jm_STATFS_TRUNCATES): New macro, from coreutils-4.5.4/configure.ac.
18722         (gl_PREREQ_FSUSAGE_EXTRA): New macro.
18723
18724         Module dirfd.
18725         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Invoke some AC_EGREP_CPP
18726         requirements.
18727
18728         Module euidaccess.
18729         * m4/euidaccess.m4: New file.
18730
18731         Module file-type.
18732         * m4/file-type.m4: New file.
18733
18734         Module fileblocks.
18735         * m4/fileblocks.m4: New file.
18736
18737         Module filemode.
18738         * m4/filemode.m4: New file.
18739
18740         Module isdir.
18741         * m4/isdir.m4: New file.
18742
18743         Module lchown.
18744         * m4/lchown.m4 (gl_PREREQ_LCHOWN): New macro.
18745         (jm_FUNC_LCHOWN): Invoke gl_PREREQ_LCHOWN.
18746
18747         Module makepath.
18748         * m4/makepath.m4: New file.
18749
18750         Module modechange.
18751         * m4/modechange.m4: New file.
18752
18753         Module mountlist.
18754         * m4/mountlist.m4: New file.
18755         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Use onceonly macros.
18756         Indentation.
18757
18758         Module path-concat.
18759         * m4/path-concat.m4: New file.
18760
18761         Module pathmax.
18762         * m4/pathmax.m4: New file.
18763
18764         Module same.
18765         * m4/same.m4: New file.
18766
18767         Module save-cwd.
18768         * m4/save-cwd.m4: New file.
18769
18770         Module savedir.
18771         * m4/savedir.m4: New file.
18772
18773         Module xgetcwd.
18774         * m4/xgetcwd.m4: New file.
18775         * m4/getcwd.m4 (AC_FUNC_GETCWD_NULL): Use onceonly macros.
18776
18777         Module xreadlink.
18778         * m4/xreadlink.m4: New file.
18779
18780         Module safe-read.
18781         * m4/safe-read.m4: New file.
18782
18783         Module safe-write.
18784         * m4/safe-write.m4: New file.
18785
18786         Module closeout.
18787         * m4/closeout.m4: New file.
18788
18789         Module stdio-safer.
18790         * m4/stdio-safer.m4: New file.
18791
18792         Module getpass.
18793         * m4/getpass.m4: New file.
18794
18795         Module getugroups.
18796         * m4/getugroups.m4: New file.
18797
18798         Module group-member.
18799         * m4/group-member.m4 (gl_PREREQ_GROUP_MEMBER): New macro.
18800         (jm_FUNC_GROUP_MEMBER): Invoke AC_GNU_SOURCE, gl_PREREQ_GROUP_MEMBER.
18801
18802         Module idcache.
18803         * m4/idcache.m4: New file.
18804
18805         Module userspec.
18806         * m4/userspec.m4: New file.
18807
18808         Module gettime.
18809         * m4/clock_time.m4: New file.
18810         * m4/gettime.m4: New file.
18811
18812         Module settime.
18813         * m4/settime.m4: New file.
18814
18815         Module posixtm.
18816         * m4/posixtm.m4: New file.
18817
18818         Module gethostname.
18819         * m4/gethostname.m4: New file.
18820
18821         Module canon-host.
18822         * m4/canon-host.m4: New file.
18823
18824         Module gettext.
18825         * m4/codeset.m4: New file, from gettext-0.11.5.
18826         * m4/gettext.m4: New file, from gettext-0.11.5.
18827         * m4/glibc21.m4: New file, from gettext-0.11.5.
18828         * m4/iconv.m4: New file, from gettext-0.11.5.
18829         * m4/intdiv0.m4: New file, from gettext-0.11.5.
18830         * m4/inttypes-pri.m4: New file, from gettext-0.11.5.
18831         * m4/inttypes.m4: New file, from gettext-0.11.5.
18832         * m4/inttypes_h.m4: New file, from gettext-0.11.5 with modifications.
18833         * m4/isc-posix.m4: New file, from gettext-0.11.5.
18834         * m4/lcmessage.m4: New file, from gettext-0.11.5.
18835         * m4/lib-ld.m4: New file, from gettext-0.11.5.
18836         * m4/lib-link.m4: New file, from gettext-0.11.5.
18837         * m4/lib-prefix.m4: New file, from gettext-0.11.5.
18838         * m4/progtest.m4: New file, from gettext-0.11.5.
18839         * m4/stdint_h.m4: New file, from gettext-0.11.5 with modifications.
18840         * m4/uintmax_t.m4: New file, from gettext-0.11.5 with modifications.
18841         * m4/ulonglong.m4: New file, from gettext-0.11.5 with modifications.
18842
18843         Module localcharset.
18844         * m4/localcharset.m4: New file.
18845
18846         Module hard-locale.
18847         * m4/hard-locale.m4: New file.
18848
18849         Module mbswidth.
18850         * m4/mbswidth.m4 (gl_MBSWIDTH): Renamed from jm_PREREQ_MBSWIDTH. Use
18851         onceonly macros.
18852         * m4/mbrtowc.m4: Add comment.
18853
18854         Module memcasecmp.
18855         * m4/memcasecmp.m4: New file.
18856
18857         Module memcoll.
18858         * m4/memcoll.m4: New file.
18859
18860         Module unicodeio.
18861         * m4/unicodeio.m4: New file.
18862
18863         Module rpmatch.
18864         * m4/rpmatch.m4: New file.
18865
18866         Module yesno.
18867         * m4/yesno.m4: New file.
18868
18869         Module exitfail.
18870         * m4/exitfail.m4: New file.
18871
18872         Module c-stack.
18873         * m4/c-stack.m4 (gl_C_STACK): New macro.
18874         (jm_PREREQ_C_STACK): Check for <sys/time.h>. Use onceonly macros.
18875
18876         Module error.
18877         * m4/error.m4 (gl_ERROR): New macro.
18878         (jm_PREREQ_ERROR): Use onceonly macros.
18879
18880         Module fatal.
18881         * m4/fatal.m4: New file.
18882
18883         Module getloadavg.
18884         * m4/getloadavg.m4 (AC_FUNC_GETLOADAVG): Use onceonly macros.
18885         (gl_FUNC_GETLOADAVG, gl_PREREQ_GETLOADAVG): New macros.
18886
18887         Module getpagesize.
18888         * m4/getpagesize.m4: New file.
18889
18890         Module getusershell.
18891         * m4/getusershell.m4: New file.
18892
18893         Module physmem.
18894         * m4/physmem.m4: New file.
18895
18896         Module posixver.
18897         * m4/posixver.m4: New file.
18898
18899         Module quotearg.
18900         * m4/quotearg.m4: New file.
18901
18902         Module quote.
18903         * m4/quote.m4: New file.
18904
18905         Module readutmp.
18906         * m4/readutmp.m4: New file, based on jm_PREREQ_READUTMP from prereq.m4.
18907
18908         Module sig2str.
18909         * m4/sig2str.m4: New file.
18910
18911         Other.
18912         * m4/longlong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Remove, moved to
18913         ulonglong.m4.
18914         * m4/intmax_t.m4: New file.
18915         * m4/d-type.m4: Indentation.
18916         * m4/jm-macros.m4: Update.
18917         * m4/prereq.m4 (jm_PREREQ): Update.
18918         (jm_PREREQ_ADDEXT): Remove, obsoleted by backupfile.m4.
18919         (jm_PREREQ_CANON_HOST): Remove, obsoleted by canon-host.m4.
18920         (jm_PREREQ_DIRNAME): Remove, obsoleted by dirname.m4.
18921         (jm_PREREQ_EXCLUDE): Remove, obsoleted by exclude.m4.
18922         (jm_PREREQ_GETPAGESIZE): Remove, obsoleted by getpagesize.m4.
18923         (jm_PREREQ_HARD_LOCALE): Remove, obsoleted by hard-locale.m4.
18924         (jm_PREREQ_HASH): Remove, obsoleted by hash.m4.
18925         (jm_PREREQ_HUMAN): Remove, obsoleted by human.m4.
18926         (jm_PREREQ_MEMCHR): Remove, obsoleted by memchr.m4.
18927         (jm_PREREQ_PHYSMEM): Remove, obsoleted by physmem.m4.
18928         (jm_PREREQ_POSIXVER): Remove, obsoleted by posixver.m4.
18929         (jm_PREREQ_QUOTEARG): Remove, obsoleted by quotearg.m4.
18930         (jm_PREREQ_READUTMP): Remove, obsoleted by readutmp.m4.
18931         (jm_PREREQ_REGEX): Remove, obsoleted by regex.m4.
18932         (jm_PREREQ_STRNLEN): Remove, obsoleted by strnlen.m4.
18933         (jm_PREREQ_TEMPNAME): Remove, obsoleted by mkstemp.m4.
18934         (jm_PREREQ_XGETCWD): Remove, obsoleted by xgetcwd.m4.
18935         (jm_PREREQ_XREADLINK): Remove, obsoleted by xreadlink.m4.
18936         * m4/readdir.m4 (jm_FUNC_READDIR): Use onceonly macros.
18937
18938 2002-12-24  Bruno Haible  <bruno@clisp.org>
18939
18940         * MODULES.txt: Update according to m4/ changes.
18941
18942         Module gettext.
18943         * config.rpath: New file, from gettext-0.11.5.
18944
18945         * modules/*: New module descriptions.
18946         * gnulib-tool: New file.
18947         * MODULES.html.sh: New file.
18948
18949 2002-12-21  Karl Berry  <karl@gnu.org>
18950
18951         * doc/fdl.texi: update to version 1.2.
18952
18953 2002-12-19  Karl Berry  <karl@gnu.org>
18954
18955         * config/config.guess: update from prep.
18956
18957 2002-12-18  Bruno Haible  <bruno@clisp.org>
18958
18959         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't test for localtime_r.
18960         * m4/jm-mktime.m4 (jm_FUNC_MKTIME): Likewise.
18961
18962 2002-12-17  Bruno Haible  <bruno@clisp.org>
18963
18964         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Remove checks for limits.h,
18965         stdlib.h, string.h.
18966
18967 2002-12-17  Bruno Haible  <bruno@clisp.org>
18968
18969         * lib/canon-host.c (strdup): Remove unused declaration.
18970
18971         * lib/fsusage.c: Include full_read.h.
18972         (get_fs_usage): Use full_read instead of safe_read.
18973
18974         * lib/utime.c (utime_null): Use SAFE_READ_ERROR.
18975
18976 2002-12-12  Karl Berry  <karl@gnu.org>
18977
18978         * config/config.guess: update from prep.
18979
18980 2002-12-11  Bruno Haible  <bruno@clisp.org>
18981
18982         * m4/setenv.m4: New file, from gettext-0.11.5.
18983
18984 2002-12-11  Bruno Haible  <bruno@clisp.org>
18985
18986         * lib/setenv.h: Rewritten to cope with systems that have setenv() but
18987         not unsetenv().
18988         * lib/setenv.c, unsetenv.c: Taken from glibc-2.2.4 with the following
18989         modifications:
18990
18991         2002-12-11  Bruno Haible  <bruno@clisp.org>
18992
18993                 * setenv.c (alloca): Fall back to malloc.
18994                 (freea): New macro.
18995                 (setenv): Use freea() to free memory allocated with alloca().
18996
18997         2002-11-13  Bruno Haible  <bruno@clisp.org>
18998
18999                 * setenv.c (compar_fn_t, __add_to_environ, setenv): Use ANSI C
19000                 function declarations.
19001                 * unsetenv.c (unsetenv): Likewise.
19002
19003         2002-03-04  Bruno Haible  <bruno@clisp.org>
19004
19005                 Portability to AIX 4.3.3.
19006                 * unsetenv.c: New file, extracted from setenv.c.
19007                 * setenv.c: Move the unsetenv() function to unsetenv.c.
19008
19009         2001-12-20  Bruno Haible  <bruno@clisp.org>
19010
19011                 * setenv.c (__add_to_environ): Don't call realloc(NULL,...),
19012                 use malloc instead. For SunOS 4.
19013
19014         2001-12-11  Bruno Haible  <bruno@clisp.org>
19015
19016                 * setenv.c: Declare alloca.
19017                 (compar_fn_t): New typedef.
19018                 (KNOWN_VALUE, STORE_VALUE): Use it.
19019
19020         * lib/Makefile.am (libfetish_a_SOURCES): Add setenv.c, unsetenv.c,
19021         setenv.h.
19022
19023 2002-12-10  Paul Eggert  <eggert@twinsun.com>
19024
19025         Port exclude.c and exclude.h to more non-GNU systems, e.g. Solaris 7.
19026         * lib/exclude.h (EXCLUDE_ANCHORED, EXCLUDE_INCLUDE, EXCLUDE_WILDCARDS):
19027         Choose values that are less likely to collide with system fnmatch
19028         options.
19029         * lib/exclude.c (FNM_CASEFOLD, FNM_LEADING_DIR): Define to 0 if not
19030         defined (e.g., a pure POSIX system).
19031         (EXCLUDE_macros_do_not_collide_with_FNM_macros): Use FNM_PATHNAME
19032         instead of FNM_FILE_NAME, for compatibility with pure POSIX sytems.
19033
19034 2002-12-06  Paul Eggert  <eggert@twinsun.com>
19035
19036         Undo the 2001-07-02 change for jm-glibc-io, as it was too much of
19037         a pain in practice to deal with generated m4 files.  This change
19038         goes together with the 2002-12-04 unlocked-io.h change in ../lib.
19039
19040         * m4/Makefile.am.in (Makefile.am): Don't mention jm-glibc-io.m4n
19041         and jm-glibc-io.m4, as they are no longer a special case.
19042         * m4/jm-glibc-io.m4: Rename from jm-glibc-io.m4n, and remove the
19043         kludge and the auto-generation stuff.  Check only whether the
19044         functions are declared, not whether they exist, since older hosts
19045         that don't declare the functions can't use the optimization anyway.
19046
19047 2002-12-06  Jim Meyering  <jim@meyering.net>
19048
19049         * lib/error.c: Be consistent: change `#ifndef _LIBC' to `#if !_LIBC'.
19050
19051         Merge in changes from libc's misc/error.c, in preparation
19052         for the merge of gnulib's changes back into libc.
19053
19054         * lib/error.c (_): Define only if not already defined.
19055         Move definition to follow all #include directives.
19056         Include unlocked-io.h only if !_LIBC.
19057         [_LIBC]: Include <libio/libioP.h>.
19058         [USE_IN_LIBIO]: Include <libio/iolibio.h>
19059         (fflush): Tweak definition to use INTUSE.
19060         (putc): Define.
19061
19062 2002-12-05  Paul Eggert  <eggert@twinsun.com>
19063
19064         * lib/alloca.c [defined emacs]: Include "lisp.h".
19065         (xalloc_die) [defined emacs]: New macro.
19066         (free) [defined emacs && defined EMACS_FREE]: Define to EMACS_FREE.
19067         [! defined emacs]: Include <xalloc.h>.
19068         (POINTER_TYPE) [!defined POINTER_TYPE]: New macro.
19069         (pointer): Typedef to POINTER_TYPE *.
19070         (malloc): Remove decl; we now always use xmalloc.
19071         (alloca): Use old-style definition, since Emacs needs this.
19072         Check for arithmetic overflow when computing combined size.
19073
19074 2002-12-04  Paul Eggert  <eggert@twinsun.com>
19075
19076         Do not generate unlocked-io.h automatically, since it's easier to
19077         maintain it by hand.
19078
19079         * lib/unlocked-io.h: New file, from GNU diffutils,
19080         but with proper copyright notice and attribution.
19081         * lib/gen-uio: Remove.
19082         * lib/Makefile.am: Add copyright notice.
19083         (libfetish_a_SOURCES): Add unlocked-io.h.
19084         (BUILT_SOURCES, all-local): Remove unlocked-io.h.
19085         (DISTCLEANFILES, io_functions): Remove macros.
19086         (EXTRA_DIST): Remove gen_uio.
19087         (unlocked-io.h): Remove rule.
19088
19089 2002-12-04  Jim Meyering  <jim@meyering.net>
19090
19091         Reflect the fact that stat.c and lstat.c are no longer generated.
19092         * lib/Makefile.am (BUILT_SOURCES): Remove stat.c and lstat.c.
19093         (DISTCLEANFILES): Likewise.
19094         (EXTRA_DIST): Likewise.
19095         (all_local): Don't depend on stat.c or lstat.c.
19096         (stat.c, lstat.c): Remove rules.
19097         (EXTRA_DIST): Remove xstat.in.
19098
19099         * lib/xstat.in: Remove file.  Contents moved into stat.c.
19100         * lib/stat.c: New file.  Contents mostly from xstat.in.
19101         * lib/stat.c: Rework so that it may serve to define rpl_lstat, too.
19102         * lib/lstat.c: New file. Simply #define LSTAT and include stat.c.
19103
19104         * lib/safe-read.c: Rework so that it may serve to define safe_write,
19105         too.
19106         * lib/safe-write.c: Simply #define SAFE_WRITE and include safe-read.c.
19107
19108 2002-12-03  Jim Meyering  <jim@meyering.net>
19109
19110         * lib/safe-read.c, safe-write.c: Change variable names and comments,
19111         but not semantics, to minimize the differences between these two files.
19112         (safe_read): Change comment to mention SAFE_READ_ERROR.
19113
19114         * lib/safe-read.c (IS_EINTR): Define.
19115         (safe_read): Use IS_EINTR in place of in-function cpp directives.
19116
19117 2002-12-02  Jim Meyering  <jim@meyering.net>
19118
19119         * lib/safe-read.c (EINTR): Define.
19120         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Define.
19121         (INT_MAX): Provide fallback.
19122         (safe_read): Rewrite to iterate IFF the read fails with EINTR.
19123
19124         * lib/safe-read.h (SAFE_READ_ERROR): Define.
19125
19126 2002-12-02  Bruno Haible  <bruno@clisp.org>
19127
19128         * lib/safe-write.c (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM):
19129         Define, taken from safe-read.c.
19130         (INT_MAX): Provide fallback.
19131         (safe_write): Rewrite to iterate IFF the write fails with EINTR.
19132         * lib/safe-write.h (SAFE_WRITE_ERROR): Define.
19133
19134         * lib/safe-read.c (EINTR): Remove definition.
19135         (safe_read): Don't use EINTR if it is absent.
19136
19137 2002-12-01  Jim Meyering  <jim@meyering.net>
19138
19139         * lib/safe-read.c: (safe_read): Also exit the loop when read returns
19140         zero.
19141         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM, INT_MAX): Define.
19142
19143 2002-11-27  Paul Eggert  <eggert@twinsun.com>
19144
19145         * lib/hash.c (hash_lookup, hash_get_first, hash_get_next,
19146         hash_find_entry, hash_rehash): Replace `if (limit <= value) abort ();'
19147         with `if (! (value < limit)) abort ();', for readability.
19148
19149 2002-11-26  Karl Berry  <karl@gnu.org>
19150
19151         * lib/strdup.c: copy from libc again, with jim's ok.
19152         * lib/.cppi-disable: re-add strdup.c
19153
19154 2002-11-25  Karl Berry  <karl@gnu.org>
19155
19156         * lib/strtoll.c: copy from libc, meaning we now #include <strtol.c>
19157         instead of "strtol.c".
19158
19159 2002-11-25  Karl Berry  <karl@gnu.org>
19160
19161         * config/install-sh: update from automake for variable quoting, $0 in
19162         error msgs, etc.
19163
19164         * config/srclist.txt ($LIBCSRC/time/mktime.c lib gpl): new entry.
19165         * config/srclist.txt ($LIBCSRC/sysdeps/generic/strtoll.c lib gpl): new
19166         entry.
19167
19168 2002-11-25  Jim Meyering  <jim@meyering.net>
19169
19170         * lib/mktime.c: Sync from libc, now that it has the latest fix.
19171
19172 2002-11-24  Karl Berry  <karl@gnu.org>
19173
19174         * lib/error.c, getopt.c, getopt.h, getopt1.c, obstack.c, regex.c,
19175         regex.h, strdup.c, strtoll.c, tempname.c: change license to gpl.
19176
19177 2002-11-24  Jim Meyering  <jim@meyering.net>
19178
19179         Update from coreutils:
19180
19181         * lib/mktime.c: Merge in changes from libc.
19182
19183         Avoid a link-time failure on some Linux systems.
19184         * lib/mktime.c (STATIC): Define to be empty (_LIBC) or `static'
19185         (otherwise).
19186         (__mon_yday): Declare with the STATIC attribute.
19187         (__mktime_internal): Likewise.
19188         Based on a report from Greg Schafer.
19189
19190 2002-11-23  Jim Meyering  <jim@meyering.net>
19191
19192         * lib/sig2str.c (str2signum, sig2str): Avoid a warning from gcc:
19193         Use `unsigned', not `int', as type of index.
19194
19195         * lib/xstat.in [@BEGIN_LSTAT_ONLY@]: Include <string.h>.
19196
19197         * lib/fsusage.c: Remove unneeded parentheses around operands of
19198         `defined'.
19199
19200 2002-11-22  Paul Eggert  <eggert@twinsun.com>
19201
19202         * lib/quotearg.h: Allow multiple inclusion by surrounding with
19203         "#ifndef QUOTEARG_H_".  Include <stddef.h>, for size_t,
19204         so that we can be included first.
19205         (PARAMS): Remove; we now assume C89 or later.  All uses removed.
19206         * lib/quotearg.c: Include quotearg.h immediately after config.h.
19207         No need to include stddef.h or sys/types.h any more.
19208         Surround local include files with "", not "<>".
19209         Assume HAVE_LIMITS_H unconditionally, as we assume C89.
19210         Similarly, assume HAVE_C_BACKSLASH_A, CHAR_BIT, UCHAR_MAX, UINT_MAX,
19211         HAVE_STDLIB_H, HAVE_STRING_H, STDC_HEADERS.
19212         (HAVE_MBSINIT): Undef if !HAVE_MBRTOWC.
19213         (mbsinit): Define to 1 if !defined mbsinit && !HAVE_MBSINIT.
19214         (ISPRINT): Remove; no longer needed now that we assume C89.
19215
19216         (clone_quoting_options, quotearg_buffer, quotearg_n_options):
19217         Preserve errno.
19218
19219         (quotearg_buffer_restyled, quotearg_n, quotearg_n_style,
19220         quotearg_char): Use SIZE_MAX rather than
19221         (size_t) -1 when we are talking about "infinity".
19222
19223         (quotearg_buffer_restyled): Fix bug when quoting trigraphs.
19224
19225 2002-11-22  Paul Eggert  <eggert@twinsun.com>
19226
19227         * lib/hash.c: Avoid use of <assert.h>, as the GNU Coding Standards
19228         hint that one should use `if (! x) abort ();' rather than `assert
19229         (x);', and anyway it's one less thing to worry about configuring.
19230         (hash_lookup, hash_get_first, hash_get_next, hash_find_entry,
19231         hash_rehash, hash_insert): Use abort rather than assert.
19232
19233 2002-11-22  Bruno Haible  <bruno@clisp.org>
19234
19235         * lib/safe-read.h: Assume C89. Add comments.
19236         (safe_read): Change return type to size_t.
19237         * lib/safe-read.c (safe_read): Change return type to size_t. Handle
19238         byte counts > SSIZE_MAX correctly.
19239         * lib/safe-write.h: New file.
19240         * lib/safe-write.c: New file.
19241         * lib/full-read.h: New file.
19242         * lib/full-read.c: New file.
19243         * lib/full-write.h: Assume C89. Add comments.
19244         * lib/full-write.c: Include safe-write.h.
19245         (full_write): Rewritten to use safe_write.
19246         Suggested by Jim Meyering and Paul Eggert.
19247
19248 2002-11-21  Jim Meyering  <jim@meyering.net>
19249
19250         * lib/strdup.c (strdup): Tweak comment and initial #if/#include.
19251
19252         Merge in changes from the coreutils.
19253
19254         2002-09-25  Paul Eggert  <eggert@twinsun.com>
19255         * lib/fsusage.c [! HAVE_INTTYPES_H && HAVE_STDINT_H] Include
19256         <stdint.h>.
19257         (UINTMAX_MAX) [!defined UINTMAX_MAX]: New macro.
19258         (PROPAGATE_ALL_ONES): Work even if X is unsigned and narrower than
19259         int.  Work more efficiently if X is the same width as uintmax_t.
19260         Do not compare X to -1, to avoid bogus compiler warning.
19261         (get_fs_usage): (uintmax_t) -1 -> UINTMAX_MAX to avoid a cast.
19262         Don't assume that f_frsize and f_bsize are the same type.
19263
19264         * lib/mountlist.c: #undef MNT_IGNORE before defining it, to avoid
19265         warning on FreeBSD.
19266
19267         * lib/makepath.c (make_path): Restore umask *before* creating the final
19268         component.
19269         (make_path): Minor reformatting.
19270
19271         * lib/xmalloc.c: Adjust to work with new autoconf macros,
19272         AC_FUNC_MALLOC and AC_FUNC_REALLOC: test #ifndef
19273         HAVE_MALLOC/HAVE_REALLOC.
19274
19275         * lib/mountlist.h (ME_DUMMY): Don't count entries of type `auto' as
19276         dummy ones.  At least on GNU/Linux systems, `auto' means something
19277         else.
19278         From Michael Stone.
19279
19280 2002-11-21  Bruno Haible  <bruno@clisp.org>
19281
19282         Remove case insensitive option matching.
19283         * lib/argmatch.h (argcasematch): Remove declaration.
19284         (ARGCASEMATCH): Remove macro.
19285         (__xargmatch_internal): Remove case_sensitive argument.
19286         (XARGMATCH): Update.
19287         (XARGCASEMATCH): Remove macro.
19288         * lib/argmatch.c (argmatch): Renamed from __argmatch_internal. Remove
19289         case_sensitive argument.
19290         (argcasematch): Remove function.
19291         (__xargmatch_internal): Remove case_sensitive argument.
19292         (main): Use XARGMATCH instead of XARGCASEMATCH.
19293
19294         * lib/xmalloc.c: Change compile-time error message. Add comment about
19295         required autoconf version.
19296
19297 2002-11-20  Paul Eggert  <eggert@twinsun.com>
19298
19299         Merge argmatch cleanups from Bison.  Assume C89.
19300
19301         * lib/argmatch.c: Include config.h here, not in argmatch.h.
19302         Include stdlib.h, for EXIT_FAILURE.
19303         Always include <string.h>, since we assume C89.
19304         (EXIT_FAILURE): Remove pre-C89 bug workaround.
19305         * lib/argmatch.h: Do not include <config.h> or <sys/types.h>.
19306         Include <stddef.h> instead, since it's all we need for size_t.
19307         (PARAMS): Remove.  All uses removed.
19308         (ARRAY_CARDINALITY): Do not bother to #undef.
19309         (ARRAY_CARDINALITY, ARGMATCH, ARGCASEMATCH, invalid_arg,
19310         ARGMATCH_VALID, XARGMATCH, XARGCASEMATCH):
19311         Remove unnecessary parentheses.
19312         (ARGMATCH_VALID, XARGMATCH, XARGCASEMATCH):
19313         Insert necessary parentheses.
19314         (ARGMATCH_CONSTRAINT, ARGMATCH_VERIFY): New macros.
19315         (ARGMATCH_ASSERT): Use ARGMATCH_CONSTRAINT.
19316
19317 2002-11-19  Bruno Haible  <bruno@clisp.org>
19318
19319         * lib/mbswidth.c: Include mbswidth.h right at the beginning.
19320         * lib/mbswidth.h: Include <stddef.h>, for size_t.
19321
19322         * lib/mbswidth.h (PARAMS): Remove macro.
19323         (mbswidth, mbsnwidth): Use ANSI C function declarations.
19324         * lib/mbswidth.c (mbswidth, mbsnwidth): Likewise.
19325
19326         * lib/gcd.h (PARAMS): Remove macro.
19327         (gcd): Use ANSI C function declarations.
19328         * lib/gcd.c (gcd): Likewise.
19329
19330 2002-11-15  Bruno Haible  <bruno@clisp.org>
19331
19332         * lib/strcspn.c: Include <stddef.h>.
19333         (strcspn): Use ANSI C function declaration. Change return type to
19334         size_t. Use NULL.
19335         * lib/strpbrk.c: Minimize diffs to glibc. Include <stddef.h>.
19336         (strpbrk): Use NULL.
19337         * lib/strpbrk.h (PARAMS): Remove macro.
19338         (strpbrk): Use ANSI C function declaration.
19339         * lib/strstr.c: Don't include <sys/types.h>.
19340         * lib/strstr.h (PARAMS): Remove macro.
19341         (strstr): Use ANSI C function declarations.
19342
19343 2002-11-14  Karl Berry  <karl@gnu.org>
19344
19345         * config/mkinstalldirs: `do' on separate line, instead of
19346         `for var; do'.
19347
19348 2002-11-06  Bruno Haible  <bruno@clisp.org>
19349
19350         * lib/gcd.h (gcd): Change argument type to 'unsigned long'.
19351         * lib/gcd.c (gcd): Likewise.
19352
19353 2002-11-05  Bruno Haible  <bruno@clisp.org>
19354
19355         * lib/gcd.h: New file, from gettext-0.11.5.
19356         * lib/gcd.c: New file, from gettext-0.11.5.
19357
19358 2002-11-05  Bruno Haible  <bruno@clisp.org>
19359
19360         * lib/error.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
19361         * lib/getopt.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
19362         * lib/obstack.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
19363         * lib/regex.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
19364
19365         * lib/argmatch.c: Include gettext.h instead of <locale.h> and
19366         <libintl.h>.
19367         * lib/makepath.c: Include gettext.h instead of <locale.h> and
19368         <libintl.h>.
19369
19370         * lib/closeout.c: Include gettext.h instead of <libintl.h>.
19371         * lib/human.c: Include gettext.h instead of <libintl.h>.
19372         * lib/quotearg.c: Include gettext.h instead of <libintl.h>.
19373         * lib/rpmatch.c: Include gettext.h instead of <libintl.h>.
19374         * lib/unicodeio.c: Include gettext.h instead of <libintl.h>.
19375         * lib/userspec.c: Include gettext.h instead of <libintl.h>.
19376         * lib/version-etc.c: Include gettext.h instead of <libintl.h>.
19377         * lib/xmalloc.c: Include gettext.h instead of <libintl.h>.
19378         (textdomain): Remove definition.
19379         * lib/xmemcoll.c: Include gettext.h instead of <libintl.h>.
19380
19381         * lib/long-options.c: Remove include of <libintl.h> and definition of
19382         _.
19383         * lib/same.c: Remove include of <libintl.h> and definition of _.
19384
19385 2002-11-04  Owen Taylor  <otaylor@redhat.com>
19386
19387         * lib/config.charset: A few additions for Solaris.
19388
19389 2002-11-04  Bruno Haible  <haible@clisp.cons.org>
19390
19391         Make it possible to build libcharset with CC=gcc CFLAGS="-x c++".
19392         * lib/localcharset.c (locale_charset): Declare as extern "C".
19393
19394 2002-11-04  Bruno Haible  <haible@clisp.cons.org>
19395
19396         * lib/config.charset: msdos in uk_UA uses CP1125.
19397
19398 2002-11-04  Bruno Haible  <bruno@clisp.org>
19399
19400         * lib/stpcpy.h: New file, from GNU gettext-0.11.5.
19401         * lib/strcase.h: New file, from GNU gettext-0.11.5.
19402         * lib/strpbrk.h: New file, from GNU gettext-0.11.5.
19403         * lib/strstr.h: New file, from GNU gettext-0.11.5.
19404         * lib/xgetcwd.h: New file, from GNU gettext-0.11.5.
19405
19406 2002-11-04  Bruno Haible  <bruno@clisp.org>
19407
19408         * lib/localcharset.c (locale_charset): Don't return an empty string.
19409
19410 2002-11-04  Bruno Haible  <bruno@clisp.org>
19411
19412         * lib/localcharset.c (get_charset_aliases): Add more Windows specific
19413         aliases.
19414
19415 2002-11-04  Bruno Haible  <bruno@clisp.org>
19416
19417         * lib/config.charset: Update for newest glibc. Add canonical names
19418         ISO-8859-14, KOI8-T, TCVN5712-1, GEORGIAN-PS.
19419
19420 2002-11-04  Bruno Haible  <bruno@clisp.org>
19421
19422         * lib/config.charset: Add support for NetBSD.
19423
19424 2002-11-04  Bruno Haible  <bruno@clisp.org>
19425
19426         * lib/config.charset [msdosdjgpp]: For Russian, use CP866.
19427
19428 2002-11-01  Bruno Haible  <bruno@clisp.org>
19429
19430         * configure.in: Add AC_CONFIG_AUX_DIR call.
19431         (AC_OUTPUT): Add m4/Makefile, lib/Makefile. Remove doc/Makefile,
19432         test/Makefile.
19433         * Makefile.in (subdirs): Add m4, lib. Remove doc, test.
19434
19435 2002-09-28  Karl Berry  <karl@gnu.org>
19436
19437         * config/srclist.txt: can't copy install-sh/mkinstalldirs from
19438         installed automake until the next release, since changes have been
19439         made.
19440
19441 2002-09-25  Karl Berry  <karl@gnu.org>
19442
19443         * lib/strdup.c: copy from libc/string (via ../config/srclist*).
19444         * lib/getopt*: copy from libc/posix.
19445         * lib/gettext.h: copy from gettext.
19446         * lib/.cppi-disable: add strdup.c, gettext.h.
19447
19448 2002-09-25  Karl Berry  <karl@gnu.org>
19449
19450         * config/srclist.txt: enable gettext.h check.
19451         * config/config.{guess,sub}: update from prep.
19452         * config/depcomp, install-sh, mdate-sh, missing, mkinstalldirs: update
19453                 from automake 1.6.3.
19454         See srclist*.
19455
19456 2002-08-23  Stefan Monnier  <monnier@cs.yale.edu>
19457
19458         * regex.c (PATFETCH): Remove the translating fetch.
19459         (PATFETCH_RAW): Rename to PATFETCH.
19460         (set_image_of_range): New fun.
19461         (SET_RANGE_TABLE_WORK_AREA): Use it.
19462         (regex_compile): Don't translate the pattern chars so eagerly.
19463         Only do it when inserting an `exactn' bytecode or when handling
19464         a char-range.
19465         (mutually_exclusive_p): Avoid empty statement.
19466
19467 2002-07-06  Jim Meyering  <meyering@lucent.com>
19468
19469         * m4/README: Don't mention Makefile.am.in.
19470         Outline how I've tested changes to .m4 files.  Yep, it's a pain.
19471
19472 2002-07-01  Jim Meyering  <meyering@lucent.com>
19473
19474         * lib/c-stack.c: Include sys/time.h.
19475         From Volker Borchert.
19476
19477 2002-06-26  Paul Eggert  <eggert@twinsun.com>
19478
19479         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for btowc.
19480
19481 2002-06-26  Paul Eggert  <eggert@twinsun.com>
19482
19483         * lib/fnmatch.c, fnmatch_loop.c (WIDE_CHAR_SUPPORT):
19484         New macro.  Use it uniformly instead of
19485         (defined HAVE_WCTYPE_H && defined HAVE_WCHAR_H).
19486         It also uses HAVE_BTOWC, to fix a porting bug on Solaris 2.5.1
19487         reported by Vin Shelton.
19488
19489 2002-06-22  Paul Eggert  <eggert@twinsun.com>
19490
19491         * lib/c-stack.h (segv_handler, c_stack_action) [! defined SA_SIGINFO]:
19492         Do not assume SA_SIGINFO behavior.
19493         Bug reported by Jim Meyering on NetBSD 1.5.2.
19494
19495 2002-06-22  Jim Meyering  <meyering@lucent.com>
19496
19497         * m4/c-stack.m4: New file, from diffutils-2.8.2.
19498         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_C_STACK.
19499
19500         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Don't require AC__GNU_SOURCE,
19501         now that configure.ac uses AC_GNU_SOURCE.
19502         (jm_MACROS): Rename: jm_FUNC_FNMATCH to AC_FUNC_FNMATCH_GNU.
19503         * m4/prereq.m4 (jm_PREREQ_EXCLUDE): Likewise, wrt jm_FUNC_FNMATCH.
19504
19505         Update to latest tools.  Suggestions from Paul Eggert.
19506         * m4/stdbool.m4: New file, from diffutils-2.8.2.
19507         * m4/gnu-source.m4: Update from diffutils-2.8.2.
19508         * m4/fnmatch.m4: Likewise.
19509         * m4/prereq.m4: Change each use of AC_CHECK_HEADERS(stdbool.h)
19510         to AC_HEADER_STDBOOL
19511
19512 2002-06-22  Jim Meyering  <meyering@lucent.com>
19513
19514         * lib/fnmatch.c (ISASCII, ISPRINT): Undefine, to avoid warning about
19515         redefinition due to Solaris 2.6's definition in /usr/include/sys/euc.h.
19516
19517 2002-06-22  Jim Meyering  <meyering@lucent.com>
19518
19519         * lib/c-stack.c, lib/c-stack.h: New files, from diffutils-2.8.2.
19520
19521         * lib/exitfail.c, exitfail.h: Likewise.
19522         * lib/Makefile.am (libfetish_a_SOURCES): Add exitfail.c and exitfail.h.
19523
19524         * lib/Makefile.am (libfetish_a_SOURCES): Add fnmatch_.h in place
19525         of fnmatch.h.
19526         (EXTRA_DIST): Add fnmatch_loop.c.
19527         (libfetish_a_SOURCES): Add c-stack.c and c-stack.h.
19528
19529         * lib/fnmatch_loop.c: New file, from diffutils-2.8.2.
19530         * lib/fnmatch.c: Update from diffutils-2.8.2.
19531         * lib/fnmatch_.h: New file.  From diffutils-2.8.2.
19532         * lib/fnmatch.h: Remove file.
19533
19534 2002-06-21  Jim Meyering  <meyering@lucent.com>
19535
19536         * m4/c-bs-a.m4: Add comment, from diffutils-2.8.2.
19537         * m4/mbrtowc.m4: Likewise.
19538
19539         * m4/mbstate_t.m4: Update from diffutils-2.8.2.
19540         * m4/mbswidth.m4: Reflect name change:
19541         s/AC_MBSTATE_T/AC_TYPE_MBSTATE_T.
19542         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Likewise.
19543
19544         * m4/lib-link.m4: Update from gettext-0.11.2.
19545         * m4/gettext.m4: Likewise.
19546
19547         * m4/jm-macros.m4 (jm_CHECK_ALL_HEADERS): Check for hurd.h.
19548         From Alfred M. Szmidt.
19549
19550 2002-06-18  Paul Eggert  <eggert@twinsun.com>
19551
19552         * lib/file-type.h: Report an error if neither S_ISREG nor
19553         S_IFREG is defined, instead of using a test specific to glibc
19554         2.2.  This should be safe, since POSIX requires S_ISREG and
19555         Unix Version 7 had S_IFREG.  We don't need to check for
19556         <sys/types.h> since we don't use any symbols that it defines.
19557
19558 2002-06-15  Richard Dawe  <richdawe@bigfoot.com>
19559
19560         * lib/Makefile.am (lstat.c, stat.c, .sin.sed): Use t-$@, rather than
19561         $@-t, so that each temporary file name is unique and valid in the first
19562         8 characters, for operation under DOS.
19563
19564 2002-06-15  Paul Eggert  <eggert@twinsun.com>
19565
19566         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Check for st_author.
19567
19568 2002-06-15  Jim Meyering  <meyering@lucent.com>
19569
19570         Work even with DJGPP 2.03, which lacks support for symlinks.
19571         From Richard Dawe.
19572         * lib/xstat.in (S_ISLNK): Define to 0 if neither S_ISLNK nor S_IFLNK
19573         is defined.
19574         * lib/lchown.c (S_ISLNK): Likewise.
19575
19576 2002-06-15  Jim Meyering  <meyering@lucent.com>
19577
19578         * lib/file-type.h (FILE_TYPE_H): Guard entire contents with #ifndef.
19579         For GNU libc 2.2 and newer, ensure that <sys/types.h> and <sys/stat.h>
19580         have been included before this file.
19581
19582 2002-06-14  Jim Meyering  <meyering@lucent.com>
19583
19584         * lib/file-type.h: Use the version from diffutils-2.8.2.
19585         * lib/file-type.c: Likewise.
19586
19587 2002-06-07  Jim Meyering  <meyering@lucent.com>
19588
19589         * m4/prereq.m4 (jm_PREREQ_STAT): Check for sys/param.h and sys/mount.h.
19590         They're needed at least for NetBSD 1.5.2.
19591         ($statxfs_includes): Include those same headers.
19592         ($statxfs_includes): Include sys/vfs.h if available.
19593         ($statxfs_includes): Likewise for sys/statvfs.h.
19594         Check for the following members in both structs statfs and statvfs:
19595         f_basetype, f_type, f_fsid.__val, f_namemax, f_namelen.
19596
19597 2002-06-01  Jim Meyering  <meyering@lucent.com>
19598
19599         * m4/d-type.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Rename macro:
19600         s/D_TYPE_IN_DIRENT/HAVE_STRUCT_DIRENT_D_TYPE/.
19601
19602 2002-05-28  Jim Meyering  <meyering@lucent.com>
19603
19604         * m4/readdir.m4 (jm_FUNC_READDIR): Undefine `mkdir', not `rmdir'.
19605         Reported by Volker Borchert.
19606
19607 2002-05-27  Jim Meyering  <meyering@lucent.com>
19608
19609         Fix a problem seen only on nonconforming systems whereby ls.c's
19610         use of localtime, and then of gettimeofday would cause trouble:
19611         the localtime call used to initialize rpl_gettimeofday's save
19612         mechanism would clobber ls's current local time information so
19613         that in any long listing the first file would always be listed
19614         with date 1970-01-01.  Analysis by Volker Borchert.
19615
19616         * lib/gettimeofday.c (localtime): Undefine.
19617         (rpl_localtime): New function.
19618
19619 2002-05-27  Jim Meyering  <meyering@lucent.com>
19620
19621         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER): Also replace
19622         localtime.
19623
19624         * m4/readdir.m4 (jm_FUNC_READDIR): Undefine `rmdir' so we don't try to
19625         use the replacement function; it wouldn't resolve at link time.
19626         Reported by Volker Borchert.
19627
19628 2002-05-22  Jim Meyering  <meyering@lucent.com>
19629
19630         * lib/Makefile.am (libfetish_a_SOURCES): Add file-type.c and
19631         file-type.h.
19632         * lib/file-type.h: New file.
19633         * lib/file-type.c (file_type): New file/function.  Extracted from
19634         diffutils.
19635
19636 2002-04-30  Jim Meyering  <meyering@lucent.com>
19637
19638         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_STAT.
19639
19640 2002-04-29  Paul Eggert  <eggert@twinsun.com>
19641
19642         * m4/prereq.m4 (jm_PREREQ_SIG2STR): Remove; all callers changed.
19643
19644 2002-04-29  Paul Eggert  <eggert@twinsun.com>
19645
19646         * m4/prereq.m4 (jm_PREREQ_HARD_LOCALE): Check for stdlib.h.
19647         Do not check for alloca.h (no longer used) or stdbool.h (was never
19648         used?).  Add AM_C_PROTOTYPES since hard-locale.h uses it.
19649
19650 2002-04-29  Paul Eggert  <eggert@twinsun.com>
19651
19652         * lib/hard-locale.c: Upgrade to version used in GNU Diffutils 2.8.1.
19653
19654 2002-04-29  Jim Meyering  <meyering@lucent.com>
19655
19656         * m4/jm-macros.m4 (jm_MACROS): Remove use of AC_FUNC_STRNLEN.
19657         * m4/prereq.m4: Add jm_PREREQ_STRNLEN.
19658         Use AC_FUNC_STRNLEN here instead.
19659
19660         * m4/jm-macros.m4: Don't AC_REQUIRE([AC_PROG_CC_STDC]).
19661         With autoconf-2.53a, it's part of AC_PROG_CC.
19662
19663 2002-04-28  Paul Eggert  <eggert@twinsun.com>
19664
19665         * m4/jm-macros.m4 (jm_MACROS): Add AC_REPLACE_FUNCS(sig2str).
19666         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_SIG2STR.
19667
19668 2002-04-28  Paul Eggert  <eggert@twinsun.com>
19669
19670         * lib/sig2str.h, lib/sig2str.c: New files.
19671         * lib/Makefile.am (libfetish_a_SOURCES): Add sig2str.h.
19672
19673 2002-04-28  Paul Eggert  <eggert@twinsun.com>
19674
19675         * lib/sig2str.h (SIGNUM_BOUND): Do not use WTERMSIG, to avoid
19676         depending on <sys/wait.h> and WTERMSIG.  Default to 64 instead
19677         of 127, since 64 is the largest conceivable number for ancient
19678         nonstandard hosts.
19679         * lib/sig2str.c: Do not include <sys/wait.h>; no longer needed.
19680
19681 2002-04-28  Jim Meyering  <meyering@lucent.com>
19682
19683         * lib/sig2str.c (WTERMSIG): Remove definition (unused).
19684
19685 2002-04-24  Jim Meyering  <meyering@lucent.com>
19686
19687         * m4/prereq.m4 (jm_PREREQ_HARD_LOCALE): New macro.
19688         (jm_PREREQ): Use it.
19689
19690         * m4/getloadavg.m4: Check for these headers: locale.h unistd.h
19691         mach/mach.h fcntl.h.
19692         Check for this function: setlocale.
19693
19694 2002-04-24  Jim Meyering  <meyering@lucent.com>
19695
19696         * lib/gettext.h: New file, from Gettext.
19697         * lib/Makefile.am (INCLUDES): Remove -I../intl.
19698         (libfetish_a_SOURCES): Add gettext.h.
19699
19700 2002-04-16  Jim Meyering  <meyering@lucent.com>
19701
19702         * m4/prereq.m4 (jm_PREREQ_READUTMP): Also check for these members:
19703         ut_pid, ut_id, ut_exit.
19704
19705 2002-04-16  Jim Meyering  <meyering@lucent.com>
19706
19707         * lib/readutmp.h (UT_TYPE): Remove definition (now in who.c).
19708         (HAVE_STRUCT_XTMP_UT_EXIT, HAVE_STRUCT_XTMP_UT_ID): Define.
19709         (HAVE_STRUCT_XTMP_UT_PID, HAVE_STRUCT_XTMP_UT_TYPE): Define.
19710
19711 2002-04-12  Jim Meyering  <meyering@lucent.com>
19712
19713         * m4/ls-mntd-fs.m4 (checking for getmntinfo function...): Remove
19714         now-bogus check for f_type in sys/mount.h.  Instead, just test for the
19715         existence of the getmntinfo function.  Needed for Darwin 5.3.
19716
19717         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Also detect when dirfd is a macro.
19718         This is necessary at least on Darwin 5.3.
19719
19720         * m4/jm-macros.m4: Don't AC_REPLACE(strnlen), now that we use
19721         AC_FUNC_STRNLEN.  Otherwise, we'd end up putting two copies of
19722         strnlen.o in the library, and that makes some versions of ranlib
19723         object.
19724
19725 2002-04-12  Jim Meyering  <meyering@lucent.com>
19726
19727         * lib/dirfd.h (dirfd): Elide prototype if dirfd is a macro.
19728
19729 2002-04-09  Jim Meyering  <meyering@lucent.com>
19730
19731         * m4/malloc.m4: (jm_FUNC_MALLOC): Change the `checking ...' message
19732         to be more precise.  Rather than saying we're checking whether the
19733         function `works', say what we're testing.
19734         * m4/realloc.m4 (jm_FUNC_REALLOC): Likewise.
19735         Reported by Bruno Haible.
19736
19737 2002-03-10  Jim Meyering  <meyering@lucent.com>
19738
19739         * lib/makepath.c (make_path): Remove a comma from a diagnostic.
19740         Suggestion from Santiago Vila.
19741
19742 2002-03-08  Jim Meyering  <meyering@lucent.com>
19743
19744         * lib/rename.c: Mention that this wrapper is needed also on
19745         mips-dec-ultrix4.4 systems.
19746
19747 2002-03-02  Jim Meyering  <meyering@lucent.com>
19748
19749         * lib/gettime.c (gettime): Test HAVE_CLOCK_GETTIME,
19750         not HAVE_CLOCK_SETTIME.
19751
19752 2002-02-27  Paul Eggert  <eggert@twinsun.com>
19753
19754         * m4/jm-macros.m4 (jm_MACROS): Do not replace stime; no longer used.
19755         Check for clock_settime.
19756
19757 2002-02-27  Paul Eggert  <eggert@twinsun.com>
19758
19759         * lib/nanosleep.h: Rename to....
19760         * lib/timespec.h: New name for nanosleep.h.  All uses changed.
19761
19762         * lib/gettime.c: New file.
19763         * lib/settime.c: New file.
19764         * lib/stime.c: Remove.
19765
19766         * lib/Makefile.am (libfetish_a_SOURCES): Add gettime.c, settime.c,
19767         timespec.h.  Remove nanosleep.h.
19768
19769 2002-02-25  Paul Eggert  <eggert@twinsun.com>
19770
19771         * m4/acl.m4: New file.
19772         * m4/jm-macros.m4 (jm_MACROS): Require AC_FUNC_ACL.
19773         Do not check for acl or sys/acl.h, as AC_FUNC_ACL does that now.
19774
19775 2002-02-25  Paul Eggert  <eggert@twinsun.com>
19776
19777         * lib/acl.c, lib/acl.h: New files.
19778         * lib/Makefile.am (libfetish_a_SOURCES): Add acl.h, acl.c.
19779
19780 2002-02-24  Jim Meyering  <meyering@lucent.com>
19781
19782         * lib/strnlen.c (strnlen): Define-away/undef so that an inconsistent
19783         prototype in string.h (on at least AIX4.3.2.0 w/gcc-2.95.3) doesn't
19784         cause trouble.  Reported by Nelson Beebe.
19785
19786 2002-02-23  Paul Eggert  <eggert@twinsun.com>
19787
19788         * lib/path-concat.c (xpath_concat): Reorder code to pacify
19789         compilers that don't know that xalloc_die never returns.
19790
19791 2002-02-20  Jim Meyering  <meyering@lucent.com>
19792
19793         * lib/getdate.c: Regenerate using bison-1.33.
19794
19795 2002-02-17  Jim Meyering  <meyering@lucent.com>
19796
19797         * config/config.guess (main): Don't use `head -1'; it's no longer
19798         portable. Use `sed 1q' instead.
19799
19800 2002-02-16  gettextize  <bug-gnu-gettext@gnu.org>
19801
19802         * m4/codeset.m4: Upgrade to gettext-0.11.
19803         * m4/gettext.m4: Upgrade to gettext-0.11.
19804         * m4/glibc21.m4: Upgrade to gettext-0.11.
19805         * m4/iconv.m4: Upgrade to gettext-0.11.
19806         * m4/isc-posix.m4: Upgrade to gettext-0.11.
19807         * m4/lcmessage.m4: Upgrade to gettext-0.11.
19808         * m4/lib-ld.m4: New file, from gettext-0.11.
19809         * m4/lib-link.m4: New file, from gettext-0.11.
19810         * m4/lib-prefix.m4: New file, from gettext-0.11.
19811         * m4/progtest.m4: Upgrade to gettext-0.11.
19812
19813 2002-02-15  Paul Eggert  <eggert@twinsun.com>
19814
19815         * m4/prereq.m4 (jm_PREREQ_POSIXVER): New macro.
19816         (jm_PREREQ): Use it.
19817
19818 2002-02-15  Paul Eggert  <eggert@twinsun.com>
19819
19820         * lib/posixver.c, lib/posixver.h: New files.
19821         * lib/Makefile.am (libfetish_a_SOURCES): Add them.
19822
19823 2002-02-02  Paul Eggert  <eggert@twinsun.com>
19824             Bruno Haible  <bruno@clisp.org>
19825
19826         * lib/unicodeio.h (print_unicode_char): Add exit_on_error argument.
19827         (fwrite_success_callback): New declaration.
19828         * lib/unicodeio.c (unicode_to_mb): New function, extracted from
19829         print_unicode_char. Call failure callback instead of error.
19830         (fwrite_success_callback): New function.
19831         (exit_failure_callback): New function.
19832         (fallback_failure_callback): New function.
19833         (print_unicode_char): Call unicode_to_mb.
19834
19835 2002-01-26  Jim Meyering  <meyering@lucent.com>
19836
19837         * m4/jm-macros.m4 (jm_MACROS): Require autoconf-2.52g.
19838         * m4/strnlen.m4: Remove file, now that it's part of autoconf.
19839
19840 2002-01-26  Jim Meyering  <meyering@lucent.com>
19841
19842         * lib/Makefile.am (getdate$U.o): Depend on unlocked-io.h.
19843
19844 2002-01-22  Paul Eggert  <eggert@twinsun.com>
19845
19846         * m4/jm-macros.m4 (jm_MACROS): Require AC_FUNC_FSEEKO.
19847
19848 2002-01-22  Jim Meyering  <meyering@lucent.com>
19849
19850         * lib/Makefile.am (Makefile): Don't depend on $(BUILT_SOURCES).
19851         Otherwise, some versions of automake would omit the rule that makes
19852         Makefile from Makefile.in.
19853
19854 2002-01-21  Paul Eggert  <eggert@twinsun.com>
19855
19856         * lib/xmemcoll.h, lib/xmemcoll.c: New files.
19857         * lib/Makefile.am (libfetish_a_SOURCES): Add them.
19858         * lib/memcoll.c: Include errno.h, and declare errno if not defined.
19859         (memcoll): Set errno to zero if there is no error.
19860
19861         * lib/quotearg.c (quotearg_buffer_restyled):
19862         Fix bug with quoting buffers containing NUL when backslashing escapes.
19863         This bug was exposed by the other changes in this patch.
19864         (quotearg_n_options): New arg ARGSIZE.
19865         All callers changed.
19866         (quoting_options_from_style): New function.
19867         (quotearg_n_style): Use it.
19868         (quotearg_n_style_mem): New function.
19869
19870         * lib/quotearg.h (quotearg_n_style_mem): New function.
19871
19872 2002-01-19  Jim Meyering  <meyering@lucent.com>
19873
19874         * m4/jm-macros.m4 (jm_MACROS): Use AC_FUNC_STRNLEN.
19875         Remove useless quotes: DF_PROG="df".
19876         * m4/strnlen.m4: New file.
19877
19878 2002-01-16  Paul Eggert  <eggert@twinsun.com>
19879
19880         * lib/backupfile.c (ISDIGIT): Comment fix.
19881         * lib/getdate.y (ISDIGIT): Likewise.
19882         * lib/posixtm.c (ISDIGIT, year): Likewise.
19883         * lib/strverscmp.c (ISDIGIT): Likewise.
19884         * lib/userspec.c (ISDIGIT): Likewise.
19885
19886 2002-01-16  Jim Meyering  <meyering@lucent.com>
19887
19888         * lib/getdate.y: Add three semicolons, each just before a closing
19889         brace. Bison (as of version 1.31) no longer papers over that mistake.
19890
19891 2002-01-05  Jim Meyering  <meyering@lucent.com>
19892
19893         * lib/version-etc.c (version_etc_copyright): Update copyright year.
19894
19895 2001-12-19  Paul Eggert  <eggert@twinsun.com>
19896
19897         * lib/closeout.c (close_stdout_status): If ferror (stdout), do
19898         not silently exit merely because the output buffer happens to
19899         have nothing pending.
19900
19901 2001-12-18  Paul Eggert  <eggert@twinsun.com>
19902
19903         See the big note in ../ChangeLog.
19904         * lib/human.c (suffixes): Prefer K to k for 1024.
19905         (generate_suffix_backwards): New function.
19906         (human_readable_inexact): Use it.
19907         * lib/xstrtol.c (__xstrtol): If there is no number but there
19908         is a valid suffix, assume 1.  "MB" now means decimal, "MiB" binary.
19909         Accept 'K' as well as 'k'.
19910
19911 2001-12-15  Jim Meyering  <meyering@lucent.com>
19912
19913         * lib/regex.h (__restrict_arr): Update from libc.
19914
19915         * lib/mountlist.h (ME_REMOTE): Recognize file systems of type smbfs
19916         as `remote' if the name starts with `//'.  Suggested by Michael Stone.
19917         (STREQ): Define.
19918
19919 2001-12-14  Jim Meyering  <meyering@lucent.com>
19920
19921         * m4/jm-macros.m4 (jm_MACROS): Check for iswspace.
19922         Suggestion from Bruno Haible.
19923
19924 2001-12-10  Jim Meyering  <meyering@lucent.com>
19925
19926         * lib/linebuffer.c: Remove explicit declarations of xmalloc and
19927         xrealloc, Instead, include "xalloc.h".
19928         (initbuffer): Don't cast xmalloc return value to char*.
19929         (readline): Reword comment.
19930         Don't cast xrealloc return value to char*
19931         Return NULL, not 0.
19932
19933 2001-12-09  Jim Meyering  <meyering@lucent.com>
19934
19935         * lib/modechange.c (mode_compile): Add cast to avoid pedantic warning
19936         about `signed and unsigned type in conditional expression'.
19937         * lib/posixtm.c (posix_time_parse): Likewise.
19938
19939         * lib/xreadlink.c (xreadlink): Add cast to avoid a pedantic warning.
19940
19941         * lib/readtokens.c (readtoken): Declare an index to be of type unsigned
19942         to avoid a pedantic warning.
19943
19944         * lib/getstr.c: Don't include assert.h.
19945         (getstr): Remove warning-evoking assertions.
19946         Return -1 if offset parameter is out of bounds.
19947         Change the type of a local from int to size_t.
19948
19949         * lib/strftime.c (my_strftime_localtime_r): Include this function
19950         definition in the `#if ! HAVE_TM_GMTOFF' block.
19951
19952         * lib/xgethostname.c: Remove declarations of xmalloc and xrealloc.
19953         Include xalloc.h instead.
19954
19955 2001-12-02  Jim Meyering  <meyering@lucent.com>
19956
19957         * lib/tempname.c: Don't declare getenv, thus reverting the change of
19958         2001-11-18.  It's no longer necessary, now that stdlib.h is always
19959         included.
19960
19961         * lib/regex.c [!__BOUNDED_POINTERS__]: Define away __bounded,
19962         __unbounded, and __ptrvalue.  Reported by Uwe H. Steinfeld.
19963
19964 2001-11-30  Akim Demaille  <akim@epita.fr>
19965
19966         * lib/xstrdup.c: Include xalloc.h, so that xstrdup is declared
19967         before being defined.
19968
19969 2001-11-27  Paul Eggert  <eggert@twinsun.com>
19970
19971         * lib/quotearg.h (quotearg_n, quotearg_n_style):
19972         First arg is int, not unsigned.
19973         * lib/quotearg.c (quotearg_n, quotearg_n_style): Likewise.
19974         (SIZE_MAX, UINT_MAX): New macros.
19975         (quotearg_n_options): Abort if N is negative.
19976         Avoid overflow check on hosts where size_t is 64 bits and int
19977         is 32 bits, as overflow is impossible there.
19978         Fix off-by-one typo that caused unnecessary reallocation.
19979
19980 2001-11-27  Jim Meyering  <meyering@lucent.com>
19981
19982         * lib/tempname.c: Merge with version from libc.
19983         * lib/regex.c: Likewise.
19984
19985         * lib/tempname.c: Include stdlib.h unconditionally.  On some old
19986         systems for which STDC_HEADERS is 0, it was not included, resulting in
19987         a warning about an integer-to-pointer conversion problem with getenv.
19988         Reported by Volker Borchert.
19989
19990 2001-11-26  Jim Meyering  <meyering@lucent.com>
19991
19992         * lib/gtod.h: Remove file.
19993         * lib/Makefile.am (libfetish_a_SOURCES): Remove gtod.h.
19994         * lib/gettimeofday.c: Don't include gtod.h.
19995         (GTOD_init): Remove function.
19996         (rpl_gettimeofday): Do its job here instead, rather than aborting.
19997         Suggestion from Volker Borchert.
19998
19999 2001-11-23  Jim Meyering  <meyering@lucent.com>
20000
20001         * lib/hash.h (struct hash_table): Don't define here.  Merely declare
20002         it.
20003         * lib/hash.c (struct hash_table): Define it here instead.
20004
20005 2001-11-22  Jim Meyering  <meyering@lucent.com>
20006
20007         * lib/hash.h: Bracket contents of file with #ifndef HASH_H_ ... #endif.
20008
20009 2001-11-20  Jim Meyering  <meyering@lucent.com>
20010
20011         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Update comment to reflect that
20012         SunOS 4.1.4 and Solaris 2.5.1 lose, too.
20013
20014 2001-11-19  Jim Meyering  <meyering@lucent.com>
20015
20016         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Don't bother with a temporary
20017         directory.  Use "conftestXXXXXX" as the template.
20018         Suggestion from Paul Eggert.
20019
20020         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Close each descriptor
20021         immediately, so the test doesn't mistakenly hit the max-open-files
20022         limit.
20023
20024 2001-11-18  Paul Eggert  <eggert@twinsun.com>
20025
20026         * lib/tempname.c (TMP_MAX): Remove; no longer needed.
20027         (TEMPORARIES): New macro.
20028         (__gen_tempname): Use TEMPORARIES rather than TMP_MAX.  This
20029         removes an artificial limitation (e.g. HP-UX 10.20, where
20030         TMP_MAX is 17576).
20031
20032 2001-11-18  Jim Meyering  <meyering@lucent.com>
20033
20034         * m4/prereq.m4 (jm_PREREQ_TEMPNAME): Check for declaration of getenv.
20035
20036 2001-11-18  Jim Meyering  <meyering@lucent.com>
20037
20038         * lib/tempname.c [!HAVE_DECL_GETENV]: Declare getenv to avoid warning
20039         on SunOS 4.
20040
20041         * lib/Makefile.am (Makefile): Depend on $(BUILT_SOURCES), so those
20042         files will be created before anything else.
20043
20044 2001-11-17 Paul Eggert  <eggert@twinsun.com>
20045
20046         * m4/jm-winsz1.m4 (jm_WINSIZE_IN_PTEM): Do not define
20047         WINSIZE_IN_PTEM if <termios.h> defines struct winsize.
20048
20049 2001-11-17  Jim Meyering  <meyering@lucent.com>
20050
20051         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): New file and macro.
20052         Prompted by a report from Bob Proulx.
20053
20054         * m4/jm-macros.m4 (jm_MACROS): Don't test for mkstemp here.
20055         Instead, require UTILS_FUNC_MKSTEMP.
20056
20057 2001-11-17  Jim Meyering  <meyering@lucent.com>
20058
20059         * m4/jm-macros.m4 (jm_MACROS): Remove code to set POW_LIBM.
20060         Now, that's done as part of AC_FUNC_STRTOD.
20061
20062 2001-11-17  Jim Meyering  <meyering@lucent.com>
20063
20064         * lib/modechange.c (mode_adjust): Fix error introduced on 1999-04-26
20065         that made e.g., `chmod a=,o=w,g=o F' cause F to be group readable
20066         rather than group writable.  Patch by Juan F. Codagnone.
20067
20068         * lib/readtokens.c: Remove explicit declarations of xmalloc and
20069         xrealloc, Instead, include "xalloc.h".
20070
20071         * lib/mountlist.c: Include unlocked-io.h after all system headers.
20072         Remove explicit declarations of xmalloc, xrealloc,
20073         and xstrdup.  Instead, include "xalloc.h".
20074
20075         * lib/argmatch.c, closeout.c, error.c, exclude.c: Include
20076         unlocked-io.h.
20077         * lib/fatal.c, getdate.y, getpass.c, getstr.c, getusershell.c:
20078         Likewise.
20079         * lib/mountlist.c, posixtm.c, readtokens.c, readutmp.c: Likewise.
20080
20081         * lib/regex.c, sha.c, version-etc.c, yesno.c: Likewise.
20082         Reported by Padraig Brady.
20083
20084         * lib/mkstemp.c: #undef mkstemp.
20085         Include config.h.
20086         (rpl_mkstemp): Rename from mkstemp.
20087         Protoize.
20088
20089 2001-11-16  Jim Meyering  <meyering@lucent.com>
20090
20091         * lib/physmem.c [HAVE_SYS_PSTAT_H]: Include <sys/pstat.h>.
20092         (physmem_total) [HAVE_PSTAT_GETSTATIC]: If sysconf couldn't be used to
20093         determine the amount of total physical memory, use pstat_getstatic.
20094         HPUX-11 doesn't define _SC_PHYS_PAGES.
20095         (physmem_available) [HAVE_PSTAT_GETSTATIC && HAVE_PSTAT_GETDYNAMIC]:
20096         If sysconf couldn't be used to determine the amount of available
20097         physical memory, use both pstat_getstatic and pstat_getdynamic.
20098         Based on a patch from Bob Proulx.
20099
20100 2001-11-10  Jim Meyering  <meyering@lucent.com>
20101
20102         * m4/prereq.m4 (jm_PREREQ_PHYSMEM): New function.
20103         (jm_PREREQ): Use it.
20104
20105 2001-11-09  Jim Meyering  <meyering@lucent.com>
20106
20107         * m4/jm-macros.m4: Require autoconf-2.52f.
20108         (AC_FUNC_ERROR_AT_LINE, AC_FUNC_OBSTACK, AC_FUNC_STRTOD):
20109         Use these AC_-prefixed names, not the AM_-prefixed ones.
20110
20111         * m4/afs.m4 (jm_AFS): Quote the body.  Patch by Akim Demaille.
20112
20113 2001-11-05  Jim Meyering  <meyering@lucent.com>
20114
20115         * lib/xstat.in (slash_aware_lstat): Correct a misleading comment.
20116
20117 2001-11-04  Jim Meyering  <meyering@lucent.com>
20118
20119         * m4/fpending.m4: Remove unused cruft that saved, set, and restored
20120         $DEFS.
20121
20122 2001-11-03  Jim Meyering  <meyering@lucent.com>
20123
20124         * m4/jm-glibc-io.m4n (jm_FUNC_GLIBC_UNLOCKED_IO): Quote first arg
20125         of AC_DEFUN.
20126
20127         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Rework so dirfd.c doesn't have to
20128         know the name of the variable in the macro definition.
20129
20130 2001-11-03  Jim Meyering  <meyering@lucent.com>
20131
20132         * lib/argmatch.h (ARGMATCH_TO_ARGUMENT): Remove casts of first two args
20133         in argmatch_to_argument call.
20134
20135         * lib/dirfd.c (dirfd): Reflect the fact that DIR_TO_FD now takes an
20136         argument.
20137
20138         * lib/hash.c (hash_clear): Fix a bug that could lead to an infloop or
20139         e.g., a fault due to an attempt to free a NULL pointer.
20140
20141 2001-11-01  Jim Meyering  <meyering@lucent.com>
20142
20143         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): New macro.
20144         * m4/jm-macros.m4 (jm_MACROS): Require UTILS_FUNC_DIRFD.
20145
20146 2001-11-01  Jim Meyering  <meyering@lucent.com>
20147
20148         * lib/dirfd.c, lib/dirfd.h: New files.
20149         * lib/Makefile.am (libfetish_a_SOURCES): Add dirfd.h.
20150
20151         * lib/hash.c (hash_print) [TESTING]: Clean up.
20152
20153 2001-10-22  Paul Eggert  <eggert@twinsun.com>
20154
20155         * lib/hard-locale.c (alloca): Define to __builtin_alloca if __GNUC__,
20156         to avoid a warning if -Wall.
20157
20158 2001-10-22  Jeff Bailey  <jbailey@outpost.dnsalias.org>
20159
20160         * README: New file
20161         * doc/*: Add COPYING, COPYING.LIB, COPYING.DOC, fdl.texi
20162         (per RMS's instructions, this is now the canonical source)
20163         * lgpl/, gpl/: New directories.
20164
20165 2001-10-21  Paul Eggert  <eggert@twinsun.com>
20166
20167         * lib/regex.c (uintptr_t): Remove macro and decl; it's config.h's job.
20168
20169 2001-10-21  Jim Meyering  <meyering@lucent.com>
20170
20171         * lib/obstack.c (_): Honor the setting of ENABLE_NLS.  Otherwise,
20172         this code would end up calling gettext even in packages built
20173         with --disable-nls.
20174         * lib/getopt.c (_): Likewise.
20175         * lib/regex.c (_): Likewise.
20176
20177 2001-10-20  Paul Eggert  <eggert@twinsun.com>
20178
20179         * m4/error.m4 (jm_PREREQ_ERROR):
20180         Do not invoke AC_CHECK_FUNCS with strerror_r, as
20181         AC_FUNC_STRERROR_R does that.
20182         Check for strerror declaration.
20183
20184         * m4/strerror_r.m4: Add copyright notice, as nontrivial m4 files
20185         are supposed to have them these days.
20186         (AC_FUNC_STRERROR_R): Always do char* test, so that it gets cached.
20187         Merge changes from latest Autoconf CVS.
20188         Rename ac_cv_func_strerror_r_works to ac_cv_func_strerror_r_char_p,
20189         and rename HAVE_WORKING_STRERROR_R to STRERROR_R_CHAR_P, since
20190         POSIX decided to standardize on the int flavor of strerror_r.
20191
20192 2001-10-20  Paul Eggert  <eggert@twinsun.com>
20193
20194         * lib/error.c (strerror_r): Do not declare unless !_LIBC.
20195         Do not check for HAVE_DECL_STRERROR_R missing unless STRERROR_R_CHAR_P.
20196         Use strerror_r that is only a macro, even if it is not a function.
20197         (strerror): Check for HAVE_DECL_STRERROR before declaring.
20198         (private_strerror): Use prototypes, not old-style function definition.
20199         (print_errno_message): New function.
20200         Support the POSIX 'int'-flavored strerror_r, as well as the traditional
20201         char*-flavored one.
20202         (error_tail, error, error_at_line): Use it.
20203
20204 2001-10-11  Jim Meyering  <meyering@lucent.com>
20205
20206         * lib/argmatch.c (argmatch_invalid): Use quotearg_n_style (0, ...
20207         and quote_n (1, ... to avoid clobbering a buffer.
20208
20209 2001-10-05  Jim Meyering  <meyering@lucent.com>
20210
20211         * lib/Makefile.am: (libfetish_a_SOURCES): Add hash-pjw.c and
20212         hash-pjw.h.
20213         * lib/hash-pjw.c: New file (factored out of fileutils' remove.c).
20214         * lib/hash-pjw.h: New file.
20215
20216 2001-09-30  Jim Meyering  <meyering@lucent.com>
20217
20218         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): See if
20219         `struct fsstat' has the `f_fstypename' member.
20220         Use that to define FS_TYPE, which is now used to make
20221         the getfsstat link test tighter.
20222
20223 2001-09-30  Jim Meyering  <meyering@lucent.com>
20224
20225         * lib/mountlist.c [MOUNTED_GETFSSTAT]:
20226         Include <sys/ucred.h>, for Apple Darwin.
20227         Include sys/mount.h and sys/fs_types.h only if available.
20228         (FS_TYPE): Define.
20229         (read_filesystem_list): Use FS_TYPE.
20230
20231 2001-09-29  Paul Eggert  <eggert@twinsun.com>
20232
20233         * lib/exclude.c (excluded_filename): 0 -> false, since it's
20234         a boolean context.
20235
20236 2001-09-29  Jim Meyering  <meyering@lucent.com>
20237
20238         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS)
20239         [one-argument getmntent function]): Include stdio.h before mntent.h.
20240         SunOS 4.1.x needs it for the declaration of `FILE'.
20241         Patch by Volker Borchert.
20242
20243         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS)
20244         Check for these headers: sys/param.h sys/ucred.h sys/mount.h
20245         sys/fs_types.h, and make the link-test for getfsstat guard #include
20246         directives with appropriate #if HAVE_*_H tests so that we can
20247         detect getfsstat on Apple Darwin1.3.7 systems.
20248         Reported by Nelson Beebe.
20249         Fix harmless typo in cache variable name: s/getsstat/getfsstat/.
20250
20251 2001-09-28  Paul Eggert  <eggert@twinsun.com>
20252
20253         Fix bug reported by Petter Reinholdtsen for HP-UX 10.20, which
20254         #defines strtoimax.  Also treat the other strto* functions
20255         like strtoimax.
20256
20257         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX):
20258         Check for strtoul and strtoumax,
20259         as those declarations are made even in the signed case.
20260         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX):
20261         Likewise, for strtol and strtoimax.
20262
20263 2001-09-28  Paul Eggert  <eggert@twinsun.com>
20264
20265         Fix bug reported by Petter Reinholdtsen for HP-UX 10.20, which
20266         #defines strtoimax.  Also treat the other strto* functions
20267         like strtoimax.
20268
20269         * lib/xstrtol.c (strtol): Do not declare if HAVE_DECL_STRTOL.
20270         (strtoul): Do not declare if HAVE_DECL_STRTOUL.
20271         (strtoimax, strtoumax): Do not declare if already defined as a macro.
20272
20273 2001-09-26  Jim Meyering  <meyering@lucent.com>
20274
20275         Most macros in unlocked-io.h had the wrong number of arguments.
20276         * lib/gen-uio: New script.
20277         (USE_UNLOCKED_IO): Define to 1 if not already defined.
20278         * lib/unlocked-io.hin: Remove file.
20279         * lib/Makefile.am (unlocked-io.h): Rewrite to use a separate script,
20280         rather than trying to embed it here.
20281         (EXTRA_DIST): Add gen-uio.  Remove unlocked-io.hin
20282         Reported by Padraig Brady.
20283
20284 2001-09-25  Volker Borchert  <bt@teknon.de>
20285
20286         * lib/gettimeofday.c (rpl_gettimeofday): Declare local variable
20287         `result'.
20288
20289 2001-09-24  Jim Meyering  <meyering@lucent.com>
20290
20291         * m4/gettext.m4: Use the version from gettext-0.10.40, not CVS.
20292
20293 2001-09-23  Jim Meyering  <meyering@lucent.com>
20294
20295         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Add a compile-test
20296         instead of the mere test for existence of mntent.h.  The latter
20297         would get a false-positive on AIX 3.4 systems.
20298         In the outer getmntent if-block, don't die if neither of the getmntent
20299         tests succeeds.  Instead, just fall through and continue with the
20300         remaining tests.
20301
20302 2001-09-23  Jim Meyering  <meyering@lucent.com>
20303
20304         * lib/mountlist.c: Remove useless parentheses in #if directives.
20305         (MOUNTED) [!defined MOUNTED]: Define to _PATH_MOUNTED, for when
20306         the deprecated MOUNTED symbol is no longer defined in mntent.h.
20307
20308 2001-09-22  Jim Meyering  <meyering@lucent.com>
20309
20310         * m4/gettext.m4: New file.  From gettext.
20311         * m4/lcmessage.m4: Sync with gettext -- this changes only comments.
20312         * m4/progtest.m4: Likewise
20313         * m4/isc-posix.m4: Decrement serial number to sync with gettext.
20314         * m4/glibc21.m4: Likewise.
20315
20316         * m4/libintl.m4: Remove.  No longer used.
20317
20318 2001-09-22  Jim Meyering  <meyering@lucent.com>
20319
20320         * lib/localcharset.c: Update from latest gettext.
20321         * lib/config.charset: Likewise.
20322
20323 2001-09-20  Jim Meyering  <meyering@lucent.com>
20324
20325         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX): Check for declaration of
20326         strtoimax.
20327         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Check for declaration of
20328         strtoumax.
20329
20330 2001-09-20  Jim Meyering  <meyering@lucent.com>
20331
20332         * lib/xstrtol.c (strtoimax): Guard declaration with
20333         `#if !HAVE_DECL_STRTOIMAX', rather than just `#ifndef strtoimax'.
20334         The latter fails because some systems (at least rs6000-ibm-aix4.3.3.0)
20335         have their own, conflicting declaration of strtoimax in sys/inttypes.h.
20336         (strtoumax): Likewise, for completeness (it wasn't necessary).
20337
20338 2001-09-17  Paul Eggert  <eggert@twinsun.com>
20339
20340         * lib/strtoimax.c (HAVE_LONG_LONG):
20341         Redefine to HAVE_UNSIGNED_LONG_LONG if unsigned.
20342         (strtoimax): Use sizeof (long), not sizeof strtol (ptr, endptr, base),
20343         to work around bug in IBM C compiler.
20344
20345 2001-09-17  Jim Meyering  <meyering@lucent.com>
20346
20347         * m4/chown.m4, fstypename.m4, getgroups.m4, gettimeofday.m4,
20348         * m4/jm-mktime.m4, lstat.m4, malloc.m4, memcmp.m4, mkdir-slash.m4,
20349         * m4/nanosleep.m4, putenv.m4, readdir.m4, realloc.m4, rename.m4,
20350         * m4/st_dm_mode.m4, stat.m4, strerror_r.m4, timespec.m4, utimbuf.m4,
20351         * m4/utimes.m4: Use AC_DEFINE rather than AC_DEFINE_UNQUOTED,
20352         whenever the right hand side need not be expanded by the shell.
20353
20354 2001-09-16  Paul Eggert  <eggert@twinsun.com>
20355
20356         * m4/fnmatch.m4 (jm_FUNC_FNMATCH): Remove test for GNU C
20357         library.  It's not correct, as some older glibcs are buggy.
20358         fnmatch wasn't fixed until glibc 2.2.
20359
20360         Use AC_DEFINE, not AC_DEFINE_UNQUOTED, as there's no
20361         special shell magic here.
20362
20363 2001-09-16  Jim Meyering  <meyering@lucent.com>
20364
20365         * m4/mkdir-slash.m4 (UTILS_FUNC_MKDIR_TRAILING_SLASH): New file/macro.
20366         * m4/jm-macros.m4: Require it.
20367
20368 2001-09-16  Jim Meyering  <meyering@lucent.com>
20369
20370         * lib/mkdir.c: New file.
20371
20372 2001-09-15  Jim Meyering  <meyering@lucent.com>
20373
20374         * m4/jm-macros.m4: Check for help2man.
20375
20376 2001-09-11  Jim Meyering  <meyering@lucent.com>
20377
20378         * m4/host-os.m4 (UTILS_HOST_OS): New file/macro.
20379         The body, by Paul Eggert, was moved here from configure.in.
20380         * m4/jm-macros.m4: Require UTILS_HOST_OS.
20381
20382 2001-09-04  Paul Eggert  <eggert@twinsun.com>
20383
20384         * m4/prereq.m4 (jm_PREREQ_XREADLINK): New macro.
20385         (jm_PREREQ): Use it.
20386
20387 2001-09-04  Paul Eggert  <eggert@twinsun.com>
20388
20389         * lib/xreadlink.c (xreadlink): Omit size_t* arg.  All uses changed.
20390         Use ssize_t, not int, to store result of readlink.
20391         Check for ssize_t overflow as well as size_t overflow,
20392         as POSIX says the result of readlink is implementation-defined
20393         when ssize_t overflows.
20394         Remove unnecessary cast to char*.
20395         Use free+malloc instead of realloc, as the storage doesn't need
20396         to be preserved and it's clearer and can be more efficient that way.
20397         (SIZE_MAX, SSIZE_MAX): New macros, if <limits.h> doesn't declare.
20398         * lib/xreadlink.h (xreadlink): Update prototype.
20399
20400 2001-09-04  Paul Eggert  <eggert@twinsun.com>
20401
20402         * lib/xgetcwd.c: Revert some of the previous change; intead,
20403         fix the HAVE_GETCWD_NULL code to behave more like the
20404         !HAVE_GETCWD_NULL code used to.
20405
20406         Include "xalloc.h".
20407         (xgetcwd): Do not return NULL when memory is exhausted; instead,
20408         invoke xalloc_die.
20409
20410 2001-09-03  Paul Eggert  <eggert@twinsun.com>
20411
20412         * m4/prereq.m4 (jm_PREREQ_XGETCWD): Check for limits.h and
20413         sys/param.h, as pathmax.h includes them.
20414
20415 2001-09-03  Paul Eggert  <eggert@twinsun.com>
20416
20417         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_XGETCWD.
20418         (jm_PREREQ_XGETCWD): New macro.
20419
20420         * m4/getcwd.m4: New file.
20421
20422 2001-09-03  Paul Eggert  <eggert@twinsun.com>
20423
20424         * lib/xgetcwd.c: Fix the !HAVE_GETCWD_NULL code to behave more
20425         like the HAVE_GETCWD_NULL code.
20426         Include pathmax.h if not HAVE_GETCWD.
20427         Do not include xalloc.h.
20428         (INITIAL_BUFFER_SIZE): New symbol.
20429         Do not use xmalloc / xrealloc, since the caller is responsible for
20430         handling errors.  Preserve errno around `free' during failure.
20431         Do not overrun buffer when using getwd.
20432
20433 2001-09-03  Paul Eggert  <eggert@twinsun.com>
20434
20435         * lib/xgetcwd.c (xgetcwd): Use HAVE_GETCWD_NULL, not (defined
20436         __GLIBC__ && __GLIBC__ >= 2), to decide whether to use
20437         getcwd (NULL, 0).
20438
20439 2001-09-03  Paul Eggert  <eggert@twinsun.com>
20440
20441         * lib/exclude.c (fnmatch_no_wildcards): Fix confusion between
20442         usage of FNM_CASEFOLD and FNM_LEADING_DIR.  The bug was
20443         spotted by Jim Meyering.
20444
20445 2001-09-03  Jim Meyering  <meyering@lucent.com>
20446
20447         * lib/xreadlink.c (xreadlink): Preserve errno around `free' during
20448         failure.
20449
20450 2001-09-02  Jim Meyering  <meyering@lucent.com>
20451
20452         * lib/error.c: Update from GNU libc.
20453
20454 2001-09-01  Jim Meyering  <meyering@lucent.com>
20455
20456         * m4/jm-macros.m4 (jm_MACROS): Check for canonicalize_file_name.
20457         Used by df.
20458
20459 2001-09-01  Jim Meyering  <meyering@lucent.com>
20460
20461         * lib/xreadlink.c: New file.
20462         * lib/xreadlink.h: New file.
20463         * lib/Makefile.am (libfetish_a_SOURCES): Add xreadlink.c and
20464         xreadlink.h.
20465
20466         * lib/regex.c (uintptr_t) [!_LIBC]: Define to private_uintptr_t, so it
20467         doesn't conflict with sparc Solaris 7's definition in
20468         /usr/include/sys/int_types.h.
20469
20470         * lib/exclude.c: Use `""', not `<>' to #include non-system header
20471         files.
20472         (fnmatch_no_wildcards): Rewrite not to use function names, strcasecmp
20473         and strncasecmp as r-values.  Unixware didn't have declarations.
20474
20475 2001-08-31  Paul Eggert  <eggert@twinsun.com>
20476
20477         * lib/xstrtol.h: Add copyright notice.
20478         (_DECLARE_XSTRTOL): Improve quality of diagnostic for
20479         LONGINT_INVALID_SUFFIX_CHAR.
20480
20481 2001-08-31  Paul Eggert  <eggert@twinsun.com>
20482
20483         * lib/xstrtol.c (strtoimax): New decl.
20484
20485 2001-08-31  Paul Eggert  <eggert@twinsun.com>
20486
20487         * lib/xgetcwd.c: Don't include pathmax.h.
20488         Include stdlib.h and unistd.h if available.
20489         Include xalloc.h.
20490         (xmalloc, xstrdup, free): Remove decls.
20491         (xgetcwd): Don't assume sizes fit in unsigned.
20492         Check for overflow when computing sizes.
20493         Simplify reallocation code.
20494
20495 2001-08-31  Paul Eggert  <eggert@twinsun.com>
20496
20497         * lib/savedir.c (savedir): Remove size parameter, as POSIX says that
20498         a directory's st_size can have an arbitrary value, so the old
20499         usage could waste an arbitrary amount of memory.  All uses
20500         changed.
20501         * lib/savedir.h: Update prototype.
20502
20503 2001-08-31  Paul Eggert  <eggert@twinsun.com>
20504
20505         * lib/Makefile.am (libfetish_a_SOURCES): Remove strtoxmax.c.
20506
20507         * lib/strtoimax.c: Renamed from strtoxmax.c, removing the
20508         old strtoimax.c.
20509
20510         Also, make the following further changes to make this file's
20511         configuration more similar to that of strtol.c:
20512         (UNSIGNED): Renamed from STRTOUXMAX_UNSIGNED.  All uses changed.
20513         (strtoumax, uintmax_t, strtoull, strtol): Remove.
20514         (intmax_t, strtoimax, strtol, strtoll): New macros, if UNSIGNED.
20515         (strtoimax): Renamed from strtoumax.  All uses of unsigned values
20516         changed to signed values.
20517
20518         And make the following changes as well:
20519         Fix copyright notice, as 1999 was missing.
20520         (verify): New macro.
20521         (strtoimax): Check sizes at compile-time, not run-time.
20522         Prefer strtol to strtoll if both work.
20523         (main): Remove; it was not that useful and was a pain to maintain.
20524
20525         * lib/strtoumax.c: Include strtoimax.c, not strtouxmax.c.
20526
20527 2001-08-31  Jim Meyering  <meyering@lucent.com>
20528
20529         * lib/xgetcwd.c (xgetcwd): Reorganize to avoid some duplication.
20530         Use an initial, malloc'd, buffer of length 128 rather than
20531         a statically allocated one of length 1024.
20532
20533 2001-08-30  Paul Eggert  <eggert@twinsun.com>
20534
20535         Simplify code, partly by assuming autoconf 2.52 semantics.
20536
20537         * m4/Makefile.am (EXTRA_DIST): Remove uintmax_t.m4.
20538
20539         * m4/inttypes.m4 (AC_PREREQ): Bump to 2.52.
20540         (jm_AC_HEADER_INTTYPES_H): Remove; now done by autoconf in 2.52.
20541         All uses removed.
20542         (jm_AC_TYPE_INTMAX_T, jm_AC_TYPE_UINTMAX_T):
20543         Move AC_REQUIRE to next-to-top level, to avoid confusion.
20544         Use 2.52's AC_CHECK_TYPE instead of merely looking for the header.
20545         * m4/prereq.m4 (jm_PREREQ_HUMAN): Don't require
20546         jm_AC_HEADER_INTTYPES_H.
20547         * m4/jm-macros.m4 (jm_MACROS): Likewise.
20548
20549         * m4/uintmax_t.m4: Remove, as it duplicates inttypes.m4.
20550
20551         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX):
20552         Quote first arg of AC_DEFUN.
20553         Require jm_AC_TYPE_UINTMAX_T and jm_AC_TYPE_UNSIGNED_LONG_LONG
20554         since they are needed to parse the include file even if we need
20555         only xstrtoimax.  Simplify logic behind the args to AC_REPLACE.
20556         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Likewise,
20557         but with opposite signedness.
20558
20559 2001-08-30  Paul Eggert  <eggert@twinsun.com>
20560
20561         Merge 'exclude' changes from tar 1.13.22.
20562         This fixes one or two unlikely storage allocation overflow bugs,
20563         but doesn't change user-visible behavior otherwise.
20564
20565 2001-08-30  Paul Eggert  <eggert@twinsun.com>
20566
20567         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_EXCLUDE.
20568         (jm_PREREQ_EXCLUDE): New macro.
20569
20570 2001-08-30  Paul Eggert  <eggert@twinsun.com>
20571
20572         * lib/quotearg.c: BSD/OS 4.1 wchar.h requires FILE and struct
20573         tm to be declared.
20574
20575 2001-08-30  Paul Eggert  <eggert@twinsun.com>
20576
20577         * lib/hash.c: Remove '2001' from copyright notice.
20578
20579 2001-08-30  Paul Eggert  <eggert@twinsun.com>
20580
20581         * lib/full-write.h: New file.
20582         * lib/Makefile.am (libfetish_a_SOURCES): Add full-write.h.
20583         * lib/full-write.c: Correct credits, as cccp.c no longer
20584         exists and anyway it was so heavily changed from the old cccp
20585         code as to be unrecognizable.  Include full-write.h.
20586         (full_write) Return size_t, with short writes meaning failure.
20587         All callers changed.  This fixes a bug with large buffers
20588         on 64-bit hosts.
20589         * lib/utime.c: Include full-write.h.
20590
20591 2001-08-30  Paul Eggert  <eggert@twinsun.com>
20592
20593         * lib/exclude.c (bool): Declare, perhaps by including stdbool.h.
20594         (<sys/types.h>): Include only if HAVE_SYS_TYPES_H.
20595         (<stdlib.h>, <string.h>, <strings.h>, <inttypes.h>, <stdint.h>):
20596         Include if available.
20597         (<xalloc.h>): Include
20598         (SIZE_MAX): Define if <stdint.h> or <inttypes.h> doesn't.
20599         (verify): New macro.  Use it to verify that EXCLUDE macros do not
20600         collide with FNM macros.
20601         (struct patopts): New struct.
20602         (struct exclude): Use it, as exclude patterns now come with options.
20603         (new_exclude): Support above changes.
20604         (new_exclude, add_exclude_file):
20605         Initial size must now be a power of two to simplify overflow checking.
20606         (free_exclude, fnmatch_no_wildcards): New function.
20607         (excluded_filename): No longer requires options arg, as the options
20608         are determined by add_exclude.  Now returns bool, not int.
20609         (excluded_filename, add_exclude):
20610         Add support for the fancy new exclusion options.
20611         (add_exclude, add_exclude_file): Now takes int options arg.
20612         Check for arithmetic overflow when computing sizes.
20613         (add_exclude_file): xrealloc might modify errno, so don't
20614         realloc until after errno might be used.
20615
20616         * lib/exclude.h (EXCLUDE_ANCHORED, EXCLUDE_INCLUDE,EXCLUDE_WILDCARDS):
20617         New macros.
20618         (free_exclude): New decl.
20619         (add_exclude, add_exclude_file): Now takes int options arg.
20620         (excluded_filename): No longer requires options arg, as the options
20621         are determined by add_exclude.  Now returns bool, not int.
20622
20623 2001-08-30  Paul Eggert  <eggert@twinsun.com>
20624
20625         * lib/alloca.c (alloca): Arg is of type size_t, not unsigned.
20626
20627 2001-08-27  Jim Meyering  <meyering@lucent.com>
20628
20629         * lib/Makefile.am (libfetish_a_SOURCES): Add strtoxmax.c
20630
20631         * lib/version-etc.c (N_): Remove definition.
20632         Revert most of last change.
20633         Instead, simply don't mark the `Copyright...' string for translation.
20634         Based on advice from Paul Eggert.
20635
20636         * lib/strtoxmax.c: Tweak comment.
20637
20638 2001-08-26  Jim Meyering  <meyering@lucent.com>
20639
20640         * m4/jm-macros.m4: Require jm_AC_PREREQ_XSTRTOIMAX.
20641
20642         * m4/xstrtoimax.m4: New file.
20643         * m4/xstrtoumax.m4: Add comments explaining why we
20644         AC_REPLACE_FUNCS(strtol).
20645
20646 2001-08-26  Jim Meyering  <meyering@lucent.com>
20647
20648         * lib/version-etc.c (version_etc_copyright_fmt): Replace literal year
20649         of copyright with `%s' so translators don't get an untranslated
20650         message in 2002.
20651         (COPYRIGHT_YEAR): Define.
20652         (version_etc): Use fprintf rather than fputs.
20653         Suggestion from Ulrich Drepper.
20654
20655         * lib/Makefile.am (libfetish_a_SOURCES): Add xstrtoimax.c.
20656
20657         * lib/strtoll.c: New file, from GNU libc.
20658         * lib/xstrtoimax.c: New file.
20659
20660         * lib/xstrtol.h: Add xstrtoimax.
20661         * lib/strtoumax.c: New file.  Simply include "strtoumax.c".
20662         * lib/strtoimax.c: New file.  Likewise, but first define
20663         STRTOUXMAX_SIGNED.
20664
20665         * lib/strtoumax.c: Factor to work both for unsigned and signed types,
20666         ...
20667         * lib/strtoxmax.c: ... then renamed to this.
20668
20669 2001-08-18  Paul Eggert  <eggert@twinsun.com>
20670
20671         * m4/inttypes.m4: Add AC_PREREQ(2.13).
20672         (jm_AC_HEADER_INTTYPES_H): Test for intmax_t, too.
20673         (jm_AC_TYPE_INTMAX_T): New macro.
20674         (jm_AC_TYPE_UINTMAX_T): Moved here from uintmax_t.m4.
20675
20676         * m4/longlong.m4 (jm_AC_TYPE_LONG_LONG): New macro.
20677
20678         * m4/longlong.m4: Renamed from ulonglong.m4.
20679         * m4/inttypes.m4: Renamed from inttypes_h.m4.
20680         * m4/uintmax_t.m4: Removed.
20681
20682 2001-08-13  Paul Eggert  <eggert@twinsun.com>
20683
20684         * lib/Makefile.am (unlocked-io.h): Do not append "_unlocked" twice.
20685         Port to Solaris 8, where 'sed' requires a space after the 'r'
20686         command, and where sh dislikes "$/".  Clean up the spacing a bit.
20687         Redirect output to $tmp just once.
20688
20689 2001-08-12  Paul Eggert  <eggert@sic.twinsun.com>
20690
20691         * lib/addext.c (<errno.h>): Include.
20692         (errno): Declare if not defined.
20693         (addext): Work correctly when pathconf returns -1 and leaves
20694         errno alone because there is no limit.  Also, work even if
20695         pathconf returns a value greater than SIZE_MAX.
20696
20697 2001-08-12  Jim Meyering  <meyering@lucent.com>
20698
20699         * m4/afs.m4, assert.m4, bison.m4, check-decl.m4, chown.m4, d-ino.m4,
20700         d-type.m4, dos.m4, error.m4, fnmatch.m4, fpending.m4, fstypename.m4,
20701         fsusage.m4, ftruncate.m4, getgroups.m4, glibc.m4, gnu-source.m4,
20702         group-member.m4, jm-glibc-io.m4, jm-macros.m4, jm-mktime.m4,
20703         jm-winsz1.m4, jm-winsz2.m4, lchown.m4, lib-check.m4, libintl.m4,
20704         link-follow.m4, ls-mntd-fs.m4, lstat.m4, malloc.m4, mbrtowc.m4,
20705         mbstate_t.m4, mbswidth.m4, memcmp.m4, nanosleep.m4, perl.m4,
20706         prereq.m4, putenv.m4, readdir.m4, realloc.m4, regex.m4, rename.m4,
20707         rmdir-errno.m4, search-libs.m4, st_dm_mode.m4, st_mtim.m4, stat.m4,
20708         strftime.m4, timespec.m4, unlink-busy.m4, uptime.m4, utimbuf.m4,
20709         utime.m4, utimes.m4, xstrtoumax.m4:
20710         Quote the first argument in each use of AC_DEFUN.
20711
20712 2001-08-12  Jim Meyering  <meyering@lucent.com>
20713
20714         * lib/xgetcwd.c (xgetcwd) [defined __GLIBC__ && __GLIBC__ >= 2]:
20715         Simply `return getcwd (NULL, 0);'.
20716         [! (defined __GLIBC__ && __GLIBC__ >= 2)]:
20717         Use 1300 as initial value for length, not PATH_MAX.
20718
20719         * lib/pathmax.h: Clean up cpp syntax.
20720
20721 2001-08-12  Jim Meyering  <meyering@lucent.com>
20722
20723         * lib/gettimeofday.c: New file.
20724         * lib/gtod.h: New file.
20725         * lib/Makefile.am (libfetish_a_SOURCES): Add gtod.h.
20726
20727 2001-08-05  Jim Meyering  <meyering@lucent.com>
20728
20729         * m4/jm-macros.m4: Require autoconf-2.52.
20730
20731 2001-08-04  Jim Meyering  <meyering@lucent.com>
20732
20733         * lib/error.h (__attribute__): Remove `|| __STRICT_ANSI__' from #if
20734         stmt, to get in sync with glibc.
20735
20736 2001-08-03  Paul Eggert  <eggert@twinsun.com>
20737
20738         The following changes are from gettext 0.10.39 as maintained by
20739         Bruno Haible.
20740
20741         * lib/mbswidth.h (MBSW_REJECT_UNPRINTABLE, MBSW_REJECT_INVALID):
20742         Renamed from MBSW_ACCEPT_UNPRINTABLE and MBSW_ACCEPT_INVALID
20743         with inverted sense.  All uses changed.
20744
20745         * lib/mbswidth.c: Don't include <limits.h>.
20746         Include <stdlib.h> and <string.h> unconditionally.
20747         (iswcntrl, mbsinit, ISCNTRL): New macros.
20748         (mbsnwidth): Use K&R style function declarations.
20749         Don't bother checking for MB_LEN_MAX == 1, since the compiler
20750         can optimize it when MB_CUR_MAX == 1.
20751         The width of control characters is zero, not 1.
20752
20753 2001-08-03  Paul Eggert  <eggert@twinsun.com>
20754
20755         The following changes are from gettext 0.10.39 as maintained by
20756         Bruno Haible, except that getline.m4 continues to use AC_LIBOBJ.
20757
20758         * m4/codeset.m4: Upgrade to serial AM1.
20759         (AM_LANGINFO_CODESET): Renamed from jm_LANGINFO_CODESET;
20760         all uses changed.  Quote first arg of AC_DEFUN.
20761         (am_cv_langinfo_codeset): Renamed from jm_cv_langinfo_codeset.
20762
20763         * m4/iconv.m4: Upgrade to serial AM2.
20764         (AM_ICONV): Renamed from jm_ICONV; all uses changed.
20765         Add --with-libconv-prefix.
20766         Quote first arg of AC_DEFUN.  Add description for ICONV_CONST.
20767         (am_cv_func_iconv): Renamed from jm_cv_func_iconv.
20768         (am_cv_lib_iconv): Renamed from jm_cv_lib_iconv.
20769         (am_cv_proto_iconv): Renamed from jm_cv_proto_iconv.
20770         * m4/jm-macros.m4 (jm_MACROS): Reflect s/jm_/AM_/ renamings.
20771
20772         * m4/c-bs-a.m4 (AC_C_BACKSLASH_A): Quote first arg of AC_DEFUN.
20773         * m4/getline.m4 (AM_FUNC_GETLINE): Likewise.
20774         * m4/glibc21.m4 (jm_GLIBC21): Likewise.
20775         * m4/inttypes_h.m4 (jm_AC_HEADER_INTTYPES_H): Likewise.
20776         * m4/isc-posix.m4 (AC_ISC_POSIX): Likewise.
20777         * m4/lcmessage.m4 (AM_LC_MESSAGES): Likewise.
20778         * m4/progtest.m4 (AM_PATH_PROG_WITH_TEST): Likewise.
20779         * m4/uintmax_t.m4 (jm_AC_TYPE_UINTMAX_T): Likewise.
20780         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Likewise.
20781
20782         * m4/getline.m4 (AM_FUNC_GETLINE): Don't bother checking for
20783         string.h any more.
20784
20785         * m4/progtest.m4 (AM_PATH_PROG_WITH_TEST): If not found, print "no",
20786         not the default value.
20787
20788         2001-06-25  Bruno Haible  <haible@clisp.cons.org>
20789         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Don't require AM_C_PROTOTYPES.
20790         Also check for mbsinit.  Needed for SCO 3.2v5.0.2.
20791         Also include <string.h>; this is where AIX 3.2.5 declares wcwidth.
20792         Also check for iswcntrl, used for wcwidth fallback.
20793         Use AC_TRY_COMPILE to emulate AC_CHECK_DECLS, for portability
20794         to Autoconf 2.13.
20795
20796 2001-08-03  Jim Meyering  <meyering@lucent.com>
20797
20798         * m4/mbrtowc.m4 (jm_FUNC_MBRTOWC): Use `#include', not `@%:@include',
20799         as it was in the original.  Reported by Paul Eggert.
20800
20801 2001-07-16  Jim Meyering  <meyering@lucent.com>
20802
20803         * m4/gettimeofday.m4: New file.
20804         Prompted by a report from Bernhard Baehr.
20805
20806 2001-07-15  Jim Meyering  <meyering@lucent.com>
20807
20808         * m4/Makefile.am.in (Makefile.am): Remove most of the unlocked-io.h
20809         stuff. Now it's in ../Makefile.cfg.
20810
20811 2001-07-15  Jim Meyering  <meyering@lucent.com>
20812
20813         * lib/Makefile.am (EXTRA_DIST): Add unlocked-io.hin.
20814         (BUILT_SOURCES): Add unlocked-io.h.
20815         (io_functions): Define.
20816         (unlocked-io.h): New rule.
20817         (DISTCLEANFILES): Add unlocked-io.h.
20818         (all-local): Depend on unlocked-io.h, to ensure it is created.
20819
20820         * lib/unlocked-io.hin: New file
20821
20822         * lib/regex.c: Update from glibc.
20823
20824 2001-07-05  Jim Meyering  <meyering@lucent.com>
20825
20826         * lib/Makefile.am (noinst_HEADERS): Remove definition, per new automake
20827         recommendation.
20828         (libfetish_a_SOURCES): Put all .h files here instead.
20829         Remove a thus-exposed (better checks in automake) duplicate and
20830         two unnecessary .h files.
20831
20832 2001-07-04  Jim Meyering  <meyering@lucent.com>
20833
20834         * m4/Makefile.am.in (glibc-io.struct): New target.  Rework the code
20835         that generates jm-glibc-io.m4 so that it doesn't trigger any make
20836         distcheck failure.
20837
20838 2001-07-02  Jim Meyering  <meyering@lucent.com>
20839
20840         The following changes were prompted by suggestions from Bruno Haible.
20841
20842         * m4/jm-glibc-io.m4n: New file, the template from which jm-glibc-io.m4
20843         is now generated.
20844         * m4/Makefile.am.in (Makefile.am): Include jm-glibc-io.m4n in emitted
20845         definition of EXTRA_DIST.
20846         (Makefile.am): Emit the dependency, `all-local: jm-glibc-io.m4' to
20847         ensure that the generated file is created/updated whenever the list
20848         of $(unlocked_functions) is changed.
20849         (jm-glibc-io.m4): New rule.
20850         (unlocked-io.h): New rule -- currently unused.
20851
20852 2001-06-24  Jim Meyering  <meyering@lucent.com>
20853
20854         * m4/regex.m4 (jm_INCLUDED_REGEX): Use a quadrigraph to represent an
20855         unmatched right bracket, rather than kludging it with an extra,
20856         falsely-matching quote in a comment.  Patch by Akim Demaille.
20857
20858 2001-06-11  Jim Meyering  <meyering@lucent.com>
20859
20860         * lib/regex.c: Update from GNU libc.
20861
20862 2001-05-27  Jim Meyering  <meyering@lucent.com>
20863
20864         * m4/prereq.m4 (jm_PREREQ_READUTMP): Check for ut_type in struct utmpx.
20865         Check for ut_type in struct utmp.
20866
20867 2001-05-27  Jim Meyering  <meyering@lucent.com>
20868
20869         * lib/readutmp.h (UT_TYPE): Define.
20870
20871 2001-05-24  Jim Meyering  <meyering@lucent.com>
20872
20873         * lib/argmatch.c: Include "quote.h".
20874         (argmatch_invalid): Remove explicit `' quotes.  Instead, use the
20875         quote function.  Reported by Göran Uddeborg.
20876
20877 2001-05-22  Jim Meyering  <meyering@lucent.com>
20878
20879         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't use AC_LIBOBJ(strftime),
20880         now that we use the package-supplied version unconditionally.
20881         (jm_FUNC_STRFTIME): Don't replace strftime, for the same reason.
20882
20883 2001-05-21  Jim Meyering  <meyering@lucent.com>
20884
20885         * m4/regex.m4: Change a couple backticks to single quotes to avoid
20886         shell syntax errors.
20887
20888 2001-05-21  Alexandre Duret-Lutz  <duret_g@epita.fr>
20889
20890         * m4/dos.m4 (jm_AC_DOS): Check for _WIN32, __WIN32__, and __MSDOS__.
20891
20892 2001-05-20  Paul Eggert  <eggert@twinsun.com>
20893
20894         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME):
20895         Don't bother to check library strftime, since
20896         we'll be using our own my_strftime function anyway.
20897         Define my_strftime instead of strftime.
20898
20899 2001-05-20  Alexandre Duret-Lutz  <duret_g@epita.fr>
20900
20901         * lib/dirname.c (dir_name): Compute append_dot using path, not newpath
20902         which is not yet declared.
20903
20904 2001-05-15  Jim Meyering  <meyering@lucent.com>
20905
20906         * m4/regex.m4: Use proper quoting so brackets appear in the test
20907         program.
20908         Reported by, and with help from, Bruno Haible.
20909
20910 2001-05-13  Jim Meyering  <meyering@lucent.com>
20911
20912         * m4/jm-macros.m4 (major_t, minor_t): Define to unsigned int if
20913         undefined.
20914
20915 2001-05-11  Paul Eggert  <eggert@twinsun.com>
20916
20917         dirname code cleanup.  base_name now behaves more compatibly
20918         with POSIX basename when given file names that have trailing
20919         slashes, and similarly for dir_name.  Add new primitives
20920         base_len and dir_len.  Put the directory-name-related decls
20921         into dirname.h.
20922
20923         * lib/addext.c (ISSLASH, base_name): Remove; now in dirname.h.
20924         * lib/backupfile.c (base_name): Likewise.
20925         * lib/basename.c (FILESYSTEM_PREFIX_LEN, PARAMS, ISSLASH): Likewise.
20926         * lib/dirname.c (FILESYSTEM_PREFIX_LEN, ISSLASH): Likewise.
20927         * lib/makepath.c (strip_trailing_slashes): Likewise.
20928         * lib/path-concat.c (DIRECTORY_SEPARATOR, FILESYSTEM_PREFIX_LEN,
20929         ISSLASH): Likewise.
20930         * lib/rename.c (strip_trailing_slashes): Likewise.
20931         * lib/same.c (base_name): Likewise.
20932         * lib/stripslash.c (ISSLASH): Likewise.
20933
20934         * lib/addext.c: Include <dirname.h> after size_t is defined.
20935         * lib/backupfile.c: Likewise.
20936
20937         * lib/addext.c (addext): Use base_len to trim redundant
20938         trailing slashes instead of doing it ourselves.
20939         But do not trim the last slash if it is not redundant.
20940
20941         * lib/backupfile.c (find_backup_file_name,
20942         max_backup_version): Use base_len instead of rolling it ourselves.
20943         Handle the case of "" and (on DOS) "C:" correctly.
20944
20945         * lib/basename.c: Do not include <stdio.h>, <assert.h>; no longer
20946         needed. Include <string.h>, <dirname.h>.
20947         (base_name): Allow file names ending in slashes, other than names
20948         that are all slashes.  In this case, return the basename followed
20949         by the slashes.  This is more general, and can be used in places
20950         where the original base_name purposely had an assertion failure.
20951         (base_len): New function.
20952
20953         * lib/dirname.c: Include <string.h> instead of <stdlib.h>.
20954         Do not include <assert.h>; no longer needed.
20955         Include xalloc.h.
20956         (memrchr): Remove decl.
20957         (dir_name_r): Remove.
20958         (dir_len): Renamed from dirlen.  All callers changed.
20959         Rewrite in terms of base_name, for simplicity and consistency.
20960         (dir_name): Never return NULL.  All callers changed.
20961         Do not include <stdlib.h> in test program; no longer needed.
20962         return 0; is fine for test program.
20963
20964         * lib/dirname.h (DIRECTORY_SEPARATOR, ISSLASH, FILESYSTEM_PREFIX_LEN):
20965         New macros.
20966         (base_name, base_len, dir_len, strip_trailing_slashes): New decls.
20967
20968         * lib/path-concat.c (path_concat): Use base_len to compute
20969         base length, not strlen; this means we cannot rely on memcpy
20970         to null-terminate.
20971
20972         * lib/same.c (STREQ): Remove.
20973         (same_name): Handle the case where the basename ends in trailing '/'.
20974
20975         * lib/stripslash.c (strip_trailing_slashes): Return nonzero if
20976         a slash was stripped.  Do not strip the last slash after a
20977         file system prefix.
20978
20979 2001-05-11  Paul Eggert  <eggert@twinsun.com>
20980
20981         * lib/Makefile.am (libfetish_a_SOURCES):
20982         Add strftime.c, since we now compile it on all hosts.
20983
20984         * lib/strftime.c (my_strftime):
20985         Define to nstrftime if emacs, but only if my_strftime is not defined.
20986         (extra_args, extra_args_spec, extra_args_spec_iso): Rename from
20987         ut_argument, ut_argument_spec, ut_argument_spec_iso, respectively.
20988         Add one more extra argument: a nanoseconds value.
20989         All uses changed.
20990         (ns): New macro.
20991         (my_strftime function): Add %N format.
20992         (emacs_strftimeu): Renamed from emacs_strftime,
20993         with extra ut argument.
20994
20995 2001-05-09  Paul Eggert  <eggert@twinsun.com>
20996
20997         * m4/jm-macros.m4 (jm_MACROS): Do not check for fseeko; no longer used.
20998
20999 2001-04-21  Jim Meyering  <meyering@lucent.com>
21000
21001         * m4/rmdir-errno.m4: Write to a new file, so that a restrictive umask
21002         doesn't interfere.
21003
21004 2001-04-21  Alexandre Duret-Lutz  <duret_g@epita.fr>
21005
21006         * m4/ftruncate.m4: Check for chsize.
21007         Link with ftruncate.o unconditionally if ftruncate is missing.
21008         This was required when cross-compiling to i586-mingw32msvc.
21009
21010 2001-04-08  Jim Meyering  <meyering@lucent.com>
21011
21012         * lib/getdate.y (get_date): Set tm_isdst to -1 to ensure that it is
21013         recomputed; that's necessary when the offset spans a DST transition.
21014         Patch by David J. MacKenzie.  Reported by Hon-Yin Kok.
21015
21016 2001-04-02  Jim Meyering  <meyering@lucent.com>
21017
21018         * lib/regex.h, regex.c: Update from GNU libc.
21019
21020 2001-03-24  Jim Meyering  <meyering@lucent.com>
21021
21022         * m4/jm-macros.m4: Require autoconf-2.49d.
21023
21024 2001-03-20  Bruno Haible  <haible@clisp.cons.org>
21025
21026         * m4/iconv.m4 (jm_ICONV): Recommend GNU libiconv.
21027
21028 2001-03-19  Paul Eggert  <eggert@twinsun.com>
21029
21030         * lib/version-etc.c (version_etc_copyright): Update to 2001.
21031
21032 2001-03-17  Jim Meyering  <meyering@lucent.com>
21033
21034         * m4/memcmp.m4 (jm_AC_FUNC_MEMCMP): Remove my copy of AC_FUNC_MEMCMP,
21035         now that the version in autoconf is equivalent.
21036         (jm_FUNC_MEMCMP): Adjust to use AC_FUNC_MEMCMP.
21037
21038         * m4/error.m4 (jm_PREREQ_ERROR): Invoke AC_FUNC_STRERROR_R.
21039         Suggestion from Akim Demaille.
21040
21041         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_TEMPNAME.
21042         (jm_PREREQ_TEMPNAME): New function.
21043
21044 2001-03-16  Paul Eggert  <eggert@twinsun.com>
21045
21046         * lib/tempname.c (uint64_t): Define to uintmax_t if
21047         not defined, and if UINT64_MAX is not defined.
21048         Required at least for Vax Ultrix4.3, which doesn't define uint64_t.
21049         Reported by John David Anglin.
21050
21051 2001-03-15  Bruno Haible  <haible@clisp.cons.org>
21052
21053         * lib/localcharset.c (locale_charset): Allow wildcard syntax. Also
21054         resolve alias if codeset is empty.
21055         * lib/config.charset (BeOS): Use wildcard syntax.
21056
21057 2001-03-13  Jim Meyering  <meyering@lucent.com>
21058
21059         * lib/path-concat.c (path_concat)
21060         [FILESYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX]: Don't insert a backslash when
21061         concatenating e.g., `C:' and `foo'.
21062         From Bruno Haible.
21063
21064 2001-03-06  Bruno Haible  <haible@clisp.cons.org>
21065
21066         * lib/localcharset.c (locale_charset): Don't use
21067         setlocale(LC_CTYPE,NULL). Don't return NULL.
21068         * lib/unicodeio.c (print_unicode_char): Simplify accordingly.
21069
21070 2001-03-06  Bruno Haible  <haible@clisp.cons.org>
21071
21072         * lib/config.charset: Update for FreeBSD 4.2 and OSF/1 5.1. Add
21073         support for DOS/DJGPP.
21074
21075 2001-03-01  Paul Eggert  <eggert@twinsun.com>
21076
21077         * m4/jm-macros.m4 (jm_MACROS): Use mkstemp replacement if the system
21078         lacks mkstemp.  Compile our own tempname.c if we compile our own
21079         mkstemp.c, as mkstemp relies on tempname.
21080
21081 2001-03-01  Jim Meyering  <meyering@lucent.com>
21082
21083         * m4/dos.m4 (jm_AC_DOS): Remove extra backslashes, now that
21084         AH_VERBATIM really does output its argument verbatim.
21085
21086 2001-02-28  Paul Eggert  <eggert@twinsun.com>
21087
21088         * lib/Makefile.am (libfetish_a_SOURCES):
21089         Add dup-safer.c, fopen-safer.c.
21090         (noinst_HEADERS): Add stdio-safer.h, unistd-safer.h.
21091
21092         * lib/dup-safer.c, lib/fopen-safer.c, lib/stdio-safer.h:
21093         * lib/unistd-safer.h: New files.
21094
21095 2001-02-25  Paul Eggert  <eggert@twinsun.com>
21096
21097         The mkstemp replacement is taken from glibc 2.2.2, with some
21098         portability fixes for use outside glibc, as follows:
21099
21100         * lib/tempname.c (struct_stat64): New macro.
21101         (direxists, __gen_tempname): Use it.
21102         This avoids a portability problem with Solaris 8.
21103
21104         * lib/tempname.c (<config.h>): Include if HAVE_CONFIG_H.
21105         (<stddef.h>, <stdint.h>, <string.h>):
21106         Include only if STDC_HEADERS || _LIBC.
21107         (<fcntl.h>): Include only if HAVE_FCNTL_H || _LIBC.
21108         (<unistd.h>): Include only if HAVE_UNISTD_H || _LIBC.
21109         (<sys/time.h>): Include only if HAVE_SYS_TIME_H || _LIBC.
21110         (__set_errno): Define this macro if <errno.h> doesn't.
21111         (P_tmpdir, TMP_MAX, __GT_FILE, __GT_BIGFILE, __GT_DIR, __GT_NOCREATE):
21112         Define these macros if <stdio.h> doesn't.
21113         (S_ISDIR, S_IRUSR, S_IWUSR, S_IXUSR):
21114         Define these macros if <sys/stat.h>
21115         doesn't.  Ignore <sys/stat.h> S_ISDIR if STAT_MACROS_BROKEN.
21116         (stat64, __getpid, __gettimeofday, __mkdir, __open, __open64, lxstat64,
21117         __xstat64): Define if not _LIBC.
21118         (__secure_getenv): Define if ! (HAVE___SECURE_GETENV || _LIBC).
21119         (__gen_tempname): Invoke gettimeofday only if
21120         HAVE_GETTIMEOFDAY || _LIBC;
21121         otherwise, fall back on plain "time".
21122         Use macros like S_IRUSR | S_IWUSR rather than octal values like 0600.
21123
21124         * lib/mkstemp.c (__GT_FILE): Define to zero if not defined.
21125
21126         * lib/mkstemp.c, lib/tempname.c: New files, taken from glibc 2.2.2.
21127
21128 2001-02-18  Paul Eggert  <eggert@twinsun.com>
21129
21130         * m4/jm-macros.m4 (jm_CHECK_ALL_HEADERS): Check for sys/resource.h.
21131
21132 2001-02-17  Paul Eggert  <eggert@twinsun.com>
21133
21134         * m4/mbrtowc.m4: New file, defining jm_FUNC_MBRTOWC.
21135         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH):
21136         Use jm_FUNC_MBRTOWC, not AC_CHECK_FUNCS(mbrtowc).
21137         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Likewise.
21138
21139 2001-02-17  Paul Eggert  <eggert@twinsun.com>
21140
21141         * lib/mbswidth.c, quotearg.c (mbrtowc, mbsinit):
21142         Remove workaround macros for hosts that have mbrtowc but not
21143         mbstate_t, as we now insist on proper declarations for both
21144         before using mbrtowc.
21145
21146 2001-02-17  Jim Meyering  <meyering@lucent.com>
21147
21148         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Don't check for
21149         getmntent via AC_CHECK_FUNCS, since that would get a `no' and disrupt
21150         further attempts by AC_FUNC_GETMNTENT to check with e.g., -lgen on
21151         UnixWare 7.1.1.
21152
21153         * m4/mbrtowc.m4 (jm_FUNC_MBRTOWC): Adapt to use AC_CACHE_CHECK etc.,
21154         rather than AC_CACHE_VAL.
21155
21156 2001-02-17  Jim Meyering  <meyering@lucent.com>
21157
21158         * lib/strtoul.c: Sync from GNU libc.  Use double quotes, not <...>
21159         around included file name.
21160
21161         * lib/strnlen.c (__strnlen): Merge in a change from GNU libc.
21162
21163         * lib/strftime.c: Update from GNU libc (the only changes were to
21164         comments).
21165
21166 2001-02-17  Jim Meyering  <meyering@lucent.com>
21167
21168         * lib/regex.c: Update from libc.
21169
21170 2001-02-17  Bruno Haible  <haible@clisp.cons.org>
21171
21172         * lib/mbswidth.h (mbswidth): Also define as macro, to avoid prototype
21173         clash.
21174
21175 2001-02-16  Paul Eggert  <eggert@twinsun.com>
21176
21177         * lib/alloca.c (malloc): Undef before defining, since stdlib.h
21178         may have defined it.  Needed for Encore Umax-3.0.9.16b systems.
21179         Reported by Mark Hounschell via Paul Eggert.
21180
21181 2001-02-07  Jim Meyering  <meyering@lucent.com>
21182
21183         * m4/regex.m4 (jm_INCLUDED_REGEX): Add a test for the latest bug.
21184
21185 2001-02-05  Jim Meyering  <meyering@lucent.com>
21186
21187         * m4/jm-macros.m4: Require autoconf-2.14d (not yet released), because
21188         it includes the patch required for `large file' support with at least
21189         HP-UX's 10.20 /bin/cc.
21190
21191 2001-02-03  Jim Meyering  <meyering@lucent.com>
21192
21193         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Restore prior use of
21194         AS_IF, now that it works once again (mysteriously).
21195         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Likewise.
21196
21197 2001-01-30  Jim Meyering  <meyering@lucent.com>
21198
21199         Don't use filenames that are 8.3-equivalent to "conftest" on DOS.
21200         * m4/chown.m4: Rename conftestchown to conftest.chown.
21201         * m4/rename.m4: s/conftestdir/conftest.d1/ and
21202         s/conftestdir2/conftest.d2/.
21203         * m4/utimes.m4: s/conftestdata/conftest.data/
21204         Inspired by Pavel Roskin's change in autoconf.
21205
21206 2001-01-30  Bruno Haible  <haible@clisp.cons.org>
21207
21208         * lib/config.charset: Update for FreeBSD 4.2.
21209
21210 2001-01-27  Jim Meyering  <meyering@lucent.com>
21211
21212         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Open-code what was
21213         a use of AS_IF.
21214         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Likewise.
21215
21216 2001-01-26  Jim Meyering  <meyering@lucent.com>
21217
21218         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Check for stddef.h, now that
21219         quotearg.c includes it.
21220
21221 2001-01-26  Jim Meyering  <meyering@lucent.com>
21222
21223         * lib/quotearg.c: Include stddef.h.
21224         * lib/quote.c: Include stddef.h.
21225         Reported by Axel Kittenberger.
21226
21227         * lib/xmalloc.c [HAVE_DONE_WORKING_MALLOC_CHECK]: Enclose error-evoking
21228         line in double quotes so that it evokes a better diagnostic.
21229         [HAVE_DONE_WORKING_REALLOC_CHECK]: Likewise.
21230         Reported by Axel Kittenberger.
21231
21232 2001-01-24  Stefan Monnier  <monnier@cs.yale.edu>
21233
21234         * regex.c (mutually_exclusive_p): Don't blindly handle `charset_not'
21235         as if it was a `charset'.
21236
21237 2001-01-21  Bruno Haible  <haible@clisp.cons.org>
21238
21239         * m4/iconv.m4 (jm_ICONV): Also check whether the iconv declaration
21240         has const.
21241
21242 2001-01-21  Bruno Haible  <haible@clisp.cons.org>
21243
21244         * lib/unicodeio.c (print_unicode_char): Cast the second iconv() arg,
21245         to avoid a warning.  Add back 'const' to inptr.
21246
21247 2001-01-20  Jim Meyering  <meyering@lucent.com>
21248
21249         Be sure that headers are checked before used in code compiled
21250         for the type checks.
21251         * m4/jm-macros.m4 (jm_MACROS): Remove all header checks.
21252         In place of that, invoke jm_CHECK_ALL_TYPES.
21253         (jm_CHECK_ALL_HEADERS): New functions with the above checks.
21254         (jm_CHECK_ALL_TYPES): Require jm_CHECK_ALL_HEADERS.
21255         Alan Iwi reported a build failure on an f300-fujitsu-uxpv4.1_ES;
21256         The check for ssize_t was mistakenly run before the test for unistd.h.
21257
21258         The configure-time check for stdbool.h was missing.
21259         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_HASH.
21260         (jm_PREREQ_HASH): New function.
21261
21262 2001-01-17  Jim Meyering  <meyering@lucent.com>
21263
21264         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Use AS_IF, not AS_IFELSE,
21265         for autoconf-2.49c.
21266         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Likewise.
21267
21268 2001-01-16  Jim Meyering  <meyering@lucent.com>
21269
21270         * lib/basename.c: Include <stdio.h>, needed by assert on SunOS 4.
21271         From Bruno Haible.
21272
21273 2001-01-14  Jim Meyering  <meyering@lucent.com>
21274
21275         * m4/rename.m4: Use temporary directories named conftestdir{,2}, not
21276         foo and bar.  Create conftestdir/ in the script, not in the C code.
21277         Remove directories in the script, not in the C code.
21278         Remove conftestdir{,2} before trying to create the directory.
21279         Make the entire configure script fail if the mkdir fails.
21280
21281 2001-01-14  Jim Meyering  <meyering@lucent.com>
21282
21283         * lib/rename.c: New file.  From Volker Borchert.
21284         Include stdlib.h, string.h or strings.h, and xalloc.h.
21285         Use strip_trailing_slashes rather than open-coding it.
21286
21287 2001-01-03  Paul Eggert  <eggert@twinsun.com>
21288
21289         * lib/strftime.c: Sync with glibc time/strftime.c 1.81.
21290
21291 2001-01-03  Jim Meyering  <meyering@lucent.com>
21292
21293         * lib/unicodeio.c (print_unicode_char): Remove `const' from declaration
21294         of local `inptr' to avoid warning with some system declarations of
21295         iconv.
21296
21297 2001-01-02  Volker Borchert  <bt@teknon.de>
21298
21299         * m4/rename.m4: New file.
21300         * m4/jm-macros.m4 (jm_MACROS): Require vb_FUNC_RENAME.
21301
21302 2001-01-01  Jim Meyering  <meyering@lucent.com>
21303
21304         * m4/prereq.m4 (jm_PREREQ_READUTMP): Include utmp.h (if available),
21305         even on systems with utmpx.h.  It's necessary for the declaration of
21306         utmp's ut_user member.  Reported by Andreas Jaeger.
21307
21308         * m4/check-decl.m4 (jm_CHECK_DECLS): Include grp.h and pwd.h if
21309         available. They are required for the declarations of getgrgid and
21310         getpwuid resp.
21311         (_jm_DECL_HEADERS): Check for grp.h and pwd.h.
21312         Reported by Andreas Jaeger.
21313
21314 2001-01-01  Alexandre Duret-Lutz  <duret_g@epita.fr>
21315
21316         * m4/libintl.m4 (AM_GNU_GETTEXT): Define MKINSTALLDIRS by
21317         expanding the value of $ac_aux_dir, as in AM_MISSING_HAS_RUN,
21318         so `make install' also works in VPATH builds.
21319
21320 2000-12-31  Alexandre Duret-Lutz  <duret_g@epita.fr>
21321
21322         * m4/libintl.m4 (AM_WITH_NLS): When using AC_CONFIG_AUX_DIR,
21323         prepend $(top_srcdir) to the value of MKINSTALLDIRS so that it
21324         can be used in subdirectories.
21325
21326 2000-12-29  Paul Eggert  <eggert@twinsun.com>
21327
21328         * lib/modechange.c: Do not assume that mode_t uses the
21329         traditional octal encoding.  E.g. "chmod 1 FOO" should set
21330         the other-execute bit of FOO even if S_IXOTH != 1.
21331
21332         (SUID, SGID, SVTX, RUSR, WUSR, XUSR, RGRP, WGRP, XGRP, ROTH,
21333         WOTH, XOTH, ALLM): New macros.
21334         (S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR,
21335          S_IRGRP, S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH):
21336         Use them.
21337         (S_ISGID): Fix typo; it was defaulting to the same value as S_ISUID.
21338         (S_IRWXU, S_IRWXG, S_IRWXO): Specify defaults in terms of the above.
21339         (mode_compile):
21340         No need to use uintmax_t; unsigned long is long enough.
21341         Don't bother to get suffix since we don't use it.
21342
21343 2000-12-26  Jim Meyering  <meyering@lucent.com>
21344
21345         * m4/dos.m4 (jm_AC_DOS): Rewrite (though it's still a stub) to work
21346         better with autoheader.
21347
21348 2000-12-24  Jim Meyering  <meyering@lucent.com>
21349
21350         * lib/hash.c (is_prime): Return explicit boolean values.
21351         (hash_get_first): Return NULL to appease Irix5.6's 89.
21352         Reported by Nelson Beebe.
21353
21354 2000-12-19  Bruno Haible  <haible@clisp.cons.org>
21355
21356         * lib/localcharset.c (locale_charset): Add support for Win32.
21357
21358 2000-12-18  Paul Eggert  <eggert@twinsun.com>
21359
21360         * lib/physmem.h, lib/physmem.c: New files.
21361
21362         * lib/Makefile.am (libfetish_a_SOURCES): Add physmem.c.
21363         (noinst_HEADERS): Add physmem.h.
21364
21365         * lib/xstrtol.c (__xstrtol): Add undocumented suffixes 'g' and
21366         't' for compatibility with Solaris 8 sort.
21367
21368 2000-12-18  Bruno Haible  <haible@clisp.cons.org>
21369
21370         * lib/config.charset: Add support for BeOS.
21371
21372 2000-12-17  Jim Meyering  <meyering@lucent.com>
21373
21374         * m4/dos.m4 (jm_AC_DOS): New file and macro.
21375         * m4/jm-macros.m4 (jm_MACROS): Require jm_AC_DOS.
21376
21377 2000-12-16  Jim Meyering  <meyering@lucent.com>
21378
21379         This bug had a serious impact on chown: `chown N:M FILE' (for integer
21380         N and M) would have treated it like `chown N:N FILE'.
21381
21382         * lib/userspec.c (parse_user_spec): Fix typo: s/u/g/.
21383
21384 2000-12-16  Jim Meyering  <meyering@lucent.com>
21385
21386         * lib/getusershell.c [!SHELLS_FILE && __DJGPP__]: Define
21387         SHELLS_FILE to a file name that's useful on djgpp systems.
21388         Include stdlib.h.
21389         (ADDITIONAL_DEFAULT_SHELLS): Define.
21390         (default_shells): Prepend ADDITIONAL_DEFAULT_SHELLS.
21391         Based mostly on a patch from Prashant TR.
21392
21393 2000-12-16  Bruno Haible  <haible@clisp.cons.org>
21394
21395         * lib/config.charset: Add ISO-8859-3, BIG5HKSCS, GB18030, JOHAB,
21396         VISCII, CP874, CP949, CP950, CP1250, CP1253, CP1254, CP1255, CP1256,
21397         CP1257 to the list of canonical encodings. Rename EUC-CN to GB2312.
21398
21399 2000-12-08  Andreas Schwab  <schwab@suse.de>
21400
21401         * lib/mbswidth.c (mbsnwidth): Don't loop endlessly when called with an
21402         invalid mulitbyte sequence and with the MBSW_ACCEPT_INVALID flag set.
21403
21404 2000-12-07  Jim Meyering  <meyering@lucent.com>
21405
21406         * lib/stripslash.c (ISSLASH): Define.
21407         (strip_trailing_slashes): Use ISSLASH rather than comparing against
21408         `/'.
21409         From Prashant TR.
21410
21411         * lib/dirname.c (FILESYSTEM_PREFIX_LEN): Define.
21412         (dir_name_r): Declare this function as static.
21413         [BACKSLASH_IS_PATH_SEPARATOR]: Fix a bug that'd
21414         manifest itself on a name containing a mix of slashes and
21415         backslashes.
21416         Make this function work with names starting with a DOS-style
21417         drive letter and colon prefix.
21418         (dir_name): Append `.' if necessary.
21419         Based mostly on patches from Prashant TR and Eli Zaretskii.
21420
21421         * lib/dirname.h (dir_name_r): Remove prototype.
21422
21423 2000-12-06  Paul Eggert  <eggert@twinsun.com>
21424
21425         * m4/off_t-format.m4: Remove this file.
21426         * m4/jm-macros.m4 (jm_MACROS): Remove jm_SYS_OFF_T_PRINTF_FORMAT.
21427
21428 2000-12-06  Jim Meyering  <meyering@lucent.com>
21429
21430         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): If we need the
21431         replacement strtoull, we may well need the replacement strtoul, too.
21432         Check for declarations of strtoul and strtoull.
21433         Check for strtol.  Mainly as a cue to cause automake to include
21434         strtol.c -- that file is included by each of strtoul.c and strtoull.c.
21435         Check for limits.h -- strtol.c needs it.
21436
21437 2000-12-05  Jim Meyering  <meyering@lucent.com>
21438
21439         * lib/dirname.c (dir_name_r): Add `const' in a few local declarations.
21440
21441 2000-12-04  Jim Meyering  <meyering@lucent.com>
21442
21443         * lib/path-concat.c: [!HAVE_DECL_MALLOC]: Declare malloc.
21444         Also include memory.h, stdlib.h, unistd.h if appropriate.
21445         Reported by Andreas Jaeger (conflicting declaration of malloc).
21446
21447 2000-12-02  Jim Meyering  <meyering@lucent.com>
21448
21449         * m4/off_t-format.m4 (OFF_T_PRINTF_FORMAT_STRING): New file/macro.
21450         * m4/jm-macros.m4 (jm_MACROS): require it.
21451
21452 2000-12-02  Jim Meyering  <meyering@lucent.com>
21453
21454         * lib/closeout.h: Make idempotent, to avoid some obscure warnings.
21455
21456 2000-12-01  Paul Eggert  <eggert@twinsun.com>
21457
21458         * lib/memrchr.c: Include <config.h> before any system include file.
21459
21460 2000-11-30  Jim Meyering  <meyering@lucent.com>
21461
21462         * m4/jm-macros.m4 (jm_MACROS): Check for stdint.h.
21463
21464 2000-11-30  Jim Meyering  <meyering@lucent.com>
21465
21466         * m4/getloadavg.m4: s/ifval/m4_ifval/ to accommodate new autoconf.
21467
21468 2000-11-29  Paul Eggert  <eggert@twinsun.com>
21469
21470         * lib/dirname.c (dir_name_r): Fix typo: int -> size_t.
21471
21472 2000-11-26  Jim Meyering  <meyering@lucent.com>
21473
21474         * lib/memcoll.c: Include sys/types.h.  From Werner Almesberger.
21475
21476 2000-11-22  Paul Eggert  <eggert@twinsun.com>
21477
21478         * lib/strftime.c (my_strftime): Do not invoke mbrlen with a
21479         size of (size_t) -1; it's not portable.
21480
21481 2000-11-17  Jim Meyering  <meyering@lucent.com>
21482
21483         * lib/strstr.c: Update from GNU libc.
21484
21485 2000-11-17  Akim Demaille  <akim@epita.fr>
21486
21487         * lib/obstack.h: Formatting changes.
21488         (obstack_grow, obstack_grow0): Don't cast WHERE at all: that would
21489         prevent type checking.
21490         (obstack_ptr_grow, obstack_ptr_grow_fast): When assigning, don't
21491         cast the value to (void *): assigning a `foo *' to a `void *'
21492         variable is valid.
21493         (obstack_int_grow, obstack_int_grow_fast): Don't cast AINT to int.
21494
21495 2000-11-16  Jim Meyering  <meyering@lucent.com>
21496
21497         * lib/strverscmp.c: Incorporate weak-alias-related changes from glibc.
21498
21499 2000-11-11  Jim Meyering  <meyering@lucent.com>
21500
21501         * lib/error.c: Add a couple #includes, merging from GNU libc version.
21502
21503 2000-11-10  Jim Meyering  <meyering@lucent.com>
21504
21505         * lib/obstack.h: Update from GNU libc.
21506         * lib/obstack.c: Likewise.
21507
21508 2000-11-08  Bruno Haible  <haible@clisp.cons.org>
21509
21510         * m4/jm-macros.m4 (jm_MACROS): Add test for wcrtomb.
21511
21512 2000-11-06  Paul Eggert  <eggert@twinsun.com>
21513
21514         * lib/getusershell.c (setusershell): Use rewind rather than
21515         fseek/fseeko, to avoid configuration hassles with fseeko.
21516         Don't bother opening SHELLS_FILE if shellstream is NULL;
21517         it's not necessary.
21518
21519 2000-11-05  Jim Meyering  <meyering@lucent.com>
21520
21521         * lib/makepath.h (make_dir): Declare.
21522         * lib/makepath.c (make_dir): Remove `static' attribute.
21523         Tweak a comment.
21524
21525 2000-11-04  Jim Meyering  <meyering@lucent.com>
21526
21527         * m4/regex.m4: Use the `m4_' prefix on `syscmd' and `m4_sysval'.
21528
21529 2000-11-04  Alexandre Duret-Lutz  <duret_g@epita.fr>
21530
21531         * lib/hash.c (hash_get_next): Fix a thinko:  when ENTRY is the
21532         last one in a bucket, advance to the next bucket.
21533
21534 2000-11-02  Vesselin Atanasov  <vesselin@bgnet.bg>
21535
21536         * lib/fnmatch.c: Do not comment out all the code if we are using
21537         the GNU C library, because in some cases we are replacing buggy
21538         code in the GNU C library itself.
21539
21540 2000-10-30  Stefan Monnier  <monnier@cs.yale.edu>
21541
21542         * regex.c (re_iswctype, re_wctype_to_bit): Fix braino.
21543         (regex_compile): Catch bogus \(\1\).
21544
21545 2000-10-30  Paul Eggert  <eggert@twinsun.com>
21546
21547         * lib/fnmatch.c (FOLD): Do not assume that characters are unsigned.
21548         (fnmatch): Fix some FNM_FILE_NAME and FNM_LEADING_DIR bugs,
21549         e.g. fnmatch("d*/*1", "d/s/1", FNM_FILE_NAME) incorrectly yielded zero.
21550
21551 2000-10-30  Paul Eggert  <eggert@twinsun.com>
21552
21553         * lib/error.h, getline.h, modechange.h:
21554         Remove "2000" from Copyright line, as the file hasn't been
21555         changed this year other than in the copyright notice.
21556
21557         * lib/xalloc.h: Add "2000" to Copyright line, as this file
21558         was changed this year.
21559
21560 2000-10-29  Jim Meyering  <meyering@lucent.com>
21561
21562         * m4/fsusage.m4: s/AC_SHELL_IFELSE/AS_IFELSE/ to match autoconf
21563         renaming.
21564         * m4/ls-mntd-fs.m4: Likewise
21565
21566 2000-10-29  Jim Meyering  <meyering@lucent.com>
21567
21568         * lib/xstat.in: Fix grammar in comment.
21569
21570 2000-10-29  Greg Louis  <glouis@dynamicro.on.ca>
21571
21572         * lib/regex.h (__restrict_arr): Move definition out of #ifndef block.
21573         Required because egcs-2.91.66 (aka 1.1.2) defines __restrict, but
21574         doesn't define __restrict_arr.
21575
21576 2000-10-28  Jim Meyering  <meyering@lucent.com>
21577
21578         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_MEMCHR.
21579         (jm_PREREQ_MEMCHR): New function.
21580
21581 2000-10-28  Jim Meyering  <meyering@lucent.com>
21582
21583         * lib/memchr.c: Update from libc.
21584         Adjust for portability:
21585         [HAVE_STDLIB_H]: Include stdlib.h.
21586         [HAVE_BP_SYM_H || _LIBC]: Guard inclusion of bp-sym.h.
21587         Undef __memchr, too.
21588         [!weak_alias]: Define __memchr to memchr.
21589
21590         * lib/regex.c: Update from libc.
21591         * lib/regex.h: Likewise.
21592         * lib/getopt1.c: Likewise.
21593         * lib/memcmp.c: Likewise.
21594
21595         * lib/getusershell.c (setusershell) [HAVE_FSEEKO]: Use fseeko.
21596         Avoid using fseek, when possible -- it's broken by design.
21597         Patch by Ulrich Drepper.
21598
21599 2000-10-27  Stefan Monnier  <monnier@cs.yale.edu>
21600
21601         * regex.c (POP_FAILURE_REG_OR_COUNT, re_match_2_internal)
21602         (re_match_2_internal, re_match_2_internal, re_match_2_internal):
21603         Giving in to popular pressure to shut up the compiler with casts.
21604
21605 2000-10-26  Jim Meyering  <meyering@lucent.com>
21606
21607         * lib/strftime.c: Update from libc.
21608
21609 2000-10-25  Stefan Monnier  <monnier@cs.yale.edu>
21610
21611         * regex.c: More `unsigned char' -> `re_char' changes.
21612         Also change several `int' into `re_wchar_t'.
21613         (PATTERN_STACK_EMPTY, PUSH_PATTERN_OP, POP_PATTERN_OP): Remove.
21614         (PUSH_FAILURE_POINTER): Don't cast any more.
21615         (POP_FAILURE_REG_OR_COUNT): Remove the cast that strips `const'.
21616         We want GCC to complain, since this piece of code makes
21617         re_match non-reentrant, which *should* be fixed.
21618         (GET_BUFFER_SPACE): Use size_t rather than unsigned long.
21619         (EXTEND_BUFFER): Use RETALLOC.
21620         (SET_LIST_BIT): Don't cast.
21621         (re_wchar_t): New type.
21622         (re_iswctype, re_wctype_to_bit): Make it crystal clear to GCC
21623         that those two functions will always properly return.
21624         (IMMEDIATE_QUIT_CHECK): Cast to void.
21625         (analyse_first): Use recursion rather than an explicit stack.
21626         (re_compile_fastmap): Can't fail anymore.
21627         (re_search_2): Don't check re_compile_fastmap for failure.
21628         (PUSH_NUMBER): Renamed from PUSH_FAILURE_COUNT.
21629         Now also sets the new value (passed in a new argument).
21630         (re_match_2_internal): Use it.
21631         Also, use a new var `reg' of type size_t when looping through regs
21632         rather than reuse the inappropriate `mcnt'.
21633
21634 2000-10-25  Jim Meyering  <meyering@lucent.com>
21635
21636         * lib/obstack.c: Update from libc.
21637
21638 2000-10-24  Kenichi Handa  <handa@etl.go.jp>
21639
21640         * regex.c (regex_compile): Change the way of handling a range from
21641         a char less than 256 to a char not less than 256.
21642
21643 2000-10-24  Andrew Innes  <andrewi@gnu.org>
21644
21645         * regex.c (IMMEDIATE_QUIT_CHECK): New macro, which does QUIT on
21646         NT-Emacs only.
21647         (re_match_2_internal): Use IMMEDIATE_QUIT_CHECK instead of QUIT,
21648         so that re_search functions only quit when callers expect them to.
21649
21650 2000-10-23  Jim Meyering  <meyering@lucent.com>
21651
21652         * lib/hard-locale.c (hard_locale): Revert last change -- it was simply
21653         wrong.  That set_locale call must not have any side effects.
21654         From Paul Eggert.
21655
21656 2000-10-22  Jim Meyering  <meyering@lucent.com>
21657
21658         * lib/md5.c (md5_process_block) [OP]: Use `rol', not CYCLIC.
21659         [CYCLIC]: Remove now-unused definition.
21660
21661         * lib/save-cwd.c (O_DIRECTORY): Define, if needed.
21662         (save_cwd) [HAVE_FCHDIR]: Use O_DIRECTORY when opening ".".
21663         Suggestion from Ulrich Drepper.
21664
21665 2000-10-21  Jim Meyering  <meyering@lucent.com>
21666
21667         * m4/check-decl.m4 (jm_CHECK_DECLS): Also check for memrchr.
21668         * m4/prereq.m4 (jm_PREREQ_DIRNAME): New macro.
21669         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memrchr.
21670
21671 2000-10-21  Jim Meyering  <meyering@lucent.com>
21672
21673         * lib/dirname.c (memrchr): Declare if necessary.
21674         (dir_name): Remove the restriction that there be no
21675         trailing slashes.  Now, this code skips past them, effectively
21676         ignoring them.
21677         [TEST_DIRNAME] (main): New unit tests.
21678
21679         * lib/memrchr.c: New file from GNU libc.
21680         Undef __memrchr, too.
21681         [!weak_alias]: Define __memrchr to memrchr.
21682         Guard weak_alias use with `#ifdef weak_alias'.
21683
21684 2000-10-21  Jim Meyering  <meyering@lucent.com>
21685
21686         * lib/dirname.c (dir_name_r): New function, factored out of dir_name.
21687         (dir_name): Use dir_name_r.
21688         * lib/dirname.h (dir_name_r): Declare it.
21689
21690 2000-10-17  Jim Meyering  <meyering@lucent.com>
21691
21692         * lib/quote.h (PARAMS): Define and use.
21693         Reported by Akim Demaille.
21694
21695         * lib/getopt.c: Update from libc.
21696
21697 2000-10-16  Jim Meyering  <meyering@lucent.com>
21698
21699         * lib/hard-locale.c (hard_locale): Use "", not 0 as 2nd arg to
21700         setlocale.
21701         From Jan Fedak.
21702
21703 2000-10-15  Stefan Monnier  <monnier@cs.yale.edu>
21704
21705         * regex.c (WIDE_CHAR_SUPPORT): Define if _LIBC as well.
21706
21707 2000-09-25  Jim Meyering  <meyering@lucent.com>
21708
21709         * lib/md5.h (rol): Define (from GnuPG).
21710
21711         * lib/sha.c: Give credit (GnuPG) where due.
21712         (M): Use rol rather than open-coding it.
21713         Add a FIXME comment.
21714
21715 2000-09-21  Jim Meyering  <meyering@lucent.com>
21716
21717         * lib/userspec.c (parse_user_spec): Remove debugging printf I'd added.
21718         Reported by Michael Stone.
21719
21720 2000-09-20  Jim Meyering  <meyering@lucent.com>
21721
21722         * lib/Makefile.am (libfetish_a_SOURCES): Add sha.c.
21723         (noinst_HEADERS): Add sha.h.
21724         Based on code from Scott G. Miller and from GnuPG.
21725
21726 2000-09-18  Jim Meyering  <meyering@lucent.com>
21727
21728         * m4/getloadavg.m4 (AC_FUNC_GETLOADAVG): Restore the initial value of
21729         LIBS. Otherwise, everyone ends up linking with -lelf for some
21730         configurations.
21731         Reported by Mike Stone.
21732
21733 2000-09-15  Jim Meyering  <meyering@lucent.com>
21734
21735         * lib/regex.c: Update from libc.
21736
21737 2000-09-10  Jim Meyering  <meyering@lucent.com>
21738
21739         * lib/getopt.c (_getopt_internal): Update from glibc.
21740
21741 2000-09-09  Jim Meyering  <meyering@lucent.com>
21742
21743         * lib/quotearg.c: Rename ISASCII to IN_CTYPE_DOMAIN, so people don't
21744         think it should be used as a general replacement for isascii.
21745         * lib/fnmatch.c: Likewise.
21746         * lib/mbswidth.c: Likewise
21747         * lib/regex.c: Likewise.
21748
21749         Don't use atoi.
21750         * lib/userspec.c: Include sys/param.h and limits.h.
21751         Include xstrtol.h.
21752         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Define.
21753         (UID_T_MAX, GID_T_MAX, MAXUID, MAXGID): Define.
21754         (parse_user_spec): Use xstrtoul, not atoi when converting numeric
21755         UID, GID.  Check range.
21756
21757 2000-09-06  Jim Meyering  <meyering@lucent.com>
21758
21759         * lib/getopt.c (_getopt_internal): Update from glibc.
21760
21761 2000-08-30  Jim Meyering  <meyering@lucent.com>
21762
21763         * lib/strftime.c: Merge in changes from GNU libc.
21764
21765 2000-08-26  Jim Meyering  <meyering@lucent.com>
21766
21767         * m4/jm-macros.m4: Use jm_FUNC_FPENDING.
21768         * m4/fpending.m4: New file.
21769
21770 2000-08-26  Jim Meyering  <meyering@lucent.com>
21771
21772         * lib/closeout.c: Include "__fpending.h".
21773         (close_stdout_status): Return right away if there's nothing to flush.
21774
21775         * lib/Makefile.am (noinst_HEADERS): Add __fpending.h.
21776         * lib/__fpending.c: New file.
21777         * lib/__fpending.h: New file.
21778
21779 2000-08-20  Jim Meyering  <meyering@lucent.com>
21780
21781         * m4/check-decl.m4: Include utmp.h `#if HAVE_UTMP_H', rather than
21782         `#if !HAVE_UTMPX_H'.  The latter would lose on systems with neither
21783         utmp.h nor utmpx.h.  Reported by Eli Zaretskii.
21784
21785 2000-08-11  J. David Anglin  <dave@hiauly1.hia.nrc.ca>
21786
21787         Improve fileutils installation on systems where running
21788         programs (like install) can't be unlinked.
21789         * m4/unlink-busy.m4 (jm_FUNC_UNLINK_BUSY_TEXT): New file/macro.
21790         * m4/jm-macros.m4: Use jm_FUNC_UNLINK_BUSY_TEXT.
21791
21792 2000-08-07  Paul Eggert  <eggert@twinsun.com>
21793
21794         Standardize on "memory exhausted" instead of "Memory exhausted"
21795         or "virtual memory exhausted".
21796         * lib/obstack.c (print_and_abort): Use "memory exhausted", not
21797         "virtual memory exhausted".
21798         * lib/same.c (same_name): Invoke xalloc_die instead of printing
21799         our own message.
21800         * lib/userspec.c (parse_user_spec): Likewise.
21801         * lib/bumpalloc.h: comment fix
21802         * lib/same.c, userspec.c: Include xalloc.h.
21803
21804         * lib/xalloc.h (xalloc_msg_memory_exhausted): Now char const[],
21805         not char *const and pointing to a constant array.
21806         * lib/xmalloc.c (xalloc_msg_memory_exhausted): Likewise.
21807         (xrealloc): Comment fix.
21808
21809         * lib/userspec.c (parse_user_spec):
21810         Don't translate a message until just before returning,
21811         to avoid unnecessary translation.
21812
21813 2000-08-07  Jim Meyering  <meyering@lucent.com>
21814
21815         * lib/addext.c, argmatch.c, argmatch.h, backupfile.h, bumpalloc.h,
21816         chown.c, diacrit.h, dirname.h, dup2.c, exclude.h, fileblocks.c,
21817         fnmatch.c, fnmatch.h, fsusage.c, fsusage.h, getdate.h,
21818         getgroups.c, gethostname.c, getopt.h, group-member.c,
21819         hard-locale.c, hash.h, isdir.c, lchown.c, linebuffer.c,
21820         linebuffer.h, long-options.h, malloc.c, md5.c, md5.h, memchr.c,
21821         memcmp.c, memcoll.c, memset.c, mktime.c, modechange.h, obstack.h,
21822         pathmax.h, realloc.c, rmdir.c, safe-read.c, save-cwd.c, stime.c,
21823         stpcpy.c, strcasecmp.c, strcspn.c, strdup.c, stripslash.c,
21824         strstr.c, strtod.c, strtol.c, strtoul.c, strtoull.c, strtoumax.c,
21825         utime.c, version-etc.h, xalloc.h, xstrdup.c, xstrtoumax.c,
21826         yesno.c: Back out Copyright date changes for each file with no change
21827         this year.  This eases coordination with other programs using the same
21828         source code modules.  From Paul Eggert.
21829
21830 2000-08-06  Paul Eggert  <eggert@twinsun.com>
21831
21832         * m4/mbstate_t.m4 (AC_MBSTATE_T): Define mbstate_t to be int,
21833         not char, for compatibility with glibc 2.1.3 strftime.c.
21834
21835 2000-08-03  Greg McGary  <greg@mcgary.org>
21836
21837         * lib/regex.c (SET_HIGH_BOUND, MOVE_BUFFER_POINTER,
21838         ELSE_EXTEND_BUFFER_HIGH_BOUND): New macros.
21839         (EXTEND_BUFFER): Use them.
21840
21841 2000-08-01  Jim Meyering  <meyering@lucent.com>
21842
21843         * lib/dirname.c (ISSLASH): Define.
21844         (BACKSLASH_IS_PATH_SEPARATOR): Define.
21845         (dir_name) [BACKSLASH_IS_PATH_SEPARATOR]: Handle the case in which
21846         both `\' and `/' may be use as path separators.
21847         Based on a patch from Prashant TR.
21848
21849 2000-07-31  Paul Eggert  <eggert@twinsun.com>
21850
21851         * lib/quotearg.c (quotearg_n_options): Don't make the initial
21852         slot vector a constant, since it might get modified.
21853
21854 2000-07-31  Jim Meyering  <meyering@lucent.com>
21855
21856         * lib/xmalloc.c: Use `virtual memory exhausted', not
21857         `Memory exhausted'.
21858         * lib/obstack.c (print_and_abort): Likewise.
21859
21860 2000-07-30  Paul Eggert  <eggert@twinsun.com>
21861
21862         * lib/quotearg.c (quotearg_n_options): Preallocate a slot 0
21863         buffer, so that the caller can always quote one small
21864         component of a "memory exhausted" message in slot 0.
21865         From a suggestion by Jim Meyering.
21866
21867 2000-07-30  Jim Meyering  <meyering@lucent.com>
21868
21869         * lib/makepath.c (make_path): Quote the other instance, too.
21870
21871         * lib/quotearg.c (N_STATIC_SLOTVECS): Define.
21872         (STATIC_BUF_SIZE): Define.
21873         (quotearg_n_options): Use only statically allocated storage when
21874         N < N_STATIC_SLOTVECS and the length of the quoted result is smaller
21875         than STATIC_BUF_SIZE.
21876
21877 2000-07-29  Jim Meyering  <meyering@lucent.com>
21878
21879         * lib/diacrit.c (diacrit_diac): Use __MSDOS__ in favor of MSDOS.
21880         * lib/dirname.c (dir_name): Likewise.
21881
21882         * lib/basename.c (base_name): Use ISSLASH rather than comparing against
21883         `/'.
21884
21885         * lib/dirname.c (dir_name) [MSDOS]: Declare `lim' to be const.
21886         (dir_name): Assert that there are no trailing slashes.
21887
21888 2000-07-29  Bruno Haible  <haible@clisp.cons.org>
21889
21890         * lib/mbswidth.h (mbswidth): Add a flags argument.
21891         (mbswidth): New declaration.
21892         (MBSW_ACCEPT_INVALID, MBSW_ACCEPT_UNPRINTABLE): New macros.
21893         * lib/mbswidth.c (mbswidth): Add a flags argument.
21894         (mbsnwidth): New function.
21895
21896 2000-07-24  Jim Meyering  <meyering@lucent.com>
21897
21898         * lib/mbswidth.c: Remove useless #else.  From Bruno Haible.
21899
21900 2000-07-23  Paul Eggert  <eggert@twinsun.com>
21901
21902         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Check for wcwidth declaration.
21903
21904 2000-07-23  Paul Eggert  <eggert@twinsun.com>
21905
21906         * lib/quotearg.c: Streamline by invoking multibyte code only if needed.
21907         <wchar.h>: Include only if HAVE_MBRTOWC && 1 < MB_LEN_MAX.
21908         (MB_CUR_MAX): Redefine to 1 if ! (HAVE_MBRTOWC && 1 < MB_LEN_MAX).
21909         (quotearg_buffer_restyled): If a unibyte locale, don't bother to
21910         invoke multibyte primitives.
21911
21912 2000-07-23  Paul Eggert  <eggert@twinsun.com>
21913
21914         * lib/quotearg.c:
21915         Include <wchar.h> even if ! (HAVE_MBRTOWC && 1 < MB_LEN_MAX),
21916         so that mbstate_t is always defined.
21917
21918         Do not inspect MB_LEN_MAX, since it's incorrectly defined to
21919         be 1 in at least one GCC installation, and this configuration
21920         error is likely to be common.  Ignoring MB_LEN_MAX hurts
21921         performance on hosts that have mbrtowc but have only unibyte
21922         locales, but I assume these hosts are rare.
21923
21924 2000-07-23  Paul Eggert  <eggert@twinsun.com>
21925
21926         * lib/mbswidth.c (_XOPEN_SOURCE):
21927         Don't define; this causes problems on Solaris 7.
21928         (wcwidth) [!HAVE_DECL_WCWIDTH]: Declare.
21929
21930 2000-07-23  Jim Meyering  <meyering@lucent.com>
21931
21932         * m4/check-decl.m4 (jm_CHECK_DECLS): Check for declarations of these,
21933         too: getgrgid, getpwuid, getuid.
21934
21935 2000-07-23  Jim Meyering  <meyering@lucent.com>
21936
21937         * lib/basename.c (base_name): Add an assertion.
21938
21939 2000-07-23  Bruno Haible  <haible@clisp.cons.org>
21940
21941         * lib/quotearg.c: When the system forces us to redefine mbstate_t,
21942         shadow its mbsinit function.
21943
21944 2000-07-17  Bruno Haible  <haible@clisp.cons.org>
21945
21946         * lib/mbswidth.h: New file.
21947         * lib/mbswidth.c: New file.
21948         * lib/Makefile.am (libfetish_a_SOURCES): Add mbswidth.c.
21949         (noinst_HEADERS): Add mbswidth.h.
21950
21951 2000-07-17  Bruno Haible  <haible@clisp.cons.org>
21952
21953         * lib/config.charset: Add support for FreeBSD. Improve support for
21954         HP-UX and IRIX 6.
21955
21956 2000-07-16  Bruno Haible  <haible@clisp.cons.org>
21957
21958         * m4/mbswidth.m4: New file.
21959         * m4/prereq.m4 (jm_PREREQ): Call jm_PREREQ_MBSWIDTH.
21960
21961 2000-07-15  Jim Meyering  <meyering@lucent.com>
21962
21963         * lib/makepath.c: Include quote.h.
21964         (make_path): Convert "`%s'" in format strings to "%s", and wrap each
21965         corresponding argument in a `quote (...)' call.
21966         Give better diagnostics.
21967
21968         * lib/Makefile.am (libfetish_a_SOURCES): Add quote.c.
21969         (noinst_HEADERS): Add quote.h.
21970
21971         * lib/quote.c (quote, quote_n): New file.  Two functions taken verbatim
21972         from tar's src/misc.c.
21973         * lib/quote.h: New file.  Prototypes for same.
21974
21975 2000-07-14  Paul Eggert  <eggert@twinsun.com>
21976
21977         From a suggestion by Bruno Haible.
21978         * lib/quotearg.c (mbrtowc): Do not use HAVE_WCHAR_H in the definition.
21979         Use defined mbstate_t, not HAVE_MBSTATE_T_OBJECT,
21980         to decide whether to define the BeOS workaround macro;
21981         this adjusts to the change to AC_MBSTATE_T.
21982
21983 2000-07-14  Jim Meyering  <meyering@lucent.com>
21984
21985         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Require
21986         jm_AC_TYPE_UINTMAX_T.
21987
21988 2000-07-13  Paul Eggert  <eggert@twinsun.com>
21989
21990         * lib/quotearg.h (enum quoting style): New enum clocale_quoting_style.
21991
21992         * lib/quotearg.c (quoting_style_args, quoting_style_vals,
21993         quotearg_buffer_restyled): Add support for
21994         clocale_quoting_style.  Undo previous change to
21995         locale_quoting_style behavior, and undo the "{LEFT QUOTATION MARK}"
21996         and "{RIGHT QUOTATION MARK}" msgids.
21997
21998 2000-07-10  Paul Eggert  <eggert@twinsun.com>
21999
22000         From a suggestion by Bruno Haible.
22001         * m4/mbstate_t.m4 (AC_MBSTATE_T):
22002         Renamed from AC_MBSTATE_T_OBJECT.  All uses changed.
22003         Change from a two-part test, which defines both HAVE_MBSTATE_T_OBJECT
22004         and mbstate_t, to a single-part test that simply defines mbstate_t.
22005         * m4/prereq.m4 (jm_PREREQ_QUOTEARG):
22006         s/AC_MBSTATE_T_OBJECT/AC_MBSTATE_T/.
22007
22008 2000-07-10  Jim Meyering  <meyering@lucent.com>
22009
22010         * m4/strerror_r.m4: Mirror the correction made in autoconf.
22011
22012         * m4/gnu-source.m4: Output to confdefs.h directly.
22013         Suggestion from Akim Demaille.
22014
22015 2000-07-09  Paul Eggert  <eggert@twinsun.com>
22016
22017         The old behavior of quoting `like this' doesn't look good with
22018         newer, ISO-style fonts.  See:
22019         http://www.cl.cam.ac.uk/~mgk25/ucs/quotes.html
22020
22021         Instead, quote "like this" by default.  Let the translator
22022         tailor the locale-specific quoting behavior by providing
22023         translations for {LEFT QUOTATION MARK} and {RIGHT QUOTATION MARK}.
22024
22025         * lib/quotearg.c (N_): New macro.
22026         (gettext_default): New function.
22027         (quotearg_buffer_restyled): Use
22028         gettext_default ("{LEFT QUOTATION MARK}", "\"") for left quote, and
22029         gettext_default ("{RIGHT QUOTATION MARK}", "\"") for right quote.
22030
22031 2000-07-09  Jim Meyering  <meyering@lucent.com>
22032
22033         * m4/jm-macros.m4 (jm_MACROS): Add a test to see if -lm is required
22034         to link seq.  If so, set SEQ_LIBM to -lm.  From Bruno Haible.
22035
22036         * m4/gnu-source.m4 (AC__GNU_SOURCE): New file/macro.
22037         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require it.
22038
22039 2000-07-09  Jim Meyering  <meyering@lucent.com>
22040
22041         * lib/Most files: Update copyright dates to include 2000.
22042
22043 2000-07-08  Jim Meyering  <meyering@lucent.com>
22044
22045         * lib/xgethostname.c (ENAMETOOLONG): Define to an unlikely value
22046         if not defined.
22047         (xgethostname): Remove now-unnecessary #ifdef.
22048         Move declaration of `err' into loop where it's used.
22049
22050 2000-07-05  Paul Eggert  <eggert@twinsun.com>
22051         and Bruno Haible  <haible@clisp.cons.org>
22052
22053         * m4/mbstate_t.m4 (AC_MBSTATE_T_OBJECT): Test for mbstate_t
22054         only if the test for an object-type mbstate_t fails.  This
22055         prevents us from mistakenly reporting that mbstate_t is a
22056         system object type after we "#define mbstate_t int" to work
22057         around its lack.
22058
22059 2000-07-05  Paul Eggert  <eggert@twinsun.com>
22060         and Bruno Haible  <haible@clisp.cons.org>
22061
22062         * lib/quotearg.c (mbrtowc): Declare returned type, since BeOS doesn't.
22063
22064 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
22065
22066         * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Pass a reasonably large buffer
22067         to strerror_r.
22068         Include <ctype.h> for use of isalpha.
22069
22070 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
22071
22072         * lib/xgethostname.c (xgethostname): Protect against the SunOS 5.5 bug
22073         by allocating a larger buffer. Test the gethostname return value for
22074         being >= 0, not == 0, for BeOS.  Don't exhaust memory if gethostname
22075         returns an error and ENAMETOOLONG isn't defined.
22076
22077 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
22078
22079         * lib/quotearg.c (struct quoting_options): Simplify quote_these_too
22080         dimension.
22081
22082 2000-07-04  Jim Meyering  <meyering@lucent.com>
22083
22084         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Use plain old `echo' instead
22085         of the deprecated AC_CHECKING.
22086
22087 2000-07-04  Jim Meyering  <meyering@lucent.com>
22088
22089         * lib/strndup.c: [!HAVE_DECL_STRNLEN]: Declare strnlen.
22090         Reported by Bruno Haible.
22091
22092 2000-07-04  Jim Meyering  <meyering@lucent.com>
22093
22094         * lib/quotearg.c: Make inclusion of <wchar.h> independent of whether
22095         HAVE_MBRTOWC is set.  Required at least for irix-5.6, which
22096         lacks mbrtowc.
22097
22098 2000-07-03  Paul Eggert  <eggert@twinsun.com>
22099
22100         * m4/mbstate_t.m4 (AC_MBSTATE_T_OBJECT): Port to autoconf 2.13.
22101         Add AC_CHECK_HEADERS(stdlib.h), since we use HAVE_STDLIB_H.
22102
22103 2000-07-03  Paul Eggert  <eggert@twinsun.com>
22104         and Bruno Haible  <haible@clisp.cons.org>
22105
22106         * lib/quotearg.c (mbrtowc):
22107         Assign to *pwc, and return 1 only if result is nonzero.
22108         (iswprint): Use ISPRINT when substituting our own mbrtowc.
22109
22110 2000-07-03  Jim Meyering  <meyering@lucent.com>
22111
22112         * m4/check-decl.m4 (AC_CHECK_DECLS): Add strnlen.
22113
22114 2000-07-03  Jim Meyering  <meyering@lucent.com>
22115
22116         * lib/readutmp.h: [HAVE_UTMPX_H]: Include <utmp.h> if HAVE_UTMP_H.
22117         This is necessary to get a definition of e.g., UTMP_FILE on
22118         HP-UX 10.20.
22119         From Bob Proulx.
22120
22121 2000-07-02  Jim Meyering  <meyering@lucent.com>
22122
22123         * m4/mbstate_t.m4: Also define mbstate_t, if necessary.
22124
22125         * m4/chown.m4: Replace each use of AC_SUBST(LIBOBJS)/LIBOBJS=... with
22126         AC_LIBOBJ(function_name).
22127         * m4/chown.m4: Likewise.
22128         * m4/fnmatch.m4: Likewise.
22129         * m4/ftruncate.m4: Likewise.
22130         * m4/getgroups.m4: Likewise.
22131         * m4/getline.m4: Likewise.
22132         * m4/group-member.m4: Likewise.
22133         * m4/jm-macros.m4: Likewise.
22134         * m4/lstat.m4: Likewise.
22135         * m4/malloc.m4: Likewise.
22136         * m4/memcmp.m4: Likewise.
22137         * m4/nanosleep.m4: Likewise.
22138         * m4/putenv.m4: Likewise.
22139         * m4/realloc.m4: Likewise.
22140         * m4/regex.m4: Likewise.
22141         * m4/stat.m4: Likewise.
22142         * m4/strftime.m4: Likewise.
22143
22144 2000-07-02  Jim Meyering  <meyering@lucent.com>
22145
22146         * lib/quotearg.c (mbstate_t): Don't define here.
22147
22148 2000-07-02  Jim Meyering  <meyering@lucent.com>
22149
22150         * lib/nanosleep.c (SIGCONT): Define if not already defined.
22151
22152 2000-07-01  Jim Meyering  <meyering@lucent.com>
22153
22154         * m4/uptime.m4: Put double quotes around use of $cross_compiling.
22155
22156 2000-07-01  Jim Meyering  <meyering@lucent.com>
22157
22158         * m4/ls-mntd-fs.m4: Remove a `FIXME' comment and fix the associated
22159         problem.
22160
22161 2000-07-01  Bruno Haible  <haible@clisp.cons.org>
22162
22163         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Rename BeOS specific
22164         macro from MOUNTED_NEXT_DEV to MOUNTED_FS_STAT_DEV.
22165
22166 2000-07-01  Bruno Haible  <haible@clisp.cons.org>
22167
22168         * lib/mountlist.c: Use MOUNTED_FS_STAT_DEV instead of MOUNTED_NEXT_DEV,
22169         per change in ../m4/ls-mntd-fs.m4.
22170         (read_filesystem_list): Ignore symbolic links.
22171
22172 2000-06-29  Jim Meyering  <meyering@lucent.com>
22173
22174         * lib/same.c: Include <string.h> or <strings.h>, as appropriate,
22175         for declaration of strcmp.
22176
22177         * lib/long-options.c: Include <stdlib.h>, for declaration of exit.
22178
22179         * lib/mountlist.c (fsp_to_string) [HAVE_F_FSTYPENAME_IN_STATFS]:
22180         Avoid warning by casting result to `char *' to remove `const'.
22181
22182 2000-06-28  Jim Meyering  <meyering@lucent.com>
22183
22184         * m4/mbstate_t.m4: Use stdlib.h, not stdio.h.  The latter is not
22185         included by quotearg.c, for which we perform this test.  From
22186         Bruno Haible.
22187
22188 2000-06-27  Bruno Haible  <haible@clisp.cons.org>
22189
22190         * m4/check-decl.m4 (_jm_DECL_HEADERS): Check for utmp.h as well.
22191         * m4/prereq.m4 (jm_PREREQ_READUTMP): Likewise. If either <utmp.h> or
22192         <utmpx.h> exists, put readutmp.o into LIBOBJS.
22193
22194 2000-06-27  Bruno Haible  <haible@clisp.cons.org>
22195
22196         * lib/Makefile.am (libfetish_a_SOURCES): Remove readutmp.c.
22197
22198 2000-06-26  Paul Eggert  <eggert@twinsun.com>
22199
22200         savedir now sets errno on failure and invokes xmalloc to get memory.
22201         Fix a couple of other minor bugs while we're at it.
22202
22203         * lib/savedir.c (<unistd.h>): Do not include; there's no need.
22204         (NAMLEN): Remove macro.
22205         (malloc, realloc): Remove decls.
22206         (stpcpy): Likewise.
22207         ("xalloc.h"): Include.
22208         (NAME_SIZE_DEFAULT): New macro.
22209         (savedir): Use xmalloc / xrealloc to allocate memory.
22210         Use NAME_SIZE_DEFAULT if name_size is negative or overflows to zero.
22211         Skip "" directory entries.
22212         Use strlen to calculate directory entry length, since the old method
22213         is rarely used these days and isn't worth supporting.
22214         Don't use a pointer after freeing it.
22215         Check for integer overflow when calculating allocation size.
22216         Use memcpy to copy entries, instead of stpcpy.
22217         Set errno properly when returning NULL.
22218         Check for readdir error.
22219
22220 2000-06-26  Jim Meyering  <meyering@lucent.com>
22221
22222         * lib/posixtm.c [HAVE_STDLIB_H]: Include stdlib.h, for decl of abort.
22223
22224 2000-06-25  Jim Meyering  <meyering@lucent.com>
22225
22226         * m4/mbstate_t.m4: Include stdio.h before wchar.h to work around
22227         Linux header bug when _XOPEN_SOURCE is defined to 500.
22228
22229 2000-06-25  Bruno Haible  <haible@clisp.cons.org>
22230
22231         * lib/unicodeio.c (print_unicode_char): Work around ansi2knr
22232         deficiency.
22233
22234 2000-06-25  Bruno Haible  <haible@clisp.cons.org>
22235
22236         * lib/getusershell.c (xmalloc, xrealloc): Remove functions.
22237         Include xalloc.h.
22238         Don't include <stdlib.h>.  Don't declare malloc, realloc.
22239
22240 2000-06-24  Jim Meyering  <meyering@lucent.com>
22241
22242         * m4/strerror_r.m4: Revive this file -- to try out an experimental
22243         version of AC_FUNC_STRERROR_R that may work even on BeOS, a system
22244         for which strerror does return char*, but which lacks a conveniently
22245         accessible declaration of the function.  If the compile-test says
22246         strerror_r doesn't work, then resort to a `run'-test that works on
22247         BeOS and segfaults on DEC Unix.
22248
22249 2000-06-24  Jim Meyering  <meyering@lucent.com>
22250
22251         * lib/error.c [!HAVE_DECL_STRERROR_R]: Declare strerror_r.
22252
22253 2000-06-23  Paul Eggert  <eggert@twinsun.com>
22254
22255         * m4/mbstate_t.m4: New file, defining AC_MBSTATE_T_OBJECT.
22256         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Use it.  Add check for iswprint.
22257
22258 2000-06-23  Paul Eggert  <eggert@twinsun.com>
22259
22260         * lib/quotearg.c: Include <wctype.h> after <wchar.h>, for Solaris 2.5.
22261         (mbrtowc, mbstate_t): Define substitutes if
22262         HAVE_MBRTOWC && HAVE_WCHAR_H && !HAVE_MBSTATE_T_OBJECT.
22263         (iswprint): Define to 1 if !defined iswprint && !HAVE_ISWPRINT,
22264         not if ! (HAVE_MBRTOWC && HAVE_WCHAR_H).
22265
22266 2000-06-23  Jim Meyering  <meyering@lucent.com>
22267
22268         * m4/afs.m4: Add missing AC_MSG_RESULT.
22269         Reported by Bruno Haible.
22270
22271         * m4/fsusage.m4: s/AC_MSG_CHECKING/AC_CHECKING/.
22272         Suggestion from Bruno Haible.
22273
22274 2000-06-23  Jim Meyering  <meyering@lucent.com>
22275
22276         * lib/getpass.c: New file, from Bruno Haible.  Required for BeOS.
22277
22278 2000-06-21  Jim Meyering  <meyering@lucent.com>
22279
22280         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add getpass.
22281
22282 2000-06-21  Jim Meyering  <meyering@lucent.com>
22283
22284         * lib/Makefile.am (libfetish_a_SOURCES): Add getstr.c.
22285         (noinst_HEADERS): Add getstr.h.
22286
22287         * lib/getline.c (getstr): Move into a separate file.
22288         * lib/getstr.c (getstr): New file, extracted from getline.c, with
22289         the following changes: new parameter, delim2; both delim[12]
22290         parameters have type `int', not `char'.  The latter would lose
22291         with 8-bit delimiters.
22292         * lib/getstr.h: New file.
22293
22294 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
22295
22296         * lib/xgetcwd.c (xgetcwd): If the required pathname length is smaller
22297         than 1024, return a memory chunk of least possible size, instead
22298         of size PATH_MAX + 2. In the loop, increment the size proportionally.
22299         Use free/xmalloc instead of xrealloc to avoid copying for very long
22300         paths.
22301
22302 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
22303
22304         * lib/path-concat.c (path_concat): Don't access dir[-1] if dir is
22305         the empty string.
22306
22307 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
22308
22309         * lib/canon-host.c (canon_host): Use malloc and memcpy to copy an
22310         address, not strdup.  Include <stdlib.h> and don't declare free().
22311
22312 2000-06-19  Jim Meyering  <meyering@lucent.com>
22313
22314         * lib/getloadavg.c [HAVE_NLIST_H] (NLIST_STRUCT): Define.
22315
22316 2000-06-18  Jim Meyering  <meyering@lucent.com>
22317
22318         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Remove mkdir.
22319
22320         * m4/link-follow.m4 (jm_AC_FUNC_LINK_FOLLOWS_SYMLINK): Change the
22321         `checking whether...' message to be consistent with that of the
22322         lstat test.
22323
22324 2000-06-18  Jim Meyering  <meyering@lucent.com>
22325
22326         * lib/mkdir.c: Remove file, due mainly to copyright incompatibility.
22327         Besides, these days every porting target provides a mkdir function.
22328
22329         * lib/strnlen.c: Include memory.h, string.h, and/or strings.h as
22330         needed. (this snippet comes from src/system.h).
22331
22332 2000-06-16  Bruno Haible  <haible@clisp.cons.org>
22333
22334         * m4/glibc21.m4 (jm_GLIBC21): Define GLIBC21 for Makefiles, not for C.
22335
22336 2000-06-15  Paul Eggert  <eggert@twinsun.com>
22337
22338         * lib/human.c (adjust_value): New function.
22339         (human_readable_inexact): Apply rounding style even when
22340         printing approximate values.
22341
22342 2000-06-14  Paul Eggert  <eggert@twinsun.com>
22343
22344         * lib/human.c (human_readable_inexact): Allow an input block
22345         size that is not a multiple of the output block size, and vice versa.
22346         Reported by Piergiorgio Sartor.
22347
22348 2000-06-14  Paul Eggert  <eggert@twinsun.com>
22349
22350         * lib/getdate.y (get_date): Apply relative times after time
22351         zone indicator, not before.  Reported by Todd A. Jacobs.
22352
22353 2000-06-13  Jim Meyering  <meyering@lucent.com>
22354
22355         * lib/Makefile.am (all-local): Depend on lstat.c and stat.c.
22356
22357         * lib/xstat.in [!HAVE_DECL_FREE]: Declare free in lstat.c.
22358
22359 2000-06-12  Paul Eggert  <eggert@twinsun.com>
22360
22361         * lib/xstat.in: Include <stdlib.h> in lstat, to declare "free".
22362
22363 2000-06-12  Jim Meyering  <meyering@lucent.com>
22364
22365         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Replace with
22366         AC_FUNC_GETLOADAVG from autoconf, and tweak the latter to accept an
22367         optional argument.
22368         * m4/jm-macros.m4: s/AM_FUNC_GETLOADAVG/AC_FUNC_GETLOADAVG/, and supply
22369         the optional argument, `lib'.
22370
22371 2000-06-08  Jim Meyering  <meyering@lucent.com>
22372
22373         * m4/largefile.m4: Remove file (now that it's part of autoconf).
22374
22375 2000-06-04  Paul Eggert  <eggert@twinsun.com>
22376
22377         Rewrite largefile configuration so that we don't need to run
22378         getconf and don't need AC_CANONICAL_HOST.  [I'm leaving the use of
22379         AC_CANONICAL_HOST in configure.in -- jmm]
22380
22381         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS,
22382         AC_SYS_LARGEFILE_SPACE_APPEND): Remove.
22383         (AC_SYS_LARGEFILE_TEST_INCLUDES): New macro.
22384         (AC_SYS_LARGEFILE_MACRO_VALUE): Change arguments from
22385         CODE-TO-SET-DEFAULT to VALUE, INCLUDES, FUNCTION-BODY.
22386         All uses changed.
22387         Instead of inspecting the output of getconf, try to compile the
22388         test program without and with the macro definition.
22389         (AC_SYS_LARGEFILE): Do not require AC_CANONICAL_HOST or check
22390         for getconf.  Instead, check for the needed flags by compiling
22391         test programs.
22392
22393 2000-06-04  Paul Eggert  <eggert@twinsun.com>
22394
22395         * lib/strnlen.c: Include <config.h> if HAVE_CONFIG_H.
22396
22397 2000-06-04  Jim Meyering  <meyering@lucent.com>
22398
22399         * lib/getugroups.c (getugroups): Cast -1 to gid_t, for systems like
22400         SunOS 4.1.4 for which gid_t is an unsigned type.
22401
22402 2000-06-03  Jim Meyering  <meyering@lucent.com>
22403
22404         * m4/prereq.m4 (jm_PREREQ_HUMAN): Use []-quoted list in AC_CHECK_DECLS,
22405         now that autoconf requires that.
22406
22407         * m4/jm-glibc-io.m4: Add a kludge to make autoheader emit the required
22408         #undefs.  E.g., #undef HAVE_DECL_FERROR_UNLOCKED.
22409         Use []-quoted list in AC_CHECK_DECLS, now that autoconf requires that.
22410
22411 2000-06-03  Jim Meyering  <meyering@lucent.com>
22412
22413         * lib/strnlen.c [!HAVE_DECL_MEMCHR]: Declare memchr.
22414
22415 2000-06-03  Bruno Haible  <haible@clisp.cons.org>
22416
22417         * m4/glibc21.m4: New file.
22418         * m4/jm-macros.m4 (jm_MACROS): Call jm_GLIBC21.
22419
22420 2000-06-03  Bruno Haible  <haible@clisp.cons.org>
22421
22422         * lib/Makefile.am (install-exec-local): On systems with glibc-2.1 or
22423         newer, don't install charset.alias.
22424         * lib/config.charset: Change the Linux/glibc rules so they become empty
22425         on glibc-2.1 or newer.
22426
22427 2000-06-02  Jim Meyering  <meyering@lucent.com>
22428
22429         * lib/mountlist.c: Back out last change.  Instead, do this...
22430         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Set the
22431         me_dummy member using the same `ignore'-testing code.
22432         * lib/mountlist.h (ME_DUMMY): Add `autofs' to the list of ignored
22433         fs_type strings.
22434         From Mark D. Roth.
22435
22436 2000-05-29  Jim Meyering  <meyering@lucent.com>
22437
22438         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Ignore
22439         mounts with the `ignore' attribute.  Based on a patch from
22440         Mark D. Roth.
22441
22442 2000-05-28  Jim Meyering  <meyering@lucent.com>
22443
22444         * m4/jm-macros.m4 (AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK): Rename from
22445         jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
22446         * m4/stat.m4: Likewise.
22447         * m4/lstat.m4: Likewise.
22448         * m4/lstat-slash.m4: Remove file (absorbed into autoconf).
22449
22450         * m4/jm-macros.m4 (AC_FUNC_STRERROR_R): Rename from jm_FUNC_STRERROR_R.
22451         * m4/strerror_r.m4: Remove file (absorbed into autoconf).
22452
22453 2000-05-26  Jim Meyering  <meyering@lucent.com>
22454
22455         * m4/uptime.m4: Use `$cross_compiling', not `$ac_cv_prog_cc_cross'.
22456
22457 2000-05-24  Jim Meyering  <meyering@lucent.com>
22458
22459         * m4/prereq.m4: Use []-quoted list in AC_CHECK_MEMBERS, now that
22460         autoconf requires that.
22461         * m4/lib-check.m4: Likewise.
22462         * m4/jm-macros.m4: Likewise.
22463         * m4/strftime.m4: Likewise.
22464
22465         * m4/check-decl.m4 (jm_CHECK_DECLS): Use []-quoted list in
22466         AC_CHECK_DECLS, now that autoconf requires that.
22467
22468 2000-05-22  Jim Meyering  <meyering@lucent.com>
22469
22470         * m4/stat.m4: Require jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
22471         * m4/lstat.m4: Likewise.
22472
22473 2000-05-22  Jim Meyering  <meyering@lucent.com>
22474
22475         * lib/makepath.c: Remove old, now-unnecessary `#ifdef __MSDOS__' block.
22476
22477 2000-05-20  Jim Meyering  <meyering@lucent.com>
22478
22479         * m4/prereq.m4 (jm_PREREQ_HUMAN): New macro.
22480         (jm_PREREQ): Use it.
22481
22482 2000-05-18  Jim Meyering  <meyering@lucent.com>
22483
22484         * lib/hash.c (hash_rehash): Fix a nasty bug: copy the free entry list
22485         back, too, since it may have been modified by allocate_entry.
22486         (hash_delete): Rewrite to use neither the assignment operator
22487         nor the comma operator in an if-expression.
22488
22489 2000-05-15  Paul Eggert  <eggert@twinsun.com>
22490
22491         * lib/closeout.c:
22492         <sys/stat.h>, <sys/types.h>, <unistd.h>, (STDOUT_FILENO):
22493         Remove; no longer needed.
22494         "quotearg.h": Add include.
22495         (file_name): Do not bother to explicitly initialize to NULL; it's less
22496         efficient on some hosts.
22497         (close_stdout_status): Remove test as to whether stdout was already
22498         closed; it breaks for the case "echo x | sort >&-".
22499         Quote file name colons.
22500         Do not assume that _("write error") lacks format strings.
22501
22502 2000-05-15  Jim Meyering  <meyering@lucent.com>
22503
22504         * lib/version-etc.c (version_etc_copyright): Update the copyright
22505         string used in all --version output.
22506
22507 2000-05-14  Jim Meyering  <meyering@lucent.com>
22508
22509         * lib/closeout.c (close_stdout_set_file_name): New function.
22510         (close_stdout_status): Use new file-scoped global.
22511         Return right away if fstat says the stdout file descriptor is invalid.
22512         * lib/closeout.h (close_stdout_set_file_name): Declare.
22513
22514 2000-05-10  Jim Meyering  <meyering@lucent.com>
22515
22516         * lib/closeout.c [default_exit_status]: New file-scoped variable.
22517         (close_stdout_set_status): New function.
22518         * lib/closeout.h (close_stdout_set_status): Declare.
22519
22520 2000-05-09  Jim Meyering  <meyering@lucent.com>
22521
22522         * m4/gettext.m4: Rename this...
22523         * m4/libintl.m4: ...to this.
22524
22525 2000-05-08  Jim Meyering  <meyering@lucent.com>
22526
22527         * lib/long-options.c: Don't include closeout.h.
22528         (parse_long_options): Don't call close_stdout for --version.
22529
22530 2000-05-06  Paul Eggert  <eggert@twinsun.com>
22531
22532         * m4/largefile.m4 (AC_SYS_LARGEFILE): Define _XOPEN_SOURCE to
22533         be 500, instead of _GNU_SOURCE to be 1, to work around glibc
22534         2.1.3 bug.  This avoids a clash when files like regex.c define
22535         _GNU_SOURCE.
22536
22537 2000-05-06  Jim Meyering  <meyering@lucent.com>
22538
22539         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add atexit.
22540         (AC_REPLACE_FUNCS): Add strnlen.
22541
22542         * m4/rmdir-errno.m4 (fetish_FUNC_RMDIR_NOTEMPTY): New macro and file.
22543         * m4/jm-macros.m4: Require fetish_FUNC_RMDIR_NOTEMPTY.
22544
22545         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Save and restore LIBS around
22546         AC_SEARCH_LIBS call for nanosleep.
22547         (LIB_NANOSLEEP): Set and AC_SUBST.
22548
22549 2000-05-06  Jim Meyering  <meyering@lucent.com>
22550
22551         * lib/strnlen.c: Undefine __strnlen and strnlen.
22552         [!weak_alias]: Define __strnlen to strnlen.
22553
22554         * lib/atexit.c: New file, from libiberty.
22555
22556 2000-05-06  Jim Meyering  <meyering@lucent.com>
22557
22558         * lib/closeout.c (close_stdout_status): Also check for errors on the
22559         stderr stream.
22560
22561 2000-05-05  Jim Meyering  <meyering@lucent.com>
22562
22563         * m4/jm-macros.m4 (jm_MACROS): Save and restore LIBS around
22564         AC_SEARCH_LIBS call for clock_gettime.
22565         (LIB_CLOCK_GETTIME): Set and AC_SUBST.
22566
22567         * m4/search-libs.m4: Update from autoconf.
22568
22569         su doesn't work on Solaris 2.6.
22570         * m4/lib-check.m4: When checking for struct spwd.sp_pwdp, also include
22571         <shadow.h>.  Reported by Dragos Harabor.
22572
22573 2000-05-05  Bruno Haible  <haible@clisp.cons.org>
22574
22575         * lib/localcharset.c (get_charset_aliases): Use malloc, realloc and
22576         memcpy instead of xmalloc, xrealloc, path_concat.
22577         (locale_charset): Treat empty environment variables as absent.
22578         (DIRECTORY_SEPARATOR, ISSLASH): New macros.
22579
22580 2000-05-04  Jim Meyering  <meyering@lucent.com>
22581
22582         * lib/getopt.c: Update from glibc.
22583         * lib/obstack.c: Likewise.
22584         * lib/obstack.h: Likewise.
22585         * lib/regex.c: Likewise.  NB: K&R compiler support is dropped for this
22586         file
22587
22588         * lib/regex.h: Likewise.
22589         * lib/strndup.c: Likewise.
22590         * lib/strnlen.c: New file, from glibc.
22591
22592 2000-05-03  Jim Meyering  <meyering@lucent.com>
22593
22594         * m4/check-decl.m4 (AC_CHECK_DECLS): Add strndup.
22595
22596 2000-05-02  Paul Eggert  <eggert@twinsun.com>
22597
22598         * m4/largefile.m4 (AC_SYS_LARGEFILE): Define _GNU_SOURCE if
22599         this is needed to make ftello visible (e.g. glibc 2.1.3).  Use
22600         compile-time test, rather than inspecting host and OS, to
22601         decide whether to define _LARGEFILE_SOURCE.
22602
22603 2000-05-01  Jim Meyering  <meyering@lucent.com>
22604
22605         * m4/fsusage.m4: Use AC_MSG_CHECKING instead of obsolete AC_CHECKING.
22606
22607         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Add BeOS support.
22608         Based on a patch from Bruno Haible.
22609
22610 2000-05-01  Jim Meyering  <meyering@lucent.com>
22611
22612         * lib/full-write.c (full_write): Remove `FIXME' part of comment.
22613
22614 2000-04-29  Jim Meyering  <meyering@lucent.com>
22615
22616         * lib/path-concat.c: Declare strdup only if it's not defined.
22617         * lib/canon-host.c: Likewise.
22618
22619 2000-04-28  Jim Meyering  <meyering@lucent.com>
22620
22621         * lib/rpmatch.c [HAVE_LIMITS_H]: Include limits.h before regex.h to
22622         avoid redefinition warning on some systems (HPUX).  Otherwise, regex.h
22623         is included first, then limits.h is included by locale.h by libintl.h.
22624         From John David Anglin.
22625
22626 2000-04-25  Jim Meyering  <meyering@lucent.com>
22627
22628         * lib/makepath.c (S_IRWXUGO): Define.
22629         (make_path): Always perform explicit chmod if MODE specifies any
22630         of the `special' permission bits.  Prompted by a bug report against
22631         install from Mate Wierdl and Joost van Baal.
22632
22633 2000-04-18  Jim Meyering  <meyering@lucent.com>
22634
22635         * m4/prereq.m4 (jm_PREREQ_GETPAGESIZE): New macro.
22636         (jm_PREREQ): Use it.
22637
22638 2000-04-18  Jim Meyering  <meyering@lucent.com>
22639
22640         * lib/README: New file.
22641
22642         * lib/getpagesize.h [!getpagesize && HAVE_OS_H && B_PAGE_SIZE]: Define
22643         getpagesize.  For BeOS.  Based on a patch from Bruno Haible.
22644
22645 2000-04-17  Jim Meyering  <meyering@lucent.com>
22646
22647         Get it right :-)
22648         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Emit the
22649         actual #define via AH_VERBATIM.  Don't need separate AC_DEFINE.
22650         Suggestion from Akim Demaille.
22651
22652 2000-04-17  Jim Meyering  <meyering@lucent.com>
22653
22654         * lib/strftime.c (my_strftime) [strftime]: Declare strftime here, since
22655         the definition of it to rpl_strftime also defined-away the system's
22656         declaration.
22657
22658 2000-04-15  Jim Meyering  <meyering@lucent.com>
22659
22660         Use `C' to denote so-called `contiguous' files, the same way
22661         that tar does.
22662         * lib/filemode.c (S_ISCTG) [!S_ISCTG && S_IFCTG]: Define.
22663         (ftypelet): Use S_ISCTG.
22664         From Michael Deutschmann.
22665
22666 2000-04-14  Jim Meyering  <meyering@lucent.com>
22667
22668         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Use the one-arg
22669         form of AC_DEFINE.  Otherwise, the #ifndef in AH_VERBATIM gets
22670         clobbered.
22671
22672 2000-04-14  Jim Meyering  <meyering@lucent.com>
22673
22674         * lib/strftime.c (my_strftime) [#ifdef strftime]: Declare strftime.
22675
22676 2000-04-13  Jim Meyering  <meyering@lucent.com>
22677
22678         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Use new
22679         AH_VERBATIM to insert required #ifndef into config.h.in.
22680         Suggestion from Akim Demaille.
22681
22682 2000-04-12  Jim Meyering  <meyering@lucent.com>
22683
22684         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Use AC_CHECK_HEADERS, not
22685         `AC_CHECK_HEADER' to check for locale.h.  Thanks to a report from
22686         Christian Krackowizer.
22687
22688         More code moved from ../configure.in into (jm_CHECK_ALL_TYPES).
22689         * m4/jm-macros.m4 (_GNU_SOURCE): Define.
22690         (AC_SYS_LARGEFILE): Require.
22691         (AM_C_PROTOTYPES): Require.
22692
22693 2000-04-08  Jim Meyering  <meyering@lucent.com>
22694
22695         * lib/Makefile.am (charset.alias): Use t-$@, not $@-t so the DOS 8.3
22696         names don't conflict.  Reported by Eli Zaretskii.
22697
22698 2000-04-07  Jim Meyering  <meyering@lucent.com>
22699
22700         * lib/putenv.c: Move inclusion of errno.h so it follows that of
22701         sys/types.h, to work around system header problems on AIX 3.2.5.
22702         From Bruno Haible.
22703
22704 2000-04-07  Bruno Haible  <haible@clisp.cons.org>
22705
22706         * lib/unicodeio.c (print_unicode_char): Avoid triggering Solaris iconv
22707         bug.  Deal with the different error behavior of Irix iconv.
22708
22709 2000-04-05  Paul Eggert  <eggert@twinsun.com>
22710
22711         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Don't use -n32 on
22712         IRIX if the installer said otherwise.
22713
22714 2000-04-05  Jim Meyering  <meyering@lucent.com>
22715
22716         Portability tweaks required for ultrix4.3.
22717         * m4/check-decl.m4 [!HAVE_UTMPX_H] (headers): Include <utmp.h>.
22718         (jm_CHECK_DECLS): Add getutent to the list of functions.
22719         (_jm_DECL_HEADERS): Add utmpx.h.
22720         From John David Anglin.
22721
22722         * m4/strftime.m4: Back out the 2000-04-02 change.
22723         Instead of that change, simply undefine putenv in the test program.
22724
22725 2000-04-05  Jim Meyering  <meyering@lucent.com>
22726
22727         Portability tweaks required for ultrix4.3.
22728         * lib/readutmp.h [HAVE_UTMPX_H && !HAVE_DECL_GETUTENT]: Declare
22729         getutent.
22730         * lib/readutmp.c: Include sys/types.h before sys/stat.h.
22731         * lib/canon-host.c: Declare strdup.
22732         * lib/path-concat.c: Likewise.
22733         From John David Anglin.
22734
22735 2000-04-04  Jim Meyering  <meyering@lucent.com>
22736
22737         Be more DOS 8.3-friendly.
22738         * lib/ref-add.sin: Renamed from ref-add.sed.in.
22739         * lib/ref-del.sin: Renamed from ref-del.sed.in.
22740         * lib/Makefile.am: Reflect renaming.
22741         Reported by Eli Zaretskii.
22742
22743         Use a temporary file name that won't clash with `charset.alias'
22744         in the DOS 8.3 name space.
22745         * lib/Makefile.am (charset_tmp): Define.
22746         (install-exec-local): Use $(charset_tmp) instead of $(charset_alias)-t.
22747         (uninstall-local): Likewise.
22748         Reported by Eli Zaretskii.
22749
22750 2000-04-03  Jim Meyering  <meyering@lucent.com>
22751
22752         * m4/gettext.m4: Fix typo in comment.
22753
22754         * m4/codeset.m4 (AC_CHECK_HEADERS): Add langinfo.h (moved here from
22755         textutils/configure.in).  Suggestion from Paul Eggert.
22756         (AC_CHECK_FUNCS): Add nl_langinfo.  (also from textutils/configure.in)
22757
22758 2000-04-02  Paul Eggert  <eggert@twinsun.com>
22759
22760         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME): Set TZ environment
22761         variable in the shell rather than using putenv, which isn't
22762         portable.  This avoids the configure-time inter-test dependency
22763         on the potentially-renamed putenv function.
22764
22765 2000-03-30  Paul Eggert  <eggert@twinsun.com>
22766
22767         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Include <sys/stat.h>
22768         before checking struct stat.st_blksize, so that
22769         HAVE_STRUCT_STAT_ST_BLKSIZE is defined correctly.
22770
22771 2000-03-29  Paul Eggert  <eggert@twinsun.com>
22772
22773         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Check for strftime,
22774         since strftime.c uses HAVE_STRFTIME to decide whether to use
22775         the underlying strftime.
22776
22777 2000-03-29  Paul Eggert  <eggert@twinsun.com>
22778
22779         * lib/time/strftime.c (my_strftime): Make sure we call the system
22780         strftime, not ourselves, when invoking the underlying strftime.
22781
22782 2000-03-24  Jim Meyering  <meyering@lucent.com>
22783
22784         * lib/Makefile.am (EXTRA_DIST): Add ref-add.sed.in and ref-del.sed.in.
22785         (charset_alias): Define.
22786         (install-exec-local): Factor out common code.
22787         (uninstall-local): Split lines longer than 80.
22788         (ref-add.sed, ref-del.sed): Remove rules... (do the following instead)
22789         (SUFFIXES): Define.
22790         (.sed.in.sed): New rule.  Don't redirect directly to $@.
22791         (CLEANFILES): Add ref-add.sed and ref-del.sed.
22792
22793 2000-03-19  Bruno Haible  <haible@clisp.cons.org>
22794
22795         * lib/config.charset: Output a line containing "Packages using this
22796         file".
22797         * lib/ref-add.sed.in, lib/ref-del.sed.in: New files.
22798         * lib/Makefile.am (install-exec-local, uninstall-local, ref-add.sed,
22799         ref-del.sed): New rules.
22800
22801 2000-03-17  Jim Meyering  <meyering@lucent.com>
22802
22803         * lib/unicodeio.c (<string.h>): Include only #if HAVE_STRING_H.
22804         Otherwise, include <strings.h>
22805
22806 2000-03-17  Bruno Haible  <haible@clisp.cons.org>
22807
22808         * lib/unicodeio.c (utf8_wctomb): New function.
22809         (print_unicode_char): Pass the Unicode character to iconv in UTF-8
22810         format instead of in UCS-4 with platform dependent endianness.
22811
22812 2000-03-10  Jim Meyering  <meyering@lucent.com>
22813
22814         * m4/lib-check.m4: Look for getspnam in -lgen, too.
22815         From Marco Franzen.
22816
22817 2000-03-07  Paul Eggert  <eggert@twinsun.com>
22818
22819         * lib/savedir.c (savedir): Work even if directory size is
22820         negative; this can happen with some screwy NFS configurations.
22821
22822 2000-03-06  Jim Meyering  <meyering@lucent.com>
22823
22824         * lib/localcharset.c (get_charset_aliases): Don't try to free file_name
22825         if it's NULL (because we ran out of memory).  From Bruno Haible.
22826
22827 2000-03-05  Jim Meyering  <meyering@lucent.com>
22828
22829         * lib/localcharset.c ("path-concat.h"): Include.
22830         (get_charset_aliases): Use path_concat instead of ANSI string
22831         concatenation.
22832
22833         * lib/unicodeio.h (PARAMS): Define.
22834         Use it to guard prototype.
22835
22836 2000-03-04  Jim Meyering  <meyering@lucent.com>
22837
22838         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require AC_C_VOLATILE,
22839         for lib/localcharset.c.
22840
22841 2000-03-04  Jim Meyering  <meyering@lucent.com>
22842
22843         * lib/Makefile.am (install-exec-local): Create $(libdir) before
22844         installing into it.
22845         (uninstall-local): Uncomment this rule so `make distcheck' works
22846         once again.
22847
22848         * lib/unicodeio.c (<errno.h>): Include it.
22849         (errno): Declare if not defined.
22850
22851         * lib/localcharset.c: Add Bruno's comment justifying use of volatile.
22852
22853         * lib/config.charset: New version, incorporating remarks from a linux
22854         i18n mailing list.  From Bruno Haible.
22855
22856 2000-03-04  Bruno Haible  <haible@clisp.cons.org>
22857
22858         * m4/codeset.m4: New file.
22859         * m4/iconv.m4: New file.
22860         * m4/jm-macros.m4 (jm_MACROS): Call jm_LANGINFO_CODESET and jm_ICONV.
22861
22862 2000-03-03  Jim Meyering  <meyering@lucent.com>
22863
22864         * m4/regex.m4: Make sure re_compile_pattern accepts patterns like `{1'.
22865
22866 2000-03-02  Jim Meyering  <meyering@lucent.com>
22867
22868         * m4/timespec.m4: Require AC_HEADER_TIME before the cache check so
22869         the messages come out on separate lines.
22870
22871         * m4/jm-glibc-io.m4 (jm_FUNC_GLIBC_UNLOCKED_IO): Use AC_CHECK_DECLS,
22872         rather than jm_CHECK_DECLARATIONS.
22873         * m4/decl.m4: Remove now-unused file.
22874
22875         * m4/check-decl.m4 (AC_CHECK_DECLS): Add getlogin, ttyname, and
22876         geteuid.
22877
22878 2000-03-02  Jim Meyering  <meyering@lucent.com>
22879
22880         * lib/Makefile.am (EXTRA_DIST): Add config.charset.
22881
22882 2000-03-01  Jim Meyering  <meyering@lucent.com>
22883
22884         * lib/localcharset.c: Guard some #includes with `#if HAVE_...'.
22885         * lib/unicodeio.c: Likewise.
22886
22887 2000-03-01  Bruno Haible  <haible@clisp.cons.org>
22888
22889         * lib/config.charset: New file.
22890         * lib/localcharset.c: New file.
22891         * lib/unicodeio.h, lib/unicodeio.c: New files.
22892         * lib/Makefile.am (DEFS): Add -DLIBDIR=...
22893         (libfetish_a_SOURCES): Add localcharset.c and unicodeio.c.
22894         (noinst_HEADERS): Add unicodeio.h.
22895         (all-local, install-exec-local, charset.alias): New targets.
22896
22897 2000-02-28  Paul Eggert  <eggert@twinsun.com>
22898
22899         * lib/quotearg.c (ALERT_CHAR): New macro.
22900         (quotearg_buffer_restyled): Use it.
22901
22902 2000-02-27  Jim Meyering  <meyering@lucent.com>
22903
22904         * m4/check-decl.m4: Add getenv to the list.
22905
22906 2000-02-27  Jim Meyering  <meyering@lucent.com>
22907
22908         * lib/strtoumax.c: Fix typo in decl of strtoul: s/long long/long/.
22909         Guard declaration of strtoull also with `&& HAVE_UNSIGNED_LONG_LONG'.
22910
22911         * lib/backupfile.c: Guard inclusion of stdlib.h with
22912         `#if HAVE_STDLIB_H', not `#if STDC_HEADERS'.
22913         Declare malloc if needed.
22914
22915         * lib/backupfile.c: Use `#if !HAVE_DECL...' instead of
22916         `#ifndef HAVE_DECL..'
22917         now that autoconf always defines the HAVE_DECL_ symbols.
22918         * lib/human.c: Likewise.
22919         * lib/same.c: Likewise.
22920         * lib/strtoumax.c: Likewise.
22921
22922         * lib/backupfile.c: Arrange for cpp to fail if the configure-time
22923         declaration check was not run.
22924         * lib/hash.c: Likewise.
22925         * lib/human.c: Likewise.
22926         * lib/same.c: Likewise.
22927         * lib/strtoumax.c: Likewise.
22928
22929         * lib/userspec.c (parse_user_spec): If there is no `:' but there is a
22930         `.', then first look up the entire `.'-containing string as a login
22931         name.
22932
22933 2000-02-23  Jim Meyering  <meyering@lucent.com>
22934
22935         * m4/check-decl.m4: Now that we have the new AC_CHECK_DECLS, use it
22936         in place of my hack.
22937
22938 2000-02-18  Paul Eggert  <eggert@twinsun.com>
22939
22940         * lib/getdate.y: Handle two-digit years with leading zeros correctly.
22941         (textint): New typedef.
22942         (parser_control): Member year changed from int to textint.
22943         All uses changed.
22944         (YYSTYPE): Removed; replaced by %union with int and textint members.
22945         (tDAY, tDAY_UNIT, tDAYZONE, tHOUR_UNIT, tID, tLOCAL_ZONE, tMERIDIAN,
22946         tMINUTE_UNIT, tMONTH, tMONTH_UNIT tSEC_UNIT, tSNUMBER, tUNUMBER,
22947         tYEAR_UNIT, tZONE, o_merid): Now of type <intval>.
22948         (tSNUMBER, tUNUMBER): Now of type <textintval>.
22949         (date, number, to_year): Use width of number in digits, not its value,
22950         to determine whether it's a 2-digit year, or a 2-digit time.
22951         (yylex): Store number of digits of numeric tokens.
22952         Reported by John Kendall.
22953
22954         (parser_control): Changed from struct parser_control to typedef (for
22955         consistency).  All uses changed.
22956
22957         (tID): Removed; not used.
22958         (yylex): Return '?' for unknown identifiers, rather than (unused) tID.
22959
22960 2000-02-14  Paul Eggert  <eggert@twinsun.com>
22961
22962         * lib/getpagesize.h (getpagesize): Port to VMS for Alpha;
22963         adapted from changes to grep getpagesize.h by Martin P.J. Zinser.
22964
22965 2000-02-12  Jim Meyering  <meyering@lucent.com>
22966
22967         * lib/userspec.c (ISDIGIT): Define it.
22968         (isdigit): Remove definition.
22969         (is_number): Use ISDIGIT, not isdigit.
22970         <libintl.h>: Include.
22971         (_ and N_): Define.
22972         (parse_user_spec): Mark translatable strings.
22973
22974 2000-02-10  Jim Meyering  <meyering@lucent.com>
22975
22976         With these changes, nanosleep.[ch] are finally enough like the other
22977         lib/* replacement files to compile on a few more losing systems.
22978
22979         * lib/nanosleep.h: Don't include config.h.
22980         Remove prototype from declaration of nanosleep.
22981         (PARAMS): Remove now-unneeded definition.
22982         * lib/nanosleep.c: #undef nanosleep.
22983         (rpl_nanosleep): Rename from nanosleep.
22984
22985 2000-02-10  Jim Meyering  <meyering@lucent.com>
22986
22987         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Rename replacement function from
22988         gnu_nanosleep to rpl_nanosleep.
22989
22990 2000-02-09  Jim Meyering  <meyering@lucent.com>
22991
22992         * m4/lib-check.m4 (jm_LIB_CHECK): Fix typo: check for sp_pwdp in
22993         struct spwd, rather than in struct passwd.  Reported by Gaël Quéri.
22994
22995 2000-02-08  Akim Demaille  <akim@epita.fr>
22996
22997         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Quote square brackets with
22998         `[' and `]' and remove uses of `changequote'.
22999         (AC_SYS_LARGEFILE_MACRO_VALUE): Likewise.
23000         (AC_SYS_LARGEFILE): Likewise.
23001         * m4/gettext.m4 (AM_GNU_GETTEXT): Likewise.
23002         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME): Remove now-unnecessary use
23003         of changequote.
23004         * m4/regex.m4 (jm_INCLUDED_REGEX): Likewise.
23005         * m4/readdir.m4 (jm_FUNC_READDIR): Likewise
23006         * m4/memcmp.m4 (jm_AC_FUNC_MEMCMP): Likewise, and add `int' for main.
23007         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Likewise.
23008
23009 2000-02-05  Jim Meyering  <meyering@lucent.com>
23010
23011         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require most macros.
23012         Remove explicit use of AC_HEADER_TIME.  It is required by
23013         jm_CHECK_TYPE_STRUCT_TIMESPEC.  Using AC_HEADER_TIME and
23014         `AC_REQUIRE'ing jm_CHECK_TYPE_STRUCT_TIMESPEC provoked a but
23015         in autoconf whereby the expansion of the latter ended up preceding
23016         the expansion of its prerequisite, AC_HEADER_TIME.
23017         Reported by Volker Borchert.
23018
23019 2000-02-03  Jim Meyering  <meyering@lucent.com>
23020
23021         * m4/prereq.m4 (jm_PREREQ_READUTMP): Check for utmpxname.
23022
23023 2000-02-03  Jim Meyering  <meyering@lucent.com>
23024
23025         * lib/readutmp.c (read_utmp): Guard with `#ifdef UTMP_NAME_FUNCTION',
23026         rather than with `#if HAVE_UTMPNAME'.
23027
23028 2000-02-02  Jim Meyering  <meyering@lucent.com>
23029
23030         * m4/prereq.m4 (jm_PREREQ_ADDEXT): Fix typo that resulted in no
23031         definition of HAVE_PATHCONF: s/AC_CHECK_FUNC/AC_CHECK_FUNCS/.
23032         Reported by Eli Zaretskii.
23033
23034 2000-02-01  Jim Meyering  <meyering@lucent.com>
23035
23036         * lib/readutmp.h (UT_USER): Add parens.  From Andreas Schwab.
23037
23038 2000-01-31  Jim Meyering  <meyering@lucent.com>
23039
23040         * m4/check-decl.m4 (jm_CHECK_DECLS): Add nanosleep to the list of
23041         functions.  Add the time.h and sys/time.h headers along with the
23042         AC_REQUIRE'ment of AC_HEADER_TIME.
23043
23044 2000-01-31  Jim Meyering  <meyering@lucent.com>
23045
23046         * lib/nanosleep.h (nanosleep): Guard declaration with
23047         `#if ! HAVE_DECL_NANOSLEEP'.
23048         Without this, OFS gets a redeclaration error for rpl_nanosleep, due to
23049         the declaration in that vendor's sys/timers.h.
23050         Reported by Christian Krackowizer.
23051
23052         * lib/quotearg.c (ISASCII): Add #undef and move definition to follow
23053         inclusion of wctype.h to work around Solaris 2.6 namespace pollution.
23054         (ISPRINT): Likewise.
23055         Reported by Tom Tromey.
23056
23057 2000-01-30  Jim Meyering  <meyering@lucent.com>
23058
23059         * m4/lib-check.m4: Clean up some kludgy old shadow password tests.
23060
23061         * m4/prereq.m4 (utmp_includes): Define.
23062         Check for ut_user and ut_name members in both struct utmpx
23063         and struct utmp.
23064
23065 2000-01-30  Jim Meyering  <meyering@lucent.com>
23066
23067         * lib/readutmp.c (extract_trimmed_name): Use UT_USER instead of
23068         hard-coding uses of ->ut_name.  The latter doesn't work with new Linux
23069         header files where only utmpx.ut_user is declared.
23070
23071         * lib/readutmp.h (UT_USER): Define.
23072
23073 2000-01-29  Jim Meyering  <meyering@lucent.com>
23074
23075         * m4/lib-check.m4: New file containing library-related checks from
23076         fileutils and sh-utils (textutils had none).
23077
23078 2000-01-28  Jim Meyering  <meyering@lucent.com>
23079
23080         * m4/perl.m4: Change format of warning message to look more like that
23081         from the missing script.  Suggestion from François Pinard.
23082
23083 2000-01-25  Jim Meyering  <meyering@lucent.com>
23084
23085         * m4/timespec.m4: Require AC_HEADER_TIME, and include sys/time.h as
23086         well as time.h in the compile check.
23087         * m4/nanosleep.m4: Require AC_HEADER_TIME rather than simply using it.
23088         Fix typo in cross-compiling case: s/yes/no/.
23089
23090 2000-01-23  Jim Meyering  <meyering@lucent.com>
23091
23092         * m4/jm-macros.m4: Move df-related tests here from
23093         fileutils/configure.in
23094
23095         * m4/ls-mntd-fs.m4: s/list_mounted_fs/ac_list_mounted_fs/
23096         (jm_LIST_MOUNTED_FILESYSTEMS): Take two parameters.
23097
23098         * m4/fsusage.m4: New file.  Extracted from fileutils/configure.in.
23099         s/space/ac_fsusage_space/.
23100         (jm_FILE_SYSTEM_USAGE): Take two parameters.
23101
23102         * m4/ftruncate.m4: New file (derived from part of
23103         fileutils/configure.in).
23104         * m4/jm-macros.m4 (jm_FUNC_FTRUNCATE): AC_REQUIRE it.
23105         (jm_CHECK_ALL_TYPES): Require AC_HEADER_MAJOR and AC_HEADER_DIRENT.
23106
23107         * m4/jm-macros.m4 (OPTIONAL_BIN_PROGS, OPTIONAL_BIN_ZCRIPTS, MAN):
23108         AC_SUBST these here, rather than just in sh-util/configure.in, so
23109         that the now-shared-by-fileutils-and-textutils lib/Makefile.am are
23110         all the same.
23111         (AM_FUNC_OBSTACK): Add (from fileutils/configure.in).
23112         (AC_CHECK_FUNCS): Merge all checks from fileutils, textutils, sh-utils.
23113         (AM_FUNC_STRTOD): Added (from textutils', sh-utils' configure.in).
23114         (AC_SUBST(POW_LIBM)): Likewise.
23115         (AC_SUBST(DF_PROG)): Moved from fileutils/configure.in.
23116
23117 2000-01-23  Jim Meyering  <meyering@lucent.com>
23118
23119         * lib/Makefile.am (libfetish_a_SOURCES): Remove explicit mention of
23120         obstack.c.
23121
23122 2000-01-22  Jim Meyering  <meyering@lucent.com>
23123
23124         * m4/jm-macros.m4: Call AC_PROG_CC_STDC just before AC_C_CONST.
23125
23126         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Add wctype.h.
23127
23128         * m4/jm-macros.m4 (AC_CHECK_HEADERS): Add checks from fileutils'
23129         configure.in
23130         (AC_CHECK_HEADERS): Likewise for sh-utils.
23131         (AC_CHECK_HEADERS): Likewise for textutils.
23132         Merge the three lists of headers.
23133
23134         * m4/prereq.m4 (jm_PREREQ_ADDEXT): New macro.  Parts moved here
23135         from fileutils' configure.in.
23136
23137         * m4/decl.m4: Remove kludgy `test -z $ac_...AC_CHECK_HEADERS(...)'
23138         code. Moved tests into their own function (_jm_DECL_HEADERS) in
23139         check-decl.m4.
23140
23141         * m4/check-decl.m4: Use #if rather than #ifdef.
23142         Add HAVE_DECL_STRTOUL and HAVE_DECL_STRTOULL.
23143         (jm_CHECK_DECLARATIONS): Add strtoul strtoull.
23144         (_jm_DECL_HEADERS): Define new function.
23145         (jm_CHECK_DECLARATIONS): Require it.
23146
23147 2000-01-22  Jim Meyering  <meyering@lucent.com>
23148
23149         * lib/strtoumax.c: [! HAVE_DECL_STRTOUL]: Declare strtoul.
23150         [! HAVE_DECL_STRTOULL]: Declare strtoull.
23151         Required for some AIX systems.  Reported by Christian Krackowizer.
23152         [TESTING] (main): New function.
23153
23154         1997-10-17  Eli Zaretskii  <eliz@is.elta.co.il>
23155         * lib/dirname.c (dir_name): Support for DOS-style file names with drive
23156         letters.
23157
23158         * lib/quotearg.c [HAVE_WCTYPE_H]: Include <wctype.h> for decl of
23159         iswprint.
23160
23161         * lib/strverscmp.c (ISDIGIT): Define.
23162         (strverscmp): Use ISDIGIT, not isdigit.
23163
23164 2000-01-19  Jim Meyering  <meyering@lucent.com>
23165
23166         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Include <sys/time.h>, too.
23167         Use AC_HEADER_TIME.  Volker Borchert reported that OpenBSD-2.3/sparc
23168         defines `struct timespec' in <sys/time.h>
23169
23170         * m4/c-bs-a.m4: Remove uses of changequote altogether.
23171         Thanks to Akim for explaining.
23172
23173 2000-01-17  Paul Eggert  <eggert@twinsun.com>
23174
23175         * lib/nanosleep.c (nanosleep):
23176         Don't use SA_INTERRUPT to decide whether to call sigaction, as
23177         POSIX.1 doesn't require SA_INTERRUPT and some systems
23178         (e.g. Solaris 7) don't define it.  Use SA_NOCLDSTOP instead;
23179         it's been part of POSIX.1 since day 1 (in 1988).
23180
23181 2000-01-17  Jim Meyering  <meyering@lucent.com>
23182
23183         * lib/interlock: Remove unused file.  Reported by François Pinard.
23184
23185 2000-01-16  Paul Eggert  <eggert@twinsun.com>
23186
23187         * lib/quotearg.c (quotearg_buffer_restyled): Do not quote
23188         alert, backslash, formfeed, and vertical tab unnecessarily in
23189         shell quoting style.
23190
23191 2000-01-16  Jim Meyering  <meyering@lucent.com>
23192
23193         * m4/jm-macros.m4: Require jm_FUNC_GROUP_MEMBER, jm_FUNC_PUTENV,
23194         AM_FUNC_ERROR_AT_LINE, jm_FUNC_GNU_STRFTIME, jm_FUNC_MKTIME,
23195         jm_FUNC_GETGROUPS AC_FUNC_VPRINTF, AC_FUNC_ALLOCA,
23196         AM_FUNC_GETLOADAVG, and jm_SYS_PROC_UPTIME.
23197
23198 2000-01-16  Jim Meyering  <meyering@lucent.com>
23199
23200         * m4/c-bs-a.m4: Use `changequote(<<,>>)', rather than `changequote(, )'
23201         because the latter didn't work.
23202
23203 2000-01-15  Jim Meyering  <meyering@lucent.com>
23204
23205         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add gethostname and getusershell.
23206         (AC_REPLACE_FUNCS): Add memcpy and memset.
23207         Add these, too: stime strcspn stpcpy strstr strtol strtoul.
23208         Add strpbrk.
23209         Add these: euidaccess memcmp mkdir rmdir rpmatch strndup strverscmp.
23210
23211 2000-01-12  Jim Meyering  <meyering@lucent.com>
23212
23213         * m4/prereq.m4 (jm_PREREQ_CANON_HOST): New macro.
23214         (jm_PREREQ): Use it.
23215         (jm_PREREQ_READUTMP): New macro.
23216         (jm_PREREQ): Use it.
23217
23218 2000-01-11  Paul Eggert  <eggert@twinsun.com>
23219
23220         Quote multibyte characters correctly.
23221         * m4/c-bs-a.m4: New file.
23222         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): New macro.
23223         (jm_PREREQ): Use it.
23224
23225 2000-01-11  Paul Eggert  <eggert@twinsun.com>
23226
23227         * m4/uintmax_t.m4: Port to autoconf 2.13.
23228
23229 2000-01-08  Jim Meyering  <meyering@ascend.com>
23230
23231         * m4/strerror_r.m4 (jm_FUNC_STRERROR_R): New file/macro.
23232         * m4/jm-macros.m4 (jm_FUNC_STRERROR_R): Require it.
23233
23234 2000-01-04  Jim Meyering  <meyering@ascend.com>
23235
23236         * m4/d-type.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Rename from
23237         jm_STRUCT_DIRENT_D_TYPE.
23238         * m4/d-ino.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_INO): Rename from
23239         jm_STRUCT_DIRENT_D_INO.
23240         * m4/utimbuf.m4 (jm_CHECK_TYPE_STRUCT_UTIMBUF): Rename from
23241         jm_STRUCT_UTIMBUF.
23242         * m4/jm-macros.m4: Reflect s/jm_STRUCT_/jm_CHECK_TYPE_STRUCT_/
23243         renamings.
23244         * m4/utime.m4: Likewise.
23245
23246         * m4/timespec.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC): New file, macro.
23247         * m4/jm-macros.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC): Require it.
23248
23249 2000-01-03  Paul Eggert  <eggert@twinsun.com>
23250
23251         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Search for nanosleep in -lrt
23252         (for Solaris 7) and in -lposix4 (for Solaris 2.5.1).
23253
23254 2000-01-02  Jim Meyering  <meyering@ascend.com>
23255
23256         * m4/search-libs.m4: Escape `$' in $3 of dnl comment.  I no longer
23257         remember if this is necessary.
23258
23259 1999-12-26  Jim Meyering  <meyering@ascend.com>
23260
23261         * m4/jm-macros.m4: Use it here.
23262         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): New file/macro.
23263
23264 1999-12-23  Jim Meyering  <meyering@ascend.com>
23265
23266         * m4/jm-macros.m4: Check for clock_gettime (moved from
23267         fileutils/configure.in)
23268         Check for gettimeofday.
23269
23270 1999-12-20  Jim Meyering  <meyering@ascend.com>
23271
23272         * m4/strftime.m4: Remove kludge, now that I'm using the fixed
23273         autoconf-2.14a-1999-12-20.
23274
23275 1999-12-19  Jim Meyering  <meyering@ascend.com>
23276
23277         * m4/lstat-slash.m4: New file.
23278         * m4/jm-macros.m4: Use the new macro:
23279         jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
23280
23281 1999-12-07  Jim Meyering  <meyering@ascend.com>
23282
23283         * m4/perl.m4: Require that File::Compare be available, too.
23284         Too many systems seem to lack it.
23285
23286         * m4/strftime.m4: Add checks for most of the cpp macros tested in
23287         GNU's strftime.c.  Prompted by a patch from Paul Eggert.
23288
23289 1999-11-18  Paul Eggert  <eggert@twinsun.com>
23290
23291         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Work around a
23292         problem with the QNX 4.25 shell, which doesn't propagate exit
23293         status of failed commands inside shell assignments.
23294
23295 1999-11-17  Jim Meyering  <meyering@ascend.com>
23296
23297         * m4/gettext.m4: Use new AC_CONFIG_LINKS in place of AC_LINK_FILES.
23298
23299 1999-11-07  Jim Meyering  <meyering@ascend.com>
23300
23301         * m4/getloadavg.m4: Add `, 1, [FIXME]' to each use of AC_DEFINE.
23302
23303 1999-11-06  Jim Meyering  <meyering@ascend.com>
23304
23305         * m4/link-follow.m4 (jm_AC_FUNC_LINK_FOLLOWS_SYMLINK): New file/macro.
23306         * m4/jm-macros.m4 (jm_MACROS): Use it here.
23307
23308 1999-11-05  Jim Meyering  <meyering@ascend.com>
23309
23310         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Move some tests from
23311         configure.in of textutils, fileutils, and sh-utils into this one
23312         (shared between those packages) file.
23313         Use `AC_CHECK_MEMBERS((struct stat.st_blksize))' instead of deprecated
23314         AC_STRUCT_ST_BLKSIZE.
23315
23316 1999-11-03  Jim Meyering  <meyering@ascend.com>
23317
23318         * m4/ssize_t.m4: Remove file.  No longer needed since the new version
23319         of AC_CHECK_TYPE checks includes unistd.h.
23320         * m4/jm-macros.m4: Use straight `AC_CHECK_TYPE(ssize_t, int)'.
23321         Suggestion from Akim Demaille.
23322
23323 1999-10-30  Jim Meyering  <meyering@ascend.com>
23324
23325         * m4/uintmax_t.m4: Require 2.14a.  Remove backslash before backtick in
23326         m4-quoted string.
23327         * m4/ls-mntd-fs.m4: Likewise.
23328         * m4/jm-macros.m4: Likewise.  Also, use AC_TYPE_SSIZE_T instead
23329         * m4/jm-winsz1.m4: Likewise.
23330
23331         * m4/const.m4: Remove file, since the fix made it into the experimental
23332         version of autoconf.
23333         * m4/mktime.m4: Likewise.
23334
23335         * m4/check-type.m4: Remove file, now that the latest version of
23336         AC_CHECK_TYPE takes a third arg to specify additional #includes.
23337
23338         * m4/ssize_t.m4: New file, requires experimental version of autoconf.
23339         * m4/jm-macros.m4: Use new AC_TYPE_SSIZE_T instead of my hacked
23340         AC_CHECK_TYPE.
23341
23342 1999-10-04  Jim Meyering  <meyering@ascend.com>
23343
23344         * m4/jm-macros.m4: Don't require autoconf-2.14.1.
23345
23346 1999-09-22  Paul Eggert  <eggert@twinsun.com>
23347
23348         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Work around GCC
23349         2.95.1 bug with HP-UX 10.20.
23350
23351 1999-09-17  Jim Meyering  <meyering@ascend.com>
23352
23353         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add strdup.
23354         Paul Nevai reported a link failure on a NeXT CUBE with NeXTSTEP 3.3
23355         due to missing strdup (against sh-utils-2.0).
23356
23357 1999-08-29  Jim Meyering  <meyering@ascend.com>
23358
23359         * m4/jm-macros.m4: Require jm_BISON.
23360         * m4/bison.m4: New file.
23361
23362 1999-08-17  Paul Eggert  <eggert@twinsun.com>
23363
23364         * m4/largefile.m4 (AC_SYS_LARGEFILE): Fix typo: missing comma
23365         in value for _FILE_OFFSET_BITS, which broke ports to HP-UX 10.20.
23366
23367 1999-08-05  Jim Meyering  <meyering@ascend.com>
23368
23369         * m4/getline.m4: Rename test file from conftestdata to conftest.data
23370         to avoid conflicts with `conftest' on 8+3 filesystems.
23371         Suggestion from Eli Zaretskii.
23372
23373 1999-08-04  Jim Meyering  <meyering@ascend.com>
23374
23375         * m4/jm-macros.m4: Move a 4-line block of code from the configure.in of
23376         fileutils and sh-utils (textutils's getline test was inadequate).
23377         (AM_FUNC_GETLINE): Run this test.
23378         (AC_CHECK_FUNCS): Check for getdelim.
23379         Reported by Bob Proulx.
23380
23381 1999-08-02  Jim Meyering  <meyering@ascend.com>
23382
23383         * m4/jm-macros.m4: Add a comment.
23384
23385 1999-08-01  Paul Eggert  <eggert@twinsun.com>
23386
23387         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Check whether
23388         <inttypes.h> defines strtoumax as a macro (and not as a
23389         function).
23390
23391 1999-08-01  Paul Eggert  <eggert@twinsun.com>
23392
23393         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Make sure
23394         that we can shift, multiply and divide unsigned long long
23395         values; Ultrix cc can't do it.
23396
23397 1999-08-01  Paul Eggert  <eggert@twinsun.com>
23398
23399         * m4/mktime.m4: New file, which is a preview of what should appear
23400         in the next public autoconf release.
23401
23402 1999-08-01  Paul Eggert  <eggert@twinsun.com>
23403
23404         * m4/lfs.m4: Remove this file.
23405         * m4/largefile.m4: New file.  It contains the old contents of
23406         lfs.m4, except that all names with prefix AC_LFS have been
23407         changed to use the prefix AC_SYS_LARGEFILE instead, to be
23408         compatible with future autoconf versions.  Also, some minor m4
23409         quoting problems have been fixed.
23410
23411 1999-08-01  Paul Eggert  <eggert@twinsun.com>
23412
23413         * m4/gettext.m4 (AM_WITH_NLS): Remove unnecessary lines.
23414         Fix typo: $nls_cv_header_intl was misspelled as $nsl_cv_header_intl.
23415         (AM_GNU_GETTEXT): Fix problem with brackets and m4 quoting,
23416         and simplify the shell code.
23417
23418 1999-08-01  Jim Meyering  <meyering@ascend.com>
23419
23420         * m4/mktime.m4 (AC_FUNC_MKTIME): Undefine to avoid syntax errors from
23421         m4.
23422
23423 1999-07-20  Jim Meyering  <meyering@ascend.com>
23424
23425         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memmove.
23426
23427 1999-07-15  Jim Meyering  <meyering@ascend.com>
23428
23429         * m4/jm-macros.m4 (AC_CHECK_FUNCS): Check for getpagesize.
23430
23431 1999-05-22  Jim Meyering  <meyering@ascend.com>
23432
23433         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memchr.
23434
23435 1999-05-20  Jim Meyering  <meyering@ascend.com>
23436
23437         * m4/search-libs.m4 [AC_SEARCH_LIBS]: Quote name in undefine.
23438         Add a colon after each `then' in case $4 is empty.
23439
23440 1999-05-16  Jim Meyering  <meyering@ascend.com>
23441
23442         * m4/search-libs.m4: New file to override autoconf's AC_SEARCH_LIBS.
23443
23444 1999-05-10  Jim Meyering  <meyering@ascend.com>
23445
23446         * m4/jm-mktime.m4: Reflect renaming: AM_FUNC_MKTIME -> AC_FUNC_MKTIME.
23447
23448         * m4/jm-macros.m4: Require 2.14.1, since we use newly-renamed
23449         AC_FUNC_MKTIME.
23450
23451 1999-05-10  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
23452
23453         * m4/jm-mktime.m4, putenv.m4: Fix typos in config.h comments.
23454
23455 1999-05-04  Paul Eggert  <eggert@twinsun.com>
23456
23457         * m4/lfs.m4 (AC_LFS): -n32, -o32, and -n64 should be in CFLAGS,
23458         not CPPFLAGS, so that linking works correctly in IRIX.
23459
23460 1999-04-30  Paul Eggert  <eggert@twinsun.com>
23461
23462         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add dup2.
23463
23464 1999-04-20  Paul Eggert  <eggert@twinsun.com>
23465
23466         * m4/uintmax_t.m4 (jm_AC_TYPE_UINTMAX_T): Move unsigned long
23467         long check into new jm_AC_TYPE_UNSIGNED_LONG_LONG macro.
23468         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require
23469         jm_AC_TYPE_UNSIGNED_LONG_LONG.
23470         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): New file/macro.
23471
23472         * m4/lfs.m4: Port to AIX and HP-UX.  Support cross-compilation.
23473
23474 1999-04-20  Jim Meyering  <meyering@ascend.com>
23475
23476         * m4/xstrtoumax.m4: Require jm_AC_TYPE_UNSIGNED_LONG_LONG.
23477         AC_REPLACE xstroull if necessary.  From Paul Eggert.
23478         (AC_CHECK_FUNCS): Remove strtoull, strtoumax, strtouq.
23479
23480 1999-04-18  Jim Meyering  <meyering@ascend.com>
23481
23482         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): New file/macro.
23483         * m4/jm-macros.m4: Use it.
23484
23485 1999-04-06  Jim Meyering  <meyering@ascend.com>
23486
23487         * m4/strftime.m4: Remove test for %f.
23488
23489 1999-03-29  Jim Meyering  <meyering@ascend.com>
23490
23491         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): New macro, contains the
23492         superset of the AC_TYPE_* checks in the textutils, fileutils,
23493         and sh-utils, plus AC_TYPE_PID_T.  Paul Eggert suggested adding
23494         AC_TYPE_PID_T.
23495
23496 1999-03-28  Jim Meyering  <meyering@ascend.com>
23497
23498         * m4/jm-macros.m4: Define GNU_PACKAGE here.
23499         Be sure to AC_SUBST it, once again, so that @GNU_PACKAGE@ is
23500         replaced e.g., in the *.sh files of the sh-utils.
23501
23502 1999-03-20  Jim Meyering  <meyering@ascend.com>
23503
23504         * m4/jm-macros.m4: s/jm_WITH_REGEX/jm_INCLUDED_REGEX/.
23505         * m4/regex.m4 (jm_INCLUDED_REGEX): Rename from jm_WITH_REGEX.
23506         Don't depend on AM_GLIBC.  Suggestions from Alain Magloire.
23507
23508 1999-03-19  Jim Meyering  <meyering@ascend.com>
23509
23510         * m4/jm-winsz1.m4 (jm_WINSIZE_IN_PTEM): New macro.
23511
23512 1999-03-12  Jim Meyering  <meyering@ascend.com>
23513
23514         * m4/jm-macros.m4: Use AC_FUNC_SETVBUF_REVERSED.
23515
23516 1999-03-07  Jim Meyering  <meyering@ascend.com>
23517
23518         * m4/jm-glibc-io.m4: Use only those *_unlocked macros that are
23519         declared.
23520
23521 1999-02-17  Jim Meyering  <meyering@ascend.com>
23522
23523         * m4/gettext.m4 (AM_GNU_GETTEXT): Do `changequote' around use of
23524         brackets in macro definition.  From Eli Zaretskii and Alain Magloire.
23525
23526 1999-02-07  Jim Meyering  <meyering@ascend.com>
23527
23528         * m4/group-member.m4: New file -- extracted from sh-utils'
23529         configure.in.
23530
23531         1999-02-05  Eli Zaretskii  <eliz@is.elta.co.il>
23532         * m4/gettext.m4: Support DOS-style d:/foo/bar absolute file names.
23533
23534 1999-02-06  Jim Meyering  <meyering@ascend.com>
23535
23536         * m4/chown.m4: Use `AC_SUBST(LIBOBJS)' since we set LIBOBJS.
23537         * m4/fnmatch.m4: Likewise.
23538         * m4/getgroups.m4: Likewise.
23539         * m4/lstat.m4: Likewise.
23540         * m4/malloc.m4: Likewise.
23541         * m4/putenv.m4: Likewise.
23542         * m4/realloc.m4: Likewise.
23543         * m4/regex.m4: Likewise.
23544         * m4/stat.m4: Likewise.
23545         * m4/strftime.m4: Likewise.
23546         Suggestion from Alain Magloire.
23547
23548         * m4/chown.m4: Use `.$ac_objext', not `.o'.
23549         * m4/fnmatch.m4: Likewise.
23550         * m4/getgroups.m4: Likewise.
23551         * m4/getline.m4: Likewise.
23552         * m4/lstat.m4: Likewise.
23553         * m4/malloc.m4: Likewise.
23554         * m4/memcmp.m4: Likewise.
23555         * m4/putenv.m4: Likewise.
23556         * m4/realloc.m4: Likewise.
23557         * m4/regex.m4: Likewise.
23558         * m4/stat.m4: Likewise.
23559         * m4/strftime.m4: Likewise.
23560         Suggestion from Alain Magloire.
23561
23562         * m4/jm-macros.m4: Actually invoke jm_WITH_REGEX now that it requires
23563         an argument.
23564
23565         * m4/regex.m4: Add a run-time Test for proper operation of
23566         re_compile_pattern.
23567
23568 1999-01-31  Jim Meyering  <meyering@ascend.com>
23569
23570         * m4/getloadavg.m4: Check for locale.h and the function, setlocale.
23571
23572 1999-01-30  Jim Meyering  <meyering@ascend.com>
23573
23574         * m4/check-type.m4: Use 3-arg form of AC_DEFINE.
23575
23576         * m4/jm-mktime.m4: Make this a wrapper around the official
23577         AM_FUNC_MKTIME rather than my private copy, now that the official one
23578         is up to date.
23579         * m4/mktime.m4: Remove file.
23580
23581         * m4/getloadavg.m4: Use 3-arg form of AC_DEFINE.
23582         * m4/uptime.m4: Likewise.
23583         * m4/uintmax_t.m4: Likewise.
23584
23585 1999-01-28  Jim Meyering  <meyering@ascend.com>
23586
23587         * m4/jm-macros.m4: Use jm_AFS.
23588         * m4/afs.m4: New file (from fileutils' configure.in).
23589
23590         * m4/assert.m4: Use the 3-argument forms of AC_DEFINE* macros.
23591         * m4/chown.m4: Likewise.
23592         * m4/d-ino.m4: Likewise.
23593         * m4/d-type.m4: Likewise.
23594         * m4/fnmatch.m4: Likewise.
23595         * m4/getgroups.m4: Likewise.
23596         * m4/gettext.m4: Likewise.
23597         * m4/jm-mktime.m4: Likewise.
23598         * m4/jm-winsz2.m4: Likewise.
23599         * m4/lcmessage.m4: Likewise.
23600         * m4/ls-mntd-fs.m4: Likewise.
23601         * m4/malloc.m4: Likewise.
23602         * m4/memcmp.m4: Likewise.
23603         * m4/putenv.m4: Likewise.
23604         * m4/realloc.m4: Likewise.
23605         * m4/st_mtim.m4: Likewise.
23606         * m4/strftime.m4: Likewise.
23607
23608 1999-01-16  Jim Meyering  <meyering@ascend.com>
23609
23610         * m4/jm-macros.m4 (ARGMATCH_DIE): Define.
23611         (ARGMATCH_DIE_DECL): Define.
23612
23613 1999-01-12  Jim Meyering  <meyering@ascend.com>
23614
23615         * m4/Makefile.am.in: Rewrite to avoid using fmt.
23616         Reported by Lars Hecking.
23617
23618 1999-01-10  Jim Meyering  <meyering@ascend.com>
23619
23620         * m4/fstypename.m4: Use the new 3-arg form of AC_DEFINE instead of my
23621         gross kludge.
23622         * m4/inttypes_h.m4: Likewise.
23623         * m4/lstat.m4: Likewise.
23624         * m4/malloc.m4: Likewise.
23625         * m4/readdir.m4: Likewise.
23626         * m4/realloc.m4: Likewise.
23627         * m4/st_dm_mode.m4: Likewise.
23628         * m4/stat.m4: Likewise.
23629         * m4/utimbuf.m4: Likewise.
23630         * m4/utimes.m4: Likewise.
23631
23632         * m4/check-decl.m4: Use the new 3-arg form of AC_DEFINE instead of the
23633         AC_CHECK_FUNCS hack.  Now, it's still a hack, but at least the
23634         comments in config.h.in are meaningful.
23635
23636         * m4/jm-macros.m4: Require autoconf-2.13 here.
23637
23638         * m4/regex.m4: By default, don't use the included regex.c on systems
23639         with glibc 2.  Suggestion from Uli Drepper.
23640
23641 1999-01-02  Jim Meyering  <meyering@ascend.com>
23642
23643         * m4/jm-macros.m4: Replace strcasecmp and strncasecmp.
23644
23645 1998-12-18  Jim Meyering  <meyering@ascend.com>
23646
23647         * m4/Makefile.am.in (Makefile.am): Simplify rule.
23648         Based on a suggestion from Lars Hecking.
23649
23650 1998-11-16  Paul Eggert  <eggert@twinsun.com>
23651
23652         * m4/lfs.m4 (AC_LFS): Add support for HP-UX 10.20 and HP-UX 11.
23653
23654 1998-11-16  Jim Meyering  <meyering@ascend.com>
23655
23656         * m4/lfs.m4: Double-quote the `uname...` expression.
23657
23658 1998-11-14  Jim Meyering  <meyering@ascend.com>
23659
23660         * m4/lstat.m4: Correct comment.  POSIX does not permit it to succeed.
23661         * m4/stat.m4: Likewise.
23662
23663 1998-11-03  Jim Meyering  <meyering@ascend.com>
23664
23665         * m4/stat.m4: Rewrite to set HAVE_STAT_EMPTY_STRING_BUG.
23666         * m4/lstat.m4: Rewrite to set HAVE_LSTAT_EMPTY_STRING_BUG.
23667
23668 1998-10-18  Jim Meyering  <meyering@ascend.com>
23669
23670         * m4/check-decl.m4 (jm_CHECK_DECL_LOCALTIME_R): Remove macro.
23671
23672 1998-10-17  Jim Meyering  <meyering@ascend.com>
23673
23674         * m4/decl.m4 (jm_CHECK_DECLARATION): Don't hard-code which headers to
23675         include, though we still hard-code the `require'-like AC_CHECK_HEADERS
23676         calls for those previously hard-coded headers.  Instead, take a new
23677         parameter.
23678         (jm_CHECK_DECLARATIONS): Reflect interface change.
23679         * m4/check-decl.m4 (jm_CHECK_DECLS): Likewise.
23680         (jm_CHECK_DECL_LOCALTIME_R): New macro.
23681
23682         * m4/mktime.m4: Test for spring-forward gap before long-running test.
23683
23684 1998-10-14  Jim Meyering  <meyering@ascend.com>
23685
23686         * m4/mktime.m4: Use the more portable "TZ=PST8PDT,M4.1.0,M10.5.0"
23687         instead of "TZ=America/Vancouver".  From Paul Eggert.
23688
23689 1998-10-11  Jim Meyering  <meyering@ascend.com>
23690
23691         * m4/mktime.m4 (jm_AM_FUNC_MKTIME): New file and macro.
23692         This adds a test for a recently added compatibility fix for mktime.c.
23693         * m4/jm-mktime.m4: Require jm_AM_FUNC_MKTIME, not AM_FUNC_MKTIME.
23694
23695 1998-09-27  Jim Meyering  <meyering@ascend.com>
23696
23697         * m4/jm-macros.m4 (jm_MACROS): Require jm_FUNC_FNMATCH.
23698
23699         * m4/fnmatch.m4 (jm_FUNC_FNMATCH): New file/macro.  Extracted from
23700         ../configure.in, including a change from Gordon Matzigkeit to allow
23701         cross-compiling for the Hurd.
23702
23703         * m4/glibc.m4: New file/macro to test for the GNU C Library
23704         versions 1 and 2.  From Gordon Matzigkeit.
23705         Indent.
23706
23707 1998-09-21  Jim Meyering  <meyering@ascend.com>
23708
23709         * m4/chown.m4: Declare locals: before, after.  From Andries Brouwer.
23710
23711 1998-08-18  Paul Eggert  <eggert@twinsun.com>
23712
23713         Port nanosecond-resolution times to UnixWare 2.1.2 and
23714         pedantic Solaris 2.6.
23715
23716         * m4/st_mtim.m4 (AC_STRUCT_ST_MTIM_NSEC): Renamed from
23717         AC_STRUCT_ST_MTIM.
23718         * m4/st_mtim.m4 (AC_STRUCT_ST_MTIM_NSEC):
23719         Generate name of ns member, instead of just 1 or undef.
23720         Allow for UnixWare 2.1.2 and Solaris 2.6 if in pedantic mode.
23721
23722 1998-08-15  Jim Meyering  <meyering@ascend.com>
23723
23724         * m4/ssize_t.m4 (jm_TYPE_SSIZE_T): Remove file.
23725         * m4/check-type.m4: New file.  Replacement for AC_CHECK_TYPE.
23726         * m4/jm-macros.m4: Use the new AC_CHECK_TYPE(ssize_t, int)
23727         instead of jm_TYPE_SSIZE_T.
23728
23729 1998-08-12  Jim Meyering  <meyering@ascend.com>
23730
23731         * m4/st_dm_mode.m4: New file.  From Johan Danielsson.
23732
23733 1998-08-02  Jim Meyering  <meyering@ascend.com>
23734
23735         * m4/st_mtim.m4: Use hack to avoid having to put #undef HAVE_ST_MTIM
23736         in acconfig.h manually.
23737
23738 1998-07-31  Paul Eggert  <eggert@twinsun.com>
23739
23740         * m4/st_mtim.m4: New file.
23741
23742 1998-07-28  Jim Meyering  <meyering@ascend.com>
23743
23744         * m4/utimes.m4: Undef stat.
23745
23746 1998-07-25  Jim Meyering  <meyering@ascend.com>
23747
23748         * m4/utime.m4 (jm_FUNC_UTIME): New file and macro.
23749         * m4/utimes.m4 (jm_FUNC_UTIMES_NULL): New file and macro.
23750
23751 1998-07-09  Manfred Hollstein  <manfred@s-direktnet.de>
23752
23753         * m4/chown.m4 (jm_FUNC_CHOWN): Add a check to verify that the
23754         uid and gid actually remain unchanged.
23755
23756 1998-07-07  Jim Meyering  <meyering@ascend.com>
23757
23758         * m4/jm-glibc-io.m4: Remove fclose_unlocked.
23759
23760 1998-07-04  Jim Meyering  <meyering@ascend.com>
23761
23762         * m4/regex.m4: Use syscmd, ifelse, and sysval.  Mainly as an exercise
23763         to prove that this macro can be used in packages without regex.c.
23764
23765 1998-07-04  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
23766
23767         * m4/gettext.m4 (AM_WITH_NLS): Remove intl/libintl.h if <libintl.h>
23768         is to be used.
23769
23770 1998-07-03  Jim Meyering  <meyering@ascend.com>
23771
23772         * m4/gettext.m4: Add -lintl if it's found to be necessary.
23773
23774         * m4/gettext.m4: New file -- from gettext-0.10.35.
23775         * m4/lcmessage.m4: Likewise.
23776         * m4/progtest.m4: Likewise.
23777
23778         * m4/regex.m4 (jm_WITH_REGEX): New file and macro.
23779         * m4/jm-macros.m4: Require the new macro.
23780
23781 1998-06-29  Jim Meyering  <meyering@ascend.com>
23782
23783         * m4/fstypename.m4: Include sys/param.h.  NetBSD 1.3.1 requires this
23784         for the definition of NGROUPS (used in a system header included
23785         by sys/mount.h).
23786
23787 1998-06-28  Jim Meyering  <meyering@ascend.com>
23788
23789         * m4/ls-mntd-fs.m4: New file.
23790         * m4/fstypename.m4: New file.
23791
23792         * m4/jm-macros.m4: Require the new macro.
23793         * m4/jm-glibc-io.m4: New file.
23794
23795 1998-05-19  Jim Meyering  <meyering@ascend.com>
23796
23797         * m4/jm-macros.m4: Add jm_FUNC_LCHOWN.
23798         * m4/lchown.m4: New file.
23799
23800         * m4/Makefile.am.in: New file.
23801         * m4/Makefile.am (Makefile.am): Depend on Makefile.am.in.
23802
23803 1998-05-14  Jim Meyering  <meyering@ascend.com>
23804
23805         * m4/Makefile.am (EXTRA_DIST): Add them.
23806         * m4/jm-macros.m4: New file.
23807         * m4/utimbuf.m4: New file.
23808
23809 1998-05-12  Jim Meyering  <meyering@ascend.com>
23810
23811         * m4/Makefile.am (EXTRA_DIST): Add isc-posix.m4.
23812
23813 1998-05-11  Jim Meyering  <meyering@ascend.com>
23814
23815         * m4/isc-posix.m4: New file.
23816
23817 1998-05-10  Jim Meyering  <meyering@ascend.com>
23818
23819         * m4/jm-mktime.m4: Use AM_FUNC_MKTIME, now that it's up to date.
23820
23821 1998-05-09  Jim Meyering  <meyering@ascend.com>
23822
23823         * m4/Makefile.am (EXTRA_DIST): Add ssize_t.m4.
23824         (EXTRA_DIST): Remove mktime.m4, now that the new version is included
23825         with automake.
23826
23827         * m4/ssize_t.m4: New file.
23828         * m4/mktime.m4: Remove file -- the new automake has this now.
23829
23830 1998-04-26  Jim Meyering  <meyering@ascend.com>
23831
23832         * m4/assert.m4: New file.
23833         * m4/Makefile.am (EXTRA_DIST): Add assert.m4.
23834
23835 1998-04-05  Jim Meyering  <meyering@ascend.com>
23836
23837         * m4/prereq.m4 (jm_PREREQ_REGEX): New macro.
23838         (jm_PREREQ): Use it here.
23839
23840 1998-03-23  Jim Meyering  <meyering@eng.ascend.com>
23841
23842         * m4/inttypes_h.m4: Kludges so I don't have to add HAVE_INTTYPES_H
23843         in acconfig.h.
23844
23845 1998-03-15  Jim Meyering  <meyering@eng.ascend.com>
23846
23847         * m4/prereq.m4: New file.
23848         * m4/error.m4: New file.
23849         * m4/Makefile.am (EXTRA_DIST): Add error.m4 and prereq.m4.
23850
23851 1998-02-07  Jim Meyering  <meyering@eng.ascend.com>
23852
23853         * m4/getline.m4: Don't set am_cv_func_working_getline before the
23854         cache-check for the same variable -- that defeated the purpose of
23855         the test; the test program was never run.  This was a problem only
23856         on systems with losing getline functions -- HP-UX 10.20 is one.
23857         Reported by Bjorn Helgaas.
23858
23859 1998-02-06  Jim Meyering  <meyering@eng.ascend.com>
23860
23861         * m4/Makefile.am (EXTRA_DIST): Add perl.m4.
23862
23863 1998-01-10  Jim Meyering  <meyering@na-net.ornl.gov>
23864
23865         * m4/Makefile.am (EXTRA_DIST): Add const.m4.
23866
23867         * m4/const.m4: New file.  Use an initializer in this declaration
23868         typedef int charset[2]; const charset x;
23869         Reported by Bob Glickstein.
23870
23871 1997-12-21  Jim Meyering  <meyering@na-net.ornl.gov>
23872
23873         * m4/chown.m4: Fix reversed types on -1 args to chown.
23874         From Kaveh Ghazi.
23875
23876 1997-12-14  Jim Meyering  <meyering@na-net.ornl.gov>
23877
23878         * m4/check-decl.m4: s/DECLARATION_/DECL_/g.
23879         Add lseek and memchr.
23880
23881         * m4/decl.m4: s/HAVE_DECLARATION_/HAVE_DECL_/g.
23882         T.E.Dickey <dickey@clark.net> said that some older preprocessors
23883         have a 20-character limit on names.
23884
23885 1997-11-30  Jim Meyering  <meyering@na-net.ornl.gov>
23886
23887         * m4/inttypes_h.m4: New file.
23888         * m4/uintmax_t.m4: New file.
23889         * m4/Makefile.am (EXTRA_DIST): Add inttypes_h.m4 and uintmax_t.m4.
23890
23891 Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006
23892   Free Software Foundation, Inc.
23893 Copying and distribution of this file, with or without modification,
23894 are permitted provided the copyright notice and this notice are preserved.