Add tentative support for Solaris/AMD64.
[gnulib.git] / ChangeLog
1 2007-08-19  Bruno Haible  <bruno@clisp.org>
2
3         * lib/fbufmode.c (fbufmode): Add tentative support for Solaris/AMD64.
4         * lib/fseeko.c (rpl_fseeko): Likewise.
5         * lib/fseterr.c (fseterr): Likewise.
6
7 2007-08-19  Bruno Haible  <bruno@clisp.org>
8
9         * tests/test-lseek.c (main): Disable a test for BeOS.
10         * doc/functions/lseek.texi: Document the BeOS bug.
11
12 2007-08-19  Bruno Haible  <bruno@clisp.org>
13             Eric Blake  <ebb9@byu.net>
14
15         * lib/lseek.c: Include <sys/stat.h>.
16         (rpl_lseek): Add workaround code also for Unix platforms.
17         Needed for BeOS.
18         * m4/lseek.m4 (gl_FUNC_LSEEK): When cross-compiling, fail on BeOS.
19         * doc/functions/lseek.texi: Document BeOS definiency.
20
21 2007-08-18  Bruno Haible  <bruno@clisp.org>
22
23         * modules/fstrcmp-tests: New file.
24         * tests/test-fstrcmp.c: New file.
25
26 2007-08-18  Bruno Haible  <bruno@clisp.org>
27
28         * modules/fstrcmp: New file, from GNU gettext with modifications.
29         * lib/fstrcmp.h: New file, from GNU gettext.
30         * lib/fstrcmp.c: New file, from GNU gettext.
31         * MODULES.html.sh (String handling): Add fstrcmp.
32
33 2007-08-18  Bruno Haible  <bruno@clisp.org>
34
35         * lib/diffseq.h (struct context): Change type of 'heuristic' field to
36         'bool'.
37         (diag, compareseq): Remove const from the ctxt argument.
38         (USE_HEURISTIC): Undefine at the end.
39
40 2007-08-18  Jim Meyering  <jim@meyering.net>
41
42         New file: lib/idcache.h
43         * NEWS: Mention the addition.
44         * modules/idcache (Files): Add lib/idcache.h
45         * lib/idcache.c: Include "idcache.h".
46         Don't include <sys/types.h>.
47         Add a FIXME comment.
48         Move file-scoped "static" declarations to the top.
49         * lib/idcache.h: New file.  Include <sys/types.h> here, instead.
50
51 2007-08-17  Bruno Haible  <bruno@clisp.org>
52         and Paul Eggert  <eggert@cs.ucla.edu>
53
54         * MODULES.html.sh: Add diffseq.
55         * modules/diffseq: New file.
56         * lib/diffseq.h: New file, from GNU gettext with a few minor changes,
57         extracted from GNU gettext's fstrcmp.c and GNU diff's analyze.c.
58
59 2007-08-15  Paul Eggert  <eggert@cs.ucla.edu>
60
61         Import changes from coreutils for bootstrap script.
62
63         2007-07-21  Paul Eggert  <eggert@cs.ucla.edu>
64
65         * build-aux/bootstrap (slurp): Work even in environments where
66         "ls" defaults to "ls -A".  Put in a FIXME, though, since the
67         current code does not slurp files whose names start with ".", and
68         this looks like it might be a troublesome area.
69
70         2007-07-11  Jim Meyering  <jim@meyering.net>
71
72         If there's a GPL vN copyright comment, require that N == 3.
73
74         2007-07-08  Jim Meyering  <jim@meyering.net>
75
76         Run the coreutils-specific code only if tests/Makefile.am.in exists.
77         * build-aux/bootstrap (mam_template): Move definition out of loop.
78
79         Create symlinks for gl/{lib,m4}/*, just as for gnulib/{lib,m4}/*.
80
81         * build-aux/bootstrap (symlink_to_dir): Rename function from
82         symlink_to_gnulib.  Add a directory parameter.  Update all
83         callers.
84         (cp_mark_as_generated): Also check for -- and link to -- files in
85         gl/.
86
87         2007-07-08  Jim Meyering  <jim@meyering.net>
88
89         Adapt to deeper hierarchy in gnulib.
90         * build-aux/bootstrap (symlink_to_dir): If the destination
91         directory doesn't exist, create it. This is required at least for
92         "lib/uniwidth/cjk.h".
93
94         2007-05-15  Jim Meyering  <jim@meyering.net>
95
96         * build-aux/bootstrap: Now that generated Makefile.am files
97         are no longer under version control, they must be created at
98         bootstrap time.
99
100 2007-08-14  Ben Pfaff  <blp@gnu.org>
101
102         * lib/count-one-bits.h: Add comments.  From Bruno Haible.
103
104 2007-08-14  Paul Eggert  <eggert@cs.ucla.edu>
105
106         * lib/count-one-bits.h: Don't include <limits.h>; no longer needed
107         given the changes below.
108         (COUNT_ONE_BITS): Use 'verify' rather than 'verify_true'.  Work
109         even on hosts that have padding bits beyond the supported 64.
110
111 2007-08-10  Paul Eggert  <eggert@cs.ucla.edu>
112
113         * NEWS: In xstrtol, remove STRTOL_FATAL_ERROR and add xstrtol_fatal.
114         * lib/xstrtol.h: Don't include exitfail.h; that's now internal to
115         xstrtol.c.  Include getopt.h, since xstrtol_fatal's signature
116         depends on it.
117         (xstrtol_error): Remove.
118         (xstrtol_fatal): New decl, replacing the functionality of xstrtol_error
119         but with a different signature.
120         (ATTRIBUTE_NORETURN, __attribute__): New macros.
121         * lib/xstrtol-error.c: Include exitfail.h.
122         (xstrtol_fatal): New function, with a different signature from the
123         old xstrtol_error, so that the caller need not worry about passing
124         in an exit status, or about storage management of the option argument.
125         (xstrtol_error): Now a static function.  Redo signature to
126         implement xstrtol_fatal.  Output the correct number of hyphens in
127         front of the option so that the caller need not worry about
128         storage management.
129         (N_): New macro.
130         (_): Remove; not used now.
131         * modules/xstrtol: Depend on getopt.
132         * tests/test-xstrtol.c (main): Use new xstrtol_error function instead
133         of old STRTOL_FATAL_ERROR macro.
134         * tests/test-xstrtol.sh (t-xstrtol.xo): Adjust to match new behavior
135         of test program.
136         * tests/test-xstrtoimax.sh (t-xstrtoimax.xo): Likewise.
137         * tests/test-xstrtoumax.sh (t-xstrtoumax.xo): Likewise.
138
139 2007-08-08  Eric Blake  <ebb9@byu.net>
140
141         * lib/xstrtol-error.c: Add missing include.
142
143         Move xstrtol messages into gnulib domain, when --pobase is used.
144         * lib/xstrtol.h (_STRTOL_ERROR): Move messages out of macro...
145         * lib/xstrtol-error.c (xstrtol_error): ...into new file.
146         * modules/xstrtol (Files): Distribute new file.
147         * m4/xstrtol.m4 (gl_XSTRTOL): Build new file.
148         * lib/xstrtol.c (TESTING_XSTRTO): Move tests...
149         * tests/test-xstrtol.c: ...into new file.
150         * tests/test-xstrtoul.c: Also test xstrtoul.
151         * tests/test-xstrtoimax.c: Also test xstrtoimax.
152         * tests/test-xstrtoumax.c: Also test xstrtoumax.
153         * tests/test-xstrtol.sh: Drive the tests.
154         * tests/test-xstrtoimax.sh: Likewise.
155         * tests/test-xstrtoumax.sh: Likewise.
156         * modules/xstrtol-tests: New module.
157         * modules/xstrtoimax-tests: Likewise.
158         * modules/xstrtoumax-tests: Likewise.
159
160 2007-08-08  Jim Meyering  <jim@meyering.net>
161
162         New function: mfile_name_concat.
163         * lib/filenamecat.c (mfile_name_concat): New function, just like
164         file_name_concat, but return NULL upon failure rather than exiting
165         with a diagnostic.
166         * lib/filenamecat.h: Declare it.
167
168 2007-08-07  Bruno Haible  <bruno@clisp.org>
169
170         * m4/inttypes.m4 (gl_INTTYPES_H): Use GL_TRIGGER_STDC_LIMIT_MACROS
171         instead of __STDC_LIMIT_MACROS_TRIGGER. This avoids a redefinition
172         warning from gcc.
173         Reported by Eric Blake.
174
175 2007-08-07  Simon Josefsson  <simon@josefsson.org>
176
177         * modules/crypto/arctwo (License): Use the synonymous term "LGPLv2+".
178         * modules/crypto/arcfour (License): Likewise.
179         * modules/crypto/des-tests (License): Likewise.
180         * modules/crypto/gc-arctwo-tests (License): Likewise.
181         * modules/crypto/gc-des-tests (License): Likewise.
182         * modules/crypto/gc-hmac-md5-tests (License): Likewise.
183         * modules/crypto/gc-hmac-sha1-tests (License): Likewise.
184         * modules/crypto/gc-md2-tests (License): Likewise.
185         * modules/crypto/gc-md4-tests (License): Likewise.
186         * modules/crypto/gc-md5-tests (License): Likewise.
187         * modules/crypto/gc-pbkdf2-sha1-tests (License): Likewise.
188         * modules/crypto/gc-rijndael-tests (License): Likewise.
189         * modules/crypto/gc-sha1-tests (License): Likewise.
190         * modules/crypto/gc-tests (License): Likewise.
191         * modules/crypto/hmac-md5 (License): Likewise.
192         * modules/crypto/hmac-sha1 (License): Likewise.
193         * modules/crypto/md2-tests (License): Likewise.
194         * modules/crypto/md4-tests (License): Likewise.
195         * modules/crypto/md5 (License): Likewise.
196         * modules/crypto/rijndael (License): Likewise.
197         * modules/crypto/sha1 (License): Likewise.
198         * modules/memxor (License): Likewise.
199
200 2007-08-06  Paul Eggert  <eggert@cs.ucla.edu>
201         and Bruno Haible  <bruno@clisp.org>
202
203         * NEWS: Describe interface changes to human, xstrtol.
204         * lib/human.h: Include <xstrtol.h>.
205         (human_options): Return enum strtol_error, not int.  Remove
206         bool arg; take int * instead.
207         * lib/human.c: Don't include "gettext.h".
208         (_): Remove; no longer used.
209         Don't include <xstrtol.h>, since human.h does it.
210         (human_options): Adjust to abovementioned interface changes.
211         Do not report error to stderr; that's now the caller's
212         responsibility.
213         * lib/xstrtol.c (main) [defined TESTING_XSTRTO]: Adjust to
214         interface change.
215         * lib/xstrtol.h (_STRTOL_ERROR): Take Option, Arg rather than
216         Str, Argument_type_string.  All uses changed.  Put " argument"
217         in diagnostics to make them clearer.  Change wording of suffix
218         message for clarity.
219         (STRTOL_FATAL_ERROR): Take Option, Arg rather than Str,
220         Argument_type_string.
221         (STRTOL_FATAL_WARN): Remove; no longer used.
222         * modules/human (Depends-on): Remove gettext-h.
223
224 2007-08-06  Simon Josefsson  <simon@josefsson.org>
225
226         * build-aux/maint.mk, build-aux/GNUmakefile: Relicense to GPLv3+.
227
228 2007-07-31  Bruno Haible  <bruno@clisp.org>
229
230         * m4/stdint.m4 (gl_STDINT_H): Test whether WCHAR_MIN and WCHAR_MAX
231         are defined by <stdint.h> (as opposed to <wchar.h>, as on Dragonfly).
232         Reported by Joerg Sonnenberger <joerg@britannica.bec.de>.
233
234 2007-07-31  Bruno Haible  <bruno@clisp.org>
235
236         * lib/fflush.c (rpl_fflush): On BSD systems, use the __SNPT flag.
237         Suggested by Joerg Sonnenberger <joerg@britannica.bec.de>.
238
239 2007-07-30  Bruno Haible  <bruno@clisp.org>
240
241         * modules/base64 (License): Use the synonymous term "LGPLv2+".
242         * modules/c-ctype (License): Likewise.
243         * modules/c-strcase (License): Likewise.
244         * modules/check-version (License): Likewise.
245         * modules/iconv (License): Likewise.
246         * modules/iconv_open (License): Likewise.
247         * modules/read-file (License): Likewise.
248         * modules/striconv (License): Likewise.
249         * modules/strverscmp (License): Likewise.
250         * modules/vasprintf (License): Likewise.
251         * modules/crypto/des (License): Likewise.
252         * modules/crypto/gc (License): Likewise.
253         * modules/crypto/gc-arcfour (License): Likewise.
254         * modules/crypto/gc-arctwo (License): Likewise.
255         * modules/crypto/gc-des (License): Likewise.
256         * modules/crypto/gc-hmac-md5 (License): Likewise.
257         * modules/crypto/gc-hmac-sha1 (License): Likewise.
258         * modules/crypto/gc-md2 (License): Likewise.
259         * modules/crypto/gc-md4 (License): Likewise.
260         * modules/crypto/gc-md5 (License): Likewise.
261         * modules/crypto/gc-pbkdf2-sha1 (License): Likewise.
262         * modules/crypto/gc-random (License): Likewise.
263         * modules/crypto/gc-rijndael (License): Likewise.
264         * modules/crypto/gc-sha1 (License): Likewise.
265         * modules/crypto/md2 (License): Likewise.
266         * modules/crypto/md4 (License): Likewise.
267
268 2007-07-30  Jim Meyering  <jim@meyering.net>
269
270         * lib/fts.c (fts_read): Upon failure to chdir into a subdirectory,
271         set fts_info to FTS_DNR, not to FTS_ERR, so that the caller knows
272         it has valid stat data.  This bug would cause du not to count the
273         sizes of inaccessible directories.
274         Patch by Bryan Mason <bmason@redhat.com>, via Jose Maria Plans
275         in <http://bugzilla.redhat.com/250077>.
276
277 2007-07-25  Peter O'Gorman  <peter@pogma.com>
278             Bruno Haible  <bruno@clisp.org>
279
280         * m4/include_next.m4 (gl_INCLUDE_NEXT): Test whether #include_next
281         really works. Needed because AIX 4.3 "xlc -E" doesn't understand
282         #include_next, gives a diagnostic about it, but reports no error in
283         the exit code.
284         Reported by Gary V. Vaughan <gary@thewrittenword.com>.
285
286 2007-07-24  Ben Pfaff  <blp@gnu.org>
287
288         Improve name: "count-one-bits" is better than "popcount".
289         * MODULES.html.sh: Update name.
290         * lib/popcount.h: Renamed lib/count-one-bits.h.
291         (popcount): Renamed count_one_bits.
292         (popcountl): Renamed count_one_bits_l.
293         (popcountll): Renamed count_one_bits_ll.
294         * m4/popcount.m4: Renamed m4/count-one-bits.m4.
295         * modules/popcount: Renamed module/count-one-bits.
296         * modules/popcount-tests: Renamed module/count-one-bits-tests.
297         * tests/test-popcount.c: Renamed tests/test-count-one-bits.c.
298
299 2007-07-23  Ben Pfaff  <blp@gnu.org>
300
301         * lib/popcount.h (popcount32): Reduce size of constants, to allow
302         better code generation, and add U to large constants to avoid
303         warnings, in non-GCC case.
304         Suggested by Bruno Haible.
305
306 2007-07-23  Ben Pfaff  <blp@gnu.org>
307
308         * lib/popcount.h: Use verify_true instead of if...abort.
309         * modules/popcount: Depend on verify module.
310         Suggested by Jim Meyering.
311
312 2007-07-23  Bruno Haible  <bruno@clisp.org>
313
314         * gnulib-tool (func_import): Create a .cvsignore file also when the
315         directory is not yet in CVS but the toplevel directory is. When
316         creating a .cvsignore file, add ".deps" and ".dirstamp" to it.
317         Reported by Karl Berry.
318
319 2007-07-22  Ben Pfaff  <blp@gnu.org>
320
321         * lib/popcount.h: Use faster, branchless algorithm for non-GCC
322         case.
323         Suggested by Eric Blake.
324
325 2007-07-22  Ben Pfaff  <blp@gnu.org>
326
327         New module: popcount.
328         * MODULES.html.sh: Add popcount.
329         * modules/popcount: New file.
330         * modules/popcount-tests: New file.
331         * tests/test-popcount.c: New file.
332         * lib/popcount.h: New file.
333         * m4/popcount.m4: New file.
334
335 2007-07-22  Paul Eggert  <eggert@cs.ucla.edu>
336
337         * build-aux/announce-gen: Update to GPLv3.
338
339         * build-aux/config.guess: Update from config.
340
341 2007-07-21  Bruno Haible  <bruno@clisp.org>
342
343         * lib/error.c (_) [ENABLE_NLS]: Define to gettext.
344         * lib/verror.c (_) [ENABLE_NLS]: Likewise.
345
346 2007-07-20  Jim Meyering  <jim@meyering.net>
347
348         * check-module: Diagnose a self-dependency.
349
350 2007-07-19  Bruno Haible  <bruno@clisp.org>
351
352         * gnulib-tool (func_import): Don't abort if pobase or po_domain is
353         empty.
354         Reported by Eric Blake.
355
356 2007-07-18  Bruno Haible  <bruno@clisp.org>
357
358         * gnulib-tool: New options --po-base, --po-domain.
359         (func_usage): Document them.
360         (pobase, po_domain): New variables.
361         (func_emit_lib_Makefile_am): Augment AM_CPPFLAGS, defining
362         DEFAULT_TEXT_DOMAIN.
363         (func_emit_po_Makevars, func_emit_po_POTFILES_in): New functions.
364         (func_import): Consider pobase and po_domain. Create a po/ directory.
365         (func_create_testdir): Set pobase and po_domain to empty.
366         * build-aux/po/Makefile.in.in: New file, from GNU gettext 0.16.1.
367         * build-aux/po/remove-potcdate.sin: New file, from GNU gettext 0.16.1.
368
369 2007-07-18  Bruno Haible  <bruno@clisp.org>
370
371         * gnulib-tool (func_get_automake_snippet): Synthesize also an
372         EXTRA_DIST augmentation for files in build-aux/.
373
374 2007-07-16  Bruno Haible  <bruno@clisp.org>
375
376         * modules/lseek (License): Use the synonymous term "LGPLv2+".
377         * modules/getdelim (License): Likewise.
378
379 2007-07-16  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
380
381         * modules/arpa_inet (License): Use the synonymous term LGPLv2+.
382         * modules/d-type (License): Likewise.
383         * modules/extensions (License): Likewise.
384         * modules/fnmatch (License): Likewise.
385         * modules/fseeko (License): Likewise.
386         * modules/getaddrinfo (License): Likewise.
387         * modules/getline (License): Likewise.
388         * modules/getlogin_r (License): Likewise.
389         * modules/getpass (License): Likewise.
390         * modules/gettimeofday (License): Likewise.
391         * modules/glob (License): Likewise.
392         * modules/inet_ntop (License): Likewise.
393         * modules/malloc (License): Likewise.
394         * modules/malloca (License): Likewise.
395         * modules/memmem (License): Likewise.
396         * modules/mempcpy (License): Likewise.
397         * modules/memset (License): Likewise.
398         * modules/minmax (License): Likewise.
399         * modules/mktime (License): Likewise.
400         * modules/netinet_in (License): Likewise.
401         * modules/pathmax (License): Likewise.
402         * modules/poll (License): Likewise.
403         * modules/regex (License): Likewise.
404         * modules/snprintf (License): Likewise.
405         * modules/stdbool (License): Likewise.
406         * modules/stdint (License): Likewise.
407         * modules/stdio (License): Likewise.
408         * modules/strcase (License): Likewise.
409         * modules/strcasestr (License): Likewise.
410         * modules/strdup (License): Likewise.
411         * modules/string (License): Likewise.
412         * modules/strndup (License): Likewise.
413         * modules/strnlen (License): Likewise.
414         * modules/strpbrk (License): Likewise.
415         * modules/strptime (License): Likewise.
416         * modules/strsep (License): Likewise.
417         * modules/sys_select (License): Likewise.
418         * modules/sys_socket (License): Likewise.
419         * modules/sys_stat (License): Likewise.
420         * modules/sys_time (License): Likewise.
421         * modules/time (License): Likewise.
422         * modules/time_r (License): Likewise.
423         * modules/timegm (License): Likewise.
424         * modules/unistd (License): Likewise.
425         * modules/vsnprintf (License): Likewise.
426         * modules/wctype (License): Likewise.
427
428 2007-07-16  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
429
430         * modules/argz (License): LGPLv2+.
431
432 2007-07-15  Karl Berry  <karl@gnu.org>
433
434         * doc/gnulib.texi: revise node structure per new fdl.texi.
435
436 2007-07-14  Bruno Haible  <bruno@clisp.org>
437
438         * lib/uniname/gen-uninames.lisp (main): Emit a "do not edit" line to
439         the output file.
440         * lib/uniname/uninames.h: Regenerated.
441
442 2007-07-14  Karl Berry  <karl@gnu.org>
443
444         * doc/*gpl*.texi, doc/fdl.texi: new versions, consistently
445         omitting sectioning and index commands.
446
447 2007-07-13  Bruno Haible  <bruno@clisp.org>
448
449         New gnulib-tool option --more-symlinks.
450         * gnulib-tool (func_usage): Document --more-symlinks.
451         (do_copyrights): New variable.
452         Recognize option --more-symlinks.
453         (func_import): Don't add a copyright notice transform to
454         sed_transform_lib_file if do_copyrights is empty.
455
456 2007-07-13  Bruno Haible  <bruno@clisp.org>
457
458         * lib/vasnprintf.c (decimal_point_char): Define also if
459         (NEED_PRINTF_LONG_DOUBLE || NEED_PRINTF_INFINITE_DOUBLE)
460         && !NEED_PRINTF_DIRECTIVE_A.
461         Reported by Clemens Koller <clemens.koller@anagramm.de> via
462         Gary V. Vaughan <gary@gnu.org>.
463
464 2007-07-13  Paul Eggert  <eggert@cs.ucla.edu>
465
466         * lib/inttypes_.h: Undo previous change, since it was fixed
467         in a different way in the 2007-07-02 fix to m4/inttypes.m4.
468
469 2007-07-13  Bruno Haible  <bruno@clisp.org>
470
471         * lib/stdint_.h: Fix typo: _GL_JUST_INCLUDE_SYSTEM_INTTYPES_H was
472         misspelled as _GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H.
473
474 2007-07-13  Jim Meyering  <jim@meyering.net>
475
476         df: Don't fail for Tru64's "file-on-file mount".
477         * m4/fsusage.m4 (gl_FSUSAGE): Reject Tru64's buggy statvfs,
478         so we fall through and use statfs instead.  Details here:
479         <http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/10878>
480         Reported by Albert Chin.
481
482 2007-07-13  Bruno Haible  <bruno@clisp.org>
483
484         * modules/alloca-opt (License): Use the synonymous term "LGPLv2+".
485         * modules/configmake (License): Likewise.
486         * modules/gettext (License): Likewise.
487         * modules/gettext-h (License): Likewise.
488         * modules/include_next (License): Likewise.
489         * modules/link-warning (License): Likewise.
490         * modules/localcharset (License): Likewise.
491         * modules/localename (License): Likewise.
492         * modules/lock (License): Likewise.
493         * modules/relocatable-lib-lgpl (License): Likewise.
494         * modules/size_max (License): Likewise.
495         * modules/vasnprintf (License): Likewise.
496         * modules/wchar (License): Likewise.
497         * modules/xsize (License): Likewise.
498
499 2007-07-13  Bruno Haible  <bruno@clisp.org>
500
501         * gnulib-tool (func_import): Treat LGPLv2 as synonymous to LGPL.
502         (func_create_testdir): Handle copying terms "GPLv2+" and "LGPLv2+".
503
504 2007-07-12  Bruno Haible  <bruno@clisp.org>
505
506         * doc/gnulib-intro.texi (Copyright): Clarify the license abbreviations
507         in the modules files.
508
509 2007-07-11  Karl Berry  <karl@gnu.org>
510
511         * MODULES.html.sh (func_module): use
512          sed -e '\|^'"${includefile}"'$|d'
513          instead of /.../d, to avoid errors on $includefile's containing /.
514
515 2007-07-10  Sergey Poznyakoff  <gray@gnu.org.ua>
516
517         * gnulib-tool (func_import): Avoid duplication of --avoid
518         statements
519         (func_dest_tmpfilename,func_create_testdir): Translate `-' in file
520         names to `_' in variable names.
521
522 2007-07-10  Eric Blake  <ebb9@byu.net>
523
524         * lib/version-etc.c (version_etc_va): Default to GPLv3+.
525         * NEWS: Document this change.
526
527 2007-07-08  Bruno Haible  <bruno@clisp.org>
528
529         Update to Unicode 5.0.
530         * lib/uniwidth/width.c (nonspacing_table_data): Add U+00AD,
531         U+0350..U+035F, U+05A2, U+05BA, U+05C5, U+05C7, U+0600..U+0603,
532         U+0610..U+0615, U+0656..U+065E, U+07EB..U+07F3, U+0A01, U+0AE2..U+0AE3,
533         U+0CBC. Remove U+0CBF, U+0CC6. Add U+0CE2..U+0CE3, U+135F,
534         U+17B4..U+17B5, U+17DD. Remove U+180E. Add U+1920..U+1922,
535         U+1927..U+192B, U+1932, U+1939..U+193B, U+1A17..U+1A18, U+1B00..U+1B03,
536         U+1B34, U+1B36..U+1B3A, U+1B3C, U+1B42, U+1B6B..U+1B73, U+1DC0..U+1DCA,
537         U+1DFE..U+1DFF, U+20EB..U+20EF, U+A802, U+A806, U+A80B, U+A825..U+A826,
538         U+10A01..U+10A03, U+10A05..U+10A06, U+10A0C..U+10A0F, U+10A38..U+10A3A,
539         U+10A3F, U+1D242..U+1D244.
540         (nonspacing_table_ind): Update.
541         (uc_width): Assign width 0 to U+E0100..U+E01EF. Assign width 1 to
542         U+4DC0..U+4DFF. Assign width 2 to U+2329..U+232A, U+FE10..U+FE1F.
543
544 2007-07-08  Bruno Haible  <bruno@clisp.org>
545
546         Update to Unicode 5.0.
547         * lib/uniname/gen-uninames.lisp (main): Add the range 0x12xxx to the
548         code transform. Extend the name index field of unicode_name_to_code and
549         unicode_code_to_name from 16 to 24 bits.
550         * lib/uniname/uniname.c (unicode_character_name,
551         unicode_name_character): Add the range 0x12xxx to the code transform.
552         * lib/uniname/uninames.h: Regenerated.
553         * tests/uniname/UnicodeDataNames.txt: Update to Unicode 5.0.
554
555 2007-07-07  Bruno Haible  <bruno@clisp.org>
556
557         * modules/wcwidth-tests: New file.
558         * tests/test-wcwidth.c: New file.
559
560         Work around MacOS X wcwidth() bug.
561         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Test against MacOS X 10.3 bug.
562         * lib/wcwidth.c: Include localcharset.h, streq.h, uniwidth.h.
563         (rpl_wcwidth): Special-case the UTF-8 locales. Fall back to the
564         original wcwidth in non-UTF-8 locales.
565         * modules/wcwidth (Depends-on): Add localcharset, streq,
566         uniwidth/width.
567         * doc/functions/wcwidth.texi: Update.
568
569 2007-07-07  Bruno Haible  <bruno@clisp.org>
570
571         * lib/wchar_.h: Include the GL_LINK_WARNING macro.
572         (wcwidth): New declaration.
573         * m4/wchar.m4 (gl_WCHAR_MODULE_INDICATOR, gl_WCHAR_H_DEFAULTS): New
574         macros.
575         (gl_WCHAR_H): Require gl_WCHAR_H_DEFAULTS. Don't set WCHAR_H to empty
576         here. Prepare for creating <wchar.h> unconditionally.
577         * modules/wchar (Depends-on): Add link-warning.
578         (Makefile.am): Substitute also GNULIB_WCWIDTH, HAVE_DECL_WCWIDTH,
579         REPLACE_WCWIDTH, and GL_LINK_WARNING.
580         * lib/wcwidth.h: Remove file.
581         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Require gl_WCHAR_H_DEFAULTS. Set
582         HAVE_DECL_WCWIDTH, REPLACE_WCWIDTH, WCHAR_H.
583         * modules/wcwidth (Files): Remove lib/wcwidth.h.
584         (configure.ac): Invoke gl_WCHAR_MODULE_INDICATOR.
585         (Include): Replace wcwidth.h with <wchar.h>.
586         * lib/wcwidth.c: Include <wchar.h> instead of wcwidth.h.
587         * lib/mbchar.h: Don't include wcwidth.h.
588         * lib/mbswidth.c: Likewise.
589         * NEWS: Mention the change.
590
591 2007-07-07  Bruno Haible  <bruno@clisp.org>
592
593         * lib/wcwidth.c: New file, extracted from lib/wcwidth.h.
594         * lib/wcwidth.h: Don't include wctype.h. Replace inline function
595         definition with an external declaration.
596         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Use wcwidth.c when wcwidth is not
597         defined as a function. Remove AC_C_INLINE requirement.
598         * modules/wcwidth (Files): Add lib/wcwidth.c.
599         (Makefile.am): Remove redundant statement.
600
601 2007-07-07  Bruno Haible  <bruno@clisp.org>
602
603         * MODULES.html.sh (Unicode string functions): Add the new modules.
604
605         * tests/uniwidth/test-u32-strwidth.c: New file.
606         * modules/uniwidth/u32-strwidth-tests: New file.
607
608         * lib/uniwidth/u32-strwidth.c: New file.
609         * modules/uniwidth/u32-strwidth: New file.
610
611         * tests/uniwidth/test-u16-strwidth.c: New file.
612         * modules/uniwidth/u16-strwidth-tests: New file.
613
614         * lib/uniwidth/u16-strwidth.c: New file.
615         * modules/uniwidth/u16-strwidth: New file.
616
617         * tests/uniwidth/test-u8-strwidth.c: New file.
618         * modules/uniwidth/u8-strwidth-tests: New file.
619
620         * lib/uniwidth/u8-strwidth.c: New file.
621         * modules/uniwidth/u8-strwidth: New file.
622
623         * tests/uniwidth/test-u32-width.c: New file.
624         * modules/uniwidth/u32-width-tests: New file.
625
626         * lib/uniwidth/u32-width.c: New file.
627         * modules/uniwidth/u32-width: New file.
628
629         * tests/uniwidth/test-u16-width.c: New file.
630         * modules/uniwidth/u16-width-tests: New file.
631
632         * lib/uniwidth/u16-width.c: New file.
633         * modules/uniwidth/u16-width: New file.
634
635         * tests/uniwidth/test-u8-width.c: New file.
636         * modules/uniwidth/u8-width-tests: New file.
637
638         * lib/uniwidth/u8-width.c: New file.
639         * modules/uniwidth/u8-width: New file.
640
641         * tests/uniwidth/test-uc_width.c: New file.
642         * modules/uniwidth/width-tests: New file.
643
644         * lib/uniwidth/width.c: New file, from GNU libiconv.
645         * lib/uniwidth/cjk.h: New file, from GNU libiconv.
646         * modules/uniwidth/width: New file.
647
648         * lib/uniwidth.h: New file, from GNU libiconv.
649         * modules/uniwidth/base: New file.
650
651 2007-07-07  Bruno Haible  <bruno@clisp.org>
652
653         * lib/uniname.h: New file, from GNU gettext.
654         * lib/uniname/gen-uninames.lisp: New file, from GNU gettext.
655         * lib/uniname/uninames.h: New file, from GNU gettext.
656         * lib/uniname/uniname.c: New file, from GNU gettext.
657         * tests/uniname/test-uninames.sh: New file.
658         * tests/uniname/test-uninames.c: New file, from GNU gettext.
659         * tests/uniname/UnicodeDataNames.txt: New file, from GNU gettext.
660         * modules/uniname/base: New file.
661         * modules/uniname/uniname: New file.
662         * modules/uniname/uniname-tests: New file.
663         * MODULES.html.sh (Unicode string functions): Add the new modules.
664
665 2007-07-06  Bruno Haible  <bruno@clisp.org>
666
667         * doc/Makefile (TEXI2HTML): Specify a --reference-limit.
668
669 2007-07-06  Bruno Haible  <bruno@clisp.org>
670
671         * lib/sys_time_.h: Use a recursion-safe inclusion guard rather than
672         a split double-inclusion guard. Needed for cygwin, where <sys/time.h>
673         includes <cygwin/sys_time.h> which includes <sys/select.h> which
674         include <sys/time.h>.
675         Reported by Eric Blake.
676
677 2007-07-06  Eric Blake  <ebb9@byu.net>
678
679         Fix testing canonicalize on cygwin.
680         * modules/canonicalize-lgpl-tests (test_canonicalize_lgpl_LDADD):
681         Revert patch from 2007-06-19.
682         * tests/test-canonicalize-lgpl.c (main): Instead, skip test when
683         canonicalize module is also in use.
684         * tests/test-canonicalize.c: New file.
685         * tests/test-canonicalize.sh: Likewise.
686         * modules/canonicalize-tests: Likewise.
687
688 2007-07-06  Jim Meyering  <jim@meyering.net>
689
690         * lib/getugroups.c (getugroups): Detect getgrent failure.
691         Adjust comment to reflect reality: this function may return -1.
692
693 2007-07-05  Sergey Poznyakoff  <gray@gnu.org.ua>
694
695         * build-aux/bootstrap (TP_URL,get_translations): Update to use
696         the new TP address.
697         (usage): Fix typo
698         (gnulib_mk): New variable.
699
700 2007-07-05  Jim Meyering  <jim@meyering.net>
701
702         Don't let endgrent clobber errno, no matter how improbable.
703         * lib/getugroups.c (getugroups): Save and restore errno around
704         endgrent call.
705
706         Close the group DB even when failing with 2^31 or more members.
707         * lib/getugroups.c (getugroups): Don't return without calling endgrent.
708
709 2007-07-04  Jim Meyering  <jim@meyering.net>
710
711         * lib/getugroups.h: New file.
712         * lib/getugroups.c: Include "getugroups.h".
713         Remove uses of "register" keyword.
714         Move local variable, "cp", down into scope where used.
715         Give "username" parameter the "const" attribute.
716         * modules/getugroups (Files): Add lib/getugroups.h
717
718 2007-07-04  Karl Berry  <karl@gnu.org>
719
720         * MODULES.html.sh (func_all_modules): Complete rename of
721         gpl/lgpl to gpl-2.0 and lgpl-2.1, and add gpl-3.0.
722
723 2007-07-02  Bruno Haible  <bruno@clisp.org>
724
725         * m4/inttypes.m4 (gl_INTTYPES_H): Define __STDC_LIMIT_MACROS in C++
726         mode, when inttypes.h comes from gnulib.
727         Reported by Joel E. Denny <jdenny@ces.clemson.edu>.
728
729 2007-07-02  Simon Josefsson  <simon@josefsson.org>
730
731         * NEWS: Mention lgpl module name change.
732
733         * modules/lgpl-2.1: Renamed from lgpl.
734
735         * NEWS: Mention gpl module name change.
736
737         * modules/gpl-3.0: New file, based on gpl-2.0.
738
739         * modules/gpl-2.0: Renamed from gpl.
740
741         * modules/gpl: Fix filename, doc/gpl.texi is now found at
742         doc/gpl-2.0.texi.
743
744 2007-07-02  Paul Eggert  <eggert@cs.ucla.edu>
745
746         * lib/inttypes_.h [defined __cplusplus&&!defined __STDC_LIMIT_MACROS]:
747         #define __STDC_LIMIT_MACROS temporarily while including
748         <stdint.h>, so that __STDC_LIMIT_MACROS is defined.
749         Problem reported by Joel E. Denny in
750         <http://lists.gnu.org/archive/html/bug-gnulib/2007-07/msg00008.html>.
751
752 2007-07-01  Bruno Haible  <bruno@clisp.org>
753
754         * lib/unistdio.h: New file.
755         * lib/unistdio/u-asnprintf.h: New file.
756         * lib/unistdio/u-asprintf.h: New file.
757         * lib/unistdio/u-printf-args.c: New file.
758         * lib/unistdio/u-printf-args.h: New file.
759         * lib/unistdio/u-printf-parse.h: New file.
760         * lib/unistdio/u-snprintf.h: New file.
761         * lib/unistdio/u-sprintf.h: New file.
762         * lib/unistdio/u-vasprintf.h: New file.
763         * lib/unistdio/u-vsnprintf.h: New file.
764         * lib/unistdio/u-vsprintf.h: New file.
765         * lib/unistdio/ulc-asnprintf.c: New file.
766         * lib/unistdio/ulc-asprintf.c: New file.
767         * lib/unistdio/ulc-fprintf.c: New file, based on lib/fprintf.c.
768         * lib/unistdio/ulc-printf-parse.c: New file.
769         * lib/unistdio/ulc-snprintf.c: New file.
770         * lib/unistdio/ulc-sprintf.c: New file.
771         * lib/unistdio/ulc-vasnprintf.c: New file.
772         * lib/unistdio/ulc-vasprintf.c: New file.
773         * lib/unistdio/ulc-vfprintf.c: New file, based on lib/vfprintf.c.
774         * lib/unistdio/ulc-vsnprintf.c: New file.
775         * lib/unistdio/ulc-vsprintf.c: New file.
776         * lib/unistdio/u8-asnprintf.c: New file.
777         * lib/unistdio/u8-asprintf.c: New file.
778         * lib/unistdio/u8-printf-parse.c: New file.
779         * lib/unistdio/u8-snprintf.c: New file.
780         * lib/unistdio/u8-sprintf.c: New file.
781         * lib/unistdio/u8-vasnprintf.c: New file.
782         * lib/unistdio/u8-vasprintf.c: New file.
783         * lib/unistdio/u8-vsnprintf.c: New file.
784         * lib/unistdio/u8-vsprintf.c: New file.
785         * lib/unistdio/u8-u8-asnprintf.c: New file.
786         * lib/unistdio/u8-u8-asprintf.c: New file.
787         * lib/unistdio/u8-u8-snprintf.c: New file.
788         * lib/unistdio/u8-u8-sprintf.c: New file.
789         * lib/unistdio/u8-u8-vasnprintf.c: New file.
790         * lib/unistdio/u8-u8-vasprintf.c: New file.
791         * lib/unistdio/u8-u8-vsnprintf.c: New file.
792         * lib/unistdio/u8-u8-vsprintf.c: New file.
793         * lib/unistdio/u16-asnprintf.c: New file.
794         * lib/unistdio/u16-asprintf.c: New file.
795         * lib/unistdio/u16-printf-parse.c: New file.
796         * lib/unistdio/u16-snprintf.c: New file.
797         * lib/unistdio/u16-sprintf.c: New file.
798         * lib/unistdio/u16-vasnprintf.c: New file.
799         * lib/unistdio/u16-vasprintf.c: New file.
800         * lib/unistdio/u16-vsnprintf.c: New file.
801         * lib/unistdio/u16-vsprintf.c: New file.
802         * lib/unistdio/u16-u16-asnprintf.c: New file.
803         * lib/unistdio/u16-u16-asprintf.c: New file.
804         * lib/unistdio/u16-u16-snprintf.c: New file.
805         * lib/unistdio/u16-u16-sprintf.c: New file.
806         * lib/unistdio/u16-u16-vasnprintf.c: New file.
807         * lib/unistdio/u16-u16-vasprintf.c: New file.
808         * lib/unistdio/u16-u16-vsnprintf.c: New file.
809         * lib/unistdio/u16-u16-vsprintf.c: New file.
810         * lib/unistdio/u32-asnprintf.c: New file.
811         * lib/unistdio/u32-asprintf.c: New file.
812         * lib/unistdio/u32-printf-parse.c: New file.
813         * lib/unistdio/u32-snprintf.c: New file.
814         * lib/unistdio/u32-sprintf.c: New file.
815         * lib/unistdio/u32-vasnprintf.c: New file.
816         * lib/unistdio/u32-vasprintf.c: New file.
817         * lib/unistdio/u32-vsnprintf.c: New file.
818         * lib/unistdio/u32-vsprintf.c: New file.
819         * lib/unistdio/u32-u32-asnprintf.c: New file.
820         * lib/unistdio/u32-u32-asprintf.c: New file.
821         * lib/unistdio/u32-u32-snprintf.c: New file.
822         * lib/unistdio/u32-u32-sprintf.c: New file.
823         * lib/unistdio/u32-u32-vasnprintf.c: New file.
824         * lib/unistdio/u32-u32-vasprintf.c: New file.
825         * lib/unistdio/u32-u32-vsnprintf.c: New file.
826         * lib/unistdio/u32-u32-vsprintf.c: New file.
827         * tests/unistdio/test-ulc-asnprintf1.c: New file.
828         * tests/unistdio/test-ulc-asnprintf1.h: New file.
829         * tests/unistdio/test-ulc-printf1.h: New file.
830         * tests/unistdio/test-ulc-vasnprintf1.c: New file.
831         * tests/unistdio/test-ulc-vasnprintf2.c: New file.
832         * tests/unistdio/test-ulc-vasnprintf2.sh: New file.
833         * tests/unistdio/test-ulc-vasnprintf3.c: New file.
834         * tests/unistdio/test-ulc-vasnprintf3.sh: New file.
835         * tests/unistdio/test-ulc-vasprintf1.c: New file.
836         * tests/unistdio/test-ulc-vsnprintf1.c: New file.
837         * tests/unistdio/test-ulc-vsprintf1.c: New file.
838         * tests/unistdio/test-u8-asnprintf1.c: New file.
839         * tests/unistdio/test-u8-asnprintf1.h: New file.
840         * tests/unistdio/test-u8-printf1.h: New file.
841         * tests/unistdio/test-u8-vasnprintf1.c: New file.
842         * tests/unistdio/test-u8-vasnprintf2.c: New file.
843         * tests/unistdio/test-u8-vasnprintf2.sh: New file.
844         * tests/unistdio/test-u8-vasnprintf3.c: New file.
845         * tests/unistdio/test-u8-vasnprintf3.sh: New file.
846         * tests/unistdio/test-u8-vasprintf1.c: New file.
847         * tests/unistdio/test-u8-vsnprintf1.c: New file.
848         * tests/unistdio/test-u8-vsprintf1.c: New file.
849         * tests/unistdio/test-u16-asnprintf1.c: New file.
850         * tests/unistdio/test-u16-asnprintf1.h: New file.
851         * tests/unistdio/test-u16-printf1.h: New file.
852         * tests/unistdio/test-u16-vasnprintf1.c: New file.
853         * tests/unistdio/test-u16-vasnprintf2.c: New file.
854         * tests/unistdio/test-u16-vasnprintf2.sh: New file.
855         * tests/unistdio/test-u16-vasnprintf3.c: New file.
856         * tests/unistdio/test-u16-vasnprintf3.sh: New file.
857         * tests/unistdio/test-u16-vasprintf1.c: New file.
858         * tests/unistdio/test-u16-vsnprintf1.c: New file.
859         * tests/unistdio/test-u16-vsprintf1.c: New file.
860         * tests/unistdio/test-u32-asnprintf1.c: New file.
861         * tests/unistdio/test-u32-asnprintf1.h: New file.
862         * tests/unistdio/test-u32-printf1.h: New file.
863         * tests/unistdio/test-u32-vasnprintf1.c: New file.
864         * tests/unistdio/test-u32-vasnprintf2.c: New file.
865         * tests/unistdio/test-u32-vasnprintf2.sh: New file.
866         * tests/unistdio/test-u32-vasnprintf3.c: New file.
867         * tests/unistdio/test-u32-vasnprintf3.sh: New file.
868         * tests/unistdio/test-u32-vasprintf1.c: New file.
869         * tests/unistdio/test-u32-vsnprintf1.c: New file.
870         * tests/unistdio/test-u32-vsprintf1.c: New file.
871         * modules/unistdio/base: New file.
872         * modules/unistdio/u-printf-args: New file.
873         * modules/unistdio/ulc-asnprintf: New file.
874         * modules/unistdio/ulc-asprintf: New file.
875         * modules/unistdio/ulc-fprintf: New file.
876         * modules/unistdio/ulc-printf-parse: New file.
877         * modules/unistdio/ulc-snprintf: New file.
878         * modules/unistdio/ulc-sprintf: New file.
879         * modules/unistdio/ulc-vasnprintf: New file.
880         * modules/unistdio/ulc-vasprintf: New file.
881         * modules/unistdio/ulc-vfprintf: New file.
882         * modules/unistdio/ulc-vsnprintf: New file.
883         * modules/unistdio/ulc-vsprintf: New file.
884         * modules/unistdio/u8-asnprintf: New file.
885         * modules/unistdio/u8-asprintf: New file.
886         * modules/unistdio/u8-printf-parse: New file.
887         * modules/unistdio/u8-snprintf: New file.
888         * modules/unistdio/u8-sprintf: New file.
889         * modules/unistdio/u8-vasnprintf: New file.
890         * modules/unistdio/u8-vasprintf: New file.
891         * modules/unistdio/u8-vsnprintf: New file.
892         * modules/unistdio/u8-vsprintf: New file.
893         * modules/unistdio/u8-u8-asnprintf: New file.
894         * modules/unistdio/u8-u8-asprintf: New file.
895         * modules/unistdio/u8-u8-snprintf: New file.
896         * modules/unistdio/u8-u8-sprintf: New file.
897         * modules/unistdio/u8-u8-vasnprintf: New file.
898         * modules/unistdio/u8-u8-vasprintf: New file.
899         * modules/unistdio/u8-u8-vsnprintf: New file.
900         * modules/unistdio/u8-u8-vsprintf: New file.
901         * modules/unistdio/u16-asnprintf: New file.
902         * modules/unistdio/u16-asprintf: New file.
903         * modules/unistdio/u16-printf-parse: New file.
904         * modules/unistdio/u16-snprintf: New file.
905         * modules/unistdio/u16-sprintf: New file.
906         * modules/unistdio/u16-vasnprintf: New file.
907         * modules/unistdio/u16-vasprintf: New file.
908         * modules/unistdio/u16-vsnprintf: New file.
909         * modules/unistdio/u16-vsprintf: New file.
910         * modules/unistdio/u16-u16-asnprintf: New file.
911         * modules/unistdio/u16-u16-asprintf: New file.
912         * modules/unistdio/u16-u16-snprintf: New file.
913         * modules/unistdio/u16-u16-sprintf: New file.
914         * modules/unistdio/u16-u16-vasnprintf: New file.
915         * modules/unistdio/u16-u16-vasprintf: New file.
916         * modules/unistdio/u16-u16-vsnprintf: New file.
917         * modules/unistdio/u16-u16-vsprintf: New file.
918         * modules/unistdio/u32-asnprintf: New file.
919         * modules/unistdio/u32-asprintf: New file.
920         * modules/unistdio/u32-printf-parse: New file.
921         * modules/unistdio/u32-snprintf: New file.
922         * modules/unistdio/u32-sprintf: New file.
923         * modules/unistdio/u32-vasnprintf: New file.
924         * modules/unistdio/u32-vasprintf: New file.
925         * modules/unistdio/u32-vsnprintf: New file.
926         * modules/unistdio/u32-vsprintf: New file.
927         * modules/unistdio/u32-u32-asnprintf: New file.
928         * modules/unistdio/u32-u32-asprintf: New file.
929         * modules/unistdio/u32-u32-snprintf: New file.
930         * modules/unistdio/u32-u32-sprintf: New file.
931         * modules/unistdio/u32-u32-vasnprintf: New file.
932         * modules/unistdio/u32-u32-vasprintf: New file.
933         * modules/unistdio/u32-u32-vsnprintf: New file.
934         * modules/unistdio/u32-u32-vsprintf: New file.
935         * modules/unistdio/ulc-asnprintf-tests: New file.
936         * modules/unistdio/ulc-vasnprintf-tests: New file.
937         * modules/unistdio/ulc-vasprintf-tests: New file.
938         * modules/unistdio/ulc-vsnprintf-tests: New file.
939         * modules/unistdio/ulc-vsprintf-tests: New file.
940         * modules/unistdio/u8-asnprintf-tests: New file.
941         * modules/unistdio/u8-vasnprintf-tests: New file.
942         * modules/unistdio/u8-vasprintf-tests: New file.
943         * modules/unistdio/u8-vsnprintf-tests: New file.
944         * modules/unistdio/u8-vsprintf-tests: New file.
945         * modules/unistdio/u16-asnprintf-tests: New file.
946         * modules/unistdio/u16-vasnprintf-tests: New file.
947         * modules/unistdio/u16-vasprintf-tests: New file.
948         * modules/unistdio/u16-vsnprintf-tests: New file.
949         * modules/unistdio/u16-vsprintf-tests: New file.
950         * modules/unistdio/u32-asnprintf-tests: New file.
951         * modules/unistdio/u32-vasnprintf-tests: New file.
952         * modules/unistdio/u32-vasprintf-tests: New file.
953         * modules/unistdio/u32-vsnprintf-tests: New file.
954         * modules/unistdio/u32-vsprintf-tests: New file.
955         * MODULES.html.sh (Unicode string functions): Add the new modules.
956
957 2007-07-01  Bruno Haible  <bruno@clisp.org>
958
959         * lib/sprintf.c (sprintf): Limit the available length estimation,
960         to avoid address wraparound.
961         * lib/vsprintf.c (vsprintf): Likewise.
962         * modules/sprintf-posix (Dependencies): Add stdint.
963         * modules/vsprintf-posix (Dependencies): Likewise.
964
965 2007-07-01  Bruno Haible  <bruno@clisp.org>
966
967         * gnulib-tool (self_abspathname): Determine PATH_SEPARATOR and handle
968         Windows PATH as well. Conservative double-quoting. Comments.
969
970 2007-07-01  Bruno Haible  <bruno@clisp.org>
971             Eric Blake  <ebb9@byu.net>
972             Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
973
974         * gnulib-tool (self_abspathname): Fix algorithm to cope with
975         empty components in $PATH, denoting '.'.
976
977 2007-07-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
978
979         * gnulib-tool: Fix indentation.
980         (func_create_megatestdir): Likewise.
981         Report by Bruno Haible.
982
983 2007-06-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
984
985         Sync from Automake.
986         * build-aux/gnupload: Fix shell portability issues with for loops.
987         Report by Karl Berry.
988
989 2007-06-29  Simon Josefsson  <simon@josefsson.org>
990
991         * build-aux/maint.mk (POURL): Use translationproject.org.
992
993 2007-06-27  Simon Josefsson  <simon@josefsson.org>
994             Bruno Haible  <bruno@clisp.org>
995
996         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Require gl_HEADER_SYS_SOCKET
997         before using HAVE_WS2TCPIP_H. Check for gai_strerror through an
998         explicit link test, rather than AC_REPLACE_FUNCS - for mingw.
999         (gl_PREREQ_GETADDRINFO): Require gl_HEADER_SYS_SOCKET before using
1000         HAVE_SYS_SOCKET_H and HAVE_WS2TCPIP_H.
1001
1002 2007-06-27  Bruno Haible  <bruno@clisp.org>
1003
1004         * build-aux/config.rpath: Upgrade to libtool-1.5.24.
1005         * build-aux/config.libpath: Upgrade to libtool-1.5.24.
1006
1007 2007-06-26  Karl Berry  <karl@gnu.org>
1008
1009         * MODULES.html.sh: remove xreadlink-with-size.
1010
1011 2007-06-23  Paul Eggert  <eggert@cs.ucla.edu>
1012
1013         * lib/time_.h: Port to Solaris 8 with Sun Studio 11, using a
1014         method that I hope also handles the double-include problem noted
1015         by Bruno Haible in
1016         <http://lists.gnu.org/archive/html/bug-gnulib/2007-05/msg00186.html>.
1017
1018 2007-06-23  Bruno Haible  <bruno@clisp.org>
1019
1020         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
1021         Don't let the 'mostlyclean' target fail if the last subdirectory could
1022         not be removed.
1023         Reported by Karl Berry.
1024
1025 2007-06-23  Bruno Haible  <bruno@clisp.org>
1026
1027         * gnulib-tool (echo): Add a speedier workaround for ksh.
1028         * tests/test-echo.sh: Likewise.
1029
1030 2007-06-23  Bruno Haible  <bruno@clisp.org>
1031
1032         * gnulib-tool (echo): Add workarounds also for bash versions < 2.04.
1033         * tests/test-echo.sh: Likewise.
1034
1035 2007-06-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1036
1037         * gnulib-tool (IFS): Initialize early, so we don't set it to
1038         empty later.
1039         (self_abspathname): Rewrite algorithm to set it, reindent.
1040         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am)
1041         (func_create_megatestdir): Merge some sed scripts.
1042
1043 2007-06-23  Paul Eggert  <eggert@cs.ucla.edu>
1044
1045         * m4/include_next.m4 (gl_CHECK_NEXT_HEADERS): Check some typos
1046         exposed by Sun Studio 11 cc on Solaris 8.
1047
1048 2007-06-22  Bruno Haible  <bruno@clisp.org>
1049
1050         * gnulib-tool (echo): Ensure the echo primitive does not interpret
1051         backslashes.
1052         * tests/test-echo.sh: New file.
1053
1054 2007-06-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1055
1056         * gnulib-tool (func_add_or_update, func_create_testdir): Do not
1057         simplify `sed_replace_build_aux' scripts, they are portable but
1058         echoing them with `echo' is not.
1059         Report and analysis by Fernando Ferreira <fernando.prog@netcabo.pt>.
1060
1061 2007-06-21  Karl Berry  <karl@gnu.org>
1062
1063         * config/srclist.txt: guess we can't handle the licenses via
1064         srclist at the moment.
1065
1066 2007-06-21  Paul Eggert  <eggert@cs.ucla.edu>
1067
1068         * MODULES.html.sh: Add include_next.
1069         * modules/include_next: New file.
1070
1071 2007-06-20  Paul Eggert  <eggert@cs.ucla.edu>
1072
1073         * m4/include_next.m4 (gl_INCLUDE_NEXT): Define and AC_SUBST
1074         INCLUDE_NEXT.
1075         (gl_CHECK_NEXT_HEADERS): New macro.
1076         * m4/fcntl_h.m4 (gl_FCNTL_H): use gl_CHECK_NEXT_HEADERS instead of
1077         the obsolescent gl_ABSOLUTE_HEADER.
1078         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Likewise.
1079         * m4/float_h.m4 (gl_FLOAT_H): Likewise.
1080         * m4/iconv_h.m4 (gl_ICONV_H): Likewise.
1081         * m4/inttypes.m4 (gl_INTTYPES_H): Likewise.
1082         * m4/locale_h.m4 (gl_LOCALE_H): Likewise.
1083         * m4/math_h.m4 (gl_MATH_H): Likewise.
1084         * m4/netinet_in_h.m4 (gl_HEADER_NETINET_IN): Likewise.
1085         * m4/search_h.m4 (gl_SEARCH_H): Likewise.
1086         * m4/signal_h.m4 (gl_SIGNAL_H): Likewise.
1087         * m4/stdint.m4 (gl_STDINT_H): Likewise.
1088         * m4/stdio_h.m4 (gl_STDIO_H): Likewise.
1089         * m4/stdlib_h.m4 (gl_STDLIB_H): Likewise.
1090         * m4/string_h.m4 (gl_HEADER_STRING_H_BODY): Likewise.
1091         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Likewise.
1092         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Likewise.
1093         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Likewise.
1094         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Likewise.
1095         * m4/sysexits.m4 (gl_SYSEXITS): Likewise.
1096         * m4/time_h.m4 (gl_HEADER_TIME_H_BODY): Likewise.
1097         * m4/unistd_h.m4 (gl_UNISTD_H): Likewise.
1098         * m4/wchar.m4 (gl_WCHAR_H): Likewise.
1099         * m4/wctype.m4 (gl_WCTYPE_H): Likewise.
1100         * m4/inttypes.m4 (gl_INTTYPES_H): Define
1101         _GL_JUST_INCLUDE_SYSTEM_INTTYPES_H to avoid the problem of unclean
1102         builds, since ABSOLUTE_INTTYPES_H is no longer being defined.
1103         * m4/stdint.m4 (gl_STDINT_H): Likewise, for
1104         _GL_JUST_INCLUDE_SYSTEM_STDINT_H.
1105         * lib/fcntl_.h: Use @INCLUDE_NEXT@ @NEXT_foo_H@
1106         rather than @HAVE_INCLUDE_NEXT@ and @ABSOLUTE_foo_H@.
1107         * lib/float_.h: Likewise.
1108         * lib/inttypes_.h: Likewise.
1109         * lib/math_.h: Likewise.
1110         * lib/search_.h: Likewise.
1111         * lib/signal_.h: Likewise.
1112         * lib/stdint_.h: Likewise.
1113         * lib/stdio_.h: Likewise.
1114         * lib/stdlib_.h: Likewise.
1115         * lib/string_.h: Likewise.
1116         * lib/sys_stat_.h: Likewise.
1117         * lib/sys_time_.h: Likewise.
1118         * lib/time_.h: Likewise.
1119         * lib/unistd_.h: Likewise.
1120         * lib/wchar_.h: Likewise.
1121         * lib/wctype_.h: Likewise.
1122         * lib/dirent_.h: Likewise.
1123         * lib/iconv_.h: Likewise.
1124         * lib/locale_.h: Likewise.
1125         * lib/netinet_in_.h: Likewise.
1126         * lib/sys_select_.h: Likewise.
1127         * lib/sys_socket_.h: Likewise.
1128         * lib/sysexits_.h: Likewise.
1129         * modules/fcntl (Depends-on): Depend on include_next, not
1130         absolute_header.
1131         (Makefile): Substitute INCLUDE_NEXT and NEXT_foo_H, not
1132         HAVE_INCLUDE_NEXT and ABSOLUTE_foo_H.
1133         * modules/fchdir: Likewise.
1134         * modules/float: Likewise.
1135         * modules/iconv_open: Likewise.
1136         * modules/inttypes: Likewise.
1137         * modules/locale: Likewise.
1138         * modules/math: Likewise.
1139         * modules/netinet_in: Likewise.
1140         * modules/search: Likewise.
1141         * modules/signal: Likewise.
1142         * modules/stdint: Likewise.
1143         * modules/stdio: Likewise.
1144         * modules/stdlib: Likewise.
1145         * modules/string: Likewise.
1146         * modules/sys_select: Likewise.
1147         * modules/sys_socket: Likewise.
1148         * modules/sys_stat: Likewise.
1149         * modules/sys_time: Likewise.
1150         * modules/sysexits: Likewise.
1151         * modules/time: Likewise.
1152         * modules/unistd: Likewise.
1153         * modules/wchar: Likewise.
1154         * modules/wctype: Likewise.
1155         * modules/sys_stat: Change maintainer to "all".
1156         * modules/unistd: Likewise.
1157
1158 2007-06-20  Karl Berry  <karl@gnu.org>
1159
1160         * config/srclist.txt: track www changes in license files.
1161
1162 2007-06-20  Sergey Poznyakoff  <gray@gnu.org.ua>
1163
1164         * build-aux/bootstrap: Remove stray dot.
1165         Make sure build_aux settings are honored when linking
1166         gnulib_extra_files.
1167
1168 2007-06-19  Eric Blake  <ebb9@byu.net>
1169
1170         * modules/canonicalize-lgpl-tests (test_canonicalize_lgpl_LDADD):
1171         Allow compilation on cygwin.
1172
1173 2007-06-19  Jim Meyering  <jim@meyering.net>
1174
1175         xreadlink-with-size: Remove module.  No longer used.
1176         Ex-callers now use xreadlink or mreadlink-with-size.
1177         * modules/xreadlink-with-size: Remove module.
1178         * lib/xreadlink-with-size.c: Remove file.
1179         * lib/xreadlink.h (xreadlink_with_size): Remove prototype.
1180         (xreadlink): Remove inaccurate comment.  The one in xreadlink.c,
1181         just before the function definition *is* accurate.
1182
1183         Eliminate one way canonicalize_filename_mode could exit.
1184         * lib/canonicalize.c (canonicalize_filename_mode):
1185         Use mreadlink_with_size, not xreadlink_with_size.
1186
1187 2007-06-18  Paul Eggert  <eggert@cs.ucla.edu>
1188
1189         Detect porting problems to FreeBSD/arm, which has time_t wider than
1190         long int.  Original problem reported for GNU diff by Xin Li in
1191         <http://lists.gnu.org/archive/html/bug-gnu-utils/2007-06/msg00091.html>.
1192         * modules/getdate (Depends-on): Add intprops, verify.
1193         * lib/getdate.y: Include intprops.h, verify.h.  Verify that time_t
1194         is an integer type no wider than long int.
1195
1196 2007-06-18  Jim Meyering  <jim@meyering.net>
1197
1198         New module: mreadlink-with-size.
1199         * MODULES.html.sh: Add mreadlink-with-size.
1200         * modules/mreadlink-with-size: New module
1201         * modules/canonicalize (Depends-on): Depend on mreadlink-with-size,
1202         not xreadlink-with-size.
1203         * lib/mreadlink-with-size.c, lib/mreadlink.h: New files.
1204
1205 2007-06-16  Bruno Haible  <bruno@clisp.org>
1206
1207         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Catch the MacOS X 10.4 bug.
1208         * doc/functions/frexpl.texi: Document the MacOS X 10.4 bug.
1209         Reported by Gary V. Vaughan <gary@gnu.org>.
1210
1211 2007-06-15  Paul Eggert  <eggert@cs.ucla.edu>
1212
1213         Revamp lchown so that it lives in unistd.h where it belongs.
1214         * lib/lchown.h: Remove.
1215         * lib/dirchownmod.c: Don't include lib/lchown.h.
1216         * lib/fchownat.c: Likewise.
1217         * lib/openat.c: Likewise.
1218         * lib/lchown.c (REPLACE_CHOWN): Define to 0 if the system chown
1219         does not follow symlinks.
1220         (EOPNOTSUPP): Define if not defined.
1221         * lib/unistd_.h (chown): Do not replace if REPLADE_CHOWN
1222         is defined to 0.
1223         (lchown): New decl.
1224         * m4/lchown.m4 (gl_FUNC_LCHOWN): Require gl_UNISTD_H_DEFAULTS.
1225         Do not check for lchown decl.
1226         Set REPLACE_LCHOWN.
1227         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Set GNULIB_LCHOWN,
1228         REPLACE_LCHOWN.
1229         * modules/chown: Make it clear it follows symlinks.
1230         * modules/lchown: Make it clear it doesn't follow symlinks.
1231         (Files): Remove lib/lchown.h
1232         (Depends-on): Add unistd.
1233         (configure.ac): Add gl_UNISTD_MODULE_INDICATOR([lchown]).
1234         (Include): Include <unistd.h>, not "lchown.h".
1235         * modules/unistd (unistd.h): Substitude GNULIB_LCHOWN and
1236         REPLACE_LCHOWN.
1237
1238 2007-06-15  Jim Meyering  <jim@meyering.net>
1239
1240         Change license (GPL to LGPL) of fsusage and dependents.
1241         * modules/fsusage (License): Change to LGPL.
1242         * modules/full-read (License): Likewise.
1243         * modules/full-write (License): Likewise.
1244         * modules/safe-read (License): Likewise.
1245         * modules/safe-write (License): Likewise.
1246
1247 2007-06-14  Ben Pfaff  <blp@gnu.org>
1248
1249         Missing part of allocsa -> malloca transition.
1250         * modules/relocatable-prog-wrapper: gl_ALLOCSA should be
1251         gl_MALLOCA.
1252
1253 2007-06-12  Bruno Haible  <bruno@clisp.org>
1254
1255         * m4/isnanl.m4 (gl_FUNC_ISNANL_WORKS): Guess no when cross-compiling
1256         to ia64, x86_64, i386.
1257         Reported by Eric Blake.
1258
1259 2007-06-12  Bruno Haible  <bruno@clisp.org>
1260
1261         * m4/printf.m4 (gl_PRINTF_INFINITE_LONG_DOUBLE): Guess no also when
1262         cross-compiling to x86_64.
1263
1264 2007-06-12  Paul Eggert  <eggert@cs.ucla.edu>
1265
1266         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Fix POSIX sed portability
1267         glitch reported by Ralf Wildenhues in
1268         <http://lists.gnu.org/archive/html/bug-gnulib/2007-06/msg00114.html>.
1269
1270         * m4/regex.m4 (gl_REGEX): Catch a bug with [[:alnum:]_-] reported by
1271         Vin Shelton.
1272
1273 2007-06-11  Bruno Haible  <bruno@clisp.org>
1274
1275         * lib/printf-args.c (PRINTF_FETCHARGS) [ENABLE_UNISTDIO]: Fix NULL
1276         replacement string.
1277         Reported by Eric Blake.
1278
1279 2007-06-10  Bruno Haible  <bruno@clisp.org>
1280
1281         Prepare vasnprintf code for use with Unicode strings.
1282         * lib/printf-args.h (PRINTF_FETCHARGS): New macro.
1283         (arg_type) [ENABLE_UNISTDIO]: Define TYPE_U8_STRING, TYPE_U16_STRING,
1284         TYPE_U32_STRING.
1285         (argument) [ENABLE_UNISTDIO]: Add a_u8_string, a_u16_string,
1286         a_u32_string variants.
1287         (PRINTF_FETCHARGS): Renamed from printf_fetchargs.
1288         * lib/printf-args.c: Don't include config.h and the specification
1289         header if PRINTF_FETCHARGS is already defined.
1290         (PRINTF_FETCHARGS): Renamed from printf_fetchargs.
1291         (PRINTF_FETCHARGS) [ENABLE_UNISTDIO]: Add code for TYPE_U8_STRING,
1292         TYPE_U16_STRING, TYPE_U32_STRING.
1293         * lib/printf-parse.h [ENABLE_UNISTDIO] (u8_directive, u8_directives,
1294         u16_directive, u16_directives, u32_directive, u32_directives): New
1295         types.
1296         (ulc_printf_parse, u8_printf_parse, u16_printf_parse, u32_printf_parse):
1297         New declarations.
1298         * lib/printf-parse.c: Don't include config.h and the specification
1299         header if PRINTF_PARSE is already defined. Eliminate the set of
1300         parameters for WIDE_CHAR_VERSION; the user of this file must provide
1301         them now. Include c-ctype.h.
1302         (PRINTF_PARSE) [ENABLE_UNISTDIO]: Add code implementing the 'U'
1303         directive and CHAR_T_ONLY_ASCII.
1304         * lib/vasnprintf.c: Don't include config.h and the specification header
1305         if VASNPRINTF is already defined.
1306         (DCHAR_IS_TCHAR, DCHAR_CPY): New macros.
1307         (VASNPRINTF): Use PRINTF_FETCHARGS instead of printf_fetchargs. Use
1308         DCHAR_CPY. Handle the case that DCHAR_T and FCHAR_T are not the same
1309         type. Handle the case that TCHAR_T and FCHAR_T are not of the same
1310         size. Handle the case that DCHAR_T and TCHAR_T are not the same type,
1311         add a conversion from TCHAR_T[] to DCHAR_T[], and rework the padding
1312         code accordingly.
1313         (VASNPRINTF) [ENABLE_UNISTDIO]: Implement the 'U' directive. Enable
1314         pad_ourselves also in this case, with the 'c' and 's' directives, and
1315         with a different notion of "width".
1316         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): New macros.
1317
1318 2007-06-10  Bruno Haible  <bruno@clisp.org>
1319
1320         * modules/unistr/u32-mbsnlen: New file.
1321         * lib/unistr/u32-mbsnlen.c: New file.
1322
1323         * modules/unistr/u16-mbsnlen: New file.
1324         * lib/unistr/u16-mbsnlen.c: New file.
1325
1326         * modules/unistr/u8-mbsnlen: New file.
1327         * lib/unistr/u8-mbsnlen.c: New file.
1328
1329         * lib/unistr.h (u8_mbsnlen, u16_mbsnlen, u32_mbsnlen): New
1330         declarations.
1331
1332 2007-06-10  Bruno Haible  <bruno@clisp.org>
1333
1334         * lib/string_.h (mbsnlen): New declaration.
1335         * lib/mbsnlen.c: New file.
1336         * m4/mbsnlen.m4: New file.
1337         * modules/mbsnlen: New file.
1338         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Set GNULIB_MBSNLEN.
1339         * modules/string (string.h): Substitute GNULIB_MBSNLEN.
1340         * MODULES.html.sh (Internationalization functions): Add mbsnlen.
1341
1342 2007-06-10  Bruno Haible  <bruno@clisp.org>
1343
1344         * lib/mbslen.c: Include <stdlib.h>, needed for MB_CUR_MAX.
1345
1346 2007-06-10  Bruno Haible  <bruno@clisp.org>
1347
1348         * lib/mbiter.h: Include <stddef.h>, needed for ptrdiff_t.
1349         * lib/mbuiter.h: Likewise.
1350
1351 2007-06-10  Bruno Haible  <bruno@clisp.org>
1352
1353         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF): Check for _snprintf
1354         declaration.
1355
1356 2007-06-10  Karl Berry  <karl@gnu.org>
1357
1358         * config/srclist.txt: remove gettext entries, Bruno prefers
1359         to update individually.
1360
1361 2007-06-10  Bruno Haible  <bruno@clisp.org>
1362
1363         * lib/vasnprintf.c (VASNPRINTF) [!USE_SNPRINTF]: Remove variable
1364         'maxlen'. Ensure only length + width bytes are allocated, not
1365         length + 1 + width.
1366
1367 2007-06-09  Bruno Haible  <bruno@clisp.org>
1368
1369         * lib/vasnprintf.c (FCHAR_T, DCHAR_T, TCHAR_T): New macros.
1370         (CHAR_T): Remove macro.
1371         (VASNPRINTF): Update.
1372
1373 2007-06-09  Bruno Haible  <bruno@clisp.org>
1374
1375         * MODULES.html.sh (Unicode string functions): Add the new modules.
1376
1377         * modules/uniconv/u32-conv-to-enc: New file.
1378         * lib/uniconv/u32-conv-to-enc.c: New file.
1379         * modules/uniconv/u32-conv-to-enc-tests: New file.
1380         * tests/uniconv/test-u32-conv-to-enc.c: New file.
1381
1382         * modules/uniconv/u16-conv-to-enc: New file.
1383         * lib/uniconv/u16-conv-to-enc.c: New file.
1384         * lib/uniconv/u-conv-to-enc.h: New file.
1385         * modules/uniconv/u16-conv-to-enc-tests: New file.
1386         * tests/uniconv/test-u16-conv-to-enc.c: New file.
1387
1388         * modules/uniconv/u8-conv-to-enc: New file.
1389         * lib/uniconv/u8-conv-to-enc.c: New file.
1390         * modules/uniconv/u8-conv-to-enc-tests: New file.
1391         * tests/uniconv/test-u8-conv-to-enc.c: New file.
1392
1393         * lib/uniconv.h (u8_conv_to_encoding, u16_conv_to_encoding,
1394         u32_conv_to_encoding): New declarations.
1395
1396 2007-06-09  Bruno Haible  <bruno@clisp.org>
1397
1398         * tests/uniconv/test-u32-strconv-to-enc.c (main): Remove unused code.
1399
1400 2007-06-09  Bruno Haible  <bruno@clisp.org>
1401
1402         Rename 'allocsa' -> 'malloca', 'freesa' -> 'freea'.
1403         * modules/malloca: Renamed from modules/allocsa, updated.
1404         * lib/malloca.h: Renamed from lib/allocsa.h, updated.
1405         * lib/malloca.c: Renamed from lib/allocsa.c, updated.
1406         * lib/malloca.valgrind: Renamed from lib/allocsa.valgrind, updated.
1407         * m4/malloca.m4: Renamed from m4/allocsa.m4, updated.
1408         * modules/malloca-tests: Renamed from modules/allocsa-tests, updated.
1409         * tests/test-malloca.c: Renamed from tests/test-allocsa.c, updated.
1410         * modules/xmalloca: Renamed from modules/xallocsa, updated.
1411         * lib/xmalloca.h: Renamed from lib/xallocsa.h, updated.
1412         * lib/xmalloca.c: Renamed from lib/xallocsa.c, updated.
1413         * modules/c-strcasestr (Depends-on): Update.
1414         * lib/c-strcasestr.c: Update.
1415         * modules/c-strstr (Depends-on): Update.
1416         * lib/c-strstr.c: Update.
1417         * modules/canonicalize-lgpl (Depends-on): Update.
1418         * lib/canonicalize-lgpl.c: Update.
1419         * modules/clean-temp (Depends-on): Update.
1420         * lib/clean-temp.c: Update.
1421         * modules/csharpcomp (Depends-on): Update.
1422         * lib/csharpcomp.c: Update.
1423         * modules/csharpexec (Depends-on): Update.
1424         * lib/csharpexec.c: Update.
1425         * modules/javacomp (Depends-on): Update.
1426         * lib/javacomp.c: Update.
1427         * modules/javaexec (Depends-on): Update.
1428         * lib/javaexec.c: Update.
1429         * modules/mbscasestr (Depends-on): Update.
1430         * lib/mbscasestr.c: Update.
1431         * modules/mbsstr (Depends-on): Update.
1432         * lib/mbsstr.c: Update.
1433         * modules/setenv (Depends-on): Update.
1434         * lib/setenv.c: Update.
1435         * modules/strcasestr (Depends-on): Update.
1436         * lib/strcasestr.c: Update.
1437         * modules/striconveha (Depends-on): Update.
1438         * lib/striconveha.c: Update.
1439         * modules/relocatable-prog-wrapper (Files): Update.
1440         * lib/relocwrapper.c: Update.
1441         * build-aux/install-reloc: Update.
1442         * MODULES.html.sh (Memory management functions <stdlib.h>): Update.
1443
1444 2007-06-08  Bruno Haible  <bruno@clisp.org>
1445
1446         Port to uClibc.
1447         * lib/fbufmode.c (fbufmode): Add special code for uClibc.
1448         * lib/fpurge.c (fpurge): Likewise.
1449         * lib/freading.c (freading): Likewise.
1450         * lib/fseeko.c (rpl_fseeko): Likewise.
1451         * lib/fseterr.c (fseterr): Likewise.
1452         * lib/fwriting.c (fwriting): Likewise.
1453         * tests/test-fflush.c (main): Avoid a failure on uClibc.
1454
1455 2007-06-08  Bruno Haible  <bruno@clisp.org>
1456
1457         * m4/intlmacosx.m4: New file, extracted from gettext.m4.
1458         * m4/gettext.m4 (gt_INTL_MACOSX): Remove macro, moved to intlmacosx.m4.
1459         * modules/gettext (Files): Add m4/intlmacosx.m4.
1460
1461 2007-06-07  Bruno Haible  <bruno@clisp.org>
1462
1463         * modules/localename-tests: New file.
1464         * tests/test-localename.c: New file.
1465
1466         New module 'localename'.
1467         * lib/localename.h: New file.
1468         * lib/localename.c: New file, from GNU gettext.
1469         * m4/localename.m4: New file.
1470         * modules/localename: New file.
1471
1472 2007-06-07  Bruno Haible  <bruno@clisp.org>
1473
1474         Work around the lack of <wchar.h> on some builds of uClibc.
1475         * doc/headers/wchar.texi: Update.
1476         * lib/wchar_.h: Include <wchar.h> only if it exists.
1477         * m4/wchar.m4 (gl_WCHAR_H): Check for <wchar.h>. Set HAVE_WCHAR_H.
1478         * m4/stdint.m4 (gl_STDINT_H): Check for <wchar.h>.
1479         (gl_STDINT_TYPE_PROPERTIES): Don't try to include <wchar.h> if it
1480         doesn't exist.
1481         * modules/wchar (wchar.h): Substitute HAVE_WCHAR_H.
1482         * modules/mbfile (Depends-on): Add wchar.
1483         * modules/mbiter (Depends-on): Likewise.
1484         * modules/mbuiter (Depends-on): Likewise.
1485         Reported by Simon Josefsson.
1486
1487 2007-06-06  Paul Eggert  <eggert@cs.ucla.edu>
1488
1489         Work around problem reported by Steven M. Schweda in
1490         <http://lists.gnu.org/archive/html/bug-tar/2007-06/msg00002.html>:
1491         Tru64 5.1B with the Compaq compiler environment installed declares
1492         an 'isblank' function but does not define it in the C library.
1493         * lib/fnmatch.c (isblank): Check for HAVE_ISBLANK, too.
1494         * lib/regex_internal.h (isblank): Likewise.
1495         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for isblank existence.
1496         * m4/regex.m4 (gl_PREREQ_REGEX): Likewise.
1497
1498 2007-06-05  Bruno Haible  <bruno@clisp.org>
1499
1500         Fix *printf so that it recognizes non-IEEE numbers on i386, x86_64,
1501         ia64.
1502         * modules/printf-safe: New file.
1503         * modules/fprintf-posix (Depends-on): Add printf-safe.
1504         * modules/printf-posix (Depends-on): Likewise.
1505         * modules/snprintf-posix (Depends-on): Likewise.
1506         * modules/sprintf-posix (Depends-on): Likewise.
1507         * modules/vasnprintf-posix (Depends-on): Likewise.
1508         * modules/vasprintf-posix (Depends-on): Likewise.
1509         * modules/vfprintf-posix (Depends-on): Likewise.
1510         * modules/vprintf-posix (Depends-on): Likewise.
1511         * modules/vsnprintf-posix (Depends-on): Likewise.
1512         * modules/vsprintf-posix (Depends-on): Likewise.
1513         * m4/printf.m4 (gl_PRINTF_INFINITE_LONG_DOUBLE): Require
1514         AC_C_BIGENDIAN. Define CHECK_PRINTF_SAFE if printf-safe is used. Test
1515         non-IEEE numbers on i386, x86_64, ia64. When cross-compiling, guess
1516         "no" on i386, x86_64, ia64.
1517         * tests/test-snprintf-posix.h (LDBL80_WORDS): New macro.
1518         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
1519         on i386, x86_64, ia64.
1520         * tests/test-sprintf-posix.h (LDBL80_WORDS): New macro.
1521         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
1522         on i386, x86_64, ia64.
1523         * tests/test-vasnprintf-posix.c: Include float.h.
1524         (LDBL80_WORDS): New macro.
1525         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
1526         on i386, x86_64, ia64.
1527         * tests/test-vasprintf-posix.c: Include float.h.
1528         (LDBL80_WORDS): New macro.
1529         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
1530         on i386, x86_64, ia64.
1531         * tests/test-snprintf-posix.c: Include float.h.
1532         * tests/test-sprintf-posix.c: Likewise.
1533         * tests/test-vsnprintf-posix.c: Likewise.
1534         * tests/test-vsprintf-posix.c: Likewise.
1535
1536 2007-06-05  Bruno Haible  <bruno@clisp.org>
1537
1538         Fix isnanl so that it recognizes non-IEEE numbers on i386, x86_64, ia64.
1539         * m4/isnanl.m4 (gl_FUNC_ISNANL_WORKS): Require AC_C_BIGENDIAN. Test
1540         non-IEEE numbers on i386, x86_64, ia64.
1541         (gl_LONG_DOUBLE_EXPONENT_LOCATION): Require AC_C_BIGENDIAN.
1542         * lib/isnan.c (FUNC): Add special code for i386, x86_64, ia64.
1543         * tests/test-isnanl.h: Include float.h.
1544         (main): Check also non-IEEE numbers on i386, x86_64, ia64.
1545
1546 2007-06-05  Bruno Haible  <bruno@clisp.org>
1547
1548         * lib/vasnprintf.c (VASNPRINTF): Do the extra handling of NaN and Inf
1549         also the %a / %A. Handle the %a / %A code before this extra handling.
1550
1551 2007-06-05  Bruno Haible  <bruno@clisp.org>
1552
1553         * lib/vasnprintf.c [NEED_PRINTF_LONG_DOUBLE ||
1554         NEED_PRINTF_INFINITE_LONG_DOUBLE]: Include fpucw.h.
1555
1556 2007-06-05  Bruno Haible  <bruno@clisp.org>
1557
1558         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_INFINITE_LONG_DOUBLE): Fix
1559         typo in variable name.
1560
1561 2007-06-05  Eric Blake  <ebb9@byu.net>
1562
1563         * m4/lseek.m4 (gl_FUNC_LSEEK): Work when cross-compiling.
1564         Reported by Simon Josefsson.
1565
1566 2007-06-04  Bruno Haible  <bruno@clisp.org>
1567
1568         Avoid test failures on some PowerPC platforms.
1569         * tests/test-printf-frexpl.c (MIN_NORMAL_EXP, MIN_SUBNORMAL_EXP):
1570         Define differently for PowerPC.
1571         * tests/test-frexpl.c (MIN_NORMAL_EXP): Likewise.
1572         Reported by Gary V. Vaughan <gary@gnu.org>.
1573
1574 2007-06-02  Bruno Haible  <bruno@clisp.org>
1575
1576         Fix test-stdint failure on FreeBSD/ia64.
1577         * m4/stdint.m4 (gl_STDINT_H): Check the values of PTRDIFF_MIN,
1578         PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX, SIZE_MAX, WCHAR_MIN,
1579         WCHAR_MAX, WINT_MIN, WINT_MAX entirely, not only for plausibility.
1580         * doc/headers/stdint.texi: Update.
1581
1582 2007-06-01  Bruno Haible  <bruno@clisp.org>
1583
1584         * tests/test-binary-io.c (main): Pass a third argument to open().
1585         Reported by Gary V. Vaughan <gary@gnu.org>.
1586
1587 2007-06-01  Bruno Haible  <bruno@clisp.org>
1588
1589         * doc/functions/frexpl.texi: Update for mingw.
1590
1591 2007-06-01  Bruno Haible  <bruno@clisp.org>
1592
1593         * tests/test-lseek.c (main): Disable test of errno for invalid third
1594         argument.
1595         * doc/functions/lseek.texi: Update.
1596         Reported by Gary V. Vaughan <gary@gnu.org>.
1597
1598 2007-05-28  Bruno Haible  <bruno@clisp.org>
1599
1600         * m4/intl.m4 (AM_INTL_SUBDIR): Substitute variables WOE32, WINDRES.
1601
1602 2007-05-31  Eric Blake  <ebb9@byu.net>
1603
1604         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Guess no on mingw when
1605         cross compiling.
1606
1607 2007-05-30  Eric Blake  <ebb9@byu.net>
1608         and Bruno Haible  <bruno@clisp.org>
1609
1610         Work around mingw test failures exposed by m4-1.4.9b.
1611         * m4/stdint.m4 (gl_STDINT_H): Detect mingw bug.
1612         * tests/test-unistd.c: Disable uid_t and git_t tests for the
1613         moment.
1614
1615 2007-05-30  Bruno Haible  <bruno@clisp.org>
1616
1617         * tests/test-lseek.c: Explicitly close file descriptors 0 and 1 before
1618         assuming that they are closed. Needed on HP-UX 11.
1619
1620 2007-05-29  Bruno Haible  <bruno@clisp.org>
1621
1622         Fix a problem with #include_next.
1623         * lib/dirent_.h: Split the double-inclusion guard.
1624         * lib/fcntl_.h: Likewise.
1625         * lib/float_.h: Likewise.
1626         * lib/iconv_.h: Likewise.
1627         * lib/inttypes_.h: Likewise.
1628         * lib/locale_.h: Likewise.
1629         * lib/math_.h: Likewise.
1630         * lib/netinet_in_.h: Likewise.
1631         * lib/search_.h: Likewise.
1632         * lib/signal_.h: Likewise.
1633         * lib/stdint_.h: Likewise.
1634         * lib/stdio_.h: Likewise.
1635         * lib/stdlib_.h: Likewise.
1636         * lib/string_.h: Likewise.
1637         * lib/sys_select_.h: Likewise.
1638         * lib/sys_socket_.h: Likewise.
1639         * lib/sys_stat_.h: Likewise.
1640         * lib/sys_time_.h: Likewise.
1641         * lib/sysexits_.h: Likewise.
1642         * lib/time_.h: Likewise.
1643         * lib/unistd_.h: Likewise.
1644         * lib/wchar_.h: Likewise.
1645         * lib/wctype_.h: Likewise.
1646
1647 2007-05-29  Bruno Haible  <bruno@clisp.org>
1648
1649         * tests/test-unistd.c: Disable the tests for useconds_t and intptr_t
1650         for the moment.
1651
1652 2007-05-29  Bruno Haible  <bruno@clisp.org>
1653
1654         * m4/isnan.m4 (gl_DOUBLE_EXPONENT_LOCATION): Silence the AC_C_BIGENDIAN
1655         invocation.
1656         Reported by Eric Blake.
1657
1658 2007-05-29  Bruno Haible  <bruno@clisp.org>
1659
1660         * m4/isnanf.m4 (gl_FLOAT_EXPONENT_LOCATION): Fix typo in cross-
1661         compiling case.
1662
1663 2007-05-29  Eric Blake  <ebb9@byu.net>
1664             Bruno Haible  <bruno@clisp.org>
1665
1666         * m4/isnanf.m4 (gl_FUNC_ISNANF_NO_LIBM): Avoid syntax error on
1667         cross compiles.
1668
1669 2007-05-28  Eric Blake  <ebb9@byu.net>
1670
1671         * modules/closein-tests (test_closein_LDADD): Support test on
1672         cygwin with libtool.
1673
1674 2007-05-28  Bruno Haible  <bruno@clisp.org>
1675
1676         * tests/uniconv/test-u16-conv-from-enc.c: Remove #ifdef HAVE_CONFIG_H.
1677         * tests/uniconv/test-u16-strconv-from-enc.c: Likewise.
1678         * tests/uniconv/test-u16-strconv-to-enc.c: Likewise.
1679         * tests/uniconv/test-u32-conv-from-enc.c: Likewise.
1680         * tests/uniconv/test-u32-strconv-from-enc.c: Likewise.
1681         * tests/uniconv/test-u32-strconv-to-enc.c: Likewise.
1682         * tests/uniconv/test-u8-conv-from-enc.c: Likewise.
1683         * tests/uniconv/test-u8-strconv-from-enc.c: Likewise.
1684         * tests/uniconv/test-u8-strconv-to-enc.c: Likewise.
1685
1686 2007-05-28  Eric Blake  <ebb9@byu.net>
1687
1688         Unconditionally include <config.h> in unit tests.
1689         * tests/test-alloca-opt.c: Remove #ifdef HAVE_CONFIG_H.
1690         * tests/test-allocsa.c, tests/test-arcfour.c,
1691         tests/test-arctwo.c, tests/test-argmatch.c, tests/test-argp.c,
1692         tests/test-array_list.c, tests/test-array_oset.c,
1693         tests/test-atexit.c, test-avltree_list.c, test-avltree_oset.c,
1694         test-avltreehash_list.c, test-base64.c, test-binary-io.c,
1695         test-c-ctype.c, test-c-strcasecmp.c, test-c-strcasestr.c,
1696         test-c-strncasecmp.c, test-c-strstr.c, test-canonicalize-lgpl.c,
1697         test-carray_list.c, test-crc.c, test-des.c, test-dirname.c,
1698         test-fflush.c, test-fprintf-posix.c, test-gc-arcfour.c,
1699         test-gc-arctwo.c, test-gc-des.c, test-gc-hmac-md5.c,
1700         test-gc-hmac-sha1.c, test-gc-md2.c, test-gc-md4.c, test-gc-md5.c,
1701         test-gc-pbkdf2-sha1.c, test-gc-rijndael.c, test-gc-sha1.c,
1702         test-gc.c, test-getpass.c, test-hmac-md5.c, test-hmac-sha1.c,
1703         test-iconv.c, test-linked_list.c, test-linkedhash_list.c,
1704         test-lock.c, test-mbscasecmp.c, test-mbscasestr1.c,
1705         test-mbscasestr2.c, test-mbscasestr3.c, test-mbscasestr4.c,
1706         test-mbschr.c, test-mbscspn.c, test-mbsncasecmp.c, test-mbspbrk.c,
1707         test-mbspcasecmp.c, test-mbsrchr.c, test-mbsspn.c, test-mbsstr1.c,
1708         test-mbsstr2.c, test-mbsstr3.c, test-md2.c, test-md4.c,
1709         test-md5.c, test-memmem.c, test-printf-posix.c,
1710         test-rbtree_list.c, test-rbtree_oset.c, test-rbtreehash_list.c,
1711         test-read-file.c, test-rijndael.c, test-snprintf-posix.c,
1712         test-snprintf.c, test-sprintf-posix.c, test-stdint.c,
1713         test-strcasestr.c, test-striconv.c, test-striconveh.c,
1714         test-striconveha.c, test-tls.c, test-vasnprintf-posix.c,
1715         test-vasnprintf-posix2.c, test-vasnprintf.c,
1716         test-vasprintf-posix.c, test-vasprintf.c, test-verify.c,
1717         test-vfprintf-posix.c, test-vprintf-posix.c,
1718         test-vsnprintf-posix.c, test-vsnprintf.c, test-vsprintf-posix.c,
1719         test-xvasprintf.c: Likewise.
1720
1721 2007-05-28  Bruno Haible  <bruno@clisp.org>
1722
1723         * gnulib-tool (func_import): Remember the --with-tests command-line
1724         option through the macro gl_WITH_TESTS in the gnulib-cache.m4.
1725         Reported by Eric Blake.
1726
1727 2007-05-28  Bruno Haible  <bruno@clisp.org>
1728
1729         * modules/ftell-tests: New file.
1730         * tests/test-ftell.c: New file, based on tests/test-ftello.c.
1731         * tests/test-ftell.sh: New file, based on tests/test-ftello.sh.
1732
1733         * lib/ftell.c: New file.
1734         * modules/ftell: New file.
1735         * m4/ftell.m4: New file.
1736         * doc/functions/ftell.texi: Update.
1737         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FTELL,
1738         REPLACE_FTELL.
1739         * lib/stdio_.h (rpl_ftell): New declaration.
1740         * modules/stdio (Makefile.am): Substitute also GNULIB_FTELL,
1741         REPLACE_FTELL.
1742
1743 2007-05-28  Eric Blake  <ebb9@byu.net>
1744
1745         * lib/allocsa.h (safe_alloca): Avoid compiler warning.
1746
1747 2007-05-28  Bruno Haible  <bruno@clisp.org>
1748
1749         * modules/fseek-tests: New file.
1750         * tests/test-fseek.c: New file, based on tests/test-fseeko.c.
1751         * tests/test-fseek.sh: New file, based on tests/test-fseeko.sh.
1752
1753         * lib/fseek.c: New file.
1754         * modules/fseek: New file.
1755         * m4/fseek.m4: New file.
1756         * doc/functions/fseek.texi: Update.
1757         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FSEEK,
1758         REPLACE_FSEEK.
1759         * lib/stdio_.h (rpl_fseek): New declaration.
1760         * modules/stdio (Makefile.am): Substitute also GNULIB_FSEEK,
1761         REPLACE_FSEEK.
1762
1763 2007-05-28  Bruno Haible  <bruno@clisp.org>
1764
1765         * lib/stdio_.h (fflush): More comments.
1766
1767 2007-05-28  Bruno Haible  <bruno@clisp.org>
1768
1769         * m4/lseek.m4 (gl_FUNC_LSEEK): When not cross-compiling, perform a real
1770         runtime test.
1771
1772 2007-05-28  Eric Blake  <ebb9@byu.net>
1773
1774         Improve lseek module.
1775         * lib/lseek.c (rpl_lseek): Detect EBADF on mingw.
1776         * lib/unistd_.h (lseek): Scale back link warning message.
1777         * tests/test-lseek.c: Beef up test.
1778         * tests/test-lseek.sh: Exercise more facets of lseek.
1779         Reported by Bruno Haible.
1780
1781 2007-05-28  Bruno Haible  <bruno@clisp.org>
1782
1783         * tests/test-unistd.c: Test all the types that <unistd.h> is expected
1784         to define.
1785
1786 2007-05-27  Bruno Haible  <bruno@clisp.org>
1787
1788         * m4/iconv.m4 (AM_ICONV_LINK): Fix 2007-03-31 patch.
1789
1790 2007-05-27  Bruno Haible  <bruno@clisp.org>
1791
1792         * modules/openmp: New file.
1793         * m4/openmp.m4: New file, taken from autoconf's CVS with changes by
1794         Noah Misch.
1795
1796 2007-05-26  Bruno Haible  <bruno@clisp.org>
1797
1798         * modules/chdir-long (Depends-on): Add fchdir.
1799         * modules/chdir-safer (Depends-on): Likewise.
1800         * modules/fts (Depends-on): Likewise.
1801         * modules/fts-lgpl (Depends-on): Likewise.
1802         * modules/openat (Depends-on): Likewise.
1803         * modules/savewd (Depends-on): Likewise.
1804
1805 2007-05-24  Eric Blake  <ebb9@byu.net>
1806
1807         Fix lseek on mingw.
1808         * modules/lseek: New module.
1809         * m4/lseek.m4: New file.
1810         * lib/lseek.c: New file.
1811         * modules/lseek-tests: New file.
1812         * tests/test-lseek.c: New file.
1813         * tests/test-lseek.sh: New file.
1814         * MODULES.html.sh: Document lseek module.
1815         * modules/fflush (Depends-on): Add lseek, fseeko.
1816         * modules/fseeko (Depends-on): Likewise.
1817         * modules/ftello (Depends-on): Likewise.
1818         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Replace fseek[o] if lseek is
1819         broken.
1820         * m4/ftello.m4 (gl_FUNC_FTELLO): Replace ftell[o] if lseek is
1821         broken.
1822         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Trigger fseeko module.
1823         * lib/fseeko.c (rpl_fseeko): Quit early on non-seekable files.
1824         * lib/ftello.c (rpl_ftello): Likewise.
1825         * tests/test-fseeko.c (main): Test this.
1826         * tests/test-fseeko.sh: Likewise.
1827         * tests/test-ftello.c (main): Likewise.
1828         * tests/test-ftello.sh: Likewise.
1829         * lib/stdio_.h (fseek, ftell): Simplify, since missing fseeko now
1830         implies replacing fseek.
1831         * modules/stdio (Makefile.am): No longer need HAVE_FSEEKO,
1832         HAVE_FTELLO.
1833         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add lseek info.
1834         * modules/unistd (Makefile.am): Likewise.
1835         * lib/unistd_.h (lseek): Declare a replacement.
1836         * doc/functions/lseek.texi (lseek): Document this fix.
1837         * doc/functions/fseek.texi (fseek): Likewise.
1838         * doc/functions/ftell.texi (ftell): Likewise.
1839
1840 2007-05-24  Bruno Haible  <bruno@clisp.org>
1841
1842         * tests/test-vasnprintf-posix.c (test_function): Allow up to 50 bytes
1843         in the printed representation of a NaN.
1844         * tests/test-vasprintf-posix.c (test_function): Likewise.
1845         * tests/test-snprintf-posix.h (test_function): Likewise.
1846         * tests/test-sprintf-posix.h (test_function): Likewise.
1847         Reported by Eric Blake.
1848
1849 2007-05-23  Eric Blake  <ebb9@byu.net>
1850
1851         Fix fseeko/ftello on cygwin 1.5.24.
1852         * doc/functions/fseeko.texi (fseeko): Document the fix.
1853         * doc/functions/ftello.texi (ftello): Document the fix.
1854         * doc/functions/stdin.texi (stdin): Document the cygwin bug.
1855         * doc/functions/stdout.text (stdout): New file.
1856         * doc/functions/stderr.text (stderr): New file.
1857         * doc/gnulib.texi (Function Substitutes): Use new files.
1858         * tests/test-fseeko.c (main): Check for broken fseeko on cygwin
1859         prior to 1.7.0.
1860         * tests/test-ftello.c (main): Likewise for ftello.
1861         * tests/test-fseeko.sh: New file.
1862         * tests/test-ftello.sh: New file.
1863         * modules/fseeko-tests (Makefile.am): Ensure test-fseeko is run
1864         with seekable stdin.
1865         * modules/ftello-tests (Makefile.am): Likewise for test-ftello.
1866         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Detect the cygwin bug.
1867         (gl_REPLACE_FSEEKO): New macro.
1868         * m4/ftello.m4 (gl_FUNC_FTELLO, gl_REPLACE_FTELLO): Likewise.
1869         * modules/fseeko (Files): Distribute fseeko.c.
1870         * modules/ftello (Files): Distribute ftello.c.
1871         * lib/fseeko.c (rpl_fseeko) [__CYGWIN__]: Convert stdin to 64-bit
1872         mode.
1873         * lib/ftello.c (rpl_ftello): New file.
1874         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Allow replacement of
1875         fseeko, ftello.
1876         (gl_STDIN_LARGE_OFFSET): New macro.
1877         * modules/stdio (Makefile.am): Perform the replacement.
1878         * lib/stdio_.h (rpl_fseeko, rpl_ftello): Define when needed.
1879
1880 2007-05-23  Bruno Haible  <bruno@clisp.org>
1881
1882         * lib/stdio_.h (fseeko, ftello): Provide a link warning only if
1883         GNULIB_POSIXCHECK is defined.
1884
1885 2007-05-21  Bruno Haible  <bruno@clisp.org>
1886
1887         * m4/printf.m4 (gl_PRINTF_INFINITE, gl_PRINTF_INFINITE_LONG_DOUBLE):
1888         Check also the output for NaN arguments. When cross-compiling, guess
1889         no on IRIX.
1890         * lib/vasnprintf.c: Update comments.
1891         * tests/test-vasnprintf-posix.c (strisnan): New function.
1892         (test_function): Use it.
1893         * tests/test-vasprintf-posix.c (strisnan): New function.
1894         (test_function): Use it.
1895         * tests/test-snprintf-posix.h (strisnan): New function.
1896         (test_function): Use it.
1897         * tests/test-sprintf-posix.h (strisnan): New function.
1898         (test_function): Use it.
1899         Reported by Eric Blake.
1900
1901 2007-05-20  Bruno Haible  <bruno@clisp.org>
1902
1903         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Add test for large finite
1904         numbers that fails on BeOS.
1905         * doc/functions/frexpl.texi: Update.
1906
1907 2007-05-20  Jim Meyering  <jim@meyering.net>
1908
1909         * NEWS: Mention the incompatible change (s/futimens/gl_futimens/)
1910         forced upon us by glibc-2.6.
1911
1912 2007-05-20  Bruno Haible  <bruno@clisp.org>
1913
1914         Fix *printf result for NaN, Inf on AIX, Solaris, OSF/1.
1915         * m4/printf.m4 (gl_PRINTF_INFINITE): Update cross-compiling guesses.
1916         (gl_PRINTF_INFINITE_LONG_DOUBLE): New macro.
1917         * lib/vasnprintf.c: Use NEED_PRINTF_INFINITE_DOUBLE instead of
1918         NEED_PRINTF_INFINITE.
1919         (is_infinitel): New function.
1920         (VASNPRINTF): Handle NEED_PRINTF_INFINITE_LONG_DOUBLE case.
1921         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_INFINITE_DOUBLE): Renamed from
1922         gl_PREREQ_VASNPRINTF_INFINITE.
1923         (gl_PREREQ_VASNPRINTF_INFINITE_LONG_DOUBLE): New macro.
1924         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
1925         gl_PRINTF_INFINITE_LONG_DOUBLE and test its result. Invoke
1926         gl_PREREQ_VASNPRINTF_INFINITE_DOUBLE and
1927         gl_PREREQ_VASNPRINTF_INFINITE_LONG_DOUBLE instead of
1928         gl_PREREQ_VASNPRINTF_INFINITE.
1929         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
1930         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
1931         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
1932         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
1933         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
1934         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
1935         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
1936         * doc/functions/fprintf.texi: Update.
1937         * doc/functions/printf.texi: Update.
1938         * doc/functions/snprintf.texi: Update.
1939         * doc/functions/sprintf.texi: Update.
1940         * doc/functions/vfprintf.texi: Update.
1941         * doc/functions/vprintf.texi: Update.
1942         * doc/functions/vsnprintf.texi: Update.
1943         * doc/functions/vsprintf.texi: Update.
1944
1945 2007-05-20  Bruno Haible  <bruno@clisp.org>
1946
1947         * m4/frexpl.m4 (gl_FUNC_FREXPL_NO_LIBM): Set REPLACE_FREXPL if frexpl
1948         was not found in libc.
1949         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Likewise.
1950
1951 2007-05-20  Bruno Haible  <bruno@clisp.org>
1952
1953         * tests/test-vasnprintf-posix.c (test_function): Allow NaN to be
1954         printed as "-nan" instead of "nan".
1955         * tests/test-vasprintf-posix.c (test_function): Likewise.
1956         * tests/test-snprintf-posix.h (test_function): Likewise.
1957         * tests/test-sprintf-posix.h (test_function): Likewise.
1958         Needed for HP-UX 11.
1959
1960 2007-05-20  Jim Meyering  <jim@meyering.net>
1961
1962         Fix buggy test for the fchownat-deref bug.
1963         * m4/openat.m4 (gl_FUNC_FCHOWNAT_DEREF_BUG): Create the dangling
1964         symlink required for the run-test.  Without it, this test would
1965         always declare that fchownat doesn't work, and client code would
1966         unnecessarily use the replacement function with fixed libc.
1967         (gl_FUNC_FCHOWNAT): Eliminate a variable that wasn't initialized.
1968         Reported by Greg Schafer.
1969
1970 2007-05-19  Bruno Haible  <bruno@clisp.org>
1971
1972         * m4/isnanf.m4 (gl_ISNANF_WORKS): New macro.
1973         (gl_FUNC_ISNANF_NO_LIBM): Invoke it.
1974         * lib/isnan.c (FUNC): Use run-time expressions for SGI compiler.
1975         Needed for IRIX 6.5 and Solaris 2.5.1.
1976
1977 2007-05-19  Bruno Haible  <bruno@clisp.org>
1978
1979         * tests/test-vasnprintf-posix.c (have_minus_zero): New function.
1980         (test_function): Skip tests involving -0.0 on platforms where
1981         -0.0 = 0.0.
1982         * tests/test-vasprintf-posix.c (have_minus_zero): New function.
1983         (test_function): Skip tests involving -0.0 on platforms where
1984         -0.0 = 0.0.
1985         * tests/test-snprintf-posix.h (have_minus_zero): New function.
1986         (test_function): Skip tests involving -0.0 on platforms where
1987         -0.0 = 0.0.
1988         * tests/test-sprintf-posix.h (have_minus_zero): New function.
1989         (test_function): Skip tests involving -0.0 on platforms where
1990         -0.0 = 0.0.
1991         * tests/test-fprintf-posix.h (test_function): Remove all -0.0 related
1992         tests.
1993         * tests/test-printf-posix.h (test_function): Likewise.
1994         * tests/test-printf-posix.output: Remove all -0.0 related results.
1995         Needed for IRIX 6.5.
1996
1997 2007-05-19  Bruno Haible  <bruno@clisp.org>
1998
1999         * tests/test-vasnprintf-posix.c (test_function): Allow NaN to be
2000         printed as "nan0x7fffffff" instead of "nan".
2001         * tests/test-vasprintf-posix.c (test_function): Likewise.
2002         * tests/test-snprintf-posix.h (test_function): Likewise.
2003         * tests/test-sprintf-posix.h (test_function): Likewise.
2004         * tests/test-fprintf-posix.h (NaN): Remove macro.
2005         (test_function): Remove all NaN related tests.
2006         * tests/test-printf-posix.h (NaN): Remove macro.
2007         (test_function): Remove all NaN related tests.
2008         * tests/test-printf-posix.output: Remove all NaN related results.
2009         Needed for IRIX 6.5.
2010
2011 2007-05-19  Bruno Haible  <bruno@clisp.org>
2012
2013         * m4/frexp.m4 (gl_FUNC_FREXP_WORKS): Fix C89 syntax error in test code.
2014         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Likewise.
2015
2016 2007-05-19  Bruno Haible  <bruno@clisp.org>
2017
2018         * lib/float_.h: New file.
2019         * m4/float_h.m4: New file.
2020         * modules/float: New file.
2021         * modules/isnanl (Dependencies): Add float.
2022         * modules/isnanl-nolibm (Dependencies): Likewise.
2023         * modules/mathl (Dependencies): Likewise.
2024         * modules/printf-frexpl (Dependencies): Likewise.
2025         * modules/signbit (Dependencies): Likewise.
2026         * modules/vasnprintf (Dependencies): Likewise.
2027         * doc/headers/float.texi: Update.
2028
2029 2007-05-19  Jim Meyering  <jim@meyering.net>
2030
2031         * lib/utimens.c (gl_futimens): Rename from futimens,
2032         now that glibc-2.6 declares futimens.
2033         * lib/utimens.h: Likewise.
2034
2035 2007-05-19  Bruno Haible  <bruno@clisp.org>
2036
2037         Avoid test failures on mingw.
2038         * tests/test-fprintf-posix.sh: Convert CR/LF to LF in output.
2039         * tests/test-printf-posix.sh: Likewise.
2040         * tests/test-vfprintf-posix.sh: Likewise.
2041         * tests/test-vprintf-posix.sh: Likewise.
2042
2043 2007-05-19  Bruno Haible  <bruno@clisp.org>
2044
2045         Fix *printf result for NaN, Inf, -0.0 on mingw.
2046         * m4/printf.m4 (gl_PRINTF_INFINITE): New macro.
2047         * lib/vasnprintf.c: Include math.h and isnan.h.
2048         (is_infinite_or_zero): New function.
2049         (VASNPRINTF): Fix also the handling of infinite or zero 'double'
2050         values in the %f, %F, %e, %E, %g, %G directives.
2051         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_INFINITE): New macro.
2052         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
2053         gl_PRINTF_INFINITE and test its result. Invoke
2054         gl_PREREQ_VASNPRINTF_INFINITE.
2055         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
2056         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
2057         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
2058         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
2059         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
2060         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
2061         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
2062         * doc/functions/fprintf.texi: Update.
2063         * doc/functions/printf.texi: Update.
2064         * doc/functions/snprintf.texi: Update.
2065         * doc/functions/sprintf.texi: Update.
2066         * doc/functions/vfprintf.texi: Update.
2067         * doc/functions/vprintf.texi: Update.
2068         * doc/functions/vsnprintf.texi: Update.
2069         * doc/functions/vsprintf.texi: Update.
2070
2071 2007-05-19  Bruno Haible  <bruno@clisp.org>
2072
2073         * lib/vasnprintf.c (convert_to_decimal): Add an extra_zeroes argument.
2074         (scale10_round_decimal_long_double): Inline scale10_round_long_double.
2075         Instead of multiplying with 10^k, set extra_zeroes to k.
2076         (scale10_round_long_double): Remove function.
2077
2078 2007-05-18  Bruno Haible  <bruno@clisp.org>
2079
2080         * lib/vasnprintf.c (VASNPRINTF) [NEED_PRINTF_FLAG_ZERO]: Fix logic bug
2081         introduced on 2007-05-06.
2082
2083 2007-05-18  Bruno Haible  <bruno@clisp.org>
2084
2085         * tests/test-vasnprintf-posix.c (test_function): Also test the %e and
2086         %g directives.
2087         * tests/test-vasprintf-posix.c (test_function): Likewise.
2088         * tests/test-snprintf-posix.h (test_function): Likewise.
2089         * tests/test-sprintf-posix.h (test_function): Likewise.
2090
2091 2007-05-18  Bruno Haible  <bruno@clisp.org>
2092
2093         * tests/test-vasnprintf-posix.c (SIZEOF): New macro.
2094         (strmatch): New function.
2095         (test_function): Test the %f directive on numbers of various exponents.
2096         * tests/test-vasprintf-posix.c (SIZEOF): New macro.
2097         (strmatch): New function.
2098         (test_function): Test the %f directive on numbers of various exponents.
2099         * tests/test-snprintf-posix.h (strmatch): New function.
2100         (test_function): Test the %f directive on numbers of various exponents.
2101         * tests/test-sprintf-posix.h (strmatch): New function.
2102         (test_function): Test the %f directive on numbers of various exponents.
2103         * tests/test-snprintf-posix.c (SIZEOF): New macro.
2104         * tests/test-sprintf-posix.c (SIZEOF): New macro.
2105         * tests/test-vsnprintf-posix.c (SIZEOF): New macro.
2106         * tests/test-vsprintf-posix.c (SIZEOF): New macro.
2107
2108 2007-05-18  Bruno Haible  <bruno@clisp.org>
2109
2110         Add support for 'long double' number output.
2111         * m4/printf.m4 (gl_PRINTF_LONG_DOUBLE): New macro.
2112         * lib/vasnprintf.c: Include math.h and float+.h.
2113         (mp_limb_t): New type.
2114         (GMP_LIMB_BITS): New macro.
2115         (mp_twolimb_t): New type.
2116         (GMP_TWOLIMB_BITS): New macro.
2117         (mpn_t): New type.
2118         (multiply, divide, convert_to_decimal, decode_long_double,
2119         scale10_round_long_double, scale10_round_decimal_long_double,
2120         floorlog10l): New functions.
2121         (VASNPRINTF) [NEED_PRINTF_LONG_DOUBLE]: Implement 'long double' support
2122         for the %f, %F, %e, %E, %g, %G directives.
2123         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_LONG_DOUBLE): New macro.
2124         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
2125         gl_PRINTF_LONG_DOUBLE and test its result. Invoke
2126         gl_PREREQ_VASNPRINTF_LONG_DOUBLE.
2127         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
2128         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
2129         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
2130         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
2131         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
2132         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
2133         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
2134         * modules/fprintf-posix (Depends-on): Add frexpl-nolibm.
2135         * modules/snprintf-posix (Depends-on): Likewise.
2136         * modules/sprintf-posix (Depends-on): Likewise.
2137         * modules/vasnprintf-posix (Depends-on): Likewise.
2138         * modules/vasprintf-posix (Depends-on): Likewise.
2139         * modules/vfprintf-posix (Depends-on): Likewise.
2140         * modules/vsnprintf-posix (Depends-on): Likewise.
2141         * modules/vsprintf-posix (Depends-on): Likewise.
2142         * modules/vasnprintf (Files): Add lib/float+.h.
2143         * doc/functions/fprintf.texi: Update.
2144         * doc/functions/printf.texi: Update.
2145         * doc/functions/snprintf.texi: Update.
2146         * doc/functions/sprintf.texi: Update.
2147         * doc/functions/vfprintf.texi: Update.
2148         * doc/functions/vprintf.texi: Update.
2149         * doc/functions/vsnprintf.texi: Update.
2150         * doc/functions/vsprintf.texi: Update.
2151
2152 2007-05-18  Bruno Haible  <bruno@clisp.org>
2153
2154         * lib/vasnprintf.c (USE_SNPRINTF): Define to 0 on BeOS.
2155
2156 2007-05-18  Bruno Haible  <bruno@clisp.org>
2157
2158         * lib/vasnprintf.c (VASNPRINTF) [WIN32]: Use %I64d instead of %lld
2159         for printing 64-bit integers. Needed for mingw.
2160
2161 2007-05-18  Bruno Haible  <bruno@clisp.org>
2162
2163         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Invoke
2164         gl_FUNC_FREXPL_WORKS.
2165         * modules/printf-frexpl (Files): Add m4/frexpl.m4.
2166
2167 2007-05-18  Bruno Haible  <bruno@clisp.org>
2168
2169         * modules/frexpl-nolibm-tests: New file.
2170
2171         * modules/frexpl-nolibm: New file.
2172         * m4/frexpl.m4 (gl_FUNC_FREXPL_NO_LIBM): New macro.
2173
2174 2007-05-17  Paul Eggert  <eggert@cs.ucla.edu>
2175
2176         * lib/dirent_.h: Prefer #include_next <foo.h> to #include
2177         @ABSOLUTE_FOO_H@ if @HAVE_INCLUDE_NEXT@.  This works better with
2178         GCC 4.2, which otherwise issues a lot of warnings.
2179         * lib/iconv_.h, lib/locale_.h, lib/netinet_in_.h, lib/sys_select_.h:
2180         * lib/sys_socket_.h, lib/sys_stat_.h, lib/sysexits_.h, lib/unistd_.h:
2181         Likewise.
2182         * modules/fchdir (dirent.h): Substitute @HAVE_INCLUDE_NEXT@.
2183         * modules/iconv_open (iconv.h): Likewise.
2184         * modules/locale (locale.h): Likewise.
2185         * modules/netinet_in (netinet/in.h): Likewise.
2186         * modules/sys_select (sys_select.h): Likewise.
2187         * modules/sys_socket (sys/socket.h): Likewise.
2188         * modules/sys_stat (sys/stat.h): Likewise.
2189         * modules/sysexits (sysexits.h): Likewise.
2190         * modules/unistd (unistd.h): Likewise.
2191
2192 2007-05-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2193
2194         * modules/closein-tests (Makefile.am): Distribute
2195         `test-closein.sh'.
2196
2197 2007-05-17  Bruno Haible  <bruno@clisp.org>
2198
2199         * tests/test-printf-posix.output: Renamed from
2200         tests/test-fprintf-posix.out.
2201         * modules/fprintf-posix-tests: Update.
2202         * modules/printf-posix-tests: Update.
2203         * modules/vfprintf-posix-tests: Update.
2204         * modules/vprintf-posix-tests: Update.
2205         * tests/test-fprintf-posix.sh: Update.
2206         * tests/test-printf-posix.sh: Update.
2207         * tests/test-vfprintf-posix.sh: Update.
2208         * tests/test-vprintf-posix.sh: Update.
2209         Reported by Ralf Wildenhues.
2210
2211 2007-05-16  Paul Eggert  <eggert@cs.ucla.edu>
2212
2213         * lib/fcntl_.h: Prefer #include_next <foo.h> to #include
2214         @ABSOLUTE_FOO_H@ if @HAVE_INCLUDE_NEXT@.  This works better with
2215         GCC 4.2, which otherwise issues a lot of warnings.
2216         * lib/inttypes_.h, lib/math_.h, lib/search_.h, lib/signal_.h:
2217         * lib/stdint_.h, lib/stdio_.h, lib/stdlib_.h, lib/string_.h:
2218         * lib/sys_time_.h, lib/time_.h, lib/wchar_.h, lib/wctype_.h: Likewise.
2219         * lib/stdlib_.h: Don't bother with #pragma GCC system_header, as
2220         it should no longer be needed.
2221         * lib/string_.h: Likewise.
2222         * modules/absolute-header (HAVE_INCLUDE_NEXT): New 'make' define.
2223         * modules/fcntl (fcntl.h): Substitute @HAVE_INCLUDE_NEXT@.
2224         * modules/inttypes (inttypes.h): Likewise.
2225         * modules/math (math.h): Likewise.
2226         * modules/search (search.h): Likewise.
2227         * modules/signal (signal.h): Likewise.
2228         * modules/stdint (stdint.h): Likewise.
2229         * modules/stdio (stdio.h): Likewise.
2230         * modules/stdlib (stdlib.h): Likewise.
2231         * modules/string (string.h): Likewise.
2232         * modules/sys_time (sys/time.h): Likewise.
2233         * modules/time (time.h): Likewise.
2234         * modules/wchar (wchar.h): Likewise.
2235         * modules/wctype (wtype.h): Likewise.
2236
2237 2007-05-16  Thien-Thi Nguyen  <ttn@gnuvola.org>  (tiny change)
2238
2239         * doc/gnulib-tool.texi (CVS Issues): Fix typo.
2240
2241 2007-05-13  Bruno Haible  <bruno@clisp.org>
2242
2243         * stpcpy.m4 (gl_FUNC_STPCPY): Require AC_C_RESTRICT.
2244         * stpncpy.m4 (gl_FUNC_STPNCPY): Likewise.
2245         * strsep.m4 (gl_FUNC_STRSEP): Likewise.
2246         * strtok_r.m4 (gl_FUNC_STRTOK_R): Likewise.
2247         (gl_PREREQ_STRTOK_R): Don't require it here.
2248
2249 2007-05-13  Bruno Haible  <bruno@clisp.org>
2250
2251         * lib/stdlib_.h (mkdtemp, mkstemp): Comment out argument name. Needed
2252         when used in C++ mode.
2253
2254 2007-05-12  Bruno Haible  <bruno@clisp.org>
2255
2256         * lib/linebuffer.h: Tweak doc.
2257         * lib/linebuffer.c: Likewise.
2258
2259 2007-05-12  James Youngman  <jay@gnu.org>
2260
2261         * lib/linebuffer.c (readlinebuffer_delim): New function,
2262         like readlinebuffer, but use a caller-specified delimiter.
2263         (readlinebuffer): Just call readlinebuffer_delim with '\n'
2264         as the delimiter.
2265         * lib/linebuffer.h (readlinebuffer_delim): Declare it.
2266
2267 2007-05-12  Sergey Poznyakoff  <gray@gnu.org.ua>
2268
2269         * m4/openat.m4 (gl_FUNC_OPENAT): Do not require openat-die.
2270         * modules/openat (Files): Remove openat-die.c.
2271         (Depends-on): Add openat-die.
2272         * modules/openat-die: New module.
2273
2274 2007-05-06  Bruno Haible  <bruno@clisp.org>
2275
2276         * m4/printf.m4 (gl_PRINTF_FLAG_GROUPING, gl_VSNPRINTF_ZEROSIZE_C99):
2277         Update with info about Cygwin.
2278         * doc/functions/fprintf.texi: Update.
2279         * doc/functions/printf.texi: Update.
2280         * doc/functions/snprintf.texi: Update.
2281         * doc/functions/sprintf.texi: Update.
2282         * doc/functions/vfprintf.texi: Update.
2283         * doc/functions/vprintf.texi: Update.
2284         * doc/functions/vsnprintf.texi: Update.
2285         * doc/functions/vsprintf.texi: Update.
2286         Reported by Eric Blake.
2287
2288 2007-05-06  Bruno Haible  <bruno@clisp.org>
2289
2290         * lib/vasnprintf.c (VASNPRINTF) [NEED_PRINTF_FLAG_ZERO]: Perform the
2291         padding ourselves for the floating-point directives.
2292         * m4/printf.m4 (gl_PRINTF_FLAG_ZERO): New macro.
2293         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_FLAG_ZERO): New macro.
2294         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
2295         gl_PRINTF_FLAG_ZERO and test its result. Invoke
2296         gl_PREREQ_VASNPRINTF_FLAG_ZERO.
2297         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
2298         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Likewise.
2299         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
2300         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
2301         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
2302         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
2303         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
2304         * tests/test-snprintf-posix.h (test_function): Also check the width
2305         and some flags in the %f directive.
2306         * tests/test-sprintf-posix.h (test_function): Likewise.
2307         * tests/test-vasnprintf-posix.c (test_function): Likewise.
2308         * tests/test-vasprintf-posix.c (test_function): Likewise.
2309         * doc/functions/fprintf.texi: Update.
2310         * doc/functions/printf.texi: Update.
2311         * doc/functions/snprintf.texi: Update.
2312         * doc/functions/sprintf.texi: Update.
2313         * doc/functions/vfprintf.texi: Update.
2314         * doc/functions/vprintf.texi: Update.
2315         * doc/functions/vsnprintf.texi: Update.
2316         * doc/functions/vsprintf.texi: Update.
2317
2318 2007-05-06  Bruno Haible  <bruno@clisp.org>
2319
2320         * lib/vasnprintf.c (VASNPRINTF) [NEED_PRINTF_FLAG_GROUPING]: Don't
2321         pass the ' flag character to sprintf or snprintf.
2322         * m4/printf.m4 (gl_PRINTF_FLAG_GROUPING): New macro.
2323         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_FLAG_GROUPING): New macro.
2324         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
2325         gl_PRINTF_FLAG_GROUPING and test its result. Invoke
2326         gl_PREREQ_VASNPRINTF_FLAG_GROUPING.
2327         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
2328         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Likewise.
2329         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
2330         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
2331         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
2332         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
2333         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
2334         * tests/test-snprintf-posix.h (test_function): Also check the grouping
2335         flag.
2336         * tests/test-sprintf-posix.h (test_function): Likewise.
2337         * tests/test-vasnprintf-posix.c (test_function): Likewise.
2338         * tests/test-vasprintf-posix.c (test_function): Likewise.
2339         * doc/functions/fprintf.texi: Update.
2340         * doc/functions/printf.texi: Update.
2341         * doc/functions/snprintf.texi: Update.
2342         * doc/functions/sprintf.texi: Update.
2343         * doc/functions/vfprintf.texi: Update.
2344         * doc/functions/vprintf.texi: Update.
2345         * doc/functions/vsnprintf.texi: Update.
2346         * doc/functions/vsprintf.texi: Update.
2347
2348 2007-05-01  Bruno Haible  <bruno@clisp.org>
2349
2350         * tests/test-argp-2.sh (func_compare): Drop .exe suffix.
2351
2352 2007-05-03  Paul Eggert  <eggert@cs.ucla.edu>
2353
2354         * m4/d-ino.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_INO): Use better
2355         comment for D_INO_IN_DIRENT.  Problem reported by James Youngman.
2356
2357 2007-05-02  Paul Eggert  <eggert@cs.ucla.edu>
2358
2359         * m4/d-ino.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_INO): Test whether
2360         readdir returns garbage in d_ino.  Problem reported by Kaz Sasayama in
2361         <http://lists.gnu.org/archive/html/bug-gnulib/2007-05/msg00021.html>.
2362
2363 2007-05-02  Sergey Poznyakoff  <gray@gnu.org.ua>
2364
2365         * lib/argp-help.c (struct hol_entry): New member `ord'.
2366         (HOL_ENTRY_PTRCMP): Use ord for comparison
2367         (hol_sort): Initialize ord.
2368
2369 2007-05-01  Bruno Haible  <bruno@clisp.org>
2370
2371         * doc/functions/_Exit_C99.texi: Renamed from doc/functions/_Exit.texi.
2372         Reported by Eric Blake.
2373         * doc/gnulib.texi (Function Substitutes): Update.
2374
2375 2007-05-01  Bruno Haible  <bruno@clisp.org>
2376
2377         * doc/functions.texi: Remove file, now redundant through
2378         doc/functions/*.texi.
2379
2380 2007-05-01  Bruno Haible  <bruno@clisp.org>
2381
2382         * modules/argp (Depends-on): Add sleep.
2383
2384 2007-05-01  Bruno Haible  <bruno@clisp.org>
2385
2386         * modules/sleep-tests: New file.
2387         * tests/test-sleep.c: New file.
2388
2389         * modules/sleep: New file.
2390         * lib/sleep.c: New file.
2391         * m4/sleep.m4: New file.
2392         * lib/unistd_.h (sleep): New declaration.
2393         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_SLEEP,
2394         HAVE_SLEEP.
2395         * modules/unistd (Makefile.am): Substitute GNULIB_SLEEP, HAVE_SLEEP.
2396         * doc/functions/sleep.texi: Document the sleep module.
2397
2398 2007-05-01  Bruno Haible  <bruno@clisp.org>
2399
2400         * lib/sigprocmask.h: Remove file.
2401         * lib/signal_.h: Incorporate the previous contents of sigprocmask.h.
2402         * lib/sigprocmask.c: Include <signal.h> instead of sigprocmask.h.
2403         * m4/signal_h.m4 (gl_SIGNAL_H_DEFAULTS): Substitute GNULIB_SIGPROCMASK,
2404         HAVE_POSIX_SIGNALBLOCKING, HAVE_SIGSET_T.
2405         * m4/signalblocking.m4 (gl_SIGNALBLOCKING): Require
2406         gl_SIGNAL_H_DEFAULTS. Set HAVE_POSIX_SIGNALBLOCKING as a shell variable.
2407         (gl_PREREQ_SIGPROCMASK): Require gl_SIGNAL_H_DEFAULTS. Set
2408         HAVE_SIGSET_T as a shell variable.
2409         * modules/signal (Makefile.am): Substitute GNULIB_SIGPROCMASK,
2410         HAVE_POSIX_SIGNALBLOCKING, HAVE_SIGSET_T into signal.h.
2411         * modules/sigprocmask (Files): Remove lib/sigprocmask.h.
2412         (Depends-on): Add signal. Remove verify.
2413         (configure.ac): Invoke gl_SIGNAL_MODULE_INDICATOR.
2414         (Include): Mention <signal.h> instead of sigprocmask.h.
2415         * NEWS: Mention the change.
2416         * lib/fatal-signal.c: Don't include sigprocmask.h.
2417
2418 2007-05-01  Bruno Haible  <bruno@clisp.org>
2419
2420         * modules/signal: New file.
2421         * lib/signal_.h: New file.
2422         * m4/signal_h.m4: New file.
2423
2424 2007-05-01  Bruno Haible  <bruno@clisp.org>
2425
2426         * lib/wctype_.h: Test HAVE_ISWCNTRL at configure time.
2427         * m4/wctype.m4 (gl_WCTYPE_H): Substitute HAVE_ISWCNTRL.
2428         * modules/wctype (Makefile.am): Substitute HAVE_ISWCNTRL instead of
2429         HAVE_WCTYPE_CTMP_BUG into wctype.h.
2430
2431 2007-05-01  Bruno Haible  <bruno@clisp.org>
2432
2433         * lib/sys_stat_.h: Test HAVE_LSTAT, HAVE_DECL_MKDIR, HAVE_IO_H at
2434         configure time.
2435         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Substitute HAVE_LSTAT,
2436         HAVE_DECL_MKDIR, HAVE_IO_H via AC_SUBST.
2437         * modules/sys_stat (Makefile.am): Substitute their values into
2438         sys/stat.h.
2439
2440 2007-05-01  Bruno Haible  <bruno@clisp.org>
2441
2442         * lib/glob_.h: Test HAVE_SYS_CDEFS_H at configure time.
2443         * m4/glob.m4 (gl_PREREQ_GLOB): Substitute HAVE_SYS_CDEFS_H via AC_SUBST.
2444         * modules/glob (Makefile.am): Put HAVE_SYS_CDEFS_H value into glob.h.
2445
2446 2007-05-01  Bruno Haible  <bruno@clisp.org>
2447
2448         * doc/header/assert.texi: Undo last change: don't mention the gnulib
2449         'assert' module here.
2450
2451 2007-05-01  Bruno Haible  <bruno@clisp.org>
2452
2453         * doc/functions/*.texi: New files.
2454         * doc/functions/google-ranking.txt: New file.
2455         * doc/gnulib.texi (Function Substitutes): New chapter.
2456         (ctime, inet_ntoa): Remove sections.
2457         * doc/ctime.texi: Remove file.
2458         * doc/inet_ntoa.texi: Remove file.
2459         * doc/Makefile (gnulib.info, gnulib.html, gnulib.dvi): Update
2460         dependencies.
2461         (%.info): New rule, specifying a --reference-limit.
2462
2463 2007-05-01  Bruno Haible  <bruno@clisp.org>
2464
2465         * MODULES.html.sh (posix_functions): Remove 'exec', 'toc'.
2466
2467 2007-05-01  Bruno Haible  <bruno@clisp.org>
2468
2469         * modules/mkdir (Depends-on): Add sys_stat, because sys_stat provides
2470         the portability of 'mkdir' to mingw systems.
2471
2472 2007-05-01  Bruno Haible  <bruno@clisp.org>
2473
2474         * doc/headers/google-ranking.txt: New file.
2475
2476 2007-04-30  Eric Blake  <ebb9@byu.net>
2477
2478         Prefer fseeko to fseek.
2479         * modules/getpass (Depends-on): Add fseeko.
2480         * lib/getpass.c (getpass): Use fseeko, not fseek.
2481
2482 2007-04-30  Sergey Poznyakoff  <gray@gnu.org.ua>
2483
2484         * lib/argp-help.c (hol_entry_cmp): Option sorting algorithm
2485         assumes the sorting is stable, while most qsort implementations
2486         are not.  Use argument addresses to ensure they never compare as
2487         equal.
2488
2489         * tests/test-argp-2.sh (usage-indent test): Fix output
2490         (func_compare): Restore diff options
2491         * tests/test-argp.c: Restore #include "progname.h"
2492
2493 2007-04-29  Bruno Haible  <bruno@clisp.org>
2494
2495         * m4/printf.m4 (gl_VSNPRINTF_ZEROSIZE_C99): New macro.
2496         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
2497         gl_VSNPRINTF_ZEROSIZE_C99. Test gl_cv_func_vsnprintf_zerosize_c99.
2498         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
2499         * modules/snprintf-posix-tests (Files): Add tests/test-snprintf.c.
2500         (configure.ac): Define CHECK_SNPRINTF_POSIX.
2501         (TESTS, check_PROGRAMS): Add test-snprintf.
2502         * modules/vsnprintf-posix-tests (Files): Add tests/test-vsnprintf.c.
2503         (configure.ac): Define CHECK_VSNPRINTF_POSIX.
2504         (TESTS, check_PROGRAMS): Add test-vsnprintf.
2505         * tests/test-snprintf.c (main) [!CHECK_SNPRINTF_POSIX]: Disable
2506         assertions that fail on HP-UX, OSF/1, or IRIX.
2507         * tests/test-vsnprintf.c (main) [!CHECK_VSNPRINTF_POSIX]: Likewise.
2508
2509 2007-04-29  Bruno Haible  <bruno@clisp.org>
2510
2511         * MODULES.html.sh (posix_functions): Remove 'contents'.
2512
2513 2007-04-29  Karl Berry  <karl@gnu.org>
2514
2515         * config/srclist.txt (gendocs_template_min): new entry.
2516
2517 2007-04-29  Bruno Haible  <bruno@clisp.org>
2518
2519         Work around fpurge bug on BSD systems.
2520         * modules/fpurge (Makefile.am): Compile fpurge.c unconditionally.
2521         * m4/fpurge.m4 (gl_FUNC_FPURGE): Don't invoke AC_LIBOBJ.
2522         * lib/fpurge.h (fpurge): Don't handle __fpurge wrapper here. Define
2523         fpurge to rpl_fpurge if the system already has this function.
2524         * lib/fpurge.c (fpurge): Handle also the __fpurge wrapper case and
2525         the case where the system already has this function. Correct invariants
2526         on BSD systems.
2527         * lib/fseeko.c (rpl_fseeko): Update recognition of preceding fflush on
2528         BSD systems.
2529
2530 2007-04-29  Sergey Poznyakoff  <gray@gnu.org.ua>
2531
2532         * lib/argp-help.c (hol_cluster_cmp): Reverse comparison.  Change
2533         proposed by Sven Verdoolaege.
2534
2535         * tests/test-argp.c: Fix option ordering.  Test deeply clustered
2536         options.
2537         * tests/test-argp-2.sh (func_compare): Use diff instead of cmp.
2538         (usage and help tests): Update
2539
2540 2007-04-29  Bruno Haible  <bruno@clisp.org>
2541
2542         * tests/test-fflush.c (main): Use a file of size 17, not 10.
2543         Print more information in case of failure. Disable a test on BeOS.
2544
2545 2007-04-29  Bruno Haible  <bruno@clisp.org>
2546
2547         * tests/**/test-*.[hc] (ASSERT): Use fprintf to show the line number.
2548         This helps debugging on systems on which no gdb is available.
2549
2550 2007-04-29  Bruno Haible  <bruno@clisp.org>
2551
2552         * lib/freading.h: Improve comments.
2553         * lib/fwriting.h: Likewise.
2554         * tests/test-freading.c (main): Don't check freading immediately after
2555         repositioning. Needed for glibc.
2556
2557 2007-04-29  Bruno Haible  <bruno@clisp.org>
2558
2559         * lib/freading.c (freading): Trivial simplification.
2560
2561 2007-04-28  Bruno Haible  <bruno@clisp.org>
2562
2563         * tests/test-fwriting.c (main): Also test the interaction between
2564         fflush and fwriting.
2565         * modules/fwriting-tests (Depends-on): Add fflush.
2566
2567         * tests/test-freading.c (main): Also test the interaction between
2568         fflush and freading.
2569         * modules/freading-tests (Depends-on): Add fflush.
2570
2571 2007-04-28  Bruno Haible  <bruno@clisp.org>
2572
2573         * lib/stdio_.h (fseek, ftell): Provide link warnings suggesting to use
2574         fseeko and ftello.
2575         Suggested by Eric Blake.
2576
2577 2007-04-28  Jim Meyering  <jim@meyering.net>
2578
2579         Avoid false-negative in gl_STDINT_H's C99 conformance test.
2580         * m4/stdint.m4 (gl_STDINT_H): When checking whether stdint.h conforms
2581         to C99, include all of gl_STDINT_INCLUDES, not just <stddef.h>.
2582
2583 2007-04-27  Eric Blake  <ebb9@byu.net>
2584
2585         * doc/headers/assert.texi (assert.h): Document assert module use.
2586
2587 2007-04-27  Bruno Haible  <bruno@clisp.org>
2588
2589         * doc/headers/*.texi: New files.
2590         * doc/gnulib.texi (Header File Substitutes): New chapter.
2591         * doc/Makefile (gnulib.info, gnulib.html, gnulib.dvi): Specify
2592         dependencies.
2593         (standards.info ,standards.html, standards.dvi): Update dependencies.
2594         (mostlyclean, clean): New targets.
2595
2596 2007-04-27  Bruno Haible  <bruno@clisp.org>
2597
2598         * lib/sysexits_.h: Renamed from lib/sysexit_.h.
2599         * modules/sysexits (Files, Makefile.am): Update.
2600
2601         * lib/sys_socket_.h: Renamed from lib/socket_.h.
2602         * modules/sys_socket (Files, Makefile.am): Update.
2603
2604         * lib/sys_stat_.h: Renamed from lib/stat_.h.
2605         * modules/sys_stat (Files, Makefile.am): Update.
2606
2607 2007-04-27  Eric Blake  <ebb9@byu.net>
2608
2609         * lib/freading.h: Improve comments.
2610         * lib/fwriting.h: Likewise.
2611         * lib/fflush.c: Likewise.
2612
2613         Fix closein for mingw.
2614         * modules/closein-tests: Add tests for closein.
2615         * tests/test-closein.c: New file.
2616         * tests/test-closein.sh: Likewise.
2617         * lib/unistd_.h [!SEEK_CUR]: Mingw also needs stdlib.h for _exit.
2618         * lib/closein.c (close_stdin): Don't fflush non-seekable streams.
2619
2620 2007-04-27  Bruno Haible  <bruno@clisp.org>
2621
2622         * lib/inttypes_.h [_DECC]: Don't use #include_next if the compiler
2623         version is < 6.
2624         * lib/math_.h [__DECC]: Likewise.
2625         * lib/stdio_.h [__DECC]: Likewise.
2626         * lib/stdlib_.h [__DECC]: Likewise.
2627         * lib/string_.h [__DECC]: Likewise.
2628         * lib/time_.h [__DECC]: Likewise.
2629         * lib/wchar_.h [__DECC]: Likewise.
2630         * lib/wctype_.h [__DECC]: Likewise.
2631
2632 2007-04-27  Bruno Haible  <bruno@clisp.org>
2633
2634         * tests/test-fbufmode.c (main): Relax test, to avoid failure on mingw.
2635
2636 2007-04-27  Bruno Haible  <bruno@clisp.org>
2637
2638         * lib/fflush.c: Add comments.
2639         * modules/fpurge-tests (Depends-on): Add fflush.
2640         * modules/freadable-tests (Depends-on): Likewise.
2641         * modules/fwritable-tests (Depends-on): Likewise.
2642
2643 2007-04-27  Charles Wilson  <libtool@cwilson.fastmail.fm>
2644
2645         * m4/argz.m4 (gl_FUNC_ARGZ): Use !HAVE_WORKING_ARGZ instead of
2646         SYSTEM_ARGZ_IS_BROKEN.  Also, minor stylistic improvements.
2647         Report by Bruno Haible <bruno@clisp.org>.
2648
2649 2007-04-26  Eric Blake  <ebb9@byu.net>
2650
2651         Fix fflush on mingw.
2652         * modules/fflush (Depends-on): Add freading.
2653         * lib/fflush.c (rpl_fflush): Use freading to avoid losing buffered
2654         but unread data.
2655
2656 2007-04-26  Eric Blake  <ebb9@byu.net>
2657         and Bruno Haible  <bruno@clisp.org>
2658
2659         Implement freading and fwriting.
2660         * lib/freading.c: New file.
2661         * lib/freading.h: Likewise.
2662         * m4/freading.m4: Likewise.
2663         * modules/freading: Likewise.
2664         * modules/freading-tests: Likewise.
2665         * tests/test-freading.c: Likewise.
2666         * lib/fwriting.c: New file.
2667         * lib/fwriting.h: Likewise.
2668         * m4/fwriting.m4: Likewise.
2669         * modules/fwriting: Likewise.
2670         * modules/fwriting-tests: Likewise.
2671         * tests/test-fwriting.c: Likewise.
2672         * MODULES.html.sh (File stream based Input/Output): Mention them.
2673
2674 2007-04-26  Bruno Haible  <bruno@clisp.org>
2675
2676         * lib/stdio_.h (fseeko, ftello): Check that off_t has the same size as
2677         'long' when we assume it.
2678         Suggested by Eric Blake.
2679
2680 2007-04-26  Bruno Haible  <bruno@clisp.org>
2681
2682         Ensure fseeko, ftello are declared on glibc systems.
2683         * modules/fflush (configure.ac-early): Require AC_FUNC_FSEEKO.
2684         * modules/fseeko (configure.ac-early): Likewise.
2685         * modules/ftello (configure.ac-early): Likewise.
2686         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Don't define HAVE_FSEEKO, rely on
2687         AC_FUNC_FSEEKO for this.
2688         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Inline gl_CHECK_FSEEKO.
2689         (gl_CHECK_FSEEKO): Remove macro.
2690
2691 2007-04-26  Bruno Haible  <bruno@clisp.org>
2692
2693         * tests/test-fflush.c (main): Also check the ftell result after
2694         fflush and fseek/fseeko.
2695         * lib/fflush.c (rpl_fflush): For BSD implementations, update the
2696         file descriptor position cache in the stream.
2697         * lib/fseeko.c (rpl_fseeko): Likewise.
2698
2699 2007-04-26  Bruno Haible  <bruno@clisp.org>
2700
2701         * modules/fflush-tests (Depends-on): Add fseeko.
2702
2703 2007-04-25  Charles Wilson  <libtool@cwilson.fastmail.fm>
2704             Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2705
2706         * lib/argz_.h: ensure error_t definition is obtained in same
2707         mechanism system argz.h would have.
2708         * m4/argz.m4 (gl_FUNC_ARGZ): add new test to check if $host's
2709         argz facilities are known bad.  Err on the side of caution if
2710         cross-compiling.
2711
2712 2007-04-25  Eric Blake  <ebb9@byu.net>
2713
2714         * lib/fpurge.c (includes): Use stdlib.h for free.
2715         * tests/test-fflush.c (main): Also test fflush-fseeko.
2716
2717 2007-04-25  Bruno Haible  <bruno@clisp.org>
2718
2719         Make fflush+fseek POSIX-compliant on FreeBSD and MacOS X.
2720         * lib/fseeko.c: New file.
2721         * lib/stdio_.h: Include <sys/types.h> when off_t is needed.
2722         (fseeko, fseek): Define to replacements if REPLACE_FFLUSH.
2723         * m4/fseeko.m4 (gl_CHECK_FSEEKO): New macro, extracted from
2724         gl_FUNC_FSEEKO.
2725         (gl_FUNC_FSEEKO): Invoke it.
2726         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Arrange to compile fseeko.c. Invoke
2727         gl_CHECK_FSEEKO. Define HAVE_FSEEKO.
2728         * modules/fflush (Files): Add lib/fseeko.c, m4/fseeko.m4.
2729
2730 2007-04-25  Bruno Haible  <bruno@clisp.org>
2731
2732         * modules/fflush (Depends-on): Add ftello.
2733
2734 2007-04-25  Bruno Haible  <bruno@clisp.org>
2735
2736         * modules/ftello-tests: New file.
2737         * tests/test-ftello.c: New file.
2738
2739         * modules/ftello: New file.
2740         * m4/ftello.m4: New file.
2741         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FTELLO,
2742         HAVE_FTELLO.
2743         * lib/stdio_.h (ftello): New declaration.
2744         * modules/stdio (Makefile.am): Substitute also GNULIB_FTELLO,
2745         HAVE_FTELLO.
2746
2747 2007-04-25  Bruno Haible  <bruno@clisp.org>
2748
2749         * modules/fseeko-tests: New file.
2750         * tests/test-fseeko.c: New file.
2751
2752         * modules/fseeko: New file.
2753         * m4/fseeko.m4: New file.
2754         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FSEEKO,
2755         HAVE_FSEEKO.
2756         * lib/stdio_.h (fseeko): New declaration.
2757         * modules/stdio (Makefile.am): Substitute also GNULIB_FSEEKO,
2758         HAVE_FSEEKO.
2759
2760 2007-04-25  Bruno Haible  <bruno@clisp.org>
2761
2762         * lib/stdio_.h (fflush): Add support for GNULIB_POSIXCHECK.
2763
2764 2007-04-25  Bruno Haible  <bruno@clisp.org>
2765
2766         * lib/unistd_.h: Include <stdio.h> if needed to get the SEEK_* macros.
2767         * tests/test-stdio.c: Check that the various SEEK_* macros are defined.
2768         * tests/test-unistd.c: Likewise.
2769         * tests/test-fcntl.c: Likewise.
2770
2771 2007-04-23  Eric Blake  <ebb9@byu.net>
2772
2773         * lib/fflush.c: Fix missing include.
2774         Reported by Bruno Haible.
2775
2776 2007-04-23  Bruno Haible  <bruno@clisp.org>
2777
2778         * lib/fpurge.c (fpurge) [glibc, BSD]: Free a malloc()ed ungetc buffer.
2779         Reported by Eric Blake.
2780
2781 2007-04-23  Bruno Haible  <bruno@clisp.org>
2782
2783         * lib/fbufmode.c (fbufmode): Port to Solaris/SPARC64.
2784
2785 2007-04-23  Bruno Haible  <bruno@clisp.org>
2786
2787         * lib/fseterr.c (fseterr): Don't hardcode the value of _IOERR.
2788
2789 2007-04-23  Bruno Haible  <bruno@clisp.org>
2790
2791         * tests/test-fbufmode.c (main): Be prepared to a failure of setvbuf.
2792         Needed on HP-UX 11.
2793
2794 2007-04-16  Eric Blake  <ebb9@byu.net>
2795
2796         Make fflush rely on fpurge.
2797         * lib/fflush.c (rpl_fflush): Rely on fpurge module, rather than
2798         open coding all variants.
2799         * modules/fflush (Depends-on): Add fpurge and unistd.
2800         * modules/fflush-tests (Depends-on): Unistd is no longer extra.
2801         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Simplify.
2802
2803         Fix --with-tests compilation on cygwin.
2804         * modules/argmatch-tests (Makefile.am): List gnulib library first
2805         in LDADD.
2806         * modules/argp-tests (Makefile.am): Likewise.
2807         * modules/array-list-tests (Makefile.am): Likewise.
2808         * modules/array-oset-tests (Makefile.am): Likewise.
2809         * modules/avltree-list-tests (Makefile.am): Likewise.
2810         * modules/avltree-oset-tests (Makefile.am): Likewise.
2811         * modules/avltreehash-list-tests (Makefile.am): Likewise.
2812         * modules/carray-list-tests (Makefile.am): Likewise.
2813         * modules/dirname-tests (Makefile.am): Likewise.
2814         * modules/frexp-tests (Makefile.am): Likewise.
2815         * modules/isnanl-tests (Makefile.am): Likewise.
2816         * modules/linked-list-tests (Makefile.am): Likewise.
2817         * modules/linkedhash-list-tests (Makefile.am): Likewise.
2818         * modules/lock-tests (Makefile.am): Likewise.
2819         * modules/rbtree-list-tests (Makefile.am): Likewise.
2820         * modules/rbtree-oset-tests (Makefile.am): Likewise.
2821         * modules/rbtreehash-list-tests (Makefile.am): Likewise.
2822         * modules/tls-tests (Makefile.am): Likewise.
2823         * modules/tsearch-tests (Makefile.am): Likewise.
2824         * modules/xvasprintf-tests (Makefile.am): Likewise.
2825
2826         Fix fpurge for cygwin.
2827         * lib/fpurge.c (fpurge): Fix order of operation flub, and return a
2828         value.
2829         * modules/fpurge-tests (Depends-on): Clean up trash.
2830
2831 2007-04-16  Simon Josefsson  <simon@josefsson.org>
2832
2833         * lib/gc-libgcrypt.c (gc_hash_open): Shut up compiler warnings.
2834
2835         * m4/autobuild.m4: Re-indent.
2836
2837 2007-04-13  Bruno Haible  <bruno@clisp.org>
2838
2839         * modules/fpurge-tests: New file.
2840         * tests/test-fpurge.c: New file.
2841
2842         * modules/fpurge: New file.
2843         * lib/fpurge.h: New file.
2844         * lib/fpurge.c: New file.
2845         * m4/fpurge.m4: New file.
2846
2847 2007-04-13  Bruno Haible  <bruno@clisp.org>
2848
2849         * modules/fbufmode-tests: New file.
2850         * tests/test-fbufmode.c: New file.
2851
2852         * modules/fbufmode: New file.
2853         * lib/fbufmode.h: New file.
2854         * lib/fbufmode.c: New file.
2855         * m4/fbufmode.m4: New file.
2856
2857 2007-04-13  Bruno Haible  <bruno@clisp.org>
2858
2859         * modules/fwritable-tests: New file.
2860         * tests/test-fwritable.c: New file.
2861
2862         * modules/fwritable: New file.
2863         * lib/fwritable.h: New file.
2864         * lib/fwritable.c: New file.
2865         * m4/fwritable.m4: New file.
2866
2867 2007-04-13  Bruno Haible  <bruno@clisp.org>
2868
2869         * modules/freadable-tests: New file.
2870         * tests/test-freadable.c: New file.
2871
2872         * modules/freadable: New file.
2873         * lib/freadable.h: New file.
2874         * lib/freadable.c: New file.
2875         * m4/freadable.m4: New file.
2876
2877 2007-04-13  Bruno Haible  <bruno@clisp.org>
2878
2879         * modules/fflush-tests (Makefile.am): Remove EXTRA_DIST. Augment
2880         MOSTLYCLEANFILES.
2881
2882 2007-04-13  Paul Eggert  <eggert@cs.ucla.edu>
2883
2884         * build-aux/bootstrap (gnulib_tool_option_extras): New var, used by
2885         gzip bootstrap.conf to avoid dragging in i18n machinery.
2886         (gnulib_tool_option): Use it.
2887
2888 2007-04-13  Bruno Haible  <bruno@clisp.org>
2889
2890         * tests/test-vasnprintf-posix.c (test_function): Add tests for %f and
2891         %F directives.
2892         * tests/test-vasprintf-posix.c (test_function): Likewise.
2893         * tests/test-snprintf-posix.h (test_function): Likewise.
2894         * tests/test-sprintf-posix.h (test_function): Likewise.
2895         * tests/test-fprintf-posix.h (test_function): Likewise.
2896         * tests/test-printf-posix.h (test_function): Likewise.
2897         * tests/test-fprintf-posix.out: Likewise.
2898
2899 2007-04-13  Bruno Haible  <bruno@clisp.org>
2900
2901         * modules/lock-tests (configure.ac): For LIBSCHED, try also -lposix4.
2902         * modules/tls-tests (configure.ac): Likewise.
2903         Reported by Arto C. Nirkko <anirkko@insel.ch>.
2904
2905 2007-04-13  Bruno Haible  <bruno@clisp.org>
2906
2907         * lib/tls.c (glthread_tls_get): Fix return type.
2908         Patch by Arto C. Nirkko <anirkko@insel.ch>.
2909
2910 2007-04-12  Eric Blake  <ebb9@byu.net>
2911
2912         * modules/gettime (Depends-on): Remove gettime.
2913         Reported by Dmitry V. Levin.
2914
2915 2007-04-12  Bruno Haible  <bruno@clisp.org>
2916
2917         * modules/fflush (Include): Mention <stdio.h>.
2918         * modules/strtoimax (Include): Mention <inttypes.h>.
2919         * modules/strtoumax (Include): Likewise.
2920
2921 2007-04-12  Eric Blake  <ebb9@byu.net>
2922
2923         * .cvsignore: New file.
2924         * .gitignore: Likewise.
2925
2926 2007-04-12  Bruno Haible  <bruno@clisp.org>
2927
2928         * modules/iconv-tests (test_iconv_LDADD): Mention -liconv after LDADD,
2929         not before, since $(LDADD) often contains libgnu.a.
2930         * modules/striconv-tests (test_striconv_LDADD): Likewise.
2931         * modules/striconveh-tests (test_striconveh_LDADD): Likewise.
2932         * modules/striconveha-tests (test_striconveha_LDADD): Likewise.
2933         Needed on Cygwin.
2934
2935 2007-04-12  Eric Blake  <ebb9@byu.net>
2936
2937         Work around glibc's failure to flush stdin on fclose.
2938         * lib/closein.c (close_stdin): Flush stdin before closing.
2939
2940         Work around glibc's failure to reset seekable stdin on exit.
2941         * modules/closein: New module.
2942         * lib/closein.c: New file.
2943         * lib/closein.h: Likewise.
2944         * m4/closein.m4: Likewise.
2945         * MODULES.html.sh (File stream based Input/Output): Document it.
2946
2947 2007-04-12  Simon Josefsson  <simon@josefsson.org>
2948
2949         * gnulib-tool: Rename generated 'autobuild' script to
2950         'do-autobuild' in --create-megatestdir output.
2951
2952         * doc/gnulib.texi (Build robot for gnulib): Fix.
2953
2954 2007-04-12  Simon Josefsson  <simon@josefsson.org>
2955
2956         * modules/sysexits (Depends-on): Add absolute-header.
2957
2958 2007-04-12  Eric Blake  <ebb9@byu.net>
2959
2960         No need to preserve errno on success.
2961         * lib/fflush.c (rpl_fflush): Simplify errno tracking.
2962         Reported by Bruno Haible.
2963
2964 2007-04-12  Simon Josefsson  <simon@josefsson.org>
2965
2966         * MODULES.html.sh (Support for maintaining and releasing
2967         projects): Add autobuild.  Suggested by Eric Blake <ebb9@byu.net>.
2968
2969 2007-04-12  Simon Josefsson  <simon@josefsson.org>
2970
2971         * gnulib-tool (func_modules_add_dummy): Respect --avoid=dummy.
2972
2973 2007-04-12  Simon Josefsson  <simon@josefsson.org>
2974
2975         * modules/autobuild: New module.
2976
2977         * m4/autobuild.m4: New file.
2978
2979 2007-04-11  Bruno Haible  <bruno@clisp.org>
2980
2981         * lib/vasnprintf.c (VASNPRINTF): Implement the %F directive using the
2982         %f directive, if NEED_PRINTF_DIRECTIVE_F is defined.
2983         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_F): New macro.
2984         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_F): New macro.
2985         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
2986         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
2987         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
2988         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
2989         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
2990         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
2991         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Invoke
2992         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
2993         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
2994         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Invoke
2995         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
2996         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
2997         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Invoke
2998         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
2999         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
3000         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Invoke
3001         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
3002         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
3003         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Invoke
3004         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
3005         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
3006         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Invoke
3007         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
3008         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
3009         Reported by Eric Blake.
3010
3011 2007-04-11  Bruno Haible  <bruno@clisp.org>
3012
3013         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Fix test. It always failed.
3014
3015 2007-04-10  Bruno Haible  <bruno@clisp.org>
3016
3017         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Add a test for correct result
3018         for NaN and Infinity. Needed on FreeBSD 6.1.
3019         * tests/test-vasnprintf-posix.c (test_function): Undo last change
3020         regarding results for "%010a" of Infinity and NaN.
3021         * tests/test-vasprintf-posix.c (test_function): Likewise.
3022         * tests/test-snprintf-posix.h (test_function): Likewise.
3023         * tests/test-sprintf-posix.h (test_function): Likewise.
3024         * tests/test-fprintf-posix.h (test_function): Likewise.
3025         * tests/test-printf-posix.h (test_function): Likewise.
3026         * tests/test-fprintf-posix.out: Likewise.
3027
3028 2007-04-10  Bruno Haible  <bruno@clisp.org>
3029
3030         * modules/locale-tests: New file.
3031         * tests/test-locale.c: New file.
3032
3033         * modules/locale: New file.
3034         * lib/locale_.h: New file.
3035         * m4/locale_h.m4: New file.
3036
3037 2007-04-10  Paul Eggert  <eggert@cs.ucla.edu>
3038             Bruno Haible  <bruno@clisp.org>
3039
3040         * m4/signbit.m4 (gl_SIGNBIT): When the sign bit position could not
3041         be determined, test for availability of the copysignf, copysign,
3042         copysignl functions.
3043         * lib/signbitf.c (gl_signbitf): Use copysignf if available in libc.
3044         * lib/signbitd.c (gl_signbitd): Use copysign if available in libc.
3045         * lib/signbitl.c (gl_signbitl): Use copysignl if available in libc.
3046
3047 2007-04-09  Eric Blake  <ebb9@byu.net>
3048
3049         * lib/stdio_.h [REPLACE_FFLUSH]: Declare rpl_fflush.
3050         * modules/stdio (Makefile.am): Support fflush.
3051         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Likewise.
3052         * modules/fflush: New file.
3053         * lib/fflush.c: Likewise.
3054         * m4/fflush.m4: Likewise.
3055         * modules/fflush-tests: New test.
3056         * tests/test-fflush.c: Likewise.
3057         * MODULES.html.sh (Input/output <stdio.h>): Document new module.
3058
3059 2007-04-06  Bruno Haible  <bruno@clisp.org>
3060
3061         * lib/vasnprintf.c: Include <math.h>. Don't include float+.h.
3062         (VASNPRINTF): Use signbit for faster determination whether to print a
3063         minus sign.
3064         * modules/vasnprintf (Files): Remove lib/float+.h.
3065         * modules/fprintf-posix (Depends-on): Add signbit.
3066         * modules/snprintf-posix (Depends-on): Likewise.
3067         * modules/sprintf-posix (Depends-on): Likewise.
3068         * modules/vasnprintf-posix (Depends-on): Likewise.
3069         * modules/vasprintf-posix (Depends-on): Likewise.
3070         * modules/vfprintf-posix (Depends-on): Likewise.
3071         * modules/vsnprintf-posix (Depends-on): Likewise.
3072         * modules/vsprintf-posix (Depends-on): Likewise.
3073
3074 2007-04-06  Bruno Haible  <bruno@clisp.org>
3075
3076         * tests/test-frexp.c (main): Test also the sign bit of zero results.
3077         * tests/test-frexpl.c (main): Likewise.
3078         * tests/test-ldexpl.c (main): Likewise.
3079         * modules/frexp-tests (Depends-on): Add signbit.
3080         * modules/frexpl-tests (Depdends-on): Likewise.
3081         * modules/ldexpl-tests (Depdends-on): Likewise.
3082
3083 2007-04-06  Bruno Haible  <bruno@clisp.org>
3084
3085         * modules/signbit-tests: New file.
3086         * tests/test-signbit.c: New file.
3087
3088         * modules/signbit: New file.
3089         * lib/signbitf.c: New file.
3090         * lib/signbitd.c: New file.
3091         * lib/signbitl.c: New file.
3092         * m4/signbit.m4: New file.
3093         * lib/math_.h (gl_signbitf, gl_signbitd, gl_signbitl): New declarations.
3094         (signbit): New macro.
3095         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_SIGNBIT and
3096         REPLACE_SIGNBIT.
3097         * modules/math (Makefile.am) Substibute also GNULIB_SIGNBIT and
3098         REPLACE_FREXPL into math.h.
3099
3100 2007-04-06  Bruno Haible  <bruno@clisp.org>
3101
3102         * modules/isnanf-nolibm-tests: New file.
3103         * tests/test-isnanf.c: New file.
3104
3105         * modules/isnanf-nolibm: New file.
3106         * lib/isnanf.h: New file.
3107         * lib/isnanf.c: New file.
3108         * lib/isnan.c: Consider the USE_FLOAT macro.
3109         * m4/isnanf.m4: New file.
3110
3111 2007-04-06  Bruno Haible  <bruno@clisp.org>
3112
3113         * modules/gettext-h (configure.ac): AC_SUBST LIBINTL and LTLIBINTL.
3114         (Link): New section.
3115
3116         * modules/canonicalize-lgpl-tests (Makefile.am): Undo last change.
3117
3118 2007-04-06  Bruno Haible  <bruno@clisp.org>
3119
3120         Assume the 'long double' type.
3121         * m4/longdouble.m4: Remove file.
3122         * config/srclist.txt: Don't mention longdouble.m4.
3123         * lib/allocsa.h: Assume HAVE_LONG_DOUBLE to be true.
3124         * lib/float+.h: Likewise.
3125         * lib/frexp.c: Likewise.
3126         * lib/printf-args.h: Likewise.
3127         * lib/printf-args.c: Likewise.
3128         * lib/printf-frexp.c: Likewise.
3129         * lib/printf-parse.c: Likewise.
3130         * lib/vasnprintf.c: Likewise.
3131         * m4/allocsa.m4: Remove gt_TYPE_LONGDOUBLE invocation.
3132         * m4/intl.m4: Likewise.
3133         * m4/isnanl.m4: Likewise.
3134         * m4/printf.m4: Likewise.
3135         * m4/printf-frexpl.m4: Likewise.
3136         * m4/vasnprintf.m4: Likewise.
3137         * modules/allocsa (Files): Remove m4/longdouble.m4.
3138         * modules/gettext (Files): Likewise.
3139         * modules/relocatable-prog-wrapper (Files): Likewise.
3140         * modules/vasnprintf (Files): Likewise.
3141         * modules/isnanl (Files): Likewise.
3142         (Include): Simplify.
3143         * modules/isnanl-nolibm (Files): Remove m4/longdouble.m4.
3144         (Include): Simplify.
3145         * modules/printf-frexpl (Files): Remove m4/longdouble.m4.
3146         (Include): Simplify.
3147         * modules/snprintf-posix-tests (Files): Remove m4/longdouble.m4.
3148         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
3149         * modules/sprintf-posix-tests (Files): Remove m4/longdouble.m4.
3150         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
3151         * modules/vasnprintf-posix-tests (Files): Remove m4/longdouble.m4.
3152         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
3153         * modules/vasprintf-posix-tests (Files): Remove m4/longdouble.m4.
3154         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
3155         * modules/vsnprintf-posix-tests (Files): Remove m4/longdouble.m4.
3156         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
3157         * modules/vsprintf-posix-tests (Files): Remove m4/longdouble.m4.
3158         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
3159         * tests/test-isnanl-nolibm.c: Assume HAVE_LONG_DOUBLE to be true.
3160         * tests/test-isnanl.c: Likewise.
3161         * tests/test-snprintf-posix.h: Likewise.
3162         * tests/test-sprintf-posix.h: Likewise.
3163         * tests/test-vasnprintf-posix.c: Likewise.
3164         * tests/test-vasnprintf-posix2.c: Likewise.
3165         * tests/test-vasprintf-posix.c: Likewise.
3166
3167 2007-04-06  Bruno Haible  <bruno@clisp.org>
3168
3169         Fix problem with Compaq (ex-DEC) Desktop C compiler on Tru64.
3170         * lib/math_.h [__DECC]: Include the overridden include file through
3171         #include_next, outside the double-inclusion guard.
3172         * lib/stdio_.h [__DECC]: Likewise.
3173         * lib/stdlib_.h [__DECC]: Likewise.
3174         * lib/string_.h [__DECC]: Likewise.
3175         * lib/time_.h [__DECC]: Likewise.
3176         * lib/wchar_.h [__DECC]: Likewise.
3177         * lib/wctype_.h [__DECC]: Likewise.
3178         * lib/inttypes_.h [__DECC]: Likewise.
3179         Reported by Albert Chin <china@thewrittenword.com> in
3180         <http://lists.gnu.org/archive/html/bug-gnulib/2007-04/msg00088.html>.
3181
3182 2007-04-04  Eric Blake  <ebb9@byu.net>
3183
3184         * m4/stdint.m4 (gl_STDINT_H): Detect WINT_MAX bug in cygwin
3185         1.5.x.
3186
3187 2007-04-04  Bruno Haible  <bruno@clisp.org>
3188
3189         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Add a test for correct
3190         rounding. Don't assume that FreeBSD 6 and NetBSD 4 pass this test.
3191
3192 2007-04-04  Bruno Haible  <bruno@clisp.org>
3193
3194         * tests/test-vasnprintf-posix.c (test_function): Allow two possible
3195         results for "%010a" of Infinity and NaN.
3196         * tests/test-vasprintf-posix.c (test_function): Likewise.
3197         * tests/test-snprintf-posix.h (test_function): Likewise.
3198         * tests/test-sprintf-posix.h (test_function): Likewise.
3199         * tests/test-fprintf-posix.h (test_function): Remove these tests.
3200         * tests/test-printf-posix.h (test_function): Likewise.
3201         * tests/test-fprintf-posix.out: Update.
3202         Needed for FreeBSD 6.1.
3203
3204 2007-04-04  Bruno Haible  <bruno@clisp.org>
3205
3206         * DEPENDENCIES: Remove mentions of tar and gzip, since they are not
3207         directly used by the gnulib modules nor by gnulib-tool.
3208
3209 2007-04-04  Paul Eggert  <eggert@cs.ucla.edu>
3210
3211         * DEPENDENCIES: Give overall description of version dependency
3212         desirability.  Use more-typical names for apps.
3213         Add shell, coreutils, diffutils, grep, tar, gzip.
3214
3215 2007-04-04  Simon Josefsson  <simon@josefsson.org>
3216
3217         * MODULES.html.sh: Rename crypto modules.  Remove iconvme.
3218
3219 2007-04-04  Karl Berry  <karl@gnu.org>
3220
3221         * MODULES.html.sh (func_module): missing '.
3222
3223 2007-04-03  Bruno Haible  <bruno@clisp.org>
3224
3225         * modules/argmatch-tests (Makefile.am): New variable
3226         test_argmatch_LDADD.
3227         * modules/argp-tests (Makefile.am): New variable test_argp_LDADD.
3228         * modules/array-list-tests (Makefile.am): New variable
3229         test_array_list_LDADD.
3230         * modules/array-oset-tests (Makefile.am): New variable
3231         test_array_oset_LDADD.
3232         * modules/avltree-list-tests (Makefile.am): New variable
3233         test_avltree_list_LDADD.
3234         * modules/avltree-oset-tests (Makefile.am): New variable
3235         test_avltree_oset_LDADD.
3236         * modules/avltreehash-list-tests (Makefile.am): New variable
3237         test_avltreehash_list_LDADD.
3238         * modules/canonicalize-lgpl-tests (Makefile.am): New variable
3239         test_canonicalize_lgpl_LDADD.
3240         * modules/carray-list-tests (Makefile.am): New variable
3241         test_carray_list_LDADD.
3242         * modules/dirname-tests (Makefile.am): New variable
3243         test_dirname_LDADD.
3244         * modules/linked-list-tests (Makefile.am): New variable
3245         test_linked_list_LDADD.
3246         * modules/linkedhash-list-tests (Makefile.am): New variable
3247         test_linkedhash_list_LDADD.
3248         * modules/rbtree-list-tests (Makefile.am): New variable
3249         test_rbtree_list_LDADD.
3250         * modules/rbtree-oset-tests (Makefile.am): New variable
3251         test_rbtree_oset_LDADD.
3252         * modules/rbtreehash-list-tests (Makefile.am): New variable
3253         test_rbtreehash_list_LDADD.
3254         * modules/xvasprintf-tests (Makefile.am): New variable
3255         test_xvasprintf_LDADD.
3256         Reported by Eric Blake.
3257
3258 2007-04-03  Eric Blake  <ebb9@byu.net>
3259
3260         * DEPENDENCIES: Weaken m4 requirements.
3261
3262 2007-04-03  Bruno Haible  <bruno@clisp.org>
3263
3264         * modules/frexp-tests (configure.ac): Remove AC_SUBST.
3265         * modules/isnanl-tests (configure.ac): Likewise.
3266
3267 2007-04-03  Ben Pfaff  <blp@gnu.org>
3268
3269         * modules/iconv_open: Add $(srcdir)/ to source directory
3270         references in Makefile fragments that call gperf, to fix VPATH
3271         builds.
3272
3273 2007-04-03  Bruno Haible  <bruno@clisp.org>
3274
3275         * modules/ldexpl (Depends-on): Add isnanl, remove isnanl-nolibm.
3276         * lib/ldexpl.c: Undo last change.
3277
3278 2007-04-03  Bruno Haible  <bruno@clisp.org>
3279
3280         * modules/printf-frexpl (Depends-on): Undo last change.
3281         (Files): Add m4/ldexpl.m4.
3282
3283 2007-04-03  Bruno Haible  <bruno@clisp.org>
3284
3285         * m4/isnanl.m4 (gl_FUNC_ISNANL): Substitute ISNANL_LIBM.
3286         * modules/isnanl (Link): New section.
3287
3288         * m4/frexp.m4 (gl_FUNC_FREXP): Substitute FREXP_LIBM.
3289         * modules/frexp (Link): New section.
3290
3291         * m4/frexpl.m4 (gl_FUNC_FREXPL): Substitute FREXPL_LIBM.
3292         * modules/frexpl (Link): New section.
3293
3294         * m4/ldexpl.m4 (gl_FUNC_LDEXPL): Substitute LDEXPL_LIBM.
3295         * modules/ldexpl (Link): New section.
3296
3297 2007-04-03  Bruno Haible  <bruno@clisp.org>
3298
3299         * modules/TEMPLATE-EXTENDED: New file.
3300         * gnulib-tool (func_all_modules, func_verify_module): Exclude it.
3301
3302 2007-04-03  Bruno Haible  <bruno@clisp.org>
3303
3304         * DEPENDENCIES: New file.
3305         Suggested by Simon Josefsson.
3306
3307 2007-04-03  Bruno Haible  <bruno@clisp.org>
3308
3309         * doc/gnulib.texi: Escape @.
3310
3311 2007-04-03  James Youngman  <jay@gnu.org>
3312         and Paul Eggert  <eggert@cs.ucla.edu>
3313
3314         * lib/stat-time.h (get_stat_birthtime): Check for zero-valued
3315         birthtime on all systems that have birthtime, not just those which
3316         use st_birthtimensec rather than st_birthtim.  Putting zero in
3317         st_birthtim.tv_sec is how (for example) FreeBSD/x86 6.1 indicates
3318         that the birth time is not available for files on an NFS mount.
3319
3320 2007-04-03  Simon Josefsson  <simon@josefsson.org>
3321
3322         * modules/memxor: Move back from crypto/, suggested by Bruno.
3323         * modules/crypto/hmac-sha1: Fix memxor dependency.
3324
3325         * modules/crypto/gc: Moved from ../.
3326
3327 2007-04-02  Eric Blake  <ebb9@byu.net>
3328
3329         * lib/ldexpl.c (includes): Avoid libm.
3330
3331         * modules/printf-frexpl (Depends-on): Depend on ldexpl.
3332
3333 2007-04-02  Bruno Haible  <bruno@clisp.org>
3334
3335         * lib/sysexit_.h (EX_OK): Disable the EX_OK definition from <unistd.h>
3336         on IRIX.
3337
3338 2007-04-02  Bruno Haible  <bruno@clisp.org>
3339
3340         * m4/intdiv0.m4 (gt_INTDIV0): Avoid performing the test for real on
3341         x86 or x86_64 platforms running MacOS X.
3342         Reported by Ryan Schmidt <@ryandesign.com>.
3343
3344 2007-04-02  Bruno Haible  <bruno@clisp.org>
3345
3346         * m4/intdiv0.m4 (gt_INTDIV0): When cross-compiling, treat x86_64 like
3347         i386.
3348
3349 2007-04-01  Simon Josefsson  <simon@josefsson.org>
3350
3351         * modules/crypto/arcfour: Moved from ../.
3352         * modules/crypto/arcfour-tests: Moved from ../.
3353         * modules/crypto/arctwo: Moved from ../.
3354         * modules/crypto/arctwo-tests: Moved from ../.
3355         * modules/crypto/des: Moved from ../.
3356         * modules/crypto/des-tests: Moved from ../.
3357         * modules/crypto/gc-arcfour: Moved from ../.
3358         * modules/crypto/gc-arcfour-tests: Moved from ../.
3359         * modules/crypto/gc-arctwo: Moved from ../.
3360         * modules/crypto/gc-arctwo-tests: Moved from ../.
3361         * modules/crypto/gc-des: Moved from ../.
3362         * modules/crypto/gc-des-tests: Moved from ../.
3363         * modules/crypto/gc-hmac-md5: Moved from ../.
3364         * modules/crypto/gc-hmac-md5-tests: Moved from ../.
3365         * modules/crypto/gc-hmac-sha1: Moved from ../.
3366         * modules/crypto/gc-hmac-sha1-tests: Moved from ../.
3367         * modules/crypto/gc-md2: Moved from ../.
3368         * modules/crypto/gc-md2-tests: Moved from ../.
3369         * modules/crypto/gc-md4: Moved from ../.
3370         * modules/crypto/gc-md4-tests: Moved from ../.
3371         * modules/crypto/gc-md5: Moved from ../.
3372         * modules/crypto/gc-md5-tests: Moved from ../.
3373         * modules/crypto/gc-pbkdf2-sha1: Moved from ../.
3374         * modules/crypto/gc-pbkdf2-sha1-tests: Moved from ../.
3375         * modules/crypto/gc-random: Moved from ../.
3376         * modules/crypto/gc-rijndael: Moved from ../.
3377         * modules/crypto/gc-rijndael-tests: Moved from ../.
3378         * modules/crypto/gc-sha1: Moved from ../.
3379         * modules/crypto/gc-sha1-tests: Moved from ../.
3380         * modules/crypto/gc-tests: Moved from ../.
3381         * modules/crypto/hmac-md5: Moved from ../.
3382         * modules/crypto/hmac-md5-tests: Moved from ../.
3383         * modules/crypto/hmac-sha1: Moved from ../.
3384         * modules/crypto/hmac-sha1-tests: Moved from ../.
3385         * modules/crypto/md2: Moved from ../.
3386         * modules/crypto/md2-tests: Moved from ../.
3387         * modules/crypto/md4: Moved from ../.
3388         * modules/crypto/md4-tests: Moved from ../.
3389         * modules/crypto/md5: Moved from ../.
3390         * modules/crypto/md5-tests: Moved from ../.
3391         * modules/crypto/memxor: Moved from ../.
3392         * modules/crypto/rijndael: Moved from ../.
3393         * modules/crypto/rijndael-tests: Moved from ../.
3394         * modules/crypto/sha1: Moved from ../.
3395
3396 2007-03-30  James Youngman  <jay@gnu.org>
3397
3398         * tests/test-stat-time.c (prepare_test): use chmod() rather than
3399         rename() to change the ctime of a file (because ctime is unaffected
3400         by rename on jfs2 on AIX 5.1).
3401         (main): Start by doing cleanup, in case a previous run failed leaving
3402         test files behind.
3403
3404 2007-03-31  Bruno Haible  <bruno@clisp.org>
3405
3406         Support old proprietary implementations of iconv.
3407         * modules/iconv_open: New file.
3408         * lib/iconv_.h: New file.
3409         * m4/iconv_h.m4: New file.
3410         * lib/iconv_open.c: New file.
3411         * lib/iconv_open-aix.gperf: New file.
3412         * lib/iconv_open-hpux.gperf: New file.
3413         * lib/iconv_open-irix.gperf: New file.
3414         * lib/iconv_open-osf.gperf: New file.
3415         * m4/iconv_open.m4: New file.
3416         * modules/linebreak (Depends-on): Add iconv_open.
3417         * modules/striconv (Depends-on): Likewise.
3418         * modules/striconveh (Depends-on): Likewise.
3419         * modules/unicodeio (Depends-on): Likewise.
3420         * lib/striconveh.h (mem_cd_iconveh, str_cd_iconveh): Allow cd to be
3421         (iconv_t)(-1).
3422         * lib/striconveh.c (mem_cd_iconveh_internal): Use an indirect
3423         conversion if cd is (iconv_t)(-1).
3424         (mem_iconveh, str_iconveh): Don't fail just because a direct conversion
3425         is not possible.
3426
3427 2007-03-31  Bruno Haible  <bruno@clisp.org>
3428
3429         * tests/test-striconveha.c (main): Don't expect "autodetect_jp" to
3430         work on Solaris either. Protect also second use of "autodetect_jp".
3431
3432 2007-03-31  Bruno Haible  <bruno@clisp.org>
3433
3434         * m4/frexpl.m4 (gl_FUNC_FREXPL): Set HAVE_DECL_FREXPL to 0 when
3435         the function is not present.
3436
3437 2007-03-31  Bruno Haible  <bruno@clisp.org>
3438
3439         * m4/ldexpl.m4 (gl_FUNC_LDEXPL): Set HAVE_DECL_LDEXPL to 0 when
3440         the function is not present.
3441
3442 2007-03-31  Bruno Haible  <bruno@clisp.org>
3443
3444         * m4/iconv.m4 (AM_ICONV_LINK): Fix 2007-03-29 patch. Test also against
3445         a bug in HP-UX iconv_open().
3446
3447 2007-03-31  Bruno Haible  <bruno@clisp.org>
3448
3449         * MODULES.html.sh (func_module): Don't show gnulib-common.m4.
3450         (Mathematics <math.h>): New section, add fpieee.
3451         (Input/output <stdio.h>): Add fseterr.
3452         (Mathematics <math.h>): New section, add printf-frexp.
3453         (Container data structures): Add sublist.
3454         (Core language properties): Add fpucw, inline.
3455         (Functions for greatest-width integer types <inttypes.h>): Add
3456         imaxabs, imaxdiv, inttypes.
3457         (Mathematics <math.h>): Add frexp, frexpl, isnan-nolibm, isnanl,
3458         isnanl-nolibm, ldexp.
3459         (Mathematics <math.h>): New section, add printf-frexpl.
3460         (Support for systems lacking POSIX:2001): Add fprintf-posix,
3461         printf-posix, snprintf-posix, sprintf-posix, string, search, socklen,
3462         sys_select, sys_socket, vasnprintf-posix, vasprintf-posix,
3463         vfprintf-posix, vprintf-posix, vsnprintf-posix, vsprintf-posix.
3464         (Unicode string functions): Add unistr/u*-mbtoucr.
3465         (Java): Add javacomp-script, javaexec-script.
3466         (C#): Add csharpcomp-script, csharpexec-script.
3467         (Support for building libraries and executables): Add havelib,
3468         relocatable-*.
3469         (Support for maintaining and releasing projects): Renamed from
3470         'Support for maintaining and release projects'. Add announce-gen.
3471
3472 2007-03-31  Bruno Haible  <bruno@clisp.org>
3473
3474         * README: Talk primarily about git.
3475         (git and CVS): Renamed from CVS.
3476         * doc/gnulib.texi (Introduction, Build robot for gnulib): Mention that
3477         gnulib is available through git.
3478         * doc/gnulib-tool.texi (CVS Issues): Mention git and svn as well.
3479
3480 2007-03-30  Bruno Haible  <bruno@clisp.org>
3481
3482         * lib/alloca_.h: Change prefix of double-inclusion guard macro to _GL_.
3483         * lib/poll_.h: Likewise.
3484         * lib/stat_.h: Likewise.
3485         * lib/sys_time_.h: Likewise.
3486         * lib/sysexit_.h: Likewise.
3487         * lib/glob_.h: Prefix double-inclusion guard macro with _GL_.
3488         * lib/stdbool_.h: Likewise.
3489         * lib/byteswap_.h: Add double-inclusion guard.
3490
3491 2007-03-30  Sergey Poznyakoff  <gray@mirddin.farlep.net>
3492
3493         * lib/sysexit_.h: Prefix double-inclusion guard macro with _GNULIB.
3494
3495 2007-03-30  Karl Berry  <karl@gnu.org>
3496
3497         * config/srclist-update: double space after USA in the license
3498         substitution, since that's how it's usually (?) written.
3499
3500 2007-03-30  Paul Eggert  <eggert@cs.ucla.edu>
3501
3502         * lib/write-any-file.c (can_write_any_file): Fix else-else bug
3503         reported by Bruno Haible.
3504
3505 2007-03-29  Bruno Haible  <bruno@clisp.org>
3506
3507         * m4/iconv.m4 (AM_ICONV_LINK): Require AC_CANONICAL_HOST. Test against
3508         a bug in AIX iconv().
3509
3510 2007-03-29  Bruno Haible  <bruno@clisp.org>
3511
3512         * modules/ldexpl-tests: New file.
3513         * tests/test-ldexpl.c: New file.
3514
3515 2007-03-29  Bruno Haible  <bruno@clisp.org>
3516
3517         * lib/ldexpl.c: Include fpucw.h.
3518         (ldexpl): Use BEGIN/END_LONG_DOUBLE_ROUNDING. Skip the last unneeded
3519         multiplication.
3520         * modules/ldexpl (Depends-on): Add fpucw.
3521
3522 2007-03-29  Bruno Haible  <bruno@clisp.org>
3523
3524         * modules/ldexpl: New file.
3525         * m4/ldexpl.m4: New file.
3526         * lib/math_.h (ldexpl): Define to a replacement if REPLACE_LDEXPL is
3527         set.
3528         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize also GNULIB_LDEXPL,
3529         REPLACE_LDEXPL.
3530         * modules/math (Makefile.am): Substitute also GNULIB_LDEXPL,
3531         REPLACE_LDEXPL.
3532         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Invoke
3533         gl_FUNC_LDEXPL_WORKS.
3534         * m4/mathl.m4 (gl_FUNC_LONG_DOUBLE_MATH): Remove test for ldexpl.
3535         * modules/mathl (Files): Remove lib/ldexpl.c.
3536         (Depends-on): Add ldexpl.
3537
3538 2007-03-29  Bruno Haible  <bruno@clisp.org>
3539
3540         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Declare frexpl.
3541
3542 2007-03-29  Bruno Haible  <bruno@clisp.org>
3543
3544         * tests/test-striconveh.c (main): Don't assume that a direct conversion
3545         between ISO-8859-1 and ISO-8859-2 is possible. Needed for OSF/1, IRIX
3546         and possibly also HP-UX.
3547         * tests/test-striconveha.c (main): Don't expect "autodetect_jp" to
3548         work on AIX, IRIX, HP-UX, OSF/1.
3549         * tests/uniconv/test-u16-conv-from-enc.c (main): Likewise.
3550         * tests/uniconv/test-u16-strconv-from-enc.c (main): Likewise.
3551         * tests/uniconv/test-u32-conv-from-enc.c (main): Likewise.
3552         * tests/uniconv/test-u32-strconv-from-enc.c (main): Likewise.
3553         * tests/uniconv/test-u8-conv-from-enc.c (main): Likewise.
3554         * tests/uniconv/test-u8-strconv-from-enc.c (main): Likewise.
3555
3556 2007-03-29  Bruno Haible  <bruno@clisp.org>
3557
3558         * tests/test-stat-time.c: Include <fcntl.h>, not <sys/fcntl.h>.
3559
3560 2007-03-29  Paul Eggert  <eggert@cs.ucla.edu>
3561
3562         * lib/acl-internal.h (acl_get_fd, acl_set_fd): undef before defining,
3563         to work around a problem on OSF/1 5.1 reported by Bruno Haible.
3564
3565 2007-03-29  Eric Blake  <ebb9@byu.net>
3566
3567         * lib/acl-internal.h: Remove redundant include.
3568         (ACL_NOT_WELL_SUPPORTED): Also filter on EBUSY, returned by
3569         Cygwin when a file is locked.
3570
3571 2007-03-29  Bruno Haible  <bruno@clisp.org>
3572
3573         * lib/vasprintf.c [IN_LIBASPRINTF]: Include different specification
3574         file.
3575         * lib/asprintf.c [IN_LIBASPRINTF]: Likewise.
3576
3577 2007-03-29  Paul Eggert  <eggert@cs.ucla.edu>
3578
3579         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Don't bother to
3580         try to remove a parent directory if the child couldn't be removed
3581         (except for the first rmdir, which could fail because the child
3582         doesn't exist).  Problem reported by Jeff Blaine in
3583         <http://lists.gnu.org/archive/html/bug-tar/2007-03/msg00014.html>.
3584
3585 2007-03-28  Bruno Haible  <bruno@clisp.org>
3586
3587         * lib/striconveh.c (utf8conv_carefully): New function.
3588         (mem_cd_iconveh_internal): Invoke it.
3589
3590 2007-03-28  Bruno Haible  <bruno@clisp.org>
3591
3592         * lib/striconveh.c (mem_cd_iconveh_internal): Use u8_mbtoucr instead
3593         of u8_mbtouc in order to distinguish invalid and incomplete UTF-8
3594         input.
3595         * modules/striconveh (Depends-on): Add unistr/u8-mbtoucr. Replace
3596         utf8-ucs4 with unistr/u8-mbtouc. Replace ucs4-utf8 with
3597         unistr/u8-uctomb.
3598
3599 2007-03-28  Bruno Haible  <bruno@clisp.org>
3600
3601         * modules/unistr/u8-mbtoucr: New file.
3602         * lib/unistr/u8-mbtoucr.c: New file.
3603         * modules/unistr/u16-mbtoucr: New file.
3604         * lib/unistr/u16-mbtoucr.c: New file.
3605         * modules/unistr/u16-mbtoucr: New file.
3606         * lib/unistr/u16-mbtoucr.c: New file.
3607         * lib/unistr.h (u8_mbtoucr, u16_mbtoucr, u32_mbtoucr): New declarations.
3608
3609 2007-03-27  Simon Josefsson  <simon@josefsson.org>
3610             Bruno Haible  <bruno@clisp.org>
3611
3612         * m4/vasprintf.m4: Convert AC_SUBST into shell variable for
3613         REPLACE_VASPRINTF.  Set HAVE_VASPRINTF.  Add
3614         AC_REQUIRE([gl_STDIO_H_DEFAULTS]).
3615
3616         * m4/stdio_h.m4: Add stubs for vasprintf too.
3617
3618         * modules/stdio: Support vasprintf in sed command.
3619
3620         * modules/vasprintf: Depend on stdio for prototypes.  Remove
3621         vasprintf.h.  Add stdio module indicator.
3622
3623         * lib/stdio_.h: Declare asprintf and vasprintf, based on
3624         vasprintf.h.
3625
3626         * lib/vasprintf.h: File removed.
3627
3628         * lib/asprintf.c: Use stdio.h instead of vasprintf.h.
3629         * lib/vasprintf.c: Ditto.
3630         * lib/xvasprintf.c: Ditto.
3631         * tests/test-vasprintf-posix.c: Ditto.
3632         * tests/test-vasprintf.c: Ditto.
3633
3634 2007-03-27  Bruno Haible  <bruno@clisp.org>
3635
3636         Make vasnprintf multithread-safe.
3637         * lib/vasnprintf.c (decimal_point_char): New function.
3638         (VASNPRINTF): Use it.
3639         Suggested by Simon Josefsson.
3640
3641 2007-03-27  Eric Blake  <ebb9@byu.net>
3642
3643         Support sub-second birthtime on cygwin.
3644         * m4/stat-time.m4 (gl_STAT_BIRTHTIME): Also check for st_birthtim.
3645         * lib/stat-time.h (STAT_TIMESPEC): Adjust comments.
3646         (get_stat_birthtime): Also work with st_birthtim.
3647
3648 2007-03-27  Paul Eggert  <eggert@cs.ucla.edu>
3649
3650         * lib/stat-time.h (USE_BIRTHTIME): Remove.
3651         (get_stat_atime_ns, get_stat_ctime_ns, get_stat_mtime_ns):
3652         (get_stat_birthtime_ns): Do not try to use "spare" fields.
3653         (get_stat_birthtime_ns): Simplify compile-time tests.
3654         (get_stat_birthtime): Change the API to look like
3655         get_stat_mtime etc., except return a negative tv_nsec on error.
3656         * m4/stat-time.m4 (gl_STAT_TIME, gl_STAT_BIRTHTIME):
3657         Don't check for "spare" fields.
3658         (gl_STAT_BIRTHTIME): Don't check for struct stat.st_birthtimespec.tv_sec
3659         or for struct stat.st_birthtime, as these tests aren't used.
3660         * tests/test-stat-time.c (test_birthtime): Adjust to new API.
3661
3662 2007-03-27  Bruno Haible  <bruno@clisp.org>
3663
3664         * lib/stat-time.h: Include <sys/stat.h>.
3665
3666 2007-03-27  James Youngman  <jay@gnu.org>
3667
3668         * lib/stat-time.h (get_stat_birthtime): New function for
3669           retrieving st_birthtime as provided by UFS2 (hence *BSD).
3670         * m4/stat-time.m4 (gl_STAT_BIRTHTIME): Probe for st_birthtime
3671           and its variants.
3672         * modules/stat-time (configure.ac): call gl_STAT_BIRTHTIME.
3673         * modules/stat-time-test: New file.
3674         * tests/test-stat-time.c: New test, devised by Bruno Haible.
3675
3676 2007-03-26  Bruno Haible  <bruno@clisp.org>
3677
3678         Better support of signalling NaNs.
3679         * lib/atanl.c: Include isnanl.h.
3680         (atanl): Perform test for NaN at the beginning of the function and
3681         through a call to isnanl.
3682         * lib/cosl.c: Include isnanl.h.
3683         (cosl): Perform test for NaN at the beginning of the function and
3684         through a call to isnanl.
3685         * lib/ldexpl.c: Include isnanl.h.
3686         (ldexpl): Perform test for NaN through a call to isnanl.
3687         * lib/logl.c: Include isnanl.h.
3688         (logl): Perform test for NaN at the beginning of the function and
3689         through a call to isnanl.
3690         * lib/sinl.c: Include isnanl.h.
3691         (sinl): Perform test for NaN at the beginning of the function and
3692         through a call to isnanl.
3693         * lib/sqrtl.c: Include isnanl.h.
3694         (sqrtl): Perform test for NaN at the beginning of the function and
3695         through a call to isnanl.
3696         * lib/tanl.c: Include isnanl.h.
3697         (tanl): Perform test for NaN at the beginning of the function and
3698         through a call to isnanl.
3699         * lib/trigl.c (ieee754_rem_pio2l): Remove test for NaN.
3700         * modules/mathl (Depends-on): Add isnanl.
3701
3702 2007-03-26  Eric Blake  <ebb9@byu.net>
3703
3704         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_A): Fix
3705         regression in logic sense of previous patch.
3706
3707 2007-03-26  Bruno Haible  <bruno@clisp.org>
3708
3709         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_A): Don't use
3710         unportable shell command "if ! ...".
3711         Reported by Ralf Wildenhues.
3712
3713 2007-03-25  Bruno Haible  <bruno@clisp.org>
3714
3715         * lib/sysexit_,h: If HAVE_SYSEXITS_H is defined, include the original
3716         <sysexits.h> file, and only add EX_CONFIG.
3717         * m4/sysexits.m4 (gl_SYSEXITS): If <sysexits.h> exists, check its
3718         absolute file name and whether it is sufficient. Substitute also
3719         HAVE_SYSEXITS_H and ABSOLUTE_SYSEXITS_H.
3720         * modules/sysexits (Makefile.am): Substitute HAVE_SYSEXITS_H and
3721         ABSOLUTE_SYSEXITS_H into sysexits.h.
3722
3723 2007-03-25  Bruno Haible  <bruno@clisp.org>
3724
3725         * lib/getaddrinfo.c (getaddrinfo): Don't access hints->ai_flags when
3726         hints is NULL.
3727
3728 2007-03-25  Bruno Haible  <bruno@clisp.org>
3729
3730         * lib/uniconv/u8-conv-from-enc.c (u8_conv_from_encoding): Add a cast.
3731         * lib/uniconv/u8-strconv-to-enc.c (u8_strconv_to_encoding): Likewise.
3732
3733 2007-03-25  Bruno Haible  <bruno@clisp.org>
3734
3735         * lib/vasnprintf.c: Include langinfo.h.
3736         (VASNPRINTF): Prefer nl_langinfo over localeconv, since it's more
3737         multithread-safe.
3738         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_A): New macro.
3739         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke it.
3740         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
3741         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
3742         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
3743         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
3744         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
3745         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX: Likewise.
3746         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
3747         Reported by Simon Josefsson.
3748
3749 2007-03-25  Bruno Haible  <bruno@clisp.org>
3750
3751         * lib/printf-parse.c [!IN_LIBINTL]: Include <stdint.h>, for intmax_t.
3752         (PRINTF_PARSE): Make the support for size specifier 'j' unconditional.
3753         * modules/vasnprintf (Depends-on): Add stdint.
3754
3755 2007-03-25  Bruno Haible  <bruno@clisp.org>
3756
3757         * modules/fpieee: New file.
3758         * m4/fpieee.m4: New file.
3759         * modules/isnan-nolibm (Depends-on): Add fpieee.
3760         * modules/isnanl-nolibm (Depends-on): Add fpieee.
3761         * modules/isnanl (Depends-on): Add fpieee.
3762
3763 2007-03-25  Bruno Haible  <bruno@clisp.org>
3764
3765         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Test also finite numbers.
3766
3767 2007-03-25  Bruno Haible  <bruno@clisp.org>
3768
3769         Avoid test failures on IRIX 6.5.
3770         * tests/test-frexpl.c (MIN_NORMAL_EXP): New macro.
3771         (main): Use it.
3772         * tests/test-printf-frexpl.c (MIN_NORMAL_EXP, MIN_SUBNORMAL_EXP): New
3773         macros.
3774         (main): Use them.
3775
3776 2007-03-25  Bruno Haible  <bruno@clisp.org>
3777
3778         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): New macro.
3779         (gl_FUNC_FREXPL): Invoke it. Set REPLACE_FREXPL to 1 if it frexpl
3780         exists but doesn't work.
3781         * lib/math_.h (frexpl): Define as a replacement macro if REPLACE_FREXPL
3782         is set. Don't provide a prototype if REPLACE_FREXPL is not set.
3783         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize REPLACE_FREXPL.
3784         * modules/math (Makefile.am) Substibute also REPLACE_FREXPL into math.h.
3785
3786 2007-03-25  Bruno Haible  <bruno@clisp.org>
3787
3788         * m4/frexp.m4 (gl_FUNC_FREXP_WORKS): Add check whether frexp(inf)
3789         returns inf. Needed on IRIX 6.5.
3790
3791 2007-03-25  Bruno Haible  <bruno@clisp.org>
3792
3793         * tests/test-frexpl.c: Include isnanl-nolibm.h.
3794         (main): Use isnanl instead of x != x idiom.
3795         * modules/frexpl-tests (Depends-on): Add isnanl-nolibm.
3796
3797         * tests/test-frexp.c: Include isnan.h.
3798         (main): Use isnan instead of x != x idiom.
3799         * modules/frexp-tests (Depends-on): Add isnan-nolibm.
3800
3801 2007-03-25  Bruno Haible  <bruno@clisp.org>
3802
3803         * tests/test-frexp.c (NaN): New function/macro.
3804         (main): Use it instead of 0.0 / 0.0.
3805         * tests/test-isnan.c (NaN): New function/macro.
3806         (main): Use it instead of 0.0 / 0.0.
3807         * tests/test-vasnprintf-posix.c (NaN): New function/macro.
3808         (test_function): Use it instead of 0.0 / 0.0.
3809         * tests/test-vasprintf-posix.c (NaN): New function/macro.
3810         (test_function): Use it instead of 0.0 / 0.0.
3811         * tests/test-snprintf-posix.h (NaN): New function/macro.
3812         (test_function): Use it instead of 0.0 / 0.0.
3813         * tests/test-sprintf-posix.h (NaN): New function/macro.
3814         (test_function): Use it instead of 0.0 / 0.0.
3815         * tests/test-fprintf-posix.h (NaN): New function/macro.
3816         (test_function): Use it instead of 0.0 / 0.0.
3817         * tests/test-printf-posix.h (NaN): New function/macro.
3818         (test_function): Use it instead of 0.0 / 0.0.
3819
3820         * lib/isnan.c (FUNC): Work around a DEC C compiler bug.
3821
3822 2007-03-25  Bruno Haible  <bruno@clisp.org>
3823
3824         * lib/glob_.h: Include <sys/stat.h>. Avoids warnings on AIX 5.1.
3825
3826 2007-03-25  Bruno Haible  <bruno@clisp.org>
3827
3828         * lib/regexec.c (merge_state_with_log): Make static.
3829
3830 2007-03-25  Bruno Haible  <bruno@clisp.org>
3831
3832         * lib/trigl.c (kernel_rem_pio2): Make static.
3833
3834 2007-03-25  Bruno Haible  <bruno@clisp.org>
3835
3836         * lib/sincosl.c (sincosl_table): Make static.
3837
3838 2007-03-25  Bruno Haible  <bruno@clisp.org>
3839
3840         * lib/argp.h (__restrict): Define to empty, rather than to 'restrict',
3841         if the compiler does not support C99.
3842
3843 2007-03-25  Bruno Haible  <bruno@clisp.org>
3844
3845         * modules/time (Makefile.am): Ensure all rule action lines start with a
3846         tab.
3847
3848 2007-03-24  Bruno Haible  <bruno@clisp.org>
3849
3850         * modules/tsearch-tests: New file.
3851         * tests/test-tsearch.sh: New file.
3852         * tests/test-tsearch.c: New file, mostly copied from glibc.
3853
3854         * modules/search-tests: New file.
3855         * tests/test-search.c: New file.
3856
3857         * modules/search: New file.
3858         * lib/search_.h: New file, incorporating lib/tsearch.h.
3859         * m4/search_h.m4: New file.
3860         * lib/tsearch.h: Remove file.
3861         * lib/tsearch.c: Include search.h instead of tsearch.h.
3862         * m4/tsearch.m4 (gl_FUNC_TSEARCH): Require gl_SEARCH_H_DEFAULTS. Set
3863         HAVE_TSEARCH.
3864         * modules/tsearch (Files): Remove lib/tsearch.h.
3865         (Depends-on): Add search.
3866         (configure.ac): Invoke gl_SEARCH_MODULE_INDICATOR.
3867         (Include): Change tsearch.h into search.h.
3868
3869 2007-03-24  Bruno Haible  <bruno@clisp.org>
3870
3871         * modules/fpucw: New file.
3872         * lib/fpucw.h: New file.
3873         * lib/frexp.c: Include fpucw.h.
3874         (DECL_ROUNDING, BEGIN_ROUNDING, END_ROUNDING): New macros.
3875         (FUNC): Use them.
3876         * lib/printf-frexp.c: Include fpucw.h.
3877         (DECL_ROUNDING, BEGIN_ROUNDING, END_ROUNDING): New macros.
3878         (FUNC): Use them.
3879         * lib/vasnprintf.c: Include fpucw.h.
3880         (VASNPRINTF): Invoke BEGIN/END_LONG_DOUBLE_ROUNDING around the
3881         'long double' calculations.
3882         * tests/test-frexpl.c: Include fpucw.h.
3883         (main): Invoke BEGIN_LONG_DOUBLE_ROUNDING.
3884         * tests/test-printf-frexpl.c: Include fpucw.h.
3885         (main): Invoke BEGIN_LONG_DOUBLE_ROUNDING.
3886         * modules/frexpl (Depends-on): Add fpucw.
3887         * modules/printf-frexpl (Depends-on): Likewise.
3888         * modules/fprintf-posix (Depends-on): Likewise.
3889         * modules/snprintf-posix (Depends-on): Likewise.
3890         * modules/sprintf-posix (Depends-on): Likewise.
3891         * modules/vasnprintf-posix (Depends-on): Likewise.
3892         * modules/vasprintf-posix (Depends-on): Likewise.
3893         * modules/vfprintf-posix (Depends-on): Likewise.
3894         * modules/vsnprintf-posix (Depends-on): Likewise.
3895         * modules/vsprintf-posix (Depends-on): Likewise.
3896         * modules/frexpl-tests (Depends-on): Likewise.
3897         * modules/printf-frexpl-tests (Depends-on): Likewise.
3898
3899 2007-03-24  Bruno Haible  <bruno@clisp.org>
3900
3901         * lib/float+.h: New file.
3902         * lib/isnan.c: Include float+.h.
3903         (SIZE): New macro.
3904         (FUNC): Compare only SIZE bytes of the value.
3905         * lib/vasnprintf.c: Include float+.h.
3906         (VASNPRINTF): When comparing agains +0.0L or +0.0, compare only
3907         SIZEOF_LDBL or SIZEOF_DBL bytes.
3908         * modules/isnan-nolibm (Files): Add lib/float+.h.
3909         * modules/isnanl-nolibm (Files): Add lib/float+.h.
3910         * modules/isnanl (Files): Add lib/float+.h.
3911         * modules/vasnprintf (Files): Add lib/float+.h.
3912
3913 2007-03-24  Bruno Haible  <bruno@clisp.org>
3914
3915         * lib/vasnprintf.c [!HAVE_LONG_DOUBLE]: Include printf-frexp.h. Don't
3916         include isnanl-nolibm.h.
3917
3918 2007-03-24  Bruno Haible  <bruno@clisp.org>
3919
3920         * tests/test-read-file.c (main): Don't produce spurious output for
3921         expected situations. Make the test fail if it encountered unexpected
3922         results.
3923
3924 2007-03-24  Bruno Haible  <bruno@clisp.org>
3925
3926         * m4/locale-fr.m4 (gt_LOCALE_FR): Remove the special-casing of NetBSD,
3927         since its fr_FR.ISO8859-1 locale wouldn't pass the tests.
3928
3929 2007-03-24  Bruno Haible  <bruno@clisp.org>
3930
3931         * m4/locale-fr.m4 (gt_LOCALE_FR, gt_LOCALE_FR_UTF8): Fix last change.
3932
3933 2007-03-24  Bruno Haible  <bruno@clisp.org>
3934
3935         * modules/unistr/base (Depends-on): Remove utf8-ucs4-unsafe,
3936         utf16-ucs4-unsafe, utf8-ucs4, utf16-ucs4, ucs4-utf8, ucs4-utf16.
3937
3938         * modules/unistr/u8-mbtouc: Add source files from module utf8-ucs4.
3939         * modules/utf8-ucs4: Turn into a symbolic link to module
3940         unistr/u8-mbtouc.
3941
3942         * modules/unistr/u8-mbtouc-unsafe: Add source files from module
3943         utf8-ucs4-unsafe.
3944         * modules/utf8-ucs4-unsafe: Turn into a symbolic link to module
3945         unistr/u8-mbtouc-unsafe.
3946
3947         * modules/unistr/u16-mbtouc: Add source files from module utf16-ucs4.
3948         * modules/utf16-ucs4: Turn into a symbolic link to module
3949         unistr/u16-mbtouc.
3950
3951         * modules/unistr/u16-mbtouc-unsafe: Add source files from module
3952         utf16-ucs4-unsafe.
3953         * modules/utf16-ucs4-unsafe: Turn into a symbolic link to module
3954         unistr/u16-mbtouc-unsafe.
3955
3956         * modules/unistr/u8-uctomb: Add source files from module utf4-utf8.
3957         * modules/ucs4-utf8: Turn into a symbolic link to module
3958         unistr/u8-ubtomb.
3959
3960         * modules/unistr/u16-uctomb: Add source files from module utf4-utf16.
3961         * modules/ucs4-utf16: Turn into a symbolic link to module
3962         unistr/u16-ubtomb.
3963
3964 2007-03-24  Bruno Haible  <bruno@clisp.org>
3965
3966         * lib/unistr/u8-mbtouc-aux.c: Renamed from lib/unistr/utf8-ucs4.c.
3967         Enable the function only if HAVE_INLINE.
3968         * lib/unistr/u8-mbtouc-unsafe-aux.c: Renamed from
3969         lib/unistr/utf8-ucs4-unsafe.c. Enable the function only if HAVE_INLINE.
3970         * lib/unistr/u16-mbtouc-aux.c: Renamed from lib/unistr/utf16-ucs4.c.
3971         Enable the function only if HAVE_INLINE.
3972         * lib/unistr/u16-mbtouc-unsafe-aux.c: Renamed from
3973         lib/unistr/utf16-ucs4-unsafe.c. Enable the function only if HAVE_INLINE.
3974         * lib/unistr/u8-uctomb-aux.c: Renamed from lib/unistr/ucs4-utf8.c.
3975         Enable the function only if HAVE_INLINE.
3976         * lib/unistr/u16-uctomb-aux.c: Renamed from lib/unistr/ucs4-utf16.c.
3977         Enable the function only if HAVE_INLINE.
3978         * modules/utf8-ucs4: Update.
3979         * modules/utf8-ucs4-unsafe: Update.
3980         * modules/utf16-ucs4: Update.
3981         * modules/utf16-ucs4-unsafe: Update.
3982         * modules/ucs4-utf8: Update.
3983         * modules/ucs4-utf16: Update.
3984
3985 2007-03-24  Bruno Haible  <bruno@clisp.org>
3986
3987         * lib/utf8-ucs4.h: Remove file.
3988         * lib/utf8-ucs4-unsafe.h: Remove file.
3989         * lib/utf16-ucs4.h: Remove file.
3990         * lib/utf16-ucs4-unsafe.h: Remove file.
3991         * lib/ucs4-utf8.h: Remove file.
3992         * lib/ucs4-utf16.h: Remove file.
3993         * lib/unistr.h: Include their previous contents.
3994         * m4/utf-ucs4.m4: Remove file.
3995         * m4/ucs4-utf.m4: Remove file.
3996         * modules/utf8-ucs4 (Files): Remove lib/utf8-ucs4.h.
3997         (Depends-on): Add unistr/base.
3998         (configure.ac): Remove gl_UTF_UCS4.
3999         (Makefile.am): Update.
4000         (Include): Change to unistr.h.
4001         * modules/utf8-ucs4-unsafe (Files): Remove lib/utf8-ucs4-unsafe.h.
4002         (Depends-on): Add unistr/base.
4003         (configure.ac): Remove gl_UTF_UCS4.
4004         (Makefile.am): Update.
4005         (Include): Change to unistr.h.
4006         * modules/utf16-ucs4 (Files): Remove lib/utf16-ucs4.h.
4007         (Depends-on): Add unistr/base.
4008         (configure.ac): Remove gl_UTF_UCS4.
4009         (Makefile.am): Update.
4010         (Include): Change to unistr.h.
4011         * modules/utf16-ucs4-unsafe (Files): Remove lib/utf16-ucs4-unsafe.h.
4012         (Depends-on): Add unistr/base.
4013         (configure.ac): Remove gl_UTF_UCS4.
4014         (Makefile.am): Update.
4015         (Include): Change to unistr.h.
4016         * modules/ucs4-utf8 (Files): Remove lib/ucs4-utf8.h.
4017         (Depends-on): Add unistr/base.
4018         (configure.ac): Remove gl_UCS4_UTF.
4019         (Makefile.am): Update.
4020         (Include): Change to unistr.h.
4021         * modules/ucs4-utf16 (Files): Remove lib/ucs4-utf16.h.
4022         (Depends-on): Add unistr/base.
4023         (configure.ac): Remove gl_UCS4_UTF.
4024         (Makefile.am): Update.
4025         (Include): Change to unistr.h.
4026         * lib/unistr/utf8-ucs4.c: Include unistr.h instead of utf8-ucs4.h.
4027         * lib/unistr/utf8-ucs4-unsafe.c: Include unistr.h instead of
4028         utf8-ucs4-unsafe.h.
4029         * lib/unistr/utf16-ucs4.c: Include unistr.h instead of utf16-ucs4.h.
4030         * lib/unistr/utf16-ucs4-unsafe.c: Include unistr.h instead of
4031         utf16-ucs4-unsafe.h.
4032         * lib/unistr/ucs4-utf8.c: Include unistr.h instead of ucs4-utf8.h.
4033         * lib/unistr/ucs4-utf16.c: Include unistr.h instead of ucs4-utf16.h.
4034         * lib/unistr/u8-chr.c: Don't include ucs4-utf8.h.
4035         * lib/unistr/u8-strchr.c: Likewise.
4036         * lib/unistr/u8-strrchr.c: Likewise.
4037         * lib/unistr/u16-chr.c: Don't include ucs4-utf16.h.
4038         * lib/unistr/u16-strchr.c: Likewise.
4039         * lib/unistr/u16-strrchr.c: Likewise.
4040         * lib/striconveh.c: Update.
4041         * lib/linebreak.c: Update.
4042
4043 2007-03-24  Bruno Haible  <bruno@clisp.org>
4044
4045         * lib/argp-help.c (fill_in_uparams, canon_doc_option): Cast the
4046         arguments of isspace, isalpha, isalnum, isdigit to 'unsigned char'.
4047
4048 2007-03-22  Bruno Haible  <bruno@clisp.org>
4049
4050         * lib/strptime.c (__strptime_internal): Use ANSI C syntax.
4051
4052 2007-03-23  Paul Eggert  <eggert@cs.ucla.edu>
4053
4054         * MODULES.html.sh (File system functions): New module write-any-file.
4055         * modules/write-any-file, lib/write-any-file.c, lib/write-any-file.h:
4056         * m4/write-any-file.m4: New files.
4057
4058 2007-03-23  Eric Blake  <ebb9@byu.net>
4059
4060         * gnulib-tool: Rearrange space-tab sequences, since some editors
4061         like to eat them.
4062
4063 2007-03-23  Eric Blake  <ebb9@byu.net>
4064
4065         * lib/version-etc.c (version_etc_va): Update license wording to
4066         be more concise.  Recommended by Richard Stallman.
4067
4068 2007-03-22  Bruno Haible  <bruno@clisp.org>
4069
4070         * lib/poll.c (MSG_PEEK): New fallback definition.
4071
4072 2007-03-22  Bruno Haible  <bruno@clisp.org>
4073
4074         * modules/sys_socket-tests (configure.ac): Check for shutdown function.
4075         * tests/test-sys_socket.c (a): Test only if shutdown() exists.
4076         (main): Update.
4077         Fixes a compilation error on BeOS.
4078
4079 2007-03-22  Bruno Haible  <bruno@clisp.org>
4080
4081         * modules/frexpl-tests: New file.
4082         * tests/test-frexpl.c: New file.
4083
4084         * modules/frexpl: New file.
4085         * m4/frexpl.m4: New file.
4086         * modules/math (Makefile.am): Also substitute GNULIB_FREXPL into math.h.
4087         * lib/math_.h (frexpl): Test GNULIB_FREXPL instead of GNULIB_MATHL.
4088         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_FREXPL.
4089         * modules/mathl (Files): Remove lib/frexpl.c, lib/frexp.c.
4090         (Depends-on): Add frexpl. Remove isnanl-nolibm.
4091         * m4/mathl.m4 (gl_FUNC_LONG_DOUBLE_MATH): Don't test for frexpl.
4092
4093 2007-03-22  Bruno Haible  <bruno@clisp.org>
4094
4095         * lib/frexpl.c: Share code with lib/frexp.c.
4096         * modules/mathl (Files): Add lib/frexp.c.
4097         (Depends-on): Add isnanl-nolibm.
4098
4099 2007-03-22  Bruno Haible  <bruno@clisp.org>
4100
4101         * modules/printf-frexp (Files): Add m4/frexp.m4.
4102         * m4/printf-frexp.m4 (gl_FUNC_PRINTF_FREXP): Define HAVE_FREXP_IN_LIBC
4103         only if the found frexp function actually works.
4104
4105 2007-03-22  Bruno Haible  <bruno@clisp.org>
4106
4107         * lib/frexp.c: Remove older implementation that uses divisions.
4108
4109 2007-03-21  Bruno Haible  <bruno@clisp.org>
4110
4111         * modules/frexp-tests: New file.
4112         * tests/test-frexp.c: New file.
4113
4114         * modules/frexp: New file.
4115         * lib/frexp.c: New file.
4116         * m4/frexp.m4: New file.
4117         * lib/math_.h (frexp): New declaration.
4118         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Also initialize GNULIB_FREXP and
4119         REPLACE_FREXP.
4120         * modules/math (math.h): Also substitute GNULIB_FREXP, REPLACE_FREXP.
4121
4122 2007-03-21  Bruno Haible  <bruno@clisp.org>
4123
4124         * modules/isnanl-tests: New file.
4125         * tests/test-isnanl.c: New file.
4126
4127         * modules/isnanl: New file.
4128         * lib/isnanl.h: New file.
4129         * m4/isnanl.m4 (gl_FUNC_ISNANL): New macro.
4130         (gl_FUNC_ISNANL_NO_LIBM): Invoke gl_HAVE_ISNANL_NO_LIBM,
4131         gl_FUNC_ISNANL_WORKS.
4132         (gl_HAVE_ISNANL_NO_LIBM, gl_HAVE_ISNANL_IN_LIBM, gl_FUNC_ISNANL_WORKS):
4133         New macros.
4134
4135 2007-03-21  Bruno Haible  <bruno@clisp.org>
4136
4137         * modules/isnanl-nolibm (Files): Add lib/isnanl-nolibm.h, remove
4138         lib/isnanl.h.
4139         (Include): Update.
4140         * lib/isnanl-nolibm.h: Renamed from lib/isnanl.h.
4141         * lib/vasnprintf.c: Update.
4142         * modules/isnanl-nolibm-tests (Files): Add tests/test-isnanl-nolibm.c,
4143         tests/test-isnanl.h, remove tests/test-isnanl.c.
4144         (Makefile.am): Update.
4145         * tests/test-isnanl-nolibm.c: New file.
4146         * tests/test-isnanl.h: New file.
4147         * tests/test-isnanl.c: Remove file.
4148
4149 2007-03-21  Jim Meyering  <jim@meyering.net>
4150
4151         When trying to open ".", treat ESTALE like EACCES.
4152         * lib/savewd.c (savewd_save): Resort to forking not just upon
4153         failure with EACCES, but also when errno is ESTALE.
4154
4155 2007-03-20  Bruno Haible  <bruno@clisp.org>
4156
4157         * lib/string_.h (strndup): Enable declaration also if HAVE_STRNDUP.
4158         Needed on AIX 5.1. Reported by Matthew Woehlke.
4159
4160 2007-03-19  Paul Eggert  <eggert@cs.ucla.edu>
4161
4162         Suggestions by Bruno Haible:
4163         * lib/acl-internal.h: Include "gettext.h" rather than rolling
4164         our own.
4165         (ACL_NOT_WELL_SUPPORTED): Parenthesize arg when used.
4166         * modules/acl (Depends-on): Add gettext.
4167
4168 2007-03-19  Bruno Haible  <bruno@clisp.org>
4169
4170         * modules/iconvme: Remove file.
4171         * lib/iconvme.h: Remove file.
4172         * lib/iconvme.c: Remove file.
4173         * m4/iconvme.m4: Remove file.
4174
4175 2007-03-19  Bruno Haible  <bruno@clisp.org>
4176
4177         * doc/relocatable-maint.texi: Break long shell script line.
4178         Suggested by Thien-Thi Nguyen <ttn@gnuvola.org>.
4179
4180 2007-03-19  Paul Eggert  <eggert@cs.ucla.edu>
4181
4182         Add limited support for Solaris 10 ZFS-style ACLs: just enough to
4183         handle file_has_acl.
4184         * lib/acl-internal.h, lib/acl_entries.c, lib/file-has-acl.c: New files.
4185         * lib/acl.c: Move header inclusions and related macro defns into
4186         lib/acl-internal.h.
4187         (S_ISLNK): Remove defn, since that's now done for us.
4188         (file_has_acl): Move to lib/file-has-acl.c.
4189         Call acl_trivial if available.  This is the crucial part of the fix.
4190         (acl_entries): Move to lib/acl_entries.c.  Now extern, since it's
4191         shared within the library.  Rewrite a bit, partly to make it compatible
4192         with the GNU coding style.
4193         * m4/acl.m4 (AC_FUNC_ACL): Add AC_LIBOBJ([file-has-acl]).
4194         Remove unnecessary double-quotes.
4195         Don't test for acl_to_text; the build will catch that.
4196         Replace acl_entries if it doesn't exist and it is needed.
4197         Check for -lsec and acl_trivial (as used on Solaris 10).
4198         * modules/acl (Files): Add lib/acl-internal.h, lib/acl_entries.c,
4199         lib/file-has-acl.c.
4200         (Depends-on): Add sys_stat, for S_ISLNK.
4201
4202 2007-03-19  Ben Pfaff  <blp@gnu.org>
4203
4204         * doc/gnulib.texi: Fix typos.
4205         Suggested by Thien-Thi Nguyen <ttn@gnuvola.org>.
4206
4207 2007-03-19  Paul Eggert  <eggert@cs.ucla.edu>
4208
4209         * lib/getcwd.c (__getcwd): Remove redundant comparison of buf to NULL.
4210         If size is zero here, buf must be zero.
4211
4212 2007-03-19  Simon Josefsson  <simon@josefsson.org>
4213
4214         * des.c: Remove weak_keys_chksum.  Reported by Bruno Haible
4215         <bruno@clisp.org>.
4216
4217 2007-03-18  Bruno Haible  <bruno@clisp.org>
4218
4219         * lib/vasnprintf.c (VASNPRINTF): Undo first part of last patch.
4220         Suggested by Eric Blake.
4221
4222 2007-03-18  Ben Pfaff  <blp@gnu.org>
4223
4224         * doc/relocatable.texi: Recommend using as prefix a directory
4225         that does not exist and will never be created.  Based on
4226         discussion with Bruno Haible, Ralf Wildenhues, Matthew Woehlke,
4227         and others.
4228
4229 2007-03-17  Bruno Haible  <bruno@clisp.org>
4230
4231         * lib/fchownat.c: Include lchown.h.
4232
4233 2007-03-17  Bruno Haible  <bruno@clisp.org>
4234
4235         Fix endless loop when the given allocated size was > INT_MAX.
4236         * lib/vasnprintf.c (EOVERFLOW): New fallback definition.
4237         (VASNPRINTF): Fail with EOVERFLOW when the given allocated size is
4238         larger than INT_MAX, or when it grow to a value larger than INT_MAX.
4239         * lib/vsprintf.c (vsprintf): Don't pass a size > INT_MAX to vasnprintf.
4240         * lib/sprintf.c (sprintf): Likewise.
4241
4242 2007-03-17  Bruno Haible  <bruno@clisp.org>
4243
4244         * tests/test-argp-2.sh (func_compare): Output a context diff.
4245
4246 2007-03-17  Bruno Haible  <bruno@clisp.org>
4247
4248         * m4/locale-fr.m4 (gt_LOCALE_FR, gt_LOCALE_FR_UTF8): Check also the
4249         locale's decimal-point character.
4250
4251 2007-03-17  Bruno Haible  <bruno@clisp.org>
4252
4253         * lib/vasnprintf.c (VASNPRINTF): Clear out the memory used for arg_mem
4254         before comparing it. Needed because on some platforms (e.g. x86) a
4255         'long double' occupies less bytes than sizeof (long double).
4256
4257 2007-03-17  Bruno Haible  <bruno@clisp.org>
4258
4259         * tests/test-crc.c (main): Make printf statements 64-bit clean.
4260         * tests/test-gc-pbkdf2-sha1.c (main): Likewise.
4261         * tests/test-getaddrinfo.c (simple): Likewise.
4262         * tests/test-read-file.c (main): Likewise.
4263
4264 2007-03-17  Bruno Haible  <bruno@clisp.org>
4265
4266         * tests/test-dirname.c (main): Make printf statements 64-bit clean.
4267
4268 2007-03-17  Bruno Haible  <bruno@clisp.org>
4269
4270         * tests/test-xvasprintf.c (test_xvasprintf, test_xasprintf): Remove
4271         unused variable.
4272
4273 2007-03-17  Bruno Haible  <bruno@clisp.org>
4274
4275         * tests/test-c-strcasecmp.c: Include c-strcase.h.
4276         * tests/test-c-strncasecmp.c: Likewise.
4277
4278 2007-03-17  Bruno Haible  <bruno@clisp.org>
4279
4280         * modules/stdlib (Depends-on): Add unistd.
4281         * lib/stdlib_.h: Include <unistd.h> if mkstemp is desired.
4282         Needed for MacOS X 10.3.
4283
4284 2007-03-17  Bruno Haible  <bruno@clisp.org>
4285
4286         * lib/unistr/u-strdup.h: Include <stdlib.h>.
4287
4288 2007-03-17  Bruno Haible  <bruno@clisp.org>
4289
4290         * lib/unistr/u-cpy-alloc.h: Include <stdlib.h>.
4291
4292 2007-03-17  Bruno Haible  <bruno@clisp.org>
4293
4294         * gnulib-tool (func_import): Update .cvsignore and .gitignore files
4295         to reflect files copied from gnulib (with or without modifications).
4296         Suggested by Jim Meyering.
4297
4298 2007-03-17  Eric Blake  <ebb9@byu.net>
4299
4300         * NEWS: Document stdlib change from 2007-02-18.
4301
4302 2007-03-17  Jim Meyering  <jim@meyering.net>
4303
4304         Detect use of AC_CONFIG_AUX_DIR also when its argument is quoted.
4305         * build-aux/bootstrap: Put ""s around use of $build_aux, in case
4306         someone uses a name containing shell meta-characters.
4307         Reported by Alfred M. Szmidt.
4308
4309         * build-aux/bootstrap: Don't use \> in grep regexp.  For HP-UX.
4310
4311 2007-03-16  Alfred M. Szmidt  <ams@gnu.org>
4312
4313         * build-aux/bootstrap (with_gettext): New variable.  Run autopoint
4314         and copy gettext configuration files only if configure.ac contains
4315         a use of AM_GNU_GETTEXT_VERSION.
4316
4317 2007-03-16  Alfred M. Szmidt  <ams@gnu.org>
4318
4319         * build-aux/bootstrap (gnulib_name): New variable.
4320         (gnulib_tool_options): Use it.
4321
4322 2007-03-13  Simon Josefsson  <simon@josefsson.org>
4323
4324         * tests/test-des.c: Use new namespace.
4325
4326 2007-03-15  Bruno Haible  <bruno@clisp.org>
4327
4328         * lib/dummy.c (gl_dummy_symbol): Renamed from 'dummy'.
4329         Reported by James Youngman <jay@gnu.org>.
4330
4331 2007-03-15  Bruno Haible  <bruno@clisp.org>
4332
4333         * lib/glob.c (glob): Add 'restrict' so that prototype matches the
4334         declared prototype. Needed with cc on OSF/1 5.1.
4335
4336 2007-03-15  Bruno Haible  <bruno@clisp.org>
4337
4338         * lib/gl_list.h (gl_listelement_dispose_fn): New type.
4339         (gl_list_create_empty, gl_list_create): Add dispose_fn argument.
4340         (struct gl_list_implementation): Add dispose_fn argument to the
4341         'create_empty', 'create' methods.
4342         (struct gl_list_impl_base): Add field 'dispose_fn'.
4343         * lib/gl_list.c (gl_list_create_empty, gl_list_create): Add dispose_fn
4344         argument.
4345         * lib/gl_array_list.c (gl_array_create_empty, gl_array_create): Add
4346         dispose_fn argument.
4347         (gl_array_remove_node, gl_array_remove_at, gl_array_list_free): Call
4348         dispose_fn on the dropped values.
4349         * lib/gl_carray_list.c (gl_carray_create_empty, gl_carray_create): Add
4350         dispose_fn argument.
4351         (gl_carray_remove_at, gl_carray_list_free): Call dispose_fn on the
4352         dropped values.
4353         * lib/gl_anyavltree_list2.h (gl_tree_create): Add dispose_fn argument.
4354         (gl_tree_remove_node): Call dispose_fn on the dropped value.
4355         * lib/gl_anyrbtree_list2.h (gl_tree_create): Add dispose_fn argument.
4356         (gl_tree_remove_node): Call dispose_fn on the dropped value.
4357         * lib/gl_anytree_list2.h (gl_tree_create_empty): Add dispose_fn
4358         argument.
4359         (gl_tree_list_free): Call dispose_fn on the dropped values.
4360         * lib/gl_anytreehash_list2.h (gl_tree_list_free): Call dispose_fn on
4361         the dropped values.
4362         * lib/gl_anylinked_list2.h (gl_linked_create_empty, gl_linked_create):
4363         Add dispose_fn argument.
4364         (gl_linked_remove_node, gl_linked_remove_at, gl_linked_list_free):
4365         Call dispose_fn on the dropped values.
4366         * lib/gl_sublist.c (gl_sublist_create_empty, gl_sublist_create_fill):
4367         Add dispose_fn argument.
4368         (gl_sublist_create): Initialize the 'dispose_fn' field.
4369         * lib/clean-temp.c (create_temp_dir, register_fd): Update.
4370         * tests/test-array_list.c (main): Update.
4371         * tests/test-carray_list.c (main): Update.
4372         * tests/test-avltree_list.c (main): Update.
4373         * tests/test-rbtree_list.c (main): Update.
4374         * tests/test-avltreehash_list.c (main): Update.
4375         * tests/test-rbtreehash_list.c (main): Update.
4376         * tests/test-linked_list.c (main): Update.
4377         * tests/test-linkedhash_list.c (main): Update.
4378         * tests/test-array_oset.c (main): Update.
4379
4380 2007-03-15  Bruno Haible  <bruno@clisp.org>
4381
4382         * lib/gl_oset.h (gl_setelement_dispose_fn): New type.
4383         (gl_oset_create_empty): Add dispose_fn argument.
4384         (struct gl_oset_implementation): Add dispose_fn argument to
4385         'create_empty' method.
4386         (struct gl_oset_impl_base): Add dispose_fn field.
4387         * lib/gl_oset.c (gl_oset_create_empty): Add dispose_fn argument.
4388         * lib/gl_array_oset.c (gl_array_create_empty): Add dispose_fn argument.
4389         (gl_array_remove_at, gl_array_free): Call dispose_fn on the dropped
4390         values.
4391         * lib/gl_anytree_oset.h (gl_tree_create_empty): Add dispose_fn argument.
4392         (gl_tree_oset_free): Call dispose_fn on the dropped values.
4393         * lib/gl_avltree_oset.c (gl_tree_remove_node): Call dispose_fn on the
4394         dropped value.
4395         * lib/gl_rbtree_oset.c (gl_tree_remove_node): Call dispose_fn on the
4396         dropped value.
4397         * tests/test-array_oset.c (main): Update.
4398         * tests/test-avltree_oset.c (main): Update.
4399         * tests/test-rbtree_oset.c (main): Update.
4400         * lib/gl_anytreehash_list1.h (add_to_bucket): Update.
4401
4402 2007-03-13  Bruno Haible  <bruno@clisp.org>
4403
4404         * tests/test-stdbool.c (i): Update after last patch.
4405
4406 2007-03-12  Bruno Haible  <bruno@clisp.org>
4407
4408         * lib/quotearg.c: Include <wctype.h> early, before the definition of
4409         the iswprint macro. Needed on Solaris 2.5.1.
4410
4411 2007-03-12  Bruno Haible  <bruno@clisp.org>
4412
4413         * tests/test-printf-frexp.c (main): Declare x as volatile.
4414
4415 2007-03-12  Simon Josefsson  <simon@josefsson.org>
4416
4417         * doc/gnulib.texi (Build robot for gnulib): New section.
4418
4419 2007-03-12  Jim Meyering  <jim@meyering.net>
4420
4421         * build-aux/bootstrap: New file.
4422         * build-aux/bootstrap.conf: New file, from coreutils.
4423
4424 2007-03-11  Bruno Haible  <bruno@clisp.org>
4425
4426         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Require AC_C_INLINE.
4427
4428 2007-03-12  Simon Josefsson  <simon@josefsson.org>
4429
4430         * lib/des.h, lib/des.c, lib/gc-gnulib.c: Use gl_ namespace, to
4431         avoid collisions with 'des_setkey'.  Reported by Bruno Haible
4432         <bruno@clisp.org>.  Also change 'tripledes_' to '3des_'.
4433
4434 2007-03-11  Bruno Haible  <bruno@clisp.org>
4435
4436         * m4/locale-tr.m4 (gt_LOCALE_TR_UTF8): If the test program fails to
4437         compile, set LOCALE_TR_UTF8 to 'none' instead of empty.
4438
4439 2007-03-11  Bruno Haible  <bruno@clisp.org>
4440
4441         * lib/stdint_.h (INT64_MIN, INTMAX_MIN): Avoid using the ~INT..._MAX
4442         formula. Needed for SunPRO C 5.0.
4443
4444 2007-03-11  Bruno Haible  <bruno@clisp.org>
4445
4446         * modules/long-options (Depends-on): Add getopt.
4447
4448 2007-03-11  Bruno Haible  <bruno@clisp.org>
4449
4450         * modules/modechange (Depends-on): Add stdbool.
4451
4452 2007-03-11  Bruno Haible  <bruno@clisp.org>
4453
4454         * modules/i-ring (Depends-on): Add stdbool.
4455
4456 2007-03-11  Bruno Haible  <bruno@clisp.org>
4457
4458         * modules/gc-des (Depends-on): Add stdbool.
4459
4460 2007-03-11  Bruno Haible  <bruno@clisp.org>
4461
4462         * m4/mktime.m4 (gl_PREREQ_MKTIME): Require AC_C_INLINE.
4463
4464 2007-03-11  Bruno Haible  <bruno@clisp.org>
4465
4466         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Require AC_C_RESTRICT.
4467
4468 2007-03-11  Bruno Haible  <bruno@clisp.org>
4469
4470         * lib/unistr/u32-mbtouc-unsafe.c (u32_mbtouc_unsafe): Fix syntax error.
4471
4472 2007-03-11  Bruno Haible  <bruno@clisp.org>
4473
4474         * lib/vasnprintf.c (sprintf): Undefine.
4475
4476 2007-03-11  Bruno Haible  <bruno@clisp.org>
4477
4478         * lib/isnan.c (rpl_isnan, rpl_isnanl): Work around bug regarding
4479         initializers in SunPRO C and Compaq C compilers.
4480
4481 2007-03-11  Bruno Haible  <bruno@clisp.org>
4482
4483         * lib/gl_array_oset.c (gl_array_iterator_next): Make pointer
4484         decrementing code ANSI C compliant.
4485
4486 2007-03-11  Bruno Haible  <bruno@clisp.org>
4487
4488         * lib/dummy.c [__sun]: Define a dummy variable, not just a typedef.
4489         Needed for Solaris 2.5.1 ranlib and SunPRO C 5.0.
4490
4491 2007-03-11  Bruno Haible  <bruno@clisp.org>
4492
4493         * tests/test-stdbool.c (s, d, e, xlcbug): Disable checks that gnulib's
4494         <stdbool.h> substitute doesn't pass.
4495
4496 2007-03-11  Bruno Haible  <bruno@clisp.org>
4497
4498         * lib/vasnprintf.c (snprintf): Undefine. Avoids an endless recursion.
4499
4500 2007-03-11  Bruno Haible  <bruno@clisp.org>
4501
4502         * gnulib-tool (func_create_megatestdir): Create also an autobuild
4503         script, for submission to autobuild.josefsson.org.
4504
4505 2007-03-10  Bruno Haible  <bruno@clisp.org>
4506
4507         * modules/canonicalize-lgpl-tests: New file.
4508         * tests/test-canonicalize-lgpl.sh: New file.
4509         * tests/test-canonicalize-lgpl.c: New file.
4510
4511         * modules/c-strcase-tests: New file.
4512         * tests/test-c-strcase.sh: New file.
4513         * tests/test-c-strcasecmp.c: New file.
4514         * tests/test-c-strncasecmp.c: New file.
4515
4516         * modules/atexit-tests: New file.
4517         * tests/test-atexit.sh: New file.
4518         * tests/test-atexit.c: New file.
4519
4520 2007-03-10  Bruno Haible  <bruno@clisp.org>
4521
4522         * tests/test-binary-io.sh: Use temporary filenames that are not so
4523         likely to clash with those of other tests (in a parallel make).
4524         * tests/test-binary-io.c: Likewise.
4525
4526 2007-03-10  Bruno Haible  <bruno@clisp.org>
4527
4528         * lib/fseterr.c (fseterr): Port to Solaris/SPARC64. Deactivate the
4529         fallback; use #error instead.
4530         Suggested by Simon Josefsson.
4531
4532 2007-03-10  Bruno Haible  <bruno@clisp.org>
4533
4534         * gnulib-tool (func_create_testdir): Treat MOSTLYCLEANFILES like
4535         CLEANFILES. Put spaces in each line of $cleaned_files, not only the
4536         first and the last.
4537
4538 2007-03-10  Bruno Haible  <bruno@clisp.org>
4539
4540         * lib/stdint_.h (uint_least64_t): Fix typo in last patch.
4541
4542 2007-03-10  Bruno Haible  <bruno@clisp.org>
4543
4544         * modules/snprintf-posix-tests (EXTRA_DIST): New variable. Needed for
4545         "make distcheck".
4546         * modules/sprintf-posix-tests (EXTRA_DIST): Likewise.
4547         * modules/vsnprintf-posix-tests (EXTRA_DIST): Likewise.
4548         * modules/vsprintf-posix-tests (EXTRA_DIST): Likewise.
4549
4550 2007-03-10  Bruno Haible  <bruno@clisp.org>
4551
4552         * modules/allocsa-tests (test_allocsa_SOURCES): Remove redundant
4553         variable.
4554         * modules/dirname-tests (test_dirname_SOURCES): Remove redundant
4555         variable.
4556
4557 2007-03-09  Eric Blake  <ebb9@byu.net>
4558         and Matthew Woehlke  <mw_triad@users.sourceforge.net>  (tiny change)
4559
4560         * lib/stdint_.h (int64_t, uint64_t): Don't undefine if 64-bit
4561         types are not being provided by gnulib.
4562         (GL_INT64_T, GL_UINT64_T): New witnesses of whether gnulib 64-bit
4563         types are supported.
4564
4565 2007-03-10  Bruno Haible  <bruno@clisp.org>
4566
4567         * lib/stdio_.h (__attribute__): New macro.
4568         (fprintf, vfprintf, printf, vprintf, snprintf, vsnprintf, sprintf,
4569         vsprintf): Specify __attribute__ __format__ for GCC.
4570         Suggested by Eric Blake.
4571
4572 2007-03-09  Bruno Haible  <bruno@clisp.org>
4573
4574         * modules/printf-posix-tests: New file.
4575         * tests/test-printf-posix.sh: New file.
4576         * tests/test-printf-posix.c: New file.
4577
4578         * modules/printf-posix: New file.
4579         * lib/printf.c: New file.
4580         * m4/printf-posix-rpl.m4: New file.
4581         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_PRINTF_POSIX,
4582         REPLACE_PRINTF.
4583         * lib/stdio_.h (printf): New declaration.
4584         (format, __format__, ____printf____, ____scanf____, ____strftime____,
4585         ____strfmon____): New macros.
4586         * modules/stdio (Makefile.am): Substitute also GNULIB_PRINTF_POSIX,
4587         REPLACE_PRINTF.
4588
4589 2007-03-09  Bruno Haible  <bruno@clisp.org>
4590
4591         * tests/test-vasnprintf-posix2.sh: New file.
4592         * tests/test-vasnprintf-posix2.c: New file.
4593         * modules/vasnprintf-posix-tests (Files): Add them and m4/locale-fr.m4.
4594         (configure.ac): Invoke gt_LOCALE_FR and gt_LOCALE_FR_UTF8.
4595         (Makefile.am): Activate test-vasnprintf-posix2.sh.
4596
4597         * lib/vasnprintf.c (VASNPRINTF): For the 'a' and 'A' directives, use
4598         a locale dependent decimal point, rather than always '.'.
4599
4600 2007-03-09  Eric Blake  <ebb9@byu.net>
4601
4602         * lib/stdlib_.h (EXIT_FAILURE): GNU code expects this to be 1, in
4603         spite of platforms like Tandem/NSK that define it to -1.
4604
4605 2007-03-08  Bruno Haible  <bruno@clisp.org>
4606
4607         * modules/vprintf-posix-tests: New file.
4608         * tests/test-vprintf-posix.sh: New file.
4609         * tests/test-vprintf-posix.c: New file.
4610         * tests/test-printf-posix.h: New file.
4611
4612         * modules/vprintf-posix: New file.
4613         * lib/vprintf.c: New file.
4614         * m4/vprintf-posix.m4: New file.
4615         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_VPRINTF_POSIX,
4616         REPLACE_VPRINTF.
4617         * lib/stdio_.h (vprintf): New declaration.
4618         * modules/stdio (Makefile.am): Substitute also GNULIB_VPRINTF_POSIX,
4619         REPLACE_VPRINTF.
4620
4621 2007-03-08  Bruno Haible  <bruno@clisp.org>
4622
4623         * modules/fprintf-posix-tests: New file.
4624         * tests/test-fprintf-posix.sh: New file.
4625         * tests/test-fprintf-posix.c: New file.
4626
4627         * modules/fprintf-posix: New file.
4628         * lib/fprintf.c: New file.
4629         * m4/fprintf-posix.m4: New file.
4630         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FPRINTF_POSIX,
4631         REPLACE_FPRINTF.
4632         * lib/stdio_.h (fprintf): New declaration.
4633         * modules/stdio (Makefile.am): Substitute also GNULIB_FPRINTF_POSIX,
4634         REPLACE_FPRINTF.
4635
4636 2007-03-08  Bruno Haible  <bruno@clisp.org>
4637
4638         * modules/vfprintf-posix-tests: New file.
4639         * tests/test-vfprintf-posix.sh: New file.
4640         * tests/test-vfprintf-posix.c: New file.
4641         * tests/test-fprintf-posix.h: New file.
4642         * tests/test-fprintf-posix.out: New file.
4643
4644         * modules/vfprintf-posix: New file.
4645         * lib/vfprintf.c: New file.
4646         * m4/vfprintf-posix.m4: New file.
4647         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_VFPRINTF_POSIX,
4648         REPLACE_VFPRINTF.
4649         * lib/stdio_.h (vfprintf): New declaration.
4650         * modules/stdio (Makefile.am): Substitute also GNULIB_VFPRINTF_POSIX,
4651         REPLACE_VFPRINTF.
4652
4653 2007-03-08  Bruno Haible  <bruno@clisp.org>
4654
4655         * lib/stdio_.h: Treat __need___FILE like __need_FILE.
4656
4657 2007-03-08  Bruno Haible  <bruno@clisp.org>
4658
4659         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Use 'case' statements
4660         instead of 'expr' invocations.
4661         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
4662         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
4663         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
4664         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
4665         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
4666         Suggested by Paul Eggert.
4667
4668 2007-03-08  Bruno Haible  <bruno@clisp.org>
4669
4670         * modules/fseterr-tests: New file.
4671         * tests/test-fseterr.c: New file.
4672
4673         * modules/fseterr: New file.
4674         * lib/fseterr.h: New file.
4675         * lib/fseterr.c: New file.
4676
4677 2007-03-08  Bruno Haible  <bruno@clisp.org>
4678
4679         * lib/fnmatch_.h: Convert tabs in the middle of lines to spaces.
4680         * lib/getopt_.h: Likewise.
4681         * lib/mbswidth.h: Likewise.
4682         * lib/setenv.h: Likewise.
4683         * lib/vasnprintf.h: Likewise.
4684         * lib/vasprintf.h: Likewise.
4685         * lib/verror.h: Likewise.
4686         * lib/xsetenv.h: Likewise.
4687         * lib/xvasprintf.h: Likewise.
4688
4689 2007-03-08  Jim Meyering  <jim@meyering.net>
4690
4691         * users.txt: Add parted.
4692
4693         * ChangeLog: Restore 1500 lines mistakenly removed from the end.
4694
4695 2007-03-07  Bruno Haible  <bruno@clisp.org>
4696
4697         * m4/printf.m4: Make the shell script snippets copy&pastable.
4698
4699 2007-03-02  Bruno Haible  <bruno@clisp.org>
4700
4701         * lib/netinet_in_.h: New file.
4702         * m4/netinet_in_h.m4 (gl_HEADER_NETINET_IN): Test whether netinet/in.h
4703         is self-contained. Set ABSOLUTE_NETINET_IN_H, HAVE_NETINET_IN_H.
4704         * modules/netinet_in (Files): Add lib/netinet_in_.h.
4705         (Depends-on): Add absolute-header.
4706         (Makefile.am): Substitute ABSOLUTE_NETINET_IN_H, HAVE_NETINET_IN_H
4707         into netinet/in.h.
4708
4709 2007-03-03  Bruno Haible  <bruno@clisp.org>
4710
4711         * lib/sys_select_.h: New file.
4712         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SELECT): Test whether sys/select.h
4713         is self-contained. Set ABSOLUTE_SYS_SELECT_H, HAVE_SYS_SELECT_H.
4714         * modules/sys_select (Files): Add lib/sys_select_.h.
4715         (Depends-on): Add absolute-header.
4716         (Makefile.am): Substitute ABSOLUTE_SYS_SELECT_H, HAVE_SYS_SELECT_H
4717         into sys/select.h.
4718
4719 2007-03-02  Bruno Haible  <bruno@clisp.org>
4720
4721         * lib/socket_.h: If sys/socket.h exists, include that and <sys/types.h>
4722         before it. Turn HAVE_WINSOCK2_H and HAVE_WS2TCPIP_H into configute-time
4723         values.
4724         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Test also whether
4725         <sys/socket.h> is self-contained. Set ABSOLUTE_SYS_SOCKET_H,
4726         HAVE_SYS_SOCKET_H, HAVE_WINSOCK2_H, HAVE_WS2TCPIP_H.
4727         * modules/sys_socket (Depends-on): Add absolute-header.
4728         (Makefile.am): Substitute ABSOLUTE_SYS_SOCKET_H, HAVE_SYS_SOCKET_H,
4729         HAVE_WINSOCK2_H, HAVE_WS2TCPIP_H into sys/socket.h.
4730         (Include): Remove requirement of inclusion of <sys/types.h>.
4731
4732 2007-03-02  Bruno Haible  <bruno@clisp.org>
4733
4734         * lib/byteswap_.h (bswap_32): Fix formula.
4735
4736 2007-03-06  Bruno Haible  <bruno@clisp.org>
4737
4738         * modules/sprintf-posix-tests: New file.
4739         * tests/test-sprintf-posix.c: New file.
4740
4741         * modules/sprintf-posix: New file.
4742         * lib/sprintf.c: New file.
4743         * m4/sprintf-posix.m4: New file.
4744         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_SPRINTF_POSIX,
4745         REPLACE_SPRINTF.
4746         * lib/stdio_.h (sprintf): New declaration.
4747         * modules/stdio (Makefile.am): Substitute also GNULIB_SPRINTF_POSIX,
4748         REPLACE_SPRINTF.
4749
4750 2007-03-06  Bruno Haible  <bruno@clisp.org>
4751
4752         * modules/vsprintf-posix-tests: New file.
4753         * tests/test-vsprintf-posix.c: New file.
4754         * tests/test-sprintf-posix.h: New file.
4755
4756         * modules/vsprintf-posix: New file.
4757         * lib/vsprintf.c: New file.
4758         * m4/vsprintf-posix.m4: New file.
4759         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_VSPRINTF_POSIX,
4760         REPLACE_VSPRINTF.
4761         * lib/stdio_.h (vsprintf): New declaration.
4762         * modules/stdio (Makefile.am): Substitute also GNULIB_VSPRINTF_POSIX,
4763         REPLACE_VSPRINTF.
4764
4765 2007-03-06  Bruno Haible  <bruno@clisp.org>
4766
4767         * modules/vsnprintf (Depend-on): Remove minmax.
4768
4769 2007-03-06  Bruno Haible  <bruno@clisp.org>
4770
4771         * modules/snprintf-posix-tests: New file.
4772         * tests/test-snprintf-posix.c: New file.
4773
4774         * modules/snprintf-posix: New file.
4775         * m4/snprintf-posix.m4: New file.
4776         * m4/snprintf.m4 (gl_REPLACE_SNPRINTF): New macro, extracted from
4777         gl_FUNC_SNPRINTF.
4778         (gl_FUNC_SNPRINTF): Invoke it.
4779         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also REPLACE_SNPRINTF.
4780         * lib/stdio_.h (snprintf): Define as a replacement if REPLACE_SNPRINTF
4781         is set.
4782         * modules/stdio (Makefile.am): Substitute also REPLACE_SNPRINTF.
4783
4784 2007-03-06  Bruno Haible  <bruno@clisp.org>
4785
4786         * modules/vsnprintf-posix-tests: New file.
4787         * tests/test-vsnprintf-posix.c: New file.
4788         * tests/test-snprintf-posix.h: New file.
4789
4790         * modules/vsnprintf-posix: New file.
4791         * m4/vsnprintf-posix.m4: New file.
4792         * m4/vsnprintf.m4 (gl_REPLACE_VSNPRINTF): New macro, extracted from
4793         gl_FUNC_VSNPRINTF.
4794         (gl_FUNC_VSNPRINTF): Invoke it.
4795         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also REPLACE_VSNPRINTF.
4796         * lib/stdio_.h (vsnprintf): Define as a replacement if
4797         REPLACE_VSNPRINTF is set.
4798         * modules/stdio (Makefile.am): Substitute also REPLACE_VSNPRINTF.
4799
4800 2007-03-06  Bruno Haible  <bruno@clisp.org>
4801
4802         * m4/vasnprintf.m4 (gl_REPLACE_VASNPRINTF): Test for vasnprintf here.
4803         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): ... not here.
4804
4805 2007-03-06  Bruno Haible  <bruno@clisp.org>
4806
4807         * lib/math_.h (acosl): Declare also if HAVE_DECL_ACOSL is set.
4808         (asinl): Declare also if HAVE_DECL_ASINL is set.
4809         (atanl): Declare also if HAVE_DECL_ATANL is set.
4810         (ceill): Declare also if HAVE_DECL_CEILL is set.
4811         (cosl): Declare also if HAVE_DECL_COSL is set.
4812         (expl): Declare also if HAVE_DECL_EXPL is set.
4813         (floorl): Declare also if HAVE_DECL_FLOORL is set.
4814         (frexpl): Declare also if HAVE_DECL_FREXPL is set.
4815         (ldexpl): Declare also if HAVE_DECL_LDEXPL is set.
4816         (logl): Declare also if HAVE_DECL_LOGL is set.
4817         (sinl): Declare also if HAVE_DECL_SINL is set.
4818         (sqrtl): Declare also if HAVE_DECL_SQRTL is set.
4819         (tanl): Declare also if HAVE_DECL_TANL is set.
4820         * modules/math (Makefile.am): Substitute the values of HAVE_DECL_*.
4821         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Set HAVE_DECL_* to 1.
4822         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Fix tests for the
4823         declaration of frexpl, ldexpl.
4824         * modules/printf-frexpl (Depends-on): Add math.
4825         * lib/printf-frexp.c (frexpl, ldexpl): Undo last change.
4826
4827 2007-03-05  Bruno Haible  <bruno@clisp.org>
4828
4829         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Also test whether
4830         frexpl and ldexpl are declared.
4831         * lib/printf-frexp.c (frexpl, ldexpl): Provide fallback declarations.
4832
4833 2007-03-05  Bruno Haible  <bruno@clisp.org>
4834
4835         * gnulib-tool (func_get_automake_snippet): Don't synthesize an
4836         EXTRA_lib_SOURCES augmentation for the relocatable-prog-wrapper module.
4837
4838 2007-03-05  Bruno Haible  <bruno@clisp.org>
4839
4840         * lib/stdio_.h: Include <stddef.h>.
4841
4842 2007-03-05  Bruno Haible  <bruno@clisp.org>
4843
4844         * m4/printf.m4 (gl_SNPRINTF_DIRECTIVE_N): New macro.
4845
4846 2007-03-05  Bruno Haible  <bruno@clisp.org>
4847
4848         * m4/printf.m4: Update with info about OpenBSD 3.9, HP-UX 10.20,
4849         NetBSD 4, from Ralf Wildenhues.
4850
4851 2007-03-04  Bruno Haible  <bruno@clisp.org>
4852
4853         * lib/vasprintf.h: Update #if logic for the case when the functions
4854         exist but are overridden.
4855
4856 2007-03-04  Bruno Haible  <bruno@clisp.org>
4857
4858         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Exclude two buggy
4859         implementations: glibc-2.4 and MacOS X 10.3.
4860         * tests/test-vasnprintf-posix.c (test_function): Test also the case
4861         that exhibits the bugs in glibc-2.4 and MacOS X 10.3.
4862         * tests/test-vasprintf-posix.c (test_function): Likewise.
4863
4864 2007-03-04  Bruno Haible  <bruno@clisp.org>
4865
4866         * modules/vasprintf-posix-tests: New file.
4867         * tests/test-vasprintf-posix.c: New file.
4868
4869         * modules/vasprintf-posix: New file.
4870         * lib/vasprintf.h (asprintf, vasprintf): Rename if REPLACE_VASPRINTF is
4871         defined.
4872         * m4/vasprintf-posix.m4: New file.
4873         * m4/vasprintf.m4 (gl_REPLACE_VASPRINTF): New macro, extracted from
4874         gl_FUNC_VASPRINTF.
4875         (gl_FUNC_VASPRINTF): Invoke it.
4876         * m4/vasnprintf.m4 (gl_REPLACE_VASNPRINTF): Define REPLACE_VASNPRINTF
4877         here.
4878         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Not here.
4879
4880 2007-03-04  Bruno Haible  <bruno@clisp.org>
4881
4882         * lib/sys_time_.h: Rename GETTIMEOFDAY_REPLACEMENT to
4883         REPLACE_GETTIMEOFDAY.
4884         * modules/sys_time (Makefile.am): Likewise.
4885         * m4/sys_time_h.m4: Likewise.
4886         * m4/gettimeofday.m4: Likewise.
4887
4888 2007-03-04  Bruno Haible  <bruno@clisp.org>
4889
4890         * modules/vasnprintf-posix-tests: New file.
4891         * tests/test-vasnprintf-posix.c: New file.
4892
4893         * modules/vasnprintf-posix: New file.
4894         * lib/vasnprintf.c: Include isnan.h, isnanl.h, printf-frexp.h,
4895         printf-frexpl.h.
4896         (VASNPRINTF): Handle the 'a' and 'A' directives here, if needed.
4897         * lib/vasnprintf.h (asnprintf, vasnprintf): Rename if
4898         REPLACE_VASNPRINTF is defined.
4899         * m4/vasnprintf.m4 (gl_REPLACE_VASNPRINTF): New macro, extracted from
4900         gl_FUNC_VASNPRINTF.
4901         (gl_FUNC_VASNPRINTF): Invoke it.
4902         * m4/vasnprintf-posix.m4: New file.
4903         * m4/printf.m4: New file.
4904
4905 2007-03-04  Bruno Haible  <bruno@clisp.org>
4906
4907         Compile progreloc.c only if --enable-relocatable is specified.
4908         * m4/relocatable.m4 (gl_RELOCATABLE): Arrange to compile progreloc.c
4909         if --enable-relocatable was specified.
4910         * modules/relocatable-prog (Makefile.am): Remove progreloc.c from
4911         lib_SOURCES.
4912
4913 2007-03-04  Jim Meyering  <jim@meyering.net>
4914
4915         * lib/acl.c (ACL_NOT_WELL_SUPPORTED): New macro.
4916         Use it consistently, rather than enumerating errno constants.
4917
4918 2007-03-04  Bruno Haible  <bruno@clisp.org>
4919
4920         * modules/xvasprintf-tests: New file.
4921         * tests/test-xvasprintf.c: New file.
4922
4923         * modules/vasprintf-tests: New file.
4924         * tests/test-vasprintf.c: New file.
4925
4926         * modules/vasnprintf-tests: New file.
4927         * tests/test-vasnprintf.c: New file.
4928
4929         * modules/vsnprintf-tests: New file.
4930         * tests/test-vsnprintf.c: New file.
4931
4932         * modules/snprintf-tests: New file.
4933         * tests/test-snprintf.c: New file.
4934
4935 2007-03-04  Bruno Haible  <bruno@clisp.org>
4936
4937         Compile relocatable.c only if --enable-relocatable is specified.
4938         * m4/relocatable-lib.m4 (gl_RELOCATABLE_LIBRARY_BODY): Renamed from
4939         gl_RELOCATABLE_LIBRARY.
4940         (gl_RELOCATABLE_LIBRARY, gl_RELOCATABLE_LIBRARY_SEPARATE): New macros.
4941         * m4/relocatable.m4 (gl_RELOCATABLE): Invoke gl_RELOCATABLE_LIBRARY.
4942         (gl_RELOCATABLE_BODY): Require gl_RELOCATABLE_LIBRARY_BODY instead of
4943         gl_RELOCATABLE_LIBRARY.
4944         * modules/relocatable-lib (configure.ac): Invoke gl_RELOCATABLE_LIBRARY.
4945         (Makefile.am): Remove lib_SOURCES.
4946         * modules/relocatable-lib-lgpl (configure.ac): Invoke
4947         gl_RELOCATABLE_LIBRARY.
4948         (Makefile.am): Remove lib_SOURCES.
4949         * modules/relocatable-prog (Makefile.am): Don't compile relocatable.c
4950         always.
4951         * modules/relocatable-prog-wrapper (configure.ac): Invoke
4952         gl_RELOCATABLE_LIBRARY_SEPARATE instead of gl_RELOCATABLE_LIBRARY.
4953
4954 2007-03-04  Bruno Haible  <bruno@clisp.org>
4955
4956         * modules/argmatch-tests: New file.
4957         * tests/test-argmatch.c: New file.
4958
4959         * tests/test-allocsa.c (main): Halve the number of loop runs.
4960
4961         * modules/alloca-opt-tests: New file.
4962         * tests/test-alloca-opt.c: New file.
4963
4964 2007-03-04  Jim Meyering  <jim@meyering.net>
4965
4966         Work around difference between Linux ACLs and Solaris 10 ZFS.
4967         * lib/acl.c (set_acl): Revert to using chmod_or_fchmod also
4968         for EINVAL.
4969
4970 2007-03-03  Bruno Haible  <bruno@clisp.org>
4971
4972         * modules/relocatable-prog (Depends-on): Add back progreloc's
4973         dependencies: canonicalize-lgpl, xalloc, xreadlink, stdbool, unistd.
4974
4975 2007-03-03  Bruno Haible  <bruno@clisp.org>
4976
4977         * modules/relocatable-lib-lgpl: Renamed from modules/relocatable-lib.
4978         * modules/relocatable-lib: New file.
4979
4980 2007-03-03  Bruno Haible  <bruno@clisp.org>
4981
4982         * modules/relocatable-prog: Renamed from modules/relocatable.
4983         * doc/relocatable-maint.texi: Talk about module 'relocatable-prog'.
4984
4985 2007-03-03  Bruno Haible  <bruno@clisp.org>
4986
4987         * modules/relocatable-script (Files): Add doc/relocatable.texi,
4988         m4/relocatable-lib.m4.
4989         (Depends-on): Remove 'relocatable'.
4990         (configure.ac): Add gl_RELOCATABLE_NOP.
4991
4992 2007-03-03  Bruno Haible  <bruno@clisp.org>
4993
4994         * modules/relocatable-prog-wrapper: New file.
4995         * modules/relocatable (Depends-on): Add it. Remove all other
4996         dependencies except progname.
4997         (Files): Remove build-aux/install-reloc, lib/relocwrapper.c.
4998
4999         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE): New macro.
5000         (gl_FUNC_STRERROR): Nop.
5001         * lib/strerror.c: Compile the file only if !HAVE_STRERROR.
5002
5003         * m4/setenv.m4 (gl_FUNC_SETENV_SEPARATE): New macro.
5004         * lib/setenv.c: Compile the file only if _LIBC || !HAVE_SETENV.
5005
5006         * m4/readlink.m4 (gl_FUNC_READLINK_SEPARATE): New macro.
5007         (gl_FUNC_READLINK): Update.
5008
5009         * m4/canonicalize-lgpl.m4 (gl_CANONICALIZE_LGPL_SEPARATE): New macro.
5010
5011 2007-03-03  Bruno Haible  <bruno@clisp.org>
5012
5013         * lib/xreadlink.c: Include <unistd.h> unconditionally.
5014         * modules/xreadlink (Depends-on): Add unistd.
5015         * modules/xreadlink-with-size (Depends-on): Likewise.
5016
5017 2007-03-03  Bruno Haible  <bruno@clisp.org>
5018
5019         * m4/setenv.m4 (gl_FUNC_SETENV, gl_FUNC_UNSETENV): New macros,
5020         extracted from gt_FUNC_SETENV.
5021         (gt_FUNC_SETENV): Remove macro.
5022         * modules/setenv (configure.ac): Add gl_FUNC_SETENV, gl_FUNC_UNSETENV,
5023         remove gt_FUNC_SETENV.
5024
5025 2007-03-03  Bruno Haible  <bruno@clisp.org>
5026
5027         * m4/relocatable-lib.m4 (gl_RELOCATABLE_LIBRARY): Define
5028         ENABLE_RELOCATABLE here.
5029         * m4/relocatable.m4 (gl_RELOCATABLE_BODY): Don't define it here.
5030
5031 2007-03-03  Bruno Haible  <bruno@clisp.org>
5032
5033         * modules/rbtreehash-list-tests (Depends-on): Add progname.
5034         * tests/test-rbtreehash_list.c: Include progname.h.
5035         (main): Call set_program_name.
5036
5037         * modules/rbtree-oset-tests (Depends-on): Add progname.
5038         * tests/test-rbtree_oset.c: Include progname.h.
5039         (main): Call set_program_name.
5040
5041         * modules/rbtree-list-tests (Depends-on): Add progname.
5042         * tests/test-rbtree_list.c: Include progname.h.
5043         (main): Call set_program_name.
5044
5045         * modules/linked-list-tests (Depends-on): Add progname.
5046         * tests/test-linked_list.c: Include progname.h.
5047         (main): Call set_program_name.
5048
5049 2007-03-03  Bruno Haible  <bruno@clisp.org>
5050
5051         * lib/glob-libc.h (_Restrict_): New macro, copied from lib/regex.h.
5052         All uses of __restrict changed to _Restrict_.
5053         * lib/glob_.h (__restrict): Remove macro.
5054
5055 2007-03-02  Bruno Haible  <bruno@clisp.org>
5056
5057         * modules/gettext (configure.ac): Require gettext infrastructure
5058         from version 0.16.1.
5059
5060 2007-03-02  Bruno Haible  <bruno@clisp.org>
5061
5062         * modules/linkedhash-list-tests (Depends-on): Add progname.
5063         * tests/test-linkedhash_list.c: Include progname.h.
5064         (main): Call set_program_name.
5065
5066         * modules/carray-list-tests (Depends-on): Add progname.
5067         * tests/test-carray_list.c: Include progname.h.
5068         (main): Call set_program_name.
5069
5070         * modules/avltreehash-list-tests (Depends-on): Add progname.
5071         * tests/test-avltreehash_list.c: Include progname.h.
5072         (main): Call set_program_name.
5073
5074         * modules/avltree-oset-tests (Depends-on): Add progname.
5075         * tests/test-avltree_oset.c: Include progname.h.
5076         (main): Call set_program_name.
5077
5078         * modules/avltree-list-tests (Depends-on): Add progname.
5079         * tests/test-avltree_list.c: Include progname.h.
5080         (main): Call set_program_name.
5081
5082         * modules/array-oset-tests (Depends-on): Add progname.
5083         * tests/test-array_oset.c: Include progname.h.
5084         (main): Call set_program_name.
5085
5086         * modules/array-list-tests (Depends-on): Add progname.
5087         * tests/test-array_list.c: Include progname.h.
5088         (main): Call set_program_name.
5089
5090         * modules/argp-tests (Depends-on): Add progname.
5091         * tests/test-argp.c: Include argp.h first. Include progname.h.
5092         (main): Call set_program_name.
5093
5094 2007-03-02  Paul Eggert  <eggert@cs.ucla.edu>
5095
5096         * doc/gnulib-tool.texi (Initial import): Reword description of
5097         _FILE_OFFSET_BITS and _GNU_SOURCE, since they sometimes have a
5098         limited effect even if defined after the first system include.
5099
5100 2007-03-01  Bruno Haible  <bruno@clisp.org>
5101
5102         * build-aux/config.libpath: Update to libtool-1.5.22.
5103         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
5104
5105 2007-03-01  Bruno Haible  <bruno@clisp.org>
5106
5107         * doc/relocatable-maint.texi: Recommend to set foo_CPPFLAGS, not
5108         foo_CFLAGS.
5109         Reported by Ralf Wildenhues.
5110
5111 2007-03-01  Bruno Haible  <bruno@clisp.org>
5112
5113         * build-aux/install-reloc: Remove object files left over by some
5114         compilers.
5115         Reported by Ralf Wildenhues.
5116
5117 2007-03-01  Bruno Haible  <bruno@clisp.org>
5118
5119         * build-aux/install-reloc: Break long lines.
5120
5121 2007-03-01  Bruno Haible  <bruno@clisp.org>
5122
5123         * doc/relocatable.texi: Document that it may not work on OpenBSD.
5124         Reported by Ralf Wildenhues.
5125
5126 2007-03-01  Bruno Haible  <bruno@clisp.org>
5127
5128         * doc/gnulib-tool.texi (Initial import): Remove paragraph about
5129         include ordering constraints.
5130
5131 2007-03-01  Paul Eggert  <eggert@cs.ucla.edu>
5132
5133         Followup to the 2007-02-12 patch, using suggestions from Bruno Haible in
5134         <http://lists.gnu.org/archive/html/bug-gnulib/2007-02/msg00136.html>.
5135         * doc/gnulib-tool.texi (Initial import): Mention _FILE_OFFSET_BITS
5136         as another example.
5137         * lib/time_.h: Fix misspelling.
5138         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP):
5139         Require gl_HEADER_TIME_H_DEFAULTS.
5140         * m4/strptime.m4 (gl_FUNC_STRPTIME): Likewise.
5141         * m4/time_r.m4 (gl_TIME_R): Likewise.
5142         * m4/timegm.m4 (gl_FUNC_TIMEGM): Likewise.
5143
5144 2007-03-01  Bruno Haible  <bruno@clisp.org>
5145
5146         * m4/utimecmp.m4 (gl_UTIMECMP): Don't require gl_TIMESPEC.
5147         * m4/utimens.m4 (gl_UTIMENS): Likewise.
5148
5149 2007-03-01  Jim Meyering  <jim@meyering.net>
5150
5151         * modules/xreadlink (Maintainer): Add my name.
5152         * modules/xreadlink-with-size (Depends-on): Alphabetize.
5153
5154 2007-02-26  Ben Pfaff  <blp@cs.stanford.edu>
5155             Bruno Haible  <bruno@clisp.org>
5156
5157         * build-aux/install-reloc: Compile also c-ctype.c.
5158         * build-aux/relocatable.sh.in: New file.
5159         * doc/relocatable.texi: New file.
5160         * doc/relocatable-maint.texi: New file.
5161         * doc/gnulib.texi: Include relocatable-maint.texi.
5162         * lib/progreloc.c: Include unistd.h unconditionally.
5163         * lib/relocwrapper.c: Include unistd.h unconditionally.
5164         Include c-ctype.h.
5165         (add_dotbin): Use c_tolower.
5166         * m4/relocatable-lib.m4: New file, extracted from m4/relocatable.m4.
5167         (gl_RELOCATABLE_LIBRARY): Renamed from AC_RELOCATABLE_LIBRARY.
5168         (gl_RELOCATABLE_NOP): Renamed from AC_RELOCATABLE_NOP.
5169         * m4/relocatable.m4 (AC_RELOCATABLE_LIBRARY, AC_RELOCATABLE_NOP): Move
5170         to m4/relocatable-lib.m4.
5171         (gl_RELOCATABLE): Renamed from AC_RELOCATABLE. Set also
5172         RELOCATABLE_CONFIG_H_DIR, RELOCATABLE_SRC_DIR, RELOCATABLE_BUILD_DIR.
5173         (gl_RELOCATABLE_BODY): Renamed from AC_RELOCATABLE_BODY. Don't
5174         require obsolete macro AC_EXEEXT. Don't check for unistd.h. Don't set
5175         SET_RELOCATABLE. Instead set RELOCATABLE_LDFLAGS, INSTALL_PROGRAM_ENV.
5176         * modules/relocatable: New file.
5177         * modules/relocatable-lib: New file.
5178         * modules/relocatable-script: New file.
5179
5180 2007-02-28  Bruno Haible  <bruno@clisp.org>
5181
5182         Import --enable-relocatable infrastructure.
5183         * build-aux/config.libpath: New file, from GNU gettext.
5184         * build-aux/install-reloc: New file, from GNU gettext.
5185         * build-aux/reloc-ldflags: New file, from GNU gettext.
5186         * lib/relocatable.h: New file, from GNU gettext.
5187         * lib/relocatable.c: New file, from GNU gettext.
5188         * lib/relocwrapper.c: New file, from GNU gettext.
5189         * m4/relocatable.m4: New file, from GNU gettext.
5190
5191 2007-02-28  Bruno Haible  <bruno@clisp.org>
5192
5193         * MODULES.html.sh (File system functions): Add xreadlink-with-size.
5194
5195         * modules/xreadlink: New file, from GNU gettext with modifications.
5196         * lib/xreadlink.c: New file, from GNU gettext.
5197         * lib/xreadlink.h: Add comments.
5198         (xreadlink): New declaration.
5199
5200         * modules/xreadlink-with-size: Renamed from modules/xreadlink.
5201         (Files): Remove m4/xreadlink.m4. Replace lib/xreadlink.c with
5202         lib/xreadlink-with-size.c.
5203         (configure.ac): Remove gl_XREADLINK invocation.
5204         (Makefile.am): Augment lib_SOURCES.
5205         * m4/xreadlink.m4: Remove file.
5206         * lib/xreadlink-with-size.c: Renamed from lib/xreadlink.c.
5207         (xreadlink_with_size): Renamed from xreadink.
5208         * lib/xreadlink.h (xreadlink_with_size): Renamed from xreadink.
5209         * modules/canonicalize (Depends-on): Replace xreadlink with
5210         xreadlink-with-size.
5211         * lib/canonicalize.c (canonicalize_filename_mode): Update.
5212
5213 2007-02-25  Jim Meyering  <jim@meyering.net>
5214
5215         * build-aux/announce-gen: When complaining about excess arguments,
5216         list them.
5217
5218 2007-02-25  Paul Eggert  <eggert@cs.ucla.edu>
5219
5220         * README: Document signed integer overflow situation more
5221         accurately.
5222
5223 2007-02-25  Bruno Haible  <bruno@clisp.org>
5224
5225         * lib/vasnprintf.c (VASNPRINTF): Fix estimate of size needed for a
5226         'a' or 'A' conversion.
5227
5228 2007-02-25  Bruno Haible  <bruno@clisp.org>
5229
5230         * modules/filename: Renamed from modules/pathname.
5231         (Files): Replace lib/pathname.h with lib/filename.h. Replace
5232         lib/concatpath.c with lib/concat-filename.c.
5233         (Makefile.am): Update.
5234         (Include): Replace pathname.h with filename.h.
5235         * lib/filename.h: Renamed from lib/pathname.h.
5236         (concatenated_filename): Renamed from concatenated_pathname.
5237         * lib/concat-filename.c: Renamed from lib/concatpath.c.
5238         (concatenated_filename): Renamed from concatenated_pathname.
5239         * lib/findprog.c: Include filename.h instead of pathname.h.
5240         (find_in_path): Update.
5241         * lib/javacomp.c: Include filename.h instead of pathname.h.
5242         (is_envjavac_gcj43_usable, is_envjavac_oldgcj_14_14_usable,
5243         is_envjavac_oldgcj_14_13_usable, is_envjavac_nongcj_usable,
5244         is_gcj_present, is_gcj43_usable, is_oldgcj_14_14_usable,
5245         is_oldgcj_14_13_usable, is_javac_usable): Update.
5246         * lib/javaexec.c: Include filename.h instead of pathname.h.
5247         (execute_java_class): Update.
5248         * modules/findprog: Update.
5249         * modules/javacomp: Update.
5250         * modules/javaexec: Update.
5251         * MODULES.html.sh (File system functions): Add 'filename', remove
5252         'pathname'.
5253
5254 2007-02-25  Bruno Haible  <bruno@clisp.org>
5255
5256         * modules/printf-frexpl-tests: New file.
5257         * tests/test-printf-frexpl.c: New file.
5258
5259         * modules/printf-frexpl: New file.
5260         * lib/printf-frexpl.h: New file.
5261         * lib/printf-frexpl.c: New file.
5262         * m4/printf-frexpl.m4: New file.
5263
5264 2007-02-25  Bruno Haible  <bruno@clisp.org>
5265
5266         * modules/printf-frexp-tests: New file.
5267         * tests/test-printf-frexp.c: New file.
5268
5269         * modules/printf-frexp: New file.
5270         * lib/printf-frexp.h: New file.
5271         * lib/printf-frexp.c: New file.
5272         * m4/printf-frexp.m4: New file.
5273
5274 2007-02-25  Bruno Haible  <bruno@clisp.org>
5275
5276         Assume automake >= 1.10 for the tests.
5277         * modules/arcfour-tests (TESTS): Remove $(EXEEXT) suffix.
5278         * modules/arctwo-tests: Likewise.
5279         * modules/argp-tests: Likewise.
5280         * modules/avltree-list-tests: Likewise.
5281         * modules/avltree-oset-tests: Likewise.
5282         * modules/avltreehash-list-tests: Likewise.
5283         * modules/carray-list-tests: Likewise.
5284         * modules/crc-tests: Likewise.
5285         * modules/des-tests: Likewise.
5286         * modules/gc-arcfour-tests: Likewise.
5287         * modules/gc-arctwo-tests: Likewise.
5288         * modules/gc-des-tests: Likewise.
5289         * modules/gc-hmac-md5-tests: Likewise.
5290         * modules/gc-hmac-sha1-tests: Likewise.
5291         * modules/gc-md2-tests: Likewise.
5292         * modules/gc-md4-tests: Likewise.
5293         * modules/gc-md5-tests: Likewise.
5294         * modules/gc-pbkdf2-sha1-tests: Likewise.
5295         * modules/gc-rijndael-tests: Likewise.
5296         * modules/gc-sha1-tests: Likewise.
5297         * modules/gc-tests: Likewise.
5298         * modules/getaddrinfo-tests: Likewise.
5299         * modules/hmac-md5-tests: Likewise.
5300         * modules/hmac-sha1-tests: Likewise.
5301         * modules/linked-list-tests: Likewise.
5302         * modules/linkedhash-list-tests: Likewise.
5303         * modules/lock-tests: Likewise.
5304         * modules/md2-tests: Likewise.
5305         * modules/md4-tests: Likewise.
5306         * modules/md5-tests: Likewise.
5307         * modules/rbtree-list-tests: Likewise.
5308         * modules/rbtree-oset-tests: Likewise.
5309         * modules/rbtreehash-list-tests: Likewise.
5310         * modules/read-file-tests: Likewise.
5311         * modules/rijndael-tests: Likewise.
5312         * modules/stdint-tests: Likewise.
5313         * modules/tls-tests: Likewise.
5314
5315 2007-02-24  Bruno Haible  <bruno@clisp.org>
5316
5317         * lib/isnanl.h (isnanl): Define through isnan if isnan is a macro.
5318         * m4/isnan.m4 (gl_FUNC_ISNAN_NO_LIBM): Don't check for isnan as a
5319         function; instead check whether isnan with a double argument links.
5320         * m4/isnanl.m4 (gl_FUNC_ISNANL_NO_LIBM): Don't check for isnanl as a
5321         function; instead check whether isnan with a 'long double' argument
5322         links.
5323         Reported by Eric Blake <ebb9@byu.net>.
5324
5325 2007-02-24  Bruno Haible  <bruno@clisp.org>
5326
5327         * lib/isnan.c: Support the 'long double' case if USE_LONG_DOUBLE is
5328         defined.
5329         * lib/isnanl.c: Remove all code. Just include isnan.c.
5330         * modules/isnanl-nolibm (Files): Add lib/isnan.c.
5331
5332 2007-02-25  Jim Meyering  <jim@meyering.net>
5333
5334         Avoid conflicting types for 'unsetenv' on FreeBSD.
5335         * lib/putenv.c (_unsetenv): Rename from "unsetenv", to avoid
5336         conflicting with FreeBSD's (5.0 and 6.1) function declaration
5337         in stdlib.h.
5338
5339 2007-02-24  Bruno Haible  <bruno@clisp.org>
5340
5341         * modules/isnanl-nolibm-tests: New file.
5342         * tests/test-isnanl.c: New file.
5343
5344         * modules/isnanl-nolibm: New file.
5345         * lib/isnanl.h: New file.
5346         * lib/isnanl.c: New file.
5347         * m4/isnanl.m4: New file.
5348
5349 2007-02-24  Bruno Haible  <bruno@clisp.org>
5350
5351         * modules/isnan-nolibm-tests: New file.
5352         * tests/test-isnan.c: New file.
5353
5354         * modules/isnan-nolibm: New file.
5355         * lib/isnan.h: New file.
5356         * lib/isnan.c: New file.
5357         * m4/isnan.m4: New file.
5358
5359 2007-02-24  Bruno Haible  <bruno@clisp.org>
5360
5361         * lib/frexpl.c (frexpl): Correct return values for x = 1.0L. Don't
5362         assume that an exponent fits in 20 bits.
5363
5364 2007-02-24  Jim Meyering  <jim@meyering.net>
5365
5366         * m4/regex.m4: Update the description of the configure-time option,
5367         --without-included-regex, to state accurately what the defaults are,
5368         and perhaps to give people an idea why using this option is risky.
5369
5370 2007-02-24  Paul Eggert  <eggert@cs.ucla.edu>
5371
5372         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Check for a nanosleep that
5373         loops on small arguments.  This attempts to avoid the problem
5374         Bruno Haible reported for AIX 4.3.2 in
5375         <http://lists.gnu.org/archive/html/bug-gnulib/2007-02/msg00309.html>.
5376
5377 2007-02-23  Bruno Haible  <bruno@clisp.org>
5378
5379         * m4/perl.m4 (gl_PERL): Require version 5.005, not 5.003.
5380         Needed for help2man.
5381
5382 2007-02-23  Karl Berry  <karl@gnu.org>
5383
5384         * doc/gnulib-tool.texi (CVS Issues): mention that when foo_.h
5385         exists, foo.h should be cvs-ignored, not committed.
5386
5387 2007-02-23  Eric Blake  <ebb9@byu.net>
5388
5389         * lib/getdate.h (includes):  Include <time.h>, not "timespec.h".
5390         * lib/stat-time.h (includes): Likewise.
5391         * lib/utimecmp.c (includes): Likewise.
5392         * lib/utimens.h (includes): Likewise.
5393         * lib/getdate.y (includes): Also include "timespec.h" for use
5394         internal to the module.
5395         * modules/utimens (Depends-on): Revert yesterday's patch.
5396         * modules/nanosleep (Depends-on): Add missing dependency.
5397
5398 2007-02-22  Bruno Haible  <bruno@clisp.org>
5399
5400         * lib/glob.c: Don't include getlogin_r.h.
5401
5402 2007-02-22  Jim Meyering  <jim@meyering.net>
5403
5404         * modules/utimens (Depends-on): Add timespec, required for
5405         utimens.h's inclusion of timespec.h.
5406
5407 2007-02-21  Paul Eggert  <eggert@cs.ucla.edu>
5408
5409         * lib/getcwd.c (__getcwd): Undo previous change; it mishandled
5410         long unreadable paths in GNU/Linux.  Problem reported by Andreas
5411         Schwab in
5412         <http://lists.gnu.org/archive/html/bug-gnulib/2007-02/msg00261.html>.
5413         I'll try to think of a better way to fix the Solaris problem.
5414
5415         * lib/getcwd.c (__getcwd): Don't assume getcwd (NULL, 0) works
5416         like glibc; on Solaris 10, it fails with errno == EINVAL.
5417         POSIX says the behavior is unspecified if the first argument is NULL,
5418         so play it safe and never pass NULL to the system getcwd.
5419
5420 2007-02-21  Jim Meyering  <jim@meyering.net>
5421
5422         * lib/gettimeofday.c (rpl_gettimeofday): Remove declaration
5423         of gettimeofday.  It would conflict with the one now always
5424         provided via sys_time_.h.  Reported by Matthew Woehlke, as
5425         an IRIX 6.5 build failure.
5426
5427 2007-02-20  Paul Eggert  <eggert@cs.ucla.edu>
5428
5429         Minor fixups to port to Solaris 10 with Sun C 5.8.
5430         * lib/getcwd.c [!_LIBC]: Include dirfd.h, since we use dirfd.
5431         * modules/getcwd (Depends-on): Add dirfd.
5432         * lib/putenv.c (putenv): #undef it.
5433         (rpl_putenv): New decl.
5434         (malloc, free): Include <stdlib.h> rather than prototyping separately.
5435
5436 2007-02-20  Bruno Haible  <bruno@clisp.org>
5437
5438         * modules/stdio-tests: New file.
5439         * tests/test-stdio.c: New file.
5440
5441         * modules/vsnprintf (Files): Remove lib/vsnprintf.h.
5442         (Depends-on): Add stdio.
5443         (configure.ac): Invoke gl_STDIO_MODULE_INDICATOR.
5444         (Include): Use <stdio.h> instead of vsnprintf.h.
5445         * m4/vsnprintf.m4 (gl_FUNC_VSNPRINTF): Require gl_STDIO_H_DEFAULTS. Set
5446         HAVE_DECL_VSNPRINTF.
5447         * lib/vsnprintf.c: Include <stdio.h> instead of vsnprintf.h.
5448
5449         * modules/snprintf (Files): Remove lib/snprintf.h.
5450         (Depends-on): Add stdio.
5451         (configure.ac): Invoke gl_STDIO_MODULE_INDICATOR.
5452         (Include): Use <stdio.h> instead of snprintf.h.
5453         * m4/snprintf.m4 (gl_FUNC_SNPRINTF): Require gl_STDIO_H_DEFAULTS. Set
5454         HAVE_DECL_SNPRINTF.
5455         * lib/snprintf.c: Include <stdio.h> instead of snprintf.h.
5456         * lib/getaddrinfo.c: Likewise.
5457
5458         * modules/stdio: New file.
5459         * lib/stdio_.h: New file, incorporating snprintf.h and vsnprintf.h.
5460         * lib/snprintf.h: Remove file.
5461         * lib/vsnprintf.h: Remove file.
5462         * lib/.cppi-disable: Remove snprintf.h.
5463         * m4/stdio_h.m4: New file.
5464         * MODULES.html.sh (Support for systems lacking ISO C 99): Add stdio.
5465
5466 2007-02-20  Jim Meyering  <jim@meyering.net>
5467
5468         * lib/ftruncate.c [HAVE_CHSIZE]: Document that this code is
5469         used by e.g., mingw.  From Bruno Haible.
5470
5471 2007-02-19  Bruno Haible  <bruno@clisp.org>
5472
5473         * lib/string_.h: Use "#pragma GCC system_header" to suppress some gcc
5474         warnings.
5475         Reported by Ben Pfaff <blp@cs.stanford.edu>.
5476
5477 2007-02-19  Bruno Haible  <bruno@clisp.org>
5478
5479         * m4/ftruncate.m4 (gl_FUNC_FTRUNCATE): Don't request a complaint mail
5480         from mingw users.
5481
5482 2007-02-19  Bruno Haible  <bruno@clisp.org>
5483
5484         * lib/stdlib_.h: Use "#pragma GCC system_header" to suppress some gcc
5485         warnings.
5486         Reported by Joel E. Denny <jdenny@ces.clemson.edu> via Paul Eggert.
5487
5488 2007-02-19  Jim Meyering  <jim@meyering.net>
5489
5490         Don't use FD after a successful "fdopendir (fd)".
5491         * lib/getcwd.c (__getcwd) [AT_FDCWD]: fdopendir (fd) usually closes fd.
5492         Reset it by calling dirfd on the just-obtained DIR*.
5493
5494         * m4/ftruncate.m4: Adjust comment to give this module a 3-year reprieve.
5495         Prompted by a report from Bruno Haible that mingw lacks ftruncate.
5496
5497 2007-02-18  Bruno Haible  <bruno@clisp.org>
5498
5499         * lib/readlink.c: Include <unistd.h>.
5500         * m4/readlink.m4 (gl_FUNC_READLINK): Require gl_UNISTD_H_DEFAULTS. Set
5501         HAVE_READLINK.
5502         * modules/readlink (Depends-on): Add unistd.
5503         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
5504         (Include): Add <unistd.h>.
5505
5506         * lib/getlogin_r.h: Remove file.
5507         * lib/getlogin_r.c: Include <unistd.h> instead of getlogin_r.h.
5508         * m4/getlogin_r.m4 (gl_GETLOGIN_R_SUBSTITUTE): Remove macro.
5509         (gl_GETLOGIN_R): Inline it here. Require gl_UNISTD_H_DEFAULTS. Set
5510         HAVE_DECL_GETLOGIN_R.
5511         * modules/getlogin_r (Files): Remove lib/getlogin_r.h.
5512         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
5513         (Include): Use <unistd.h> instead of getlogin_r.h.
5514
5515         * lib/getcwd.h: Remove file.
5516         * lib/getcwd.c: Include <unistd.h> instead of getcwd.h.
5517         * lib/xgetcwd.c: Likewise.
5518         * m4/getcwd.m4 (gl_FUNC_GETCWD): Require gl_UNISTD_H_DEFAULTS. Set
5519         REPLACE_GETCWD. Don't define __GETCWD_PREFIX.
5520         * modules/getcwd (Files): Remove lib/getcwd.h.
5521         (Depends-on): Add unistd.
5522         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
5523         (Include): Use <unistd.h> instad of getcwd.h.
5524
5525         * lib/ftruncate.c: Include <unistd.h> first.
5526         * m4/ftruncate.m4 (gl_FUNC_FTRUNCATE): Require gl_UNISTD_H_DEFAULTS.
5527         Set HAVE_FTRUNCATE.
5528         * modules/ftruncate (Depends-on): Add unistd.
5529         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
5530
5531         * lib/fchdir.c: Include <unistd.h> first.
5532         * lib/dirent_.h: Test REPLACE_FCHDIR, not FCHDIR_REPLACEMENT.
5533         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Require gl_UNISTD_H_DEFAULTS instead
5534         of gl_HEADER_UNISTD_DEFAULTS. Set REPLACE_FCHDIR. Don't set UNISTD_H.
5535         * modules/fchdir (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
5536         (Makefile.am): Substitute also REPLACE_FCHDIR into dirent.h.
5537
5538         * lib/dup2.c: Include <unistd.h> first.
5539         * m4/dup2.m4 (gl_FUNC_DUP2): Require gl_UNISTD_H_DEFAULTS. Set
5540         HAVE_DUP2.
5541         * modules/dup2 (Depends-on): Add unistd.
5542         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
5543
5544         * lib/chown.c: Include <unistd.h> first. Undefine chown later.
5545         * m4/chown.m4 (gl_FUNC_CHOWN): Require gl_UNISTD_H_DEFAULTS. Set
5546         REPLACE_CHOWN. Don't define chown as a macro here.
5547         * modules/chown (Depends-on): Add unistd.
5548         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
5549
5550         * lib/unistd_.h: Test HAVE_UNISTD_H determined at configure time.
5551         Add definition for GL_LINK_WARNING.
5552         (chown, dup2): New declarations.
5553         (fchdir): Test REPLACE_FCHDIR, not FCHDIR_REPLACEMENT. Provide optional
5554         link warning.
5555         (ftruncate): New declaration.
5556         (getcwd): New declaration, taken from old getcwd.h.
5557         (getlogin_r): New declaration, taken from old getlogin_r.h.
5558         (readlink): New declaration.
5559         * m4/unistd_h.m4 (gl_UNISTD_H): Renamed from gl_HEADER_UNISTD. Don't
5560         set UNISTD_H. Inline gl_PREREQ_UNISTD. Set HAVE_UNISTD_H.
5561         (gl_PREREQ_UNISTD): Remove macro.
5562         (gl_UNISTD_MODULE_INDICATOR): New macro.
5563         (gl_UNISTD_H_DEFAULTS): Renamed from gl_HEADER_UNISTD_DEFAULTS. Set
5564         many new variables. Don't set UNISTD_H.
5565         * modules/unistd (Description): Change.
5566         (Depends-on): Add link-warning.
5567         (configure.ac): Update.
5568         (Makefile.am): Create unistd.h always. Substitute many new variables
5569         into it.
5570
5571 2007-02-18  Bruno Haible  <bruno@clisp.org>
5572
5573         * lib/stdlib_.h (getsubopt): New declaration, copied from getsubopt.h.
5574         * modules/stdlib (stdlib.h): Also substitute GNULIB_GETSUBOPT and
5575         HAVE_GETSUBOPT.
5576         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Also initialize
5577         GNULIB_GETSUBOPT and HAVE_GETSUBOPT.
5578         * lib/getsubopt.h: Remove file.
5579         * modules/getsubopt (Files): Remove lib/getsubopt.h.
5580         (Depends-on): Add stdlib.
5581         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
5582         (Includes): Use <stdlib.h> instead of getsubopt.h.
5583         * m4/getsubopt.m4 (gl_FUNC_GETSUBOPT): Require gl_STDLIB_H_DEFAULTS.
5584         Set HAVE_GETSUBOPT.
5585         * lib/getsubopt.c: Don't include getsubopt.h.
5586
5587 2007-02-18  Bruno Haible  <bruno@clisp.org>
5588
5589         * modules/fchdir (Depends-on): Add dup2.
5590
5591 2007-02-18  Bruno Haible  <bruno@clisp.org>
5592
5593         * lib/stdlib_.h: Handle glibc's special invocation convention
5594         specially.
5595
5596 2007-02-18  Bruno Haible  <bruno@clisp.org>
5597
5598         * modules/stdlib-tests: New file.
5599         * tests/test-stdlib.c: New file.
5600
5601         * modules/mkstemp (Files): Remove lib/mkstemp.h.
5602         (Depends-on): Add stdlib.
5603         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
5604         (Includes): Use <stdlib.h> instead of mkstemp.h.
5605         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Require gl_STDLIB_H_DEFAULTS. Set
5606         REPLACE_MKSTEMP. Remove definition of __MKSTEMP_PREFIX.
5607         * lib/mkstemp.c: Don't include mkstemp.h.
5608         * lib/mkstemp-safer.c: Include <stdlib.h> instead of mkstemp.h.
5609         * lib/stdlib--.h: Don't include mkstemp.h.
5610
5611         * modules/mkdtemp (Files): Remove lib/mkdtemp.h.
5612         (Depends-on): Add stdlib.
5613         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
5614         (Includes): Use <stdlib.h> instead of mkdtemp.h.
5615         * m4/mkdtemp.m4 (gt_FUNC_MKDTEMP): Require gl_STDLIB_H_DEFAULTS. Set
5616         HAVE_MKDTEMP.
5617         * lib/mkdtemp.c: Don't include mkdtemp.h.
5618         * lib/clean-temp.c: Don't include mkdtemp.h.
5619
5620         * modules/exit (Files): Remove lib/exit.h.
5621         (Depends-on): Add stdlib.
5622         (Makefile.am): Remove lib_SOURCES.
5623         (Include): Use <stdlib.h> instead of exit.h.
5624         * lib/argmatch.c: Don't include exit.h.
5625         * lib/execute.c: Likewise.
5626         * lib/pagealign_alloc.c: Likewise.
5627         * lib/pipe.c: Likewise.
5628         * lib/wait-process.c: Likewise.
5629         * lib/copy-file.c: Include <stdlib.h> instead of exit.h.
5630         * lib/exitfail.c: Likewise.
5631         * lib/savewd.c: Likewise.
5632         * lib/xsetenv.c: Likewise.
5633
5634         * modules/stdlib: New file.
5635         * lib/stdlib_.h: New file, incorporating exit.h, mkdtemp.h, mkstemp.h
5636         and extra comments about mkstemp().
5637         * lib/exit.h: Remove file.
5638         * lib/mkdtemp.h: Remove file.
5639         * lib/mkstemp.h: Remove file.
5640         * m4/stdlib_h.m4: New file.
5641         * MODULES.html.sh (Support for systems lacking ANSI C 89): Add stdlib.
5642
5643 2007-02-18  Bruno Haible  <bruno@clisp.org>
5644
5645         * modules/math-tests: New file.
5646         * tests/test-math.c: New file.
5647
5648         * modules/math: New file.
5649         * modules/mathl (Files): Remove lib/mathl.h.
5650         (Depends-on): Add math.
5651         (Makefile.am): Don't mention mathl.h.
5652         (Include): Use <math.h> instead of mathl.h.
5653         * lib/math_.h: New file.
5654         * lib/mathl.h: Remove file.
5655         * lib/acosl.c: Include <config.h> and <math.h> first. Don't include
5656         mathl.h.
5657         * lib/asinl.c: Likewise.
5658         * lib/atanl.c: Likewise.
5659         * lib/ceill.c: Likewise.
5660         * lib/cosl.c: Likewise.
5661         * lib/expl.c: Likewise.
5662         * lib/floorl.c: Likewise.
5663         * lib/frexpl.c: Likewise.
5664         * lib/ldexpl.c: Likewise.
5665         * lib/logl.c: Likewise.
5666         * lib/sincosl.c: Likewise.
5667         * lib/sinl.c: Likewise.
5668         * lib/sqrtl.c: Likewise.
5669         * lib/tanl.c: Likewise.
5670         * lib/trigl.c: Likewise.
5671         * m4/math_h.m4: New file.
5672         * MODULES.html.sh (Mathematics): Add math.
5673
5674 2007-02-17  Bruno Haible  <bruno@clisp.org>
5675
5676         * modules/wctype-tests: New file.
5677         * tests/test-wctype.c: New file.
5678
5679         * modules/wchar-tests: New file.
5680         * tests/test-wchar.c: New file.
5681
5682         * modules/unistd-tests: New file.
5683         * tests/test-unistd.c: New file.
5684
5685         * modules/time-tests: New file.
5686         * tests/test-time.c: New file.
5687
5688         * modules/sysexits-tests: New file.
5689         * tests/test-sysexits.c: New file.
5690
5691         * modules/sys_time-tests: New file.
5692         * tests/test-sys_time.c: New file.
5693
5694         * modules/sys_stat-tests: New file.
5695         * tests/test-sys_stat.c: New file.
5696
5697         * modules/sys_socket-tests: New file.
5698         * tests/test-sys_socket.c: New file.
5699
5700         * modules/sys_select-tests: New file.
5701         * tests/test-sys_select.c: New file.
5702
5703         * modules/string-tests: New file.
5704         * tests/test-string.c: New file.
5705
5706         * modules/stdbool-tests: New file.
5707         * tests/test-stdbool.c: New file.
5708
5709         * modules/netinet_in-tests: New file.
5710         * tests/test-netinet_in.c: New file.
5711
5712         * modules/inttypes-tests: New file.
5713         * tests/test-inttypes.c: New file.
5714
5715         * modules/fcntl-tests: New file.
5716         * tests/test-fcntl.c: New file.
5717
5718         * modules/byteswap-tests: New file.
5719         * tests/test-byteswap.c: New file.
5720
5721         * modules/arpa_inet-tests: New file.
5722         * tests/test-arpa_inet.c: New file.
5723
5724 2007-02-17  Bruno Haible  <bruno@clisp.org>
5725
5726         * lib/inttypes_.h: Add definition for GL_LINK_WARNING.
5727         (imaxabs, imaxdiv, strtoimax, strtoumax): Don't declare the function
5728         if the corresponding module is not enabled. Emit link warnings if
5729         the function is used nevertheless.
5730         * m4/inttypes.m4 (gl_INTTYPES_H): Never use the existing <inttypes.h>.
5731         Don't AC_SUBST HAVE_DECL_IMAXABS, HAVE_DECL_IMAXDIV,
5732         HAVE_DECL_STRTOIMAX, HAVE_DECL_STRTOUMAX.
5733         (gl_INTTYPES_MODULE_INDICATOR, gl_INTTYPES_H_DEFAULTS): New macros.
5734         * modules/inttypes (Depends-on): Add link-warning.
5735         (Makefile.am): Copy the contents of build-aux/link-warning.h into
5736         inttypes.h. Substitute also GNULIB_IMAXABS, GNULIB_IMAXDIV,
5737         GNULIB_STRTOIMAX, GNULIB_STRTOUMAX.
5738         * modules/imaxabs (configure.ac): Invoke gl_INTTYPES_MODULE_INDICATOR.
5739         * modules/imaxdiv (configure.ac): Likewise.
5740         * modules/strtoimax (configure.ac): Likewise.
5741         * modules/strtoumax (configure.ac): Likewise.
5742
5743 2007-02-17  Bruno Haible  <bruno@clisp.org>
5744
5745         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Include the contents of
5746         gl_STRING_MODULE_INDICATOR_DEFAULTS.
5747         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Remove macro.
5748         (gl_HEADER_STRING_H_BODY, gl_STRING_MODULE_INDICATOR): Update.
5749
5750 2007-02-17  Bruno Haible  <bruno@clisp.org>
5751
5752         * modules/link-warning: New file.
5753         * build-aux/link-warning.h: New file, extracted from lib/string_.h.
5754         * lib/string_.h (GL_LINK_WARNING): Remove definition.
5755         * modules/string (Depends-on): Add link-warning.
5756         (Makefile.am): Copy the contents of build-aux/link-warning.h into
5757         string.h.
5758         * MODULES.html.sh (Support for building libraries and executables): Add
5759         link-warning.
5760
5761 2007-02-17  Bruno Haible  <bruno@clisp.org>
5762
5763         * lib/string_.h (memmem, mempcpy, memrchr, stpcpy, stpncpy, strcasecmp,
5764         strncasecmp, strchr, strchrnul, strdup, strndup, strnlen, strcspn,
5765         strpbrk, strspn, strrchr, strsep, strstr, strcasestr, strtok_r): Break
5766         long lines.
5767
5768 2007-02-17  Ben Pfaff  <blp@cs.stanford.edu>
5769             Bruno Haible  <bruno@clisp.org>
5770
5771         * modules/tmpfile: New file.
5772         * lib/tmpfile.c: New file.
5773         * m4/tmpfile.m4: New file.
5774         * MODULES.html.sh (func_all_modules): New section "Input/output".
5775
5776 2007-02-15  Bruno Haible  <bruno@clisp.org>
5777
5778         * lib/clean-temp.c [WIN32 && !CYGWIN]: Include <windows.h>.
5779         (supports_delete_on_close): New function.
5780         (open_temp, fopen_temp): Use _O_TEMPORARY when supported.
5781
5782 2007-02-14  Bruno Haible  <bruno@clisp.org>
5783
5784         * modules/mbspcasecmp-tests: New file.
5785         * tests/test-mbspcasecmp.sh: New file.
5786         * tests/test-mbspcasecmp.c: New file.
5787
5788         New module mbspcasecmp.
5789         * modules/mbspcasecmp: New file.
5790         * lib/mbspcasecmp.c: New file.
5791         * lib/string_.h (strncasecmp): Change warning message.
5792         (mbspcasecmp): New declaration.
5793         * m4/mbspcasecmp.m4: New file.
5794         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
5795         GNULIB_MBSPCASECMP.
5796         * modules/string (string.h): Also substitute GNULIB_MBSPCASECMP.
5797         * MODULES.html.sh (Internationalization functions): Add mbspcasecmp.
5798
5799 2007-02-14  Bruno Haible  <bruno@clisp.org>
5800
5801         * modules/mbsncasecmp-tests: New file.
5802         * tests/test-mbsncasecmp.sh: New file.
5803         * tests/test-mbsncasecmp.c: New file.
5804
5805         New module mbsncasecmp.
5806         * modules/mbsncasecmp: New file.
5807         * lib/mbsncasecmp.c: New file.
5808         * lib/string_.h (mbsncasecmp): New declaration.
5809         * m4/mbsncasecmp.m4: New file.
5810         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
5811         GNULIB_MBSNCASECMP.
5812         * modules/string (string.h): Also substitute GNULIB_MBSNCASECMP.
5813         * MODULES.html.sh (Internationalization functions): Add mbsncasecmp.
5814
5815 2007-02-14  Paul Eggert  <eggert@cs.ucla.edu>
5816
5817         * lib/exclude.c (FNM_EXTMATCH): Define if system does not.
5818         Verify that it doesn't overlap with our flags.
5819         (fnmatch_no_wildcards): Don't use strcasecmp or strncasecmp, which
5820         do not have the desired effect in multibyte locales; instead, use
5821         mbscasecmp.
5822         * modules/exclude (Depends-on): Depend on mbscasecmp, not strcase.
5823         Add dependency on xalloc.  Depend on fnmatch, not fnmatch-gnu, since
5824         we don't require GNU fnmatch ourselves (if our users require it, they
5825         should do so explicitly).
5826
5827         Fix regex code so it doesn't rely on strcasecmp.
5828         * lib/regex_internal.h: Include <langinfo.h> only if _LIBC is defined.
5829         Otherwise, include gnulib's langinfo.h.
5830         * lib/regcomp.c (init_dfa): Don't use strcasecmp, as it can have
5831         undesirable behavior in non-C locales.  Instead, rely on localecharset.
5832         * m4/regex.m4 (gl_PREREQ_REGEX): Don't require AM_LANGINFO_CODESET.
5833         * modules/regex (FILES): Remove m4/codeset.m4.
5834         (Depends-on): Add localcharset.  Remove strcase.
5835
5836 2007-02-13  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5837
5838         * m4/unlinkdir.m4 (gl_UNLINKDIR): Fix m4 quoting bug.
5839         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Likewise.
5840
5841 2007-02-13  Bruno Haible  <bruno@clisp.org>
5842
5843         * m4/intdiv0.m4 (gt_INTDIV0): Assume ANSI C. Fix underquoting bug.
5844         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
5845
5846 2007-02-12  Bruno Haible  <bruno@clisp.org>
5847
5848         * lib/string_.h (memmem, mempcpy, memrchr, stpcpy, stpncpy, strchrnul,
5849         strdup, strndup, strnlen, strpbrk, strsep, strtok_r): If
5850         GNULIB_POSIXCHECK and the gnulib module not enabled, provoke a link-
5851         time warning rather than a link error.
5852
5853 2007-02-12  Bruno Haible  <bruno@clisp.org>
5854
5855         * m4/locale-fr.m4 (gt_LOCALE_FR): Fix m4 quoting bug.
5856         * m4/locale-zh.m4 (gt_LOCALE_ZH_CN): Likewise.
5857         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
5858
5859 2007-02-12  Paul Eggert  <eggert@cs.ucla.edu>
5860
5861         * lib/string_.h (strncasecmp): Fix typo: this macro takes 3
5862         args, not 2.
5863
5864 2007-02-12  Paul Eggert  <eggert@cs.ucla.edu>
5865
5866         New module 'time', so that apps can include <time.h> as per
5867         POSIX and GNU instead of separate include files like time_r.h
5868         and timegm.h.  This implementation tries out a simpler approach
5869         for replacing decls in standard include files (as compared to
5870         the string module), somewhat as an experiment.
5871
5872         * config/srclist.txt: Comment out mktime.c for now.
5873         * doc/gnulib-tool.texi (Initial import): Don't use time_r as an example
5874         since it doesn't apply any more.  Use generic wording instead.
5875         * MODULES.html.sh (Support for systems lacking POSIX:2001): New module
5876         'time'.
5877         * lib/time_.h, m4/time_h.m4, modules/time: New files.
5878         * lib/strptime.h, lib/time_r.h, lib/timegm.h: Remove.
5879         * lib/mktime.c: Include config.h depending on _LIBC, not HAVE_CONFIG_H.
5880         Don't include <sys/types.h>; no longer needed since we assume C89.
5881         * lib/mktime.c: Don't include "time_r.h"; no longer needed.
5882         * lib/strftime.c: Likewise.
5883         * lib/time_r.c: Likewise.
5884         * lib/nanosleep.c (nanosleep): #undef after include files, not before.
5885         * lib/nanosleep.c: Include <time.h> first, to check interface.
5886         * lib/strptime.c: Likewise.
5887         * lib/time_r.c: Likewise.
5888         * lib/timegm.c: Likewise.
5889         * lib/strptime.c: Don't include strptime.h or time_r.h; no longer
5890         needed.
5891         * lib/timegm.c: Don't include timegm.h; no longer needed.
5892         * lib/timespec.h: Don't include <sys/time.h> before <time.h>;
5893         time.h now handles any problems in that area.
5894         (struct timespec, nanosleep): Remove; time.h now arranges for these.
5895         * lib/xnanosleep.c: Don't include timespec.h; no longer needed now
5896         that time.h defines struct timespec.
5897         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Check that nanosleep is declared.
5898         Set REPLACE_NANOSLEEP.  Don't AC_DEFINE nanosleep; the time module now
5899         handles that.
5900         * m4/strptime.m4 (gl_FUNC_STPRTIME): Set REPLACE_STRPTIME.
5901         * m4/time_r.m4 (gl_TIME_R): Don't define HAVE_TIME_R_POSIX; no longer
5902         needed.  Set REPLACE_LOCALTIME.
5903         * m4/timegm.m4 (gl_FUNC_TIMEGM): Set REPLACE_TIMEGM.
5904         * m4/timespec.m4 (gl_CHECK_TYPE_STRUCT_TIMESPEC): Move to time_h.m4.
5905         (gl_TIMESPEC): Don't check for sys/time.h or struct timespec or
5906         nanosleep; time_h.m4 now does that.  Don't require
5907         gl_USE_SYSTEM_EXTENSIONS; no longer needed directly, and the time
5908         module handles this now.
5909         * modules/getdate (Depends-on): Remove timespec.  Add time.
5910         * modules/nanosleep (Depends-on): Likewise.
5911         * modules/stat-time (Depends-on): Likewise.
5912         * modules/nanosleep (Include): Include time.h, not timespec.h.
5913         * modules/strptime (Files): Remove lib/strptime.h.
5914         (Depends-on): Add extensions, time.
5915         (Include): Include time.h, not strptime.h.
5916         * modules/time_r (Files): Remove lib/time_r.h.
5917         (Depends-on): Add time.
5918         (Include): Include time.h, not time_r.h.
5919         * modules/timegm: Likewise.
5920         * modules/timespec (Description): Now does timespec-related decls
5921         of our own, instead of struct timespec itself.
5922         (Depends-on): Add time; remove extensions.
5923         (Maintainer): Add self.
5924         * modules/utimecmp (Depends-on): Add time; remove timespec.
5925         * modules/utimens (Depends-on): Likewise.
5926         * modules/xnanosleep (Depends-on): Likewise.
5927
5928 2007-02-11  Bruno Haible  <bruno@clisp.org>
5929
5930         * lib/c-strstr.c: Include allocsa.h.
5931         (knuth_morris_pratt): Use allocsa/freesa instead of malloc/free.
5932         * lib/c-strcasestr.c: Include allocsa.h.
5933         (knuth_morris_pratt): Use allocsa/freesa instead of malloc/free.
5934         * lib/strcasestr.c: Include allocsa.h.
5935         (knuth_morris_pratt): Use allocsa/freesa instead of malloc/free.
5936         * lib/mbsstr.c: Include allocsa.h.
5937         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): Use
5938         allocsa/freesa instead of malloc/free.
5939         * lib/mbscasestr.c: Include allocsa.h.
5940         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): Use
5941         allocsa/freesa instead of malloc/free.
5942         * modules/c-strstr (Depends-on): Add allocsa.
5943         * modules/c-strcasestr (Depends-on): Likewise.
5944         * modules/strcasestr (Depends-on): Likewise.
5945         * modules/mbsstr (Depends-on): Likewise.
5946         * modules/mbscasestr (Depends-on): Likewise.
5947
5948 2007-02-11  Bruno Haible  <bruno@clisp.org>
5949
5950         * lib/mbsspn.c (mbsspn): Fix bug. Remove unnecessary strlen call.
5951
5952         * modules/mbsspn-tests: New file.
5953         * tests/test-mbsspn.sh: New file.
5954         * tests/test-mbsspn.c: New file.
5955
5956 2007-02-11  Bruno Haible  <bruno@clisp.org>
5957
5958         * lib/mbspbrk.c (mbspbrk): Remove unneeded cast.
5959
5960         * modules/mbspbrk-tests: New file.
5961         * tests/test-mbspbrk.sh: New file.
5962         * tests/test-mbspbrk.c: New file.
5963
5964 2007-02-11  Bruno Haible  <bruno@clisp.org>
5965
5966         * lib/mbscspn.c (mbscspn): Remove unnecessary strlen call and
5967         unneeded cast.
5968
5969         * modules/mbscspn-tests: New file.
5970         * tests/test-mbscspn.sh: New file.
5971         * tests/test-mbscspn.c: New file.
5972
5973 2007-02-11  Bruno Haible  <bruno@clisp.org>
5974
5975         * modules/mbscasecmp-tests: New file.
5976         * tests/test-mbscasecmp.sh: New file.
5977         * tests/test-mbscasecmp.c: New file.
5978
5979 2007-02-11  Bruno Haible  <bruno@clisp.org>
5980
5981         Ensure O(n) worst-case complexity of mbscasestr.
5982         * lib/mbscasestr.c: Include stdbool.h.
5983         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): New
5984         functions.
5985         (mbscasestr): Add some bookkeeping. Invoke knuth_morris_pratt_* when
5986         the bookkeeping indicates that it's worth it.
5987         * modules/mbscasestr (Depends-on): Add stdbool, mbslen, strnlen.
5988
5989         * modules/mbscasestr-tests: New file.
5990         * tests/test-mbscasestr1.c: New file.
5991         * tests/test-mbscasestr2.sh: New file.
5992         * tests/test-mbscasestr2.c: New file.
5993         * tests/test-mbscasestr3.sh: New file.
5994         * tests/test-mbscasestr3.c: New file.
5995         * tests/test-mbscasestr4.sh: New file.
5996         * tests/test-mbscasestr4.c: New file.
5997         * m4/locale-tr.m4: New file.
5998
5999 2007-02-11  Bruno Haible  <bruno@clisp.org>
6000
6001         Ensure O(n) worst-case complexity of mbsstr.
6002         * lib/mbsstr.c: Include stdbool.h.
6003         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): New
6004         functions.
6005         (mbsstr): Add some bookkeeping. Invoke knuth_morris_pratt_* when the
6006         bookkeeping indicates that it's worth it.
6007         * modules/mbsstr (Depends-on): Add stdbool, mbslen, strnlen.
6008
6009         * modules/mbsstr-tests: New file.
6010         * tests/test-mbsstr1.c: New file.
6011         * tests/test-mbsstr2.sh: New file.
6012         * tests/test-mbsstr2.c: New file.
6013         * tests/test-mbsstr3.sh: New file.
6014         * tests/test-mbsstr3.c: New file.
6015         * m4/locale-fr.m4: New file.
6016
6017 2007-02-11  Bruno Haible  <bruno@clisp.org>
6018
6019         * lib/mbsrchr.c (mbsrchr): Fix bug.
6020
6021         * modules/mbsrchr-tests: New file.
6022         * tests/test-mbsrchr.sh: New file.
6023         * tests/test-mbsrchr.c: New file.
6024
6025 2007-02-11  Bruno Haible  <bruno@clisp.org>
6026
6027         * lib/mbschr.c (mbschr): Fix bug.
6028
6029         * modules/mbschr-tests: New file.
6030         * tests/test-mbschr.sh: New file.
6031         * tests/test-mbschr.c: New file.
6032         * m4/locale-zh.m4: New file.
6033
6034 2007-02-11  Bruno Haible  <bruno@clisp.org>
6035
6036         Support for copying multibyte string iterators.
6037         * lib/mbiter.h: Include <string.h>.
6038         (mbiter_multi_copy): New function.
6039         (mbi_copy): New macro.
6040         * lib/mbuiter.h: Include <string.h>.
6041         (mbuiter_multi_copy): New function.
6042         (mbui_copy): New macro.
6043
6044 2007-02-11  Bruno Haible  <bruno@clisp.org>
6045
6046         New module mbslen.
6047         * modules/mbslen: New file.
6048         * lib/mbslen.c: New file.
6049         * lib/string_.h (mbslen): New declaration.
6050         * m4/mbslen.m4: New file.
6051         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
6052         GNULIB_MBSLEN.
6053         * modules/string (string.h): Also substitute GNULIB_MBSLEN.
6054         * MODULES.html.sh (Internationalization functions): Add mbslen.
6055
6056 2007-02-11  Bruno Haible  <bruno@clisp.org>
6057
6058         Ensure O(n) worst-case complexity of strcasestr substitute.
6059         * lib/strcasestr.c: Include stdbool.h.
6060         (knuth_morris_pratt): New function.
6061         (strcasestr): Add some bookkeeping. Invoke knuth_morris_pratt when the
6062         bookkeeping indicates that it's worth it.
6063         * modules/strcasestr (Depends-on): Add stdbool, strnlen.
6064
6065         * modules/strcasestr-tests: New file.
6066         * tests/test-strcasestr.c: New file.
6067
6068 2007-02-11  Bruno Haible  <bruno@clisp.org>
6069
6070         Ensure O(n) worst-case complexity of c_strcasestr.
6071         * lib/c-strcasestr.c: Include stdbool.h, string.h.
6072         (knuth_morris_pratt): New function.
6073         (c_strcasestr): Add some bookkeeping. Invoke knuth_morris_pratt when
6074         the bookkeeping indicates that it's worth it.
6075         * modules/c-strcasestr (Depends-on): Add stdbool, strnlen.
6076
6077         * modules/c-strcasestr-tests: New file.
6078         * tests/test-c-strcasestr.c: New file.
6079
6080 2007-02-11  Bruno Haible  <bruno@clisp.org>
6081
6082         Ensure O(n) worst-case complexity of c_strstr.
6083         * lib/c-strstr.c: Include stdbool.h, string.h.
6084         (knuth_morris_pratt): New function.
6085         (c_strstr): Add some bookkeeping. Invoke knuth_morris_pratt when the
6086         bookkeeping indicates that it's worth it.
6087         * modules/c-strstr (Depends-on): Add stdbool, strnlen.
6088
6089         * lib/c-strstr.c: Complete rewrite for maintainability.
6090
6091         * modules/c-strstr-tests: New file.
6092         * tests/test-c-strstr.c: New file.
6093
6094 2007-02-11  Bruno Haible  <bruno@clisp.org>
6095
6096         * m4/javacomp.m4 (gt_JAVACOMP): Work around a 'tr' bug in coreutils
6097         5.2.1 and earlier, whereby \055 was treated just like the range
6098         delimiter '-'.
6099         Reported by Joel E. Denny <jdenny@ces.clemson.edu>.
6100
6101 2007-02-08  Bruno Haible  <bruno@clisp.org>
6102
6103         * modules/regex (Depends-on): Add stdbool.
6104         Reported by Dalibor Topic <robilad@kaffe.org>.
6105
6106 2007-02-05  Paul Eggert  <eggert@cs.ucla.edu>
6107
6108         * m4/regex.m4 (gl_REGEX): Check for glibc bug #3957.
6109         Prefer returning from main to exiting from it.
6110         Remove unnecessary parens after sizeof.
6111
6112 2007-02-05  Bruno Haible  <bruno@clisp.org>
6113
6114         New module mbssep.
6115         * modules/mbssep: New file.
6116         * lib/mbssep.c: New file.
6117         * lib/string_.h (strsep): Add a conditional link warning.
6118         (mbssep): New declaration.
6119         * m4/mbssep.m4: New file.
6120         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
6121         GNULIB_MBSSEP.
6122         * modules/string (string.h): Also substitute GNULIB_MBSSEP.
6123         * MODULES.html.sh (Internationalization functions): Add mbssep.
6124
6125 2007-02-05  Bruno Haible  <bruno@clisp.org>
6126
6127         * lib/strsep.c (strsep): Fix actions in case of no delimiters.
6128         Optimize search in case of 1 delimiter.
6129
6130 2007-02-05  Paolo Bonzini  <bonzini@gnu.org>
6131
6132         * lib/acl.h: Include sys/types.h before sys/acl.h.
6133
6134 2007-02-05  Paolo Bonzini  <bonzini@gnu.org>
6135
6136         Merge upstream fix for glibc bugzilla #3957:
6137
6138         2007-02-05  Jakub Jelinek  <jakub@redhat.com>
6139
6140         * lib/regcomp.c (parse_bracket_exp): Set '\n' bit rather than '\0'
6141         bit for RE_HAT_LISTS_NOT_NEWLINE.
6142         (build_charclass_op): Remove bogus comment.
6143
6144 2007-02-05  Simon Josefsson  <simon@josefsson.org>
6145
6146         * lib/gc.h, lib/gc-libgcrypt.c: Support SHA-256/384/512.
6147
6148 2007-02-04  Paul Eggert  <eggert@cs.ucla.edu>
6149
6150         * lib/getsubopt.c [!_LIBC]: Include config.h and getsubopt.h.
6151         * lib/memmem.c [!defined _LIBC]: Include config.h.
6152
6153 2007-02-04  Bruno Haible  <bruno@clisp.org>
6154
6155         * lib/string_.h (GL_LINK_WARNING2): Put the word "warning:" into the
6156         warning message.
6157
6158 2007-02-04  Bruno Haible  <bruno@clisp.org>
6159
6160         New module mbstok_r.
6161         * modules/mbstok_r: New file.
6162         * lib/mbstok_r.c: New file.
6163         * lib/string_.h (strtok_r): Change argument names to match the
6164         comments. Add a conditional link warning.
6165         (mbstok_r): New declaration.
6166         * m4/mbstok_r.m4: New file.
6167         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
6168         GNULIB_MBSTOK_R.
6169         * modules/string (string.h): Also substitute GNULIB_MBSTOK_R.
6170         * MODULES.html.sh (Internationalization functions): Add mbstok_r.
6171
6172 2007-02-04  Bruno Haible  <bruno@clisp.org>
6173
6174         New module mbsspn.
6175         * modules/mbsspn: New file.
6176         * lib/mbsspn.c: New file.
6177         * lib/string_.h (strspn): Add a conditional link warning.
6178         (mbsspn): New declaration.
6179         * m4/mbsspn.m4: New file.
6180         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
6181         GNULIB_MBSSPN.
6182         * modules/string (string.h): Also substitute GNULIB_MBSSPN.
6183         * MODULES.html.sh (Internationalization functions): Add mbsspn.
6184
6185 2007-02-04  Bruno Haible  <bruno@clisp.org>
6186
6187         New module mbspbrk.
6188         * modules/mbspbrk: New file.
6189         * lib/mbspbrk.c: New file.
6190         * lib/string_.h (strpbrk): Add a conditional link warning.
6191         (mbspbrk): New declaration.
6192         * m4/mbspbrk.m4: New file.
6193         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
6194         GNULIB_MBSPBRK.
6195         * modules/string (string.h): Also substitute GNULIB_MBSPBRK.
6196         * MODULES.html.sh (Internationalization functions): Add mbspbrk.
6197
6198 2007-02-04  Bruno Haible  <bruno@clisp.org>
6199
6200         New module mbscspn.
6201         * modules/mbscspn: New file.
6202         * lib/mbscspn.c: New file.
6203         * lib/string_.h (strcspn): Add a conditional link warning.
6204         (mbscspn): New declaration.
6205         * m4/mbscspn.m4: New file.
6206         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
6207         GNULIB_MBSCSPN.
6208         * modules/string (string.h): Also substitute GNULIB_MBSCSPN.
6209         * MODULES.html.sh (Internationalization functions): Add mbscspn.
6210
6211 2007-02-04  Bruno Haible  <bruno@clisp.org>
6212
6213         New module mbscasestr, reduced goal of strcasestr.
6214         * modules/mbscasestr: New file.
6215         * lib/mbscasestr.c: New file, copied from lib/strcasestr.c.
6216         (mbscasestr): Renamed from strcasestr.
6217         * lib/strcasestr.c: Don't include mbuiter.h.
6218         (strcasestr): Remove support for multibyte locales.
6219         * lib/string_.h (strcasestr): Don`t rename. Declare only if missing.
6220         Change the conditional link warning.
6221         (mbscasestr): New declaration.
6222         * m4/mbscasestr.m4: New file.
6223         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Enable the replacement only if
6224         the system does not have strcasestr. Set HAVE_STRCASESTR instead of
6225         REPLACE_STRCASESTR.
6226         (gl_PREREQ_STRCASESTR): Don't require gl_FUNC_MBRTOWC.
6227         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
6228         HAVE_STRCASESTR instead of REPLACE_STRCASESTR.
6229         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize GNULIB_MBSCASESTR.
6230         * modules/string (string.h): Also substitute GNULIB_MBSCASESTR.
6231         Substitute HAVE_STRCASESTR instead of REPLACE_STRCASESTR.
6232         * modules/strcasestr (Files): Remove m4/mbrtowc.m4.
6233         (Depends-on): Remove mbuiter.
6234         * MODULES.html.sh (Internationalization functions): Add mbscasestr.
6235
6236 2007-02-04  Bruno Haible  <bruno@clisp.org>
6237
6238         Simplify handling of strncasecmp.
6239         * lib/string_.h (strncasecmp): Remove test for GNULIB_STRCASE. Change
6240         the conditional link warning.
6241         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
6242         HAVE_STRCASECMP, not REPLACE_STRCASECMP.
6243         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Don't initialize GNULIB_STRCASE.
6244         * modules/strcase (configure.ac): Don't invoke
6245         gl_STRING_MODULE_INDICATOR.
6246         * modules/string (string.h): Don't substitute GNULIB_STRCASE.
6247
6248 2007-02-04  Bruno Haible  <bruno@clisp.org>
6249
6250         New module mbscasecmp, reduced goal of strcasecmp.
6251         * modules/mbscasecmp: New file.
6252         * lib/mbscasecmp.c: New file, copied from lib/strcasecmp.c.
6253         (mbscasecmp): Renamed from strcasecmp.
6254         * lib/strcasecmp.c: Don't include mbuiter.h.
6255         (strcasecmp): Remove support for multibyte locales.
6256         * lib/string_.h (strcasecmp): Don`t rename. Declare only if missing.
6257         Change the conditional link warning.
6258         (mbscasecmp): New declaration.
6259         * m4/mbscasecmp.m4: New file.
6260         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Enable the replacement only if
6261         the system lacks strcasecmp. Set HAVE_STRCASECMP instead of
6262         REPLACE_STRCASECMP.
6263         (gl_PREREQ_STRCASECMP): Don't require gl_FUNC_MBRTOWC.
6264         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
6265         GNULIB_MBSCASECMP.
6266         * modules/string (string.h): Also substitute GNULIB_MBSCASECMP.
6267         Substitute HAVE_STRCASECMP instead of REPLACE_STRCASECMP.
6268         * modules/strcase (Files): Remove m4/mbrtowc.m4.
6269         (Depends-on): Remove mbuiter.
6270         * MODULES.html.sh (Internationalization functions): Add mbscasecmp.
6271
6272 2007-02-04  Bruno Haible  <bruno@clisp.org>
6273
6274         New module mbsstr. Remove module strstr.
6275         * modules/mbsstr: New file.
6276         * modules/strstr: Remove file.
6277         * lib/mbsstr.c: Renamed from lib/strstr.c.
6278         (mbsstr): Renamed from strstr.
6279         * lib/string_.h (strstr): Remove declaration. Change the conditional
6280         link warning.
6281         (mbsstr): New declaration.
6282         * m4/mbsstr.m4: New file.
6283         * m4/strstr.m4: Remove file.
6284         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Don't initialize
6285         REPLACE_STRSTR.
6286         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize GNULIB_MBSSTR.
6287         Don't initialize GNULIB_STRSTR.
6288         * modules/string (string.h): Also substitute GNULIB_MBSSTR. Don't
6289         substitute GNULIB_STRSTR and REPLACE_STRSTR.
6290         * MODULES.html.sh (Internationalization functions): Add mbsstr.
6291         (Support for systems lacking ANSI C 89): Remove strstr.
6292
6293 2007-02-04  Bruno Haible  <bruno@clisp.org>
6294
6295         New module mbsrchr.
6296         * modules/mbsrchr: New file.
6297         * lib/mbsrchr.c: New file.
6298         * lib/string_.h (strrchr): Add a conditional link warning.
6299         (mbsrchr): New declaration.
6300         * m4/mbsrchr.m4: New file.
6301         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
6302         GNULIB_MBSRCHR.
6303         * modules/string (string.h): Also substitute GNULIB_MBSRCHR.
6304         * MODULES.html.sh (Internationalization functions): Add mbsrchr.
6305
6306 2007-02-04  Bruno Haible  <bruno@clisp.org>
6307
6308         New module mbschr.
6309         * modules/mbschr: New file.
6310         * lib/mbschr.c: New file.
6311         * lib/string_.h (strchr): Add a conditional link warning.
6312         (mbschr): New declaration.
6313         * m4/mbschr.m4: New file.
6314         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
6315         GNULIB_MBSCHR.
6316         * modules/string (string.h): Also substitute GNULIB_MBSCHR.
6317         * MODULES.html.sh (Internationalization functions): Add mbschr.
6318
6319 2007-02-04  Paul Eggert  <eggert@cs.ucla.edu>
6320
6321         * lib/stdbool_.h: Mention that bool bit-fields aren't supported.
6322
6323         * modules/stdarg (configure.ac-early): Require AC_PROG_CC_STDC.
6324
6325 2007-02-04  Bruno Haible  <bruno@clisp.org>
6326
6327         New module description section 'configure.ac-early'.
6328         * gnulib-tool (sed_extract_prog): Recognize configure.ac-early.
6329         (func_get_autoconf_early_snippet): New function.
6330         (func_import, func_create_testdir): Use it. Remove special cases for
6331         modules 'extensions' and 'lock'.
6332         * modules/extensions (configure.ac-early): Require
6333         gl_USE_SYSTEM_EXTENSIONS.
6334         * modules/lock (configure.ac-early): Require gl_LOCK_EARLY.
6335
6336 2007-02-04  Bruno Haible  <bruno@clisp.org>
6337
6338         Make use of gcj-4.3's -fsource and -ftarget option.
6339         * m4/javacomp.m4 (gt_JAVACOMP): Test whether gcj is in version >= 4.3,
6340         and if so try the options -fsource and -ftarget.
6341         * lib/javacomp.c (compile_using_gcj): Add fsource_option,
6342         source_version, ftarget_option, target_version arguments.
6343         (is_envjavac_gcj43, is_envjavac_gcj43_usable): New functions.
6344         (is_envjavac_oldgcj_14_14_usable): Renamed from
6345         is_envjavac_gcj_14_14_usable.
6346         (is_envjavac_oldgcj_14_13_usable): Renamed from
6347         is_envjavac_gcj_14_13_usable.
6348         (is_gcj_present): Update.
6349         (is_gcj_43, is_gcj43_usable): New functions.
6350         (is_oldgcj_14_14_usable): Renamed from is_gcj_14_14_usable. Update.
6351         (is_oldgcj_14_13_usable): Renamed from is_gcj_14_13_usable. Update.
6352         (compile_java_class): Test whether gcj is in version >= 4.3, and if so
6353         try the options -fsource and -ftarget.
6354
6355 2007-02-03  Paul Eggert  <eggert@cs.ucla.edu>
6356
6357         * lib/xalloc.h (x2nrealloc): Fix an unlikely bug in the overflow
6358         checking code.  Set N = ceil (1.5 * N) rather than to a slightly
6359         larger value.
6360
6361 2007-02-03  Jim Meyering  <jim@meyering.net>
6362
6363         Give tools a better chance to allocate space for very large buffers.
6364         * lib/xalloc.h (x2nrealloc): Use 3/2, not 2, as buffer size factor.
6365
6366         Make pwd and readlink work also when run with an unreadable parent dir
6367         on systems with openat support.
6368         * lib/getcwd.c (__getcwd) [HAVE_PARTLY_WORKING_GETCWD]: Use the system
6369         provided getcwd function, even when we have openat support.
6370         Reported by Dmitry V. Levin in <http://bugzilla.redhat.com/227168>.
6371
6372 2007-02-02  Bruno Haible  <bruno@clisp.org>
6373
6374         * lib/string_.h (memmem, mempcpy, memrchr, stpcpy, stpncpy, strchrnul,
6375         strdup, strndup, strnlen, strpbrk, strsep, strtok_r): Provoke a link
6376         error only if GNULIB_POSIXCHECK is defined. Needed to avoid artificial
6377         portability problems if one of these functions is only used on specific
6378         platforms.
6379         Reported by Paul Eggert.
6380
6381 2007-02-02  Paul Eggert  <eggert@cs.ucla.edu>
6382
6383         Avoid mempcpy in the regex code, as the string.h mempcpy stuff
6384         is causing more trouble than it's curing.
6385         * lib/regex_internal.h (__mempcpy): Remove.
6386         * lib/regcomp.c (regerror): Rewrite to avoid the need for mempcpy
6387         (and make the code a tad smaller to boot).
6388         * m4/regex.m4 (gl_PREREQ_REGEX): Don't check for mempcpy.
6389
6390 2007-02-02  Jim Meyering  <jim@meyering.net>
6391
6392         * modules/arpa_inet: Put AC_PROG_MKDIR_P in the configure.ac:
6393         section, not in the Makefile.am: one.
6394
6395 2007-02-02  Eric Blake  <ebb9@byu.net>
6396
6397         * lib/strchrnul.c: Always include config.h first.
6398
6399         * modules/mountlist (Depends-on): Revert 2007-01-31 change,
6400         gnulib strstr is not necessary here.
6401
6402 2007-02-02  Simon Josefsson  <simon@josefsson.org>
6403
6404         * m4/socklen.m4: Fix typo.
6405
6406 2007-02-02  Eric Blake  <ebb9@byu.net>
6407
6408         * modules/arpa_inet (Makefile.am): Use MKDIR_P to avoid races.
6409         * modules/netinet_in (Makefile.am): Likewise.
6410
6411 2007-02-01  Bruno Haible  <bruno@clisp.org>
6412
6413         * lib/string_.h (GL_LINK_WARNING): New macro.
6414         (strcasecmp, strstr, strcasestr): If provided by the system,
6415         conditionally define as a macro that leads to a warning instead of to
6416         an error.
6417         (strncasecmp): Conditionally define as a macro that leads to a warning.
6418
6419 2007-02-01  Karl Berry  <karl@gnu.org>
6420
6421         * config/srclist.txt (strtok_r.c): lose sync, no more strtok_r.h.
6422
6423 2007-02-01  Bruno Haible  <bruno@clisp.org>
6424
6425         * MODULES.html.sh (Unicode string functions): Update after 2007-01-27
6426         renamings.
6427
6428 2007-02-01  Eric Blake  <ebb9@byu.net>
6429
6430         * modules/regex (Depends-on): Revert dependence on mempcpy.
6431         * lib/regex_internal.h [! _LIBC && !__mempcpy]: Undo string
6432         module's definition of mempcpy.
6433         Reported by Paul Eggert.
6434
6435 2007-02-01  Paul Eggert  <eggert@cs.ucla.edu>
6436
6437         * lib/string_.h: If the gnulib module XYZ is not present, undefine
6438         the symbol XYZ before redefining it.  This fixes a problem with
6439         programs that don't use XYZ, when compiled on systems that define
6440         XYZ to something else.
6441
6442 2007-01-31  Paul Eggert  <eggert@cs.ucla.edu>
6443
6444         * lib/mkdir-p.c (make_dir_parents): Close a race condition that
6445         occurs when "mkdir -m foo" creates a setgid directory that is (1)
6446         writeable to group or other and (2) is intended to have a special
6447         mode bit that is set or cleared.  In such a case, the directory
6448         should be neither group- nor other-writeable until the special
6449         mode bits are right.
6450
6451 2007-01-31  Eric Blake  <ebb9@byu.net>
6452
6453         * modules/mountlist (Depends-on): Add strstr.
6454
6455         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR): Correct m4 usage
6456         bug.
6457         * modules/string (Makefile.am): Remove redundant replacement.
6458         * modules/regex (Depends-on): Add mempcpy.
6459
6460 2007-01-31  Bruno Haible  <bruno@clisp.org>
6461
6462         New module description field 'Link'.
6463         * gnulib-tool (func_usage): Document --extract-link-directive.
6464         (sed_extract_prog): Recognize 'Link' directive.
6465         (func_get_link_directive): New function.
6466         (func_import): Show summary of link directives.
6467         Handle --extract-link-directive option.
6468         * modules/acl (Link): New section.
6469         * modules/clock-time (Link): New section.
6470         * modules/euidaccess (Link): New section.
6471         * modules/gettext (Link): New section.
6472         * modules/iconv (Link): New section.
6473         * modules/lock (Link): New section.
6474         * modules/nanosleep (Link): New section.
6475         * modules/readline (Link): New section.
6476
6477 2007-01-27  Bruno Haible  <bruno@clisp.org>
6478
6479         Enforce the use of gnulib modules for unportable <string.h> functions.
6480         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR): New macro.
6481         (gl_STRING_MODULE_INDICATOR_DEFAULTS): New macro.
6482         (gl_HEADER_STRING_H_BODY): Require it.
6483         * lib/string_.h: If the gnulib module XYZ is not present, redefine
6484         the symbol XYZ to one that gives a link error.
6485         * modules/string (Makefile.am): Also substitute the GNULIB_* variables.
6486         * modules/memmem (configure.ac): Invoke gl_STRING_MODULE_INDICATOR.
6487         * modules/mempcpy (configure.ac): Likewise.
6488         * modules/memrchr (configure.ac): Likewise.
6489         * modules/stpcpy (configure.ac): Likewise.
6490         * modules/stpncpy (configure.ac): Likewise.
6491         * modules/strcase (configure.ac): Likewise.
6492         * modules/strcasestr (configure.ac): Likewise.
6493         * modules/strchrnul (configure.ac): Likewise.
6494         * modules/strdup (configure.ac): Likewise.
6495         * modules/strndup (configure.ac): Likewise.
6496         * modules/strnlen (configure.ac): Likewise.
6497         * modules/strpbrk (configure.ac): Likewise.
6498         * modules/strsep (configure.ac): Likewise.
6499         * modules/strstr (configure.ac): Likewise.
6500         * modules/strtok_r (configure.ac): Likewise.
6501
6502 2007-01-31  Jean-Louis Martineau  <martineau@zmanda.com>  (tiny change)
6503
6504         * lib/gai_strerror.c (values): Add EAI_OVERFLOW.
6505
6506 2007-01-30  Jim Meyering  <jim@meyering.net>
6507
6508         * lib/mpsort.c (mpsort): Remove spurious "return" in void function.
6509
6510 2007-01-29  Bruno Haible  <bruno@clisp.org>
6511
6512         * lib/allocsa.h: Use '#if HAVE_*' instead of '#ifdef HAVE_*'.
6513         * lib/execute.c: Likewise.
6514         * lib/pipe.c: Likewise.
6515         * lib/printf-args.h: Likewise.
6516         * lib/printf-args.c: Likewise.
6517         * lib/printf-parse.c: Likewise.
6518         * lib/vasnprintf.c: Likewise.
6519
6520 2007-01-29  Eric Blake  <ebb9@byu.net>
6521
6522         * lib/memrchr.c: Assume <string.h> unconditionally, to pull in
6523         declaration.
6524
6525 2007-01-29  Paul Eggert  <eggert@cs.ucla.edu>
6526
6527         * lib/strptime.h (strptime): Use 'restrict' for args where
6528         POSIX requires this.
6529         * lib/strptime.c (strptime): Likewise.
6530         Change license notice from LGPL to GPL, since gnulib-tool will
6531         change this as needed.
6532         Include <config.h> if _LIBC is not defined, not if HAVE_CONFIG_H is
6533         defined.
6534         Include "strptime.h" first, to check interface.
6535         Do not #undef _LIBC and _NL_CURRENT.
6536         Do not include <stdlib.h>; no longer needed.
6537         Include "time_r.h" and declare ptime_locale_status
6538         only if _LIBC is not defined.
6539         (__P): Remove unused macro.
6540         (match_string): Bring back glibc version, but use it only if _LIBC
6541         is defined.
6542         (__strptime_internal): Compile tm_gmtoff code if _LIBC is defined, too.
6543         Remove unnecessary assertion and abort() call.
6544         Use #ifdef _NL_CURRENT rather than #if 0, for benefit of glibc.
6545         * m4/strptime.m4: Fix serial number comment.
6546         (gl_FUNC_STRPTIME): Require AC_C_RESTRICT, gl_TM_GMTOFF.
6547         * modules/strptime (Files): Add m4/tm_gmtoff.m4.
6548         (Depends-on): Add time_r.
6549
6550 2007-01-29  Bruno Haible  <bruno@clisp.org>
6551
6552         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
6553         strptime.
6554         * modules/strptime (Depends-on): Add stdbool.
6555         * lib/strptime.h: Include <time.h> always. Add comments.
6556
6557 2007-01-29  Yoann Vandoorselaere  <yoann@prelude-ids.org>
6558
6559         * modules/strptime: New file.
6560         * lib/strptime.h: New file.
6561         * lib/strptime.c: New file.
6562         * m4/strptime.m4: New file.
6563
6564 2007-01-28  Paul Eggert  <eggert@cs.ucla.edu>
6565
6566         * MODULES.html.sh: New module mpsort.
6567         * lib/mpsort.c, lib/mpsort.h, m4/mpsort.m4, modules/mpsort: New files.
6568
6569         * lib/regex.h (_Restrict_): Renamed from __restrict, to avoid
6570         a circularity problem with HP-UX ia64 reported by Bob Proulx in
6571         <http://lists.gnu.org/archive/html/bug-gnulib/2007-01/msg00394.html>.
6572         All uses changed.
6573         (_Restrict_arr_): Renamed from __restrict_arr, for similar reasons.
6574         All uses changed.
6575         * lib/regcomp.c, lib/regexec.c: Change all uses from __restrict
6576         to _Restrict_.
6577         * lib/regexec.c (regexec): Declare pmatch with _Restrict_arr_, so that
6578         the parameter matches the prototype.
6579
6580 2007-01-28  Jim Meyering  <jim@meyering.net>
6581
6582         * modules/sys_time (Makefile.am) [MOSTLYCLEANFILES]: Do use
6583         sys/time.h here, reverting that part of the previous patch:
6584         <http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/8959>.
6585
6586 2007-01-28  Bruno Haible  <bruno@clisp.org>
6587
6588         * modules/sys_time (Makefile.am): Build sys/time.h only when it's the
6589         value of $(SYS_TIME_H).
6590         [MOSTLYCLEANFILES]: Now that sys/time.h is created only when needed,
6591         remove it conditionally, too. [added by Jim Meyering]
6592         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Set SYS_TIME_H.
6593         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY):
6594         (gl_FUNC_GETTIMEOFDAY_CLOBBER): Set SYS_TIME_H when setting
6595         GETTIMEOFDAY_REPLACEMENT to 1.
6596
6597 2007-01-28  Bruno Haible  <bruno@clisp.org>
6598
6599         * m4/unistd_h.m4 (gl_HEADER_UNISTD_DEFAULTS): New macro.
6600         (gl_HEADER_UNISTD): Require it. Don't set UNISTD_H to empty here.
6601         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Require gl_HEADER_UNISTD_DEFAULTS.
6602         Set UNISTD_H instead of UNISTD_H2.
6603         * modules/fchdir (BUILT_SOURCES): Drop $(UNISTD_H2).
6604
6605 2007-01-28  Bruno Haible  <bruno@clisp.org>
6606
6607         * modules/mbchar (Makefile.am): Add mbchar.c to lib_SOURCES.
6608         * m4/mbchar.m4 (gl_MBCHAR): Remove AC_LIBOBJ invocation.
6609
6610 2007-01-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6611
6612         * gnulib-tool (func_emit_lib_Makefile_am, func_add_or_update)
6613         (func_create_testdir): Ensure C locale for `grep' and `tr'
6614         character ranges.
6615         (func_create_megatestdir): Avoid one `grep'.  Fix bug in
6616         ACLOCAL_AMFLAGS parsing state machine.
6617
6618 2007-01-27  Bruno Haible  <bruno@clisp.org>
6619
6620         * modules/unistr/base: Update.
6621
6622 2007-01-27  Bruno Haible  <bruno@clisp.org>
6623
6624         Rename u32-mbtouc -> u32-mbtouc-unsafe, u32-mbtouc-safe -> u32-mbtouc,
6625         u32_mbtouc -> u32_mbtouc_unsafe, u32_mbtouc_safe -> u32_mbtouc.
6626         * modules/unistr/u32-mbtouc-unsafe: Renamed from
6627         modules/unistr/u32-mbtouc.
6628         * lib/unistr/u32-mbtouc-unsafe.c: Renamed from lib/unistr/u32-mbtouc.c.
6629         * lib/unistr.h: Update.
6630         * lib/linebreak.c: Update.
6631         * modules/unistr/u32-mbtouc: Renamed from
6632         modules/unistr/u32-mbtouc-safe.
6633         * lib/unistr/u32-mbtouc.c: Renamed from lib/unistr/u32-mbtouc-safe.c.
6634         * lib/unistr.h: Update.
6635         * lib/unistr/u32-to-u8.c: Update.
6636         * lib/unistr/u32-to-u16.c: Update.
6637
6638 2007-01-27  Bruno Haible  <bruno@clisp.org>
6639
6640         Rename utf16-ucs4 -> utf16-ucs4-unsafe, utf16-ucs4-safe -> utf16-ucs4,
6641         u16_mbtouc -> u16_mbtouc_unsafe, u16_mbtouc_safe -> u16_mbtouc.
6642         * modules/utf16-ucs4-unsafe: Renamed from modules/utf16-ucs4.
6643         * lib/utf16-ucs4-unsafe.h: Renamed from lib/utf16-ucs4.h.
6644         * lib/unistr/utf16-ucs4-unsafe.c: Renamed from lib/unistr/utf16-ucs4.c.
6645         * modules/unistr/u16-mbtouc-unsafe: Renamed from
6646         modules/unistr/u16-mbtouc.
6647         * lib/unistr/u16-mbtouc-unsafe.c: Renamed from lib/unistr/u16-mbtouc.c.
6648         * lib/unistr.h: Update.
6649         * lib/linebreak.c: Update.
6650         * modules/linebreak: Update.
6651         * modules/utf16-ucs4: Renamed from modules/utf16-ucs4-safe.
6652         * lib/utf16-ucs4.h: Renamed from lib/utf16-ucs4-safe.h.
6653         * lib/unistr/utf16-ucs4.c: Renamed from lib/unistr/utf16-ucs4-safe.c.
6654         * modules/unistr/u16-mbtouc: Renamed from
6655         modules/unistr/u16-mbtouc-safe.
6656         * lib/unistr/u16-mbtouc.c: Renamed from lib/unistr/u16-mbtouc-safe.c.
6657         * lib/unistr.h: Update.
6658         * lib/unistr/u16-to-u8.c: Update.
6659         * modules/unistr/u16-to-u8: Update.
6660         * lib/unistr/u16-to-u32.c: Update.
6661         * modules/unistr/u16-to-u32: Update.
6662
6663 2007-01-27  Bruno Haible  <bruno@clisp.org>
6664
6665         Rename utf8-ucs4 -> utf8-ucs4-unsafe, utf8-ucs4-safe -> utf8-ucs4,
6666         u8_mbtouc -> u8_mbtouc_unsafe, u8_mbtouc_safe -> u8_mbtouc.
6667         * modules/utf8-ucs4-unsafe: Renamed from modules/utf8-ucs4.
6668         * lib/utf8-ucs4-unsafe.h: Renamed from lib/utf8-ucs4.h.
6669         * lib/unistr/utf8-ucs4-unsafe.c: Renamed from lib/unistr/utf8-ucs4.c.
6670         * modules/unistr/u8-mbtouc-unsafe: Renamed from
6671         modules/unistr/u8-mbtouc.
6672         * lib/unistr/u8-mbtouc-unsafe.c: Renamed from lib/unistr/u8-mbtouc.c.
6673         * lib/unistr.h: Update.
6674         * lib/striconveh.c: Update.
6675         * modules/striconveh: Update.
6676         * lib/linebreak.c: Update.
6677         * modules/linebreak: Update.
6678         * modules/utf8-ucs4: Renamed from modules/utf8-ucs4-safe.
6679         * lib/utf8-ucs4.h: Renamed from lib/utf8-ucs4-safe.h.
6680         * lib/unistr/utf8-ucs4.c: Renamed from lib/unistr/utf8-ucs4-safe.c.
6681         * modules/unistr/u8-mbtouc: Renamed from modules/unistr/u8-mbtouc-safe.
6682         * lib/unistr/u8-mbtouc.c: Renamed from lib/unistr/u8-mbtouc-safe.c.
6683         * lib/unistr.h: Update.
6684         * lib/striconveh.c: Update.
6685         * modules/striconveh: Update.
6686         * lib/unistr/u8-to-u16.c: Update.
6687         * modules/unistr/u8-to-u16: Update.
6688         * lib/unistr/u8-to-u32.c: Update.
6689         * modules/unistr/u8-to-u32: Update.
6690
6691 2007-01-27  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6692
6693         Sync from Libtool.
6694         * lib/argz.c: Do not include strings.h nor memory.h, include
6695         string.h unconditionally.  Patch by Simon Josefsson.
6696
6697 2007-01-27  Bruno Haible  <bruno@clisp.org>
6698
6699         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): New macro, extracted
6700         from gl_HEADER_STRING_H_BODY.
6701         (gl_HEADER_STRING_H_BODY): Require it.
6702         * m4/memmem.m4 (gl_FUNC_MEMMEM): Require gl_HEADER_STRING_H_DEFAULTS.
6703         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Likewise.
6704         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Likewise.
6705         * m4/stpcpy.m4 (gl_FUNC_STPCPY): Likewise.
6706         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Likewise.
6707         * m4/strcase.m4 (gl_FUNC_STRCASECMP, gl_FUNC_STRNCASECMP): Likewise.
6708         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
6709         * m4/strchrnul.m4 (gl_FUNC_STRCHRNUL): Likewise.
6710         * m4/strdup.m4 (gl_FUNC_STRDUP): Likewise.
6711         * m4/strndup.m4 (gl_FUNC_STRNDUP): Likewise.
6712         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Likewise.
6713         * m4/strpbrk.m4 (gl_FUNC_STRPBRK): Likewise.
6714         * m4/strsep.m4 (gl_FUNC_STRSEP): Likewise.
6715         * m4/strstr.m4 (gl_FUNC_STRSTR): Likewise.
6716         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Likewise.
6717
6718 2007-01-27  Bruno Haible  <bruno@clisp.org>
6719
6720         * gnulib-tool (func_emit_lib_Makefile_am): If $for_test is true, turn
6721         check_PROGRAMS into noinst_PROGRAMS.
6722         (func_emit_tests_Makefile_am): Likewise. Also don't initialize
6723         check_PROGRAMS in this case.
6724         (func_import): Set for_test to false.
6725         (func_create_testdir): Set for_test to true.
6726
6727 2007-01-27  Yoann Vandoorselaere <yoann.v@prelude-ids.com>
6728             Bruno Haible  <bruno@clisp.org>
6729
6730         * modules/strcasestr (Files): Remove lib/strcasestr.h.
6731         (Depends-on): Add string.
6732         (Includes): Use <string.h> instead of strcasestr.h.
6733         * modules/string (Makefile.am): Also substitute the value of
6734         REPLACE_STRCASESTR.
6735         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Don't define strcasestr here;
6736         assume strcasestr is declared in <string.h> not <strings.h>. Also
6737         set REPLACE_STRCASESTR.
6738         * m4/string_h.m4 (gl_HEADER_STRING_H_BODY): Provide a default value for
6739         REPLACE_STRCASESTR.
6740         * lib/strcasestr.h: Remove file.
6741         * lib/strcasestr.c: Include <string.h> instead of strcasestr.h.
6742         * lib/string_.h (strcasestr): New declaration.
6743
6744 2007-01-27  Bruno Haible  <bruno@clisp.org>
6745
6746         * lib/string_.h: Use 'extern'.
6747
6748 2007-01-27  Jim Meyering  <jim@meyering.net>
6749
6750         * lib/regex_internal.c (re_string_reconstruct): Remove declaration
6751         of set-but-not-used local, "q".
6752
6753         * lib/mempcpy.c: Include <config.h> before <string.h>.
6754         This fixes a compilation error on HP-UX, due to the system's
6755         "restrict"-using mempcpy prototype.
6756
6757 2007-01-26  Bruno Haible  <bruno@clisp.org>
6758
6759         Small optimization.
6760         * lib/javacomp.c: Include c-strstr.h.
6761          (is_envjavac_gcj): Use c_strstr instead of strstr.
6762         * modules/javacomp (Depends-on): Add c-strstr, remove strstr.
6763
6764 2007-01-26  Bruno Haible  <bruno@clisp.org>
6765
6766         * MODULES.html.sh (Unicode string functions): Add the new modules.
6767
6768         * modules/uniconv/u32-strconv-to-locale: New file.
6769         * lib/uniconv/u32-strconv-to-locale.c: New file.
6770
6771         * modules/uniconv/u16-strconv-to-locale: New file.
6772         * lib/uniconv/u16-strconv-to-locale.c: New file.
6773
6774         * modules/uniconv/u8-strconv-to-locale: New file.
6775         * lib/uniconv/u8-strconv-to-locale.c: New file.
6776
6777         * modules/uniconv/u32-strconv-from-locale: New file.
6778         * lib/uniconv/u32-strconv-from-locale.c: New file.
6779
6780         * modules/uniconv/u16-strconv-from-locale: New file.
6781         * lib/uniconv/u16-strconv-from-locale.c: New file.
6782
6783         * modules/uniconv/u8-strconv-from-locale: New file.
6784         * lib/uniconv/u8-strconv-from-locale.c: New file.
6785
6786         * modules/uniconv/u32-strconv-to-enc: New file.
6787         * lib/uniconv/u32-strconv-to-enc.c: New file.
6788         * modules/uniconv/u32-strconv-to-enc-tests: New file.
6789         * tests/uniconv/test-u32-strconv-to-enc.c: New file.
6790
6791         * modules/uniconv/u16-strconv-to-enc: New file.
6792         * lib/uniconv/u16-strconv-to-enc.c: New file.
6793         * lib/uniconv/u-strconv-to-enc.h: New file.
6794         * modules/uniconv/u16-strconv-to-enc-tests: New file.
6795         * tests/uniconv/test-u16-strconv-to-enc.c: New file.
6796
6797         * modules/uniconv/u8-strconv-to-enc: New file.
6798         * lib/uniconv/u8-strconv-to-enc.c: New file.
6799         * modules/uniconv/u8-strconv-to-enc-tests: New file.
6800         * tests/uniconv/test-u8-strconv-to-enc.c: New file.
6801
6802         * modules/uniconv/u32-strconv-from-enc: New file.
6803         * lib/uniconv/u32-strconv-from-enc.c: New file.
6804         * modules/uniconv/u32-strconv-from-enc-tests: New file.
6805         * tests/uniconv/test-u32-strconv-from-enc.c: New file.
6806
6807         * modules/uniconv/u16-strconv-from-enc: New file.
6808         * lib/uniconv/u16-strconv-from-enc.c: New file.
6809         * modules/uniconv/u16-strconv-from-enc-tests: New file.
6810         * tests/uniconv/test-u16-strconv-from-enc.c: New file.
6811
6812         * modules/uniconv/u8-strconv-from-enc: New file.
6813         * lib/uniconv/u8-strconv-from-enc.c: New file.
6814         * lib/uniconv/u-strconv-from-enc.h: New file.
6815         * modules/uniconv/u8-strconv-from-enc-tests: New file.
6816         * tests/uniconv/test-u8-strconv-from-enc.c: New file.
6817
6818         * modules/uniconv/u32-conv-from-enc: New file.
6819         * lib/uniconv/u32-conv-from-enc.c: New file.
6820         * modules/uniconv/u32-conv-from-enc-tests: New file.
6821         * tests/uniconv/test-u32-conv-from-enc.c: New file.
6822
6823         * modules/uniconv/u16-conv-from-enc: New file.
6824         * lib/uniconv/u16-conv-from-enc.c: New file.
6825         * lib/uniconv/u-conv-from-enc.h: New file.
6826         * modules/uniconv/u16-conv-from-enc-tests: New file.
6827         * tests/uniconv/test-u16-conv-from-enc.c: New file.
6828
6829         * modules/uniconv/u8-conv-from-enc: New file.
6830         * lib/uniconv/u8-conv-from-enc.c: New file.
6831         * modules/uniconv/u8-conv-from-enc-tests: New file.
6832         * tests/uniconv/test-u8-conv-from-enc.c: New file.
6833
6834         * modules/uniconv/base: New file.
6835         * lib/uniconv.h: New file.
6836
6837 2007-01-26  Paul Eggert  <eggert@cs.ucla.edu>
6838
6839         * doc/gnulib-tool.texi (Initial import): Update to match current
6840         behavior with strdup module.
6841         * lib/.cppi-disable: Remove strcase.h, strdup.h, strndup.h, strnlen.h.
6842         * lib/memmem.h: Remove; all uses removed.  This is now done
6843         by <string.h>.
6844         * lib/mempcpy.h: Likewise.
6845         * lib/memrchr.h: Likewise.
6846         * lib/stpcpy.h: Likewise.
6847         * lib/stpncpy.h: Likewise.
6848         * lib/strcase.h: Likewise.
6849         * lib/strchrnul.h: Likewise.
6850         * lib/strdup.h: Likewise.
6851         * lib/strndup.h: Likewise.
6852         * lib/strnlen.h: Likewise.
6853         * lib/strpbrk.h: Likewise.
6854         * lib/strsep.h: Likewise.
6855         * lib/strstr.h: Likewise.
6856         * lib/strtok_r.h: Likewise.
6857         * lib/string_.h: New file.
6858         * lib/argp-namefrob.h: Don't include no-longer-existent include files.
6859         Rely on <string.h> instead.
6860         * lib/canon-host.c: Likewise.
6861         * lib/chdir-long.c: Likewise.
6862         * lib/concatpath.c: Likewise.
6863         * lib/exclude.c: Likewise.
6864         * lib/fchdir.c: Likewise.
6865         * lib/getaddrinfo.c: Likewise.
6866         * lib/getcwd.c: Likewise.
6867         * lib/getsubopt.c: Likewise.
6868         * lib/glob.c: Likewise.
6869         * lib/hard-locale.c: Likewise.
6870         * lib/iconvme.c: Likewise.
6871         * lib/javacomp.c: Likewise.
6872         * lib/mempcpy.c: Likewise.
6873         * lib/memrchr.c: Likewise.
6874         * lib/regex_internal.h: Likewise.
6875         * lib/stpncpy.c: Likewise.
6876         * lib/strcasecmp.c: Likewise.
6877         * lib/strchrnul.c: Likewise.
6878         * lib/strdup.c: Likewise.
6879         * lib/striconv.c: Likewise.
6880         * lib/striconveh.c: Likewise.
6881         * lib/striconveha.c: Likewise.
6882         * lib/strncasecmp.c: Likewise.
6883         * lib/strndup.c: Likewise.
6884         * lib/strnlen.c: Likewise.
6885         * lib/strsep.c: Likewise.
6886         * lib/strstr.c: Likewise.
6887         * lib/strtok_r.c: Likewise.
6888         * lib/userspec.c: Likewise.
6889         * lib/w32spawn.h: Likewise.
6890         * lib/xstrndup.c: Likewise.
6891         * lib/mountlist.c (strstr): Remove decl.
6892         * m4/string_h.m4: New file.
6893         * m4/memmem.m4 (gl_FUNC_MEMMEM): Set HAVE_DECL_MEMMEM if necessary.
6894         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Set HAVE_MEMPCPY if necessary.
6895         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Set HAVE_MEMRCHR
6896         * m4/stpcpy.m4 (gl_FUNC_STPCPY): Set HAVE_STPCPY if necessary.
6897         * m4/stpncpy.m4 (gl_PREREQ_STPNCPY): Set HAVE_STPNCPY if necessary.
6898         * m4/strcase.m4 (gl_FUNC_STRCASECMP):
6899         Set REPLACE_STRCASECMP if necessary.
6900         (gl_FUNC_STRNCASECMP): Set HAVE_DECL_STRNCASECMP if necessary.
6901         * m4/strchrnul.m4 (gl_FUNC_STRCHRNUL): Set HAVE_STRCHRNUL if necessary.
6902         * m4/strdup.m4 (gl_FUNC_STRDUP): Set HAVE_DECL_STRDUP if necessary.
6903         * m4/strndup.m4 (gl_FUNC_STRNDUP): Set HAVE_DECL_STRNLEN and
6904         HAVE_DECL_STRDUP if necessary.
6905         (gl_PREREQ_STRNLEN): Don't bother to check for strnlen decl,
6906         since gl_FUNC_STRNDUP does that now.
6907         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Set HAVE_DECL_STRNLEN if necessary.
6908         Check for decl here...
6909         (gl_PREREQ_STRNLEN): ... not here.
6910         * m4/strpbrk.m4 (gl_FUNC_STRPBRK): Set HAVE_STRPBRK if necessary.
6911         * m4/strsep.m4 (gl_FUNC_STRSEP): Set HAVE_STRSEP if necessary.
6912         * m4/strstr.m4 (gl_FUNC_STRSTR): Set REPLACE_STRSTR if necessary.
6913         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Set HAVE_DECL_STRTOK_R if
6914         necessary.
6915         * modules/string: New file.
6916         * modules/memmem (Files): Remove special-purpose include file.
6917         (Depends-on): Add string.
6918         (Include): Include <string.h>, not the removed file.
6919         * modules/mempcpy: Likewise.
6920         * modules/memrchr: Likewise.
6921         * modules/stpcpy: Likewise.
6922         * modules/stpncpy: Likewise.
6923         * modules/strcase: Likewise.
6924         * modules/strchrnul: Likewise.
6925         * modules/strdup: Likewise.
6926         * modules/strndup: Likewise.
6927         * modules/strnlen: Likewise.
6928         * modules/strpbrk: Likewise.
6929         * modules/strsep: Likewise.
6930         * modules/strstr: Likewise.
6931         * modules/strtok_r: Likewise.
6932         * tests/test-dirname.c: Don't include "strdup.h", since
6933         <string.h> now suffices.
6934         * tests/test-memmem.c: Don't include "memmem.h", since
6935         <string.h> now suffices.
6936
6937 2007-01-25  Bruno Haible  <bruno@clisp.org>
6938
6939         * lib/striconveh.c (mem_cd_iconveh_internal): Ignore *lengthp if
6940         *resultp is 0.
6941
6942         * lib/unistr/u16-to-u8.c (u16_to_u8): Fix u8_uctomb invocation.
6943         * lib/unistr/u32-to-u8.c (u32_to_u8): Likewise.
6944         * lib/unistr/u8-to-u16.c (u8_to_u16): Fix u16_uctomb invocation.
6945         * lib/unistr/u32-to-u16.c (u32_to_u16): Likewise.
6946
6947         * modules/unistr/u8-to-u16 (Depends-on): Add missing modules.
6948         * modules/unistr/u8-to-u32 (Depends-on): Add missing modules.
6949         * modules/unistr/u16-to-u8 (Depends-on): Add missing modules.
6950         * modules/unistr/u16-to-u32 (Depends-on): Add missing modules.
6951         * modules/unistr/u32-to-u8 (Depends-on): Add missing modules.
6952         * modules/unistr/u32-to-u16 (Depends-on): Add missing modules.
6953
6954 2007-01-24  Bruno Haible  <bruno@clisp.org>
6955
6956         Don't AC_REQUIRE autoconf macros that invoke AC_LIBOBJ. See
6957         <http://lists.gnu.org/archive/html/bug-gnulib/2006-10/msg00279.html>.
6958         * m4/argp.m4 (gl_ARGP): Invoke, don't require, gl_GETOPT_SUBSTITUTE.
6959         * m4/fts.m4 (gl_FUNC_FTS, gl_FUNC_FTS_LGPL): Invoke, don't require,
6960         gl_FUNC_FTS_CORE.
6961         (gl_FUNC_FTS_CORE): Invoke, don't require, gl_FUNC_OPENAT.
6962         * m4/lstat.m4 (gl_FUNC_LSTAT): Invoke, don't require,
6963         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
6964         * m4/memcmp.m4 (gl_FUNC_MEMCMP): Invoke, don't require, AC_FUNC_MEMCMP.
6965         * m4/mktime.m4 (gl_FUNC_MKTIME): Invoke, don't require, AC_FUNC_MKTIME.
6966         * m4/openat.m4 (gl_FUNC_OPENAT): Invoke, don't require,
6967         gl_FUNC_FCHOWNAT.
6968         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME): Invoke, don't require,
6969         gl_FUNC_STRFTIME.
6970         * m4/strtod.m4 (gl_FUNC_STRTOD): Invoke, don't require, AC_FUNC_STRTOD.
6971         Reported by Ralf Wildenhues.
6972
6973 2007-01-24  Bruno Haible  <bruno@clisp.org>
6974
6975         Drop AC_REQUIRE calls that are redundant with the module dependencies.
6976         * m4/canon-host.m4 (gl_PREREQ_CANON_HOST): Don't require
6977         gl_GETADDRINFO.
6978         * m4/chdir-long.m4 (gl_PREREQ_CHDIR_LONG): Don't require AM_STDBOOL_H,
6979         gl_FUNC_MEMPCPY, gl_FUNC_OPENAT, gl_FUNC_MEMRCHR.
6980         * m4/openat.m4 (gl_PREREQ_OPENAT): Don't require gl_SAVE_CWD.
6981
6982 2007-01-24  Paul Eggert  <eggert@cs.ucla.edu>
6983
6984         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Add test for glibc bug 361.
6985         Don't use 'exit'; just return from 'main'.
6986         (_AC_LIBOBJ_FNMATCH): Check for headers and functions just once.
6987
6988         * lib/fnmatch_.h: Readjust white space and comments to match
6989         glibc, to avoid spurious diffs.
6990
6991 2007-01-23  Paul Eggert  <eggert@cs.ucla.edu>
6992
6993         * lib/fnmatch_loop.c (internal_fnmatch) [!_LIBC]: #if-out the
6994         2004-12-01 change by Jakub Jelinek, since this code won't compile
6995         if !LIBC.  Problem reported by Bob Proulx.
6996
6997 2007-01-23  Bruno Haible  <bruno@clisp.org>
6998
6999         * lib/striconveh.c: Include c-strcaseeq.h.
7000         (mem_iconveh, str_iconveh): Use STRCASEEQ instead of c_strcasecmp.
7001         * modules/striconveh (Depends-on): Add c-strcaseeq.
7002
7003 2007-01-23  Bruno Haible  <bruno@clisp.org>
7004
7005         * MODULES.html.sh (String handling): Add streq, c-strcaseeq.
7006
7007         * modules/c-strcaseeq: New file.
7008         * lib/c-strcaseeq.h: New file.
7009
7010         * modules/streq: New file.
7011         * lib/streq.h: New file.
7012
7013 2007-01-23  Bruno Haible  <bruno@clisp.org>
7014
7015         * modules/striconveha-tests: New file.
7016         * tests/test-striconveha.c: New file.
7017
7018         * lib/striconveha.h: Include <stdbool.h>.
7019         (mem_iconveha, str_iconveha): Add 'transliterate' argument.
7020         * lib/striconveha.c: Include allocsa.h, strdup.h, c-strcase.h.
7021         (mem_iconveha_notranslit): Renamed from mem_iconveha.
7022         (mem_iconveha): New function.
7023         (str_iconveha_notranslit): Renamed from str_iconveha.
7024         (str_iconveha): New function.
7025         * modules/striconveha (Depends-on): Add stdbool, allocsa, strdup,
7026         c-strcase.
7027
7028 2007-01-23  Bruno Haible  <bruno@clisp.org>
7029
7030         * lib/striconveha.c (mem_iconveha): Fix endless recursion. Try all
7031         encodings without forgiving before trying any encoding with handler.
7032         (str_iconveha): Try all encodings without forgiving before trying any
7033         encoding with handler.
7034
7035 2007-01-23  Paul Eggert  <eggert@cs.ucla.edu>
7036
7037         Import the following changes from libc.
7038
7039         2005-10-14  Ulrich Drepper  <drepper@redhat.com>
7040
7041         * lib/fnmatch_loop.c: Adjust for changed secondary hash function.
7042
7043         2004-12-01  Jakub Jelinek  <jakub@redhat.com>
7044
7045         * lib/fnmatch_loop.c (internal_fnmatch): Clear is_seqval after
7046         normal_bracket label.
7047
7048         2004-09-01  Jakub Jelinek  <jakub@redhat.com>
7049
7050         [BZ #361]
7051         * lib/fnmatch_loop.c (FCT): For backslash between brackets, branch
7052         to normal_bracket after fetching the next character.
7053
7054 2007-01-22  Bruno Haible  <bruno@clisp.org>
7055
7056         * lib/striconveh.h (mem_cd_iconveh, mem_iconveh): Add 'offsets'
7057         argument.
7058         * lib/striconveh.c (iconv_carefully_1): New function.
7059         (mem_cd_iconveh_internal, mem_cd_iconveh, mem_iconveh): Add 'offsets'
7060         argument.
7061         (str_cd_iconveh): Update.
7062         * lib/striconveha.h (mem_iconveha): Add 'offsets' argument.
7063         * lib/striconveha.c (mem_iconveha): Add 'offsets' argument.
7064         * tests/test-striconveh.c (MAGIC): New macro.
7065         (new_offsets): New function.
7066         (main): Test call with and without offsets.
7067
7068 2007-01-22  Bruno Haible  <bruno@clisp.org>
7069
7070         * modules/sys_stat (Makefile.am): Use @MKDIR_P@ instead of $(MKDIR_P).
7071         * modules/sys_select (Makefile.am): Likewise.
7072         * modules/sys_socket (Makefile.am): Likewise.
7073         * modules/sys_time (Makefile.am): Likewise.
7074
7075 2007-01-22  Paul Eggert  <eggert@cs.ucla.edu>
7076
7077         * modules/gettimeofday (License): Change from GPL to LGPL, since
7078         gettimeofday is a library function.
7079
7080 2007-01-22  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
7081
7082         * lib/poll.c (rpl_poll): Don't check against FD_SETSIZE under Win32.
7083
7084 2007-01-21  Bruno Haible  <bruno@clisp.org>
7085
7086         * m4/gnulib-common.m4 (AC_PROG_MKDIR_P): New macro.
7087
7088 2007-01-21  Bruno Haible  <bruno@clisp.org>
7089
7090         * modules/striconveha: New file.
7091         * lib/striconveha.h: New file.
7092         * lib/striconveha.c: New file.
7093         * MODULES.html.sh (Internationalization functions): Add striconveha.
7094         * lib/striconv.c (str_iconv): Optimize the case of an empty input
7095         string.
7096         * lib/striconveh.c (mem_iconveh, str_iconveh): Likewise.
7097
7098 2007-01-21  Bruno Haible  <bruno@clisp.org>
7099
7100         * lib/striconv.c (str_iconv): Guarantee errno is set when strdup fails.
7101         * lib/striconveh.c (str_iconveh): Likewise.
7102
7103 2007-01-21  Bruno Haible  <bruno@clisp.org>
7104
7105         * lib/striconveh.h (mem_iconveh): New declaration.
7106         * lib/striconveh.c (mem_iconveh): New function.
7107         * tests/test-striconveh.c (main): Add tests for mem_iconveh.
7108
7109 2007-01-21  Bruno Haible  <bruno@clisp.org>
7110
7111         * lib/xstriconv.h (xmem_cd_iconv): Change specification.
7112
7113         * lib/striconveh.h (mem_cd_iconveh): Change specification.
7114         * lib/striconveh.c (mem_cd_iconveh): Don't free the user-supplied
7115         original result buffer.
7116         (str_cd_iconveh): Update.
7117         * tests/test-striconveh.c (main): Update.
7118
7119         * lib/striconv.h (mem_cd_iconv): Change specification.
7120         * lib/striconv.c (mem_cd_iconv): Don't free the user-supplied original
7121         result buffer.
7122         (str_cd_iconv): Update.
7123         * tests/test-striconv.c (main): Update.
7124
7125 2007-01-21  Bruno Haible  <bruno@clisp.org>
7126
7127         * gnulib-tool: Fix test whether sed is GNU sed supporting --posix.
7128
7129 2007-01-20  Jim Meyering  <jim@meyering.net>
7130
7131         * lib/userspec.c (parse_with_separator): If a user or group string
7132         starts with "+", skip the corresponding name-to-ID look-up, since
7133         such a look-up must fail: user and group names may not include "+".
7134
7135 2007-01-19  Paul Eggert  <eggert@cs.ucla.edu>
7136
7137         * lib/poll.c: Include sys/time.h and time.h unconditionally,
7138         since we now assume the sys_time module.
7139         * m4/poll.m4 (gl_PREREQ_POLL): Don't require AC_HEADER_TIME or
7140         check for sys/time.h; no longer needed.
7141         * modules/poll (Depends-on): Depend on sys_time.
7142
7143 2007-01-18  Bruno Haible  <bruno@clisp.org>
7144
7145         * m4/mktime.m4 (AC_FUNC_MKTIME): Remove test for <sys/time.h>.
7146         * m4/strftime.m4 (gl_FUNC_STRFTIME): Likewise.
7147
7148         * m4/tempname.m4 (gl_PREREQ_TEMPNAME): Remove tests for sys/time.h and
7149         gettimeofday.
7150
7151         * tests/test-gettimeofday.c: Include <time.h>.
7152         (dummy): Remove variable.
7153
7154         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Renamed from
7155         gl_HEADER_SYS_TIME_H.
7156         (gl_HEADER_SYS_TIME_H): New macro.
7157
7158         * lib/sys_time_.h: Test GETTIMEOFDAY_REPLACEMENT instead of
7159         HAVE_GETTIMEOFDAY_POSIX_SIGNATURE and GETTIMEOFDAY_CLOBBERS_LOCALTIME.
7160         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY,
7161         gl_FUNC_GETTIMEOFDAY_CLOBBER): Set GETTIMEOFDAY_REPLACEMENT instead of
7162         HAVE_GETTIMEOFDAY_POSIX_SIGNATURE and GETTIMEOFDAY_CLOBBERS_LOCALTIME.
7163         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H): Initialize
7164         GETTIMEOFDAY_REPLACEMENT instead of HAVE_GETTIMEOFDAY_POSIX_SIGNATURE
7165         and GETTIMEOFDAY_CLOBBERS_LOCALTIME.
7166         * modules/sys_time (sys/time.h): Substitute GETTIMEOFDAY_REPLACEMENT
7167         instead of HAVE_GETTIMEOFDAY_POSIX_SIGNATURE and
7168         GETTIMEOFDAY_CLOBBERS_LOCALTIME.
7169
7170         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Undo the
7171         last change; it caused a compilation error when cross-compiling to
7172         Cygwin.
7173
7174 2007-01-18  Jim Meyering  <jim@meyering.net>
7175
7176         Use "$(MKDIR_P) sys", not race-prone "test -d sys || mkdir sys".
7177         * modules/sys_stat (Makefile.am): Use "$(MKDIR_P) sys", rather
7178         than the race-prone "test -d sys || mkdir sys".
7179         (configure.ac): Use AC_PROG_MKDIR_P.
7180         * modules/sys_select: Likewise.
7181         * modules/sys_socket: Likewise.
7182         * modules/sys_time: Likewise.
7183
7184 2007-01-18  Eric Blake  <ebb9@byu.net>
7185
7186         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Also
7187         replace gettimeofday.
7188         * lib/gettimeofday.c (rpl_gettimeofday): Declare with replacement
7189         name, to avoid infinite recursion.
7190
7191 2007-01-17  Paul Eggert  <eggert@cs.ucla.edu>
7192
7193         * MODULES.html.sh (Support for systems lacking POSIX:2001): New
7194         module sys_time.
7195         * lib/gethrxtime.c: Include <sys/time.h>, since we can no longer
7196         assume timespec.h defines struct timeval.
7197         * lib/settime.c: Likewise.
7198         * lib/utimens.c: Likewise.
7199         * lib/gettime.c (gettime): Remove test against HAVE_GETTIMEOFDAY,
7200         since we now assume the gettimeofday module.
7201         * lib/tempname.c (__gen_tempname): Likewise.
7202         * lib/gettimeofday.h: Remove.
7203         * lib/gettimeofday.c: Include <sys/time.h> instead of "gettimeofday.h".
7204         Don't include <sys/types.h> and <stdlib.h>; shouldn't be needed.
7205         Include <time.h>, for 'time()'.
7206         (localtime_buffer_addr): Also use this workaround if
7207         TZSET_CLOBBERS_LOCALTIME.  Set to a dummy static variable by default,
7208         to simplify the uses.  All uses changed.
7209         (localtime, gmtime, tzset, gettimeofday): Reformat slightly so
7210         that #undef is inside {}, and 'const' follows type name consistently.
7211         (tzset): Define replacement only if TZSET_CLOBBERS_LOCALTIME.
7212         (gettimeofday): Do not use the maximum possible value for
7213         tv->tv_usec, since that might break usages other than ls.c.
7214         Instead, we'll leave ls.c alone.  This undoes today's patch
7215         by Bruno.  Add a compile-time warning for 1s-clock resolution;
7216         we've never observed the problem but might as well keep the
7217         canary.
7218         * lib/nanosleep.c: Include timespec.h first, for interface check.
7219         * lib/nanosleep.c: Include <sys/time.h> unconditionally, since we
7220         now assume the sys_time module.
7221         * lib/tempname.c: Likewise.
7222         * lib/timespec.h: Likewise.
7223         * lib/nanosleep.c: Don't worry about TIME_WITH_SYS_TIME; no longer
7224         needed.
7225         * lib/strftime.c: Likewise.
7226         * lib/timespec.h: Likewise.
7227         * lib/posixtm.c: Include posixtm.h first, for interface check.
7228         Don't worry about TM_IN_SYS_TIME; that's wayyy obsolete.
7229         * lib/posixtm.h: Include stdbool.h and time.h, for proper interface.
7230         * lib/strftime.c: Don't include <sys/types.h>; shouldn't be needed.
7231         * lib/sys_time_.h: New file.
7232         * lib/timespec.h (struct timespec): Use long int, not long.
7233         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY):
7234         (gl_FUNC_GETTIMEOFDAY_CLOBBER, gl_PREREQ_GETTIMEOFDAY):
7235         Remove obsolescent call to AC_HEADER_TIME.
7236         * m4/mktime.m4 (AC_FUNC_MKTIME): Likewise.
7237         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
7238         * m4/strftime.m4 (gl_FUNC_STRFTIME): Likewise.
7239         * m4/timespec.m4 (gl_TIMESPEC, gl_CHECK_TYPE_STRUCT_TIMESPEC):
7240         Likewise.
7241         * m4/tzset.m4 (gl_FUNC_TZSET_CLOBBER): Likewise.
7242         * m4/utimbuf.m4 (gl_CHECK_TYPE_STRUCT_UTIMBUF): Likewise.
7243         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY): Move sys/time.h tests
7244         into the sys_time module.  Check for gettimeofday just once.
7245         Prefix our variables with gl_, not with ac_ or jm_.  Tighten test
7246         for gettimeofday signature to just check the signature.  Merely
7247         compile it, since linking doesn't test signature.  Improve test for
7248         whether gettimeofday.o is actually needed.
7249         (gl_FUNC_GETTIMEOFDAY_CLOBBER): Renamed from
7250         AC_FUNC_GETTIMEOFDAY_CLOBBER.  All uses changed.  Use
7251         AC_RUN_IFELSE rather than AC_TRY_RUN.  If clobbering, set
7252         and define GETTIMEOFDAY_CLOBBERS_LOCALTIME.
7253         (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Don't define
7254         GETTIMEOFDAY_CLOBBERS_LOCALTIME; that's gl_FUNC_GETTIMEOFDAY_CLOBBER's
7255         job.  Don't define tzset; that's gl_FUNC_TZSET_CLOBBER's job.
7256         * m4/mktime.m4 (AC_FUNC_MKTIME): Just include <time.h> rather
7257         than worrying about sys/time.h.
7258         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP):
7259         Don't bother worrying about TIME_WITH_SYS_TIME.
7260         * m4/stat-time.m4 (gl_STAT_TIME): Likewise.
7261         * m4/posixtm.m4 (gl_POSIXTM): Remove obsolescent call to AC_STRUCT_TM.
7262         * m4/sys_time_h.m4: New file.
7263         * m4/tzset.m4 (gl_FUNC_TZSET_CLOBBER): Require gl_HEADER_SYS_TIME_H.
7264         Don't include sys/time.h.  Return from main rather than exiting.
7265         Define TZSET_CLOBBERS_LOCALTIME, for consistency with other names;
7266         all uses changed.
7267         * modules/gethrxtime (Depends-on): Add sys_time.
7268         * modules/gettime (Depends-on): Likewise.
7269         * modules/gettimeofday (Depends-on): Likewise.
7270         * modules/nanosleep (Depends-on): Likewise.
7271         * modules/settime (Depends-on): Likewise.
7272         * modules/tempname (Depends-on): Likewise.
7273         * modules/utimens (Depends-on): Likewise.
7274         * modules/gettimeofday (Files): Remove lib/gettimeofday.h.
7275         (Include:) Change back to <sys/time.h>.
7276         (Maintainer:) Add self.
7277         * modules/sys_time: New file.
7278         * modules/tempname (Depends-on): Add gettimeofday.
7279         * tests/test-gettimeofday.c: Include <sys/time.h>
7280         rather than gettimeofday.h.
7281
7282 2007-01-17  Bruno Haible  <bruno@clisp.org>
7283
7284         * gnulib-tool (func_get_license): Revert last patch. Instead, let
7285         the license default to GPL.
7286         (func_create_testdir): Don't complain if a module is LGPL and its
7287         tests module depends on GPLed modules.
7288
7289 2007-01-17  Bruno Haible  <bruno@clisp.org>
7290
7291         * lib/gettimeofday.c (gettimeofday): Add code for the case
7292         HAVE_GETTIMEOFDAY && !GETTIMEOFDAY_CLOBBERS_LOCALTIME. Use the
7293         maximum possible value for tv->tv_usec, rather than the minimum one.
7294
7295 2005-10-08  Martin Lambers  <marlam@marlam.de>
7296 2005-10-08  Paul Eggert  <eggert@cs.ucla.edu>
7297 2007-01-16  Bruno Haible  <bruno@clisp.org>
7298
7299         * modules/gettimeofday (Files): Add lib/gettimeofday.h.
7300         (configure.ac): Remove AC_FUNC_GETTIMEOFDAY_CLOBBER. Add
7301         gl_FUNC_GETTIMEOFDAY.
7302         (Include): Add gettimeofday.h.
7303         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY): New macro.
7304         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Don't invoke gl_PREREQ_GETTIMEOFDAY.
7305         (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Define
7306         GETTIMEOFDAY_CLOBBERS_LOCALTIME. Invoke gl_PREREQ_GETTIMEOFDAY here.
7307         (gl_PREREQ_GETTIMEOFDAY): Check for <sys/timeb.h> and _ftime.
7308         * lib/gettimeofday.h: New file.
7309         * lib/gettimeofday.c: Include <sys/timeb.h>.
7310         (localtime_buffer_addr, rpl_localtime, rpl_gmtime, rpl_tzset): Define
7311         only if GETTIMEOFDAY_CLOBBERS_LOCALTIME.
7312         (rpl_gettimeofday) [!HAVE_GETTIMEOFDAY]: Use _ftime() when available;
7313         fall back on time().
7314
7315         * tests/test-gettimeofday.c: New file.
7316         * modules/gettimeofday-tests: New file.
7317
7318 2007-01-16  Eric Blake  <ebb9@byu.net>
7319
7320         * modules/fnmatch (Depends-on): Depend on wchar.
7321         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Assume <wchar.h>.
7322         * m4/fnmatch.m4: Likewise.
7323         * modules/mbchar (Makefile.am): Assume <wchar.h>.
7324         * m4/mbchar.m4: Likewise.
7325         * modules/mbswidth (Depends-on): Depend on wchar.
7326         * lib/mbswidth.c: Assume <wchar.h>.
7327         * m4/mbswidth.m4: Likewise.
7328         * modules/quotearg (Depends-on): Depend on wchar.
7329         * lib/quotearg.c: Assume <wchar.h>.
7330         * m4/quotearg.m4: Likewise.
7331         * modules/regex (Depends-on): Depend on wchar.
7332         * lib/regex_internal.h: Assume <wchar.h>.
7333         * m4/regex.m4: Likewise.
7334         * modules/stdint (Depends-on): Depend on wchar.
7335         * lib/stdint_.h [!defined WCHAR_MIN]: Assume <wchar.h>.
7336         * m4/stdint.m4: Likewise.
7337         * tests/test-stdint.c [HAVE_WINT_T]: Likewise.
7338         * modules/strftime (Depends-on): Depend on wchar.
7339         * lib/strftime.c (DO_MULTIBYTE): Assume <wchar.h>.
7340         * modules/strtol (Depends-on): Depend on wchar.
7341         * lib/strtol.c: Assume <wchar.h>.
7342         * modules/wcwidth (Depends-on): Depend on wchar.
7343         * lib/wcwidth.h: Assume <wchar.h>.
7344         * m4/wcwidth.m4: Likewise.
7345
7346 2007-01-16  Bruno Haible  <bruno@clisp.org>
7347
7348         * modules/csharpexec-script: New, created from...
7349         * modules/csharpexec: ... this.
7350
7351 2007-01-16  Paolo Bonzini  <bonzini@gnu.org>
7352
7353         * modules/javaexec-script: New, created from...
7354         * modules/javaexec: ... this.
7355
7356 2007-01-16  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
7357
7358         * modules/poll (Dependencies): Add sys_select.
7359
7360 2007-01-15  Jim Meyering  <jim@meyering.net>
7361
7362         * m4/readutmp.m4 (gl_READUTMP): Work around AIX 4.3 struct-
7363         redefinition bug when using both <utmp.h> and <utmpx.h> headers.
7364         * lib/readutmp.h: Likewise.  Reported by Daniel Richard G. in
7365         <http://article.gmane.org/gmane.comp.gnu.core-utils.bugs/9415>.
7366
7367 2007-01-15  Bruno Haible  <bruno@clisp.org>
7368
7369         * modules/striconveh: New file.
7370         * lib/striconveh.h: New file.
7371         * lib/striconveh.c: New file.
7372         * MODULES.html.sh (Internationalization functions): Add striconveh.
7373
7374         * modules/striconveh-tests: New file.
7375         * tests/test-striconveh.c: New file.
7376
7377 2007-01-15  Bruno Haible  <bruno@clisp.org>
7378
7379         * lib/striconv.c (str_cd_iconv): Use the first algorithm if iconv is
7380         not from GNU libiconv or GNU libc.
7381
7382 2007-01-15  Bruno Haible  <bruno@clisp.org>
7383
7384         * doc/gnulib-intro.texi (Copyright): Explain the different license
7385         terms for module descriptions, autoconf macros, tests, documentation.
7386
7387 2007-01-14  Bruno Haible  <bruno@clisp.org>
7388
7389         * modules/striconv-tests: New file.
7390         * tests/test-striconv.c: New file.
7391
7392 2007-01-14  Bruno Haible  <bruno@clisp.org>
7393
7394         * modules/iconv-tests: New file.
7395         * tests/test-iconv.c: New file.
7396
7397 2007-01-14  Bruno Haible  <bruno@clisp.org>
7398
7399         * gnulib-tool (func_get_license): For test modules, use the license of
7400         the main module.
7401
7402 2007-01-14  Bruno Haible  <bruno@clisp.org>
7403
7404         * modules/iconv (Include): Clarify that <iconv.h> can only be included
7405         if iconv is found to exist.
7406
7407 2007-01-14  Bruno Haible  <bruno@clisp.org>
7408
7409         * modules/c-ctype-tests: New file.
7410         * tests/test-c-ctype.c: New file.
7411
7412 2007-01-14  Bruno Haible  <bruno@clisp.org>
7413
7414         * modules/binary-io-tests: New file.
7415         * tests/test-binary-io.sh: New file.
7416         * tests/test-binary-io.c: New file.
7417
7418 2007-01-14  Bruno Haible  <bruno@clisp.org>
7419
7420         * modules/array-oset-tests: New file.
7421         * tests/test-array_oset.c: New file.
7422
7423 2007-01-14  Bruno Haible  <bruno@clisp.org>
7424
7425         * modules/array-list-tests: New file.
7426         * tests/test-array_list.c: New file.
7427
7428 2007-01-14  Bruno Haible  <bruno@clisp.org>
7429
7430         * gnulib-tool (func_create_testdir): Don't unnecessarily run configure
7431         and make.
7432         Reported by Simon Josefsson in
7433         <http://lists.gnu.org/archive/html/bug-gnulib/2007-01/msg00139.html>
7434
7435 2007-01-14  Bruno Haible  <bruno@clisp.org>
7436
7437         * modules/allocsa-tests: New file.
7438         * tests/test-allocsa.c: New file.
7439
7440 2007-01-14  Bruno Haible  <bruno@clisp.org>
7441
7442         * modules/fchdir (Depends-on): Add absolute-header.
7443         * modules/unistd (Depends-on): Likewise.
7444
7445 2006-12-30  Bruno Haible  <bruno@clisp.org>
7446
7447         * modules/fchdir: New file.
7448         * modules/unistd (Files): Add lib/unistd_.h.
7449         (Makefile.am): Generate unistd.h from unistd_.h.
7450         * lib/fchdir.c: New file.
7451         * lib/dirent_.h: New file.
7452         * lib/unistd_.h: New file.
7453         * lib/fcntl_.h (open) [FCHDIR_REPLACEMENT]: New replacement.
7454         * m4/fchdir.m4: New file.
7455         * m4/unistd_h.m4 (gl_PREREQ_UNISTD): New macro.
7456         (gl_HEADER_UNISTD): Invoke it.
7457         * lib/dup-safer.c (dup_safer) [FCHDIR_REPLACEMENT]: Use the dup
7458         function.
7459         * lib/backupfile.c (opendir, closedir): Undefine.
7460         * lib/chown.c (open, close): Undefine.
7461         * lib/clean-temp.c (open, close): Undefine.
7462         * lib/copy-file.c (open, close): Undefine.
7463         * lib/execute.c (open, close): Undefine.
7464         * lib/fsusage.c (open, close): Undefine.
7465         * lib/gc-gnulib.c (open, close): Undefine.
7466         * lib/getcwd.c (opendir, closedir): Undefine.
7467         * lib/glob.c (opendir, closedir): Undefine.
7468         * lib/javacomp.c (open, close): Undefine.
7469         * lib/mountlist.c (open, close, opendir, closedir): Undefine.
7470         * lib/openat-proc.c (open, close): Undefine.
7471         * lib/pagealign_alloc.c (open, close): Undefine.
7472         * lib/pipe.c (open, close): Undefine.
7473         * lib/progreloc.c (open, close): Undefine.
7474         * lib/savedir.c (opendir, closedir): Undefine.
7475         * lib/utime.c (open, close): Undefine.
7476         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add fchdir.
7477
7478 2007-01-10  Bruno Haible  <bruno@clisp.org>
7479
7480         * lib/striconv.c (mem_cd_iconv): Align the temporary buffer.
7481
7482 2007-01-12  Eric Blake  <ebb9@byu.net>
7483
7484         Provide a robust <wchar.h>.  Further simplifications are now
7485         possible in other modules, but not included here.
7486         * modules/wchar: New module.
7487         * m4/wchar.m4: New file.
7488         * lib/wchar_.h: Likewise.
7489         * modules/mbchar (Depends-on): Depend on wchar, as the first use
7490         of the new module.
7491         * MODULES.html.sh (Extended multibyte and wide character utilities):
7492         New section.
7493
7494 2007-01-12  Paul Eggert  <eggert@cs.ucla.edu>
7495
7496         * lib/xreadlink.c (SYMLINK_MAX) [!defined SYMLINK_MAX]: Define
7497         to a reasonable default for memory allocation.
7498         (xreadlink): Don't allocate a huge buffer, to work around a buggy
7499         file system that reports garbage st_size values for symlinks.
7500         Problem reported by Liyang Hu.
7501
7502 2007-01-11  Simon Josefsson  <simon@josefsson.org>
7503
7504         * gnulib-tool (func_all_modules): Exclude all .* files (e.g.,
7505         Emacs .#* auto-save files).
7506
7507 2007-01-11  Bruno Haible  <bruno@clisp.org>
7508
7509         * gnulib-tool (func_all_modules): Exclude all files inside the CVS
7510         directory.
7511
7512 2007-01-10  Paul Eggert  <eggert@cs.ucla.edu>
7513
7514         Use @...@ consistently in lib/wctype_.h.
7515         * lib/wctype_.h [HAVE_WINT_T]: Go back to using @...@, but rely
7516         on it being set to 1 or 0.
7517         * m4/wctype.m4 (gl_WCTYPE_H): Set HAVE_WINT_T to 1 or 0, and
7518         go back to AC_SUBSTing it.
7519         * modules/wctype (Makefile.am): Undo previous change.
7520
7521 2007-01-10  Eric Blake  <ebb9@byu.net>
7522
7523         * lib/wctype_.h [HAVE_WINT_T]: Rely on AC_DEFINE.
7524         * m4/wctype.m4 (gl_WCTYPE_H): No need to AC_SUBST(HAVE_WINT_T).
7525         * modules/wctype (Makefile.am): Likewise.
7526         Reported by Chris McGuire.
7527
7528 2007-01-10  Jim Meyering  <jim@meyering.net>
7529
7530         fts.c: a small readability/maintainability improvement
7531         * lib/fts.c (fts_read): Make this code slightly more readable and
7532         maintainable by hoisting the "sp->fts_cur = p" assignments to
7533         immediately follow the statements that set P.  Derived from
7534         the patch by Miloslav Trmac in http://bugzilla.redhat.com/222089.
7535
7536 2007-01-10  Eric Blake  <ebb9@byu.net>
7537
7538         * lib/wctype_.h [HAVE_WINT_T]: Include <stddef.h> before
7539         <wchar.h>, to work around BSDI bug in BSD/OS 4.0.1.
7540         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Likewise.
7541         * m4/wint_t.m4 (gt_TYPE_WINT_T): Likewise.
7542         Reported by Chris McGuire.
7543
7544 2007-01-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
7545
7546         * gnulib-tool (func_all_modules): Use POSIX conforming escaping
7547         in sed script.
7548
7549 2007-01-09  Bruno Haible  <bruno@clisp.org>
7550
7551         * MODULES.html.sh: Accept options --cvs-urls, --git-urls.
7552         (repo_url_prefix, repo_url_suffix, repo_url_suffix_repl): New
7553         variables.
7554         (func_module): Use them.
7555
7556 2007-01-09  Bruno Haible  <bruno@clisp.org>
7557
7558         * modules/unistr/base: New file.
7559         * lib/unistr.h: New file.
7560
7561         * modules/unistr/u8-to-u16: New file.
7562         * lib/unistr/u8-to-u16.c: New file.
7563
7564         * modules/unistr/u8-to-u32: New file.
7565         * lib/unistr/u8-to-u32.c: New file.
7566
7567         * modules/unistr/u16-to-u8: New file.
7568         * lib/unistr/u16-to-u8.c: New file.
7569
7570         * modules/unistr/u16-to-u32: New file.
7571         * lib/unistr/u16-to-u32.c: New file.
7572
7573         * modules/unistr/u32-to-u8: New file.
7574         * lib/unistr/u32-to-u8.c: New file.
7575
7576         * modules/unistr/u32-to-u16: New file.
7577         * lib/unistr/u32-to-u16.c: New file.
7578
7579         * modules/unistr/u8-check: New file.
7580         * modules/unistr/u16-check: New file.
7581         * modules/unistr/u32-check: New file.
7582         * lib/unistr/u8-check.c: New file.
7583         * lib/unistr/u16-check.c: New file.
7584         * lib/unistr/u32-check.c: New file.
7585
7586         * modules/unistr/u8-chr: New file.
7587         * modules/unistr/u16-chr: New file.
7588         * modules/unistr/u32-chr: New file.
7589         * lib/unistr/u8-chr.c: New file.
7590         * lib/unistr/u16-chr.c: New file.
7591         * lib/unistr/u32-chr.c: New file.
7592
7593         * modules/unistr/u8-cmp: New file.
7594         * modules/unistr/u16-cmp: New file.
7595         * modules/unistr/u32-cmp: New file.
7596         * lib/unistr/u8-cmp.c: New file.
7597         * lib/unistr/u16-cmp.c: New file.
7598         * lib/unistr/u32-cmp.c: New file.
7599
7600         * modules/unistr/u8-cpy: New file.
7601         * modules/unistr/u16-cpy: New file.
7602         * modules/unistr/u32-cpy: New file.
7603         * lib/unistr/u8-cpy.c: New file.
7604         * lib/unistr/u16-cpy.c: New file.
7605         * lib/unistr/u32-cpy.c: New file.
7606         * lib/unistr/u-cpy.h: New file.
7607
7608         * modules/unistr/u8-cpy-alloc: New file.
7609         * modules/unistr/u16-cpy-alloc: New file.
7610         * modules/unistr/u32-cpy-alloc: New file.
7611         * lib/unistr/u8-cpy-alloc.c: New file.
7612         * lib/unistr/u16-cpy-alloc.c: New file.
7613         * lib/unistr/u32-cpy-alloc.c: New file.
7614         * lib/unistr/u-cpy-alloc.h: New file.
7615
7616         * modules/unistr/u8-endswith: New file.
7617         * modules/unistr/u16-endswith: New file.
7618         * modules/unistr/u32-endswith: New file.
7619         * lib/unistr/u8-endswith.c: New file.
7620         * lib/unistr/u16-endswith.c: New file.
7621         * lib/unistr/u32-endswith.c: New file.
7622         * lib/unistr/u-endswith.h: New file.
7623
7624         * modules/unistr/u8-mblen: New file.
7625         * modules/unistr/u16-mblen: New file.
7626         * modules/unistr/u32-mblen: New file.
7627         * lib/unistr/u8-mblen.c: New file.
7628         * lib/unistr/u16-mblen.c: New file.
7629         * lib/unistr/u32-mblen.c: New file.
7630
7631         * modules/unistr/u8-mbtouc: New file.
7632         * modules/unistr/u16-mbtouc: New file.
7633         * modules/unistr/u32-mbtouc: New file.
7634         * lib/unistr/u8-mbtouc.c: New file.
7635         * lib/unistr/u16-mbtouc.c: New file.
7636         * lib/unistr/u32-mbtouc.c: New file.
7637
7638         * modules/unistr/u8-mbtouc-safe: New file.
7639         * modules/unistr/u16-mbtouc-safe: New file.
7640         * modules/unistr/u32-mbtouc-safe: New file.
7641         * lib/unistr/u8-mbtouc-safe.c: New file.
7642         * lib/unistr/u16-mbtouc-safe.c: New file.
7643         * lib/unistr/u32-mbtouc-safe.c: New file.
7644
7645         * modules/unistr/u8-move: New file.
7646         * modules/unistr/u16-move: New file.
7647         * modules/unistr/u32-move: New file.
7648         * lib/unistr/u8-move.c: New file.
7649         * lib/unistr/u16-move.c: New file.
7650         * lib/unistr/u32-move.c: New file.
7651         * lib/unistr/u-move.h: New file.
7652
7653         * modules/unistr/u8-next: New file.
7654         * modules/unistr/u16-next: New file.
7655         * modules/unistr/u32-next: New file.
7656         * lib/unistr/u8-next.c: New file.
7657         * lib/unistr/u16-next.c: New file.
7658         * lib/unistr/u32-next.c: New file.
7659
7660         * modules/unistr/u8-prev: New file.
7661         * modules/unistr/u16-prev: New file.
7662         * modules/unistr/u32-prev: New file.
7663         * lib/unistr/u8-prev.c: New file.
7664         * lib/unistr/u16-prev.c: New file.
7665         * lib/unistr/u32-prev.c: New file.
7666
7667         * modules/unistr/u8-set: New file.
7668         * modules/unistr/u16-set: New file.
7669         * modules/unistr/u32-set: New file.
7670         * lib/unistr/u8-set.c: New file.
7671         * lib/unistr/u16-set.c: New file.
7672         * lib/unistr/u32-set.c: New file.
7673         * lib/unistr/u-set.h: New file.
7674
7675         * modules/unistr/u8-startswith: New file.
7676         * modules/unistr/u16-startswith: New file.
7677         * modules/unistr/u32-startswith: New file.
7678         * lib/unistr/u8-startswith.c: New file.
7679         * lib/unistr/u16-startswith.c: New file.
7680         * lib/unistr/u32-startswith.c: New file.
7681         * lib/unistr/u-startswith.h: New file.
7682
7683         * modules/unistr/u8-stpcpy: New file.
7684         * modules/unistr/u16-stpcpy: New file.
7685         * modules/unistr/u32-stpcpy: New file.
7686         * lib/unistr/u8-stpcpy.c: New file.
7687         * lib/unistr/u16-stpcpy.c: New file.
7688         * lib/unistr/u32-stpcpy.c: New file.
7689         * lib/unistr/u-stpcpy.h: New file.
7690
7691         * modules/unistr/u8-stpncpy: New file.
7692         * modules/unistr/u16-stpncpy: New file.
7693         * modules/unistr/u32-stpncpy: New file.
7694         * lib/unistr/u8-stpncpy.c: New file.
7695         * lib/unistr/u16-stpncpy.c: New file.
7696         * lib/unistr/u32-stpncpy.c: New file.
7697         * lib/unistr/u-stpncpy.h: New file.
7698
7699         * modules/unistr/u8-strcat: New file.
7700         * modules/unistr/u16-strcat: New file.
7701         * modules/unistr/u32-strcat: New file.
7702         * lib/unistr/u8-strcat.c: New file.
7703         * lib/unistr/u16-strcat.c: New file.
7704         * lib/unistr/u32-strcat.c: New file.
7705         * lib/unistr/u-strcat.h: New file.
7706
7707         * modules/unistr/u8-strchr: New file.
7708         * modules/unistr/u16-strchr: New file.
7709         * modules/unistr/u32-strchr: New file.
7710         * lib/unistr/u8-strchr.c: New file.
7711         * lib/unistr/u16-strchr.c: New file.
7712         * lib/unistr/u32-strchr.c: New file.
7713
7714         * modules/unistr/u8-strcmp: New file.
7715         * modules/unistr/u16-strcmp: New file.
7716         * modules/unistr/u32-strcmp: New file.
7717         * lib/unistr/u8-strcmp.c: New file.
7718         * lib/unistr/u16-strcmp.c: New file.
7719         * lib/unistr/u32-strcmp.c: New file.
7720
7721         * modules/unistr/u8-strcpy: New file.
7722         * modules/unistr/u16-strcpy: New file.
7723         * modules/unistr/u32-strcpy: New file.
7724         * lib/unistr/u8-strcpy.c: New file.
7725         * lib/unistr/u16-strcpy.c: New file.
7726         * lib/unistr/u32-strcpy.c: New file.
7727         * lib/unistr/u-strcpy.h: New file.
7728
7729         * modules/unistr/u8-strcspn: New file.
7730         * modules/unistr/u16-strcspn: New file.
7731         * modules/unistr/u32-strcspn: New file.
7732         * lib/unistr/u8-strcspn.c: New file.
7733         * lib/unistr/u16-strcspn.c: New file.
7734         * lib/unistr/u32-strcspn.c: New file.
7735         * lib/unistr/u-strcspn.h: New file.
7736
7737         * modules/unistr/u8-strdup: New file.
7738         * modules/unistr/u16-strdup: New file.
7739         * modules/unistr/u32-strdup: New file.
7740         * lib/unistr/u8-strdup.c: New file.
7741         * lib/unistr/u16-strdup.c: New file.
7742         * lib/unistr/u32-strdup.c: New file.
7743         * lib/unistr/u-strdup.h: New file.
7744
7745         * modules/unistr/u8-strlen: New file.
7746         * modules/unistr/u16-strlen: New file.
7747         * modules/unistr/u32-strlen: New file.
7748         * lib/unistr/u8-strlen.c: New file.
7749         * lib/unistr/u16-strlen.c: New file.
7750         * lib/unistr/u32-strlen.c: New file.
7751         * lib/unistr/u-strlen.h: New file.
7752
7753         * modules/unistr/u8-strmblen: New file.
7754         * modules/unistr/u16-strmblen: New file.
7755         * modules/unistr/u32-strmblen: New file.
7756         * lib/unistr/u8-strmblen.c: New file.
7757         * lib/unistr/u16-strmblen.c: New file.
7758         * lib/unistr/u32-strmblen.c: New file.
7759
7760         * modules/unistr/u8-strmbtouc: New file.
7761         * modules/unistr/u16-strmbtouc: New file.
7762         * modules/unistr/u32-strmbtouc: New file.
7763         * lib/unistr/u8-strmbtouc.c: New file.
7764         * lib/unistr/u16-strmbtouc.c: New file.
7765         * lib/unistr/u32-strmbtouc.c: New file.
7766
7767         * modules/unistr/u8-strncat: New file.
7768         * modules/unistr/u16-strncat: New file.
7769         * modules/unistr/u32-strncat: New file.
7770         * lib/unistr/u8-strncat.c: New file.
7771         * lib/unistr/u16-strncat.c: New file.
7772         * lib/unistr/u32-strncat.c: New file.
7773         * lib/unistr/u-strncat.h: New file.
7774
7775         * modules/unistr/u8-strncmp: New file.
7776         * modules/unistr/u16-strncmp: New file.
7777         * modules/unistr/u32-strncmp: New file.
7778         * lib/unistr/u8-strncmp.c: New file.
7779         * lib/unistr/u16-strncmp.c: New file.
7780         * lib/unistr/u32-strncmp.c: New file.
7781
7782         * modules/unistr/u8-strncpy: New file.
7783         * modules/unistr/u16-strncpy: New file.
7784         * modules/unistr/u32-strncpy: New file.
7785         * lib/unistr/u8-strncpy.c: New file.
7786         * lib/unistr/u16-strncpy.c: New file.
7787         * lib/unistr/u32-strncpy.c: New file.
7788         * lib/unistr/u-strncpy.h: New file.
7789
7790         * modules/unistr/u8-strnlen: New file.
7791         * modules/unistr/u16-strnlen: New file.
7792         * modules/unistr/u32-strnlen: New file.
7793         * lib/unistr/u8-strnlen.c: New file.
7794         * lib/unistr/u16-strnlen.c: New file.
7795         * lib/unistr/u32-strnlen.c: New file.
7796         * lib/unistr/u-strnlen.h: New file.
7797
7798         * modules/unistr/u8-strpbrk: New file.
7799         * modules/unistr/u16-strpbrk: New file.
7800         * modules/unistr/u32-strpbrk: New file.
7801         * lib/unistr/u8-strpbrk.c: New file.
7802         * lib/unistr/u16-strpbrk.c: New file.
7803         * lib/unistr/u32-strpbrk.c: New file.
7804         * lib/unistr/u-strpbrk.h: New file.
7805
7806         * modules/unistr/u8-strrchr: New file.
7807         * modules/unistr/u16-strrchr: New file.
7808         * modules/unistr/u32-strrchr: New file.
7809         * lib/unistr/u8-strrchr.c: New file.
7810         * lib/unistr/u16-strrchr.c: New file.
7811         * lib/unistr/u32-strrchr.c: New file.
7812
7813         * modules/unistr/u8-strspn: New file.
7814         * modules/unistr/u16-strspn: New file.
7815         * modules/unistr/u32-strspn: New file.
7816         * lib/unistr/u8-strspn.c: New file.
7817         * lib/unistr/u16-strspn.c: New file.
7818         * lib/unistr/u32-strspn.c: New file.
7819         * lib/unistr/u-strspn.h: New file.
7820
7821         * modules/unistr/u8-strstr: New file.
7822         * modules/unistr/u16-strstr: New file.
7823         * modules/unistr/u32-strstr: New file.
7824         * lib/unistr/u8-strstr.c: New file.
7825         * lib/unistr/u16-strstr.c: New file.
7826         * lib/unistr/u32-strstr.c: New file.
7827         * lib/unistr/u-strstr.h: New file.
7828
7829         * modules/unistr/u8-strtok: New file.
7830         * modules/unistr/u16-strtok: New file.
7831         * modules/unistr/u32-strtok: New file.
7832         * lib/unistr/u8-strtok.c: New file.
7833         * lib/unistr/u16-strtok.c: New file.
7834         * lib/unistr/u32-strtok.c: New file.
7835         * lib/unistr/u-strtok.h: New file.
7836
7837         * modules/unistr/u8-uctomb: New file.
7838         * modules/unistr/u16-uctomb: New file.
7839         * modules/unistr/u32-uctomb: New file.
7840         * lib/unistr/u8-uctomb.c: New file.
7841         * lib/unistr/u16-uctomb.c: New file.
7842         * lib/unistr/u32-uctomb.c: New file.
7843
7844         * MODULES.html.sh (Unicode string functions): Add the new modules.
7845
7846 2007-01-08  Bruno Haible  <bruno@clisp.org>
7847
7848         * gnulib-tool (func_all_modules): Use find, not ls, to traverse the
7849         modules directory. Filter out CVS, ChangeLog, COPYING, README also from
7850         subdirectories.
7851
7852 2007-01-08  Karl Berry  <karl@gnu.org>
7853
7854         * doc/error.texi: mention that main() fns must set program_name
7855         when progname is used.
7856
7857 2007-01-08  Paul Eggert  <eggert@cs.ucla.edu>
7858
7859         * m4/wctype.m4 (gl_WCTYPE_H): Compute ABSOLUTE_WCTYPE_H even if
7860         WCTYPE_H is empty, for the benefit of builds from non-distclean
7861         directories.  Problem reported by Eric Blake in
7862         <http://lists.gnu.org/archive/html/bug-gnulib/2007-01/msg00157.html>.
7863
7864 2007-01-08  Bruno Haible  <bruno@clisp.org>
7865
7866         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME): Remove
7867         PROVIDE_CANONICALIZE_FILENAME_MODE macro definition.
7868         * lib/canonicalize.h: Test GNULIB_CANONICALIZE instead of
7869         PROVIDE_CANONICALIZE_FILENAME_MODE.
7870         * modules/canonicalize (configure.ac): Use gl_MODULE_INDICATOR.
7871
7872 2007-01-08  Bruno Haible  <bruno@clisp.org>
7873
7874         * m4/fts.m4 (gl_FUNC_FTS_LGPL): Remove _LGPL_PACKAGE macro definition.
7875         * lib/fts_.h (_LGPL_PACKAGE): Remove macro.
7876         Use !GNULIB_FTS instead of _LGPL_PACKAGE.
7877         * lib/fts.c: Likewise.
7878         * modules/fts (configure.ac): Use gl_MODULE_INDICATOR.
7879
7880 2006-12-25  Bruno Haible  <bruno@clisp.org>
7881
7882         * modules/utf8-ucs4-safe: New file.
7883         * lib/utf8-ucs4-safe.h: New file.
7884         * lib/unistr/utf8-ucs4-safe.c: New file.
7885
7886         * modules/utf16-ucs4-safe: New file.
7887         * lib/utf16-ucs4-safe.h: New file.
7888         * lib/unistr/utf16-ucs4-safe.c: New file.
7889
7890         * MODULES.html.sh (Unicode string functions): Add the new modules.
7891
7892 2007-01-08  Bruno Haible  <bruno@clisp.org>
7893
7894         * modules/utf8-ucs4 (Files, lib_SOURCES): Add unistr/utf8-ucs4.c.
7895         (Depends-on): Add unitypes.
7896         * lib/utf8-ucs4.h: Add double-inclusion guard. Include unitypes.h.
7897         (u8_mbtouc_aux): Move out to separate file.
7898         (u8_mbtouc): Use ucs4_t, uint8_t types.
7899         * lib/unistr/utf8-ucs4.c: New file.
7900
7901         * modules/utf16-ucs4 (Files, lib_SOURCES): Add unistr/utf16-ucs4.c.
7902         (Depends-on): Add unitypes.
7903         * lib/utf16-ucs4.h: Add double-inclusion guard. Include unitypes.h.
7904         (u16_mbtouc_aux): Move out to separate file.
7905         (u16_mbtouc): Use ucs4_t, uint16_t types.
7906         * lib/unistr/utf16-ucs4.c: New file.
7907
7908         * modules/ucs4-utf8 (Files, lib_SOURCES): Add unistr/ucs4-utf8.c.
7909         (Depends-on): Add unitypes.
7910         * lib/ucs4-utf8.h: Add double-inclusion guard. Include unitypes.h.
7911         (u8_uctomb_aux): Move out to separate file.
7912         (u8_uctomb): Use ucs4_t, uint8_t types.
7913         * lib/unistr/ucs4-utf8.c: New file.
7914
7915         * modules/ucs4-utf16 (Files, lib_SOURCES): Add unistr/ucs4-utf16.c.
7916         (Depends-on): Add unitypes.
7917         * lib/ucs4-utf16.h: Add double-inclusion guard. Include unitypes.h.
7918         (u16_uctomb_aux): Move out to separate file.
7919         (u16_uctomb): Use ucs4_t, uint16_t types.
7920         * lib/unistr/ucs4-utf16.c: New file.
7921
7922 2006-12-25  Bruno Haible  <bruno@clisp.org>
7923
7924         * modules/unitypes: New file.
7925         * lib/unitypes.h: New file.
7926         * MODULES.html.sh (func_all_modules): New section "Unicode string
7927         functions". Move ucs4-utf8, ucs4-utf16, utf8-ucs4, utf16-ucs4 to
7928         this section. Add unitypes.
7929
7930 2007-01-08  Bruno Haible  <bruno@clisp.org>
7931
7932         Avoid variable names that conflict with those from libtool.
7933         * m4/lib-link.m4 (AC_LIB_RPATH, AC_LIB_LINKFLAGS_BODY,
7934         AC_LIB_LINKFLAGS_FROM_LIBS): Rename libext to acl_libext,
7935         shlibext to acl_shlibext, libname_spec to acl_libname_spec,
7936         library_names_spec to acl_library_names_spec, hardcode_* to
7937         acl_hardcode_*.
7938         Reported by Ralf Wildenhues.
7939
7940 2007-01-08  Bruno Haible  <bruno@clisp.org>
7941
7942         * m4/gc-arcfour.m4 (gl_GC_ARCFOUR): Remove GC_USE_ARCFOUR macro
7943         definition.
7944         * m4/gc-arctwo.m4 (gl_GC_ARCTWO): Remove GC_USE_ARCTWO macro
7945         definition.
7946         * m4/gc-des.m4 (gl_GC_DES): Remove GC_USE_DES macro definition.
7947         * m4/gc-hmac-md5.m4 (gl_GC_HMAC_MD5): Remove GC_USE_HMAC_MD5 macro
7948         definition.
7949         * m4/gc-hmac-sha1.m4 (gl_GC_HMAC_SHA1): Remove GC_USE_HMAC_SHA1 macro
7950         definition.
7951         * m4/gc-md2.m4 (gl_GC_MD2): Remove GC_USE_MD2 macro definition.
7952         * m4/gc-md4.m4 (gl_GC_MD4): Remove GC_USE_MD4 macro definition.
7953         * m4/gc-md5.m4 (gl_GC_MD5): Remove GC_USE_MD5 macro definition.
7954         * m4/gc-random.m4 (gl_GC_RANDOM): Remove GC_USE_RANDOM macro
7955         definition.
7956         * m4/gc-rijndael.m4 (gl_GC_RIJNDAEL): Remove GC_USE_RIJNDAEL macro
7957         definition.
7958         * m4/gc-sha1.m4 (gl_GC_SHA1): Remove GC_USE_SHA1 macro definition.
7959         * lib/gc-gnulib.c: Use GNULIB_GC_<algorithm> instead of
7960         GC_USE_<algorithm>.
7961         * lib/gc-libgcrypt.c: Likewise.
7962         * modules/gc-arcfour (configure.ac): Use gl_MODULE_INDICATOR.
7963         * modules/gc-arctwo (configure.ac): Likewise.
7964         * modules/gc-des (configure.ac): Likewise.
7965         * modules/gc-hmac-md5 (configure.ac): Likewise.
7966         * modules/gc-hmac-sha1 (configure.ac): Likewise.
7967         * modules/gc-md2 (configure.ac): Likewise.
7968         * modules/gc-md4 (configure.ac): Likewise.
7969         * modules/gc-md5 (configure.ac): Likewise.
7970         * modules/gc-random (configure.ac): Likewise.
7971         * modules/gc-rijndael (configure.ac): Likewise.
7972         * modules/gc-sha1 (configure.ac): Likewise.
7973
7974 2007-01-08  Bruno Haible  <bruno@clisp.org>
7975
7976         * m4/close-stream.m4 (gl_CLOSE_STREAM): Remove GNULIB_CLOSE_STREAM
7977         macro definition.
7978         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Remove GNULIB_FCNTL_SAFER macro
7979         definition.
7980         * m4/stdio-safer.m4 (gl_FOPEN_SAFER): Remove GNULIB_FOPEN_SAFER macro
7981         definition.
7982         * modules/close-stream (configure.ac): Invoke gl_MODULE_INDICATOR.
7983         * modules/fcntl-safer (configure.ac): Likewise.
7984         * modules/fopen-safer (configure.ac): Likewise.
7985         * modules/fwriteerror (configure.ac): Likewise. Remove explicit
7986         GNULIB_FWRITEERROR macro definition.
7987
7988 2007-01-08  Bruno Haible  <bruno@clisp.org>
7989
7990         * m4/gnulib-common.m4: New file.
7991         * gnulib-tool (func_get_autoconf_snippet): Undo last change.
7992         (func_get_filelist): Add m4/gnulib-common.m4.
7993
7994 2007-01-08  Bruno Haible  <bruno@clisp.org>
7995
7996         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Simplify the sorting
7997         command.
7998
7999 2007-01-08  Jim Meyering  <jim@meyering.net>
8000
8001         Use a more robust test for a "can't happen" condition.
8002         * lib/fts.c (fts_read): Revert the change of 2006-11-22, since it
8003         narrowed the st_size value.  Presuming the "can't happen" condition
8004         is true, that narrowing could conceivably convert an invalid st_size
8005         value into a valid one.  Instead, use a change based on Matthew
8006         Woehlke's original patch.
8007
8008         Slight readability improvement: use an assert-like macro
8009         in place of literal "abort ()" uses.
8010         * lib/fts.c (fts_assert): Define.
8011         (fts_set_stat_required, cwd_advance_fd, fts_read, fd_ring_check):
8012         Use this macro instead of a bare 'abort'.
8013
8014 2007-01-05  Paul Eggert  <eggert@cs.ucla.edu>
8015
8016         Don't worry about using IRIX 5.3's wctype.h broken definitions;
8017         simply work around them.
8018         * lib/wctype_.h: Remove test for HAVE_WCTYPE_CTMP_BUG.
8019         (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit, iswgraph, iswlower):
8020         (iswprint, iswpunct, iswspace, iswupper, iswxdigit): Undef before
8021         declaring.
8022         Don't bother to define as macros, since the standard doesn't require it.
8023         * m4/wctype.m4 (WCTYPE_H, ABSOLUTE_WCTYPE_H): Simplify, since we no
8024         longer worry about IRIX 5.3.
8025         (HAVE_WCTYPE_CTMP_BUG): Remove.
8026
8027 2007-01-04  Paul Eggert  <eggert@cs.ucla.edu>
8028
8029         * lib/wctype_.h (_ctmp_) [HAVE_WCTYPE_CTMP_BUG]: Now of type wchar_t,
8030         not wint_t.  Also, include <ctype.h>, to fix another IRIX bug.
8031         * m4/wctype.m4 (gl_WCTYPE_H): Likewise.
8032         Problems reported by Georg Schwarz for IRIX 5.3.
8033
8034         * gnulib-tool (autoconf_minversion): Take the maximum version number
8035         found, not the minimum.  Problem reported by James Youngman.
8036
8037 2007-01-03  Karl Berry  <karl@gnu.org>
8038
8039         * doc/error.texi: new file, explaining interaction with progname.
8040         * doc/gnulib.texi: include it.  Update copyright.
8041
8042 2007-01-03  Simon Josefsson  <simon@josefsson.org>
8043
8044         * gnulib-tool (func_create_testdir): Run AC_CANONICAL_BUILD and
8045         AC_CANONICAL_HOST, to improve autobuild outputs.
8046
8047 2007-01-03  Paolo Bonzini  <bonzini@gnu.org>
8048             Yoann Vandoorselaere <yoann.v@prelude-ids.com>
8049
8050         * lib/poll.c (poll): Use recv on Mac OS X to distinguish connected
8051         sockets, server sockets, and other file descriptors.  Count errors
8052         to compute the return value.  Reorder the code a bit to be easier
8053         to follow.  Don't set event bits that were not requested (except
8054         POLLERR and POLLHUP).
8055
8056 2007-01-01  Bruno Haible  <bruno@clisp.org>
8057
8058         * modules/lchmod (Include): Require lchmod.h, not lchown.h.
8059
8060 2007-01-03  Jim Meyering  <jim@meyering.net>
8061
8062         * modules/fts-lgpl (Depends-on): Add i-ring.  Reported by Bruno Haible.
8063
8064 2007-01-02  Bruno Haible  <bruno@clisp.org>
8065
8066         * modules/settime (Include): Require timespec.h.
8067         * modules/nanosleep (Include): Likewise.
8068
8069 2007-01-01  Bruno Haible  <bruno@clisp.org>
8070
8071         * gnulib-tool (func_emit_copyright_notice): Bump year.
8072         (func_get_autoconf_snippet): Emit a GNULIB_<modulename> macro.
8073
8074 2007-01-01  Bruno Haible  <bruno@clisp.org>
8075
8076         Improve support for OpenBSD.
8077         * build-aux/config.rpath (libname_spec): Export.
8078         (library_names_spec): New variable. Export.
8079         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Extract libname_spec and
8080         library_names_spec from the config.rpath output. Locate shared library
8081         through the name pattern in library_names_spec.
8082
8083 2007-01-01  Eric Blake  <ebb9@byu.net>
8084
8085         * lib/version-etc.c (COPYRIGHT_YEAR): Bump for new year.
8086
8087 2006-12-30  Paul Eggert  <eggert@cs.ucla.edu>
8088
8089         * gnulib-tool (SORT): Remove, since we no longer assume GNU sort.
8090         Rewrite so as not to assume GNU sort or "tail -1".  Also, don't
8091         assume the C locale, and avoid an "eval" that could cause trouble.
8092         Problem with SORT reported by Bob Proulx.
8093
8094         * lib/getpagesize.h (getpagesize) [defined __amigaos4__]:
8095         Define.  Trivial patch from Henning Nielsen Lund, originally
8096         sent to bug-grep@gnu.org today.
8097
8098 2006-12-29  Paul Eggert  <eggert@cs.ucla.edu>
8099
8100         * lib/acl.h: Include sys/types.h and sys/stat.h, for mode_t and
8101         struct stat.  Problem reported by Henning Nielsen Lund.
8102         * lib/acl.c: Include acl.h first, to check interface.  Don't
8103         bother to include sys/types.h and sys/stat.h again.
8104
8105 2006-12-28  Paul Eggert  <eggert@cs.ucla.edu>
8106
8107         Import the following change from libc; problem reported by
8108         Sven Verdoolaege.
8109
8110         2005-10-13  Ulrich Drepper  <drepper@redhat.com>
8111
8112         [BZ #1373]
8113         * lib/argp.h: Remove __NTH for __argp_usage inline function.
8114
8115 2006-12-28  Jim Meyering  <jim@meyering.net>
8116
8117         * build-aux/announce-gen: Do not assume that the package
8118         builds any of tar.gz, tar.bz2, and .xdelta files.
8119         Suggestion from Simon Josefsson.
8120
8121 2006-12-28  Simon Josefsson  <simon@josefsson.org>
8122
8123         * modules/announce-gen: New file.
8124
8125 2006-12-27  Paul Eggert  <eggert@cs.ucla.edu>
8126
8127         * lib/mbchar.h: Just include <wctype.h>; the wctype module
8128         handles its gotchas now.
8129         * lib/mbswidth.c: Likewise.
8130         * lib/wcwidth.h: Likewise.
8131         * m4/mbchar.m4 (gl_MBCHAR): Don't bother checking for wctype.h
8132         and iswcntrl; the wctype module does this stuff now.
8133         * m4/mbswidth.m4 (gl_MBSWIDTH): Likewise.
8134         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Likewise.
8135         * modules/mbchar (Depends-on): Add wctype.
8136         * modules/mbswidth (Depends-on): Likewise.
8137         * modules/wcwidth (Depends-on): Likewise.
8138
8139 2006-12-27  Eric Blake  <ebb9@byu.net>
8140
8141         * lib/fnmatch.c: Reinstate inclusion of <wchar.h>, since this
8142         module uses more than what <wctype.h> is required to provide.
8143
8144 2006-12-26  Eric Blake  <ebb9@byu.net>
8145
8146         * gnulib-tool (sed_extract_prog): Avoid space-tab.
8147
8148 2006-12-26  Eric Blake  <ebb9@byu.net>
8149
8150         * modules/absolute-header: New module.
8151         * modules/fcntl (Depends-on): Depend on it.
8152         * modules/inttypes (Depends-on): Likewise.
8153         * modules/stdint (Depends-on): Likewise.
8154         * modules/sys_stat (Depends-on): Likewise.
8155         * modules/wctype (Depends-on): Likewise.
8156         * MODULES.html.sh (Support for building libraries and
8157         executables): Document it.
8158
8159 2006-12-25  Paul Eggert  <eggert@cs.ucla.edu>
8160
8161         * gnulib-tool (SED): Remove, undoing previous change.
8162         The problem was that it broke coreutils on Solaris, because
8163         "sed --posix" leaked into a makefile.
8164         (sed): New alias, if 'alias' and GNU sed.
8165
8166 2006-12-24  Jim Meyering  <jim@meyering.net>
8167
8168         Work around an fchownat bug in glibc-2.4:
8169         http://lists.ubuntu.com/archives/ubuntu-users/2006-September/093218.html
8170         This bug would cause "chown -RP ... DIR" to follow symlinks in DIR,
8171         in spite of the -P option.
8172         * m4/openat.m4 (gl_FUNC_FCHOWNAT, gl_FUNC_FCHOWNAT_DEREF_BUG):
8173         New macros.
8174         (gl_PREREQ_OPENAT): Require gl_FUNC_FCHOWNAT.
8175         * modules/openat (Files): Add lib/fchownat.c.
8176         * lib/openat.c (fchownat): Don't define here.  Move to...
8177         * lib/fchownat.c: ...this new file.
8178
8179 2006-12-23  Paul Eggert  <eggert@cs.ucla.edu>
8180
8181         Fix bug reported by Bruno Haible in
8182         <http://lists.gnu.org/archive/html/bug-gnulib/2006-12/msg00228.html>
8183         where quotearg.c didn't compile on Mac OS X 10.2 because it
8184         lacks <wchar.h> and wint_t.
8185         * lib/wctype_.h (__wctype_wint_t): New type.
8186         Include <stdio.h>, <time.h>, <wchar.h> only if HAVE_WINT_T.
8187         (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit, iswgraph):
8188         (iswlower, iswprint, iswpunct, iswspace, iswupper, ixwxdigit):
8189         Arg is now of type __wctype_wint_t, not wint_t.
8190         * m4/wctype.m4 (gl_WCTYPE_H): Require gt_TYPE_WINT_T, and
8191         substitute HAVE_WINT_T.
8192         * modules/wctype (Files): Add m4/wint_t.m4.
8193         (wctype.h): Substitute HAVE_WINT_T.
8194
8195 2006-12-23  Bruno Haible  <bruno@clisp.org>
8196
8197         * lib/safe-read.h [C++]: Wrap declarations in extern "C".
8198
8199 2006-12-23  Bruno Haible  <bruno@clisp.org>
8200
8201         * lib/canonicalize-lgpl.c (__realpath): Test HAVE_READLINK instead of
8202         S_ISLNK.
8203         Needed because gnulib's sys/stat.h replacement defines S_ISLNK on
8204         mingw.
8205
8206 2006-12-22  Bruno Haible  <bruno@clisp.org>
8207
8208         * lib/copy-file.c: Include acl.h.
8209         (copy_file_preserving) [USE_ACL]: Use copy_acl instead of chmod.
8210         Close the file descriptors only after being done with copy_acl.
8211         * modules/copy-file (Depends-on): Add acl.
8212
8213 2006-12-22  Bruno Haible  <bruno@clisp.org>
8214
8215         * gnulib-tool (SED): New variable.
8216         Use $SED instead of sed everywhere.
8217
8218 2006-12-22  Bruno Haible  <bruno@clisp.org>
8219
8220         * modules/no-c++: New file.
8221         * m4/no-c++.m4: New file.
8222         * MODULES.html.sh (Support for building libraries and executables):
8223         Add no-c++.
8224
8225 2006-12-22  Paul Eggert  <eggert@cs.ucla.edu>
8226
8227         * m4/mktime.m4 (AC_FUNC_MKTIME): Sync from Autoconf.
8228         Include <limits.h>, and use its INT_MAX to rewrite the
8229         j loop so that it does not overflow 'int'.  Problem reported by
8230         Ralf Wildenhues in
8231         <http://lists.gnu.org/archive/html/bug-gnulib/2006-12/msg00084.html>.
8232         Play it safe by shifting left by 1 rather than multiplying by 2,
8233         as GCC is less likely to optimize this away when the value
8234         is signed (when it assumes overflow leads to undefined behavior).
8235         Also, don't assume time_t uses two's complement.
8236
8237 2006-12-21  Paul Eggert  <eggert@cs.ucla.edu>
8238
8239         * MODULES.html.sh: New module wctype.
8240         * lib/wctype_.h, m4/wctype.m4, modules/wctype: New files.
8241         * lib/fnmatch.c: Don't bother to include <wchar.h> before
8242         <wctype.h>, since the new wctype module should fix this.
8243         * lib/quotearg.c: Include <wctype.h> unconditionally, since
8244         the wctype module should arrange for it.
8245         * lib/regex_internal.h: Likewise.
8246         * m4/quotearg.m4 (gl_QUOTEARG): Don't check for wctype.h or iswprint,
8247         since the wctype module should handle this now.
8248         * m4/regex.m4 (gl_PREREQ_REGEX): Don't check for wctype.h.
8249         * modules/fnmatch (Depends-on): Add wctype.
8250         * modules/quotearg (Depends-on): Likewise.
8251         * modules/regex (Depends-on): Likewise.
8252
8253 2006-12-19  Bruno Haible  <bruno@clisp.org>
8254
8255         * lib/strdup.h [C++]: Wrap definitions in extern "C".
8256         Suggested by Lorenzo Bettini <bettini@dsi.unifi.it>.
8257
8258 2006-12-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8259
8260         * modules/savewd (Depends-on): Fix dependency on fcntl.
8261
8262 2006-12-18  Paul Eggert  <eggert@cs.ucla.edu>
8263
8264         * m4/stdint.m4 (gl_STDINT_H): Set STDINT_H to empty if stdint.h
8265         conforms to C99, rather than relying on the user's environment
8266         setting of STDINT_H.
8267
8268 2006-12-18  Paul Eggert  <eggert@cs.ucla.edu>
8269         and Eric Blake  <ebb9@byu.net>
8270
8271         * lib/dirname.h (DOUBLE_SLASH_IS_DISTINCT_ROOT): Default to 0, not 1.
8272         This is more consistent with the other defines here.
8273         * m4/double-slash-root.m4 (gl_DOUBLE_SLASH_ROOT):
8274         Port to z/OS.  Problem reported by Paul Gilmartin.
8275         Change local vars to use gl_ prefix rather than ac_.
8276         Don't define DOUBLE_SLASH_IS_DISTINCT_ROOT to 0, for consistency
8277         with other defines.
8278         * modules/double-slash-root: New module.
8279         * modules/dirname (Files): Remove m4/double-slash-root.m4.
8280         (Depends-on): Add double-slash-root.
8281         * MODULES.html.sh (File system functions): Mention new module.
8282
8283 2006-12-14  Paul Eggert  <eggert@cs.ucla.edu>
8284
8285         * lib/yesno.c [!ENABLE_NLS]: Don't include getline.h.
8286         (yesno) [!ENABLE_NLS]: Don't invoke getline or rpmatch.
8287         This is for the benefit of gzip, which doesn't do i18n.
8288
8289 2006-12-12  Jim Meyering  <jim@meyering.net>
8290
8291         * m4/acl.m4 (gl_ACL_GET_FILE): Fix logic error.
8292         Reported by Andreas Schwab <schwab@suse.de>.
8293
8294 2006-12-12  Bruno Haible  <bruno@clisp.org>
8295
8296         Merge these changes.
8297         2006-09-05  Bruno Haible  <bruno@clisp.org>
8298         * lib/iconvme.c (iconv_string): No need to save and restore errno when
8299         iconv_alloc succeeded.
8300         (iconv_alloc): Don't assume that malloc() or realloc(), when failing,
8301         sets errno to ENOMEM. (malloc on GNU/kFreeBSD doesn't.) No need to
8302         test for " && dest " at the end - dest is always != NULL there. Call
8303         iconv with 4xNULL arguments initially, to reset the state. Call iconv
8304         with 2xNULL arguments, also to flush the state storage. Handle the
8305         IRIX iconv behaviour. Realloc the final result, to throw away unused
8306         memory.
8307
8308 2006-12-11  Paul Eggert  <eggert@cs.ucla.edu>
8309
8310         * m4/openat.m4 (gl_FUNC_OPENAT): Don't compile mkdirat
8311         and fchmodat unconditionally, since glibc 2.4 has them.
8312         Problem reported by Arkadiusz Miskiewicz.
8313
8314 2006-12-10  Bruno Haible  <bruno@clisp.org>
8315
8316         * gnulib-tool (func_import): Show the include files only for those
8317         modules that are copied and specified.
8318         Reported by Karl Berry.
8319
8320 2006-12-08  Jim Meyering  <jim@meyering.net>
8321
8322         * build-aux/announce-gen ($VERSION): Don't use of $Revision...$.
8323         Instead, use Emacs' time-stamp write hook.  Note that the time is UTC.
8324
8325         * build-aux/announce-gen: Add two new options, both optional:
8326         --bootstrap-tools=TOOL_LIST
8327               a comma-separated list of tools, e.g.,
8328               autoconf,automake,bison,gnulib
8329         --gnulib-snapshot-date=DATE
8330               if gnulib is in the bootstrap tool list,
8331               then report this as the snapshot date.
8332               If not specified, use the current date/time.
8333               If you specify a date here, be sure it's UTC.
8334
8335 2006-12-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8336
8337         * tests/test-argp-2.sh: Fix test to match actual output.
8338         (func_compare): Fix sed script to be portable.
8339
8340 2006-12-05  Paul Eggert  <eggert@cs.ucla.edu>
8341
8342         * lib/utimens.c (futimens) [HAVE_BUGGY_NFS_TIME_STAMPS]: Add a
8343         workaround for this case.  It is not autoconfigured now; offhand
8344         it's hard to see how to autoconfigure it.
8345
8346 2006-12-03  Paul Eggert  <eggert@cs.ucla.edu>
8347
8348         * lib/mkdir-p.c (make_dir_parents): Fix race condition when making
8349         a directory that is about to be chowned.  Such a directory's
8350         initial file permissions should permit the owner only and this
8351         should not be changed until after the chown, since the group and
8352         other bits would be incorrect if they granted permission before
8353         the chown.
8354
8355         Fix porting problem for iswctype reported by Georg Schwarz in:
8356         http://lists.gnu.org/archive/html/bug-coreutils/2006-12/msg00017.html
8357         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Require HAVE_ISWCTYPE, too.
8358         * lib/regex_internal.h (RE_ENABLE_I18N): Likewise.
8359         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for iswctype, too.
8360         * m4/regex.m4 (gl_PREREQ_REGEX): Likewise.
8361
8362 2006-12-03  Jim Meyering  <jim@meyering.net>
8363
8364         * lib/fts.c (fts_load): Don't set sp->fts_dev here, since
8365         p->fts_statp may not yet be defined.
8366         (fts_read): Instead, set it in the caller, once p->fts_statp is
8367         sure to be defined, and corresponds to a top-level directory.
8368         This bug made du -x fail.  Here's the coreutils test case:
8369         http://git.sv.gnu.org/gitweb/?p=coreutils.git;a=commit;h=ba45154d8e9f
8370         Reported by Mike Frysinger.
8371
8372 2006-12-01  Jim Meyering  <jim@meyering.net>
8373
8374         * modules/savewd (Depends-on): Add fcntl_h to avoid self-test
8375         build failure due to missing definition of HAVE_WORKING_O_NOFOLLOW.
8376         Reported by Simon Josefsson.
8377
8378 2006-11-30  Jim Meyering  <jim@meyering.net>
8379
8380         * m4/warning.m4: Use the all-permissive copyright notice
8381         recommended by RMS (rather than LGPL).
8382         * m4/vararrays.m4: Likewise.
8383         * m4/flexmember.m4: Likewise.
8384
8385 2006-11-29  Bruno Haible  <bruno@clisp.org>
8386
8387         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
8388         noinst_LIBRARIES. Augment noinst_LIBRARIES and noinst_LTLIBRARIES
8389         using +=.
8390         Reported by Simon Josefsson <simon@josefsson.org>.
8391
8392 2006-11-28  James Youngman <jay@gnu.org>
8393
8394         * README: Advise users that they might find the bug-gnulib@gnu.org
8395         and autotools-announce@gnu.org mailing lists useful.
8396
8397 2006-11-28  Bruno Haible  <bruno@clisp.org>
8398
8399         * m4/ptrdiff_max.m4: Remove file.
8400
8401 2006-11-21  Bruno Haible  <bruno@clisp.org>
8402
8403         * m4/eoverflow.m4 (gl_EOVERFLOW): Use AC_COMPUTE_INT instead of
8404         _AC_COMPUTE_INT.
8405         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
8406         * m4/ptrdiff_max.m4 (gl_PTRDIFF_MAX): Use AC_COMPUTE_INT instead of
8407         _AC_COMPUTE_INT.
8408         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
8409         * m4/size_max.m4 (gl_SIZE_MAX): Use AC_COMPUTE_INT instead of
8410         _AC_COMPUTE_INT.
8411         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
8412
8413 2006-11-28  Jim Meyering  <jim@meyering.net>
8414
8415         * lib/regcomp.c (parse_branch): Rename local, exp->expr, to avoid
8416         warning from "gcc -Wshadow" about shadowing the builtin.
8417
8418 2006-11-27  Bruno Haible  <bruno@clisp.org>
8419
8420         * m4/stdint.m4 (gl_STDINT_BITSIZEOF): Use AC_COMPUTE_INT instead of
8421         _AC_COMPUTE_INT.
8422         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
8423
8424 2006-11-27  Bruno Haible  <bruno@clisp.org>
8425             Paul Eggert  <eggert@cs.ucla.edu>
8426
8427         * lib/regex.h (__restrict_arr): Redo logic of #if, for clarity.
8428
8429 2006-11-26  Bruno Haible  <bruno@clisp.org>
8430
8431         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
8432         noinst_LTLIBRARIES.
8433
8434 2006-11-27  Paul Eggert  <eggert@cs.ucla.edu>
8435             Bruno Haible  <bruno@clisp.org>
8436
8437         * lib/gettext.h (_LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS): Define to 0
8438         if compiling with "gcc -ansi".
8439
8440 2006-11-26  Paul Eggert  <eggert@cs.ucla.edu>
8441
8442         Fix some incompatibilities with gcc -ansi -pedantic.
8443         * lib/regex.h (__restrict_arr): Don't use the [restrict] syntax
8444         if compiling pedantically with GCC, unless it's C99 or later.
8445         Don't trust sys/cdefs.h's definition of __restrict_arr, either, as
8446         it mishandles gcc -ansi -pedantic as well.
8447         * lib/regex_internal.h (re_token_t): Don't use enum bitfields
8448         if gcc -pedantic.
8449         * lib/regexec.c (check_node_accept_bytes): Don't use auto
8450         initializers for struct if -pedantic, unless it's C99 or later.
8451
8452 2006-11-25  Nix  <nix@esperi.org.uk>  (tiny change)
8453
8454         * m4/fcntl_h.m4 (gl_FCNTL_H): Test the atime, not the mtime.
8455         Don't close an fd more than once. Identical atimes indicate
8456         success, not failure.
8457
8458 2006-11-22  Robinson Mittmann <bob@hoplon.com>  (tiny change)
8459
8460         * lib/sincosl.c (kernel_sinl): Fix typo in threshold.
8461
8462 2006-11-23  Jim Meyering  <jim@meyering.net>
8463
8464         * build-aux/announce-gen: New file.  From coreutils.
8465
8466 2006-11-22  Jim Meyering  <jim@meyering.net>
8467
8468         Work around a compile-time error from the HP-UX 11.00 /bin/cc.
8469         * lib/fts.c (enum Fts_stat): Give this previously-anon enum a name.
8470         (fts_read): Use a temporary to narrow the overused st_size member
8471         before using it in a switch statement.  Reported by Matthew Woehlke.
8472
8473         * m4/clock_time.m4 (gl_CLOCK_TIME): Quote AC_SUBST argument.
8474         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Likewise.
8475
8476 2006-11-20  Bruno Haible  <bruno@clisp.org>
8477
8478         * gettext.m4 (AM_GNU_GETTEXT): Revert 2005-07-28 patch: Use
8479         changequote instead of pairs of brackets.
8480         Reported by Andreas Schwab <schwab@suse.de>.
8481
8482 2006-11-21  Jim Meyering  <jim@meyering.net>
8483
8484         * lib/fts.c (fts_safe_changedir): Move a declaration "up",
8485         so as to remain compatible with older compilers.
8486         Patch from Michael Deutschmann.
8487
8488 2006-11-20  Paul Eggert  <eggert@cs.ucla.edu>
8489
8490         * MODULES.html.sh (File system functions): Add openat.
8491
8492         * lib/openat.h (rpl_fstatat): New macro, if
8493         [HAVE_OPENAT && ! LSTAT_FOLLOWS_SLASHED_SYMLINK.
8494         (fstatat): Define to rpl_fstatat under the same conditions,
8495         unless COMPILING_FSTATAT.
8496         * m4/openat.m4 (gl_FUNC_OPENAT): Compile fstatat.c too, if fstatat
8497         seems to have the bug.
8498         * lib/fstatat.c: New file.
8499         * modules/openat (Files): Add it.
8500
8501 2006-11-20  Bruno Haible  <bruno@clisp.org>
8502
8503         * Makefile: New file.
8504
8505 2006-11-20  Jim Meyering  <jim@meyering.net>
8506
8507         The beginnings of syntax-related checks for gnulib.
8508         * lib/Makefile: New file.
8509         * lib/t-idcache: New script.  Ensure that the two halves of
8510         idcache.c stay in sync.
8511
8512         * lib/idcache.c: Adjust comments in user- and group- portions to
8513         be more accurate, and to be consistent with one another.
8514
8515 2006-11-20  Jim Meyering  <jim@meyering.net>
8516
8517         * lib/idcache.c: Restore most of the 2006-11-06 patch, so as to
8518         continue using the flexible array member (thus, this module performs
8519         half as many malloc calls), with the addition that...
8520         (getgroup, getuser): Consistently record a non-match via an empty
8521         "name" string, and map an empty string match to a NULL return value.
8522         * modules/idcache (Depends-on): Re-add flexmember.
8523
8524         * lib/idcache.c (getuser): Remove all uses of the register keyword.
8525         (getuidbyname, getgroup, getgidbyname): Likewise.
8526
8527         Use cleaner syntax: NULL rather than 0.
8528         * lib/idcache.c (getuidbyname, getgidbyname): Return NULL, not 0.
8529
8530 2006-11-20  Paul Eggert  <eggert@cs.ucla.edu>
8531
8532         * lib/idcache.c: Undo most recent patch, dated 2006-11-06.
8533         It mishandled the case where the group was missing.
8534         Problem reported by Greg Schafer.
8535         * modules/idcache: Likewise.
8536
8537 2006-11-18  Jim Meyering  <jim@meyering.net>
8538
8539         * check-module (%exempt_header): Add exception for some
8540         conditionally-included headers.
8541
8542         * modules/i-ring (Depends-on): Add verify.
8543         (License): Change to LGPL.
8544
8545 2006-11-16  Paul Eggert  <eggert@cs.ucla.edu>
8546
8547         * modules/getaddinfo (Depends-on): Remove inttostr; add snprintf.
8548         * lib/getaddrinfo.c: Include snprintf.h rather than intprops.h
8549         and inttostr.h.  Use snprintf rather than uinttostr, so that
8550         LGPLed code doesn't depend on GPLed.
8551
8552 2006-11-17  Paul Eggert  <eggert@cs.ucla.edu>
8553
8554         * modules/inline (License): Change from GPL to LGPL.
8555
8556 2006-11-17  Jim Meyering  <jim@meyering.net>
8557
8558         * modules/d-type (License): Switch to LGPL.
8559
8560 2006-11-15  Bruno Haible  <bruno@clisp.org>
8561
8562         * m4/alloca.m4 (gl_FUNC_ALLOCA): Fix the AC_CACHE_CHECK message.
8563
8564 2006-11-15  Eric Blake  <ebb9@byu.net>
8565
8566         * m4/allocsa.m4 (gl_ALLOCSA): Don't invoke macro already picked up by
8567         the module dependency.
8568
8569 2006-11-15  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
8570             Bruno Haible  <bruno@clisp.org>
8571
8572         * gnulib-tool (func_create_testdir): Add license consistency check.
8573
8574 2006-11-15  Eric Blake  <ebb9@byu.net>
8575
8576         * m4/alloca.m4 (gl_FUNC_ALLOCA): Use AC_CACHE_CHECK to avoid a
8577         random "(cached)" in configure output.
8578
8579 2006-11-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8580
8581         * m4/inttypes.m4 (gl_INTTYPES_H): Use AC_CACHE_CHECK so that the
8582         test for conforming inttypes.h is both announced and cached.
8583
8584         * MODULES.html.sh (seen_modules, seen_files): New variables.
8585         (func_module): Rewrite to use a few less gnulib-tool and sed
8586         invocations.  Avoid a couple of quadratic algorithms for ...
8587         (missed_modules, missed_files): ... these, with ...
8588         (func_append, func_tmpdir): ... these new functions, from
8589         gnulib-tool.  Analogously, install traps for cleanup.
8590
8591         * tests/test-gc.c (main): Remove unused variables.
8592         * tests/test-read-file.c: Include stdlib.h, for 'free'.
8593
8594 2006-11-14  Paul Eggert  <eggert@cs.ucla.edu>
8595
8596         * modules/inttostr (License): Change to LGPL.
8597
8598 2006-11-14  Eric Blake  <ebb9@byu.net>
8599
8600         * modules/tempname (License): Change to LGPL.
8601
8602 2006-11-14  Eric Blake  <ebb9@byu.net>
8603
8604         * doc/functions.texi (Function Portability): *printf functions on
8605         Cygwin now understand all POSIX size specifiers.
8606
8607 2006-11-14  Bruno Haible  <bruno@clisp.org>
8608
8609         * modules/c-ctype (License): Change to LGPL.
8610
8611 2006-11-12  Bruno Haible  <bruno@clisp.org>
8612
8613         * m4/lib-link.m4 (AC_LIB_LINKFLAGS, AC_LIB_HAVE_LINKFLAGS,
8614         AC_LIB_LINKFLAGS_BODY): Also set a LIB${NAME}_PREFIX variable. Needed
8615         for GNOME libraries, for which the include files are installed in
8616         subdirectories of $prefix/include.
8617
8618 2006-11-12  Bruno Haible  <bruno@clisp.org>
8619
8620         * m4/lib-link.m4: Require at least autoconf-2.54.
8621         (AC_LIB_LINKFLAGS_BODY) [autoconf < 2.61]: Turn dots into the library
8622         name to underscores for the --with option.
8623
8624 2006-11-13  Bruno Haible  <bruno@clisp.org>
8625
8626         * gnulib-tool (func_create_testdir): Set gl_source_base correctly in
8627         the tests directory.
8628         Reported by Ralf Wildenhues.
8629
8630 2006-11-13  Bruno Haible  <bruno@clisp.org>
8631
8632         * gnulib-tool (func_emit_initmacro_start): Also override AC_LIBSOURCES.
8633         (func_emit_initmacro_end): Undo the override here.
8634         (func_emit_initmacro_done): Emit a definition for gl_LIBSOURCES.
8635         Works around the famous automake error in coreutils.
8636
8637 2006-11-13  Eric Blake  <ebb9@byu.net>
8638
8639         * lib/gl_anytree_oset.h (gl_tree_search_atleast): Return the
8640         element, not its node.
8641
8642 2006-11-12  Bruno Haible  <bruno@clisp.org>
8643
8644         * gnulib-tool (func_emit_lib_Makefile_am): Replace occurrences of
8645         '$(top_srcdir)/build-aux/', taking into account the real auxdir.
8646
8647 2006-11-12  Bruno Haible  <bruno@clisp.org>
8648
8649         * gnulib-tool: New option --local-symlink.
8650         (func_usage): Document it.
8651         (lsymbolic): New variable.
8652         (func_import, func_create_testdir): If --symlink was not specified,
8653         test whether --local-symlink was specified and the file comes from
8654         the local_gnulib_dir.
8655
8656 2006-11-12  Bruno Haible  <bruno@clisp.org>
8657
8658         * gnulib-tool (func_ln): New function.
8659         (func_ln_if_changed, func_create_testdir): Use it instead of "ln -s".
8660
8661 2006-11-12  Bruno Haible  <bruno@clisp.org>
8662
8663         Finish support for source files in subdirectories.
8664         * gnulib-tool (func_emit_lib_Makefile_am): If some of the source files
8665         are in subdirectories, set uses_subdirs and add 'subdir-objects' to
8666         AUTOMAKE_OPTIONS.
8667         (func_import, func_create_testdir): Invoke AM_PROG_CC_C_O in this case.
8668
8669 2006-11-12  Bruno Haible  <bruno@clisp.org>
8670
8671         * gnulib-tool (func_get_automake_snippet): Synthesize also an
8672         EXTRA_lib_SOURCES augmentation.
8673         (func_emit_lib_Makefile_am): Initialize EXTRA_lib..._SOURCES to empty.
8674
8675 2006-11-12  Jim Meyering  <jim@meyering.net>
8676
8677         Make fts (in FTS_CWDFD mode) more efficient by caching a few open
8678         file descriptors.  This also averts a failure on systems with
8679         native openat support when a traversed directory lacks "x" access.
8680         * lib/fts_.h: Include "i-ring.h"
8681         (struct FTS) [fts_fd_ring]: New member.
8682         * lib/fts.c (RESTORE_INITIAL_CWD): Also call fd_ring_clear.
8683         (FCHDIR): Add parentheses.
8684         (fd_ring_check, fd_ring_print) [!FTS_DEBUG]: Define away.
8685         (cwd_advance_fd): Add a 3rd parameter.  Adjust all callers.
8686         When descending, rather than simply closing the previous
8687         fts_cwd_fd value, push that file descriptor onto the ring.
8688         (same_fd, fd_ring_print, fd_ring_check) [FTS_DEBUG]: New functions.
8689         (fts_open): Initialize the new fd_ring member.
8690         (fts_close): Clear the ring.
8691         (fts_safe_changedir): When possible, use our new fd_ring to skip
8692         the diropen and fstat and dev/ino comparison that would normally
8693         accompany a virtual `chdir ("..")'.
8694
8695         * modules/fts (Depends-on): Add i-ring.
8696         * modules/i-ring: New module.
8697         * lib/i-ring.c, lib/i-ring.h, lib/i-ring-test.c: New files.
8698         * m4/i-ring.m4: New file.
8699
8700 2006-11-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8701
8702         * gnulib-tool (func_create_testdir): Fix replacement of
8703         `build-aux' in configure.ac.  Run autotools in gltests
8704         subdirectory.
8705         (func_create_testdir, func_create_megatestdir, test): There is
8706         no need for '--force' in most autotool invocations in a new
8707         tree.  Actually fail the whole test if any of the tools, or the
8708         configure or make stages fail.
8709
8710         Sync from Automake.
8711         * build-aux/gnupload: Revert last change.  Add pointer to upload
8712         instructions of the GNU Maintenance Instructions.
8713         Suggestion by Karl Berry.
8714
8715 2006-11-10  Jim Meyering  <jim@meyering.net>
8716
8717         * lib/fts.c [FTS_DEBUG]: Don't try to print a pointer via %s.
8718
8719 2006-11-09  Paul Eggert  <eggert@cs.ucla.edu>
8720
8721         * lib/gettext.h (dgettext, dcgettext, ngettext) [! ENABLE_NLS]:
8722         (dngettext, dcngettext, bindtextdomain) [! ENABLE_NLS]:
8723         (bind_textdomain_codeset) [! ENABLE_NLS]:
8724         Evaluate all the arguments.  That way, callers get compatible behavior
8725         if the arguments have side effects.  Also, it avoids some GCC
8726         diagnostics in some cases; Joel E. Denny reported problems when Bison
8727         was configured with --enable-gcc-warnigs.
8728
8729 2006-11-10  Jim Meyering  <jim@meyering.net>
8730
8731         * m4/inline.m4 (gl_INLINE): Check with the compiler, not cpp, so that
8732         relevant options in CFLAGS (like -O, -fno-inline) are taken into
8733         account.
8734
8735 2006-11-10  Jim Meyering  <jim@meyering.net>
8736
8737         * modules/inline: New file/module.
8738         * modules/xalloc (Files): Remove m4/inline.m4.
8739         (Depends-on): Add inline, instead.
8740         * modules/oset: Likewise.
8741         * modules/list: Likewise.
8742
8743 2006-11-09  Paul Eggert  <eggert@cs.ucla.edu>
8744
8745         * lib/stdint_.h (uintmax_t): Fix typo: int64_t -> uint64_t.
8746         Problem reported by Matthew Woehlke.
8747
8748 2006-11-09  Bruno Haible  <bruno@clisp.org>
8749
8750         * lib/tempname.c (gen_tempname): Remove variant that invokes
8751         __gen_tempname.
8752         * m4/tempname.m4 (gl_FUNC_GEN_TEMPNAME): Don't test for
8753         __gen_tempname.
8754
8755 2006-11-08  Bruno Haible  <bruno@clisp.org>
8756
8757         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Set ac_cv_type_long_long_int
8758         to 'yes' instead of 'cross-compiling'.
8759
8760 2006-11-08  Paul Eggert  <eggert@cs.ucla.edu>
8761
8762         * lib/quotearg.h (quotearg_free): New decl.
8763         * lib/quotearg.c (quotearg_free): New function.
8764         (slot0, nslots, slotvec0, slotvec):
8765         Now file-scope so that quotearg_free can get at them.
8766
8767 2006-11-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8768
8769         Sync from Automake.
8770         * build-aux/gnupload: Add missing 'gnu' to example URL.
8771         Report by Karl Berry.
8772
8773 2006-11-08  Bruno Haible  <bruno@clisp.org>
8774
8775         * m4/inline.m4 (gl_INLINE): Also test __NO_INLINE__.
8776         Suggested by Paul Eggert.
8777
8778 2006-11-08  Jim Meyering  <jim@meyering.net>
8779
8780         * lib/fts.c [!_LGPL_PACKAGE]: Don't include fcntl--.h twice.
8781         It's already included if !_LIBC.
8782         (fts_safe_changedir): Add a comment.
8783
8784 2006-11-07  Paul Eggert  <eggert@cs.ucla.edu>
8785
8786         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Detect bug in
8787         Tandem NonStop Kernel (OSS) cc -O circa 2004, reported by
8788         Matthew Woehlke.
8789
8790         * lib/xalloc.h (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): Move
8791         definitions up, to avoid colliding with change below.
8792         (static_inline) [HAVE_INLINE]: New macro.
8793         (xnmalloc, xnrealloc, x2nrealloc, xcharalloc):
8794         Provide extern decls when !HAVE_INLINE.  Do not define unless
8795         static_inline is defined, either by us or by xmalloc.c.  Use
8796         static_inline rather than static inline.
8797         (XCALLOC): Optimize sizeof(T) = 1 case.
8798         * lib/xmalloc.c (static_inline) [!HAVE_INLINE]: New macro.
8799
8800 2006-11-07  Bruno Haible  <bruno@clisp.org>
8801
8802         * lib/xalloc.h (XNMALLOC): Restore optimization of sizeof(T) = 1 case.
8803         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Require gl_INLINE instead of
8804         AC_C_INLINE.
8805         * modules/xalloc (Files): Add m4/inline.m4.
8806
8807 2006-11-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8808
8809         * README: Fix typo.
8810         * doc/gnulib.texi (Miscellaneous Notes): Likewise, rename...
8811         (Miscellanous Notes): ...from this.
8812
8813 2006-11-07  Paul Eggert  <eggert@cs.ucla.edu>
8814
8815         * m4/flexmember.m4 (AC_C_FLEXIBLE_ARRAY_MEMBER):
8816         Mention that offsetof should be used instead of sizeof.
8817         From Bruno Haible.
8818
8819 2006-11-07  Bruno Haible  <bruno@clisp.org>
8820
8821         * lib/w32spawn.h (prepare_spawn): Use XNMALLOC instead of xmalloc.
8822
8823 2006-11-06  Paul Eggert  <eggert@cs.ucla.edu>
8824
8825         Simplify xmalloc expressions. Add overflow check in xmalloc arguments.
8826         * lib/gl_anyavltree_list2.h (create_subtree_with_contents):
8827         (gl_tree_create, gl_tree_add_first, gl_tree_add_last):
8828         (gl_tree_add_before, gl_tree_add_after):
8829         Use XMALLOC instead of xmalloc, and XCALLOC instead of xzalloc.
8830         * lib/gl_anyhash_list2.h (hash_resize): Likewise.
8831         * lib/gl_anylinked_list2.h (gl_linked_create_empty, gl_linked_create):
8832         (gl_linked_add_first, gl_linked_add_last, gl_linked_add_before):
8833         (gl_linked_add_after, gl_linked_add_at): Likewise.
8834         * lib/gl_anyrbtree_list2.h (create_subtree_with_contents):
8835         (gl_tree_create, gl_tree_add_first, gl_tree_add_last):
8836         (gl_tree_add_before, gl_tree_add_after): Likewise.
8837         * lib/gl_anytree_list2.h (gl_tree_create_empty): Likewise.
8838         * lib/gl_anytree_oset.h (gl_tree_create_empty): Likewise.
8839         * lib/gl_anytreehash_list1.h (add_to_bucket): Likewise.
8840
8841 2006-11-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8842
8843         * lib/gl_oset.h: Use C comment style, not C++ comment style.
8844
8845 2006-11-06  Bruno Haible  <bruno@clisp.org>
8846
8847         * m4/inline.m4: New file.
8848         * m4/gl_list.m4 (gl_LIST): Require gl_INLINE.
8849         * modules/list (Files): Add m4/inline.m4.
8850         * modules/oset (Files): Likewise.
8851
8852 2006-11-06  Paul Eggert  <eggert@cs.ucla.edu>
8853
8854         * lib/idcache.c: Include <stddef.h>, for offsetof.
8855         (struct userid.name): Change from char * to a flexible array member.
8856         All uses changed.
8857         * modules/idcache (Depends-on): Add flexmember.
8858
8859         * MODULES.html.sh (Core language properties): New module flexmember.
8860         * modules/flexmember, m4/flexmember.m4: New files.
8861
8862         * lib/xalloc.h (xnmalloc, xnrealloc, x2nrealloc): Now static
8863         inline functions that are identical with the old xnmalloc_inline,
8864         xnrealloc_inline, x2nrealloc_inline of lib/xmalloc.c.  This is so
8865         that we can avoid some unnecessary integer multiplications and
8866         divisions in the common case where the element size is known at
8867         compile time.
8868         (XNMALLOC) [HAVE_INLINE]: Remove special case, which is no longer
8869         needed.
8870         (xnboundedmalloc): Remove.
8871         (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): Use lower-case letters for
8872         arguments, for consistency with rest of this header.
8873         (xcharalloc): Rewrite using XNMALLOC.
8874         * lib/xmalloc.c (xnmalloc_inline, xnmalloc, xnrealloc_inline):
8875         (xnrealloc, x2nrealloc_inline, x2nrealloc): Remove.  The *_inline
8876         versions have been moved to lib/xalloc.h and renamed to be the
8877         non-*_inline versions.
8878         (xmalloc, xrealloc): Implement without reference to the xnmalloc
8879         and xnrealloc functions, since those functions are now inline and
8880         now call us.
8881         (x2realloc): Invoke x2realloc, not x2realloc_inline, to accommodate
8882         renaming described above.
8883         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Remove AC_C_INLINE since
8884         xmalloc.c no longer uses inline directly.  gl_PREREQ_XALLOC now
8885         captures the dependency in AC_C_INLINE.
8886
8887         New module canonicalize-lgpl, proposed by Charles Wilson in
8888         <http://lists.gnu.org/archive/html/bug-gnulib/2006-11/msg00020.html>
8889         with a few small changes afterwards.
8890         * MODULES.html.sh (File system functions): New module
8891         canonicalize-lgpl.
8892         * lib/canonicalize.h: Add comments for canonicalize_filename_mode
8893         and canonicalize_file_name.
8894         * lib/canonicalize-lgpl.c, m4/canonicalize-lgpl.m4:
8895         * modules/canonicalize-lgpl: New files.
8896
8897 2006-11-05  Bruno Haible  <bruno@clisp.org>
8898
8899         * gnulib-tool (func_import, func_create_testdir): Create directories
8900         also for files in subdirectories of lib/.
8901
8902 2006-11-05  Bruno Haible  <bruno@clisp.org>
8903
8904         * lib/gl_array_list.c (gl_array_iterator_next): Make pointer decrement
8905         ANSI C compliant.
8906
8907 2006-11-03  Bruno Haible  <bruno@clisp.org>
8908
8909         Simplify xmalloc expressions. Add overflow check in xmalloc arguments.
8910         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Require AC_C_INLINE.
8911         * lib/xalloc.h (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): New macros.
8912         (xnboundedmalloc): New inline function.
8913         * lib/classpath.c (new_classpath): Use XNMALLOC instead of xmalloc.
8914         * lib/clean-temp.c (create_temp_dir): Use XNMALLOC, XMALLOC instead of
8915         xmalloc.
8916         * lib/concatpath.c (concatenated_pathname): Use XNMALLOC instead of
8917         xmalloc.
8918         * lib/fatal-signal.c (at_fatal_signal): Use XNMALLOC instead of xmalloc.
8919         * lib/findprog.c (find_in_path): Use XNMALLOC instead of xmalloc.
8920         * lib/gl_array_list.c (gl_array_create_empty): Use XMALLOC instead of
8921         xmalloc.
8922         (gl_array_create): Use XNMALLOC, XMALLOC instead of xmalloc.
8923         * lib/gl_array_oset.c (gl_array_create_empty): Use XNMALLOC instead of
8924         xmalloc.
8925         * lib/gl_avltree_oset.c (gl_tree_add_first, gl_tree_add_before,
8926         gl_tree_add_after): Use XMALLOC instead of xmalloc.
8927         * lib/gl_carray_list.c (gl_carray_create_empty): Use XMALLOC instead of
8928         xmalloc.
8929         (gl_carray_create): Use XNMALLOC, XMALLOC instead of xmalloc.
8930         * lib/gl_rbtree_oset.c (gl_tree_add_first, gl_tree_add_before,
8931         gl_tree_add_after): Use XMALLOC instead of xmalloc.
8932         * lib/gl_sublist.c (gl_sublist_create): Use XMALLOC instead of xmalloc.
8933         * lib/pagealign_alloc.c (new_memnode): Use XMALLOC instead of xmalloc.
8934         * lib/sh-quote.c (shell_quote_argv): Use XNMALLOC instead of xmalloc.
8935         * lib/xvasprintf.c (xstrcat): Use XNMALLOC instead of xmalloc.
8936
8937 2006-11-03  Bruno Haible  <bruno@clisp.org>
8938
8939         * lib/c-ctype.h [C++]: Define functions without name mangling.
8940         * lib/fwriteerror.h [C++]: Likewise.
8941         * lib/gcd.h [C++]: Likewise.
8942         * lib/linebreak.h [C++]: Likewise.
8943
8944 2006-11-03  Paul Eggert  <eggert@cs.ucla.edu>
8945
8946         * lib/canonicalize.h: (canonicalize_mode_t, CAN_EXISTING):
8947         (CAN_ALL_BUT_LAST, CAN_MISSING, canonicalize_filename_mode):
8948         Define only if PROVIDE_CANONICALIZE_FILENAME_MODE is defined.
8949         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME):
8950         Check for functions and headers just once.
8951         Check for declaration of canonicalize_file_name.
8952         Define PROVIDE_CANONICALIZE_FILENAME_MODE.
8953
8954 2006-11-02  Charles Wilson  <cygwin@cwilson.fastmail.fm>
8955
8956         * gnulib-tool (func_import): Fix typo in actioncmd.
8957
8958 2006-11-02  Bruno Haible  <bruno@clisp.org>
8959
8960         * gnulib-tool (func_get_automake_snippet): Interpret a backslash-
8961         newline sequence in the Makefile.am snippet as a space, like "make"
8962         does.
8963         Reported by Roger Persson <perrog@gmail.com>.
8964
8965 2006-11-01  Bruno Haible  <bruno@clisp.org>
8966
8967         * m4/strcase.m4 (gl_FUNC_STRNCASECMP): Check whether strncasecmp is
8968         already declared in <string.h>.
8969         * lib/strcase.h (strncasecmp): Don't declare it if yes.
8970
8971 2006-11-01  Bruno Haible  <bruno@clisp.org>
8972
8973         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Don't define strcasecmp here.
8974         * lib/strcase.h: Include <string.h>.
8975         (strcasecmp): Define to rpl_strcasecmp here.
8976
8977 2006-11-01  Bruno Haible  <bruno@clisp.org>
8978
8979         * lib/printf-parse.c (PRINTF_PARSE): Cast malloc/realloc results.
8980
8981 2006-11-01  Eric Blake  <ebb9@byu.net>
8982
8983         * lib/mkstemp-safer.c (mkstemp_safer): Allow C++ compilation.
8984
8985         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Allow C++ configuration.
8986
8987 2006-10-29  Bruno Haible  <bruno@clisp.org>
8988
8989         Make it compile in C++ mode.
8990         * lib/full-write.c (full_rw): Add a cast.
8991
8992 2006-11-01  Bruno Haible  <bruno@clisp.org>
8993
8994         * gnulib-tool (func_get_automake_snippet): Change sed_combine_lines to
8995         be POSIX compliant.
8996         Reported by Roger Persson <perrog@gmail.com>.
8997
8998 2006-11-01  Eric Blake  <ebb9@byu.net>
8999
9000         * lib/getopt_.h: Fix comments.
9001
9002 2006-10-31  Eric Blake  <ebb9@byu.net>
9003
9004         * modules/tmpdir (Depends-on): Add sys_stat.
9005         * modules/mkdtemp (Depends-on): Add tempname, drop unistd.
9006         * lib/mkdtemp.c (gen_tempname): Remove; tempname covers this.
9007         * lib/tmpdir.c (S_ISDIR): Simplify, thanks to sys_stat.
9008         * m4/mkdtemp.m4 (gl_PREREQ_MKDTEMP): Simplify, thanks to
9009         tempname.
9010
9011 2006-10-31  Paul Eggert  <eggert@cs.ucla.edu>
9012
9013         Avoid some C++ diagnostics reported by Bruno Haible.
9014         * lib/quotearg.c (clone_quoting_options): Use xmemdup rather than
9015         xmalloc.
9016         (quotearg_alloc): Use xcharalloc rather than xmalloc.
9017         (struct slotvec): Move to top level.
9018         (quotearg_n_options): Rewrite to avoid xmalloc.
9019         * lib/xalloc.h (xcharalloc): New function.
9020         * (xrealloc, xnrealloc, x2realloc, x2nrealloc, xmemdup):
9021         [defined __cplusplus]: Add function template that provides result
9022         type propagation.  This part of the change is from Bruno Haible.
9023
9024 2006-10-29  Bruno Haible  <bruno@clisp.org>
9025
9026         Make it compile in C++ mode.
9027         * lib/striconv.c (mem_cd_iconv): Cast malloc/realloc result.
9028         * lib/strnlen1.c (strnlen1): Cast memchr result.
9029         * lib/mbchar.h (mb_copy): Rename arguments to 'new_mbc', 'old_mbc'.
9030         * lib/clean-temp.c (string_equals, string_hash): Add casts.
9031         (create_temp_dir): Rename local variable 'template'.
9032         (compile_csharp_using_sscli): Add cast.
9033         * lib/fatal-signal.c (at_fatal_signal): Cast xmalloc result.
9034         * lib/findprog.c (find_in_path): Likewise.
9035         * lib/linebreak.c (mbs_width_linebreaks): Cast malloc result.
9036         * lib/wait-process.c (register_slave_subprocess): Likewise.
9037
9038 2006-10-22  Bruno Haible  <bruno@clisp.org>
9039
9040         * modules/tsearch: New file.
9041         * lib/tsearch.h: New file.
9042         * lib/tsearch.c: New file, from glibc-2.5 with small modifications.
9043         * m4/tsearch.m4: New file.
9044         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add tsearch.
9045
9046 2006-10-29  Eric Blake  <ebb9@byu.net>
9047
9048         * lib/arcfour.c: Assume config.h.
9049         * lib/arctwo.c: Likewise.
9050         * lib/base64.c: Likewise.
9051         * lib/check-version.c: Likewise.
9052         * lib/crc.c: Likewise.
9053         * lib/des.c: Likewise.
9054         * lib/gc-gnulib.c: Likewise.
9055         * lib/gc-libgcrypt.c: Likewise.
9056         * lib/gc-pbkdf2-sha1.c: Likewise.
9057         * lib/getaddrinfo.c: Likewise.
9058         * lib/getdelim.c: Likewise.
9059         * lib/getline.c: Likewise.
9060         * lib/hmac-md5.c: Likewise.
9061         * lib/hmac-sha1.c: Likewise.
9062         * lib/iconvme.c: Likewise.
9063         * lib/md2.c: Likewise.
9064         * lib/md4.c: Likewise.
9065         * lib/memxor.c: Likewise.
9066         * lib/read-file.c: Likewise.
9067         * lib/readline.c: Likewise.
9068         * lib/rijndael-alg-fst.c: Likewise.
9069         * lib/rijndael-api-fst.c: Likewise.
9070         * lib/xgetdomainname.c: Likewise.
9071
9072 2006-10-28  Eric Blake  <ebb9@byu.net>
9073
9074         * lib/xstrndup.c: Assume config.h.
9075
9076 2006-10-27  Paul Eggert  <eggert@cs.ucla.edu>
9077
9078         Move stat.h-substitute stuff from lib/stat-macros.h to lib/stat_.h.
9079         stat-macros.h is now for our own macros, whereas stat_h is for
9080         macros in the <sys/stat.h> name space.
9081         * lib/stat-macros.h: Remove copyright notice, as this file is now tiny.
9082         (STAT_MACROS_H): Remove.
9083         (S_IFMT, S_ISBLK, S_ISCHR, S_ISDIR, S_ISFIFO, S_ISLNK, S_ISNAM):
9084         (S_ISMPB, S_ISMPC, S_ISNWK, S_ISREG, S_ISSOCK, S_ISDOOR, S_ISPORT):
9085         (S_TYPEISMQ, S_TYPEISTMO, S_TYPEISSEM, S_TYPEISSHM, S_ISCTG, S_ISOFD):
9086         (S_ISOFL, S_ISWHT, S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IRGRP):
9087         (S_IROTH, S_IWUSR, S_IWGRP, S_IWOTH, S_IXUSR, S_IXGRP, S_IXOTH):
9088         (S_IRWXU, S_IRWXG, S_IRWXO, S_IXUGO, S_IRWXUGO):
9089         Move these macros to ...
9090         * lib/stat_.h: here.  Don't include stat-macros.h.
9091         * lib/canonicalize.c: Don't include stat-macros.h.
9092         * lib/chown.c: Likewise.
9093         * lib/euidaccess.c: Likewise.
9094         * lib/file-type.c: Likewise.
9095         * lib/filemode.c: Likewise.
9096         * lib/glob.c: Likewise.
9097         * lib/isapipe.c: Likewise.
9098         * lib/lchown.c: Likewise.
9099         * lib/lstat.c: Likewise.
9100         * lib/mkdir-p.c: Likewise.
9101         * lib/rmdir.c: Likewise.
9102         * m4/lchown.m4 (gl_FUNC_LCHOWN): Don't require gl_STAT_MACROS.
9103         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Don't check for io.h
9104         unless mkdir isn't declared, to speed up 'configure'.
9105         Always create sys/stat.h, since it's unlikely any real sys/stat.h
9106         would define all the S_* symbols.
9107         * modules/canonicalize (Depends-on):
9108         Depend on sys_stat, not stat-macros.
9109         * modules/chown: Likewise.
9110         * modules/euidaccess: Likewise.
9111         * modules/filemode: Likewise.
9112         * modules/file-type: Likewise.
9113         * modules/glob: Likewise.
9114         * modules/isapipe: Likewise.
9115         * modules/lchown: Likewise.
9116         * modules/lstat: Likewise.
9117         * modules/mkancesdirs: Likewise.
9118         * modules/rmdir: Likewise.
9119         * modules/mkdir-p (Depends-on): Also depend on sys_stat.
9120         * modules/modechange: Likewise.
9121         * modules/stat-macros (Files): Remove m4/stat-macros.m4.
9122         (configure.ac): Remove gl_STAT_MACROS.
9123         * modules/sys_stat (Depends-on): Remove stat-macros.
9124
9125 2006-10-27  Bruno Haible  <bruno@clisp.org>
9126
9127         * m4/signed.m4: Remove file.
9128         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_ARGS_: Remove bh_C_SIGNED
9129         invocation.
9130         * modules/vasnprintf (Files): Remove m4/signed.m4.
9131
9132 2006-10-27  Bruno Haible  <bruno@clisp.org>
9133
9134         Update to GNU gettext 0.16.
9135         * modules/gettext (Files): Add m4/intl.m4, m4/intldir.m4. Remove
9136         m4/inttypes-h.m4, m4/signed.m4.
9137         * m4/gettext.m4: Update to GNU gettext 0.16.
9138         * m4/intl.m4: New file, from GNU gettext.
9139         * m4/intldir.m4: New file, from GNU gettext.
9140         * config/srclist.txt: Update
9141
9142 2006-10-27  Eric Blake  <ebb9@byu.net>
9143
9144         * MODULES.html.sh: Document tempname.
9145         * modules/mkstemp (Depends-on): Add tempname, and drop transitive
9146         dependencies.
9147         (Files): Move lib/tempname.c...
9148         * modules/tempname: ...to this new module.
9149         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Remove tempname checks.
9150         (gl_PREREQ_TEMPNAME): Move...
9151         * m4/tempname.m4: ...to this new file.
9152         * lib/mkstemp.c (includes) [!_LIBC]: Use tempname.h.
9153         * modules/sys_stat (Depends-on): Add stat-macros.
9154         * lib/stat_.h (includes): Pick up stat macros.
9155         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Replace <sys/stat.h>
9156         if stat macros are broken.
9157         * lib/tempname.c (includes): No need to include "stat-macros.h".
9158         (__gen_tempname) [!_LIBC]: Expose as gen_tempname.
9159         (direxists, __path_search) [!_LIBC]: Don't compile these in
9160         gnulib; the tmpdir module covers that.
9161         * lib/tempname.h: New file.
9162
9163 2006-10-26  Paul Eggert  <eggert@cs.ucla.edu>
9164
9165         * COPYING: Explain how gnulib-tool converts licence headers.
9166         Almost all wording by Eric Blake.
9167
9168 2006-10-25  Paul Eggert  <eggert@cs.ucla.edu>
9169
9170         * lib/mbchar.h (is_basic_table): Make read-only.
9171         * lib/mbchar.c (is_basic_table): Likewise.
9172         Reported by John Darrington.
9173
9174 2006-10-25  Bruno Haible  <bruno@clisp.org>
9175
9176         * lib/progname.h (set_program_name): Undefine before defining.
9177
9178 2006-10-25  Bruno Haible  <bruno@clisp.org>
9179
9180         * lib/gettext.h (_LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS): Define to
9181         false for non-gcc C++ compilers.
9182         Reported by Nelson H. F. Beebe <beebe@math.utah.edu>.
9183
9184 2006-10-24  Bruno Haible  <bruno@clisp.org>
9185
9186         * lib/striconv.c (mem_cd_iconv, str_cd_iconv): Treat all non-GNU
9187         iconv implementations like Irix iconv.
9188
9189 2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
9190
9191         * modules/vararrays: New file.
9192         * m4/vararrays.m4: New file, taken from diffutils.
9193         * MODULES.html.sh: New module vararrays.
9194
9195 2006-10-24  Karl Berry  <karl@gnu.org>
9196
9197         * doc/gnulib-intro.texi: --- instead of --; non-naive naive.
9198         Don't call GNU Unix.
9199
9200 2006-10-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
9201
9202         * users.txt: Add Libtool.
9203
9204         Sync from Libtool:
9205
9206         2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
9207
9208         * lib/argz.c: Remove check for HAVE_CONFIG_H, to conform
9209         to gnulib's policy of including config.h unconditionally.
9210
9211 2006-10-24  Bruno Haible  <bruno@clisp.org>
9212
9213         * modules/wcwidth (Files): Add m4/wint_t.m4.
9214         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Require gt_TYPE_WINT_T.
9215         * lib/wcwidth.h (iswprint): Use 'int' if 'wint_t' is not defined.
9216
9217 2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
9218
9219         * lib/getdate.y (yyerror): Make the arguments pointer-to-const,
9220         to pacify GCC with some -W flags enabled.  Problem reported by
9221         Bruno Haible.
9222
9223 2006-10-24  Jim Meyering  <jim@meyering.net>
9224
9225         * MODULES.html.sh: Remove uinttostr.  It's not a module.
9226         Reported by Karl Berry.
9227
9228 2006-10-23  Bruno Haible  <bruno@clisp.org>
9229
9230         * lib/fts.c (fts_build): Move variable declaration, for C89 compliance.
9231
9232 2006-10-24  Bruno Haible  <bruno@clisp.org>
9233
9234         * lib/gl_list.h: Use C comment style, not C++ comment style.
9235
9236 2006-10-23  Eric Blake  <ebb9@byu.net>
9237
9238         * lib/getaddrinfo.c (includes): Add missing include.
9239
9240 2006-10-23  Bruno Haible  <bruno@clisp.org>
9241             Paul Eggert  <eggert@cs.ucla.edu>
9242
9243         Ability to rename obstack_free.
9244         * lib/obstack.h (__obstack_free): New macro. Declare instead of
9245         obstack_free.
9246         (obstack_free): Invoke the __obstack_free macro.
9247         * lib/obstack.c (obstack_free): Use __obstack_free macro.
9248
9249 2006-10-23  Bruno Haible  <bruno@clisp.org>
9250             Paul Eggert  <eggert@cs.ucla.edu>
9251
9252         * lib/argp.h (argp_parse, __argp_parse): Comment out the identifiers
9253         __argc, __argv from the declaration. (They are defined as macros on
9254         mingw.)
9255
9256 2006-10-22  Bruno Haible  <bruno@clisp.org>
9257
9258         * doc/gnulib-intro.texi: New file.
9259         * doc/gnulib.texi: Include it.
9260
9261 2006-10-21  Bruno Haible  <bruno@clisp.org>
9262
9263         * doc/gnulib.texi: Split the chapter "Gnulib" into 3 chapters
9264         "Introduction", "Miscellanous Notes", "Particular Modules".
9265
9266 2006-10-21  Bruno Haible  <bruno@clisp.org>
9267
9268         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
9269         Change mostlyclean-local rule to avoid sh syntax error from bash
9270         versions 2.00..2.05 when $(MOSTLYCLEANDIRS) is empty.
9271
9272 2006-10-23  Jim Meyering  <jim@meyering.net>
9273
9274         * lib/getaddrinfo.c (getnameinfo): Use new lightweight uinttostr,
9275         in place of snprintf.
9276
9277         * modules/inttostr (Files): Add lib/uinttostr.c.
9278         * lib/uinttostr.c (inttostr): New file/function.
9279         * lib/inttostr.h (uinttostr): Declare.
9280         * m4/inttostr.m4: Add AC_LIBOBJ([uinttostr]).
9281         * MODULES.html.sh (Numeric conversion functions <stdlib.h>):
9282         Add uinttostr.
9283         * modules/getaddrinfo (Depends-on): Remove snprintf.  Add inttostr.
9284
9285 2006-10-21  Paul Eggert  <eggert@cs.ucla.edu>
9286
9287         * lib/canonicalize.c (ELOOP): Define if not already defined.
9288         Problem reported by Bruno Haible in
9289         <http://lists.gnu.org/archive/html/bug-gnulib/2006-10/msg00282.html>.
9290
9291 2006-10-21  Paul Eggert  <eggert@cs.ucla.edu>
9292
9293         * lib/stdint_.h [defined _AIX]: Don't include <sys/types.h>.
9294         Problem reported by Perry Smith and Ville Laurikari.
9295
9296         * lib/getndelim2.c (SSIZE_MAX): Use same defn that getdelim.c
9297         uses.
9298
9299 2006-10-19  Bruno Haible  <bruno@clisp.org>
9300
9301         * lib/getndelim2.c (SSIZE_MAX): Provide fallback definition. Needed
9302         for mingw.
9303
9304 2006-10-19  Bruno Haible  <bruno@clisp.org>
9305
9306         * lib/openat-priv.h (EOPNOTSUPP): Provide fallback definition.
9307         Needed for mingw.
9308
9309 2006-10-19  Bruno Haible  <bruno@clisp.org>
9310
9311         * m4/size_max.m4 (gl_SIZE_MAX): Cache the result.
9312
9313 2006-10-19  Bruno Haible  <bruno@clisp.org>
9314
9315         * m4/allocsa.m4 (gl_ALLOCSA): Invoke gl_FUNC_ALLOCA, don't AC_REQUIRE
9316         it.
9317
9318 2006-10-19  Bruno Haible  <bruno@clisp.org>
9319
9320         * m4/alloca.m4 (gl_FUNC_ALLOCA): Cache the result of the AC_EGREP_CPP
9321         invocation.
9322
9323 2006-10-19  Bruno Haible  <bruno@clisp.org>
9324
9325         * gnulib-tool (func_create_testdir): Don't include ftruncate and
9326         mountlist by default.
9327
9328 2006-10-16  Bruno Haible  <bruno@clisp.org>
9329
9330         * lib/c-strstr.c: Include c-strstr.h.
9331
9332 2006-10-18  Charles Wilson  <cygwin@cwilson.fastmail.fm>
9333
9334         * gnulib-tool: Don't clobber $sourcebase when $local_gnulib_dir ends
9335         in a slash.
9336
9337 2006-10-18  Bruno Haible  <bruno@clisp.org>
9338
9339         * lib/lock.h [C++]: Wrap definitions in extern "C".
9340
9341 2006-10-18  Bruno Haible  <bruno@clisp.org>
9342
9343         * gnulib-tool (func_emit_initmacro_end): Remove duplicates from the
9344         gl_LIBOBJS list.
9345
9346 2006-10-18  Bruno Haible  <bruno@clisp.org>
9347
9348         * lib/findprog.c (find_in_path): Avoid "gcc -Wwrite-strings" warning.
9349
9350 2006-10-19  Paul Eggert  <eggert@cs.ucla.edu>
9351
9352         * lib/xstrtol.h: Include gettext.h.
9353         (_STRTOL_ERROR): Wrap English-language formats inside gettext.
9354         Problem reported by Eric Blake.
9355         * modules/xstrtol (Depends-on): Add gettext-h.
9356
9357 2006-10-19  Paul Eggert  <eggert@cs.ucla.edu>  (tiny change)
9358
9359         * lib/strftime.c (advance): New macro.
9360         (add): Use it to avoid adding 0 to a FILE *.  FILE can be an
9361         incomplete type, so you can't add 0 to it.  Problem and patch
9362         reported by Eelco Dolstra for dietlibc.
9363
9364 2006-10-18  Jim Meyering  <jim@meyering.net>
9365
9366         * lib/readutmp.c (desirable_utmp_entry): Use "bool" as the
9367         type for a local, and rename it: s/up/user_proc/.
9368
9369 2006-10-18  Sergey Poznyakoff  <gray@gnu.org.ua>
9370
9371         * lib/readutmp.c (desirable_utmp_entry): Implement new flag:
9372         READ_UTMP_USER_PROCESS.
9373         * lib/readutmp.h (READ_UTMP_USER_PROCESS): New flag
9374
9375 2006-10-17  Paul Eggert  <eggert@cs.ucla.edu>
9376
9377         * lib/localcharset.c: Do not check HAVE_SETLOCALE.
9378         * m4/localcharset.m4 (gl_LOCALCHARSET): Don't check for setlocale.
9379
9380 2006-10-17  Eric Blake  <ebb9@byu.net>
9381
9382         * lib/sigprocmask.c (sigprocmask): Fix typo.
9383
9384         * m4/signalblocking.m4 (gl_PREREQ_SIGPROCMASK): Fix typo.
9385
9386         * modules/clean-temp (Makefile.am): Don't add to make output...
9387         (configure.ac): ...instead define SIGNAL_SAFE_LIST inside
9388         config.h.
9389
9390 2006-10-17  Bruno Haible  <bruno@clisp.org>
9391
9392         * lib/gettext.h (gettext, ngettext, pgettext, npgettext): Define
9393         differently if DEFAULT_TEXT_DOMAIN is set.
9394
9395 2006-10-16  Bruno Haible  <bruno@clisp.org>
9396
9397         * lib/clean-temp.c: Include fwriteerror.h.
9398
9399 2006-10-16  Bruno Haible  <bruno@clisp.org>
9400
9401         * getndelim2.m4 (gl_GETNDELIM2): Remove 2003-10-23 hack.
9402
9403 2006-10-16  Bruno Haible  <bruno@clisp.org>
9404
9405         * m4/signalblocking.m4 (gl_PREREQ_SIGPROCMASK): Also test for sigset_t.
9406         * lib/sigprocmask.h: Include <sys/types.h>.
9407         (sigset_t): Use the system's definition if present.
9408
9409 2006-10-17  Eric Blake  <ebb9@byu.net>
9410
9411         * lib/xvasprintf.c (includes): Assume config.h.
9412         * lib/xasprintf.c (includes): Likewise.
9413
9414 2006-10-16  Paul Eggert  <eggert@cs.ucla.edu>
9415
9416         * lib/fsusage.c (PROPAGATE_ALL_ONES): Don't assume uintmax_t is
9417         at least as wide as intmax_t.
9418
9419 2006-10-16  Alexandre Duret-Lutz  <adl@gnu.org>
9420
9421         (Imported from Automake.)
9422         * build-aux/gnupload: Update to version 1.1 of directive file.
9423
9424 2006-10-16  Eric Blake  <ebb9@byu.net>
9425
9426         * modules/configmake (Makefile.am): Add pkglibexecdir support, to
9427         match Automake 1.10a.
9428
9429 2006-10-14  Bruno Haible  <bruno@clisp.org>
9430
9431         * modules/sigprocmask: New file.
9432         * lib/sigprocmask.h: New file.
9433         * lib/sigprocmask.c: New file.
9434         * m4/signalblocking.m4 (gl_SIGNALBLOCKING): Renamed from
9435         gt_SIGNALBLOCKING. When not defining HAVE_POSIX_SIGNALBLOCKING,
9436         request sigprocmask.o.
9437         (gl_PREREQ_SIGPROCMASK): New macro.
9438         * modules/fatal-signal (Files): Remove m4/signalblocking.m4.
9439         (Depends-on): Add sigprocmask.
9440         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Don't require
9441         gt_SIGNALBLOCKING. Test for 'raise' only once.
9442         * lib/fatal-signal.c: Include sigprocmask.h.
9443         (fatal_signal_set, init_fatal_signal_set, block_fatal_signals,
9444         unblock_fatal_signals): Define always.
9445         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
9446         sigprocmask.
9447
9448 2006-10-14  Paul Eggert  <eggert@cs.ucla.edu>
9449
9450         Sync from Automake.
9451         * build-aux/install-sh (posix_mkdir): Reject FreeBSD 6.1 mkdir -p -m,
9452         which incorrectly sets the mode of an existing destination
9453         directory.  In some cases the unpatched install-sh could do the
9454         equivalent of "chmod 777 /" or "chmod 0 /" on a buggy FreeBSD
9455         system.  We hope this is rare in practice, but it's clearly worth
9456         fixing.  Problem reported by Alex Unleashed in
9457         <http://lists.gnu.org/archive/html/bug-autoconf/2006-10/msg00012.html>.
9458         Also, don't bother to check for -m bugs unless we're using -m;
9459         suggested by Stepan Kasal.
9460
9461 2006-10-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
9462
9463         Sync from Automake.
9464         * build-aux/depcomp (gcc3): Put dependency extraction flags before the
9465         `-c' flag, so they appear at the same position as in %FASTDEP%
9466         mode in depend2.am.  Fixes build failure for FreeBSD's c89,
9467         which ignores unknown options only after the first non-option.
9468         Bug report against M4 by Nelson H. F. Beebe.
9469
9470 2006-10-13  Jim Meyering  <jim@meyering.net>
9471
9472         Fix a bug in yesterday's change.
9473         * lib/fts.c (fts_open): When using FTS_XDEV|FTS_NOSTAT,
9474         p->fts_statp->st_dev would be used uninitialized.
9475         Ensures that we always call fts_stat on the very first entry.
9476         Miklos Szeredi reported that find -xdev stopped working.
9477
9478 2006-10-12  Bruno Haible  <bruno@clisp.org>
9479
9480         * gnulib-tool (func_get_automake_snippet): Append an automatically
9481         computed EXTRA_DIST augmentation.
9482         * modules/acl (Makefile.am): Remove EXTRA_DIST augmentation.
9483         * modules/alloca-opt (Makefile.am): Likewise.
9484         * modules/allocsa (Makefile.am): Likewise.
9485         * modules/arcfour (Makefile.am): Likewise.
9486         * modules/arctwo (Makefile.am): Likewise.
9487         * modules/argmatch (Makefile.am): Likewise.
9488         * modules/argz (Makefile.am): Likewise.
9489         * modules/atexit (Makefile.am): Likewise.
9490         * modules/backupfile (Makefile.am): Likewise.
9491         * modules/byteswap (Makefile.am): Likewise.
9492         * modules/c-strtod (Makefile.am): Likewise.
9493         * modules/c-strtold (Makefile.am): Likewise.
9494         * modules/calloc (Makefile.am): Likewise.
9495         * modules/canon-host (Makefile.am): Likewise.
9496         * modules/canonicalize (Makefile.am): Likewise.
9497         * modules/chdir-long (Makefile.am): Likewise.
9498         * modules/chdir-safer (Makefile.am): Likewise.
9499         * modules/check-version (Makefile.am): Likewise.
9500         * modules/chown (Makefile.am): Likewise.
9501         * modules/cloexec (Makefile.am): Likewise.
9502         * modules/close-stream (Makefile.am): Likewise.
9503         * modules/closeout (Makefile.am): Likewise.
9504         * modules/crc (Makefile.am): Likewise.
9505         * modules/csharpexec (Makefile.am): Likewise.
9506         * modules/cycle-check (Makefile.am): Likewise.
9507         * modules/des (Makefile.am): Likewise.
9508         * modules/dev-ino (Makefile.am): Likewise.
9509         * modules/dirfd (Makefile.am): Likewise.
9510         * modules/dirname (Makefile.am): Likewise.
9511         * modules/dup2 (Makefile.am): Likewise.
9512         * modules/eealloc (Makefile.am): Likewise.
9513         * modules/error (Makefile.am): Likewise.
9514         * modules/euidaccess (Makefile.am): Likewise.
9515         * modules/exclude (Makefile.am): Likewise.
9516         * modules/exitfail (Makefile.am): Likewise.
9517         * modules/fcntl-safer (Makefile.am): Likewise.
9518         * modules/fcntl (Makefile.am): Likewise.
9519         * modules/file-type (Makefile.am): Likewise.
9520         * modules/fileblocks (Makefile.am): Likewise.
9521         * modules/filemode (Makefile.am): Likewise.
9522         * modules/filenamecat (Makefile.am): Likewise.
9523         * modules/fnmatch (Makefile.am): Likewise.
9524         * modules/fopen-safer (Makefile.am): Likewise.
9525         * modules/fpending (Makefile.am): Likewise.
9526         * modules/fprintftime (Makefile.am): Likewise.
9527         * modules/free (Makefile.am): Likewise.
9528         * modules/fsusage (Makefile.am): Likewise.
9529         * modules/ftruncate (Makefile.am): Likewise.
9530         * modules/fts (Makefile.am): Likewise.
9531         * modules/gc-arcfour (Makefile.am): Likewise.
9532         * modules/gc-des (Makefile.am): Likewise.
9533         * modules/gc-hmac-md5 (Makefile.am): Likewise.
9534         * modules/gc-hmac-sha1 (Makefile.am): Likewise.
9535         * modules/gc-md4 (Makefile.am): Likewise.
9536         * modules/gc-pbkdf2-sha1 (Makefile.am): Likewise.
9537         * modules/gc-sha1 (Makefile.am): Likewise.
9538         * modules/gc (Makefile.am): Likewise.
9539         * modules/getaddrinfo (Makefile.am): Likewise.
9540         * modules/getcwd (Makefile.am): Likewise.
9541         * modules/getdelim (Makefile.am): Likewise.
9542         * modules/getdomainname (Makefile.am): Likewise.
9543         * modules/getgroups (Makefile.am): Likewise.
9544         * modules/gethostname (Makefile.am): Likewise.
9545         * modules/gethrxtime (Makefile.am): Likewise.
9546         * modules/getline (Makefile.am): Likewise.
9547         * modules/getloadavg (Makefile.am): Likewise.
9548         * modules/getlogin_r (Makefile.am): Likewise.
9549         * modules/getndelim2 (Makefile.am): Likewise.
9550         * modules/getopt (Makefile.am): Likewise.
9551         * modules/getpagesize (Makefile.am): Likewise.
9552         * modules/getpass-gnu (Makefile.am): Likewise.
9553         * modules/getpass (Makefile.am): Likewise.
9554         * modules/getsubopt (Makefile.am): Likewise.
9555         * modules/gettime (Makefile.am): Likewise.
9556         * modules/gettimeofday (Makefile.am): Likewise.
9557         * modules/getugroups (Makefile.am): Likewise.
9558         * modules/getusershell (Makefile.am): Likewise.
9559         * modules/glob (Makefile.am): Likewise.
9560         * modules/group-member (Makefile.am): Likewise.
9561         * modules/hard-locale (Makefile.am): Likewise.
9562         * modules/hash (Makefile.am): Likewise.
9563         * modules/hmac-md5 (Makefile.am): Likewise.
9564         * modules/hmac-sha1 (Makefile.am): Likewise.
9565         * modules/human (Makefile.am): Likewise.
9566         * modules/idcache (Makefile.am): Likewise.
9567         * modules/imaxabs (Makefile.am): Likewise.
9568         * modules/imaxdiv (Makefile.am): Likewise.
9569         * modules/inet_ntop (Makefile.am): Likewise.
9570         * modules/inet_pton (Makefile.am): Likewise.
9571         * modules/intprops (Makefile.am): Likewise.
9572         * modules/inttostr (Makefile.am): Likewise.
9573         * modules/inttypes (Makefile.am): Likewise.
9574         * modules/isapipe (Makefile.am): Likewise.
9575         * modules/javaversion (Makefile.am): Likewise.
9576         * modules/lchmod (Makefile.am): Likewise.
9577         * modules/lchown (Makefile.am): Likewise.
9578         * modules/localcharset (Makefile.am): Likewise.
9579         * modules/long-options (Makefile.am): Likewise.
9580         * modules/lstat (Makefile.am): Likewise.
9581         * modules/malloc (Makefile.am): Likewise.
9582         * modules/mathl (Makefile.am): Likewise.
9583         * modules/mbchar (Makefile.am): Likewise.
9584         * modules/md2 (Makefile.am): Likewise.
9585         * modules/md4 (Makefile.am): Likewise.
9586         * modules/md5 (Makefile.am): Likewise.
9587         * modules/memcasecmp (Makefile.am): Likewise.
9588         * modules/memchr (Makefile.am): Likewise.
9589         * modules/memcmp (Makefile.am): Likewise.
9590         * modules/memcoll (Makefile.am): Likewise.
9591         * modules/memcpy (Makefile.am): Likewise.
9592         * modules/memmem (Makefile.am): Likewise.
9593         * modules/memmove (Makefile.am): Likewise.
9594         * modules/mempcpy (Makefile.am): Likewise.
9595         * modules/memrchr (Makefile.am): Likewise.
9596         * modules/memset (Makefile.am): Likewise.
9597         * modules/memxor (Makefile.am): Likewise.
9598         * modules/mkancesdirs (Makefile.am): Likewise.
9599         * modules/mkdir-p (Makefile.am): Likewise.
9600         * modules/mkdir (Makefile.am): Likewise.
9601         * modules/mkdtemp (Makefile.am): Likewise.
9602         * modules/mkstemp (Makefile.am): Likewise.
9603         * modules/mktime (Makefile.am): Likewise.
9604         * modules/modechange (Makefile.am): Likewise.
9605         * modules/mountlist (Makefile.am): Likewise.
9606         * modules/nanosleep (Makefile.am): Likewise.
9607         * modules/obstack (Makefile.am): Likewise.
9608         * modules/openat (Makefile.am): Likewise.
9609         * modules/pagealign_alloc (Makefile.am): Likewise.
9610         * modules/pathmax (Makefile.am): Likewise.
9611         * modules/physmem (Makefile.am): Likewise.
9612         * modules/poll (Makefile.am): Likewise.
9613         * modules/posixtm (Makefile.am): Likewise.
9614         * modules/posixver (Makefile.am): Likewise.
9615         * modules/putenv (Makefile.am): Likewise.
9616         * modules/quote (Makefile.am): Likewise.
9617         * modules/quotearg (Makefile.am): Likewise.
9618         * modules/raise (Makefile.am): Likewise.
9619         * modules/read-file (Makefile.am): Likewise.
9620         * modules/readline (Makefile.am): Likewise.
9621         * modules/readlink (Makefile.am): Likewise.
9622         * modules/readtokens (Makefile.am): Likewise.
9623         * modules/readutmp (Makefile.am): Likewise.
9624         * modules/realloc (Makefile.am): Likewise.
9625         * modules/regex (Makefile.am): Likewise.
9626         * modules/rename-dest-slash (Makefile.am): Likewise.
9627         * modules/rename (Makefile.am): Likewise.
9628         * modules/rijndael (Makefile.am): Likewise.
9629         * modules/rmdir (Makefile.am): Likewise.
9630         * modules/rpmatch (Makefile.am): Likewise.
9631         * modules/safe-read (Makefile.am): Likewise.
9632         * modules/safe-write (Makefile.am): Likewise.
9633         * modules/same-inode (Makefile.am): Likewise.
9634         * modules/same (Makefile.am): Likewise.
9635         * modules/save-cwd (Makefile.am): Likewise.
9636         * modules/savedir (Makefile.am): Likewise.
9637         * modules/setenv (Makefile.am): Likewise.
9638         * modules/settime (Makefile.am): Likewise.
9639         * modules/sha1 (Makefile.am): Likewise.
9640         * modules/sig2str (Makefile.am): Likewise.
9641         * modules/snprintf (Makefile.am): Likewise.
9642         * modules/stat-macros (Makefile.am): Likewise.
9643         * modules/stat-time (Makefile.am): Likewise.
9644         * modules/stdbool (Makefile.am): Likewise.
9645         * modules/stdint (Makefile.am): Likewise.
9646         * modules/stdlib-safer (Makefile.am): Likewise.
9647         * modules/stpcpy (Makefile.am): Likewise.
9648         * modules/stpncpy (Makefile.am): Likewise.
9649         * modules/strcase (Makefile.am): Likewise.
9650         * modules/strcasestr (Makefile.am): Likewise.
9651         * modules/strchrnul (Makefile.am): Likewise.
9652         * modules/strcspn (Makefile.am): Likewise.
9653         * modules/strdup (Makefile.am): Likewise.
9654         * modules/strerror (Makefile.am): Likewise.
9655         * modules/strftime (Makefile.am): Likewise.
9656         * modules/strndup (Makefile.am): Likewise.
9657         * modules/strnlen (Makefile.am): Likewise.
9658         * modules/strpbrk (Makefile.am): Likewise.
9659         * modules/strsep (Makefile.am): Likewise.
9660         * modules/strstr (Makefile.am): Likewise.
9661         * modules/strtod (Makefile.am): Likewise.
9662         * modules/strtoimax (Makefile.am): Likewise.
9663         * modules/strtok_r (Makefile.am): Likewise.
9664         * modules/strtol (Makefile.am): Likewise.
9665         * modules/strtoll (Makefile.am): Likewise.
9666         * modules/strtoul (Makefile.am): Likewise.
9667         * modules/strtoull (Makefile.am): Likewise.
9668         * modules/strtoumax (Makefile.am): Likewise.
9669         * modules/strverscmp (Makefile.am): Likewise.
9670         * modules/sys_socket (Makefile.am): Likewise.
9671         * modules/sys_stat (Makefile.am): Likewise.
9672         * modules/sysexits (Makefile.am): Likewise.
9673         * modules/time_r (Makefile.am): Likewise.
9674         * modules/timegm (Makefile.am): Likewise.
9675         * modules/timespec (Makefile.am): Likewise.
9676         * modules/tmpfile-safer (Makefile.am): Likewise.
9677         * modules/trim (Makefile.am): Likewise.
9678         * modules/unistd-safer (Makefile.am): Likewise.
9679         * modules/unlinkdir (Makefile.am): Likewise.
9680         * modules/unlocked-io (Makefile.am): Likewise.
9681         * modules/userspec (Makefile.am): Likewise.
9682         * modules/utime (Makefile.am): Likewise.
9683         * modules/utimecmp (Makefile.am): Likewise.
9684         * modules/utimens (Makefile.am): Likewise.
9685         * modules/vasnprintf (Makefile.am): Likewise.
9686         * modules/vasprintf (Makefile.am): Likewise.
9687         * modules/vsnprintf (Makefile.am): Likewise.
9688         * modules/xalloc (Makefile.am): Likewise.
9689         * modules/xgetcwd (Makefile.am): Likewise.
9690         * modules/xnanosleep (Makefile.am): Likewise.
9691         * modules/xreadlink (Makefile.am): Likewise.
9692         * modules/xstrtod (Makefile.am): Likewise.
9693         * modules/xstrtol (Makefile.am): Likewise.
9694         * modules/xstrtold (Makefile.am): Likewise.
9695         * modules/yesno (Makefile.am): Likewise.
9696         * modules/getdate (Makefile.am): Don't add getdate.h to EXTRA_DIST.
9697
9698 2006-10-12  Paul Eggert  <eggert@cs.ucla.edu>
9699
9700         * modules/error (Makefile.am): Distribute files through
9701         EXTRA_DIST, not lib_SOURCES.
9702
9703 2006-10-12  Eric Blake  <ebb9@byu.net>
9704
9705         * modules/error (Makefile.am): Distribute files in /lib.
9706         * modules/obstack (Makefile.am): Likewise.
9707
9708 2006-10-12  Bruno Haible  <bruno@clisp.org>
9709
9710         * modules/acl (Makefile.am): Distribute all files in lib/ through
9711         EXTRA_DIST.
9712         * modules/arcfour (Makefile.am): Likewise.
9713         * modules/arctwo (Makefile.am): Likewise.
9714         * modules/argmatch (Makefile.am): Likewise.
9715         * modules/argz (Makefile.am): Likewise.
9716         * modules/atexit (Makefile.am): Likewise.
9717         * modules/backupfile (Makefile.am): Likewise.
9718         * modules/c-strtod (Makefile.am): Likewise.
9719         * modules/c-strtold (Makefile.am): Likewise.
9720         * modules/calloc (Makefile.am): Likewise.
9721         * modules/canon-host (Makefile.am): Likewise.
9722         * modules/canonicalize (Makefile.am): Likewise.
9723         * modules/chdir-long (Makefile.am): Likewise.
9724         * modules/chdir-safer (Makefile.am): Likewise.
9725         * modules/check-version (Makefile.am): Likewise.
9726         * modules/chown (Makefile.am): Likewise.
9727         * modules/cloexec (Makefile.am): Likewise.
9728         * modules/close-stream (Makefile.am): Likewise.
9729         * modules/closeout (Makefile.am): Likewise.
9730         * modules/crc (Makefile.am): Likewise.
9731         * modules/cycle-check (Makefile.am): Likewise.
9732         * modules/des (Makefile.am): Likewise.
9733         * modules/dirfd (Makefile.am): Likewise.
9734         * modules/dirname (Makefile.am): Likewise.
9735         * modules/dup2 (Makefile.am): Likewise.
9736         * modules/euidaccess (Makefile.am): Likewise.
9737         * modules/exclude (Makefile.am): Likewise.
9738         * modules/exitfail (Makefile.am): Likewise.
9739         * modules/fcntl-safer (Makefile.am): Likewise.
9740         * modules/file-type (Makefile.am): Likewise.
9741         * modules/fileblocks (Makefile.am): Likewise.
9742         * modules/filemode (Makefile.am): Likewise.
9743         * modules/filenamecat (Makefile.am): Likewise.
9744         * modules/fnmatch (Makefile.am): Likewise.
9745         * modules/fopen-safer (Makefile.am): Likewise.
9746         * modules/fpending (Makefile.am): Likewise.
9747         * modules/fprintftime (Makefile.am): Likewise.
9748         * modules/free (Makefile.am): Likewise.
9749         * modules/fsusage (Makefile.am): Likewise.
9750         * modules/ftruncate (Makefile.am): Likewise.
9751         * modules/fts (Makefile.am): Likewise.
9752         * modules/gc (Makefile.am): Likewise.
9753         * modules/gc-pbkdf2-sha1 (Makefile.am): Likewise.
9754         * modules/getaddrinfo (Makefile.am): Likewise.
9755         * modules/getcwd (Makefile.am): Likewise.
9756         * modules/getdelim (Makefile.am): Likewise.
9757         * modules/getdomainname (Makefile.am): Likewise.
9758         * modules/getgroups (Makefile.am): Likewise.
9759         * modules/gethostname (Makefile.am): Likewise.
9760         * modules/gethrxtime (Makefile.am): Likewise.
9761         * modules/getline (Makefile.am): Likewise.
9762         * modules/getloadavg (Makefile.am): Likewise.
9763         * modules/getlogin_r (Makefile.am): Likewise.
9764         * modules/getopt (Makefile.am): Likewise.
9765         * modules/getpass (Makefile.am): Likewise.
9766         * modules/getpass-gnu (Makefile.am): Likewise.
9767         * modules/getsubopt (Makefile.am): Likewise.
9768         * modules/gettime (Makefile.am): Likewise.
9769         * modules/gettimeofday (Makefile.am): Likewise.
9770         * modules/getugroups (Makefile.am): Likewise.
9771         * modules/getusershell (Makefile.am): Likewise.
9772         * modules/glob (Makefile.am): Likewise.
9773         * modules/group-member (Makefile.am): Likewise.
9774         * modules/hard-locale (Makefile.am): Likewise.
9775         * modules/hash (Makefile.am): Likewise.
9776         * modules/hmac-md5 (Makefile.am): Likewise.
9777         * modules/hmac-sha1 (Makefile.am): Likewise.
9778         * modules/human (Makefile.am): Likewise.
9779         * modules/idcache (Makefile.am): Likewise.
9780         * modules/imaxabs (Makefile.am): Likewise.
9781         * modules/imaxdiv (Makefile.am): Likewise.
9782         * modules/inet_ntop (Makefile.am): Likewise.
9783         * modules/inet_pton (Makefile.am): Likewise.
9784         * modules/inttostr (Makefile.am): Likewise.
9785         * modules/isapipe (Makefile.am): Likewise.
9786         * modules/lchown (Makefile.am): Likewise.
9787         * modules/long-options (Makefile.am): Likewise.
9788         * modules/lstat (Makefile.am): Likewise.
9789         * modules/malloc (Makefile.am): Likewise.
9790         * modules/mathl (Makefile.am): Likewise.
9791         * modules/mbchar (Makefile.am): Likewise.
9792         * modules/md2 (Makefile.am): Likewise.
9793         * modules/md4 (Makefile.am): Likewise.
9794         * modules/md5 (Makefile.am): Likewise.
9795         * modules/memcasecmp (Makefile.am): Likewise.
9796         * modules/memchr (Makefile.am): Likewise.
9797         * modules/memcmp (Makefile.am): Likewise.
9798         * modules/memcoll (Makefile.am): Likewise.
9799         * modules/memcpy (Makefile.am): Likewise.
9800         * modules/memmem (Makefile.am): Likewise.
9801         * modules/memmove (Makefile.am): Likewise.
9802         * modules/mempcpy (Makefile.am): Likewise.
9803         * modules/memrchr (Makefile.am): Likewise.
9804         * modules/memset (Makefile.am): Likewise.
9805         * modules/memxor (Makefile.am): Likewise.
9806         * modules/mkancesdirs (Makefile.am): Likewise.
9807         * modules/mkdir (Makefile.am): Likewise.
9808         * modules/mkdir-p (Makefile.am): Likewise.
9809         * modules/mkdtemp (Makefile.am): Likewise.
9810         * modules/mkstemp (Makefile.am): Likewise.
9811         * modules/mktime (Makefile.am): Likewise.
9812         * modules/modechange (Makefile.am): Likewise.
9813         * modules/mountlist (Makefile.am): Likewise.
9814         * modules/nanosleep (Makefile.am): Likewise.
9815         * modules/openat (Makefile.am): Likewise.
9816         * modules/pagealign_alloc (Makefile.am): Likewise.
9817         * modules/physmem (Makefile.am): Likewise.
9818         * modules/poll (Makefile.am): Likewise.
9819         * modules/posixtm (Makefile.am): Likewise.
9820         * modules/posixver (Makefile.am): Likewise.
9821         * modules/putenv (Makefile.am): Likewise.
9822         * modules/quote (Makefile.am): Likewise.
9823         * modules/quotearg (Makefile.am): Likewise.
9824         * modules/raise (Makefile.am): Likewise.
9825         * modules/read-file (Makefile.am): Likewise.
9826         * modules/readline (Makefile.am): Likewise.
9827         * modules/readlink (Makefile.am): Likewise.
9828         * modules/readtokens (Makefile.am): Likewise.
9829         * modules/readutmp (Makefile.am): Likewise.
9830         * modules/realloc (Makefile.am): Likewise.
9831         * modules/regex (Makefile.am): Likewise.
9832         * modules/rename (Makefile.am): Likewise.
9833         * modules/rename-dest-slash (Makefile.am): Likewise.
9834         * modules/rijndael (Makefile.am): Likewise.
9835         * modules/rmdir (Makefile.am): Likewise.
9836         * modules/rpmatch (Makefile.am): Likewise.
9837         * modules/safe-read (Makefile.am): Likewise.
9838         * modules/safe-write (Makefile.am): Likewise.
9839         * modules/same (Makefile.am): Likewise.
9840         * modules/save-cwd (Makefile.am): Likewise.
9841         * modules/savedir (Makefile.am): Likewise.
9842         * modules/setenv (Makefile.am): Likewise.
9843         * modules/settime (Makefile.am): Likewise.
9844         * modules/sha1 (Makefile.am): Likewise.
9845         * modules/sig2str (Makefile.am): Likewise.
9846         * modules/snprintf (Makefile.am): Likewise.
9847         * modules/stdlib-safer (Makefile.am): Likewise.
9848         * modules/stpcpy (Makefile.am): Likewise.
9849         * modules/stpncpy (Makefile.am): Likewise.
9850         * modules/strcase (Makefile.am): Likewise.
9851         * modules/strcasestr (Makefile.am): Likewise.
9852         * modules/strchrnul (Makefile.am): Likewise.
9853         * modules/strcspn (Makefile.am): Likewise.
9854         * modules/strdup (Makefile.am): Likewise.
9855         * modules/strerror (Makefile.am): Likewise.
9856         * modules/strftime (Makefile.am): Likewise.
9857         * modules/strndup (Makefile.am): Likewise.
9858         * modules/strnlen (Makefile.am): Likewise.
9859         * modules/strpbrk (Makefile.am): Likewise.
9860         * modules/strsep (Makefile.am): Likewise.
9861         * modules/strstr (Makefile.am): Likewise.
9862         * modules/strtod (Makefile.am): Likewise.
9863         * modules/strtoimax (Makefile.am): Likewise.
9864         * modules/strtok_r (Makefile.am): Likewise.
9865         * modules/strtol (Makefile.am): Likewise.
9866         * modules/strtoll (Makefile.am): Likewise.
9867         * modules/strtoul (Makefile.am): Likewise.
9868         * modules/strtoull (Makefile.am): Likewise.
9869         * modules/strtoumax (Makefile.am): Likewise.
9870         * modules/strverscmp (Makefile.am): Likewise.
9871         * modules/time_r (Makefile.am): Likewise.
9872         * modules/timegm (Makefile.am): Likewise.
9873         * modules/tmpfile-safer (Makefile.am): Likewise.
9874         * modules/unistd-safer (Makefile.am): Likewise.
9875         * modules/unlinkdir (Makefile.am): Likewise.
9876         * modules/userspec (Makefile.am): Likewise.
9877         * modules/utime (Makefile.am): Likewise.
9878         * modules/utimecmp (Makefile.am): Likewise.
9879         * modules/utimens (Makefile.am): Likewise.
9880         * modules/vasnprintf (Makefile.am): Likewise.
9881         * modules/vasprintf (Makefile.am): Likewise.
9882         * modules/vsnprintf (Makefile.am): Likewise.
9883         * modules/xalloc (Makefile.am): Likewise.
9884         * modules/xgetcwd (Makefile.am): Likewise.
9885         * modules/xnanosleep (Makefile.am): Likewise.
9886         * modules/xreadlink (Makefile.am): Likewise.
9887         * modules/xstrtod (Makefile.am): Likewise.
9888         * modules/xstrtol (Makefile.am): Likewise.
9889         * modules/xstrtold (Makefile.am): Likewise.
9890         * modules/yesno (Makefile.am): Likewise.
9891
9892 2006-10-12  Jim Meyering  <jim@meyering.net>
9893
9894         * m4/getloadavg.m4: Revert the change below.
9895
9896         * m4/getloadavg.m4 (gl_GETLOADAVG): Test for the existence of
9897         lib/getloadavg.c using "ls -L", not "test -f".  The latter would
9898         fail with a symlink, which is what coreutils' ./bootstrap now
9899         creates by default.
9900
9901 2006-10-12  Bruno Haible  <bruno@clisp.org>
9902
9903         * lib/inttypes_.h (_LONG_LONG_FORMAT_PREFIX): Don't define for MSVC or
9904         mingw.
9905         (_PRI64_PREFIX, _PRIu64_PREFIX, _SCN64_PREFIX, _SCNu64_PREFIX): Handle
9906         MSVC and mingw explicitly.
9907
9908 2006-10-11  Simon Josefsson  <jas@extundo.com>
9909             Bruno Haible  <bruno@clisp.org>
9910
9911         Add support for multiple gnulib-tool invocations in the scope of a
9912         single configure.ac file.
9913         * gnulib-tool (func_emit_lib_Makefile_am): In the _LIBADD variable,
9914         use a private [LT]LIBOBJS variant. Define a _DEPENDENCIES variable
9915         with the same contents as the _LIBADD variable.
9916         (func_emit_initmacro_start, func_emit_initmacro_end,
9917         func_emit_initmacro_done): New functions.
9918         (func_import, func_create_testdir): Invoke them. Allow the identifiers
9919         gl_LIBOBJS and gl_LTLIBOBJS.
9920
9921 2006-10-11  Bruno Haible  <bruno@clisp.org>
9922
9923         * gnulib-tool (GETTEXTPATH, AUTOHEADER, AUTOPOINT): New variables.
9924         (func_create_testdir): Don't create po/Makefile.am, don't invoke
9925         autoreconf. Instead, invoke autopoint explicitly but move back the
9926         *.m4 files from gnulib.
9927
9928 2006-10-11  Bruno Haible  <bruno@clisp.org>
9929
9930         * gnulib-tool (func_usage): Make module names after --create-testdir
9931         optional.
9932         (func_create_testdir): If no module was specified, use nearly all
9933         modules.
9934
9935 2006-10-12  Jim Meyering  <jim@meyering.net>
9936
9937         Big performance improvement for fts-based tools that use FTS_NOSTAT.
9938         Avoid spurious inode-mismatch problems on non-POSIX file systems.
9939         Details: http://article.gmane.org/gmane.comp.lib.gnulib.bugs/7416
9940         * lib/fts_.h (FTS_DEFER_STAT): Define new flag.
9941         (FTS_OPTIONMASK): Extend the mask to reflect this addition.
9942         * lib/fts.c (DT_IS_KNOWN, DT_MUST_BE): Define.
9943         (FTS_NO_STAT_REQUIRED, FTS_STAT_REQUIRED): Define.
9944         (fts_set_stat_required): New function.
9945         (fts_open): Defer the calls to fts_stat, if possible or requested.
9946         Move the code that maps a command-line fts_info value FTS_DOT to FTS_D
9947         into fts_stat itself.
9948         (fts_read): Perform any required (deferred) fts_stat call.
9949         (fts_build): Likewise, for the directory we're about to open and read.
9950         In the readdir loop, carefully decide whether each entry will require
9951         an eventual call to fts_stat, using dirent.d_type info if available.
9952         (fts_stat): Move the test for whether to honor FTS_COMFOLLOW on
9953         a command line argument into this function.  Update all callers.
9954         Map a return value of FTS_DOT to FTS_D for a command line argument.
9955         * modules/fts (Depends-on): Add d-type.  Alphabetize.
9956         Thanks to Miklos Szeredi for his tenacity and for the initial
9957         bug report about "find" failing on a FUSE-based file system.
9958
9959         * lib/fts.c (fts_open): Use consistent indentation.
9960
9961 2006-10-12  Paul Eggert  <eggert@cs.ucla.edu>
9962
9963         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS): Renamed from
9964         gl_USE_SYSTEM_EXTENSIONS, to fix a coreutils bootstrap failure
9965         reported by Jim Meyering.  All uses of cache variables renamed
9966         to match Autoconf's.
9967         (gl_USE_SYSTEM_EXTENSIONS): New macro, which simply requires
9968         the other one.
9969
9970         * m4/rename-dest-slash.m4 (gl_FUNC_RENAME_TRAILING_DEST_SLASH):
9971         Fix misspelling in diagnostic.
9972
9973 2006-10-11  Paul Eggert  <eggert@cs.ucla.edu>
9974
9975         * lib/mkdir-p.c (HAVE_FCHMOD): Define to false if not already
9976         defined.  Problem reported by Matthew Woehlke.
9977
9978         * lib/inttypes_.h (_LONG_LONG_FORMAT_PREFIX): New macro.
9979         Add support for Tandem NonStop R series.
9980         (_PRI64_PREFIX, _PRIu64_PREFIX, _SCN64_PREFIX, _SCNu64_PREFIX):
9981         Use new macro.
9982
9983         * lib/rename-dest-slash.c: Include stdbool.h but not string.h.
9984         (has_trailing_slash): Omit size arg; all callers changed.
9985         Omit 'inline', since it doesn't help performance and we'd
9986         need to configure it.
9987         Don't count //, ///, etc. as having a trailing slash.
9988         As a side effect, this removes a C99ism reported by Matthew Woehlke.
9989         (rpl_rename_dest_slash): On failure, use rename's errno rather
9990         than (in some cases) an incorrect or junk errno.
9991         Simplify code by removing need to compute length; this does
9992         cause it to make two passes instead of one over the file name,
9993         but it's worth it.
9994
9995         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Undo previous
9996         change, since Autoconf's version may no longer be appropriate now
9997         that we are using CVS Autoconf's version.  Add support for Tandem.
9998
9999 2006-10-11  Paul Eggert  <eggert@cs.ucla.edu>
10000             Bruno Haible  <bruno@clisp.org>
10001
10002         * lib/allocsa.h (sa_alignment_longlong, sa_alignment_max): Test
10003         HAVE_LONG_LONG_INT instead of HAVE_LONG_LONG.
10004         * m4/allocsa.m4 (gl_ALLOCSA): Invoke AC_TYPE_LONG_LONG_INT instead of
10005         gl_AC_TYPE_LONG_LONG.
10006
10007         * lib/printf-args.h (arg_type, argument): Test HAVE_LONG_LONG_INT
10008         instead of HAVE_LONG_LONG.
10009         * lib/printf-args.c (printf_fetchargs): Likewise.
10010         * lib/printf-parse.c (PRINTF_PARSE): Likewise.
10011         * lib/vasnprintf.c (VASNPRINTF): Likewise.
10012         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_ARGS, gl_PREREQ_PRINTF_PARSE,
10013         gl_PREREQ_VASNPRINTF): Invoke AC_TYPE_LONG_LONG_INT instead of
10014         gl_AC_TYPE_LONG_LONG.
10015
10016 2006-10-11  Bruno Haible  <bruno@clisp.org>
10017
10018         * m4/longlong.m4: Add comments.
10019         * m4/ulonglong.m4: Likewise.
10020
10021 2006-10-10  Bruno Haible  <bruno@clisp.org>
10022
10023         Make it possible to #define stpcpy, strdup to aliases.
10024         * lib/stpcpy.c (stpcpy) [!_LIBC]: Don't undefine.
10025         * lib/strdup.c (strdup) [!_LIBC]: Don't undefine.
10026
10027 2006-10-10  Bruno Haible  <bruno@clisp.org>
10028
10029         Make it possible to #define gcd to an alias.
10030         * lib/gcd.c: Include config.h.
10031
10032 2006-10-10  Bruno Haible  <bruno@clisp.org>
10033
10034         Make it possible to #define c_isascii to an alias.
10035         * lib/c-ctype.h: Don't define the macros if NO_C_CTYPE_MACROS is
10036         defined. Undefine the macros before defining them, to avoid gcc
10037         warnings.
10038         * lib/c-ctype.c: Include config.h. Don't undefine the macros; instead,
10039         define NO_C_CTYPE_MACROS early.
10040
10041 2006-10-10  Bruno Haible  <bruno@clisp.org>
10042
10043         Make it possible to #define set_program_name to an alias.
10044         * lib/progname.c: Don't undefine set_program_name; instead, undefine
10045         ENABLE_RELOCATABLE early.
10046
10047 2006-10-10  Paul Eggert  <eggert@cs.ucla.edu>
10048
10049         Port to Tandem NSK OSS, which has 64-bit signed int but at most
10050         32-bit unsigned int.  Problem reported by Matthew Woehlke in:
10051         http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00062.html
10052         More generally, don't assume that 64-bit signed int is available
10053         if unsigned int is, and vice versa.
10054         * lib/inttypes_.h (_PRIu64_PREFIX, _SCNu64_PREFIX): Depend on
10055         unsigned symbols, not on their signed counterparts.
10056         * lib/stdint_.h (uint64_t, uint_least64_t, uint_fast64_t, uintmax_t):
10057         (UINT64_MAX, UINT_LEAST64_MAX, UINT_FAST64_MAX, UINTMAX_MAX):
10058         (UINT64_C, UINTMAX_C):
10059         Likewise.
10060         * lib/strtoimax.c (strtoll): Depend on signed symbols, not their
10061         unsigned counterparts.
10062         (Have_long_long, Unsigned): New macros.
10063         (Int): Renamed from INT.
10064         (strtoimax): Use the new macros.
10065         * m4/stdint.m4 (gl_STDINT_H): Require AC_TYPE_UNSIGNED_LONG_LONG_INT
10066         and substitute HAVE_UNSIGNED_LONG_LONG_INT.
10067         * modules/inttypes (inttypes.h): Substitute
10068         HAVE_UNSIGNED_LONG_LONG_INT.
10069         * modules/stdint (stdint.h): Likewise.
10070         (Files): Add m4/ulonglong.m4.
10071
10072 2006-10-10  Bruno Haible  <bruno@clisp.org>
10073
10074         Fix a gcc -Wshadow warning.
10075         * lib/gl_anyhash_list2.h (hash_resize): Rename local variable 'index'
10076         to 'bucket'.
10077         * lib/gl_anylinked_list2.h (gl_linked_search_from_to,
10078         gl_linked_indexof_from_to): Likewise.
10079         * lib/gl_linkedhash_list.c (add_to_bucket, remove_from_bucket):
10080         Likewise.
10081         * lib/gl_anytreehash_list1.h (add_to_bucket, remove_from_bucket):
10082         Likewise.
10083         * lib/gl_anytreehash_list2.h (gl_tree_search_from_to): Likewise.
10084         Reported by Eric Blake.
10085
10086 2006-10-09  Paul Eggert  <eggert@cs.ucla.edu>
10087
10088         * lib/filemode.h [HAVE_DECL_STRMODE]: Include unistd.h too,
10089         for NetBSD.  Problem reported by Bruno Haible.
10090
10091 2006-10-09  Jim Meyering  <jim@meyering.net>
10092
10093         * lib/lchown.c: Include <sys/stat.h> before "stat-macros.h".
10094         Patch from Bruno Haible.
10095
10096 2006-10-09  Jim Meyering  <jim@meyering.net>
10097
10098         * lib/fts-cycle.c (leave_dir): When "leaving" a top level directory due
10099         to FTS_SKIP, don't copy the parent's uninitialized dev/ino values.
10100         Trigger with e.g., mkdir d && valgrind ./chmod u+rwx d d
10101
10102 2006-10-08  Paul Eggert  <eggert@cs.ucla.edu>
10103
10104         Don't include <config.h> twice; this doesn't work in some cases,
10105         e.g., when config.h has "#define intmax_t long long int" and
10106         we include <config.h>, <inttypes.h>, <config.h> in that order.
10107         Problem reported by Matthew Woehlke in:
10108         http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00073.html
10109         * lib/fprintftime.c: Don't include config.h or fprintftime.h.
10110         * lib/fts-cycle.c: Don't include config.h.
10111         * lib/strftime.c: Include fprintftime.h if FPRINTFTIME is defined.
10112         * lib/xstrtoimax.c: Remove copyright notice since it's short tnow.
10113         Don't include config.h or xstrtol.h.  Define STRTOL_T_MINIMUM
10114         and STRTOL_T_MAXIMUM unconditionally, since we now assume gnulib
10115         inttypes.h.
10116         * lib/xstrtoumax.c: Likewise.
10117         * lib/xstrtol.c: Include config.h and xstrtol.h after defining
10118         __strtol and the like, so that this module is more like its siblings.
10119         (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM) [! defined STRTOL_T_MINIMUM]:
10120         Remove; no longer needed now that we assume gnulib inttypes.h.
10121
10122 2006-10-08  Bruno Haible  <bruno@clisp.org>
10123
10124         * doc/gnulib-tool.texi: Emphasize the drawbacks of the --symlink
10125         option.
10126
10127 2006-10-07  Jim Meyering  <jim@meyering.net>
10128
10129         * modules/inttypes (inttypes.h): Revert what seems to have been
10130         an inadvertent part of today's change: use "|", not "/" in the
10131         substitution for the "/"-containing string, $(ABSOLUTE_INTTYPES_H).
10132
10133 2006-10-07  Bruno Haible  <bruno@clisp.org>
10134
10135         * modules/sublist: New file.
10136
10137 2006-10-07  Bruno Haible  <bruno@clisp.org>
10138
10139         * modules/alloca-opt (alloca.h): Add a "DO NOT EDIT" comment.
10140         * modules/argz (argz.h): Likewise.
10141         * modules/arpa_inet (arpa/inet.h): Likewise.
10142         * modules/byteswap (byteswap.h): Likewise.
10143         * modules/configmake (configmake.h): Likewise.
10144         * modules/fcntl (fcntl.h): Likewise.
10145         * modules/fnmatch (fnmatch.h): Likewise.
10146         * modules/getopt (getopt.h): Likewise.
10147         * modules/glob (glob.h): Likewise.
10148         * modules/inttypes (inttypes.h): Likewise.
10149         * modules/netinet_in (netinet/in.h): Likewise.
10150         * modules/poll (poll.h): Likewise.
10151         * modules/stdbool (stdbool.h): Likewise.
10152         * modules/stdint (stdint.h): Likewise.
10153         * modules/sys_select (sys/select.h): Likewise.
10154         * modules/sys_socket (sys/socket.h): Likewise.
10155         * modules/sys_stat (sys/stat.h): Likewise.
10156         * modules/sysexits (sysexits.h): Likewise.
10157         * modules/unistd (unistd.h): Likewise.
10158         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
10159         Add a "DO NOT EDIT" comment to the generated file.
10160         (func_import): Likewise for gnulib-comp.m4.
10161
10162 2006-10-07  Bruno Haible  <bruno@clisp.org>
10163
10164         * lib/gl_sublist.h: New file.
10165         * lib/gl_sublist.c: New file.
10166
10167 2006-10-06  Paul Eggert  <eggert@cs.ucla.edu>
10168
10169         * lib/mkancesdirs.c (mkancesdirs): Pass to MAKE_DIR both the full file
10170         name (relative to the original working directory) and the file
10171         name component (relative to the temporary working directory).  All
10172         callers changed.
10173         * lib/mkancesdirs.h (mkancesdirs): Adjust prototype to match.
10174         * lib/mkdir-p.c (make_dir_parents): Likewise.
10175         * lib/mkdir-p.h (make_dir_parents): Likewise.
10176
10177 2006-10-06  Eric Blake  <ebb9@byu.net>
10178
10179         Define several macros for use by the clean-temp module.
10180         * m4/close-stream.m4 (gl_CLOSE_STREAM): Define GNULIB_CLOSE_STREAM.
10181         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Define GNULIB_FCNTL_SAFER.
10182         * m4/stdio-safer.m4 (gl_FOPEN_SAFER): Define GNULIB_FOPEN_SAFER.
10183
10184         * lib/clean-temp.h (close_stream_temp): New declaration.
10185         * lib/clean-temp.c (includes): Pull in headers according to what
10186         other modules are in use.
10187         (close_stream_temp) [GNULIB_CLOSE_STREAM]: New function.
10188
10189 2006-10-06  Bruno Haible  <bruno@clisp.org>
10190
10191         * lib/javacomp.c (write_temp_file): Use fopen_temp, fwriteerror_temp
10192         instead of fopen, fwriteerror.
10193
10194 2006-10-06  Bruno Haible  <bruno@clisp.org>
10195
10196         * lib/clean-temp.h (cleanup_temp_file, cleanup_temp_subdir,
10197         cleanup_temp_dir_contents, cleanup_temp_dir): Change return type to
10198         int.
10199         * lib/clean-temp.c (do_unlink, do_rmdir, cleanup_temp_file,
10200         cleanup_temp_subdir, cleanup_temp_dir_contents, cleanup_temp_dir):
10201         Return an error indicator.
10202         Suggested by Eric Blake.
10203
10204 2006-10-06  Bruno Haible  <bruno@clisp.org>
10205
10206         * lib/clean-temp.c (PATH_MAX): Provide a fallback for GNU Hurd.
10207         Reported by Eric Blake.
10208
10209 2006-10-06  Bruno Haible  <bruno@clisp.org>
10210
10211         * modules/closeout (Description): Mention stderr too.
10212
10213 2006-10-06  Bruno Haible  <bruno@clisp.org>
10214         and Paul Eggert  <eggert@cs.ucla.edu>
10215
10216         * lib/closeout.c (close_stdout): Also close stderr.
10217         * lib/closeout.h: Update comment.
10218
10219 2006-10-05  Paul Eggert  <eggert@cs.ucla.edu>
10220
10221         Fix some Darwin-7.9.0 porting problems reported by Bruno Haible in
10222         <http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00063.html>.
10223         * lib/dirchownmod.c: Include lchown.h.
10224         * lib/lchown.c: Don't include files that lchown.h now includes.
10225         Don't declare chown, since lchown.h now does that.
10226         * lib/lchown.h: Include errno.h, sys/types.h, unistd.h.
10227         (lchown): Define to rpl_chown if lchown is declared but
10228         does not exist.  Declare using a prototype if lchown is not
10229         declared.  Add a copyright notice.
10230         * lib/mkstemp.h: Include <unistd.h>.
10231         * lib/openat.c: Include lchown.h.
10232
10233         * lib/fcntl_.h (O_NOFOLLOW): Don't depend on O_NOFOLLOW_IS_INEFFECTIVE;
10234         we now test for that separately.
10235         * lib/fts.c (fts_safe_changedir): Inspect HAVE_WORKING_O_NOFOLLOW
10236         rather than O_NOFOLLOW, when testing whether it's possible to
10237         avoid a race condition reliably.
10238         * lib/savewd.c (savewd_chdir): Likewise.
10239
10240         Remove macros that are no longer needed now that stdint.h is
10241         reliable.
10242         * lib/fsusage.c (UINTMAX_MAX): Remove.
10243         * lib/human.c (SIZE_MAX, UINTMAX_MAX): Remove.
10244         * lib/utimecmp.c (SIZE_MAX): Remove.
10245
10246         * m4/lchown.m4 (gl_FUNC_LCHOWN): Check whether lchown is declared.
10247
10248         * m4/fcntl_h.m4 (gl_FCNTL_H): Define HAVE_WORKING_O_NOFOLLOW instead
10249         of O_NOFOLLOW_IS_INEFFECTIVE.  Define HAVE_WORKING_O_NOATIME if
10250         O_NOATIME works.
10251
10252 2006-10-05  Bruno Haible  <bruno@clisp.org>
10253
10254         * lib/gl_list.h (gl_sortedlist_search_from_to,
10255         gl_sortedlist_indexof_from_to): New declarations.
10256         (gl_list_implementation): New fields sortedlist_search_from_to,
10257         sortedlist_indexof_from_to.
10258         (gl_sortedlist_search_from_to, gl_sortedlist_indexof_from_to): New
10259         inline functions.
10260         * lib/gl_list.c (gl_sortedlist_search_from_to,
10261         gl_sortedlist_indexof_from_to): New functions.
10262         * lib/gl_array_list.c (gl_array_sortedlist_indexof_from_to): New
10263         function.
10264         (gl_array_sortedlist_indexof, gl_array_sortedlist_search): Use it.
10265         (gl_array_sortedlist_search_from_to): New function.
10266         (gl_array_list_implementation): Update.
10267         * lib/gl_carray_list.c (gl_carray_sortedlist_indexof_from_to): New
10268         function.
10269         (gl_carray_sortedlist_indexof, gl_carray_sortedlist_search): Use it.
10270         (gl_carray_sortedlist_search_from_to): New function.
10271         (gl_carray_list_implementation): Update.
10272         * lib/gl_anylinked_list2.h (gl_linked_sortedlist_search_from_to,
10273         gl_linked_sortedlist_indexof_from_to): New functions.
10274         * lib/gl_linked_list.c (gl_linked_list_implementation): Update.
10275         * lib/gl_linkedhash_list.c (gl_linkedhash_list_implementation): Update.
10276         * lib/gl_anytree_list2.h (gl_tree_sortedlist_search_from_to,
10277         gl_tree_sortedlist_indexof_from_to): New functions.
10278         * lib/gl_avltree_list.c (gl_avltree_list_implementation): Update.
10279         * lib/gl_avltreehash_list.c (gl_avltreehash_list_implementation):
10280         Update.
10281         * lib/gl_rbtree_list.c (gl_rbtree_list_implementation): Update.
10282         * lib/gl_rbtreehash_list.c (gl_avltreehash_list_implementation):
10283         Update.
10284
10285 2006-10-05  Bruno Haible  <bruno@clisp.org>
10286
10287         * lib/gl_list.h (gl_list_search_from, gl_list_search_from_to,
10288         gl_list_indexof_from, gl_list_indexof_from_to): New declarations.
10289         (struct gl_list_implementation): Add fields search_from_to,
10290         indexof_from_to. Remove fields search, indexof.
10291         (gl_list_search): Use the search_from_to method.
10292         (gl_list_search_from, gl_list_search_from_to): New functions.
10293         (gl_list_indexof): Use the indexof_from_to method.
10294         (gl_list_indexof_from, gl_list_indexof_from_to): New functions.
10295         * lib/gl_list.c (gl_list_search): Use the search_from_to method.
10296         (gl_list_search_from, gl_list_search_from_to): New functions.
10297         (gl_list_indexof): Use the indexof_from_to method.
10298         (gl_list_indexof_from, gl_list_indexof_from_to): New functions.
10299         * lib/gl_array_list.c (gl_array_indexof_from_to): Renamed from
10300         gl_array_indexof. Add start_index, end_index arguments.
10301         (gl_array_search_from_to): Renamed from gl_array_search. Add
10302         start_index, end_index arguments.
10303         (gl_array_remove, gl_array_list_implementation): Update.
10304         * lib/gl_carray_list.c (gl_carray_indexof_from_to): Renamed from
10305         gl_carray_indexof. Add start_index, end_index arguments.
10306         (gl_carray_search_from_to): Renamed from gl_carray_search. Add
10307         start_index, end_index arguments.
10308         (gl_carray_remove, gl_carray_list_implementation): Update.
10309         * lib/gl_anylinked_list2.h (gl_linked_search_from_to): Renamed from
10310         gl_linked_search. Add start_index, end_index arguments.
10311         (gl_linked_indexof_from_to): Renamed from gl_linked_indexof. Add
10312         start_index, end_index arguments.
10313         (gl_linked_remove): Update.
10314         * lib/gl_linked_list.c (gl_linked_list_implementation): Update.
10315         * lib/gl_linkedhash_list.c (gl_linkedhash_list_implementation): Update.
10316         * lib/gl_anytree_list1.h (iterstack_item_t): Change type of 'rightp'
10317         field to 'size_t'.
10318         * lib/gl_anytree_list2.h (gl_tree_search_from_to): Renamed from
10319         gl_tree_search. Add start_index, end_index arguments.
10320         (gl_tree_indexof_from_to): Renamed from gl_tree_indexof. Add
10321         start_index, end_index arguments.
10322         (gl_tree_remove): Update.
10323         * lib/gl_avltree_list.c (gl_avltree_list_implementation): Update.
10324         * lib/gl_rbtree_list.c (gl_rbtree_list_implementation): Update.
10325         * lib/gl_anytreehash_list1.h (compare_position_threshold): New
10326         function.
10327         * lib/gl_anytreehash_list2.h (gl_tree_search_from_to): Renamed from
10328         gl_tree_search. Add start_index, end_index arguments.
10329         (gl_tree_indexof_from_to): Renamed from gl_tree_indexof. Add
10330         start_index, end_index arguments.
10331         * lib/gl_avltreehash_list.c (gl_avltreehash_list_implementation):
10332         Update.
10333         * lib/gl_rbtreehash_list.c (gl_rbtreehash_list_implementation): Update.
10334
10335 2006-10-05  Bruno Haible  <bruno@clisp.org>
10336
10337         * modules/fwriteerror (configure.ac): Define GNULIB_FWRITEERROR.
10338
10339         * lib/clean-temp.h (open_temp, fopen_temp, close_temp, fclose_temp,
10340         fwriteerror_temp): New declarations.
10341         * lib/clean-temp.c (uintptr_t): Provide fallback definition.
10342         (descriptors): New variable.
10343         (cleanup): First, close the descriptors.
10344         (register_fd, unregister_fd, open_temp, fopen_temp, close_temp,
10345         fclose_temp, fwriteerror_temp): New functions.
10346
10347 2006-10-04  Jim Meyering  <jim@meyering.net>
10348
10349         * lib/fts.c (fts_open): Tiny comment change.
10350
10351 2006-10-04  Bruno Haible  <bruno@clisp.org>
10352
10353         Make it possible to invoke AC_GNU_SOURCE after gl_LOCK_EARLY.
10354         * m4/lock.m4 (gl_LOCK_EARLY_BODY): New macro, extracted code from
10355         gl_LOCK_BODY.
10356         (gl_LOCK_EARLY): Require gl_LOCK_EARLY_BODY, not gl_LOCK_BODY.
10357         (gl_LOCK_BODY): Remove settings of CPPFLAGS, now done in
10358         gl_LOCK_EARLY_BODY.
10359         (gl_LOCK): Require gl_LOCK_BODY.
10360
10361 2006-10-04  Bruno Haible  <bruno@clisp.org>
10362
10363         * lib/gl_oset.h (gl_setelement_threshold_fn): New type.
10364         (gl_oset_search_atleast): New declaration.
10365         (struct gl_oset_implementation): Add field 'search_atleast'.
10366         (gl_oset_search_atleast): New inline function.
10367         * lib/gl_oset.c (gl_oset_search_atleast): New function.
10368         * lib/gl_array_oset.c (gl_array_search_atleast): New function.
10369         (gl_array_oset_implementation): Update.
10370         * lib/gl_anytree_oset.h (gl_tree_search_atleast): New function.
10371         * lib/gl_avltree_oset.c (gl_avltree_oset_implementation): Update.
10372         * lib/gl_rbtree_oset.c (gl_rbtree_oset_implementation): Update.
10373
10374 2006-10-04  Bruno Haible  <bruno@clisp.org>
10375
10376         * lib/fatal-signal.c (fatal_signals) [WOE32]: Add the SIGBREAK signal.
10377
10378 2006-10-03  Bruno Haible  <bruno@clisp.org>
10379
10380         * lib/gl_rbtreehash_list.c (gl_rbtreehash_list_implementation): Renamed
10381         from gl_avltreehash_list_implementation.
10382
10383 2006-10-03  Bruno Haible  <bruno@clisp.org>
10384
10385         * lib/gl_oset.c (gl_oset_add): Fix return type.
10386
10387 2006-10-02  Paolo Bonzini  <bonzini@gnu.org>  (tiny change)
10388
10389         * lib/quotearg.c (mbstate_t) [!HAVE_MBRTOWC]: #define to int.
10390
10391 2006-10-02  Eric Blake  <ebb9@byu.net>
10392
10393         * modules/strnlen (Depends-on): Add extensions.
10394
10395 2006-10-02  Eric Blake  <ebb9@byu.net>
10396
10397         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Use autoconf's
10398         definition in 2.60+.
10399
10400 2006-10-02  Dmitry V. Levin  <ldv@altlinux.org>
10401
10402         * lib/fts.c (fts_close, fts_build, fts_palloc): Remove redundant
10403         checks.
10404
10405 2006-10-02  Bruno Haible  <bruno@clisp.org>
10406
10407         * gnulib-tool (func_emit_lib_Makefile_am): Don't add no-dependencies
10408         to the AUTOMAKE_OPTIONS.
10409         Reported by Jim Meyering.
10410
10411 2006-09-29  Paul Eggert  <eggert@cs.ucla.edu>
10412
10413         Work around bug in Solaris 10 /proc file system:
10414         /proc/self/fd/NNN/.. isn't the parent directory of
10415         the directory whose file descriptor is NNN.  This needs to
10416         be worked around at run time, not compile time, since a
10417         program might be built on Solaris 8, where things work, and
10418         run on Solaris 10.
10419         * lib/openat-priv.h (BUILD_PROC_NAME): Remove.  All callers changed
10420         to use the following interface instead:
10421         (OPENAT_BUFFER_SIZE): New macro.
10422         (openat_proc_name): New function.
10423         * lib/at-func.c (AT_FUNC_NAME): Adjust to above changes.
10424         * lib/openat.c (openat_permissive, openat_needs_fchdir, fdopendir):
10425         Likewise.
10426         * lib/openat-proc.c: New file.
10427         * modules/openat (Files): Add lib/openat-proc.c.
10428         (Depends-on): Add same-inode, stdbool.
10429         * m4/openat.m4 (gl_FUNC_OPENAT): Add AC_LIBOBJ(openat-proc).
10430
10431 2006-09-29  Bruno Haible  <bruno@clisp.org>
10432
10433         * lib/fwriteerror.h (fwriteerror_no_ebadf): New declaration.
10434         * lib/(do_fwriteerror): Renamed from fwriteerror. Add ignore_ebadf
10435         argument. Set stdout_closed before testing for ferror, not after.
10436         (fwriteerror, fwriteerror_no_ebadf): New functions.
10437
10438 2006-09-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
10439
10440         * m4/intmax.m4 (gt_TYPE_INTMAX_T): Avoid unused variables warning.
10441
10442 2006-09-28  Paolo Bonzini  <bonzini@gnu.org>
10443
10444         * lib/poll.c (rpl_poll) [__APPLE__]: Use FIONREAD instead of MSG_PEEK.
10445         * m4/poll.m4: Look for sys/ioctl.h and sys/filio.h.
10446
10447 2006-09-28  Jim Meyering  <jim@meyering.net>
10448
10449         * lib/mkdir-p.c: Include "dirchownmod.h", not "dirchownmod.c".
10450         Include <unistd.h>.
10451
10452 2006-09-28  Bruno Haible  <bruno@clisp.org>
10453
10454         * modules/avltreehash-list (Depends-on): Add stdint, remove size_max.
10455         * modules/linkedhash-list (Depends-on): Likewise.
10456         * modules/rbtreehash-list (Depends-on): Likewise.
10457
10458 2006-09-28  Bruno Haible  <bruno@clisp.org>
10459
10460         * lib/strndup.h: Simplify the redefinition of strndup.
10461         (_GL_CONCAT, _GL_XCONCAT, __STRNDUP_ID): Remove macros.
10462         * m4/strndup.m4 (gl_FUNC_STRNDUP): Don't define __STRNDUP_PREFIX.
10463
10464 2006-09-28  Bruno Haible  <bruno@clisp.org>
10465
10466         * lib/gl_avltreehash_list.c: Include <stdint.h> instead of size_max.h.
10467         * lib/gl_linkedhash_list.c: Likewise.
10468         * lib/gl_rbtreehash_list.c: Likewise.
10469
10470 2006-09-27  Paul Eggert  <eggert@cs.ucla.edu>
10471
10472         * lib/canon-host.c (canon_host_r): Work around bug in Darwin 7.9.0
10473         getaddrinfo.
10474
10475         * lib/__fpending.h: Don't include <stdio_ext.h> unless
10476         HAVE_DECL___FPENDING.  This avoids a bug with lsbcc, where
10477         it causes <stdio_ext.h> to cause a compile-time error.
10478         Problem reported by Nelson H. F. Beebe.
10479         * lib/getpass.c: Likewise, except for HAVE_DECL___FSETLOCKING instead
10480         of HAVE_DECL___PENDING.
10481
10482         * m4/fpending.m4 (gl_FUNC_FPENDING): Check for stdio_ext at most once.
10483         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for __fsetlocking's
10484         declaration.
10485
10486 2006-09-27  Jim Meyering  <jim@meyering.net>
10487
10488         This file could end up with a definition for a function
10489         named __strndup, rather than rpl_strndup on a system with
10490         incomplete weak_alias support.
10491         * lib/strndup.c (strndup): Rename from __strndup.
10492         Remove #defines that used to map __strndup to strndup.
10493         Don't use K&R prototypes.
10494         Remove LIBC-related code, since this file is not sync'd with glibc.
10495         * lib/strndup.h: Revamp, accordingly.
10496         * m4/strndup.m4: Modernize.
10497
10498 2006-09-26  Paul Eggert  <eggert@cs.ucla.edu>
10499
10500         * modules/savewd (Depends-on): Add 'raise'.
10501         * lib/savewd.c: Include <signal.h>, for 'raise'.
10502
10503 2006-09-26  Jim Meyering  <jim@meyering.net>
10504
10505         * m4/acl.m4 (AC_FUNC_ACL): Disable ACL support altogether
10506         when we detect Darwin 8.7.0's acl_get_file bug.
10507         Rearrange to perform the new (below) run-test while $LIBS
10508         contains any acl-related library.  Set USE_ACL at the end.
10509         (gl_ACL_GET_FILE): New function.
10510
10511 2006-09-26  Eric Blake  <ebb9@byu.net>
10512
10513         * lib/verror.c: Include <config.h> unconditionally.
10514
10515 2006-09-25  Paul Eggert  <eggert@cs.ucla.edu>
10516
10517         * modules/clock-time (Maintainer): Add self.
10518         * modules/getlogin_r (Depends-on): Add extensions.
10519
10520 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
10521
10522         * modules/clock-time: New module.
10523         * modules/nanosleep (Depends-on): Add clock-time.
10524         * modules/gethrxtime (Depends-on): Likewise.
10525         * modules/gettime (Depends-on): Likewise.
10526         * modules/settime (Depends-on): Likewise.
10527
10528         * modules/fts-lgpl: Depend on openat.
10529         * modules/mkancesdirs: Depend on savewd.
10530         * modules/mkdir-p: Likewise.
10531
10532 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
10533
10534         * m4/host-os.m4 (gl_HOST_OS): Require AC_CANONICAL_HOST.
10535
10536         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Rename cache variable from
10537         `gl_have_arbitrary_file_name_length_limit' to
10538         `gl_cv_have_arbitrary_file_name_length_limit', so that caching
10539         actually works between configure runs.
10540
10541 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
10542             Bruno Haible  <bruno@clisp.org>
10543
10544         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Include <string.h>.
10545
10546 2006-09-25  Jim Meyering  <jim@meyering.net>
10547
10548         * m4/fcntl_h.m4 (gl_FCNTL_H): Fix typo in test for failed open.
10549         This typo caused coreutils/tests/dd/misc to fail on Darwin 8.7.0.
10550
10551 2006-09-25  Eric Blake  <ebb9@byu.net>
10552
10553         * gnulib-tool (func_import, func_create_testdir): Fix typos in
10554         exec's in 2006-09-18 patch when shuffling fds.
10555
10556 2006-09-25  Bruno Haible  <bruno@clisp.org>
10557
10558         * m4/getloadavg.m4 (gl_GETLOADAVG): Fix directory in error message.
10559         Reported by Jim Meyering.
10560
10561 2006-09-24  Jim Meyering  <jim@meyering.net>
10562
10563         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Don't use '>' to
10564         compare a pointer against a literal "0".  That caused failures with
10565         at least HP-UX's hpcc.
10566
10567 2006-09-22  Simon Josefsson  <jas@extundo.com>
10568
10569         * modules/gc-sha1:
10570         * modules/gc-md4:
10571         * modules/gc-hmac-sha1:
10572         * modules/gc-hmac-md5:
10573         * modules/gc-des:
10574         * modules/gc-arcfour: Distribute more files.
10575
10576 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
10577
10578         * lib/gl_anylinked_list2.h [lint] (gl_linked_iterator)
10579         (gl_linked_iterator_from_to): Initialize struct completely.
10580         * lib/gl_anytree_list2.h [lint] (gl_tree_iterator): Likewise.
10581         (gl_tree_iterator_from_to): Likewise
10582         * lib/gl_anytree_oset.h [lint] (gl_tree_iterator): Likewise.
10583         * lib/gl_array_list.c [lint] (gl_array_iterator)
10584         (gl_array_iterator_from_to): Likewise.
10585         * lib/gl_array_oset.c [lint] (gl_array_iterator): Likewise.
10586         * lib/gl_carray_list.c [lint] (gl_carray_iterator)
10587         (gl_carray_iterator_from_to): Likewise.
10588
10589         * lib/gc-gnulib.c [GC_USE_HMAC_SHA1]: include hmac.h for hmac_sha1.
10590         * lib/md4.c (md4_process_block): Remove unused variable.
10591         * lib/rijndael-api-fst.c (rijndaelBlockDecrypt): GCC suggests
10592         parentheses for clarity.
10593
10594 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
10595
10596         * modules/bison-i18n (Depends-on): Add gettext.
10597
10598 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
10599
10600         * m4/fsusage.m4 (gl_STATFS_TRUNCATES): Avoid unused variable.
10601         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): Likewise.
10602         * m4/jm-winsz1.m4 (gl_HEADER_TIOCGWINSZ_IN_TERMIOS_H): Likewise;
10603         also add missing comma that caused broken test.
10604         * m4/link-follow.m4 (gl_AC_FUNC_LINK_FOLLOWS_SYMLINK): Include
10605         stdlib.h, for `abort'.
10606         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Avoid unused
10607         variables.
10608         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Check for and
10609         include unistd.h if present, for `rmdir'.
10610         * m4/physmem.m4 (gl_SYS__SYSTEM_CONFIGURATION): Avoid unused
10611         variables.
10612         * m4/putenv.m4 (gl_FUNC_PUTENV): Rewrite using AC_RUN_IFELSE, and
10613         in the process include standard headers for prototypes.
10614         * m4/readutmp.m4 (gl_READUTMP): Require AC_GNU_SOURCE, so utmpxname
10615         gets declared on GNU/Linux.
10616         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Check for and include
10617         unistd.h, for `rmdir'.
10618         * m4/time_r.m4 (gl_TIME_R): Avoid unused variables.
10619
10620         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Avoid expression that is
10621         always true.
10622         * m4/strndup.m4 (gl_FUNC_STRNDUP): include stdlib.h, for `free'.
10623
10624         * m4/sockpfaf.m4 (gl_SOCKET_FAMILIES): Avoid gcc -Wall warnings.
10625
10626 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
10627
10628         * gnulib-tool (func_version): Create output all at once.  This
10629         may help avoid triggering unnecessary SIGPIPEs, and at any
10630         rate it doesn't hurt.
10631
10632 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
10633             Bruno Haible  <bruno@clisp.org>
10634
10635         * m4/lock.m4 (gl_LOCK_BODY): Avoid unused variables warning.
10636         * m4/mbswidth.m4 (gl_MBSWIDTH): Likewise.
10637         * m4/signed.m4 (bh_C_SIGNED): Likewise.
10638
10639         * m4/vasprintf.m4 (gl_PREREQ_VASPRINTF_H): New macro.
10640         (gl_FUNC_VASPRINTF): Invoke it.
10641
10642 2006-09-22  Bruno Haible  <bruno@clisp.org>
10643
10644         * m4/getloadavg.m4 (gl_GETLOADAVG): Expect the directory of
10645         getloadavg.c as first argument.
10646
10647 2006-09-22  Bruno Haible  <bruno@clisp.org>
10648
10649         * gnulib-tool (func_import, func_create_testdir): Set gl_source_base
10650         at the beginning of the gl_INIT macro.
10651         * modules/getloadavg (configure.ac): Pass $gl_source_base to
10652         gl_GETLOADAVG.
10653
10654 2006-09-22  Bruno Haible  <bruno@clisp.org>
10655
10656         * gnulib-tool (func_create_megatestdir): Don't include the config-h
10657         module.
10658         Suggested by Ralf Wildenhues.
10659
10660 2006-09-20  Paul Eggert  <eggert@cs.ucla.edu>
10661
10662         Import this patch from libc:
10663
10664         2006-09-06  Jakub Jelinek  <jakub@redhat.com>
10665
10666         * lib/regex_internal.c (re_string_reconstruct): Handle
10667         offset < pstr->valid_raw_len && pstr->offsets_needed case.
10668         Ensure no bytes read before raw_mbs array.  Pass a saved copy of
10669         pstr->valid_len - 1 rather than pstr->valid_raw_len - 1 to
10670         re_string_context_at.
10671
10672         * m4/regex.m4 (gl_REGEX): Check for locale.h, since the test
10673         now requires it.
10674         (gl_PREREQ_REGEX): Don't check for locale.h any more, since
10675         gl_REGEX now does it for us.
10676         (gl_REGEX): Add test taken from
10677         http://sourceware.org/ml/libc-hacker/2006-09/msg00008.html.
10678
10679         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Require AC_SYS_LARGEFILE.
10680         Check that large offsets work.  Modernize Autoconf usages.
10681         Prefer "yes" to mean a good thing rather than a bad.
10682         Don't put "#define mkstemp" in config.h, as this might interfere
10683         with standard system headers that "#define mkstemp mkstemp64".
10684
10685         * modules/mkstemp (Depends-on): Add extensions, so that
10686         mkstemp is visible on some platforms.
10687         (Makefile.am): Add mkstemp.h to EXTRA_DIST.
10688         (Include): Change to "mkstemp.h" from <stdlib.h>.
10689         (Files): Add mkstemp.h.
10690
10691         * lib/mkstemp.h: New file, since some standard headers
10692         #define mkstemp.
10693         * lib/mkstemp.c: Revamp to put the !_LIBC code together.
10694         Include "mkstemp.h".
10695         Make the _LIBC code resemble glibc original more,
10696         e.g., use K&R style.
10697         * lib/mkstemp-safer.c: Include "mkstemp.h" instead of <stdlib.h>.
10698         (mkstemp): Remove, since mkstemp.h does this for us.
10699         * lib/stdlib--.h: Include mkstemp.h.
10700
10701         Import this patch from libc:
10702
10703         2006-04-07  Ulrich Drepper  <drepper@redhat.com>
10704
10705         * lib/tempname.c (__gen_tempname): Change attempts_min
10706         into a macro.  Use preprocessor to decide how to initialize
10707         attempts [Coverity CID 67].
10708
10709 2006-09-20  Bruno Haible  <bruno@clisp.org>
10710
10711         * lib/mkdtemp.c: Import from libc.
10712         2006-04-07  Ulrich Drepper  <drepper@redhat.com>
10713                 * sysdeps/posix/tempname.c (__gen_tempname): Change
10714                 attempts_min into a macro.  Use preprocessor to decide how to
10715                 initialize attempts [Coverity CID 67].
10716         2001-11-27  Paul Eggert  <eggert@twinsun.com>
10717                 * sysdeps/posix/tempname.c (__gen_tempname): Try at least
10718                 ATTEMPTS_MIN or TMP_MAX times, whichever is greater.
10719
10720 2006-09-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
10721
10722         * gnulib-tool (func_exit): New function, to allow to pass the
10723         exit status portably through the trap.  Use everywhere.
10724         (--help, --version): Signal a write error.
10725         (trap): catch SIGPIPE, for write errors.
10726         Exit at the end of the trap, with the correct exit status.
10727
10728 2006-09-19  Karl Berry  <karl@gnu.org>
10729
10730         * doc/gnulib.texi: note about the license texinfo files.
10731
10732 2006-09-19  Eric Blake  <ebb9@byu.net>
10733
10734         * gnulib-tool: Avoid space-tab.
10735
10736 2006-09-18  Paul Eggert  <eggert@cs.ucla.edu>
10737
10738         * lib/getaddrinfo.c (getaddrinfo) [defined HAVE_IPV6]: Fix typo
10739         that prevented coreutils 6.1 from building.  Problem reported
10740         by Petter Reinholdtsen.
10741
10742 2006-09-18  Paul Eggert  <eggert@cs.ucla.edu>
10743
10744         * gnulib-tool (avoidlist): Fix typo that broke options like
10745         --avoid=lock that are used by coreutils bootstrap.
10746
10747 2006-09-18  Mark D. Baushke  <mdb@gnu.org>
10748
10749         * m4/inttypes.m4 (gl_INTTYPES_H): Quote "test" args
10750         more systematically.
10751
10752 2006-09-18  Jim Meyering  <jim@meyering.net>
10753
10754         * lib/savewd.c (savewd_restore): Don't shadow: s/status/child_status/.
10755
10756 2006-09-18  Bruno Haible  <bruno@clisp.org>
10757
10758         * modules/inttypes (Files): Remove m4/inttypes-h.m4.
10759
10760 2006-09-18  Bruno Haible  <bruno@clisp.org>
10761
10762         * m4/inttypes-h.m4 (gl_HEADER_INTTYPES_H): Remove macro.
10763         * m4/inttypes-pri.m4: Require autoconf >= 2.52.
10764         (gt_INTTYPES_PRI): Invoke AC_CHECK_HEADERS on inttypes.h. Test
10765         ac_cv_header_inttypes_h instead of gl_cv_header_inttypes_h.
10766         * m4/gettext.m4: Require autoconf >= 2.52.
10767         (gt_INTL_SUBDIR_CORE): Invoke AC_CHECK_HEADERS on inttypes.h.
10768         * m4/inttypes.m4 (gl_INTTYPES_H): Test ac_cv_header_inttypes_h instead
10769         of gl_cv_header_inttypes_h.
10770
10771 2006-09-18  Bruno Haible  <bruno@clisp.org>
10772
10773         * lib/javaversion.c: Include configmake.h.
10774
10775 2006-09-18  Bruno Haible  <bruno@clisp.org>
10776
10777         * gnulib-tool (func_import, func_create_testdir): Use exec tricks to
10778         avoid that the while loops be executed in a subshell.
10779
10780 2006-09-18  Bruno Haible  <bruno@clisp.org>
10781
10782         * MODULES.html.sh (func_module): Break long lines.
10783         Suggested by Bruce Korb <bkorb@gnu.org>.
10784
10785 2006-09-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
10786
10787         Speed up by a factor of 1.12.
10788         * gnulib-tool (nl): New variable.
10789         (func_import): Rewrite include directive extraction to only read each
10790         directive once.
10791
10792 2006-09-17  Bruno Haible  <bruno@clisp.org>
10793
10794         * modules/javaversion (Makefile.am): Remove DEFS setting.
10795         (Depends-on): Add configmake, for PKGDATADIR definition.
10796
10797 2006-09-17  Bruno Haible  <bruno@clisp.org>
10798
10799         * gnulib-tool (func_create_testdir): Rewrite all files at once.
10800
10801 2006-09-17  Bruno Haible  <bruno@clisp.org>
10802
10803         * gnulib-tool (func_append): New function, stolen from libtool.m4.
10804         (func_modules_transitive_closure, func_modules_add_dummy,
10805         func_modules_to_filelist, func_import, func_create_testdir,
10806         func_create_megatestdir, ...): Use it wherever possible.
10807         Suggested by Ralf Wildenhues.
10808
10809 2006-09-16  Karl Berry  <karl@gnu.org>
10810
10811         * doc/fdl.texi (ADDENDUM): switch to @heading from @appendixsubsec,
10812         to avoid sectioning errors.
10813         * doc/lgpl.texi, gpl.texi (Copying): downcase @unnumbered title.
10814         [ifinfo]: blank line after @center-ed titles.
10815         * doc/lgpl.texi (Library Copying): Rename main node to GNU LGPL.
10816         Spell FSF address consistently with others.
10817         (These changes approved by rms.)
10818
10819 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
10820
10821         Speed up by a factor of 1.61.
10822         * gnulib-tool (func_modules_transitive_closure): Rewrite to not check
10823         already checked module names again.
10824
10825 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
10826
10827         Speed up by a factor of 1.13.
10828         * gnulib-tool (func_import): Rewrite all old_files at once; likewise
10829         for new_files, and the input to func_add_or_update.
10830
10831 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
10832
10833         * gnulib-tool (func_all_modules, func_modules_to_filelist, func_import,
10834         func_create_testdir, ...): Change 'sort | uniq' to 'sort -u'.
10835
10836 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
10837
10838         * modules/mkancesdirs (Depends-on): Add fcntl.
10839         * modules/savewd: New file.
10840         * MODULES.html.sh (File system functions): Add savewd.
10841
10842         * modules/configmake (Makefile.am): Add support for the
10843         Automake-supplied PKGLIBDIR, PKGINCLUDEDIR, PKGDATADIR.
10844
10845 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
10846
10847         * m4/savewd.m4: New file.
10848
10849 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
10850
10851         * lib/dirchownmod.c: Don't include fcntl.h; no longer needed.
10852         (dirchownmod): New arg FD.  All callers changed.
10853         Use FD rather than opening the directory ourself, as opening is
10854         now the caller's responsibility.
10855         * lib/dirchownmod.h: Likewise.
10856         * lib/mkancesdirs.c: Include <sys/types.h>, for portability to older
10857         hosts that require <sys/types.h> before <sys/stat.h>.  Include
10858         fcntl.h, savewd.h, and unistd.h, not dirname.h and stat-macros.h.
10859         (test_dir): Remove.
10860         (mkancesdirs): Return length of prefix of FILE that has already
10861         been made, or -2 if there is a child doing the work.  Redo
10862         algorithm so that it is O(N) rather than O(N**2).  Optimize away
10863         ".", and treat ".." specially since it might stray back into
10864         already-created areas.  Use a subprocess if necessary.  New arg
10865         WD; all users changed.  MAKE_DIR function should now return 1
10866         if it creates a directory that is not readable.  Return -2 if
10867         a child process is spun off.
10868         * lib/mkancesdirs.h: Include <stddef.h>, for ptrdiff_t.
10869         Adjust signature to match code.
10870         * lib/mkdir-p.c: Include dirname.h, for IS_ABSOLUTE_FILE_NAME.
10871         (make_dir_parents): Use a subprocess if necessary.  New arg WD;
10872         all users changed.
10873         * lib/savewd.c, lib/savewd.h: New files.
10874
10875 2006-09-15  Jim Meyering  <jim@meyering.net>
10876
10877         * modules/rename-dest-slash: New module.
10878         * MODULES.html.sh (posix_compat): Add it here.
10879
10880         * modules/rename: Reflect vb_FUNC_RENAME -> gl_FUNC_RENAME change.
10881
10882 2006-09-15  Jim Meyering  <jim@meyering.net>
10883
10884         * m4/rename-dest-slash.m4 (gl_FUNC_RENAME_TRAILING_DEST_SLASH): New
10885         file.
10886
10887         * m4/rename.m4 (gl_FUNC_RENAME): Rename from vb_FUNC_RENAME.
10888
10889 2006-09-15  Jim Meyering  <jim@meyering.net>
10890
10891         * lib/rename-dest-slash.c (has_trailing_slash): Use
10892         FILE_SYSTEM_PREFIX_LEN, for non-POSIX systems.
10893         (rpl_rename_dest_slash): Perform the cheaper trailing slash
10894         test before testing whether SRC is a directory.
10895         Suggestions from Bruno Haible.
10896
10897         Avoid a warning about an unused variable.
10898         * lib/regex_internal.c (re_dfa_add_node): Move declaration of "type"
10899         into the #ifdef block where it's used.
10900
10901         * lib/rename-dest-slash.c: New file.
10902
10903 2006-09-14  Bruno Haible  <bruno@clisp.org>
10904
10905         * lib/allocsa.c: Include <config.h> unconditionally.
10906         * lib/asnprintf.c: Likewise.
10907         * lib/asprintf.c: Likewise.
10908         * lib/c-strcasecmp.c: Likewise.
10909         * lib/c-strcasestr.c: Likewise.
10910         * lib/c-strncasecmp.c: Likewise.
10911         * lib/c-strstr.c: Likewise.
10912         * lib/classpath.c: Likewise.
10913         * lib/clean-temp.c: Likewise.
10914         * lib/concatpath.c: Likewise.
10915         * lib/copy-file.c: Likewise.
10916         * lib/csharpcomp.c: Likewise.
10917         * lib/csharpexec.c: Likewise.
10918         * lib/execute.c: Likewise.
10919         * lib/fatal-signal.c: Likewise.
10920         * lib/findprog.c: Likewise.
10921         * lib/fwriteerror.c: Likewise.
10922         * lib/gl_array_list.c: Likewise.
10923         * lib/gl_array_oset.c: Likewise.
10924         * lib/gl_avltree_list.c: Likewise.
10925         * lib/gl_avltree_oset.c: Likewise.
10926         * lib/gl_avltreehash_list.c: Likewise.
10927         * lib/gl_carray_list.c: Likewise.
10928         * lib/gl_linked_list.c: Likewise.
10929         * lib/gl_linkedhash_list.c: Likewise.
10930         * lib/gl_list.c: Likewise.
10931         * lib/gl_oset.c: Likewise.
10932         * lib/gl_rbtree_list.c: Likewise.
10933         * lib/gl_rbtree_oset.c: Likewise.
10934         * lib/gl_rbtreehash_list.c: Likewise.
10935         * lib/imaxabs.c: Likewise.
10936         * lib/imaxdiv.c: Likewise.
10937         * lib/javacomp.c: Likewise.
10938         * lib/javaexec.c: Likewise.
10939         * lib/javaversion.c: Likewise.
10940         * lib/linebreak.c: Likewise.
10941         * lib/localcharset.c: Likewise.
10942         * lib/lock.c: Likewise.
10943         * lib/mbchar.c: Likewise.
10944         * lib/mbswidth.c: Likewise.
10945         * lib/mkdtemp.c: Likewise.
10946         * lib/pipe.c: Likewise.
10947         * lib/printf-args.c: Likewise.
10948         * lib/printf-parse.c: Likewise.
10949         * lib/progname.c: Likewise.
10950         * lib/progreloc.c: Likewise.
10951         * lib/readlink.c: Likewise.
10952         * lib/sh-quote.c: Likewise.
10953         * lib/stpcpy.c: Likewise.
10954         * lib/stpncpy.c: Likewise.
10955         * lib/strcasecmp.c: Likewise.
10956         * lib/strcasestr.c: Likewise.
10957         * lib/strcspn.c: Likewise.
10958         * lib/striconv.c: Likewise.
10959         * lib/strncasecmp.c: Likewise.
10960         * lib/strnlen1.c: Likewise.
10961         * lib/strstr.c: Likewise.
10962         * lib/strtok_r.c: Likewise.
10963         * lib/tls.c: Likewise.
10964         * lib/tmpdir.c: Likewise.
10965         * lib/unicodeio.c: Likewise.
10966         * lib/unsetenv.c: Likewise.
10967         * lib/vasnprintf.c: Likewise.
10968         * lib/vasprintf.c: Likewise.
10969         * lib/wait-process.c: Likewise.
10970         * lib/xallocsa.c: Likewise.
10971         * lib/xsetenv.c: Likewise.
10972         * lib/xstriconv.c: Likewise.
10973
10974 2006-09-13  Simon Josefsson  <jas@extundo.com>
10975
10976         * m4/getdate.m4: Don't AC_LIBOBJ([getdate]), automake takes care of
10977         that internally, suggested by Ralf Wildenhues
10978         <Ralf.Wildenhues@gmx.de>.
10979
10980 2006-09-13  Simon Josefsson  <jas@extundo.com>
10981
10982         * gnulib-tool (func_emit_lib_Makefile_am): Use $(LIBOBJS), not
10983         @LIBOBJS@.
10984         Suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
10985
10986 2006-09-13  Paul Eggert  <eggert@cs.ucla.edu>
10987
10988         * lib/_fpending.c: Include <config.h> unconditionally, since we no
10989         longer worry about uses that don't define HAVE_CONFIG_H.
10990         * lib/acl.c, lib/alloca.c, lib/argmatch.c, lib/atexit.c:
10991         * lib/backupfile.c, lib/basename.c, lib/c-stack.c, lib/c-strtod.c:
10992         * lib/calloc.c,lib/ canon-host.c, lib/canonicalize.c, lib/chdir-long.c:
10993         * lib/chdir-safer.c, lib/chown.c, lib/cloexec.c, lib/close-stream.c:
10994         * lib/closeout.c, lib/creat-safer.c, lib/cycle-check.c, lib/diacrit.c:
10995         * lib/dirchownmod.c, lib/dirfd.c, lib/dirname.c, lib/dup-safer.c:
10996         * lib/dup2.c, lib/error.c, lib/euidaccess.c, lib/exclude.c:
10997         * lib/exitfail.c, lib/fchmodat.c, lib/fchown-stub.c, lib/fd-safer.c:
10998         * lib/file-type.c, lib/fileblocks.c, lib/filemode.c, lib/filenamecat.c:
10999         * lib/fnmatch.c, lib/fopen-safer.c, lib/fprintftime.c, lib/free.c:
11000         * lib/fsusage.c, lib/ftruncate.c, lib/fts-cycle.c, lib/fts.c:
11001         * lib/full-write.c, lib/gai_strerror.c, lib/getcwd.c, lib/getdate.y:
11002         * lib/getdomainname.c, lib/getgroups.c, lib/gethostname.c:
11003         * lib/gethrxtime.c, lib/getloadavg.c, lib/getlogin_r.c:
11004         * lib/getndelim2.c, lib/getnline.c, lib/getopt.c, lib/getopt1.c:
11005         * lib/getpass.c, lib/gettime.c, lib/gettimeofday.c, lib/getugroups.c:
11006         * lib/getusershell.c, lib/glob.c, lib/group-member.c:
11007         * lib/hard-locale.c, lib/hash-pjw.c, lib/hash.c, lib/human.c:
11008         * lib/idcache.c, lib/inet_ntop.c, lib/inet_pton.c, lib/inttostr.c:
11009         * lib/isdir.c, lib/lchown.c, lib/linebuffer.c, lib/long-options.c:
11010         * lib/lstat.c, lib/malloc.c, lib/md5.c, lib/memcasecmp.c, lib/memchr.c:
11011         * lib/memcmp.c, lib/memcoll.c, lib/memcpy.c, lib/memmove.c:
11012         * lib/memrchr.c, lib/mkancesdirs.c, lib/mkdir-p.c, lib/mkdir.c:
11013         * lib/mkdirat.c, lib/mkstemp-safer.c, lib/mkstemp.c, lib/modechange.c:
11014         * lib/mountlist.c, lib/nanosleep.c, lib/obstack.c, lib/open-safer.c:
11015         * lib/openat-die.c, lib/openat.c, lib/pagealign_alloc.c, lib/physmem.c:
11016         * lib/pipe-safer.c, lib/posixtm.c, lib/posixver.c, lib/putenv.c:
11017         * lib/quote.c, lib/quotearg.c, lib/raise.c, lib/readtokens.c:
11018         * lib/readtokens0.c, lib/readutmp.c, lib/realloc.c, lib/regex.c:
11019         * lib/rename.c, lib/rmdir.c, lib/rpmatch.c, lib/safe-read.c:
11020         * lib/same.c, lib/save-cwd.c, lib/savedir.c, lib/setenv.c:
11021         * lib/settime.c, lib/sha1.c, lib/sig2str.c, lib/snprintf.c:
11022         * lib/strdup.c, lib/strerror.c, lib/strftime.c, lib/stripslash.c:
11023         * lib/strndup.c, lib/strnlen.c, lib/strpbrk.c, lib/strtod.c:
11024         * lib/strtoimax.c, lib/strtol.c, lib/strverscmp.c, lib/tempname.c:
11025         * lib/time_r.c, lib/timegm.c, lib/tmpfile-safer.c, lib/unlinkdir.c:
11026         * lib/userspec.c, lib/utime.c, lib/utimecmp.c, lib/utimens.c:
11027         * lib/version-etc-fsf.c, lib/version-etc.c, lib/xalloc-die.c:
11028         * lib/xgetcwd.c, lib/xgethostname.c, lib/xmalloc.c, lib/xmemcoll.c:
11029         * lib/xnanosleep.c, lib/xreadlink.c, lib/xstrtod.c, lib/xstrtoimax.c:
11030         * lib/xstrtol.c, lib/xstrtoumax.c, lib/yesno.c:
11031         Likewise.
11032
11033 2006-09-13  Eric Blake  <ebb9@byu.net>
11034
11035         * lib/getopt.c: Fix typo in last commit.
11036
11037 2006-09-12  Sergey Poznyakoff  <gray@gnu.org.ua>
11038
11039         * lib/argp-help.c (argp_doc): Make sure NULL is not passed to
11040         dgettext.
11041
11042 2006-09-12  Jim Meyering  <jim@meyering.net>
11043
11044         * lib/nanosleep.c: Include <sys/types.h> before sys/select.h, to avoid
11045         compilation failure (due to use of pid_t in latter) on NetBSD 1.6.
11046         Reported by Nelson H. F. Beebe.
11047
11048 2006-09-10  Sergey Poznyakoff  <gray@gnu.org.ua>
11049
11050         * lib/argp-parse.c (__argp_parse) [!_LIBC]: Make sure
11051         program_invocation_name and program_invocation_short_name are
11052         initialized.
11053         * lib/argp-namefrob.h: Move declarations of program_invocation_name
11054         and program_invocation_short_name to argp.h, so they are visible
11055         to user programs.
11056         * lib/argp.h: Likewise
11057
11058 2006-09-10  Bruno Haible  <bruno@clisp.org>
11059
11060         * modules/mkdtemp (Files): Remove m4/ulonglong.m4, m4/stdint_h.m4,
11061         m4/inttypes_h.m4, m4/uintmax_t.m4.
11062
11063 2006-09-10  Bruno Haible  <bruno@clisp.org>
11064
11065         * m4/mkdtemp.m4 (gl_PREREQ_MKDTEMP): Don't require
11066         gl_AC_TYPE_UINTMAX_T.
11067
11068 2006-09-10  Bruno Haible  <bruno@clisp.org>
11069
11070         * lib/mkdtemp.c: Include <stdint.h> always. Don't include <inttypes.h>.
11071
11072 2006-09-09  Sergey Poznyakoff  <gray@gnu.org.ua>
11073
11074         * lib/argp.h (struct argp): Document the N_("..") "\v" N_("..")
11075         convention.  Text proposed by Bruno Haible.
11076         (struct argp_option): Document the use of N_() wrappers.
11077
11078         * lib/argp-help.c (argp_doc): Split the untranslated doc string on
11079         '\v', and translate the two parts separately, instead of feeding
11080         the whole string to gettext.  This allows to exclude
11081         '\v' from the strings visible to the translator by writing doc
11082         strings as N_("..") "\v" N_("..").
11083
11084 2006-09-09  Paul Eggert  <eggert@cs.ucla.edu>
11085
11086         * config/srclist.txt: Undo latest change; the bug was fixed.
11087
11088 2006-09-09  Bruno Haible  <bruno@clisp.org>
11089
11090         * gnulib-tool (func_emit_lib_Makefile_am): Eliminate lib_LDFLAGS
11091         assignments if building a library without libtool.
11092         (func_emit_tests_Makefile_am): Likewise. Handle lib_* variables as
11093         in func_emit_lib_Makefile_am.
11094         (func_import): When building a static library libfoo.a, arrange to
11095         define variables LIBFOO_LIBDEPS and LIBFOO_LTLIBDEPS.
11096         (func_create_testdir): Likewise.
11097         * modules/gc (configure.ac, Makefile.am): If building statically,
11098         augment gl_libdeps and gl_ltlibdeps instead of lib_LDFLAGS.
11099         * modules/iconvme (configure.ac, Makefile.am): Likewise.
11100         * modules/striconv (configure.ac, Makefile.am): Likewise.
11101         Based on a suggestion by Ralf Wildenhues.
11102
11103 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
11104
11105         * m4/mktime.m4 (AC_FUNC_MKTIME): Sync from Autoconf.
11106         Check for unistd.h too, since Autoconf doesn't assume POSIX.
11107         Also:
11108
11109         2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
11110         Add year_2050_test to catch glibc bug 2821
11111         <http://sourceware.org/bugzilla/show_bug.cgi?id=2821>.
11112
11113         2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
11114         Prefer #ifdef to #if.
11115
11116         2006-04-02  Paul Eggert  <eggert@cs.ucla.edu>
11117         Return from 'main' instead of calling 'exit'.
11118
11119 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
11120
11121         * lib/mktime.c (guess_time_tm): Fix bug where mktime
11122         returned the maximum time_t value rather than (time_t) -1.
11123         Problem originally reported by William Bardwell
11124         <http://sourceware.org/bugzilla/show_bug.cgi?id=2821>.
11125
11126         * lib/isapipe.h (HAVE_FIFO_PIPES) [!defined HAVE_FIFO_PIPES]:
11127         Moved to here ...
11128         * lib/isapipe.c (HAVE_FIFO_PIPES) [!defined HAVE_FIFO_PIPES]:
11129         ... from here.
11130
11131 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
11132
11133         * config/srclist.txt: Temporarily comment out mktime.c until glibc bug
11134         2821 is fixed.
11135
11136 2006-09-08  Jim Meyering  <jim@meyering.net>
11137
11138         Don't make generated files read-only.  That would bother too many
11139         people.  However, do retain the ability to work when targets are
11140         read-only: remove the destination and temporary files before writing
11141         them (when generated via sed or echo), or by using the -f option for
11142         both cp and mv commands.  Suggestion to use -f from Paul Eggert.
11143         * modules/alloca-opt, modules/argz, modules/arpa_inet:
11144         * modules/byteswap, modules/configmake, modules/fcntl:
11145         * modules/fnmatch, modules/getopt, modules/glob, modules/inttypes:
11146         * modules/localcharset, modules/netinet_in, modules/poll:
11147         * modules/stdbool, modules/stdint, modules/sys_select:
11148         * modules/sys_socket, modules/sys_stat, modules/sysexits:
11149
11150 2006-09-08  Jim Meyering  <jim@meyering.net>
11151
11152         Avoid new build failure on FreeBSD 6.0.
11153         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Include
11154         <sys/param.h> when testing whether getmntinfo uses statvfs.  Patch by
11155         Pavel Tsekov, in <http://savannah.gnu.org/bugs/?17643>.
11156
11157 2006-09-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
11158
11159         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Don't use plain echo.
11160
11161 2006-09-07  Jim Meyering  <jim@meyering.net>
11162
11163         Fix global typo in last change: use chmod u-w, not chmod u-x.
11164         Spotted by Paul Eggert and Bruce Korb.
11165         * modules/alloca-opt, modules/argz, modules/arpa_inet:
11166         * modules/byteswap, modules/configmake, modules/fcntl:
11167         * modules/fnmatch, modules/getopt, modules/glob, modules/inttypes:
11168         * modules/localcharset, modules/netinet_in, modules/poll:
11169         * modules/stdbool, modules/stdint, modules/sys_select:
11170         * modules/sys_socket, modules/sys_stat, modules/sysexits:
11171
11172 2006-09-06  Jim Meyering  <jim@meyering.net>
11173
11174         Make generated files be read-only.
11175         * modules/alloca-opt (Makefile.am): Work also when $@ is read-only.
11176         Ensure that each generated file is now read-only.
11177         * modules/argz: Likewise.
11178         * modules/arpa_inet: Likewise.
11179         * modules/byteswap: Likewise.
11180         * modules/configmake: Likewise.
11181         * modules/fcntl: Likewise.
11182         * modules/fnmatch: Likewise.
11183         * modules/getopt: Likewise.
11184         * modules/glob: Likewise.
11185         * modules/inttypes: Likewise.
11186         * modules/netinet_in: Likewise.
11187         * modules/poll: Likewise.
11188         * modules/stdbool: Likewise.
11189         * modules/stdint: Likewise.
11190         * modules/sys_select: Likewise.
11191         * modules/sys_socket: Likewise.
11192         * modules/sys_stat: Likewise.
11193         * modules/sysexits: Likewise.
11194         * modules/localcharset: Same as above, but continue using temporary
11195         file named "t-$@" (why different?) rather than the "$@-t" used
11196         everywhere else.
11197
11198         * modules/sysexits (Makefile.am): Replace literal occurrences
11199         of "sysexit.h" more readable, and more consistent, "$@".
11200
11201 2006-09-06  Bruno Haible  <bruno@clisp.org>
11202
11203         * modules/striconv: New file.
11204         * modules/xstriconv: New file.
11205         * MODULES.html.sh (Internationalization functions): Add striconv,
11206         xstriconv.
11207
11208 2006-09-06  Bruno Haible  <bruno@clisp.org>
11209
11210         * modules/gc (Makefile.am): Augment lib_LDFLAGS, not lib_LIBADD.
11211         * modules/iconvme (Makefile.am): Likewise. Also handle the case of
11212         not using libtool correctly.
11213
11214 2006-09-06  Bruno Haible  <bruno@clisp.org>
11215
11216         * lib/striconv.h: New file.
11217         * lib/striconv.c: New file, merging iconvme.c with GNU gettext's
11218         iconvstring.c.
11219         * lib/xstriconv.h: New file.
11220         * lib/xstriconv.c: New file.
11221
11222 2006-09-06  Bruno Haible  <bruno@clisp.org>
11223
11224         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
11225         lib_..._LDFLAGS.
11226
11227 2006-09-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
11228
11229         * lib/argz_.h: Sync from Libtool.
11230
11231         2006-09-04  George Bosilca <bosilca@cs.utk.edu>
11232                 and Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
11233
11234         * lib/libltdl/argz_.h: It's __cplusplus, not _cplusplus.
11235
11236 2006-09-05  Davide Angelocola  <davide.angelocola@tiscali.it>
11237
11238         * modules/trim: New file.
11239
11240 2006-09-05  Davide Angelocola  <davide.angelocola@tiscali.it>
11241
11242         * lib/trim.h: New file.
11243         * lib/trim.c: New file.
11244
11245 2006-09-05  Bruno Haible  <bruno@clisp.org>
11246
11247         * MODULES.html.sh (String handling): Add trim.
11248
11249 2006-09-04  Karl Berry  <karl@gnu.org>
11250
11251         * config/srclist.txt (signed.m4, gettext.m4): changes not propagated
11252         until next release.
11253
11254 2006-09-03  Bruno Haible  <bruno@clisp.org>
11255
11256         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Locate mingw shared libraries
11257         correctly.
11258
11259 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
11260
11261         * m4/getloadavg.m4 (gl_GETLOADAVG): Use CONFIGURING_GETLOADAVG,
11262         not gl_GETLOADAVG.  Omit unneeded semicolons.
11263         Problems reported by Ralf Wildenhues in
11264         <http://lists.gnu.org/archive/html/bug-gnulib/2006-09/msg00000.html>.
11265         (gl_PREREQ_GETLOADAVG): Use AC_DEFUN, not m4_define.  Put
11266         at the end, which is the usual gnulib style.
11267
11268         * m4/fstypename.m4 (gl_FSTYPENAME): Use AC_CHECK_MEMBERS instead
11269         of doing all the work ourselves.
11270         * m4/fsusage.m4 (gl_PREREQ_FSUSAGE_EXTRA): Don't check for
11271         sys/statvfs.h since the code doesn't use HAVE_SYS_STATVFS_H.
11272
11273 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
11274
11275         * lib/getloadavg.c: Use CONFIGURING_GETLOADAVG, not gl_GETLOADAVG.
11276         Problem reported by Ralf Wildenhues in
11277         <http://lists.gnu.org/archive/html/bug-gnulib/2006-09/msg00000.html>.
11278
11279         * lib/mountlist.c: All uses of HAVE_F_FSTYPENAME_IN_STATFS replaced by
11280         HAVE_STRUCT_STATFS_F_FSTYPENAME.
11281
11282 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
11283
11284         * gnulib-tool (func_emit_lib_Makefile_am): Fix typos in
11285         yesterday's patch by changing test -n to test -z.
11286
11287 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
11288
11289         * modules/getloadavg (Files): Add m4/getloadavg.m4.
11290         (configure.ac): AC_FUNC_GETLOADAVG -> gl_GETLOADAVG, as
11291         the former is now obsolescent.
11292
11293         * modules/chdir-long (Depends-on): Add fcntl.
11294
11295 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
11296
11297         * m4/fnmatch.m4: Add comment that Autoconf AC_FUNC_FNMATCH is
11298         obsolescent, and programs should use gnulib instead.
11299         * m4/getloadavg.m4: New file, with contents taken from Autoconf
11300         but with prefixes changed.
11301
11302 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
11303
11304         * lib/getloadavg.c [defined gl_GETLOADAVG]: Don't include config.h
11305         or stdbool.h, because they might not exist while configuring.
11306
11307         * lib/chdir-long.c: Include <fcntl.h>, for O_DIRECTORY.
11308         Don't include unistd.h or limits.h; not needed, since chdir-long.h
11309         does that for us.
11310         (O_DIRECTORY): Remove.
11311
11312 2006-08-31  Eric Blake  <ebb9@byu.net>
11313
11314         * gnulib-tool: Don't let emacs change spaces to TAB.
11315
11316 2006-08-31  Bruno Haible  <bruno@clisp.org>
11317
11318         * gnulib-tool: When calling func_import more than once, do it in a
11319         subshell.
11320         Reported by Eric Blake <ebb9@byu.net>.
11321
11322 2006-08-31  Bruno Haible  <bruno@clisp.org>
11323
11324         * gnulib-tool (nl): Remove variable.
11325         (sed_transform_lib_file): Use more robust test for config-h module.
11326         (func_import): Fix typo in 2006-08-25 patch.
11327
11328 2006-08-31  Bruno Haible  <bruno@clisp.org>
11329
11330         * gnulib-tool (func_emit_lib_Makefile_am): When --makefile-name was
11331         specified, augment Makefile.am variables instead of assigning them.
11332
11333 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
11334
11335         Work around a bug in both the Linux and SunOS 64-bit kernels:
11336         nanosleep mishandles sleeps for longer than 2**31 seconds.
11337         Problem reported by Frank v Waveren in
11338         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00298.html>.
11339         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Require gl_CLOCK_TIME.
11340         Check for nanosleep bug.
11341         (LIB_NANOSLEEP): Append clock_gettime library if needed.
11342
11343 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
11344
11345         Work around a bug in both the Linux and SunOS 64-bit kernels:
11346         nanosleep mishandles sleeps for longer than 2**31 seconds.
11347         Problem reported by Frank v Waveren in
11348         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00298.html>.
11349         * lib/nanosleep.c (BILLION): New constant.
11350         (getnow) [HAVE_BUG_BIG_NANOSLEEP]: New functions.
11351         (rpl_nanosleep) [HAVE_BUG_BIG_NANOSLEEP]: Completely new
11352         implementation.
11353
11354 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
11355
11356         * modules/nanosleep (Depends-on): Add gettime.
11357
11358 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
11359         and Simon Josefsson  <jas@extundo.com>
11360         and Oskar Liljeblad  <oskar@osk.mine.nu>
11361
11362         * MODULES.html.sh (Support for building documentation): Add gpl, lgpl.
11363         * gnulib-tool (func_import): New license type 'unmodifiable license
11364         text'.
11365         * modules/fdl: Use it.  Longer description.
11366         * module/gpl, module/lgpl: New files.
11367
11368 2006-08-30  Jim Meyering  <jim@meyering.net>
11369
11370         * lib/isapipe.c (isapipe): Rename local s/fd/fd_pair/ to avoid
11371         shadowing the parameter.
11372
11373 2006-08-29  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
11374
11375         Sync from Libtool:
11376
11377         2006-08-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
11378
11379         * lib/libltdl/argz.c: Use `#ifdef HAVE_CONFIG_H', to facilitate code
11380         sharing with gnulib.  Report by Eric Blake.
11381
11382 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
11383
11384         * modules/isapipe: New file.
11385         * MODULES.html.sh (File descriptor based Input/Output): Add isapipe.
11386
11387 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
11388
11389         * modules/configmake (Makefile.am): Add a comment, and omit
11390         the CONFIGMAKE_ prefix from generated macro names.  Suggested
11391         by Bruno Haible.
11392
11393 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
11394
11395         * m4/isapipe.m4: New file.
11396
11397 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
11398
11399         * lib/isapipe.c, lib/isapipe.h: New files.
11400
11401 2006-08-29  Jim Meyering  <jim@meyering.net>
11402
11403         * modules/configmake (Makefile.am): Make configmake.h depend on
11404         Makefile.  Otherwise, a stale configmake.h could hang around.
11405
11406 2006-08-29  Eric Blake  <ebb9@byu.net>
11407
11408         * lib/error.c (error_at_line, print_errno_message): Match libc, after
11409         resolution of upstream bug 3044.
11410
11411 2006-08-29  Bruno Haible  <bruno@clisp.org>
11412
11413         * modules/localcharset (Depends-on): Add configmake.
11414         (Makefile.am): Remove setting of LIBDIR through DEFS.
11415
11416 2006-08-29  Bruno Haible  <bruno@clisp.org>
11417
11418         * lib/localcharset.c: Include configmake.h in order to get LIBDIR
11419         defined.
11420
11421 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
11422
11423         * modules/fcntl: New file.
11424         * modules/chdir-safer (Depends-on): Add fcntl.
11425         * modules/fts: Likewise.
11426         * modules/mkdir-p: Likewise.
11427
11428         * modules/stdint (Makefile.am): Do not substitute ABSOLUTE_INTTYPES_H.
11429         This undoes the most recent change, since we're now addressing the
11430         problem in a different way.
11431
11432         * gnulib-tool (emit_lib_Makefile_am): Don't put $makefile_name
11433         into output, since the output might be called Makefile.am even
11434         if $makefile_name is something different.
11435         (func_import): Use $makefile_am rather than
11436         ${makefile_name-Makefile.am}, to fix a bug where makefile_name was
11437         empty.
11438
11439         * modules/inttypes (Files): Add m4/inttypes-h.m4.
11440
11441 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
11442
11443         * m4/inttypes.m4 (gl_INTTYPES_H): Move ABSOLUTE_INTTYPES_H code here...
11444         * m4/stdint.m4 (gl_STDINT_H): ... from here.  This undoes the most
11445         recent change to stdint.m4, since we're now addressing the problem in a
11446         different way.
11447
11448 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
11449
11450         * m4/fcntl_h.m4: New file.
11451
11452 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
11453
11454         * lib/fcntl_.h: New file.
11455         * lib/chdir-safer.c (O_DIRECTORY, O_NOFOLLOW): Remove, now that we have
11456         the fcntl module.
11457         * lib/dirchownmod.c: Likewise.
11458         * lib/fts.c: Likewise.
11459
11460         * lib/inttypes_.h [defined _GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H]:
11461         Include @ABSOLUTE_INTTYPES_H@ if available, but do nothing else.
11462         * lib/stdint_.h (_GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H): Define
11463         just before including <inttypes.h>, to avoid circular inclusion.
11464
11465 2006-08-28  Jim Meyering  <jim@meyering.net>
11466
11467         * doc/visibility.texi: Actually read and correct the grammar of the
11468         sentence affected by yesterday's change.
11469
11470 2006-08-28  Eric Blake  <ebb9@byu.net>
11471
11472         * modules/inttypes (Makefile.am): Fix sed error when inttypes.h
11473         needs wrapper.
11474
11475 2006-08-28  Eric Blake  <ebb9@byu.net>
11476
11477         * m4/inttypes.m4 (gl_INTTYPES_H): Fix missing #endif.
11478
11479 2006-08-28  Eric Blake  <ebb9@byu.net>
11480
11481         * m4/codeset.m4 (AM_LANGINFO_CODESET): Avoid compiler warning.
11482
11483 2006-08-28  Bruno Haible  <bruno@clisp.org>
11484
11485         * modules/c-strstr: New file, from GNU gettext.
11486         * MODULES.html.sh (String handling): Add c-strstr.
11487
11488 2006-08-28  Bruno Haible  <bruno@clisp.org>
11489
11490         * m4/inttypes.m4 (gl_INTTYPES_H): Don't test for the existence of SCNX*
11491         macros.
11492         Reported by Eric Blake.
11493
11494 2006-08-28  Bruno Haible  <bruno@clisp.org>
11495
11496         * lib/vasnprintf.c (EOVERFLOW): Remove definition.
11497         (VASNPRINTF): Return a string of length > INT_MAX without failing.
11498         * lib/vasprintf.c: Include errno.h, limits.h.
11499         (EOVERFLOW): New fallback definition.
11500         (vasprintf): Test here whether the string length is > INT_MAX.
11501         * lib/vsnprintf.c: Include errno.h, limits.h.
11502         (EOVERFLOW): New fallback definition.
11503         (vsnprintf): Fix bug when generated string was too long for the buffer.
11504         Test here whether the string length is > INT_MAX.
11505
11506 2006-08-28  Bruno Haible  <bruno@clisp.org>
11507
11508         * lib/inttypes_.h (SCNX*): Remove definitions.
11509         Reported by Eric Blake.
11510
11511 2006-08-28  Bruno Haible  <bruno@clisp.org>
11512
11513         * lib/c-strstr.h: New file, from GNU gettext.
11514         * lib/c-strstr.c: New file, from GNU gettext.
11515
11516 2006-08-28  Bruno Haible  <bruno@clisp.org>
11517
11518         * gnulib-tool: Reorder some statements.
11519
11520 2006-08-28  Bruno Haible  <bruno@clisp.org>
11521
11522         * gnulib-tool: New option --makefile-name.
11523         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am): Use
11524         $makefile_name.
11525         (func_import): Write $makefile_name to the cache file, and read it from
11526         there unless explicitly specified. Use $makefile_name as file name
11527         instead of Makefile.am. Adjust the recommendations accordingly.
11528
11529 2006-08-28  Bruno Haible  <bruno@clisp.org>
11530
11531         * gnulib-tool (func_verify_module): Check against misapplying patch.
11532
11533 2006-08-28  Bruno Haible  <bruno@clisp.org>
11534
11535         * gnulib-tool (func_relativize, func_relconcat): New functions.
11536         Give an error if --local-dir is given with --update.
11537         Remove trailing slashes from $local_gnulib_dir.
11538         (func_import): Store the relativized $local_gnulib_dir in
11539         gnulib-cache.m4, and read it from there if not specified explicitly.
11540
11541 2006-08-28  Bruno Haible  <bruno@clisp.org>
11542
11543         * gnulib-tool (func_get_tests_module): Don't assume that $gnulib_dir
11544         is the current directory. Respect also $local_gnulib_dir.
11545
11546 2006-08-28  Bruno Haible  <bruno@clisp.org>
11547             Simon Josefsson  <jas@extundo.com>
11548
11549         BeOS portability.
11550         * lib/getaddrinfo.c (PF_INET, PF_UNSPEC): New macros.
11551
11552 2006-08-27  Jim Meyering  <jim@meyering.net>
11553
11554         * doc/visibility.texi: Remove duplicate word: "pointer".
11555
11556 2006-08-26  Bruno Haible  <bruno@clisp.org>
11557
11558         * modules/inttypes (Files): Add lib/inttypes_.h, remove lib/inttypes.h.
11559         Add m4/inttypes.m4, remove m4/_inttypes_h.m4 and m4/include_next.m4.
11560         (Makefile.am): Create inttypes.h from inttypes_.h.
11561         * modules/stdint (Makefile.am): Substitute also ABSOLUTE_INTTYPES_H.
11562
11563         * modules/imaxabs: New file.
11564
11565         * modules/imaxdiv: New file.
11566
11567 2006-08-26  Bruno Haible  <bruno@clisp.org>
11568
11569         * m4/inttypes.m4: New file.
11570         * m4/_inttypes_h.m4: Remove file.
11571         * m4/inttypes-pri.m4 (gt_INTTYPES_PRI): Also AC_SUBST
11572         PRI_MACROS_BROKEN.
11573         * m4/stdint.m4 (gl_STDINT_H): Define also ABSOLUTE_INTTYPES_H.
11574
11575         * m4/imaxabs.m4: New file.
11576
11577         * m4/imaxdiv.m4: New file.
11578
11579 2006-08-26  Bruno Haible  <bruno@clisp.org>
11580
11581         * lib/inttypes_.h: New file.
11582         * lib/inttypes.h: Remove file.
11583         * lib/stdint_.h: Include <inttypes.h> through its absolute filename.
11584
11585         * lib/imaxabs.c: New file.
11586
11587         * lib/imaxdiv.c: New file.
11588
11589 2006-08-25  Paul Eggert  <eggert@cs.ucla.edu>
11590
11591         New config-h module, so that "make" output needn't be cluttered
11592         by -DHAVE_CONFIG_H.
11593         * MODULES.html.sh (Support for building libraries and executables):
11594         Add config-h.
11595         * modules/config-h: New file.
11596         * gnulib-tool (nl, sed_transform_lib_file): New vars.
11597         (func_import): Turn "#ifdef HAVE_CONFIG_H" to "#if 1" if
11598         the config-h module is used.
11599
11600         New configmake module, so that "make" output needn't be cluttered
11601         by fluff like '-DLIBDIR=\"/usr/local/lib\"'.
11602         * MODULES.html.sh (Support for building libraries and executables):
11603         Add configmake.
11604         * modules/configmake: New file.
11605
11606 2006-08-25  Paul Eggert  <eggert@cs.ucla.edu>
11607
11608         * m4/config-h.m4: New file.
11609
11610 2006-08-24  Paul Eggert  <eggert@cs.ucla.edu>
11611
11612         * config/srclist.txt: Add elisp-comp.
11613
11614 2006-08-24  Paul Eggert  <eggert@cs.ucla.edu>
11615
11616         * MODULES.html.sh (Support for building libraries and executables):
11617         Add elisp-comp.
11618         * build-aux/elisp-comp: New file.
11619         * modules/elisp-comp: New file.
11620
11621 2006-08-24  Bruno Haible  <bruno@clisp.org>
11622
11623         * gnulib-tool (func_create_testdir): Use non-default values of
11624         sourcebase and m4base.
11625
11626 2006-08-24  Bruno Haible  <bruno@clisp.org>
11627
11628         * MODULES.html.sh (Compatibility checks for POSIX:2001 functions: Fix
11629         HTML structure.
11630
11631 2006-08-23  Paul Eggert  <eggert@cs.ucla.edu>
11632
11633         * modules/openat (Depends-on): Add lchown.
11634
11635 2006-08-23  Bruno Haible  <bruno@clisp.org>
11636
11637         * gnulib-tool (func_import, func_create_testdir): Emit an invocation
11638         of gl_LOCK_EARLY instead of gl_LOCK.
11639
11640 2006-08-23  Bruno Haible  <bruno@clisp.org>
11641
11642         * m4/lock.m4 (gl_LOCK_BODY): Change the default value of gl_use_threads
11643         on OSF/1 to no.
11644         Reported by Stephen Cartwright <sgcartwr@ucalgary.ca>.
11645
11646 2006-08-23  Bruno Haible  <bruno@clisp.org>
11647
11648         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Don't consider BeOS statvfs
11649         as unusable.
11650
11651         * m4/lock.m4 (gl_LOCK_EARLY): Renamed from gl_LOCK.
11652         (gl_LOCK_BODY): Remove gl_PREREQ_LOCK invocation.
11653         (gl_LOCK): New macro.
11654
11655 2006-08-22  Simon Josefsson  <jas@extundo.com>
11656
11657         * modules/gc-md5 (Makefile.am): Need to add md5.h, after changes
11658         to md5 module.
11659
11660 2006-08-22  Simon Josefsson  <jas@extundo.com>
11661
11662         * MODULES.html.sh: Add "Support for maintaining and release
11663         projects".
11664
11665         * build-aux/gnupload: New file, from coreutils.
11666
11667 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
11668
11669         Avoid the need for AC_LIBSOURCES in m4 macros.
11670         * modules/arcfour (EXTRA_DIST): Add arcfour.h.
11671         * modules/arctwo (EXTRA_DIST): Add arctwo.h.
11672         * modules/check-version (EXTRA_DIST): Add check-version.h.
11673         * modules/crc (EXTRA_DIST): Add crc.h.
11674         * modules/des (EXTRA_DIST): Add des.h.
11675         * modules/gc (EXTRA_DIST): Add gc.h.
11676         * modules/getdelim (EXTRA_DIST): Add getdelim.h.
11677         * modules/getline (EXTRA_DIST): Add getline.h.
11678         * modules/getlogin_r (EXTRA_DIST): Add getlogin_r.h.
11679         * modules/hmac-md5 (EXTRA_DIST): Add hmac.h.
11680         * modules/hmac-sha1 (EXTRA_DIST): Add hmac.h.
11681         * modules/md2 (EXTRA_DIST): Add md2.h.
11682         * modules/md4 (EXTRA_DIST): Add md4.h.
11683         * modules/pagealign_alloc (EXTRA_DIST): Add pagealign_alloc.h.
11684         * modules/read-file (EXTRA_DIST): Add read-file.h.
11685         * modules/readline (EXTRA_DIST): Add readline.h.
11686         * modules/rijndael (EXTRA_DIST): Add rijndael-alg-fst.h,
11687         rijndael-api-fst.h.
11688
11689 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
11690
11691         * m4/rijndael.m4 (gl_ARCFOUR):
11692         * m4/arctwo.m4 (gl_ARCTWO):
11693         * m4/check-version.m4 (gl_CHECK_VERSION):
11694         * m4/crc.m4 (gl_CRC):
11695         * m4/des.m4 (gl_DES):
11696         * m4/gc-pbkdf2-sha1.m4 (gl_GC_PBKDF2_SHA1):
11697         * m4/gc.m4 (gl_GC):
11698         * m4/getdelim.m4 (gl_FUNC_GETDELIM):
11699         * m4/getline.m4 (gl_FUNC_GETLINE):
11700         * m4/getlogin_r.m4 (gl_GETLOGIN_R_SUBSTITUTE):
11701         * m4/hmac-md5.m4 (gl_HMAC_MD5):
11702         * m4/hmac-sha1.m4 (gl_HMAC_SHA1):
11703         * m4/md2.m4 (gl_MD2):
11704         * m4/md4.m4 (gl_MD4):
11705         * m4/pagealign_alloc.m4 (gl_PAGEALIGN_ALLOC):
11706         * m4/read-file.m4 (gl_FUNC_READ_FILE):
11707         * m4/readline.m4 (gl_FUNC_READLINE):
11708         * m4/rijndael.m4 (gl_RIJNDAEL):
11709         Don't use AC_LIBSOURCES; instead, rely on the files in ../modules/
11710         to get the necessary .h files and whatnot.
11711
11712 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
11713
11714         * config/srclist.txt: Remove gnupload, since coreutils now syncs from
11715         gnulib rather than the other way around.
11716         * config/srclistvars.sh (COREUTILS): Remove.
11717
11718 2006-08-22  Jim Meyering  <jim@meyering.net>
11719
11720         * modules/mkdir-p (Makefile.am): Fix typo: s/lib+SOURCES/lib_SOURCES/.
11721
11722         * modules/getpass-gnu (Makefile.am): Add getpass.h to EXTRA_DIST.
11723
11724 2006-08-22  Eric Blake  <ebb9@byu.net>
11725
11726         * modules/regexprops-generic: New file.
11727         * MODULES.html.sh (Support for building documentation): List it.
11728
11729 2006-08-22  Eric Blake  <ebb9@byu.net>
11730
11731         * m4/stdint_h.m4 (gl_AC_HEADER_STDINT_H): Avoid compiler warning.
11732         * m4/inttypes_h.m4 (gl_AC_HEADER_INTTYPES_H): Likewise.
11733         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Likewise.
11734         * m4/intmax_t.m4 (gt_AC_TYPE_INTMAX_T): Likewise.
11735
11736 2006-08-22  Bruno Haible  <bruno@clisp.org>
11737
11738         * gnulib-tool (func_emit_lib_Makefile_am): Don't treat lib_LIBRARIES
11739         and lib_LTLIBRARIES like the other lib_* variables.
11740
11741 2006-08-22  Bruno Haible  <bruno@clisp.org>
11742
11743         * build-aux/x-to-1.in: New file, from GNU gettext.
11744
11745 2006-08-22  Bruno Haible  <bruno@clisp.org>
11746
11747         * m4/readutmp.m4 (gl_READUTMP): Compile readutmp.c only if <utmp.h> or
11748         <utmpx.h> exists.
11749
11750 2006-08-22  Bruno Haible  <bruno@clisp.org>
11751
11752         * lib/readutmp.h: Skip most definitions if neither <utmp.h> nor
11753         <utmpx.h> exists.
11754
11755 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
11756
11757         BeOS portability.
11758         * lib/dirchownmod.c (dirchownmod): Don't use fchmod if it doesn't
11759         exist.
11760         Problem reported by Bruno Haible.
11761
11762 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
11763
11764         Avoid the need for AC_LIBSOURCES in m4 macros.
11765         * modules/acl (EXTRA_DIST): Add acl.h.
11766         * modules/argmatch (Files): Add m4/argmatch.m4.
11767         (configure.ac): Add gl_ARGMATCH.
11768         (EXTRA_DIST): Renamed from lib_SOURCES, for
11769         consistency with the other modules.  Remove argmatch.c.
11770         * modules/backupfile (EXTRA_DIST): Add backupfile.h.
11771         * modules/c-strtod (EXTRA_DIST): Add c-strtod.h.
11772         * modules/c-strtold (EXTRA_DIST): Add c-strtod.c, c-strtod.h.
11773         * modules/canonhost (EXTRA_DIST): Add c-canonhost.h.
11774         * modules/canonicalize (EXTRA_DIST): Add canonicalize.h.
11775         * modules/chdir-long (EXTRA_DIST): Add chdir-long.h.
11776         * modules/chdir-safer (EXTRA_DIST): Add chdir-safer.h.
11777         * modules/cloexec (EXTRA_DIST): Add cloexec.h.
11778         * modules/close-stream (EXTRA_DIST): Add close-stream.h.
11779         * modules/closeout (EXTRA_DIST): Add closeout.h.
11780         * modules/cycle-check (EXTRA_DIST): Add cycle-check.h.
11781         * modules/dev-ino (EXTRA_DIST): Add dev-ino.h.
11782         * modules/dirfd (EXTRA_DIST): Add dirfd.h.
11783         * modules/dirname (EXTRA_DIST): Renamed from lib_SOURCES.  Add
11784         dirname.h; remove basename.c and stripslash.c.
11785         * modules/exclude (EXTRA_DIST): Add exclude.h.
11786         * modules/exitfail (EXTRA_DIST): Add exitfail.h.
11787         * modules/fcntl-safer (EXTRA_DIST): Add fcntl-safer.h fcntl--.h.
11788         * modules/file-type (EXTRA_DIST): Add file-type.h.
11789         * modules/filemode (EXTRA_DIST): Add filemode.h.
11790         * modules/filenamecat (EXTRA_DIST): Add filenamecat.h.
11791         * modules/fopen-safer (EXTRA_DIST): Add stdio-safer.h stdio--.h.
11792         * modules/fpending (EXTRA_DIST): Add __fpending.h.
11793         * modules/fprintftime (EXTRA_DIST): Add fprintftime.h.
11794         * modules/fsusage (EXTRA_DIST): Add fsusage.h.
11795         * modules/fts (EXTRA_DIST): Add fts_.h fts-cycle.c.
11796         * modules/getcwd (EXTRA_DIST): Add getcwd.h.
11797         * modules/getdate (EXTRA_DIST): Add getdate.c.
11798         * modules/gethrxtime (EXTRA_DIST): Add gethrxtime.h xtime.h.
11799         * modules/getpagesize (EXTRA_DIST): Add getpagesize.h.
11800         * modules/getpass (EXTRA_DIST): Add getpass.h.
11801         * modules/glob (EXTRA_DIST): Add glob_.h glob-libc.h.
11802         * modules/group-member (EXTRA_DIST): Add group-member.h.
11803         * modules/hard-locale (EXTRA_DIST): Add hard-locale.h.
11804         * modules/hash (EXTRA_DIST): Add hash.h.
11805         * modules/human (EXTRA_DIST): Add human.h.
11806         * modules/inttypes (EXTRA_DIST): Add inttypes.h.
11807         * modules/lchmod (EXTRA_DIST): Add lchmod.h.
11808         * modules/lchown (EXTRA_DIST): Add lchown.h.
11809         * modules/long-options (EXTRA_DIST): Add long-options.h.
11810         * modules/lstat (EXTRA_DIST): Add lstat.h.
11811         * modules/md5 (EXTRA_DIST): Add memcasecmp.h.
11812         * modules/memcoll (EXTRA_DIST): Add memcoll.h.
11813         * modules/mempcpy (EXTRA_DIST): Add mempcpy.h.
11814         * modules/memrchr (EXTRA_DIST): Add memrchr.h.
11815         * modules/memxor (EXTRA_DIST): Add memxor.h.
11816         * modules/mkancesdirs (EXTRA_DIST): Add mkancesdirs.h.
11817         * modules/mkdir-p (EXTRA_DIST): Add modechange.h.
11818         * modules/mountlist (EXTRA_DIST): Add mountlist.h.
11819         * modules/openat (EXTRA_DIST): Add at-func.c openat.h openat-priv.h.
11820         * modules/pathmax (EXTRA_DIST): Add pathmax.h.
11821         * modules/physmem (EXTRA_DIST): Add physmem.h.
11822         * modules/posixtm (EXTRA_DIST): Add posixtm.h.
11823         * modules/posixver (EXTRA_DIST): Add posixver.h.
11824         * modules/quote (EXTRA_DIST): Add quote.h.
11825         * modules/quotearg (EXTRA_DIST): Add quotearg.h.
11826         * modules/readtokens (EXTRA_DIST): Add readtokens.h.
11827         * modules/readutmp (EXTRA_DIST): Add readutmp.h.
11828         * modules/regex (EXTRA_DIST): Add regcomp.c regex.h regex_internal.c
11829         regex_internal.h regexec.c.
11830         * modules/safe-read (EXTRA_DIST): Add safe-read.h.
11831         * modules/safe-write (EXTRA_DIST): Add safe-write.h.
11832         * modules/same (EXTRA_DIST): Add same.h.
11833         * modules/same-inode (EXTRA_DIST): Add same-inode.h.
11834         * modules/save-cwd (EXTRA_DIST): Add save-cwd.h.
11835         * modules/savedir (EXTRA_DIST): Add savedir.h.
11836         * modules/sha1 (EXTRA_DIST): Add sha1.h.
11837         * modules/sig2str (EXTRA_DIST): Add sig2str.h.
11838         * modules/stat-macros (EXTRA_DIST): Add stat-macros.h.
11839         * modules/stat-time (EXTRA_DIST): Add stat-time.h.
11840         * modules/stdlib-safer (EXTRA_DIST): Add stdlib-safer.h stdlib--.h.
11841         * modules/strdup (EXTRA_DIST): Add strdup.h.
11842         * modules/strftime (EXTRA_DIST): Add strftime.h.
11843         * modules/strndup (EXTRA_DIST): Add strndup.h.
11844         * modules/strnlen (EXTRA_DIST): Add strnlen.h.
11845         * modules/strverscmp (EXTRA_DIST): Add strverscmp.h.
11846         * modules/time_r (EXTRA_DIST): Add time_r.h.
11847         * modules/timespec (EXTRA_DIST): Add timespec.h.
11848         * modules/tmpfile-safer (EXTRA_DIST): Add stdio-safer.h stdio--.h.
11849         * modules/unistd-safer (EXTRA_DIST): Add unistd-safer.h unistd--.h.
11850         * modules/unlinkdir (EXTRA_DIST): Add unlinkdir.h.
11851         * modules/unlocked-io (EXTRA_DIST): Add unlocked-io.h.
11852         * modules/userspec (EXTRA_DIST): Add userspec.h.
11853         * modules/utimecmp (EXTRA_DIST): Add utimecmp.h.
11854         * modules/utimens (EXTRA_DIST): Add utimens.h.
11855         * modules/xalloc (EXTRA_DIST): Add xalloc.h.
11856         * modules/xgetcwd (EXTRA_DIST): Add xgetcwd.h.
11857         * modules/xnanosleep (EXTRA_DIST): Add xnanosleep.h.
11858         * modules/xreadlink (EXTRA_DIST): Add xreadlink.h.
11859         * modules/xstrtod (EXTRA_DIST): Add xstrtod.h.
11860         * modules/xstrtol (EXTRA_DIST): Add xstrtol.h.
11861         * modules/xstrtold (EXTRA_DIST): Add xstrtod.c xstrtod.h.
11862         * modules/yesno (EXTRA_DIST): Add yesno.h.
11863
11864 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
11865
11866         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Check for fchmod.
11867
11868         * m4/argmatch.m4: New file, from coreutils with AC_LIBSOURCES removed.
11869         * m4/dev-ino.m4, same-inode.m4: Remove.
11870
11871         * m4/_inttypes_h.m4 (gl_INTTYPES_H):
11872         * m4/acl.m4 (AC_FUNC_ACL):
11873         * m4/backupfile.m4 (gl_BACKUPFILE):
11874         * m4/c-strtod.m4 (gl_C99_STRTOLD):
11875         * m4/canon-host.m4 (gl_CANON_HOST):
11876         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME):
11877         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG):
11878         * m4/chdir-safer.m4 (gl_CHDIR_SAFER):
11879         * m4/cloexec.m4 (gl_CLOEXEC):
11880         * m4/close-stream.m4 (gl_CLOSE_STREAM):
11881         * m4/closeout.m4 (gl_CLOSEOUT):
11882         * m4/dirfd.m4 (gl_FUNC_DIRFD):
11883         * m4/dirname.m4 (gl_DIRNAME):
11884         * m4/exclude.m4 (gl_EXCLUDE):
11885         * m4/exitfail.m4 (gl_EXITFAIL):
11886         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER):
11887         * m4/file-type.m4 (gl_FILE_TYPE):
11888         * m4/filemode.m4 (gl_FILEMODE):
11889         * m4/filenamecat.m4 (gl_FILE_NAME_CONCAT):
11890         * m4/fpending.m4 (gl_FUNC_FPENDING):
11891         * m4/fprintftime.m4 (gl_FPRINTFTIME):
11892         * m4/fts.m4 (gl_FUNC_FTS):
11893         * m4/getcwd.m4 (gl_FUNC_GETCWD_NULL):
11894         * m4/getdate.m4 (gl_GETDATE):
11895         * m4/gethrxtime.m4 (gl_GETHRXTIME):
11896         * m4/getpagesize.m4 (gl_GETPAGESIZE):
11897         * m4/getpass.m4 (gl_FUNC_GETPASS):
11898         * m4/gettime.m4 (gl_GETTIME):
11899         * m4/getugroups.m4 (gl_GETUGROUPS):
11900         * m4/glob.m4 (gl_GLOB_SUBSTITUTE):
11901         * m4/group-member.m4 (gl_FUNC_GROUP_MEMBER):
11902         * m4/hard-locale.m4 (gl_HARD_LOCALE):
11903         * m4/hash.m4 (gl_HASH):
11904         * m4/idcache.m4 (gl_IDCACHE):
11905         * m4/lchmod.m4 (gl_FUNC_LCHMOD):
11906         * m4/lchown.m4 (gl_FUNC_LCHOWN):
11907         * m4/long-options.m4 (gl_LONG_OPTIONS):
11908         * m4/lstat.m4 (gl_FUNC_LSTAT):
11909         * m4/md5.m4 (gl_MD5):
11910         * m4/memcasecmp.m4 (gl_MEMCASECMP):
11911         * m4/memcoll.m4 (gl_MEMCOLL):
11912         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY):
11913         * m4/memrchr.m4 (gl_FUNC_MEMRCHR):
11914         * m4/memxor.m4 (gl_MEMXOR):
11915         * m4/mkancesdirs.m4 (gl_MKANCESDIRS):
11916         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS):
11917         * m4/modechange.m4 (gl_MODECHANGE):
11918         * m4/mountlist.m4 (gl_MOUNTLIST):
11919         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP):
11920         * m4/openat.m4 (gl_FUNC_OPENAT):
11921         * m4/pathmax.m4 (gl_PATHMAX):
11922         * m4/physmem.m4 (gl_PHYSMEM):
11923         * m4/posixtm.m4 (gl_POSIXTM):
11924         * m4/posixver.m4 (gl_POSIXVER):
11925         * m4/quote.m4 (gl_QUOTE):
11926         * m4/quotearg.m4 (gl_QUOTEARG):
11927         * m4/readtokens.m4 (gl_READTOKENS):
11928         * m4/readutmp.m4 (gl_READUTMP):
11929         * m4/regex.m4 (gl_REGEX):
11930         * m4/safe-read.m4 (gl_SAFE_READ):
11931         * m4/safe-write.m4 (gl_SAFE_WRITE):
11932         * m4/same.m4 (gl_SAME):
11933         * m4/save-cwd.m4 (gl_SAVE_CWD):
11934         * m4/savedir.m4 (gl_SAVEDIR):
11935         * m4/settime.m4 (gl_SETTIME):
11936         * m4/sha1.m4 (gl_SHA1):
11937         * m4/sig2str.m4 (gl_FUNC_SIG2STR):
11938         * m4/stat-macros.m4 (gl_STAT_MACROS):
11939         * m4/stat-time.m4 (gl_STAT_TIME):
11940         * m4/stdio-safer.m4 (gl_FOPEN_SAFER):
11941         * m4/stdlib-safer.m4 (gl_STDLIB_SAFER):
11942         * m4/strdup.m4 (gl_FUNC_STRDUP):
11943         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME):
11944         * m4/strndup.m4 (gl_FUNC_STRNDUP):
11945         * m4/strnlen.m4 (gl_FUNC_STRNLEN):
11946         * m4/strverscmp.m4 (gl_FUNC_STRVERSCMP):
11947         * m4/time_r.m4 (gl_TIME_R):
11948         * m4/timespec.m4 (gl_TIMESPEC):
11949         * m4/unistd-safer.m4 (gl_UNISTD_SAFER):
11950         * m4/unlinkdir.m4 (gl_UNLINKDIR):
11951         * m4/unlocked-io.m4 (gl_FUNC_GLIBC_UNLOCKED_IO):
11952         * m4/userspec.m4 (gl_USERSPEC):
11953         * m4/utimecmp.m4 (gl_UTIMECMP):
11954         * m4/utimens.m4 (gl_UTIMENS):
11955         * m4/xalloc.m4 (gl_XALLOC):
11956         * m4/xgetcwd.m4 (gl_XGETCWD):
11957         * m4/xnanosleep.m4 (gl_XNANOSLEEP):
11958         * m4/xreadlink.m4 (gl_XREADLINK):
11959         * m4/xstrtod.m4 (gl_XSTRTOD):
11960         * m4/yesno.m4 (gl_YESNO):
11961         Don't use AC_LIBSOURCES; instead, rely on the files in ../modules/
11962         to get the necessary .h files and whatnot.
11963
11964 2006-08-21  Mark D. Baushke  <mdb@gnu.org>
11965             Bruno Haible  <bruno@clisp.org>
11966
11967         * gnulib-tool (func_verify_module): Work around Sun's non-POSIX 1003.2
11968         /bin/sh understanding of '!' conditional negation.
11969
11970 2006-08-21  Jim Meyering  <jim@meyering.net>
11971
11972         * modules/openat (Depends-on): Really alphabetize.
11973
11974         * modules/acl (Depends-on): Add error and quote.
11975
11976         * check-module (find_included_lib_files): Add at-func.c to the
11977         ok-to-include-more-than-once white list.
11978
11979         * modules/openat (Depends-on): Add lstat.  Alphabetize.
11980
11981 2006-08-21  Bruno Haible  <bruno@clisp.org>
11982
11983         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
11984         Emit a pkgdata_DATA variable only if some snippets add contents to it.
11985         Reported by Martin Lambers <marlam@marlam.de>.
11986
11987 2006-08-21  Bruno Haible  <bruno@clisp.org>
11988
11989         * gnulib-tool (func_emit_lib_Makefile_am): If the snippets already
11990         specify an installation location, don't emit a noinst_LIBRARIES or
11991         noinst_LTLIBRARIES assignment.
11992
11993 2006-08-21  Bruno Haible  <bruno@clisp.org>
11994
11995         BeOS portability.
11996         * modules/mbchar (Include): Don't test HAVE_WCTYPE_H any more, since
11997         BeOS has mbrtowc() but no <wctype.h>.
11998
11999 2006-08-21  Bruno Haible  <bruno@clisp.org>
12000
12001         BeOS portability.
12002         * m4/mbchar.m4 (gl_MBCHAR): Compile mbchar.c also if <wctype.h> doesn't
12003         exist.
12004
12005 2006-08-21  Bruno Haible  <bruno@clisp.org>
12006
12007         BeOS portability.
12008         * lib/mbchar.h: Include <wctype.h> only if it exists.
12009
12010 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
12011
12012         Remove files that are no longer needed by their respective modules.
12013         * m4/obstack.m4: Remove.
12014         * m4/strerror_r.m4: Remove.
12015         * m4/uint32_t.m4: Remove.
12016         * m4/uintptr_t.m4: Remove.
12017         * m4/ullong_max.m4: Remove.
12018         * m4/xstrtoimax.m4: Remove.
12019         * m4/xstrtoumax.m4: Remove.
12020
12021         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Do not require
12022         gl_AC_TYPE_UINTMAX_T, gl_STRUCT_DEV_INO, or gl_SAME_INODE, since gnulib
12023         dependencies now capture this.
12024
12025         * m4/cycle-check.m4 (gl_CYCLE_CHECK):
12026         Do not use AC_LIBSOURCES, since gnulib modules now do this.
12027         * m4/fsusage.m4 (gl_FSUSAGE): Likewise.
12028         * m4/human.m4 (gl_HUMAN): Likewise.
12029         * m4/inttostr.m4 (gl_INTTOSTR): Likewise.
12030         * m4/xstrtol.m4 (gl_XSTRTOL): Likewise.
12031
12032         * m4/filemode.m4 (gl_FILEMODE): Require AC_STRUCT_ST_DM_MODE.
12033
12034         * m4/filemode.m4 (gl_PREREQ_FSUSAGE_EXTRA): Do not require
12035         gl_AC_TYPE_INTMAX_T or gl_AC_TYPE_UINTMAX_T, since we now require
12036         stdint.
12037         * m4/human.m4 (gl_HUMAN): Likewise.
12038         * m4/inttostr.m4 (gl_PREREQ_INTTOSTR): Likewise.
12039         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Likewise.
12040         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Likewise.
12041         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Likewise.
12042         * m4/xstrtol (gl_XSTRTOL): Likewise.
12043
12044         * m4/gethrxtime.m4 (gl_XTIME): gl_AC_TYPE_LONG_LONG ->
12045         AC_TYPE_LONG_LONG_INT.
12046         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Likewise.
12047         * m4/strtoll.m4 (gl_FUNC_STRTOLL): Likewise.
12048         * m4/strtoull.m4 (gl_FUNC_STRTOULL): Likewise, for unsigned long.
12049         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Likewise.
12050
12051         * m4/human.m4 (gl_HUMAN): Do not require AM_STDBOOL_H since we depend
12052         on stdbool.
12053
12054         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL_H, gl_PREREQ_XSTRTOL): Remove.
12055         (gl_PREREQ_XSTRTOUL): Remove.
12056
12057         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Check for hasmntopt.
12058
12059         * m4/posixver.m4: Fix comment since head -1 now works even in POSIX
12060         mode.
12061
12062 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
12063
12064         Add and change modules to make it easier for coreutils to use
12065         gnulib-tool.
12066         * modules/backupfile (Files): Remove m4/d-ino.m4.
12067         (Depends-on): Add d-ino.
12068         * modules/cycle-check (Depends-on): Add stdint.
12069         (lib_SOURCES): Add cycle-check.h.
12070         * modules/d-ino: New module.
12071         * modules/d-type: New module.
12072         * modules/error (Files): Remove m4/strerror_r.m4.
12073         * modules/filemode (Files): Add m4/st_dm_mode.m4.
12074         * modules/fsuage (Files): Remove m4/ulonglong.m4, m4/stdint_h.m4,
12075         m4/inttypes_h.m4, m4/uintmax_t.m4.
12076         (Depends-on): Add stdint.
12077         (lib_SOURCES): Add fsusage.h.
12078         * modules/getcwd (Files): Remove d-ino.m4.
12079         (Depends-on): Add d-ino.
12080         * modules/getndelim2 (Depends-on): Add stdint.
12081         * modules/glob (Files): Remove m4/d-type.m4.
12082         (Depends-on): Add d-type.
12083         * modules/host-os: New module.
12084         * modules/human (Files):  Remove m4/ulonglong.m4, m4/stdint_h.m4,
12085         m4/inttypes_h.m4, m4/uintmax_t.m4.
12086         * Depends-on: Add stdint.
12087         (lib_SOURCES): Add human.h.
12088         * modules/inttostr (Files): Remove m4/intmax_t.m4,
12089         m4/inttostr.m4, m4/inttypes_h.m4, m4/longlong.m4, m4/stdint_h.m4,
12090         m4/uintmax_t.m4, m4/ulonglong.m4.
12091         (Depends-on): Add stdint.
12092         (EXTRA_DIST): Add inttostr.h.
12093         * modules/lchmod: New module.
12094         * modules/link-follow: New module.
12095         * modules/mkdir-p (Files): Remove lib/lchmod.h, m4/lchmod.m4.
12096         (Depends-on): Add lchmod.
12097         * modules/mkstemp (Files): Remove m4/ulonglong.m4,
12098         m4/stdint_h.m4, m4/inttypes_h.m4, m4/uintmax_t.m4.
12099         (Depends-on): Add stdint.
12100         * modules/obstack (Files): Remove m4/inttypes_h.m4, m4/obstack.m4,
12101         m4/stdint_h.m4, m4/uintmax_t.m4, m4/ulonglong.m4.
12102         (Depends-on): Add stdint.
12103         (configure.ac): Change gl_OBSTACK to AC_FUNC_OBSTACK.
12104         * modules/perl: New module.
12105         * modules/regex (Depends-on): Add stdint.
12106         * modules/rmdir-errno: New module.
12107         * modules/strtoimax (Files): Remove m4/stdint_h.m4, m4/inttypes_h.m4,
12108         m4/intmax_t.m4.
12109         (Depends-on): Add stdint.
12110         * modules/strtoumax (Files): Remove m4/stdint_h.m4, m4/inttypes_h.m4,
12111         m4/uintmax_t.m4.
12112         (Depends-on): Add stdint.
12113         * modules/unlink-busy: New module.
12114         * modules/utimecmp (Depends-on): Add stdint.
12115         * modules/uptime: New module.
12116         * modules/winsz-ioctl: New module.
12117         * modules/winsz-termios: New module.
12118         * modules/xnanosleep (Depends-on): Add nanosleep.
12119         * modules/ullong_max: Remove.
12120         * modules/xstrtoimax (Files): Remove m4/xstrtoimax.m4.
12121         (configure.ac): Remove gl_XSTRTOIMAX; no action needed now.
12122         * modules/xstrtol (Files): Remove m4/ulonglong.m4, m4/longlong.m4,
12123         m4/stdint_h.m4, m4/inttypes_h.m4, m4/uintmax_t.m4, m4/intmax_t.m4.
12124         (Depends-on): Add inttypes.
12125         (lib_SOURCES): Add xstrtol.h.
12126         * modules/xstrtoumax (Files): Remove m4/xstrtoumax.m4.
12127         (configure.ac): Remove gl_XSTRTOUMAX; no action needed now.
12128         * MODULES.html.sh: Move 'assert' into the assert section.
12129         Move 'dummy' into the linking section.
12130         Remove ullong_max.
12131         Add section for compatibility checks for POSIX:2001 functions,
12132         and put d-ino, d-type, link-follow, rmdir-errno, unlink-busy,
12133         winsz-ioctl, and winsz-termios into it.
12134         Add lchmod.
12135         Add top-level Misc section and put host-os, perl, and uptime
12136         into it.
12137
12138 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
12139
12140         * lib/cycle-check.h: Include <stdint.h> unconditionally, since we
12141         now assume the stdint module.  Do not include inttypes.h.
12142         * lib/fsusage.h: Likewise.
12143         * lib/getndelim2.c: Likewise.
12144         * lib/human.h: Likewise.
12145         * lib/inttostr.h: Likewise.
12146         * lib/obstack.c: Likewise.
12147         * lib/regex_internal.h: Likewise.
12148         * lib/tempname.c: Likewise.
12149         * lib/utimecmp.c: Likewise.
12150         * lib/xstrtol.h: Likewise.
12151
12152         * lib/stat_.h: Fix typo: HAVE_FUNC_LSTAT -> HAVE_LSTAT.
12153
12154         * lib/strtoimax.c: Adjust to macro name changes in Autoconf,
12155         e.g., HAVE_LONG_LONG -> HAVE_LONG_LONG_INT.
12156         * lib/xtime.h: Likewise.
12157
12158 2006-08-19  Paul Eggert  <eggert@cs.ucla.edu>
12159
12160         * modules/openat (Files): Add lib/fchmodat.c.
12161         Fixes problem reported by Jay Youngman.
12162
12163 2006-08-19  Paul Eggert  <eggert@cs.ucla.edu>
12164
12165         * lib/fchmodat.c: New file, from coreutils.  This was inadvertently
12166         omitted in the 2006-08-17 update.  Problem reported by Jay Youngman.
12167
12168 2006-08-18  Paul Eggert  <eggert@cs.ucla.edu>
12169             Bruno Haible  <bruno@clisp.org>
12170
12171         * m4/bison-i18n.m4 (BISON_I18N): Also handle the case where yacc exists
12172         and is a script that invokes bison. Tighten the code. Add comments.
12173
12174 2006-08-18  Jim Meyering  <jim@meyering.net>
12175
12176         * m4/gethrxtime.m4 (gl_PREREQ_GETHRXTIME): Also check for
12177         CLOCK_REALTIME, since gethrxtime may revert to using clock_gettime via
12178         gettime.c.  Gabor Z. Papp reported that gethrxtime-using programs
12179         failed to link due to unresolved clock_gettime on a linux-2.4.x system.
12180
12181 2006-08-18  Bruno Haible  <bruno@clisp.org>
12182
12183         * modules/bison-i18n: New file.
12184         * MODULES.html.sh (Internationalization functions): Add it.
12185
12186 2006-08-18  Bruno Haible  <bruno@clisp.org>
12187
12188         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Also check for
12189         sys/statvfs.h. When getmntinfo was found, check its declaration and
12190         set either MOUNTED_GETMNTINFO or MOUNTED_GETMNTINFO2 depending on it.
12191
12192 2006-08-18  Bruno Haible  <bruno@clisp.org>
12193
12194         * m4/bison-i18n.m4: New file, from bison.
12195
12196 2006-08-18  Bruno Haible  <bruno@clisp.org>
12197
12198         * lib/mountlist.c [MOUNTED_GETMNTINFO2]: Include sys/statvfs.h.
12199         (ME_DUMMY): Treat "kernfs" as a dummy.
12200         (read_file_system_list) [MOUNTED_GETMNTINFO2]: Implement.
12201
12202 2006-08-17  Paul Eggert  <eggert@cs.ucla.edu>
12203
12204         Update from coreutils.
12205
12206         2006-08-15  Jim Meyering  <jim@meyering.net>
12207
12208         * m4/openat.m4 (gl_FUNC_OPENAT): Add at-func.c via AC_LIBSOURCES.
12209
12210         2006-01-17  Jim Meyering  <jim@meyering.net>
12211
12212         * m4/fts.m4 (gl_FUNC_FTS_CORE): Depend on gl_FUNC_OPENAT.
12213
12214         2006-01-11  Jim Meyering  <jim@meyering.net>
12215
12216         * m4/openat.m4 (gl_FUNC_OPENAT): Require and compile fchmodat.c.
12217         Check for the lchmod function.
12218
12219 2006-08-17  Paul Eggert  <eggert@cs.ucla.edu>
12220
12221         Update from coreutils.
12222
12223         * lib/__fpending.h: Add copyright notice.
12224         * lib/fprintftime.h: Likewise.
12225         * lib/savedir.c: Use (C) in copyright notice.
12226         * lib/savedir.h: Likewise.
12227
12228         2006-08-15  Jim Meyering  <jim@meyering.net>
12229
12230         * lib/at-func.c: New file, with the logic of all emulated at-functions.
12231         * lib/openat-priv.h: Include <errno.h> and define ENOSYS,
12232         in support of the EXPECTED_ERRNO macro.
12233         * lib/openat.c (fstatat, unlinkat, fchownat): Remove function
12234         definitions.  Instead, define the appropriate symbols and include
12235         "at-func.c".
12236         * lib/mkdirat.c (mkdirat): Likewise.
12237         * lib/fchmodat.c (fchmodat): Likewise.
12238         (ENOSYS): Remove definition.
12239         * lib/openat.c: Don't include <errno.h>, now that "openat-priv.h" does
12240         it.  Don't include "unistd--.h" -- it wasn't ever used.
12241
12242         2006-01-17  Jim Meyering  <jim@meyering.net>
12243
12244         Rewrite fts.c not to change the current working directory,
12245         by using openat, fstatat, fdopendir, etc..
12246
12247         * lib/fts.c [! _LIBC]: Include "openat.h" and "unistd--.h".
12248         (HAVE_OPENAT_SUPPORT): Define.
12249         [_LIBC] (fchdir): Don't undef or define; no longer used.
12250         (FCHDIR): Define in terms of cwd_advance_fd rather than fchdir.
12251         Now, this `function' always succeeds, and consumes its file descriptor
12252         parameter -- so callers must not close such FDs.  Update callers.
12253         (diropen_fd, opendirat, cwd_advance_fd): New functions.
12254         (diropen): Add parameter, SP.  Adjust all callers.
12255         Implement using diropen_fd, rather than open.
12256         (fts_open): Initialize new member, fts_cwd_fd.
12257         Remove fts_rft-setting code.
12258         (fts_close): Close fts_cwd_fd, if necessary.
12259         (__opendir2): Define in terms of opendir or opendirat,
12260         depending on whether the FST_NOCHDIR flag is set.
12261         (fts_build): Since fts_safe_changedir consumes its FD, and since
12262         this code must do `closedir(dirp)', dup the dirfd(dirp) argument,
12263         and close the dup'd file descriptor upon failure.
12264         (fts_stat): Use fstatat(...AT_SYMLINK_NOFOLLOW) in place of lstat.
12265         (fts_safe_changedir): Tweak semantics to reflect that this function
12266         now calls cwd_advance_fd and hence consumes its FD argument.
12267         * lib/fts_.h [struct FTS] (fts_cwd_fd): New member.
12268         [struct FTS] (fts_rft): Remove now-unused member.
12269         [struct FTS] (fts_cycle.state): Improve comment.
12270
12271         * lib/openat.c (openat_needs_fchdir): New function.
12272         * lib/openat.h (openat_needs_fchdir): Declare it.
12273
12274 2006-08-16  Paul Eggert  <eggert@cs.ucla.edu>
12275
12276         * lib/memcoll.c (memcoll): Set errno = 0 in the shortcut case, too.
12277         Problem and fix reported by Pádraig Brady in
12278         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00099.html>.
12279
12280 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
12281
12282         * modules/cycle-check (configure.ac): Add gl_CYCLE_CHECK.
12283
12284 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
12285
12286         * lib/memcoll.c (memcoll): Optimize for the common case where the
12287         arguments are bytewise equal.
12288
12289 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
12290
12291         * doc/regexprops-generic.texi: Add a copyright notice.
12292
12293 2006-08-15  Bruno Haible  <bruno@clisp.org>
12294
12295         * modules/tmpdir (License): Change to LGPL.
12296
12297 2006-08-15  Bruno Haible  <bruno@clisp.org>
12298
12299         * gnulib-tool (func_all_modules, func_verify_module): COPYING is not a
12300         module.
12301
12302 2006-08-14  Simon Josefsson  <jas@extundo.com>
12303
12304         * config/srclist.txt: Add gnupload.
12305
12306 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
12307
12308         Change copyright notice from LGPL 2 to GPL 2, since that's the
12309         standard form used in the gnulib repository.
12310         * tests/test-lock.c: Likewise.
12311         * tests/test-stdint.c: Likewise.
12312         * tests/test-tls.c: Likewise.
12313
12314         * users.txt: Add bison, diffutils, libprelude, prelude-lml,
12315         prelude-manager.  User shorter URLs for GNU projects, without '?'.
12316         Add copyright notice.
12317
12318         * check-module: Add copyright notice.  Output a copyright
12319         notice if "--version" is specified.
12320         * modules/COPYING: New file.
12321         * tests/test-getaddrinfo.c: Add copyright notice.
12322         * tests/test-verify.c: Likewise.
12323
12324 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
12325
12326         Change copyright notice from LGPL 2 to GPL 2, since that's the
12327         standard form used in the gnulib repository.
12328         * lib/lock.c: LGPL -> GPL.
12329         * lib/lock.h: Likewise.
12330         * lib/strnlen1.c: Likewise.
12331         * lib/strnlen1.h: Likewise.
12332         * lib/tls.c: Likewise.
12333         * lib/tls.h: Likewise.
12334         * lib/tmpdir.c: Likewise.
12335
12336         * lib/TODO: Remove; this belongs only in coreutils.
12337
12338 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
12339
12340         Add copyright notices to long-enough files that lack them, since
12341         otherwise the files aren't clearly free.  Use the same notice that
12342         getdate.texi already uses.
12343         * doc/alloca-opt.texi: Add copyright notice.
12344         * doc/alloca.texi: Likewise.
12345         * doc/ctime.texi: Likewise.
12346         * doc/functions.texi: Likewise.
12347         * doc/gcd.texi: Likewise.
12348         * doc/gnulib-tool.texi: Likewise.
12349         * doc/inet_ntoa.texi: Likewise.
12350         * doc/visibility.texi: Likewise.
12351
12352         * doc/getdate.texi: Update FDL version from 1.1 to 1.2.
12353         * doc/quote.texi: Add copyright notice.
12354
12355         * doc/solaris-versions: Add SunOS 5.10, SunOS 1.x, SunOS 4.0, SunOS
12356         4.0.x, SunOS 4.1.1.1, SunOS 4.1.1_U1, SunOS 4.1.3B.  SunOS 4.1.3
12357         was Solaris 1.1A.  Remove space before B in Solaris 1.1.1B.
12358         Mention SunOS 5.11.  Mention that everything before SunOS 5.7
12359         is now obsolete, and give a pointer to the Sun list.
12360         Add copyright notice.
12361
12362 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
12363
12364         * config/srclistvars.sh: Add copyright notice.
12365
12366 2006-08-14  Eric Blake  <ebb9@byu.net>
12367
12368         Import the following change from libc:
12369
12370         2006-08-12  Ulrich Drepper  <drepper@redhat.com>
12371
12372         Upstream bug 2997.
12373         * lib/misc/error.c: Add space between program name and message if file
12374         name is missing.
12375
12376 2006-08-12  Karl Berry  <karl@gnu.org>
12377
12378         * config/srclist.txt (ssize_t.m4, sig_atomic_t.m4, signalblocking.m4):
12379         remove, these originate in gnulib now.
12380
12381 2006-08-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12382
12383         * doc/Makefile (standards.info standards.html standards.dvi):
12384         Also depend on make-stds.texi.
12385
12386 2006-08-11  Paul Eggert  <eggert@cs.ucla.edu>
12387
12388         * lib/pipe-safer.c (pipe_safer): Fix misspelling: HAVE_FUNC_PIPE ->
12389         HAVE_PIPE.  Fix a file descriptor leak when fd_safer fails.
12390
12391         * lib/regex_internal.c (re_string_skip_chars): Don't assume WEOF fits
12392         in wchar_t.  Problem reported by Eric Blake.
12393
12394         * lib/snprintf.c (snprintf): memcpy LEN bytes, not SIZE - 1, when
12395         LEN is smaller than SIZE.  Suggested by Bruno Haible.
12396         Also, help the compiler to keep LEN in a register.
12397
12398 2006-08-11  Eric Blake  <ebb9@byu.net>
12399
12400         * users.txt: Sort.  Add tar.
12401
12402 2006-08-11  Bruno Haible  <bruno@clisp.org>
12403
12404         * users.txt: New file.
12405
12406 2006-08-11  Bruno Haible  <bruno@clisp.org>
12407
12408         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Include <stdio.h> and <time.h>
12409         before <wchar.h>. Needed for OSF/1 and BSD/OS.
12410
12411 2006-08-10  Paul Eggert  <eggert@cs.ucla.edu>
12412
12413         * modules/snprintf (Depends-on): Remove minmax.
12414         (Maintainer): Add self and Bruno.
12415
12416 2006-08-10  Paul Eggert  <eggert@cs.ucla.edu>
12417
12418         * lib/.cppi-disable: Add snprintf.h, socket_.h.
12419         * lib/snprintf.c: Include <errno.h> and <limits.h>.
12420         (EOVERFLOW): Define if the system does not.
12421         Do not include "minmax.h"; it wasn't used.
12422         (snprintf): Don't assume size_t promotes to an unsigned type.
12423         Fix bug when generated string was too long for the buffer: the
12424         buffer's contents are supposed to be the initial prefix of the
12425         output.  Don't assume vasnprintf returns EOVERFLOW if the size
12426         exceeds INT_MAX; do the check ourselves.
12427
12428         Import the following changes from libc:
12429
12430         2006-06-02  Jakub Jelinek  <jakub@redhat.com>
12431
12432         * lib/posix/regex_internal.c (re_string_skip_chars): If no character
12433         has been converted at all, set *last_wc to WEOF.  If mbrtowc failed,
12434         set wc to the byte which couldn't be converted.
12435         (re_string_reconstruct): Don't clear valid_raw_len before calling
12436         re_string_skip_chars.  If wc is WEOF after re_string_skip_chars, set
12437         tip_context using re_string_context_at.
12438
12439         2006-05-02  Ulrich Drepper  <drepper@redhat.com>
12440
12441         * lib/posix/regex.h: g++ still cannot handled [restrict].
12442
12443         2006-04-21  Ulrich Drepper  <drepper@redhat.com>
12444
12445         * lib/posix/regex.h: Remove special handling for VMS.
12446
12447 2006-08-10  Jim Meyering  <jim@meyering.net>
12448
12449         * modules/same-inode: New module.
12450         * modules/dev-ino: New module.
12451         * modules/cycle-check: Depend on these modules, rather than simply
12452         including their .h files.
12453         (Makefile.am): Don't list cycle-check.[ch] here, now that they're
12454         required via m4/cycle-check.m4.
12455         * modules/same: Depend on new same-inode module, rather than
12456         including same-inode.h.
12457         * modules/chdir-safer: New file.
12458
12459         * modules/chown (Depends-on): Add stat-macros.
12460
12461 2006-08-10  Jim Meyering  <jim@meyering.net>
12462
12463         * m4/cycle-check.m4: New file.
12464         Require gl_STRUCT_DEV_INO and gl_SAME_INODE.
12465         * m4/dev-ino.m4, m4/same-inode.m4: New files.
12466
12467 2006-08-10  Eric Blake  <ebb9@byu.net>
12468
12469         * modules/verror (Depends-on): Remove bogus gl_VERROR that snuck
12470         in from original proposal.
12471
12472 2006-08-10  Eric Blake  <ebb9@byu.net>
12473         and Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
12474
12475         * gnulib-tool (func_import): Detect unexpanded macros in gnulib
12476         namespace.
12477
12478 2006-08-10  Bruno Haible  <bruno@clisp.org>
12479
12480         * gnulib-tool (func_create_testdir): Detect unexpanded macros here
12481         as well.
12482
12483 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
12484
12485         Sync from coreutils.
12486
12487         2006-07-19  Mike Frysinger  <vapier@gentoo.org>
12488
12489         * lib/mountlist.c [ME_REMOTE]: Filter out cifs.
12490         Reported by Toralf Förster in <http://bugs.gentoo.org/141012>.
12491
12492 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
12493
12494         * modules/restrict: Remove; no longer needed now that we assume
12495         Autoconf 2.59 or later.
12496         * MODULES.html.sh: Remove 'restrict'.
12497         * modules/argp (Depends-on): Remove 'restrict'.
12498         * modules/base64 (Depends-on): Likewise.
12499         * modules/gc (Depends-on): Likewise.
12500         * modules/getaddrinfo (Depends-on): Likewise.
12501         * modules/glob (Depends-on): Likewise.
12502         * modules/inet_ntop (Depends-on): Likewise.
12503         * modules/inet_pton (Depends-on): Likewise.
12504         * modules/memxor (Depends-on): Likewise.
12505         * modules/regex (Depends-on): Likewise.
12506         * modules/strtok_r (Depends-on): Likewise.
12507         * modules/time_r (Depends-on): Likewise.
12508
12509 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
12510
12511         * m4/argp.m4 (gl_ARGP): Require AC_C_RESTRICT.
12512         * m4/gc.m4 (gl_PREREQ_GC): Likewise.
12513         * m4/glob.m4 (gl_PREREQ_GLOB): Likewise.
12514         * m4/inet_ntop.m4 (gl_PREREQ_INET_NTOP): Likewise.
12515         * m4/inet_pton.m4 (gl_PREREQ_INET_PTON): Likewise.
12516         * m4/memxor.m4 (gl_MEMXOR): Likewise.
12517         * m4/restrict.m4: Remove; no longer needed.  All remaining uses of
12518         gl_C_RESTRICT replaced by AC_C_RESTRICT.
12519
12520         Merge from coreutils.
12521         * m4/regex.m4 (gl_PREREQ_REGEX): Require AC_C_RESTRICT, not
12522         gl_C_RESTRICT, now that we assume Autoconf 2.59 or later.
12523         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Likewise.
12524         * m4/time_r.m4 (gl_TIME_R): Likewise.
12525
12526 2006-08-09  Karl Berry  <karl@gnu.org>
12527
12528         * config/srclist.txt: no more gettext-tools, per Bruno.
12529
12530 2006-08-08  Eric Blake  <ebb9@byu.net>
12531
12532         * modules/verror: New module.
12533         * MODULES.html.sh: Document it.
12534
12535 2006-08-08  Eric Blake  <ebb9@byu.net>
12536
12537         * lib/verror.h, lib/verror.c: New files.
12538
12539 2006-08-08  Eric Blake  <ebb9@byu.net>
12540
12541         * lib/verror.c (verror_at_line): Work around glibc bug 2997, so that
12542         verror_at_line output complies with GNU Coding Standards even when
12543         file is NULL.
12544
12545 2006-08-07  Bruno Haible  <bruno@clisp.org>
12546
12547         * lib/allocsa.h (sa_alignof) [_AIX]: Also consider 'long long' in newer
12548         versions of AIX.
12549         Reported by Ralf Wildenhues.
12550
12551 2006-08-07  Bruno Haible  <bruno@clisp.org>
12552
12553         * gnulib-tool (func_create_testdir): Wrap the set of autoconf snippets
12554         in an AC_DEFUN. Needed so that the autoconf snippets can use
12555         AC_REQUIRE.
12556
12557 2006-08-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12558
12559         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
12560         Initialize pkgdata_DATA.
12561         * modules/javaversion (Makefile.am): Add to pkgdata_DATA, rather than
12562         overriding it.
12563
12564 2006-08-06  Eric Blake  <ebb9@byu.net>
12565
12566         * lib/error.h: Fold in some upstream changes from glibc.
12567         * lib/error.c: Likewise.
12568
12569 2006-08-04  Bruno Haible  <bruno@clisp.org>
12570
12571         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
12572         Make the mostlyclean-local rule depend on mostlyclean-generic.
12573         Reported by Jim Meyering. Solution suggested by Ralf Wildenhues.
12574
12575 2006-07-31  Bruno Haible  <bruno@clisp.org>
12576
12577         * m4/localcharset.m4 (gl_LOCALCHARSET): Remove tests for <stddef.h>,
12578         <stdlib.h>, <string.h>.
12579
12580 2006-07-30  Bruno Haible  <bruno@clisp.org>
12581
12582         * modules/readlink (License): Change to LGPL.
12583
12584 2006-07-30  Bruno Haible  <bruno@clisp.org>
12585
12586         * modules/javaversion (Makefile.am): Distribute javaversion.java and
12587         javaversion.class. Also install javaversion.class in $(pkgdatadir) and
12588         set PKGDATADIR to point to it.
12589
12590 2006-07-30  Bruno Haible  <bruno@clisp.org>
12591
12592         * modules/csharpexec (configure.ac): Comment out macro invocation.
12593         * modules/javaexec (configure.ac): Likewise.
12594         * modules/javacomp-script (configure.ac): Likewise.
12595
12596         * modules/csharpcomp-script (configure.ac): Use AC_REQUIRE.
12597
12598 2006-07-30  Bruno Haible  <bruno@clisp.org>
12599
12600         * modules/clean-temp (Depends-on): Add linkedhash-list, remove
12601         linked-list.
12602
12603 2006-07-30  Bruno Haible  <bruno@clisp.org>
12604
12605         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Assume <string.h> exists.
12606
12607 2006-07-30  Bruno Haible  <bruno@clisp.org>
12608
12609         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
12610         Initialize MOSTLYCLEANFILES to core and *.stackdump, so that core dumps
12611         get removed.
12612
12613 2006-07-29  Bruno Haible  <bruno@clisp.org>
12614
12615         Make it possible for gnulib-tool to work with locally modified or
12616         augmented gnulib repositories.
12617         * gnulib-tool (func_usage): Document --local-dir option.
12618         (local_gnulib_dir): New variable.
12619         Handle --local-dir option.
12620         (func_lookup_file): New function.
12621         (func_all_modules, func_verify_module): Look also in $local_gnulib_dir.
12622         (func_get_description, func_get_filelist, func_get_description,
12623         func_get_filelist, func_get_dependencies, func_get_autoconf_snippet,
12624         func_get_automake_snippet, func_get_include_directive,
12625         func_get_license, func_get_maintainer): Use func_lookup_file.
12626         (func_import, func_create_testdir): Use func_lookup_file.
12627
12628 2006-07-29  Bruno Haible  <bruno@clisp.org>
12629
12630         * modules/setenv (Depends-on): Add unistd.
12631
12632 2006-07-29  Bruno Haible  <bruno@clisp.org>
12633
12634         * lib/setenv.c: Undo unintended modification done on 2006-02-27.
12635
12636 2006-07-29  Bruno Haible  <bruno@clisp.org>
12637
12638         * lib/localcharset.c: Assume <stddef.h>, <stdlib.h>, <string.h> exist.
12639
12640 2006-07-29  Bruno Haible  <bruno@clisp.org>
12641
12642         * gnulib-tool (import, update): If there is no Makefile.am, look at
12643         aclocal.m4, instead of bailing out.
12644
12645 2006-07-29  Bruno Haible  <bruno@clisp.org>
12646
12647         * gnulib-tool (func_usage): Revert most of the 2006-07-15 change.
12648         Categorize the options by when they are useful.
12649
12650 2006-07-29  Bruno Haible  <bruno@clisp.org>
12651
12652         * gnulib-tool (func_usage): Document option --no-libtool.
12653         Handle option --no-libtool.
12654         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am): Update
12655         for changed semantics of $libtool variable.
12656         (func_import): Likewise. If libtool is not used, show this through
12657         an option --no-libtool.
12658         (func_create_testdir): Update.
12659
12660 2006-07-29  Bruno Haible  <bruno@clisp.org>
12661
12662         * gnulib-tool (func_import): Extend error message about missing
12663         --doc-base.
12664
12665 2006-07-29  Bruno Haible  <bruno@clisp.org>
12666
12667         * gnulib-tool (func_import): Don't create the $docbase directory if
12668         there is no file to store there.
12669
12670 2006-07-29  Bruno Haible  <bruno@clisp.org>
12671
12672         * gnulib-tool (autoconf_minversion): If a --dir option is given and
12673         relevant, look for configure.ac there, not in the current directory.
12674         Also use a simple search for AC_PREREQ, not "autoconf --trace".
12675
12676 2006-07-29  Bruno Haible  <bruno@clisp.org>
12677
12678         * gnulib-tool (SORT): New variable.
12679         (func_usage): Undocument --assume-autoconf option.
12680         Remove --assume-autoconf option handling.
12681         (autoconf_minversion): Determine from the contents of configure.ac.
12682         (func_import): Remove autoconf_minversion handling.
12683         Suggested by Eric Blake.
12684
12685 2006-07-29  Bruno Haible  <bruno@clisp.org>
12686
12687         * doc/gnulib-tool.texi (gl_LIBTOOL): Mention --no-libtool option.
12688
12689 2006-07-29  Bruno Haible  <bruno@clisp.org>
12690
12691         * config/srclist.txt (*setenv.[ch]): Remove rules.
12692
12693 2006-07-28  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
12694
12695         * m4/inet_pton.m4, inet_ntop.m4: Check for netinet/in.h too.
12696
12697 2006-07-28  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
12698
12699         * lib/inet_ntop.h, inet_pton.h: Need to include netinet/in.h before
12700         arpa/inet.h.
12701
12702 2006-07-28  Simon Josefsson  <jas@extundo.com>
12703
12704         * modules/inet_ntop (Depends-on): Depend on arpa_inet.
12705         * modules/inet_pton (Depends-on): Likewise.
12706
12707 2006-07-28  Simon Josefsson  <jas@extundo.com>
12708
12709         * m4/netinet_in_h.m4: New file.
12710
12711 2006-07-28  Simon Josefsson  <jas@extundo.com>
12712
12713         * lib/inet_ntop.h, inet_pton.h: No need to guard netinet/in.h
12714         #include's.
12715
12716 2006-07-28  Simon Josefsson  <jas@extundo.com>
12717
12718         * lib/inet_ntop.h, inet_pton.h: No need to guard arpa/inet.h
12719         #include's.
12720
12721 2006-07-28  Paul Eggert  <eggert@cs.ucla.edu>
12722
12723         * lib/modechange.c (mode_compile): Numeric modes now affect setuid and
12724         setgid on directories only if they set these bits.
12725         * lib/modechange.h: Remove obsolete comment about masks.
12726
12727 2006-07-28  Eric Blake  <ebb9@byu.net>
12728
12729         * lib/regex_internal.h (struct re_dfa_t) [!_LIBC]: Avoid invalid C89
12730         macro expansion.
12731
12732 2006-07-28  Bruno Haible  <bruno@clisp.org>
12733
12734         * lib/inet_ntop.h, inet_pton.h: Use #if HAVE* instead of #ifdef HAVE*.
12735
12736 2006-07-28  Bruno Haible  <bruno@clisp.org>
12737
12738         * m4/mbchar.m4 (gl_MBCHAR): Also test for iswcntrl.
12739
12740 2006-07-28  Bruno Haible  <bruno@clisp.org>
12741
12742         * lib/mbchar.h (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit,
12743         iswgraph, iswlower, iswprint, iswpunct, iswspace, iswupper, iswxdigit):
12744         Define fallbacks.
12745         Avoids link error on FreeBSD 4.x.
12746         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
12747
12748         * lib/wcwidth.h (iswprint): Assume an ASCII compatible wide character
12749         encoding.
12750         * lib/mbswidth.c (iswcntrl): Likewise.
12751
12752 2006-07-27  Bruno Haible  <bruno@clisp.org>
12753
12754         * m4/stdint.m4 (gl_STDINT_H): Define __STDC_CONSTANT_MACROS during the
12755         test.
12756
12757 2006-07-27  Bruno Haible  <bruno@clisp.org>
12758
12759         * lib/stdint_.h (INT*_C, UINT*_C) [C++]: Define these if
12760         __STDC_CONSTANT_MACROS is defined, not if __STDC_LIMIT_MACROS is
12761         defined.
12762
12763 2006-07-26  Eric Blake  <ebb9@byu.net>
12764
12765         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Check for missing pipe.
12766
12767 2006-07-26  Eric Blake  <ebb9@byu.net>
12768
12769         * lib/mkstemp-safer.c [! HAVE_MKSTEMP]: Add prototype for platforms
12770         like mingw that lack mkstemp.
12771         * lib/pipe-safer.c (pipe_safer) [!HAVE_FUNC_PIPE]: Provide fallback to
12772         avoid compilation warning on mingw.
12773
12774 2006-07-26  Bruno Haible  <bruno@clisp.org>
12775
12776         * m4/stdint.m4 (gl_STDINT_H): Also verify the existence of the macros
12777         INT*_MIN, INT_LEAST*_MAX, INT_LEAST*_MIN, UINT_LEAST*_MAX,
12778         INT_FAST*_MIN, INTPTR_MIN.
12779
12780 2006-07-25  Bruno Haible  <bruno@clisp.org>
12781
12782         * modules/version-etc (Depends-on): Add stdarg.
12783
12784 2006-07-25  Bruno Haible  <bruno@clisp.org>
12785
12786         * m4/stdint.m4 (gl_INTEGER_TYPE_SUFFIX): Avoid 'eval' in front of
12787         complex commands.
12788
12789 2006-07-25  Bruno Haible  <bruno@clisp.org>
12790
12791         * lib/version-etc.c (version_etc_va): Use va_copy, assumed to be
12792         defined in <stdarg.h> or config.h.
12793
12794 2006-07-24  Paul Eggert  <eggert@cs.ucla.edu>
12795
12796         * m4/stdio-safer.m4 (gl_FOPEN_SAFER, gl_TMPFILE_SAFER): New macros.
12797         (gl_STDIO_SAFER): Remove.
12798
12799 2006-07-24  Paul Eggert  <eggert@cs.ucla.edu>
12800
12801         * MODULES.html.sh (File stream based Input/Output):
12802         Add fopen-safer, tmpfile-safer; remove stdio-safer.
12803         * modules/getusershell (Depends-on): Change stdio-safer to fopen-safer.
12804         * modules/fopen-safer, modules/tmpfile-safer: New files.
12805         * modules/stdio-safer: Remove.
12806
12807 2006-07-24  Bruno Haible  <bruno@clisp.org>
12808
12809         * modules/tmpdir: New file.
12810         * MODULES.html.sh (File system functions): Add it.
12811
12812 2006-07-24  Bruno Haible  <bruno@clisp.org>
12813
12814         * modules/javacomp (Depends-on): Add unistd, javaversion, binary-io,
12815         getline, pathname, fwriteerror, clean-temp, xvasprintf, strstr.
12816
12817 2006-07-24  Bruno Haible  <bruno@clisp.org>
12818
12819         * modules/clean-temp: New file.
12820
12821 2006-07-24  Bruno Haible  <bruno@clisp.org>
12822
12823         * m4/tmpdir.m4: New file, from GNU gettext.
12824
12825 2006-07-24  Bruno Haible  <bruno@clisp.org>
12826
12827         * lib/tmpdir.h: New file, from GNU gettext.
12828         * lib/tmpdir.c: New file, from GNU gettext.
12829
12830 2006-07-24  Bruno Haible  <bruno@clisp.org>
12831
12832         * lib/clean-temp.h: New file, from GNU gettext.
12833         * lib/clean-temp.c: New file, from GNU gettext.
12834
12835 2006-07-23  Eric Blake  <ebb9@byu.net>
12836
12837         * modules/stdio-safer (Files): Add tmpfile-safer.c.
12838         (Depends-on): Add binary-io.
12839
12840 2006-07-23  Eric Blake  <ebb9@byu.net>
12841
12842         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Add tmpfile-safer.c.
12843
12844 2006-07-23  Eric Blake  <ebb9@byu.net>
12845
12846         * lib/tmpfile-safer.c: New file.
12847         * lib/stdio-safer.h (fopen_safer): Add prototype.
12848         * lib/stdio--.h (tmpfile): Make safer.
12849
12850 2006-07-23  Bruno Haible  <bruno@clisp.org>
12851
12852         * lib/gl_anylinked_list2.h (ASYNCSAFE): New macro.
12853         (gl_linked_add_first, gl_linked_add_last, gl_linked_add_before,
12854         gl_linked_add_after, gl_linked_add_at, gl_linked_remove_node,
12855         gl_linked_remove_at): Use it.
12856
12857 2006-07-22  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
12858         and Simon Josefsson <jas@extundo.com>
12859
12860         * lib/getaddrinfo.h (AI_PASSIVE): Make sure it is defined.
12861
12862         * lib/getaddrinfo.c (getaddrinfo): Support AI_PASSIVE.
12863
12864 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
12865
12866         * modules/close-stream: New file.
12867         * modules/closeout (Description): Make it clear that it exits
12868         with a diagnostic on error.
12869         (Depends-on): Add close-stream.  Remove fpending, stdbool.
12870         * MODULES.html.sh (File stream based Input/Output): Add close-stream.
12871
12872 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
12873
12874         * m4/close-stream.m4: New file.
12875
12876 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
12877
12878         * lib/close-stream.c, lib/close-stream.h: New files.
12879
12880 2006-07-22  Bruno Haible  <bruno@clisp.org>
12881
12882         Merge from GNU gettext 0.15.
12883
12884         2006-05-01  Bruno Haible  <bruno@clisp.org>
12885
12886                 * build-aux/javacomp.sh.in: Update for changed javacomp.m4.
12887
12888         2006-07-22  Bruno Haible  <bruno@clisp.org>
12889
12890                 * modules/javaversion: New file.
12891                 * MODULES.html.sh (Java): Add javaversion.
12892
12893         2006-03-12  Bruno Haible  <bruno@clisp.org>
12894
12895                 * build-aux/javaexec.sh.in: Update for changed javaexec.m4.
12896
12897         2005-12-04  Bruno Haible  <bruno@clisp.org>
12898
12899                 * build-aux/csharpexec.sh.in: Add support for 'clix' launcher
12900                 (untested).
12901
12902         2006-06-21  Bruno Haible  <bruno@clisp.org>
12903
12904                 Avoid warnings from recent versions of mcs.
12905                 * build-aux/csharpcomp.sh.in (options_mcs): Don't use options
12906                 -o, -L, -r any more. Use options documented since mcs-1.0
12907                 instead. Similarly for -g.
12908
12909         2005-12-04  Bruno Haible  <bruno@clisp.org>
12910
12911                 * build-aux/csharpcomp.sh.in: Suffix for resources is
12912                 .resources, not .resource.
12913
12914         2005-07-09  Bruno Haible  <bruno@clisp.org>
12915
12916                 * build-aux/csharpcomp.sh.in (options_csc): For -l option,
12917                 add a .dll suffix.
12918                 Reported by Mark Junker <mjscod@gmx.de>.
12919
12920         2006-07-22  Bruno Haible  <bruno@clisp.org>
12921
12922                 * modules/gettext: Upgrade to gettext-0.15.
12923                 (Files): Remove m4/isc-posix.m4. Add m4/lock.m4,
12924                 m4/visibility.m4.
12925                 Replace m4/inttypes.m4 with m4/inttypes-h.m4.
12926
12927 2006-07-22  Bruno Haible  <bruno@clisp.org>
12928
12929         Merge from GNU gettext 0.15.
12930
12931         2006-03-25  Bruno Haible  <bruno@clisp.org>
12932
12933                 * lib-link.m4 (AC_LIB_LINKFLAGS_FROM_LIBS): New macro.
12934
12935         2006-07-21  Bruno Haible  <bruno@clisp.org>
12936
12937                 * javacomp.m4 (gt_JAVACOMP): Convert target_version "null" to
12938                 "1.1".
12939
12940         2006-05-09  Bruno Haible  <bruno@clisp.org>
12941
12942                 * javacomp.m4 (gt_JAVACOMP): On Cygwin, set
12943                 CLASSPATH_SEPARATOR to a semicolon. Use CLASSPATH_SEPARATOR
12944                 for the conftestver execution.
12945
12946         2006-05-01  Bruno Haible  <bruno@clisp.org>
12947
12948                 * javacomp.m4 (gt_JAVACOMP): Accept a source-version and an
12949                 optional target-version argument. Verify that the compiler
12950                 groks source of the specified source-version, or add -source
12951                 option as necessary. Verify that the compiler produces
12952                 bytecode in the specified target-version, or add -target and
12953                 -source options as necessary. Make the result of the test
12954                 available as variable CONF_JAVAC. Also log error output in
12955                 config.log.
12956
12957         2006-03-11  Bruno Haible  <bruno@clisp.org>
12958
12959                 * javacomp.m4 (gt_JAVACOMP): Treat gcj-4.x like gcj-3.x.
12960
12961         2006-05-09  Bruno Haible  <bruno@clisp.org>
12962
12963                 * javaexec.m4 (gt_JAVAEXEC): On Cygwin, set
12964                 CLASSPATH_SEPARATOR to a semicolon.
12965
12966         2006-03-12  Bruno Haible  <bruno@clisp.org>
12967
12968                 * javaexec.m4 (gt_JAVAEXEC): Make the result of the test
12969                 available as variable CONF_JAVA, for subsequent autoconf
12970                 tests. Also log error output in config.log.
12971
12972         2006-07-19  Bruno Haible  <bruno@clisp.org>
12973
12974                 * getline.m4 (AM_FUNC_GETLINE): When cross-compiling, assume
12975                 that getline works on glibc2 systems. Needed to avoid trouble
12976                 in relocatable.c.
12977                 Reported by Nils Magnus Larsgard <nmlarsgaard@atmel.no>.
12978
12979         2005-12-04  Bruno Haible  <bruno@clisp.org>
12980
12981                 * csharpexec.m4 (gt_CSHARPEXEC): Add support for 'clix'
12982                 launcher (untested).
12983
12984         2005-12-04  Bruno Haible  <bruno@clisp.org>
12985
12986                 * csharpcomp.m4 (gt_CSHARPCOMP): Also set CSHARPCOMPFLAGS.
12987
12988         2006-07-22  Bruno Haible  <bruno@clisp.org>
12989
12990                 * gettext.m4: Update from GNU gettext-0.15.
12991                 * nls.m4: Likewise.
12992                 * po.m4: Likewise.
12993                 * inttypes-pri.m4: Likewise.
12994                 * inttypes-h.m4: Renamed from inttypes.m4.
12995                 (gl_HEADER_INTTYPES_H): Renamed from gt_HEADER_INTTYPES_H.
12996
12997 2006-07-22  Bruno Haible  <bruno@clisp.org>
12998
12999         Merge from GNU gettext 0.15.
13000
13001         2005-07-05  Bruno Haible  <bruno@clisp.org>
13002
13003                 * printf-args.c (printf_fetchargs): Work around broken
13004                 definition of wint_t on mingw.
13005
13006         2005-02-12  Bruno Haible  <bruno@clisp.org>
13007
13008                 * xallocsa.h: Add extern "C" for C++.
13009
13010         2006-05-17  Bruno Haible  <bruno@clisp.org>
13011
13012                 Cygwin portability.
13013                 * progreloc.c (WIN32_NATIVE): Renamed from WIN32.
13014
13015         2006-04-30  Bruno Haible  <bruno@clisp.org>
13016
13017                 * progreloc.c: Include <mach-o/dyld.h> if available.
13018                 (find_executable): Use _NSGetExecutablePath when possible.
13019
13020         2006-05-06  Charles Wilson  <cygwin@cwilson.fastmail.fm>
13021
13022                 * progreloc.c (maybe_executable) [CYGWIN]: Use the access()
13023                 function.
13024
13025         2005-12-29  Bruno Haible  <bruno@clisp.org>
13026
13027                 * progreloc.c (set_program_name_and_installdir): Fix
13028                 compilation error.
13029
13030         2005-12-04  Bruno Haible  <bruno@clisp.org>
13031
13032                 Cygwin portability.
13033                 * progreloc.c: Include <windows.h> also on Cygwin.
13034                 (find_executable): Add support for Cygwin.
13035                 (set_program_name_and_installdir): Handle also platforms with
13036                 nonempty EXEEXT.
13037
13038         2006-07-11  Bruno Haible  <bruno@clisp.org>
13039
13040                 * javacomp.c: Fix a comment.
13041                 Reported by Jim Meyering.
13042
13043         2006-04-30  Bruno Haible  <bruno@clisp.org>
13044
13045                 * javacomp.h (compile_java_class): Add source_version,
13046                 target_version arguments.
13047                 * javacomp.c: Rewritten to choose only a compiler that
13048                 respects the specified source_version and target_version.
13049
13050         2006-06-27  Bruno Haible  <bruno@clisp.org>
13051
13052                 Assume correct S_ISDIR macro.
13053                 * mkdtemp.c: Remove test of STAT_MACROS_BROKEN.
13054
13055         2006-07-22  Bruno Haible  <bruno@clisp.org>
13056
13057                 * javaversion.h: New file, from GNU gettext.
13058                 * javaversion.c: New file, from GNU gettext.
13059                 * javaversion.java: New file, from GNU gettext.
13060                 * javaversion.class: New file, from GNU gettext.
13061
13062         2006-05-17  Bruno Haible  <bruno@clisp.org>
13063
13064                 Cygwin portability.
13065                 * javaexec.c (execute_java_class): Test for jview program
13066                 also on Cygwin.
13067
13068         2006-04-09  Bruno Haible  <bruno@clisp.org>
13069
13070                 * fatal-signal.c: Don't include string.h.
13071                 (at_fatal_signal): Use a copying loop instead of memcpy.
13072
13073         2005-12-04  Bruno Haible  <bruno@clisp.org>
13074
13075                 * csharpexec.c: Add support for 'clix' launcher (untested).
13076                 (execute_csharp_using_sscli): New function.
13077                 (execute_csharp_program): Call it.
13078
13079         2006-06-21  Bruno Haible  <bruno@clisp.org>
13080
13081                 Avoid warnings from recent versions of mcs.
13082                 * csharpcomp.c (compile_csharp_using_mono): Don't use options
13083                 -o, -L, -r any more. Use options documented since mcs-1.0
13084                 instead. Similarly for -g.
13085
13086         2005-07-09  Bruno Haible  <bruno@clisp.org>
13087
13088                 * csharpcomp.c (compile_csharp_using_sscli): For -l option,
13089                 add a .dll suffix.
13090                 Reported by Mark Junker <mjscod@gmx.de>.
13091
13092         2006-06-17  Bruno Haible  <bruno@clisp.org>
13093
13094                 * config.charset: Update for NetBSD 3.0.
13095
13096         2006-05-17  Bruno Haible  <bruno@clisp.org>
13097
13098                 Cygwin portability.
13099                 * localcharset.c (WIN32_NATIVE): Renamed from WIN32.
13100
13101         2006-05-16  Bruno Haible  <bruno@clisp.org>
13102
13103                 * localcharset.c [CYGWIN]: Include <windows.h>.
13104                 (get_charset_aliases): For Cygwin, return the same CPxxx
13105                 aliases list as under WIN32.
13106                 (locale_charset) [CYGWIN]: Try to retrieve the encoding from
13107                 the environment variables. Fall back to GetACP().
13108
13109         2006-04-05  Bruno Haible  <bruno@clisp.org>
13110
13111                 * config.charset: Update Juan Manuel Guerrero's address.
13112
13113         2005-02-12  Bruno Haible  <bruno@clisp.org>
13114
13115                 * allocsa.h: Add extern "C" for C++.
13116
13117         2005-02-10  Bruno Haible  <bruno@clisp.org>
13118
13119                 * allocsa.h (sa_alignof): Define differently with AIX xlc, to
13120                 avoid a bug of this compiler on AIX 3.2.5 dealing with enums.
13121
13122         2006-07-22  Bruno Haible  <bruno@clisp.org>
13123
13124                 * gettext.h: Update to GNU gettext-0.15.
13125
13126 2006-07-22  Bruno Haible  <bruno@clisp.org>
13127
13128         * config/srclist.txt: Resync printf-args.c, vasnprintf.c,
13129         localcharset.c, mkdtemp.c, config.rpath, lib-ld.m4, lib-link.m4,
13130         lib-prefix.m4, longdouble.m4, ssize_t.m4.
13131
13132 2006-07-21  Eric Blake  <ebb9@byu.net>
13133
13134         * modules/stdlib-safer: New file.
13135         * MODULES.html.sh (File stream based Input/Output): Add
13136         stdlib-safer.
13137
13138 2006-07-21  Eric Blake  <ebb9@byu.net>
13139
13140         * lib/stdlib-safer.h: New file from coreutils, required by
13141         stdlib--.h.
13142
13143 2006-07-20  Paul Eggert  <eggert@cs.ucla.edu>
13144
13145         * gnulib-tool (func_usage): Document --assume-autoconf='latest-stable'.
13146
13147 2006-07-20  Bruno Haible  <bruno@clisp.org>
13148
13149         * gnulib-tool: Recognize new option --assume-autoconf.
13150         (autoconf_minversion): New variable.
13151         (func_get_filelist): Use it to decide whether to add onceonly_2_57.m4.
13152
13153 2006-07-20  Bruno Haible  <bruno@clisp.org>
13154
13155         * MODULES.html.sh (func_all_modules): Add a missing func_begin_table.
13156
13157 2006-07-19  Derek R. Price  <derek@ximbiot.com>
13158
13159         * lib/getaddrinfo.h: Don't define unimplemented AI_* flags.
13160         Reindent and repaginate.
13161
13162 2006-07-19  Derek Price  <derek@ximbiot.com>
13163
13164         * doc/gnulib.texi (Libtool and Windows):  Eliminate passive voice.
13165         Correct grammar.
13166
13167 2006-07-17  Bruno Haible  <bruno@clisp.org>
13168
13169         * modules/list: New file.
13170         * modules/array-list: New file.
13171         * modules/carray-list, modules/carray-list-tests: New files.
13172         * modules/linked-list, modules/linked-list-tests: New files.
13173         * modules/avltree-list, modules/avltree-list-tests: New files.
13174         * modules/rbtree-list, modules/rbtree-list-tests: New files.
13175         * modules/linkedhash-list, modules/linkedhash-list-tests: New files.
13176         * modules/avltreehash-list, modules/avltreehash-list-tests: New files.
13177         * modules/rbtreehash-list, modules/rbtreehash-list-tests: New files.
13178         * modules/oset: New file.
13179         * modules/array-oset: New file.
13180         * modules/avltree-oset, modules/avltree-oset-tests: New files.
13181         * modules/rbtree-oset, modules/rbtree-oset-tests: New files.
13182         * tests/test-carray_list.c: New file.
13183         * tests/test-linked_list.c: New file.
13184         * tests/test-avltree_list.c: New file.
13185         * tests/test-rbtree_list.c: New file.
13186         * tests/test-linkedhash_list.c: New file.
13187         * tests/test-avltreehash_list.c: New file.
13188         * tests/test-rbtreehash_list.c: New file.
13189         * tests/test-avltree_oset.c: New file.
13190         * tests/test-rbtree_oset.c: New file.
13191         * MODULES.html.sh (Container data structures): New section.
13192
13193 2006-07-17  Bruno Haible  <bruno@clisp.org>
13194
13195         * m4/gl_list.m4: New file.
13196
13197 2006-07-17  Bruno Haible  <bruno@clisp.org>
13198
13199         * lib/gl_list.h: New file.
13200         * lib/gl_list.c: New file.
13201         * lib/gl_array_list.h: New file.
13202         * lib/gl_array_list.c: New file.
13203         * lib/gl_carray_list.h: New file.
13204         * lib/gl_carray_list.c: New file.
13205         * lib/gl_linked_list.h: New file.
13206         * lib/gl_linked_list.c: New file.
13207         * lib/gl_anylinked_list1.h: New file.
13208         * lib/gl_anylinked_list2.h: New file.
13209         * lib/gl_avltree_list.h: New file.
13210         * lib/gl_avltree_list.c: New file.
13211         * lib/gl_anyavltree_list1.h: New file.
13212         * lib/gl_anyavltree_list2.h: New file.
13213         * lib/gl_rbtree_list.h: New file.
13214         * lib/gl_rbtree_list.c: New file.
13215         * lib/gl_anyrbtree_list1.h: New file.
13216         * lib/gl_anyrbtree_list2.h: New file.
13217         * lib/gl_anytree_list1.h: New file.
13218         * lib/gl_anytree_list2.h: New file.
13219         * lib/gl_linkedhash_list.h: New file.
13220         * lib/gl_linkedhash_list.c: New file.
13221         * lib/gl_anyhash_list1.h: New file.
13222         * lib/gl_anyhash_list2.h: New file.
13223         * lib/gl_avltreehash_list.h: New file.
13224         * lib/gl_avltreehash_list.c: New file.
13225         * lib/gl_rbtreehash_list.h: New file.
13226         * lib/gl_rbtreehash_list.c: New file.
13227         * lib/gl_anytreehash_list1.h: New file.
13228         * lib/gl_anytreehash_list2.h: New file.
13229
13230         * lib/gl_oset.h: New file.
13231         * lib/gl_oset.c: New file.
13232         * lib/gl_array_oset.h: New file.
13233         * lib/gl_array_oset.c: New file.
13234         * lib/gl_avltree_oset.h: New file.
13235         * lib/gl_avltree_oset.c: New file.
13236         * lib/gl_rbtree_oset.h: New file.
13237         * lib/gl_rbtree_oset.c: New file.
13238         * lib/gl_anytree_oset.h: New file.
13239
13240 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
13241
13242         * m4/mkancesdirs.m4: New file.
13243         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Mention dirchownmod.c,
13244         dirchownmod.h.  Don't require AC_FUNC_ALLOCA, gl_AFS, gl_CHDIR_SAFER;
13245         no longer needed.  Require gl_FUNC_LCHOWN, since dirchownmod.c needs
13246         it.
13247
13248 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
13249
13250         * lib/dirchownmod.c, lib/dirchownmod.h, lib/mkancesdirs.c:
13251         * lib/mkancesdirs.h: New files.
13252         * lib/mkdir-p.c: Don't include alloca.h, stdio.h, sys/types.h,
13253         unistd.h, string.h, chdir-safer.h, dirname.h, lchmod.h, lchown.h,
13254         save-cwd.h.  Instead, include dirchownmod.h and mkancesdirs.h.
13255         (make_dir_parents): New args MAKE_ANCESTOR, OPTIONS, ANNOUNCE,
13256         MODE_BITS.  Remove options VERBOSE_FMT_STRING, CWD_ERRNO.  All
13257         callers changed.  Revamp internals significantly, by not
13258         attempting to create directories that are temporarily more
13259         permissive than the final results.  Do not attempt to use
13260         save_cwd/restore_cwd; it isn't worth it for mkdir and install.
13261         This removes some race conditions, fixes some bugs, and simplifies
13262         things.  Use new dirchownmod function to do owner and mode changes.
13263         * lib/mkdir-p.h: Likewise.
13264         * lib/modechange.c (octal_to_mode): New function.
13265         (struct mode_change): New member mentioned.
13266         (make_node_op_equals): New arg mentioned.  All callers changed.
13267         (mode_compile): Keep track of which mode bits the user has explicitly
13268         mentioned.
13269         (mode_adjust): New arg DIR, so that we implement the X op correctly.
13270         New arg PMODE_BITS, to keep track of which mode bits the user
13271         mentioned; it treats S_ISUID and S_ISGID speciall.
13272         All callers changed.
13273         * lib/modechange.h: Likewise.
13274
13275 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
13276
13277         * MODULES.html.sh: Add mkancestors.
13278         * modules/mkancesdirs: New module.
13279         * modules/mkdir-p (Files): Remove lib/chdir-safer.c, lib/chdir-safer.h,
13280         lib/same-inode.h, m4/afs.m4, m4/chdir-safer.m4.
13281         The chdir-safer and afs files are now orphans; I'll remove them
13282         unless someone speaks up.
13283         Add lib/dirchownmod.c, lib/dirchownmod.h.
13284         (Depends-on): Remove alloca, chown, save-cwd, dirname.
13285         Add lchown, mkancesdirs.
13286         (Maintainer): Add self.
13287
13288 2006-07-15  Karl Berry  <karl@gnu.org>
13289
13290         * gnulib-tool: help message wording/arrangement.
13291
13292 2006-07-14  Simon Josefsson  <jas@extundo.com>
13293
13294         * doc/gnulib.texi (Libtool and Windows): New section.
13295
13296 2006-07-12  Simon Josefsson  <jas@extundo.com>
13297
13298         * modules/gendocs (License): Fix license, approved by Karl.
13299
13300 2006-07-12  Eric Blake  <ebb9@byu.net>
13301
13302         * MODULES.html.sh: Add gendocs.
13303
13304 2006-07-11  Eric Blake  <ebb9@byu.net>
13305
13306         * modules/fdl: New module, to install doc/fdl.texi.
13307         * MODULES.html.sh: Add new section for documentation modules.
13308         * gnulib-tool: Avoid space-tab.
13309         (--doc-base): New option, to manage files from doc.
13310
13311 2006-07-11  Eric Blake  <ebb9@byu.net>
13312
13313         * m4/absolute-header.m4: Fix comments to match recent change.
13314
13315 2006-07-11  Eric Blake  <ebb9@byu.net>
13316
13317         * gnulib-tool: List --doc-base before --tests-base.
13318
13319 2006-07-11  Derek R. Price  <derek@ximbiot.com>
13320
13321         * lib/glob.c: s/NAMLEN/_D_EXACT_NAMLEN/.
13322
13323 2006-07-11  Bruno Haible  <bruno@clisp.org>
13324
13325         * README: Mention where to put documentation.
13326
13327 2006-07-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
13328
13329         * doc/functions.texi, gnulib-tool.texi, gnulib.texi: Fix some typos.
13330
13331 2006-07-10  Paul Eggert  <eggert@cs.ucla.edu>
13332
13333         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Like today's change
13334         to stdint.m4.
13335
13336 2006-07-10  Paul Eggert  <eggert@cs.ucla.edu>
13337
13338         * m4/stdint.m4 (gl_STDINT_H): Like yesterday's change to
13339         absolute-header.m4.  Also, set ABSOLUTE_STDINT_H to a string
13340         "no/such/file/stdint.h" when there is no such file, so that
13341         the resulting C code can be parsed by dodgy compilers.
13342         Problems reported by Bob Proulx.
13343
13344 2006-07-10  Derek R. Price  <derek@ximbiot.com>
13345
13346         * lib/backupfile.c, dirfd.h, fts.c, getcwd.c, glob.c, glob_.h:
13347         Ignore the obsolescent !HAVE_DIRENT_H case.  Consolidate NAMLEN
13348         macros into the GNU _D_EXACT_NAMLEN.
13349         * lib/savedir.c:  Likewise.
13350         (savedirstream): Use _D_EXACT_NAMLEN in preference to strlen.
13351
13352 2006-07-10  Derek R. Price  <derek@ximbiot.com>
13353         and Paul Eggert  <eggert@cs.ucla.edu>
13354
13355         * m4/backupfile.m4, d-ino.m4, d-type.m4, dirfd.m4, fts.m4, getcwd.m4:
13356         * m4/savedir.m4:
13357         Ignore the obsolescent !HAVE_DIRENT_H case.  Consolidate NAMLEN
13358         macros into the GNU _D_EXACT_NAMLEN.
13359
13360 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
13361
13362         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Use "" rather than <>
13363         around the absolute name, to work around a problem with the HP-UX
13364         11.23 native C compiler, reported by Bob Proulx.
13365
13366 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
13367
13368         * doc/maintain.texi, make-stds.texi: Sync from
13369         <http://savannah.gnu.org/projects/gnustandards>.
13370
13371 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
13372
13373         * build-aux/depcomp, build-aux/install-sh: Sync from Automake.
13374
13375 2006-07-09  Jim Meyering  <jim@meyering.net>
13376
13377         * m4/glob.m4: Remove a doubled word in a comment.
13378
13379 2006-07-09  Jim Meyering  <jim@meyering.net>
13380
13381         * lib/argp-pv.c: Remove a doubled word in a comment.
13382         * lib/check-version.c (check_version): Likewise.
13383         * lib/javacomp.c (compile_java_class): Likewise.
13384
13385 2006-07-08  Paul Eggert  <eggert@cs.ucla.edu>
13386
13387         * gnulib-tool (func_get_filelist): Don't echo m4/onceonly_2_57.m4,
13388         for the benefit of people using Autoconf 2.60.  If you want to
13389         support older Autoconf versions you can copy m4/onceonly_2_57.m4
13390         (or m4/onceonly.m4, if pre-2.57) manually.
13391
13392 2006-07-08  Jim Meyering  <jim@meyering.net>
13393
13394         * m4/link-follow.m4: Remove one of two adjacent "whether"s in a
13395         comment.
13396         * m4/getopt.m4: Remove one of two adjacent "your"s in a comment.
13397         * m4/regex.m4 (gl_REGEX): Remove one of two adjacent "the"s in a
13398         comment.
13399
13400 2006-07-08  Jim Meyering  <jim@meyering.net>
13401
13402         * lib/getndelim2.h (getndelim2): Remove doubled "after" in comment.
13403
13404 2006-07-07  Simon Josefsson  <jas@extundo.com>
13405
13406         * tests/test-crc.c: Change expected crc value, the test vector
13407         were probably computed using the old broken crc.c?
13408
13409 2006-07-06  Simon Josefsson  <jas@extundo.com>
13410
13411         * modules/sys_socket (Files): Add m4/sockpfaf.m4 (this module is
13412         now the canonical place for the M4 file).
13413
13414         * modules/getaddrinfo (Files): Remove m4/sockpfaf.m4, we get it
13415         from the sys_socket dependency now.
13416
13417         * modules/inet_pton (Files): Ditto.
13418
13419         * modules/inet_ntop (Files): Ditto.
13420
13421 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
13422
13423         * modules/getusershell (configure.ac): Use gl_FUNC_GETUSERSHELL,
13424         not gl_PREREQ_GETUSERSHELL.
13425
13426 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
13427
13428         * m4/_inttypes_h.m4 (gl_INTTYPES_H): Use AC_CHECK_DECLS_ONCE
13429         with only one argument, for Autoconf 2.60.
13430         * m4/fileblocks.m4 (gl_PREREQ_FILEBLOCKS): AC_CHECK_DECLS_ONCE may
13431         expand to nothing, so add a shell command to avoid syntax error.
13432         * m4/getpass.m4 (gl_PREREQ_GETPASS): Likewise.
13433
13434 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
13435
13436         * lib/strtod.c (strtod): cast the argument of tolower to unsigned char.
13437
13438 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
13439
13440         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Don't check for getenv decl;
13441         no longer needed.  Check for isblank decl.
13442         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Don't check for getenv decl.
13443         * m4/regex.m4 (gl_PREREQ_REGEX): Dheck for isblank decl instead
13444         of existence.
13445
13446 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
13447
13448         * lib/getloadavg.c: Use __VMS, not VMS.
13449         * lib/getopt.c: Likewise.
13450         * lib/getpagesize.h: Likewise.
13451         * lib/glob.c: Remove most VMS cruft; it hasn't been tested for a while
13452         and probably does not work.
13453
13454 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
13455
13456         * lib/.cppi-disable: Add wcwidth.
13457         * lib/fnmatch.c (ISBLANK): Remove.  All uses changed to isblank.
13458         (isblank) [! (defined isblank || HAVE_DECL_ISBLANK)]: New macro.
13459         (ISGRAPH): Remove.  All uses changed to isgraph.
13460         (FOLD) [!defined _LIBC]: Remove special case.
13461         * lib/getdate.y (lookup_word): Remove no-longer-needed call to islower.
13462         * lib/regex_internal.h (isblank): Depend on HAVE_DECL_ISBLANK, not
13463         HAVE_ISBLANK.
13464         * lib/strftime.c (TOLOWER, TOUPPER) [!defined _LIBC]: Remove special
13465         case.
13466
13467 2006-07-06  Jim Hyslop  <jhyslop@dreampossible.ca>  (tiny change)
13468
13469         * lib/getaddrinfo.c: Changes to compile under MSVC6: changed
13470         '#if WIN32_NATIVE' to '#ifdef' & moved WSAAPI macro inside
13471         brackets.  Other minor changes to suppress some compiler
13472         warnings.
13473
13474 2006-07-06  Derek R. Price  <derek@ximbiot.com>
13475         and Paul Eggert  <eggert@cs.ucla.edu>
13476
13477         * m4/backupfile.m4 (gl_BACKUPFILE): Check for dirent.h, instead
13478         of invoking obsolescent AC_HEADER_DIRENT macro.
13479         * m4/d-ino.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_INO): Likewise.
13480         * m4/d-type.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Likewise.
13481         * m4/dirfd.m4 (gl_FUNC_DIRFD): Likewise.
13482         * m4/fts.m4 (gl_FUNC_FTS_CORE): Likewise.
13483         * m4/getcwd.m4 (gl_PREREQ_GETCWD): Likewise.
13484         * m4/glob.m4 (gl_PREREQ_GLOB): Likewise.
13485         * m4/savedir.m4 (gl_SAVEDIR): Likewise.
13486         * m4/readdir.m4: Remove; no longer needed.
13487
13488 2006-07-06  Derek R. Price  <derek@ximbiot.com>
13489         and Paul Eggert  <eggert@cs.ucla.edu>
13490
13491         * lib/backupfile.c [HAVE_DIRENT_H && ! HAVE_NDIR_H]:
13492         Don't worry about this obsolete case any more.
13493         (HAVE_DIR): Remove.  All uses removed; we now assume you can read
13494         directories.
13495         * lib/dirfd.h [HAVE_DIRENT_H && ! HAVE_NDIR_H]: Don't
13496         worry about this obsolete case any more.
13497         * lib/fts.c: Likewise.
13498         * lib/getcwd.c: Likewise.
13499         * lib/glob.h: Likewise.
13500         * lib/savedir.c: Likewise.
13501
13502 2006-07-05  Paul Eggert  <eggert@cs.ucla.edu>
13503
13504         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Use AC_CHECK_DECLS_ONCE
13505         rather than AC_CHECK_DECLS for strtoimax and strtoumax.
13506         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Remove; no longer
13507         needed.
13508         All uses removed.
13509         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
13510         * m4/strtoul.m4 (gl_PREREQ_STRTOUL): Likewise.
13511         * m4/exclude.m4 (gl_EXCLUDE): Don't check for isascii; no longer
13512         needed.
13513         * m4/getdate.m4 (gl_GETDATE): Likewise.
13514         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Likewise.
13515         * m4/memcasecmp.m4 (gl_MEMCASECMP): Likewise.
13516         * m4/strtod.m4 (gl_FUNC_STRTOD): Likewise.
13517         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
13518         * m4/strtoul.m4 (gl_PREREQ_STRTOUL): Likewise.
13519         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
13520         * m4/exclude.m4 (gl_EXCLUDE): Don't require AC_C_INLINE; no longer
13521         needed.
13522
13523 2006-07-05  Paul Eggert  <eggert@cs.ucla.edu>
13524
13525         * lib/memcasecmp.c: Include <limits.h>.
13526         (memcasecmp): Don't assume UCHAR_MAX <= INT_MAX.
13527         * lib/strtod.c (strtod): Don't assume isspace works on negative chars.
13528         Don't assume isdigit succeeds only on '0' through '9'.
13529
13530 2006-07-05  Eric Blake  <ebb9@byu.net>
13531
13532         * modules/getaddrinfo (Depends-on): Add snprintf.
13533
13534 2006-07-05  Eric Blake  <ebb9@byu.net>
13535
13536         * m4/sockpfaf.m4 (gl_SOCKET_FAMILIES): Use gl_HEADER_SYS_SOCKET
13537         to avoid 'header present but could not be compiled' on cygwin.
13538
13539 2006-07-05  Eric Blake  <ebb9@byu.net>
13540
13541         * lib/getaddrinfo.h (NI_NUMERICHOST, NI_NUMERICSERV): Define if
13542         missing from netdb.h.
13543         * lib/getaddrinfo.c (includes): Include inet_ntop and snprintf.
13544
13545 2006-07-05  Derek R. Price  <derek@ximbiot.com>
13546
13547         * m4/calloc.m4 (_AC_FUNC_CALLOC_IF): Don't require AC_HEADER_STDC;
13548         no longer needed.
13549         * m4/exclude.m4 (gl_EXCLUDE): Likewise.
13550         * m4/getdate.m4 (gl_GETDATE): Likewise.
13551         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Likewise.
13552         * m4/memcasecmp.m4 (gl_MEMCASECMP): Likewise.
13553         * m4/strtod.m4 (gl_FUNC_STRTOD): Likewise.
13554         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
13555         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
13556
13557 2006-07-05  Derek R. Price  <derek@ximbiot.com>
13558
13559         * lib/exclude.c (IN_CTYPE_DOMAIN, is_space): Remove; no longer needed.
13560         All uses of is_space replaced by isspace.
13561         * lib/exit.h: Don't talk about STDC_HEADERS.
13562         * lib/fnmatch.c (ISASCII): Remove; no longer needed.  All uses removed.
13563         (ISPRINT, ISDIGIT, ISALNUM, ISALPHA, ISCNTRL, ISLOWER, ISPUNCT):
13564         (ISSPACE, ISUPPER, ISXDIGIT): Remove; no longer needed.  All uses
13565         replaced by isprint etc.
13566         * lib/getdate.y (IN_CTYPE_DOMAIN, ISSPACE, ISALPHA, ISLOWER): Likewise.
13567         * lib/getusershell.c (IN_CTYPE_DOMAIN, ISSPACE): Likewise.
13568         * lib/memcasecmp.c (IN_CTYPE_DOMAIN, ISLOWER, TOUPPER): Likewise.
13569         * lib/strtod.c (IN_CTYPE_DOMAIN, ISSPACE, ISDIGIT, TOLOWER): Likewise.
13570         * lib/strtol.c (IN_CTYPE_DOMAIN): Likewise.
13571         * lib/xstrtol.c (IN_CTYPE_DOMAIN, ISSPACE): Likewise.
13572
13573 2006-07-05  Bruno Haible  <bruno@clisp.org>
13574
13575         * m4/strndup.m4 (gl_FUNC_STRNDUP): When cross-compiling, check whether
13576         the function exists, before testing against AIX.
13577         Reported by Martin Lambers <marlam@marlam.de>.
13578
13579 2006-07-04  Paul Eggert  <eggert@cs.ucla.edu>
13580
13581         * modules/cycle-check (lib_SOURCES): Add same-inode.h.
13582         From Mark D. Baushke.
13583
13584 2006-07-04  Paul Eggert  <eggert@cs.ucla.edu>
13585
13586         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Prepend three slashes
13587         to the absolute name, not just one, to bypass Sun C 5.8's
13588         "warning: #include of /usr/include/... may be non-portable".
13589
13590 2006-07-04  Eric Blake  <ebb9@byu.net>
13591
13592         * modules/dirname-tests: New test module.
13593         * tests/test-dirname.c: New file, replacing dirname.c
13594         TEST_DIRNAME section that was recently deleted.
13595
13596 2006-07-04  Bruno Haible  <bruno@clisp.org>
13597
13598         Assume ANSI C header files and <ctype.h> functions.
13599         * lib/mbswidth.c (IN_CTYPE_DOMAIN, ISPRINT, ISCNTRL): Remove macros.
13600         (mbsnwidth): Use isprint, iscntrl instead.
13601
13602 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
13603
13604         Merge from coreutils.
13605         * MODULES.html.sh: Add xstrtold.
13606         * modules/xstrtold: New file.
13607         * modules/cycle-check (Files): Add lib/same-inode.h.
13608         * modules/dirname (Files): Add m4/double-slash-root.m4.
13609         * modules/getcwd (Files): Add m4/getcwd-abort-bug.m4.
13610         * modules/mkdir-p (Files): Add lib/same-inode.h.
13611         * modules/same (Files): Add lib/same-inode.h.
13612
13613 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
13614
13615         * m4/absolute-header.m4: Renamed from full-header-path.m4.
13616         This is to keep the terminology clean; POSIX talks about
13617         "absolute pathnames", not "full pathnames", but the GNU
13618         Coding Standards say to use "path" for something else;
13619         so use "absolute" to keep both sides happy.
13620         (gl_ABSOLUTE_HEADER): Renamed from gl_FULL_HEADER_PATH.
13621         Set gl_absolute_header, not gl_full_header_path.
13622         Set gl_cv_absolute_<header>, not gl_full_path_<header>.
13623         Define ABSOLUTE_<HEADER>, not FULL_PATH_<HEADER>.
13624         All uses changed.
13625
13626         Merge from coreutils.
13627
13628         2006-06-30  Paul Eggert  <eggert@cs.ucla.edu>
13629
13630         * m4/c-strtod.m4 (gl_C_STRTOLD): Add c-strtod.c to LIBSOURCES.
13631         Require gl_USE_SYSTEM_EXTENSIONS, not gl_C_STRTOD, since we don't
13632         want to require the building of c-strtod.o.
13633         * m4/lib-check.m4 (cu_LIB_CHECK): Remove SEQ_LIBM, since seq no longer
13634         needs -lm directly.
13635         * m4/xstrtod.m4 (gl_XSTRTOLD): New macro.
13636
13637         2006-06-19  Paul Eggert  <eggert@cs.ucla.edu>
13638
13639         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Prefer binutils's
13640         --as-needed option if available.  Problem reported by Albert Chin in
13641         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00114.html>.
13642         However, use -Wl,--as-needed, not bare --as-needed, since HP-UX 11.11
13643         cc merely issues a bunch of annoying warnings for --as-needed
13644         (this problem was reported by Bob Proulx).  Also, try linking with
13645         -lm to detect a bug in binutils 2.16 (this problem was reported
13646         by Ralf Wildenhues).
13647
13648         2006-06-18  Jim Meyering  <jim@meyering.net>
13649
13650         Test for a bug that causes glibc's getcwd to suffer a failed assertion.
13651         * m4/getcwd-abort-bug.m4 (gl_FUNC_GETCWD_ABORT_BUG): New file and
13652         macro.
13653         * m4/getcwd.m4 (gl_FUNC_GETCWD): If we detect support for getcwd_null,
13654         also check for glibc-2.4's abort-inducing bug.
13655
13656         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Fix typo.
13657         Low-probability clean-up should be to use rmdir to get rid of
13658         the just-created directory, not unlink.
13659
13660         * m4/ftruncate.m4 (gl_FUNC_FTRUNCATE): If ftruncate is missing, make
13661         configure fail, and request a bug report to inform us about it.
13662         Add a comment that, barring reports to the contrary, in 2007 we'll
13663         assume ftruncate is universally available.
13664
13665         2006-04-17  Paul Eggert  <eggert@cs.ucla.edu>
13666
13667         * m4/filemode.m4 (gl_FILEMODE): Check for strmode declaration.
13668
13669         2006-03-12  Jim Meyering  <jim@meyering.net>
13670
13671         * m4/chdir-safer.m4 (gl_CHDIR_SAFER): Add same-inode.h to the list.
13672         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Likewise.
13673         * m4/same.m4 (gl_SAME): Likewise.
13674         * m4/root-dev-ino.m4 (gl_ROOT_DEV_INO): Likewise.
13675
13676         2006-03-11  Eric Blake  <ebb9@byu.net>
13677
13678         * m4/double-slash-root.m4: New file, provides gl_DOUBLE_SLASH_ROOT.
13679         * m4/dirname.m4 (gl_DIRNAME): Use gl_DOUBLE_SLASH_ROOT.
13680         * m4/dos.m4 (FILE_SYSTEM_PREFIX_LEN): Move from here to dirname.h.
13681         (FILE_SYSTEM_DRIVE_PREFIX_CAN_BE_RELATIVE): New define.
13682
13683 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
13684
13685         * lib/stdint_.h: Include <sys/types.h> after @FULL_PATH_STDINT_H@, for
13686         MacOS X 10.4.6.  Don't mention <sys/int_types.h>.  Problems
13687         reported by Mark D. Baushke, one in
13688         <http://lists.gnu.org/archive/html/bug-gnulib/2006-07/msg00015.html>.
13689
13690         Merge from coreutils.
13691
13692         * lib/.cppi-disable: Add stdint_.h.
13693         * lib/.cvsignore: Add stdint.h.
13694
13695         2006-06-30  Paul Eggert  <eggert@cs.ucla.edu>
13696
13697         * lib/xstrtod.c (XSTRTOD, DOUBLE): New macros, so that we can support
13698         both double and long double versions.
13699         (XSTRTOD): Renamed from xstrtod.  Use DOUBLE internally.
13700         * lib/xstrtold.c: New file.
13701         * lib/xstrtod.h (xstrtold): New decl.
13702
13703         2006-05-22  Paul Eggert  <eggert@cs.ucla.edu>
13704
13705         * lib/filemode.c (setst): Remove.
13706         (strmode): Rewrite to avoid setst.  This makes the code shorter,
13707         (arguably) clearer, and the generated code is a bit smaller on my
13708         Debian GNU/Linux stable x86 host.
13709
13710         2006-04-17  Paul Eggert  <eggert@cs.ucla.edu>
13711
13712         * lib/filemode.c: Include "filemode.h" first, to test the interface.
13713         Assume that filemode.h includes sys/types.h and sys/stat.h.
13714         (HAVE_ST_DM_MODE): New macro, moved here from ls.c.
13715         (ftypelet): Reorder to put common cases first, for efficiency.
13716         Add 'P', 'w'.  Remove 'M', since it's now the caller's responsibility
13717         to do 'M'.
13718         (strmode): Renamed from mode_string, and now stores 12 bytes instead
13719         of 10, for compatibility with FreeBSD.  All callers changed.
13720         (filemodestring): Now stores 12 bytes instead of 10, and sets file
13721         types that can't be deduced solely from st_mode.  First arg is now a
13722         const pointer.
13723         * lib/filemode.h (HAVE_DECL_STRMODE): Include <string.h> for strmode.
13724         (strmode): Renamed from mode_string.
13725         (filemodestring): New decl.
13726         * lib/stat-macros.h: Don't undef S_ISDOOR, since it's never buggy.
13727         (S_ISDOOR): Don't bother with S_IFDOOR, since that code is never
13728         needed.
13729         (S_ISPORT, S_ISWHT): New macros, if not already defined.
13730
13731         2006-04-12  Paul Eggert  <eggert@cs.ucla.edu>
13732
13733         * lib/fsusage.c: Don't include <inttypes.h> or <stdint.h>, since
13734         fsusage.h now does that.  Include fsusage.h first, to test interface.
13735         Prefer statvfs if it works, since it's blessed by POSIX.  Attempt
13736         at most one method (the old code could have generated decls that
13737         didn't conform to C89, not that this was ever exercised).
13738         * lib/fsusage.h: Include <inttypes.h> and <stdint.h> if they exist.
13739
13740         2006-03-19  Jim Meyering  <jim@meyering.net>
13741
13742         Work even in a chroot where d_ino values for entries in "/"
13743         don't match the stat.st_ino values for the same names.
13744         * lib/getcwd.c (__getcwd): When no d_ino value matches the target inode
13745         number, iterate through all entries again, using lstat instead.
13746         Reported by Kenshi Muto in http://bugs.debian.org/355810, and by
13747         Zouhir Hafidi in https://bugzilla.redhat.com/bugzilla/190656.
13748
13749         * lib/getcwd.c (__getcwd): Clarify a comment.
13750         Use memcpy in place of a call to strcpy.
13751
13752         2006-03-12  Jim Meyering  <jim@meyering.net>
13753
13754         * lib/fts-cycle.c (leave_dir): If cycle-check's saved dev-ino pair
13755         matches that of the current directory (which we're about to chdir ".."
13756         out of), then save the dev-ino of the parent, instead.
13757
13758         * lib/same-inode.h (SAME_INODE): New file/macro.
13759         * lib/chdir-safer.c (SAME_INODE): Remove definition.
13760         Include "same-inode.h", instead.
13761         * lib/same.c: Likewise.
13762         * lib/cycle-check.h: Include "same-inode.h".
13763         (CYCLE_CHECK_REFLECT_CHDIR_UP): Define.
13764         * lib/cycle-check.c (SAME_INODE): Remove definition.
13765         * lib/root-dev-ino.h: Include "same-inode.h".
13766
13767         2006-03-11  Eric Blake  <ebb9@byu.net>
13768
13769         * lib/same.c (same_name): s/base_name/last_component/
13770         * lib/backupfile.c (check_extension, numbered_backup): Likewise.
13771         * lib/filenamecat.c (file_name_concat): Likewise.
13772
13773         2006-03-11  Eric Blake  <ebb9@byu.net>,
13774                     Paul Eggert  <eggert@cs.ucla.edu>
13775
13776         * lib/dirname.h (FILE_SYSTEM_PREFIX_LEN): Move here from dos.m4.
13777         [FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX]: Don't treat 1: as a
13778         drive prefix.
13779         (IS_ABSOLUTE_FILE_NAME): Treat all drive letters as absolute on
13780         platforms like cygwin with FILE_SYSTEM_DRIVE_PREFIX_IS_ABSOLUTE.
13781         (last_component): New method.
13782         * lib/dirname.c (dir_len): Determine when drive letters need a
13783         subsequent slash.  Preserve // when it is special.
13784         (dir_name): Don't append dot when drive letter is absolute.
13785         [TEST_DIRNAME]: Move into a full-blown gnulib test.
13786         * lib/basename.c (base_name): New semantics - malloc the result.
13787         Preserve // when it is special.  Preserve relative files that look
13788         like drive letters.
13789         (base_len): Preserve // when it is special.
13790         (last_component): New method, similar to old base_name semantics.
13791         * lib/stripslash.c (strip_trailing_slashes): Use last_component, not
13792         base_name.  Strip redundant slashes from ///.
13793
13794 2006-07-03  Jim Meyering  <jim@meyering.net>
13795
13796         * lib/cycle-check.h (CYCLE_CHECK_REFLECT_CHDIR_UP): Abort if this
13797         macro is used before the first cycle_check call.
13798
13799 2006-07-03  Eric Blake  <ebb9@byu.net>
13800
13801         * modules/dirname (Depends-on): Add xstrndup.
13802
13803 2006-07-02  Paul Eggert  <eggert@cs.ucla.edu>
13804
13805         * m4/stdint.m4 (gl_STDINT_H): Use more-mnemonic identifiers for
13806         test cases, so that config.log is a bit easier to follow.
13807
13808 2006-07-02  Paul Eggert  <eggert@cs.ucla.edu>
13809
13810         * lib/stdint_.h (intmax_t, uintmax_t): Prefer long to long long if
13811         both are 64 bits, since this seems to be the tradition, and this
13812         prevents gcc -Wformat from warning about usages with PRIuMAX.  If
13813         we ever run into a host that prefers long long to long in this
13814         case, we'll need another configure-time test.  Problem reported by
13815         Jim Meyering.
13816
13817 2006-07-02  Eric Blake  <ebb9@byu.net>
13818
13819         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Simplify by using AC_CHECK_DECLS.
13820
13821 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
13822
13823         * modules/inttypes (Depends-on): No longer depends on stdint.
13824         * modules/stdint (Description): Say more about assumptions.
13825         Say that the fast types might differ.  Say macros are used.
13826         (Files): Remove m4/size_max.m4, m4/wchar_t.m4.  Add m4/longlong.m4.
13827         (Makefile.am): Revise list of substituted symbols to match
13828         new stdint.m4.
13829         * modules/stdint-tests (Files): Add m4/wchar_t.m4, m4/wint_t.m4.
13830         (configure.ac): Add gt_TYPE_WCHAR_T, gt_TYPE_WINT_T.
13831         * tests/test-stdint.c (verify_same_types)
13832         [! (__GNUC__ >= 2 && DO_PEDANTIC)]: Put in a decl, so that
13833         the code conforms to C99/C89.
13834         Test for WCHAR_MIN and WCHAR_MAX only if HAVE_WCHAR_T.
13835         Test for WINT_MIN and WINT_MAX only if HAVE_WINT_T.
13836
13837 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
13838
13839         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Backport from Autoconf 2.60,
13840         but fix a bug, by requiring at least 64 bits.
13841         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Likewise.
13842         * m4/longlong.m4 (gl_AC_TYPE_LONG_LONG): Now just call
13843         AC_TYPE_LONG_LONG_INT.  This macro is obsolete and will go soon.
13844         * m4/ulonglong.m4 (gl_AC_TYPE_UNSIGNED_LONG_LONG) Likewise.
13845
13846         * m4/stdint.m4 (gl_STDINT_H): Rewrite to accommodate stdint_.h
13847         changes.  Make 2.59 a prerequisite.  Check and substitute for
13848         HAVE_LONG_LONG_INT.  Rely on Autoconf to check for stdint.h and
13849         inttypes.h.  Do not use special include files; just use the
13850         defaults.  Check for sys/inttypes.h and sys/bitypes.h in the usual
13851         way now.  Remove no-longer-needed tests for HAVE_LONG_64BIT,
13852         HAVE_LONG_LONG_64BIT, int8_t, int16_t, int32_t, int64_t, uint8_t,
13853         uint16_t, uint32_t uint64_t, int_least8_t, int_least16_t,
13854         int_least32_t, int_least64_t, uint_least8_t, uint_least16_t,
13855         uint_least32_t, uint_least64_t, int_fast8_t, int_fast16_t,
13856         int_fast32_t, int_fast64_t, uint_fast8_t uint_fast16_t,
13857         uint_fast32_t, uint_fast64_t, intptr_t, uintptr_t, intmax_t,
13858         uintmax_t, INT8_MIN, INT8_MAX, UINT8_MAX, INT16_MIN, INT16_MAX,
13859         UINT16_MAX, INT32_MIN, INT32_MAX, UINT32_MAX, INT64_MIN,
13860         INT64_MAX, UINT64_MAX, INT_LEAST8_MIN, INT_LEAST8_MAX,
13861         UINT_LEAST8_MAX, INT_LEAST16_MIN, INT_LEAST16_MAX,
13862         UINT_LEAST16_MAX, INT_LEAST32_MIN, INT_LEAST32_MAX,
13863         UINT_LEAST32_MAX, INT_LEAST64_MIN, INT_LEAST64_MAX,
13864         UINT_LEAST64_MAX, INT_FAST8_MIN, INT_FAST8_MAX, UINT_FAST8_MAX,
13865         INT_FAST16_MIN, INT_FAST16_MAX, UINT_FAST16_MAX, INT_FAST32_MIN,
13866         INT_FAST32_MAX, UINT_FAST32_MAX, INT_FAST64_MIN, INT_FAST64_MAX,
13867         UINT_FAST64_MAX, INTPTR_MIN, INTPTR_MAX, UINTPTR_MAX, INTMAX_MIN,
13868         INTMAX_MAX, UINTMAX_MAX, PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN,
13869         SIG_ATOMIC_MAX, SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN,
13870         WINT_MAX.  Check for C99 conformance more strictly, by detecting
13871         bugs in glibc 2.4, Solaris 10, and OpenBSD 3.9.  On the other hand do
13872         not check for things that C99 does not require, e.g., int8_t.  If
13873         a test isn't needed unless <stdint.h> isn't working, and is
13874         unlikely to be needed for any other reason, then don't do it
13875         unless <stdint.h> isn't working.  Do not check for ptrdiff_t or
13876         size_t, since we assume C89 freestanding at least.  Do not check
13877         for sig_atomic_t, wchar_t, or wint_t, since the code now does
13878         the right thing even if the types are not defined.  Instead use:
13879         (gl_STDINT_TYPE_PROPERTIES): New macro.
13880         (gl_HEADER_STDINT_H, gl_HEADER_INTTYPES_H): Remove.  Don't bother
13881         testing whether <sys/types.h> clashes, as Autoconf does this for
13882         us now.  All uses removed.
13883         (gl_STDINT_CHECK_TYPES, gl_STDINT_MISSING_BOUND):
13884         (gl_STDINT_MISSING_BOUNDS, gl_STDINT_MISSING_BOUNDS2):
13885         (gl_CHECK_TYPE_SAME):
13886         Remove; no longer needed.
13887         (gl_STDINT_BITSIZEOF): Don't bother to check whether the type
13888         exists, since we'll return 0 anyway in that case.
13889         (gl_INTEGER_TYPE_SUFFIX, gl_STDINT_INCLUDES): New macros.
13890
13891 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
13892
13893         * lib/stdint_.h (_GL_STDINT_H): Renamed from _STDINT_H, to avoid
13894         possible collision with system files.
13895         (<stdio.h>, <time.h>, <wchar.h>) [defined __cplusplus && ! defined
13896         __STDC_CONSTANT_MACROS)]: Do not include, since we don't need
13897         WCHAR_MIN and WCHAR_MAX in this case.
13898         (<stddef.h>): Do not include; no longer needed.
13899         (<sys/types.h>): Include if @HAVE_SYS_TYPES_H@, not if
13900         (defined(__OpenBSD__) || defined(__bsdi__) || defined(__sgi)).
13901         (<sys/inttypes.h>): Include if @HAVE_SYS_INTTYPES_H@ &&
13902         !@HAVE_INTTYPES_H@, not if (defined(__FreeBSD__)
13903         && (__FreeBSD__ >= 3) && (__FreeBSD__ <= 4)).
13904         (__STDINT_H__) [@HAVE_STDINT_H@ && defined __sgi && ! defined
13905         __c99]: Define, to work around IRIX <stdint.h> incompatibility.
13906         (@FULL_PATH_STDINT_H@) [!(defined(__sgi) && @HAVE_INTTYPES_H@ &&
13907         !defined(__c99))]: Include in this case too, since it's harmless
13908         now.
13909         (<inttypes.h>) [@HAVE_INTTYPES_H@]: Include, since it's no longer
13910         dangerous to do so.
13911         (@FULL_PATH_INTTYPES_H@) [(defined(__hpux) || defined(_AIX)) &&
13912         @HAVE_INTTYPES_H@]: Do not include, since we now include <inttypes.h>.
13913         (_STDINT_MIN, _STDINT_MAX): New macros.
13914         (int8_t, uint8_t, int16_t, uint16_t, int32_t, uint32_t, int64_t):
13915         (uint64_t, int_least8_t, uint_least8_t, int_least16_t):
13916         (uint_least16_t, int_least32_t, uint_least32_t, int_least64_t):
13917         (uint_least64_t, int_fast8_t, uint_fast8_t, int_fast16_t):
13918         (uint_fast16_t, int_fast32_t, uint_fast32_t, int_fast64_t):
13919         (uint_fast64_t, intptr_t, uintptr_t, intmax_t, uintmax_t): Now
13920         macros, not typedefs; this simplifies things quite a bit.
13921         Use long int for all types narrower than int64_t.
13922         (intmax_t, uintmax_t, INTMAX_C, UINTMAX_C):
13923         Define in terms of long long int or int64_t or long int,
13924         not int64_t or int32_t.  This saves some compile-time testing.
13925         (INT8_MIN, INT8_MAX, UINT8_MAX, INT16_MIN, INT16_MAX, UINT16_MAX):
13926         (INT32_MIN, INT32_MAX, UINT32_MAX, INT64_MIN, INT64_MAX):
13927         (UINT64_MAX, INT_LEAST8_MIN, INT_LEAST8_MAX, UINT_LEAST8_MAX):
13928         (INT_LEAST16_MIN, INT_LEAST16_MAX, UINT_LEAST16_MAX):
13929         (INT_LEAST32_MIN, INT_LEAST32_MAX, UINT_LEAST32_MAX):
13930         (INT_LEAST64_MIN, INT_LEAST64_MAX, UINT_LEAST64_MAX, INT_FAST8_MIN):
13931         (INT_FAST8_MAX, UINT_FAST8_MAX, INT_FAST16_MIN, INT_FAST16_MAX):
13932         (UINT_FAST16_MAX, INT_FAST32_MIN, INT_FAST32_MAX, UINT_FAST32_MAX):
13933         (INT_FAST64_MIN, INT_FAST64_MAX, UINT_FAST64_MAX, INTPTR_MIN):
13934         (INTPTR_MAX, UINTPTR_MAX, INTMAX_MIN, INTMAX_MAX, UINTMAX_MAX):
13935         (PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX):
13936         (SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN, WINT_MAX):
13937         undef any previous version and define our own version, for
13938         simplicity and consistency with the new macros for types.
13939         (PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX):
13940         (SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN, WINT_MAX):
13941         Simplify definitions by using _STDINT_MIN and _STDINT_MAX
13942         where appropriate.  Rely on new symbols @PTRDIFF_T_SUFFIX@,
13943         @SIG_ATOMIC_T_SUFFIX@, @SIZE_T_SUFFIX@, @WCHAR_T_SUFFIX@,
13944         @WINT_T_SUFFIX@ to keep things simple here.
13945         (UINT8_C, UINT16_C, UINT32_C, INT64_C, UINT64_C):
13946         Simplify by assuming typical 8/16/32/64 host, since we're
13947         already doing that elsewhere anyway.
13948         Use (LONG_MAX >> 31 >> 31 == 1) rather than @HAVE_LONG_64BIT@,
13949         and assume long long int is 64 bits if available.  This
13950         speeds up 'configure'.
13951
13952 2006-07-01  Eric Blake  <ebb9@byu.net>
13953
13954         * m4/stdarg.m4 (gl_STDARG_H): Use proper AH_VERBATIM.
13955         Reported by Andreas Buening.
13956
13957 2006-07-01  Eric Blake  <ebb9@byu.net>
13958
13959         * m4/stdarg.m4 (gl_STDARG_H): Properly parenthesize gl_va_copy.
13960
13961 2006-06-30  Jim Hyslop  <jhyslop@dreampossible.ca>  (tiny change)
13962
13963         * lib/getaddrinfo.c: fixed typo
13964
13965 2006-06-29  Jim Meyering  <jim@meyering.net>
13966
13967         * modules/strftime (Maintainer): Add my name, since with the
13968         FPRINTFTIME changes strftime.c has forked from glibc.
13969
13970 2006-06-29  Eric Blake  <ebb9@byu.net>
13971
13972         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Use AC_C_INLINE.
13973
13974 2006-06-29  Eric Blake  <ebb9@byu.net>
13975
13976         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): New file.
13977
13978 2006-06-29  Eric Blake  <ebb9@byu.net>
13979
13980         * lib/stat_.h: New file.
13981
13982 2006-06-29  Eric Blake  <ebb9@byu.net>
13983
13984         * lib/stat_.h (rpl_mkdir): Declare inline, to avoid warnings about
13985         unused static function.
13986
13987 2006-06-29  Eric Blake  <ebb9@byu.net>
13988
13989         * doc/functions.texi (Function Portability): Document missing lstat
13990         on mingw.
13991
13992 2006-06-29  Eric Blake  <ebb9@byu.net>
13993
13994         * MODULES.html.sh: Add sys_stat.
13995         * modules/sys_stat: New module.
13996         * modules/mkstemp (Depends-on): Add sys_stat.
13997
13998 2006-06-29  Derek R. Price  <derek@ximbiot.com>
13999
14000         * m4/strftime.m4: Don't call AC_FUNC_STRFTIME.
14001
14002 2006-06-29  Derek R. Price  <derek@ximbiot.com>
14003
14004         * m4/c-bs-a.m4: Removed.
14005
14006 2006-06-29  Derek R. Price  <derek@ximbiot.com>
14007
14008         * lib/strftime.c: Assume strftime() exists.
14009
14010 2006-06-29  Derek Price  <derek@ximbiot.com>
14011
14012         * modules/c-bs-a: Removed - \a is C89.
14013         * MODULES.html.sh: Remove c-bs-a.
14014
14015 2006-06-29  Bruno Haible  <bruno@clisp.org>
14016
14017         * modules/wcwidth (License): Change to LGPL.
14018
14019 2006-06-28  Simon Josefsson  <jas@extundo.com>
14020
14021         * tests/test-getaddrinfo.c: Test getnameinfo too.  Call WSAStartup
14022         on _WIN32.
14023
14024         * modules/getaddrinfo (Depends-on): Add inet_ntop, needed by
14025         getnameinfo.
14026
14027 2006-06-28  Simon Josefsson  <jas@extundo.com>
14028
14029         * m4/getaddrinfo.m4: Look for getnameinfo prototypes too.
14030
14031 2006-06-28  Simon Josefsson  <jas@extundo.com>
14032
14033         * lib/getaddrinfo.c: Try to load ws2_32.dll on Windows, to find the
14034         functions there.  It will succeed on Windows XP, but on Windows
14035         2000 and (presumably) earlier, it will fail, and use the internal
14036         re-implementation.
14037         (use_win32_p): New function.
14038         (getaddrinfo): Use strtoul on servname, to support numeric ports.
14039         Support AI_NUMERICSERV to disable getservbyname.
14040         (getnameinfo): New function, only supports
14041         NI_NUMERICHOST|NI_NUMERICSERV for now.
14042
14043         * lib/getaddrinfo.h: Test and check for AI_* flags separately, MinGW
14044         only have some of them.  Add AI_NUMERICSERV.  Add prototype for
14045         getnameinfo.
14046
14047 2006-06-28  Eric Blake  <ebb9@byu.net>
14048
14049         * modules/wcwidth: New file.
14050         * modules/mbchar (Depends-on): Add wcwidth.
14051         * modules/mbswidth (Depends-on): Add wcwidth.
14052         * MODULES.html.sh: Add wcwidth.
14053
14054 2006-06-28  Eric Blake  <ebb9@byu.net>
14055
14056         * m4/mbswidth.m4 (gl_MBSDWIDTH): Move wcwidth from here...
14057         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): ...to this new file.
14058
14059 2006-06-28  Eric Blake  <ebb9@byu.net>
14060
14061         * lib/xvasprintf.h: Fix comments.
14062
14063 2006-06-28  Eric Blake  <ebb9@byu.net>
14064
14065         * lib/mbchar.h (wcwidth): Include wcwidth.h.
14066         * lib/mbswidth.c (wcwidth): Move from here...
14067         * lib/wcwidth.h: ...to this new file.
14068
14069 2006-06-28  Derek R. Price  <derek@ximbiot.com>
14070
14071         * m4/savedir.m4: Remove AC_FUNC_CLOSEDIR_VOID requirement.
14072
14073         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Don't require AC_C_CONST, since
14074         it's obsolete.
14075         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME): Likewise.
14076
14077 2006-06-28  Derek R. Price  <derek@ximbiot.com>
14078
14079         * lib/savedir.c (CLOSEDIR): Remove.  All uses changed to closedir.
14080         Autoconf 2.60 says this stuff was obsolete.
14081
14082 2006-06-28  Bruno Haible  <bruno@clisp.org>
14083
14084         * modules/wcwidth (Files): Add m4/wchar_t.m4.
14085
14086 2006-06-28  Bruno Haible  <bruno@clisp.org>
14087
14088         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Also require AC_C_INLINE and
14089         gt_TYPE_WCHAR_T.
14090
14091 2006-06-28  Bruno Haible  <bruno@clisp.org>
14092
14093         * lib/wcwidth.h: Declare nothing if !HAVE_WCHAR_T. Provide a fallback
14094         declaration for wcwidth.
14095         * lib/mbswidth.c: Restore the includes of <wchar.h> and <wctypes.h>.
14096
14097 2006-06-28  Bruno Haible  <bruno@clisp.org>
14098
14099         * lib/mkdtemp.c [MINGW]: Include <io.h>.
14100         (mkdir): Define using _mkdir.
14101
14102 2006-06-28  Bruno Haible  <bruno@clisp.org>
14103
14104         * lib/getaddrinfo.h: Fix POSIX URL.
14105         * lib/getaddrinfo.c (WIN32_NATIVE): New macro. Use it instead of
14106         _WIN32.
14107         (use_win32_p): Make static.
14108         (getaddrinfo): Reject service name if it is empty or does not consist
14109         solely of decimal digits, or if its value is > 65535.
14110         (getnameinfo): Remove useless casts.
14111
14112 2006-06-27  Simon Josefsson  <jas@extundo.com>
14113
14114         * modules/sys_select: New file, suggested by Bruno Haible, Paul
14115         Eggert and Martin Lambers.
14116
14117 2006-06-27  Simon Josefsson  <jas@extundo.com>
14118
14119         * m4/sys_select_h.m4: New file, suggested by Bruno Haible, Paul
14120         Eggert and Martin Lambers.
14121
14122 2006-06-27  Bruno Haible  <bruno@clisp.org>
14123
14124         * m4/stdint.m4 (gl_STDINT_BITSIZEOF): For nonexistent types, set the
14125         result to 0, not to empty.
14126         Reported by Martin Neitzel <neitzel@sco.gaertner.de>.
14127
14128 2006-06-27  Bruno Haible  <bruno@clisp.org>
14129
14130         * lib/stdint_.h (intmax_t, uintmax_t): Undefine before typedef.
14131
14132 2006-06-26  Simon Josefsson  <jas@extundo.com>
14133
14134         * m4/inet_ntop.m4: Don't check for sys/types.h, we assume it is
14135         present.
14136
14137 2006-06-26  Paul Eggert  <eggert@cs.ucla.edu>
14138
14139         * lib/base64.c (B64): Use _ as the formal parameter, not x, to avoid
14140         bug in IBM C V6 for AIX.  Problem reported by Larry Jones in
14141         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00181.html>.
14142
14143 2006-06-26  Mark D. Baushke  <mdb@gnu.org>
14144
14145         * m4/stdint.m4 (gl_STDINT_H): Treat BSD/OS like OpenBSD.
14146
14147 2006-06-26  Bruno Haible  <bruno@clisp.org>
14148
14149         * modules/stdint (Makefile.am): Also substitute HAVE_WCHAR_H.
14150
14151 2006-06-26  Bruno Haible  <bruno@clisp.org>
14152
14153         * m4/stdint.m4 (gl_STDINT_H): Test also for <wchar.h>.
14154
14155 2006-06-26  Bruno Haible  <bruno@clisp.org>
14156
14157         * m4/stdint.m4 (gl_STDINT_H): Don't include <stdint.h> when using the
14158         SGI C compiler in pre-C99 mode.
14159         Suggested by Mark D. Baushke and Larry Jones.
14160
14161 2006-06-26  Bruno Haible  <bruno@clisp.org>
14162
14163         * lib/stdint_.h: Include <wchar.h> if necessary for WCHAR_MIN or
14164         WCHAR_MAX.
14165         Reported by Mark D. Baushke and Larry Jones.
14166
14167 2006-06-26  Bruno Haible  <bruno@clisp.org>
14168
14169         * lib/stdint_.h: Don't include <stdint.h> when using the SGI C compiler
14170         in pre-C99 mode.
14171         Suggested by Mark D. Baushke and Larry Jones.
14172
14173 2006-06-23  Simon Josefsson  <jas@extundo.com>
14174             Bruno Haible  <bruno@clisp.org>
14175
14176         * gnulib-tool (func_emit_lib_Makefile_am): Define MOSTLYCLEANDIRS.
14177         Emit mostlyclean-local rule.
14178         (func_emit_tests_Makefile_am): Likewise.
14179         * modules/sys_socket (Makefile.am): Use MOSTLYCLEANDIRS.
14180
14181 2006-06-23  Mark D. Baushke  <mdb@gnu.org>
14182
14183         * lib/stdint_.h: Treat BSD/OS like OpenBSD.
14184
14185 2006-06-23  Bruno Haible  <bruno@clisp.org>
14186
14187         * tests/test-stdint.c: Update to match ISO C 99 Technical
14188         Corrigendum 1.
14189
14190 2006-06-23  Bruno Haible  <bruno@clisp.org>
14191
14192         * m4/stdint.m4 (gl_STDINT_H): Treat IRIX like OpenBSD.
14193
14194 2006-06-23  Bruno Haible  <bruno@clisp.org>
14195
14196         * lib/stdint_.h: Treat IRIX like OpenBSD.
14197
14198 2006-06-23  Bruno Haible  <bruno@clisp.org>
14199
14200         * lib/stdint_.h (UINT8_C, UINT16_C, UINT32_C): Define according to
14201         ISO C 99 Technical Corrigendum 1.
14202
14203 2006-06-22  Simon Josefsson  <jas@extundo.com>
14204
14205         * m4/sockpfaf.m4: Include winsock2.h too, to make it work under
14206         MinGW.
14207
14208 2006-06-22  Paul Eggert  <eggert@cs.ucla.edu>
14209
14210         * lib/glob.c (collated_compare): Remove 'const' uses that weren't
14211         needed.  Some compiler complained about some of them.  Problem reported
14212         by Larry Jones in
14213         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00172.html>.
14214
14215 2006-06-21  Simon Josefsson  <jas@extundo.com>
14216
14217         * tests/test-getaddrinfo.c: New file.
14218
14219         * modules/getaddrinfo-tests: New file.
14220
14221         * MODULES.html.sh: Add inet_pton.
14222
14223         * modules/inet_pton: New file.
14224
14225 2006-06-21  Simon Josefsson  <jas@extundo.com>
14226
14227         * m4/getaddrinfo.m4: Don't define WINVER.  Look for gethostbyname in
14228         -lws2_32 too.  Fixes getaddrinfo on Windows 2000, with the price
14229         of using the (limited) gnulib implementation on Windows XP.
14230
14231         * m4/inet_pton.m4: New file.
14232
14233 2006-06-21  Simon Josefsson  <jas@extundo.com>
14234
14235         * lib/getaddrinfo.c (getaddrinfo): Set ai_family in the return
14236         variable.
14237
14238         * lib/socket_.h: Don't define WINVER.
14239
14240         * lib/inet_pton.h, inet_pton.c: New file, taken from glibc but
14241         slightly modified to work in gnulib.
14242
14243 2006-06-21  Simon Josefsson  <jas@extundo.com>
14244
14245         * doc/gnulib.texi (Windows sockets): Add.
14246
14247 2006-06-21  Paul Eggert  <eggert@cs.ucla.edu>
14248
14249         * lib/read-file.c (fread_file): Start with buffer allocation of
14250         0 bytes rather than 1 byte; this simplifies the code.
14251         Don't invoke feof; it's not needed.  Refactor to avoid duplicate
14252         code to free buffer and save/restore errno.
14253         (internal_read_file): Remove unused local.
14254
14255 2006-06-20  Paul Eggert  <eggert@cs.ucla.edu>
14256
14257         * lib/openat.c (openat): Use ?:, not if, to work around GCC bug 4210
14258         <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=4210>.
14259         Problem reported by Denis Excoffier in
14260         <http://lists.gnu.org/archive/html/bug-tar/2006-06/msg00023.html>.
14261
14262 2006-06-19  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
14263
14264         * modules/sys_socket, modules/socklen: Include sys/types since
14265         FreeBSD 4.x's sys/socket.h needs it.
14266
14267 2006-06-19  Simon Josefsson  <jas@extundo.com>
14268
14269         * lib/inet_ntop.c: Always build inet_ntop4, since inet_ntop6 calls it.
14270
14271 2006-06-19  Paul Eggert  <eggert@cs.ucla.edu>
14272
14273         * lib/alloca_.h (alloca) [defined alloca]: Don't define or declare.
14274
14275 2006-06-19  Bruno Haible  <bruno@clisp.org>
14276
14277         * m4/stdint.m4 (gl_STDINT_H): Enclose the values of FULL_PATH_STDINT_H
14278         and FULL_PATH_INTTYPES_H in angle brackets.
14279         Reported by Mark D. Baushke <mdb@gnu.org>.
14280
14281 2006-06-17  Eric Blake  <ebb9@byu.net>
14282
14283         * m4/rmdir-errno.m4 (gl_FUNC_FMDIR_NOTEMPTY): Assume errno.h declares
14284         errno.
14285
14286 2006-06-17  Bruno Haible  <bruno@clisp.org>
14287
14288         * m4/stdint.m4 (gl_STDINT_H) [FreeBSD >= 5]: Don't include
14289         <sys/inttypes.h>.
14290
14291 2006-06-17  Bruno Haible  <bruno@clisp.org>
14292
14293         * m4/setenv.m4 (gl_PREREQ_SETENV, gl_PREREQ_UNSETENV): Remove test
14294         whether errno is declared. Assume <errno.h> declares errno.
14295
14296 2006-06-17  Bruno Haible  <bruno@clisp.org>
14297
14298         * lib/stdint_.h [FreeBSD >= 5]: Don't include <sys/inttypes.h>.
14299
14300 2006-06-17  Bruno Haible  <bruno@clisp.org>
14301
14302         * lib/stdint_.h (_UINT8_T, _UINT32_T, _UINT64_T): New macros. Fixes a
14303         problem on Solaris 2.5.1.
14304
14305 2006-06-16  Eric Blake  <ebb9@byu.net>
14306
14307         * lib/unsetenv.c [!defined errno]: Assume errno.h declares errno.
14308         * lib/unicodeio.c [!defined errno]: Likewise.
14309         * lib/strtol.c [!defined errno]: Likewise.
14310         * lib/strtod.c [!defined errno]: Likewise.
14311
14312 2006-06-15  Eric Blake  <ebb9@byu.net>
14313
14314         * m4/ssize_t.m4 (gt_TYPE_SSIZE_T): Work in spite of -Werror.
14315
14316 2006-06-15  Eric Blake  <ebb9@byu.net>
14317
14318         * config/srclist.txt (ssize_t.m4): Lose sync.
14319
14320 2006-06-15  Bruno Haible  <bruno@clisp.org>
14321
14322         * modules/stdint (Files): Include m4/full-header-path.m4,
14323         m4/size_max.m4, m4/wchar_t.m4.
14324         (Makefile.am): Many more substitutions.
14325         * modules/stdint-tests: New file.
14326         * tests/test-stdint.c: New file.
14327
14328 2006-06-15  Bruno Haible  <bruno@clisp.org>
14329
14330         * m4/stdint.m4 (gl_STDINT_H): Rewritten to produce a complete stdint.h.
14331         (gl_HEADER_STDINT_H, gl_HEADER_INTTYPES_H, gl_STDINT_CHECK_TYPES,
14332         gl_STDINT_MISSING_BOUND, gl_STDINT_MISSING_BOUNDS,
14333         gl_STDINT_MISSING_BOUNDS2, gl_STDINT_BITSIZEOF, gl_CHECK_TYPES_SIGNED,
14334         gl_CHECK_TYPE_SAME): New macros.
14335
14336 2006-06-15  Bruno Haible  <bruno@clisp.org>
14337
14338         * m4/size_max.m4 (gl_SIZE_MAX): Make it work also when cross-compiling.
14339
14340 2006-06-15  Bruno Haible  <bruno@clisp.org>
14341
14342         * lib/stdint_.h: Rewritten to be fully auto-configured.
14343         Fixes bug on HP-UX/IA64.
14344
14345 2006-06-11  Paul Eggert  <eggert@cs.ucla.edu>
14346
14347         * lib/getdate.y (__attribute__): Don't define if already defined.
14348         Problem reported by Larry Jones.
14349         * lib/utimens.c (__attribute__): Likewise.
14350
14351 2006-06-04  Paul Eggert  <eggert@cs.ucla.edu>
14352
14353         * lib/regexec.c (group_nodes_into_DFAstates): Fix a buffer overrun
14354         reported by Andreas Schwab.
14355
14356 2006-05-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
14357             Bruno Haible  <bruno@clisp.org>
14358
14359         * m4/strndup.m4 (gl_FUNC_STRNDUP): Replace the AC_REPLACE_FUNCS with a
14360         check for the declaration of strnlen and a run test that exposes the
14361         AIX 5.1 strnlen bug.  In the failure case, #define strndup to
14362         rpl_strndup.
14363
14364 2006-05-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
14365             Bruno Haible  <bruno@clisp.org>
14366
14367         * lib/strndup.c (strndup) [!_LIBC]: Don't undefine macro definition.
14368
14369 2006-05-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
14370
14371         * m4/c-strtod.m4 (gl_C99_STRTOLD): Use a link test rather than a
14372         compile test, for Tru64 4.0D.
14373
14374 2006-05-28  Karl Berry  <karl@gnu.org>
14375
14376         * config/srclist.txt (printf-args.c): lose sync.
14377
14378 2006-05-26  Martin Lambers  <marlam@marlam.de>
14379
14380         * lib/getpass.c: Updates the test for the native W32 API, and adds
14381         missing includes, thus fixing compilation warnings.
14382
14383 2006-05-25  Sergey Poznyakoff  <gray@gnu.org.ua>
14384
14385         * lib/exclude.c (exclude_fnmatch): New function.
14386         (excluded_file_name): Call exclude_fnmatch.
14387         * lib/exclude.h (excluded_file_name): New prototype
14388
14389 2006-05-25  Paul Eggert  <eggert@cs.ucla.edu>
14390
14391         * lib/tempname.c (small_open, large_open): New macros.
14392         (__open, __open64) [!_LIBC]: Remove.
14393         (__gen_tempname): Use small_open and large_open instead of __open
14394         and __open64.  This fixes a portability bug on HP-UX 11.11i
14395         reported by Simon Wing-Tang in
14396         <http://lists.gnu.org/archive/html/bug-coreutils/2006-05/msg00114.html>.
14397
14398 2006-05-24  Bruno Haible  <bruno@clisp.org>
14399
14400         * lib/printf-args.c (printf_fetchargs): Turn NULL pointers for
14401         TYPE_STRING and TYPE_WIDE_STRING into a non-NULL replacement.
14402         Reported by Thorsten Maerz <torte@netztorte.de> via
14403         Aaron Stone <aaron@serendipity.cx>.
14404
14405 2006-05-19  Paul Eggert  <eggert@cs.ucla.edu>
14406
14407         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Rename cache variables to use
14408         gl_ rather than jm_.  Link, don't run, so that cross-compiles are
14409         allowed.  Check that resulting type is arithmetic.  Move AC_REQUIRE
14410         and AC_CHECK_HEADERS_ONCE outside of AC_CACHE_CHECK, since they're
14411         not really conditional on the cache.
14412         (gl_PREREQ_NANOSLEEP): Check for sys/select.h.
14413
14414 2006-05-19  Paul Eggert  <eggert@cs.ucla.edu>
14415
14416         * lib/nanosleep.c [HAVE_SYS_SELECT_H]: Include <sys/select.h>.
14417         Use the usual Autoconf way to include <time.h> and/or sys/time.h.
14418         (my_usleep): Don't mishandle maximum value.
14419
14420 2006-05-19  Jim Meyering  <jim@meyering.net>
14421
14422         * lib/getugroups.c: Correct an outdated comment.  From Bruno Haible.
14423
14424 2006-05-17  Bruno Haible  <bruno@clisp.org>
14425
14426         Cygwin portability.
14427         * lib/classpath.c (PATH_SEPARATOR) [CYGWIN]: Define as ':'.
14428
14429 2006-05-17  Bruno Haible  <bruno@clisp.org>
14430
14431         * lib/stdint_.h: Fix recognition of Cygwin.
14432
14433 2006-05-15  Bruno Haible  <bruno@clisp.org>
14434
14435         * build-aux/config.rpath: Improve support for Sun C 5.9 on Linux, based
14436         on libtool patch by Ralf Wildenhues.
14437
14438 2006-05-14  Paul Eggert  <eggert@cs.ucla.edu>
14439
14440         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Fix overly-picky
14441         test for C99 conformance; (bool) 0.5 is an integer constant
14442         expression, but (bool) -0.5 is not.  Problem reported by Fedor
14443         Sergeev in <http://forum.sun.com/jive/thread.jspa?threadID=96202>.
14444
14445 2006-05-11  Simon Josefsson  <jas@extundo.com>
14446
14447         * m4/xvasprintf.m4: Fix obvious typo.
14448
14449 2006-05-11  Jim Meyering  <jim@meyering.net>
14450
14451         * lib/sha1.c (sha1_buffer): Correct comment: s/MD5/SHA1/.  From
14452         James Lemley.
14453
14454 2006-05-10  Simon Josefsson  <jas@extundo.com>
14455
14456         * lib/md4.c: Typo fix, update copyright years.
14457         (K1, K2): Don't use L because it turn computations into 64-bit on
14458         64-bit platforms.
14459
14460 2006-05-10  Paul Eggert  <eggert@cs.ucla.edu>
14461
14462         * lib/crc.c (crc32_update): Remove unnecessary L suffix.
14463         * lib/md4.c (rol): Cast right-shift arg to uint32_t to prevent
14464         unwanted sign propagation, e.g., on hosts with 64-bit int.
14465         There still are some problems with reeelly weird theoretical hosts
14466         (e.g., 33-bit int) but it's not worth worrying about now.
14467         * lib/sha1.c (rol): Likewise.
14468         (K1, K2, K3, K4): Remove unnecessary L suffix.
14469
14470 2006-05-10  Bruno Haible  <bruno@clisp.org>
14471
14472         * lib/des.c: Cast to avoid warnings.
14473
14474 2006-05-09  Bruno Haible  <bruno@clisp.org>
14475
14476         * modules/xvasprintf (Files): Add m4/xvasprintf.m4.
14477         (Depends-on): Depend also on xsize, stdarg.
14478         (configure.ac): Add gl_XVASPRINTF.
14479
14480 2006-05-09  Bruno Haible  <bruno@clisp.org>
14481
14482         * m4/xvasprintf.m4: New file.
14483
14484 2006-05-09  Bruno Haible  <bruno@clisp.org>
14485
14486         * lib/xvasprintf.c: Include limits.h, string.h, xsize.h.
14487         (EOVERFLOW): Define fallback value.
14488         (xstrcat): New function.
14489         (xvasprintf): Recognize the special case of a string concatenation.
14490
14491 2006-05-08  Eric Blake  <ebb9@byu.net>
14492
14493         * gnulib-tool (func_version): Base copyright year on CVS date.
14494         (func_emit_copyright_notice): New function.
14495         (func_emit_lib_Makefile_am): Use it.
14496         (func_emit_tests_Makefile_am): Likewise.
14497         (func_import): Likewise.
14498
14499 2006-05-08  Bruno Haible  <bruno@clisp.org>
14500
14501         * modules/stdarg: New file.
14502         * MODULES.html.sh (func_all_modules): Add section for <stdarg.h>.
14503
14504 2006-05-08  Bruno Haible  <bruno@clisp.org>
14505
14506         * m4/stdarg.m4: New file, from GNU gettext.
14507
14508 2006-05-08  Bruno Haible  <bruno@clisp.org>
14509
14510         * config/srclist.txt (build-aux/config.rpath): different from latest
14511         release.
14512
14513 2006-05-08  Bruno Haible  <bruno@clisp.org>
14514
14515         * build-aux/config.rpath: Add support for Sun C 5.9 on Linux.
14516
14517 2006-05-05  Jim Meyering  <jim@meyering.net>
14518
14519         * m4/warning.m4: New file, derived from bison's file by the same name.
14520
14521 2006-05-03  Bruno Haible  <bruno@clisp.org>
14522
14523         * lib/stdint_.h: Shorter URL.
14524         * lib/inttypes.h: Likewise.
14525
14526 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
14527
14528         * modules/inttypes (Maintainer): Change from Derek Price to 'all'.
14529
14530 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
14531
14532         * lib/verify.h: Document the internals better.  Most of this change
14533         was written by Bruno Haible.
14534
14535 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
14536
14537         * doc/verify.texi: New file, partly based on a proposal by
14538         Bruno Haible.
14539
14540 2006-05-02  Bruno Haible  <bruno@clisp.org>
14541
14542         * m4/full-header-path.m4 (gl_FULL_HEADER_PATH): Move the include_next
14543         test from here...
14544         * m4/_inttypes_h.m4 (gl_INTTYPES_H): ... to here.
14545
14546 2006-04-29  Bruno Haible  <bruno@clisp.org>
14547
14548         * lib/gcd.c: Use WORD_T and GCD instead of unsigned long and gcd.
14549         Suggested by Oskar Liljeblad <oskar@osk.mine.nu>.
14550
14551 2006-04-29  Bruno Haible  <bruno@clisp.org>
14552
14553         * gnulib-tool: Make --update option actually work.
14554
14555 2006-04-29  Bruno Haible  <bruno@clisp.org>
14556
14557         * doc/gcd.texi: New file.
14558         * doc/gnulib.texi: Include it.
14559
14560 2006-04-25  Paul Eggert  <eggert@cs.ucla.edu>
14561
14562         * lib/getdate.y (get_date): When adding relative date, start with the
14563         initial time, not with the result of the first mktime call.
14564
14565 2006-04-25  Bruno Haible  <bruno@clisp.org>
14566
14567         * gnulib-tool (func_import): Output the include directives in three
14568         blocks, sorted separately.
14569         Reported by Ben Pfaff <blp@cs.stanford.edu>.
14570
14571 2006-04-24  Paul Eggert  <eggert@cs.ucla.edu>
14572
14573         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Use prototype
14574         to define main with arguments, for C++.  Reported by Eric Blake.
14575         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC):
14576         Prefer 'int main ()' to 'int main (void)', for C++.
14577         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Likewise.
14578         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Specify a return type
14579         for 'main', for C99 and C++.
14580
14581 2006-04-24  Paul Eggert  <eggert@cs.ucla.edu>
14582
14583         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Use return, not exit.
14584         Don't assume that exit status -1 is valid.
14585         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
14586         * m4/putenv.m4 (gl_FUNC_PUTENV): Likewise.
14587         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Likewise.
14588         * m4/readdir.m4 (GL_FUNC_READDIR): Include <stdlib.h>.
14589         * m4/rename.m4 (vb_FUNC_RENAME): Likewise.
14590         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Use AC_RUN_IFELSE,
14591         not AC_TRY_RUN.  Use return, not exit.  Don't assume that
14592         functions can be used without declaring them, or that you can
14593         exit with status -1.
14594         * m4/utimes-null.m4 (gl_FUNC_UTIMES_NULL): Likewise.
14595
14596 2006-04-24  Karl Berry  <karl@gnu.org>
14597
14598         * config/srclist.txt (longdouble.m4): sync lost.
14599
14600 2006-04-24  Eric Blake  <ebb9@byu.net>
14601
14602         * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Avoid unused variable warning.
14603
14604 2006-04-24  Bruno Haible  <bruno@clisp.org>
14605
14606         * m4/poll.m4 (gl_FUNC_POLL): When cross-compiling, reject also the
14607         poll() implementation in AIX.
14608         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
14609
14610 2006-04-24  Bruno Haible  <bruno@clisp.org>
14611
14612         * m4/poll.m4 (gl_FUNC_POLL): Rearrange code, so that POLL_H gets
14613         assigned exactly once.
14614
14615 2006-04-23  Claudio Fontana  <claudio@gnu.org>
14616             Bruno Haible  <bruno@clisp.org>
14617
14618         * modules/gettext (Makefile.am): Add a -I flag for <libintl.h>.
14619         * gnulib-tool (func_emit_lib_Makefile_am): Emit empty default value
14620         for AM_CPPFLAGS.
14621
14622 2006-04-23  Bruno Haible  <bruno@clisp.org>
14623
14624         * modules/copy-file: Depend on unistd.
14625         * modules/execute: Likewise.
14626         * modules/fatal-signal: Likewise.
14627         * modules/findprog: Likewise.
14628         * modules/mkdtemp : Likewise.
14629         * modules/pipe: Likewise.
14630         * modules/wait-process: Likewise.
14631
14632 2006-04-23  Bruno Haible  <bruno@clisp.org>
14633
14634         * lib/fwriteerror.c (fwriteerror): Call fclose also when an error
14635         condition was already detected.
14636         Reported by Ben Pfaff <blp@cs.stanford.edu>.
14637
14638 2006-04-23  Bruno Haible  <bruno@clisp.org>
14639
14640         * lib/copy-file.c: Include <unistd.h> unconditionally.
14641         * lib/execute.c: Likewise.
14642         * lib/fatal-signal.c: Likewise.
14643         * lib/findprog.c: Likewise.
14644         * lib/mkdtemp.c: Likewise.
14645         * lib/pipe.h: Likewise.
14646         * lib/pipe.c: Likewise.
14647         * lib/wait-process.h: Likewise.
14648
14649 2006-04-23  Bruno Haible  <bruno@clisp.org>
14650
14651         * gnulib-tool (func_usage): Fix --import description. Document
14652         --update.
14653         (func_import): Create temporary file in a temporary directory, if
14654         --dry-run is specified. Silence errors from 'grep' when there are no
14655         m4 files in $m4dir.
14656         (func_create_testdir): Silence errors from 'grep' when there are no
14657         m4 files in $m4dir.
14658         Reported by Karl Berry <karl@freefriends.org>.
14659
14660 2006-04-20  Bruno Haible  <bruno@clisp.org>
14661
14662         * m4/argp.m4 (gl_ARGP): Don't call AC_CHECK_DECLS_ONCE with more than
14663         one argument, so that the code will be portable to Autoconf 2.60.
14664         * m4/getlogin_r.m4 (gl_PREREQ_GETLOGIN_R): Likewise.
14665         * m4/getpass.m4 (gl_PREREQ_GETPASS): Likewise.
14666         * m4/unlocked-io.m4 (gl_FUNC_GLIBC_UNLOCKED_IO): Likewise.
14667
14668 2006-04-19  Derek Price  <derek@ximbiot.com>
14669             Eric Blake  <ebb9@byu.net>
14670
14671         * m4/full-header-path.m4 (gl_FULL_HEADER_PATH): Use </full/path.h>
14672         rather than "/full/path.h".  Update comment to match.  Shorten &
14673         generalize m4_translit call via AS_TR_CPP.
14674
14675 2006-04-19  Derek Price  <derek@ximbiot.com>
14676             Eric Blake  <ebb9@byu.net>
14677
14678         * lib/inttypes.h: Correct grammar in comment.
14679
14680 2006-04-18  Derek Price  <derek@ximbiot.com>
14681             Paul Eggert  <eggert@cs.ucla.edu>
14682
14683         * modules/inttypes: New file.
14684         * modules/strtoimax, modules/strtoumax: Depend on inttypes.
14685
14686 2006-04-18  Derek Price  <derek@ximbiot.com>
14687             Paul Eggert  <eggert@cs.ucla.edu>
14688
14689         * m4/_inttypes_h.m4, m4/full-header-path.m4, m4/include_next.m4:
14690         New files.
14691
14692 2006-04-18  Derek Price  <derek@ximbiot.com>
14693             Paul Eggert  <eggert@cs.ucla.edu>
14694
14695         * lib/inttypes.h: New file.
14696         * lib/strtoimax.c: Assume <inttypes.h>.
14697
14698 2006-04-15  Paul Eggert  <eggert@cs.ucla.edu>
14699
14700         * lib/utimens.c (futimens): glibc futimesat messes up if /proc
14701         isn't mounted.  Problem reported by Kir Kolyshkin.
14702
14703 2006-04-13  Paul Eggert  <eggert@cs.ucla.edu>
14704
14705         * lib/regcomp.c (init_dfa): Don't use wchar_t or wctype_t if
14706         RE_ENABLE_I18N is not defined.  Problem reported by Mark D. Baushke via
14707         Derek R. Price.
14708         * lib/regex.h (RE_DUP_MAX): Update comment to match current
14709         implementation.
14710
14711 2006-04-12  Eric Blake  <ebb9@byu.net>
14712
14713         * modules/time_r (Makefile.am): Remove lib_SOURCES line, as this
14714         is now done automatically by the corresponding Autoconf macro.
14715
14716 2006-04-11  Paul Eggert  <eggert@cs.ucla.edu>
14717
14718         * m4/time_r.m4 (gl_TIME_R): Add AC_LIBSOURCES for time_r.c and
14719         time_r.h.
14720
14721 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
14722
14723         Merge regex changes from libc, removing some of our
14724         POSIX-conformance changes that were rejected and redoing them in a
14725         less-intrusive way.
14726
14727         * lib/regcomp.c (re_compile_internal, init_dfa):
14728         Length arg is now size_t, not Idx.  All uses changed.
14729         (peek_token): Forward decl now says internal_function.
14730         (__re_error_msgid, __re_error_msgid_idx):
14731         Now static rather than extern with attribute_hidden.
14732         (re_compile_pattern) [!defined _LIBC]: Use K&R-style defn.
14733         For some reason libc prefers K&R style defns for external functions.
14734         (regerror) [!defined _LIBC]: Likewise.
14735         (re_set_syntax, re_compile_fastmap, regcomp, regfree, re_comp):
14736         (seek_collating_symbol_entry, lookup_collation_sequence_value):
14737         (build_range_exp, build_collating_symbol):
14738         Use K&R-style defn.
14739         (re_compile_fastmap): Use '\0' to memset, not 0.
14740         (utf8_sb_map): Make the calculations more obvious.
14741         (init_dfa, parse_bracket_exp, build_charclass_op):
14742         Call calloc and cast result, as glibc does.
14743         (init_word_char, fetch_token, peek_token, peek_token_bracket):
14744         (build_range_exp, build_collating_symbol):
14745         Now internal functions.
14746
14747         * lib/regex.c [!defined _LIBC]: Allow compiling with C++ compilers.
14748
14749         * lib/regex.h (__USE_GNU_REGEX): New macro.  Don't depend on
14750         _REGEX_SOURCE any more; depend on _GNU_SOURCE instead.
14751         Don't depend on VMS; depend on __VMS instead, for POSIX
14752         namespace cleanness.
14753         (regoff_t): Define to ssize_t, not long int.
14754
14755         Remove the REG_ macros named below.  Instead, make the old names
14756         (e.g., RE_BACKSLASH_ESCAPE_IN_LISTS) visible only if
14757         __USE_GNU_REGEX.
14758         (REG_BACKSLASH_ESCAPE_IN_LISTS):
14759         (REG_BK_PLUS_QM, REG_CHAR_CLASSES, REG_CONTEXT_INDEP_ANCHORS):
14760         (REG_CONTEXT_INDEP_OPS, REG_CONTEXT_INVALID_OPS):
14761         (REG_DOT_NEWLINE, REG_DOT_NOT_NULL, REG_HAT_LISTS_NOT_NEWLINE):
14762         (REG_INTERVALS, REG_LIMITED_OPS, REG_NEWLINE_ALT):
14763         (REG_NO_BK_BRACES, REG_NO_BK_PARENS, REG_NO_BK_REFS):
14764         (REG_NO_BK_VBAR, REG_NO_EMPTY_RANGES):
14765         (REG_UNMATCHED_RIGHT_PAREN_ORD, REG_NO_POSIX_BACKTRACKING):
14766         (REG_NO_GNU_OPS, REG_DEBUG, REG_INVALID_INTERVAL_ORD):
14767         (REG_IGNORE_CASE, REG_CARET_ANCHORS_HERE):
14768         (REG_CONTEXT_INVALID_DUP, REG_NO_SUB, REG_SYNTAX_EMACS):
14769         (REG_SYNTAX_AWK, REG_SYNTAX_GNU_AWK, REG_SYNTAX_POSIX_AWK):
14770         (REG_SYNTAX_GREP, REG_SYNTAX_EGREP, REG_SYNTAX_POSIX_EGREP):
14771         (REG_SYNTAX_ED, REG_SYNTAX_SED, _REG_SYNTAX_POSIX_COMMON):
14772         (REG_SYNTAX_POSIX_BASIC, REG_SYNTAX_POSIX_MINIMAL_BASIC):
14773         (REG_SYNTAX_POSIX_EXTENDED, REG_SYNTAX_POSIX_MINIMAL_EXTENDED):
14774         (REG_DUP_MAX, REG_UNALLOCATED, REG_REALLOCATE, REG_FIXED):
14775         (REG_NREGS):
14776         Remove.  All uses replaced by the old RE_* names.
14777         (RE_BACKSLASH_ESCAPE_IN_LISTS):
14778         (RE_BK_PLUS_QM, RE_CHAR_CLASSES, RE_CONTEXT_INDEP_ANCHORS):
14779         (RE_CONTEXT_INDEP_OPS, RE_CONTEXT_INVALID_OPS):
14780         (RE_DOT_NEWLINE, RE_DOT_NOT_NULL, RE_HAT_LISTS_NOT_NEWLINE):
14781         (RE_INTERVALS, RE_LIMITED_OPS, RE_NEWLINE_ALT):
14782         (RE_NO_BK_BRACES, RE_NO_BK_PARENS, RE_NO_BK_REFS):
14783         (RE_NO_BK_VBAR, RE_NO_EMPTY_RANGES):
14784         (RE_UNMATCHED_RIGHT_PAREN_ORD, RE_NO_POSIX_BACKTRACKING):
14785         (RE_NO_GNU_OPS, RE_DEBUG, RE_INVALID_INTERVAL_ORD):
14786         (RE_IGNORE_CASE, RE_CARET_ANCHORS_HERE):
14787         (RE_CONTEXT_INVALID_DUP, RE_NO_SUB):
14788         Don't bother having these macros be independent of each others'
14789         values, since they no longer exist in the POSIX name space.
14790
14791         Rename the following member names back to their old names,
14792         unless !__USE_GNU_REGEX.  All uses changed back.
14793         (buffer): Renamed from re_buffer.
14794         (allocated): Renamed from re_allocated.
14795         (used): Renamed from re_used.
14796         (syntax): Renamed from re_syntax.
14797         (fastmap): Renamed from re_fastmap.
14798         (translate): Renamed from re_translate.
14799         (can_be_null): Renamed from re_can_be_null.
14800         (regs_allocated): Renamed from re_regs_allocated.
14801         (fastmap_accurate): Renamed from re_fastmap_accurate.
14802         (no_sub): Renamed from re_no_sub.
14803         (not_bol): Renamed from re_not_bol.
14804         (not_eol): Renamed from re_not_eol.
14805         (newline_anchor): Renamed from re_newline_anchor.
14806         (num_regs): Renamed from rm_num_regs.
14807         (start): Renamed from rm_start.
14808         (end): Renamed from rm_end.
14809
14810         (free_state): Move up a bit.
14811
14812         * lib/regex_internal.h (inline) [__GNUC__ < 3 && defined _LIBC]:
14813         #define to be empty.
14814         (ASCII_CHARS): New macro, replacing all uses of 0x80 and/or SBC_MAX / 2
14815         when that is what is intended.
14816         (SBC_MAX): Define to UCHAR_MAX + 1, not 256.
14817         (__re_error_msgid, __re_error_msgid_idx): Remove decls; not needed.
14818         (MAX): New macro.
14819         (re_xmalloc, re_calloc, re_xrealloc, re_x2realloc): Remove.
14820         All uses changed back to re_malloc, etc.  It's now the caller's
14821         responsibility to check for overflow; all callers changed.
14822         (re_alloc_oversized, re_x2alloc_oversized, re_xnmalloc, re_xnrealloc):
14823         (re_x2nrealloc): Remove.
14824         (free_state): Remove decl.
14825
14826         * lib/regexc.c (regexec, re_match, re_search, re_match_2, re_search_2):
14827         (re_set_registers, re_exec):
14828         Use K&R-style defn.
14829
14830         2006-01-31  Roland McGrath  <roland@redhat.com>
14831
14832         * lib/regcomp.c (calc_eclosure_iter): Remove dead variables.
14833         Reported by Mike Frysinger <vapier@gentoo.org>.
14834
14835         2006-01-15  Andreas Jaeger  <aj@suse.de>
14836
14837         [BZ #1950]
14838         * lib/regex_internal.c (re_string_reconstruct): Adjust for
14839         build_wcs_upper_buffer change.
14840         (build_wcs_upper_buffer): Change return type.
14841
14842         2005-12-10  Ulrich Drepper  <drepper@redhat.com>
14843
14844         * lib/regex_internal.h: Include <stdint.h> if available.
14845
14846         2005-12-06  Paolo Bonzini  <bonzini@gnu.org>
14847
14848         * lib/regex_internal.h (SIZE_MAX): Provide a default definition.
14849
14850         2005-10-14  Ulrich Drepper  <drepper@redhat.com>
14851
14852         * lib/regcomp.c: Adjust for changed secondary hash function.
14853
14854         2005-09-30  Ulrich Drepper  <drepper@redhat.com>
14855
14856         * lib/regex.h: Pretty printing.
14857         Clean up namespace a bit.
14858
14859         2005-09-30  Jakub Jelinek  <jakub@redhat.com>
14860
14861         * lib/regexec.c (update_cur_sifted_state, check_arrival,
14862         check_arrival_add_next_nodes): Avoid using uninitialized variable.
14863
14864         2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
14865                     Ulrich Drepper  <drepper@redhat.com>
14866
14867         [BZ #1302]
14868         * lib/regex_internal.h (bitset_t): Renamed from bitset.  All uses
14869         changed.
14870         (bitset_word_t): Renamed from bitset_word.  All uses changed.
14871
14872         2005-09-22  Ulrich Drepper  <drepper@redhat.com>
14873
14874         [BZ #281]
14875         * lib/regex.h: Define RE_TRANSLATE_TYPE as unsigned char *.
14876         * lib/regcomp.c: Remove unnecessary uses of
14877         unsigned RE_TRANSLATE_TYPE.
14878         * lib/regex_internal.h: Likewise.
14879         * lib/regex_internal.c: Likewise.
14880         * lib/regexec.c: Likewise.
14881         Based on a patch by Stepan Kasal <kasal@ucw.cz>.
14882
14883         2005-09-07  Ulrich Drepper  <drepper@redhat.com>
14884
14885         * lib/regexec.c (find_recover_state): Remove unnecessary
14886         initialization.
14887         (transit_state_bkref): Make DFA a const pointer.
14888         (get_subexp): Likewise.
14889         (check_arrival): Likewise.
14890         (update_cur_sifted_state): Likewise.
14891         (re_search_internal): Likewise.
14892         (prune_impossible_nodes): Likewise.
14893         (acquire_init_state_context): Likewise.
14894         (proceed_next_node): Likewise.
14895         (set_regs): Likewise.
14896         (free_fail_stack_return): Likewise.
14897         (check_arrival_expand_ecl): Mark DFA parameter as const.
14898         (check_arrival_expand_ecl_sub): Likewise.
14899         (check_subexp_limits): Likewise.
14900         (sub_epsilon_src_nodes):  Likewise.
14901         (add_epsilon_src_nodes):  Likewise.
14902         (merge_state_array): Likewise.
14903         (update_regs): Likewise.
14904         (build_trtable): Likewise.
14905         (sift_states_backward): Mark MCTX parameter as const.
14906         (build_sifted_states): Likewise.
14907         (update_cur_sifted_state): Likewise.
14908         (sift_states_mkref): Likewise.
14909         (check_arrival_expand_ecl): Mark eclosure as const.
14910         (check_dst_limits_calc_pos_1): Likewise.
14911         * lib/regex_internal.h (re_match_context_t): Make dfa a const
14912         pointer.
14913
14914         2005-09-06  Ulrich Drepper  <drepper@redhat.com>
14915
14916         * lib/regexec.c (merge_state_with_log): Define dfa as const pointer.
14917         (transit_state_sb): Likewise.
14918         (transit_state_mb): Likewise.
14919         (sift_states_iter_mb): Likewise.
14920         (check_arrival_add_next_nodes): Likewise.
14921         (check_node_accept_bytes): Change first parameter to pointer-to-const.
14922         [_LIBC] (re_search_2_stub): Use mempcpy.
14923
14924         * lib/regex_internal.c (re_string_reconstruct): Avoid calling
14925         mbrtowc for very simple UTF-8 case.
14926
14927         * lib/regex_internal.c (re_acquire_state): Make DFA pointer arg
14928         a pointer-to-const.
14929         (re_acquire_state_context): Likewise.
14930         * lib/regex_internal.h: Adjust prototypes.
14931
14932         * lib/regex.c: Prevent using C++ compilers.
14933
14934         * lib/regex_internal.c (re_acquire_state): Minor code rearrangement.
14935         (re_acquire_state_context): Likewise.
14936
14937 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
14938
14939         * modules/regex (Depends-on): Add ssize_t.
14940
14941 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
14942
14943         * m4/regex.m4 (gl_REGEX): Check for new glibc interface to
14944         translation table.
14945
14946 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
14947
14948         * doc/gnulib-tool.texi (Modified imports): pathname -> file name.
14949
14950 2006-03-29  Mark D. Baushke  <mdb@gnu.org>
14951             Bruno Haible  <bruno@clisp.org>
14952
14953         * lib/stdint_.h: On OpenBSD, don't redefine types already included in
14954         <sys/types.h> and <inttypes.h>.
14955
14956 2006-03-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
14957
14958         * m4/argz.m4 (gl_FUNC_ARGZ): If we define `error_t', also define
14959         `__error_t_defined', so argp.h will not typedef the former.
14960
14961 2006-03-25  Paul Eggert  <eggert@cs.ucla.edu>
14962
14963         * m4/regex.m4 (gl_REGEX): Don't insist on REG_SYNTAX_POSIX_EGREP,
14964         REG_SYNTAX_EMACS, and REG_IGNORE_CASE.  Settle for the traditional
14965         glibc names.  Even if glibc is changed to conform to POSIX, the
14966         traditional names will be available anyway, since regex depends on
14967         the extensions module.  Also, fix a longstanding typo in the
14968         implementation of Spencer ERE test #75 from grep 2.3.  Problems
14969         reported by Emanuele Giaquinta.  Also, change sense of cached
14970         variable, so that the message makes sense.
14971
14972 2006-03-24  Simon Josefsson  <jas@extundo.com>
14973
14974         * lib/base64.c: Fix problems reported by Eric Blake <ebb9@byu.net>,
14975         including some doc fixes.
14976         (base64_encode_alloc): Fix +1 bug on allocation failures.
14977
14978 2006-03-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
14979
14980         * lib/base64.c (base64_encode): Do not read past end of array with
14981         unsanitized input on systems with CHAR_BIT > 8.
14982
14983 2006-03-24  Eric Blake  <ebb9@byu.net>
14984
14985         * lib/time_r.c (copy_string_result): Remove, as it is no longer used.
14986
14987 2006-03-22  Karl Berry  <karl@gnu.org>
14988
14989         * config/srclist.txt (*setenv.[ch]): get from coreutils.
14990         * config/srclistvars.sh (COREUTILS): new var.
14991
14992 2006-03-17  Jim Meyering  <jim@meyering.net>
14993
14994         * m4/regex.m4 (gl_REGEX): Fix typo in last change:
14995         s/_REGEX_WIDE_OFFSETS/_REGEX_LARGE_OFFSETS/.
14996
14997 2006-03-16  Paul Eggert  <eggert@cs.ucla.edu>
14998
14999         * m4/regex.m4 (gl_REGEX): Don't check for off_t, since the code
15000         no longer needs it.  Instead, check that regoff_t is as least
15001         as wide as ptrdiff_t.
15002
15003         Don't define _REGEX_WIDE_OFFSETS unless using the included regex,
15004         so that our regex.h stays compatible with the installed regex.
15005         This is helpful for installers who configure --without-included-regex.
15006         Problem reported by Emanuele Giaquinta.
15007
15008 2006-03-16  Paul Eggert  <eggert@cs.ucla.edu>
15009
15010         * lib/regex.h (regoff_t) [defined _REGEX_LARGE_OFFSETS]:
15011         Typedef to long int, not to off_, as POSIX will likely change
15012         in that direction.
15013
15014 2006-03-15  Eric Blake  <ebb9@byu.net>
15015
15016         * m4/dirfd.m4 (gl_FUNC_DIRFD): Use AC_REQUIRE for AC_HEADER_DIRENT.
15017
15018 2006-03-13  Sergey Poznyakoff  <gray@gnu.org.ua>
15019
15020         * lib/argp-help.c (validate_uparams): Fix typo
15021         * lib/argp-parse.c (argp_default_options): Consistently begin help
15022         messages with a lowercase letter.
15023
15024 2006-03-11  Paul Eggert  <eggert@cs.ucla.edu>
15025
15026         * lib/time_r.h (asctime_r, ctime_r): Remove.  These functions can
15027         overrun buffers and shouldn't be used (much as gets shouldn't be
15028         used).
15029         * lib/time_r.c (asctime_r, ctime_r): Likewise.
15030
15031 2006-03-08  Simon Josefsson  <jas@extundo.com>
15032
15033         * m4/gc-random.m4: Permit 'no' as variable values and fix warnings,
15034         suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
15035
15036 2006-03-08  Simon Josefsson  <jas@extundo.com>
15037
15038         * m4/gc-random.m4: Call AC_CANONICAL_HOST and use $host_os instead of
15039         $target, suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
15040
15041 2006-03-08  Simon Josefsson  <jas@extundo.com>
15042
15043         * lib/gc-gnulib.c (randomize): Don't open files called 'no', they
15044         signal that configure disabled the device.
15045
15046 2006-03-08  Simon Josefsson  <jas@extundo.com>
15047
15048         * build-aux/maint.mk: Fix refresh-po, to handle no translated
15049         languages.
15050
15051 2006-03-07  Simon Josefsson  <jas@extundo.com>
15052
15053         * modules/getopt (Depends-on): Add unistd.
15054
15055         * modules/unistd: New file.
15056
15057 2006-03-07  Simon Josefsson  <jas@extundo.com>
15058
15059         * modules/gc-random: New file.
15060
15061 2006-03-07  Simon Josefsson  <jas@extundo.com>
15062
15063         * m4/unistd_h.m4: New file.
15064
15065 2006-03-07  Simon Josefsson  <jas@extundo.com>
15066
15067         * m4/readline.m4 (gl_FUNC_READLINE): Rewrite the cached part of the
15068         test to be side-effect free by storing the result in the cache
15069         variable gl_cv_lib_readline, and moving the assignment of
15070         LIBREADLINE and LTLIBREADLINE outside the COMMANDS-TO-SET-IT.
15071         From Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
15072
15073 2006-03-07  Simon Josefsson  <jas@extundo.com>
15074
15075         * m4/gc-random.m4: New file, mostly from gc.m4.  Warn instead of
15076         error on missing devices (the functions will return an error).
15077
15078         * m4/gc.m4: Move random stuff to gc-random.m4
15079
15080 2006-03-07  Simon Josefsson  <jas@extundo.com>
15081
15082         * lib/unistd_.h: New file.
15083
15084 2006-03-07  Simon Josefsson  <jas@extundo.com>
15085
15086         * lib/gc-libgcrypt.c, gc-gnulib.c: Use GC_USE_RANDOM.
15087
15088 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
15089
15090         * m4/unistd_h.m4 (gl_HEADER_UNISTD): Rename, to match modules file.
15091         Problem reported by Juan Manuel Guerrero.
15092
15093 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
15094
15095         * lib/c-stack.c: Include unistd.h unconditionally, since we now assume
15096         the unistd module.
15097         * lib/getlogin_r.c: Likewise.
15098         * lib/getlogin_r.h: Likewise.
15099         * lib/glob.c: Likewise.
15100         * lib/pagealign_alloc.c: Likewise.
15101         * lib/unistd_.h: Remove; no longer needed.
15102
15103 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
15104
15105         * MODULES.html.sh (Support for systems lacking POSIX:2001):
15106         Add unistd.
15107         * modules/c-stack (Depends-on): Add unistd.
15108         * modules/getlogin_r: Likewise.
15109         * modules/glob: Likewise.
15110         * modules/pagealign_alloc: Likewise.
15111         * modules/unistd (Files): Remove lib/unistd_.h.
15112         (EXTRA_DIST): Remove.
15113         (unistd.h): Create using 'echo' rather than 'cp', so that we don't
15114         need unistd_.h.
15115         (MOSTLYCLEANFILES): Remove unistd.h-t.
15116
15117 2006-03-03  Simon Josefsson  <jas@extundo.com>
15118
15119         * build-aux/maint.mk: Add several syntax checks from CoreUtils.
15120
15121 2006-03-03  Simon Josefsson  <jas@extundo.com>
15122
15123         * build-aux/maint.mk: Add refresh-po rule, based on ideas from
15124         libidn and bison.
15125
15126 2006-03-03  Simon Josefsson  <jas@extundo.com>
15127
15128         * build-aux/maint.mk: Add indent target.
15129
15130 2006-03-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de> (tiny change)
15131
15132         * m4/poll.m4 (gl_FUNC_POLL): If we deem poll(2) unacceptable, use
15133         our replacement poll.h in any case, to avoid a differing
15134         declaration from a system header.  Seen on AIX.
15135
15136 2006-03-01  Simon Josefsson  <jas@extundo.com>
15137
15138         * lib/readline.c: Fix typo, tiny patch from Stepan Kasal
15139         <kasal@ucw.cz>.
15140
15141 2006-03-01  Paul Eggert  <eggert@cs.ucla.edu>
15142
15143         * modules/gettime (Depends-on): Add extensions module.
15144         * modules/nanosleep (Depends-on): Likewise.
15145         * modules/settime (Depends-on): Likewise.
15146
15147 2006-03-01  Paul Eggert  <eggert@cs.ucla.edu>
15148
15149         * m4/clock_time.m4 (gl_CLOCK_TIME): Require gl_USE_SYSTEM_EXTENSIONS,
15150         not merely AC_GNU_SOURCE, for the benefit of Solaris 10 when compiled
15151         pedantically.
15152         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
15153         * m4/timespec.m4 (gl_TIMESPEC): Likewise.
15154
15155         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Use "=" with "test",
15156         not "==".  Reported by Ralf Wildenhues.
15157
15158 2006-03-01  Karl Berry  <karl@gnu.org>
15159
15160         * doc/Copyright/request-*: new files, synced from gnuorg.
15161
15162 2006-03-01  Karl Berry  <karl@gnu.org>
15163
15164         * config/srclist.txt (Copyright/*): new entries.
15165
15166 2006-02-28  Simon Josefsson  <jas@extundo.com>
15167
15168         * lib/getopt.c: Protect #include of unistd.h, for MSVS.
15169
15170 2006-02-27  Simon Josefsson  <jas@extundo.com>
15171
15172         * lib/base64.h: Indent #define's.  From Jim Meyering
15173         <jim@meyering.net>.
15174
15175 2006-02-27  Jim Meyering  <jim@meyering.net>
15176
15177         Revert the change of 2006-02-24, so these files can continue
15178         to be sync'd from gettext.
15179         * lib/mkdtemp.c, setenv.c, unsetenv.c: *Un*-normalize inclusion
15180         of `config.h'.
15181
15182 2006-02-26  Paul Eggert  <eggert@cs.ucla.edu>
15183
15184         * modules/intprops: New file.
15185         * MODULES.html.sh (Numeric conversion functions <stdlib.h>):
15186         Add intprops.
15187         * modules/getloadavg (Files): Remove lib/intprops.h.
15188         (Depends-on): Add intprops.
15189         * modules/human: Likewise.
15190         * modules/inttostr: Likewise.
15191         * modules/openat: Likewise.
15192         * modules/sig2str: Likewise.
15193         * modules/userspec: Likewise.
15194         * modules/utimecmp: Likewise.
15195         * modules/xnanosleep: Likewise.
15196         * modules/xstrtol: Likewise.
15197
15198 2006-02-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny changes)
15199
15200         * modules/xstrtod: Omit xstrtod.h, xstrtod.c; they're in LIB_SOURCES.
15201         * modules/lock-tests (TESTS): Use $(EXEEXT).
15202         * modules/tls-tests: Likewise.
15203         * modules/argp-tests: Likewise.
15204         (check_PROGRAMS): New var, replacing...
15205         (noinst_PROGRAMS, test_argp_SOURCES): Remove.
15206
15207 2006-02-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
15208
15209         * lib/mkdtemp.c, lib/setenv.c, lib/unsetenv.c: Normalize inclusion of
15210         `config.h'.
15211
15212 2006-02-24  Paul Eggert  <eggert@cs.ucla.edu>
15213
15214         * lib/glob.c: Say "invalid" rather than "illegal" in comments.
15215
15216 2006-02-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
15217
15218         Sync from coreutils.
15219         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Require gl_FUNC_LCHMOD and
15220         gl_CHDIR_SAFER.
15221
15222 2006-02-22  Jim Meyering  <jim@meyering.net>
15223
15224         Sync from coreutils.
15225         * m4/chdir-safer.m4: New file.
15226
15227 2006-02-20  Paul Eggert  <eggert@cs.ucla.edu>
15228
15229         * lib/getcwd.c (AT_FDCWD): Work around a bug in Solaris 9 and 10, where
15230         AT_FDCWD exceeds INT_MAX.
15231         * lib/openat.h (AT_FDCWD): Likewise.
15232
15233 2006-02-17  Eric Blake  <address@hidden>
15234
15235         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Fix caching error.
15236
15237 2006-02-16  Simon Josefsson  <jas@extundo.com>
15238
15239         * modules/getaddrinfo (Depends-on): Add sys_socket.
15240
15241 2006-02-15  Simon Josefsson  <jas@extundo.com>
15242
15243         * build-aux/maint.mk: Add dsyntax-check rule.
15244
15245 2006-02-15  Eric Blake  <ebb9@byu.net>
15246
15247         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Don't attempt using
15248         winsock2.h or ws2tcpip.h when sys/socket.h is present. Fixes
15249         'present but cannot compile' warnings on cygwin.
15250         * m4/socklen.m4 (gl_TYPE_SOCKLEN_T): Use gl_HEADER_SYS_SOCKET.  Don't
15251         use ws2tcpip.h if sys/socket.h works.
15252         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Use gl_HEADER_SYS_SOCKET.
15253         (gl_GETADDRINFO): Don't use ws2tcpip.h when sys/socket.h is present.
15254
15255 2006-02-14  Simon Josefsson  <jas@extundo.com>
15256
15257         * modules/maintainer-makefile (Files): Rename.
15258
15259         * build-aux/GNUmakefile: Rename Makefile.maint to maint.mk
15260         and (the local) Makefile.cfg to maint-cfg.mk.
15261
15262         * build-aux/Makefile.maint, build-aux/maint.mk: Renamed the former
15263         to the latter.
15264
15265         * modules/maintainer-makefile: New module.
15266
15267         * build-aux/Makefile.maint: New file, from GNU CoreUtils, although
15268         severaly stripped to make it possible to build it up from scratch
15269         with reliable tests.
15270
15271         * build-aux/GNUmakefile: New file, from GNU CoreUtils with some
15272         fixes to permit overriding the default actions when configure and
15273         makefile are not available.
15274
15275 2006-02-14  Paul Eggert  <eggert@cs.ucla.edu>
15276
15277         Sync from coreutils.
15278         * modules/lstat (Depends-on): Don't depend on xalloc.
15279         (License): Change from GPL to LGPL, since this is now simply a
15280         replacement for a libc function.
15281
15282 2006-02-14  Jim Meyering  <jim@meyering.net>
15283
15284         Sync from coreutils.
15285
15286         Eliminate the unwelcome (albeit unlikely) possibility of xmalloc
15287         failure on deficient systems, and simplify gnulib lgpl dependencies.
15288         * lib/lstat.c (rpl_lstat): Rewrite to use stat() in place of the
15289         xmalloc/lstat combination.  Based on a patch from Bruno Haible.
15290
15291         * lib/xalloc-die.c: Remove unused definition of N_.
15292
15293 2006-02-14  Jim Meyering  <jim@meyering.net>
15294
15295         Sync from coreutils.
15296         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): Invoke
15297         AC_CHECK_FUNCS(getmntent) unconditionally so that tests of
15298         $ac_cv_func_getmntent (e.g., in gl_LIST_MOUNTED_FILE_SYSTEMS) need not
15299         double-quote uses of that variable, to accommodate the rare case in
15300         which getmntent is available in none of the libraries checked.  This
15301         happens at least on FreeBSD 5.0.
15302
15303 2006-02-13  Simon Josefsson  <jas@extundo.com>
15304
15305         * gnulib-tool (Usage): Fix --import, from
15306         karl@freefriends.org (Karl Berry).
15307
15308 2006-02-13  Sergey Poznyakoff  <gray@gnu.org.ua>
15309
15310         * lib/argp-fmtstream.c: Restore another bugfix lost on 2005-12-12
15311
15312 2006-02-07  Sergey Poznyakoff  <gray@gnu.org.ua>
15313
15314         * lib/argp-namefrob.h: Restore changes accidentally lost during the
15315         "autoupdate" on 2005-12-12.
15316
15317 2006-02-07  Paul Eggert  <eggert@cs.ucla.edu>
15318
15319         * modules/closeout (Depends-on): Remove atexit.
15320
15321 2006-02-07  Paul Eggert  <eggert@cs.ucla.edu>
15322
15323         * lib/closeout.c (close_stdout): Don't assume 'bool' converts nonzero
15324         ints to 0 or 1, as this isn't true for the stdbool.h substitute.
15325
15326 2006-02-05  Paul Eggert  <eggert@cs.ucla.edu>
15327
15328         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Don't #define
15329         __EXTENSIONS__ if this causes compilation to fail.  Problem
15330         reported by Nelson H. F. Beebe with Solaris 10 and Sun C 5.7
15331         c89 -D_XOPEN_SOURCE -D_XOPEN_SOURCE_EXTENDED.
15332
15333 2006-01-27  Paul Eggert  <eggert@cs.ucla.edu>
15334
15335         * lib/fnmatch.c (L_): Renamed from L, to work around a bug in
15336         Mac OS X 10.3.9 with GCC 3 reported by Claudio Fontana in
15337         <http://lists.gnu.org/archive/html/bug-gnulib/2006-01/msg00074.html>.
15338         All uses changed.
15339
15340 2006-01-26  Simon Josefsson  <jas@extundo.com>
15341
15342         * lib/socket_.h: Set WINVER to 0x0501, to make sure getaddrinfo
15343         prototype is visible on mingw32.
15344
15345         * lib/getaddrinfo.h: Define EAI_ADDRFAMILY and EAI_SYSTEM if not set,
15346         for mingw32.
15347
15348         * lib/gai_strerror.c, getaddrinfo.h: Protect netdb.h #include (for
15349         mingw32).
15350
15351 2006-01-26  Paul Eggert  <eggert@cs.ucla.edu>
15352
15353         * lib/fts.c (diropen): Open with O_NOCTTY | O_NONBLOCK too.  Don't
15354         attempt to open for write; this always fails, at least on POSIX
15355         hosts.  This reinstates the 2006-01-09 change, which was
15356         inadvertently removed.
15357
15358 2006-01-26  Bruno Haible  <bruno@clisp.org>
15359
15360         * gnulib-tool (func_import): Use "trap 'exit $?' instead of "trap :".
15361         Reported by Paul Eggert.
15362
15363 2006-01-26  Bruno Haible  <bruno@clisp.org>
15364             Paul Eggert  <eggert@cs.ucla.edu>
15365
15366         * lib/stdbool_.h (_Bool)
15367         [(! (defined __cplusplus || defined __BEOS__)
15368           && !defined __GNUC__
15369           && !(defined __HP_cc || defined __xlc__
15370                || (defined __SUNPRO_C && (__SUNPRO_C < 0x550 || __STDC__ == 1))
15371                || defined __sgi))]:
15372         #define to signed char in these cases too; this simplifies
15373         the code (so that we don't have to worry about HP-UX, AIX, SunPRO,
15374         etc., separately) and makes it more conservative.
15375
15376 2006-01-25  Simon Josefsson  <jas@extundo.com>
15377
15378         * m4/getaddrinfo.m4: Look for getaddrinfo inside ws2tcip.h and
15379         -lws2_32.  Protect sys/socket.h and netdb.h #include's.  Include
15380         ws2tcpip.h with WINVER=0x0501.  All for mingw32.
15381
15382 2006-01-25  Sergey Poznyakoff  <gray@gnu.org.ua>
15383
15384         * lib/argp-namefrob.h: Bugfix. Remove stray #
15385
15386 2006-01-25  Paul Eggert  <eggert@cs.ucla.edu>
15387
15388         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check for xlc bug if __GCC__ too,
15389         so that we test the test.
15390         Check for yet another HP-UX cc bug involving *bool |= bool.
15391
15392 2006-01-25  Karl Berry  <karl@gnu.org>
15393
15394         * config/srclist.txt (vasnprintf.c): sync lost.
15395
15396 2006-01-25  Jim Meyering  <jim@meyering.net>
15397
15398         Sync from the stable (b5) branch of coreutils:
15399
15400         * lib/fts.c (fts_children): Don't let close() clobber errno from
15401         failed fchdir().
15402
15403         * lib/fts.c (fts_stat): When following a symlink-to-directory,
15404         don't necessarily interpret stat-fails+lstat-succeeds as indicating
15405         a dangling symlink.  That can also happen at least for ELOOP.
15406         The fix: return FTS_SLNONE only when the stat errno is ENOENT.
15407         FYI, this bug predates the inclusion of fts.c in coreutils.
15408
15409         * lib/fts.c (fts_open): Put new maxarglen declaration and uses
15410         in their own block, so pre-c99 compilers don't object.
15411
15412         Avoid the double-free (first in fts_read, second in fts_close) that
15413         would occur when an `active' directory is made inaccessible (e.g.,
15414         via chmod a-x) during a traversal.
15415         * lib/fts.c (fts_read): After a failed fchdir, update sp->fts_cur
15416         before returning.  Reproduce this failure by
15417         mkdir -p a/b; cd a; chmod a-x . b
15418         Reported by Stavros Passas.
15419
15420 2006-01-25  Jim Meyering  <jim@meyering.net>
15421
15422         * lib/fileblocks.c: Remove more useless parentheses.
15423         * lib/readutmp.h: Likewise.
15424
15425 2006-01-25  Bruno Haible  <bruno@clisp.org>
15426
15427         * lib/stdbool_.h (_Bool) [IRIX cc]: Define as 'signed char', to avoid
15428         warnings.
15429         Reported by Paul Eggert.
15430
15431 2006-01-25  Bruno Haible  <bruno@clisp.org>
15432
15433         * gnulib-tool (func_import): Use "trap :" instead of "trap -" to get
15434         rid of a trap command. For Solaris sh.
15435         Reported by Mark D. Baushke <mdb@gnu.org>.
15436
15437 2006-01-24  Simon Josefsson  <jas@extundo.com>
15438
15439         * lib/socket_.h (SHUT_WR, SHUT_RDWR): Don't hardcode, suggested by
15440         Bruno.
15441
15442 2006-01-24  Karl Berry  <karl@gnu.org>
15443
15444         * config/srclist.txt (argp-namefrob.h): sync lost.
15445
15446 2006-01-24  Jim Meyering  <jim@meyering.net>
15447
15448         * modules/openat (Files): Add lib/intprops.h.
15449         From Mark D. Baushke.
15450
15451 2006-01-24  Jim Meyering  <jim@meyering.net>
15452
15453         * m4/openat.m4 (gl_FUNC_OPENAT): Add AC_LIBSOURCES([intprops.h]).
15454         Reported by Mark D. Baushke.
15455
15456 2006-01-24  Jim Meyering  <jim@meyering.net>
15457
15458         * lib/socket_.h: Remove useless parentheses in uses of cpp `defined'.
15459
15460 2006-01-24  Bruno Haible  <bruno@clisp.org>
15461
15462         * modules/strnlen (Maintainer): Change from glibc to all.
15463
15464 2006-01-24  Bruno Haible  <bruno@clisp.org>
15465
15466         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check for IBM and HP-UX bugs.
15467         Patch by Paul Eggert.
15468
15469 2006-01-24  Bruno Haible  <bruno@clisp.org>
15470
15471         * lib/stdbool_.h (_Bool) [__cplusplus]: Don't define if the compiler
15472         already has it.
15473         Report and patch by Albert Chin-A-Young  <china@thewrittenword.com> on
15474         2005-11-26.
15475
15476         * lib/stdbool_.h (_Bool) [HP-UX cc, AIX cc,xlc]: Define as
15477         'signed char' to avoid problems with the built-in _Bool type.
15478         Reported by Paul Eggert on 2005-11-26.
15479
15480 2006-01-24  Bruno Haible  <bruno@clisp.org>
15481
15482         * gnulib-tool (func_import): Avoid constructing complicated sed
15483         expressions inside backquote.
15484         Report and solution by Mark D. Baushke <mdb@gnu.org>.
15485
15486 2006-01-23  Ulrich Drepper  <drepper@redhat.com>
15487
15488         These changes imported from libc.
15489         * lib/getopt.c: Use __fxprintf instead of inline stream orientation
15490         test and two separate function calls.
15491         * lib/strndup.c (__strndup): Add libc_hidden_def.
15492
15493 2006-01-23  Simon Josefsson  <jas@extundo.com>
15494
15495         * modules/lock-tests: Use check_PROGRAMS instead of noinst_PROGRAMS.
15496         Remove the test_*_SOURCES variable: automake infers it by default.
15497         * modules/tls-tests: Likewise.
15498
15499 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
15500
15501         Work around porting bugs reported by Dieter in
15502         <http://lists.gnu.org/archive/html/bug-bison/2006-01/msg00049.html>.
15503         * lib/getopt.c (_NOPROTO): Remove; no longer needed.
15504         Include <stdlib.h> and <unistd.h> in all environments; it's safe now.
15505         Include "getopt.h" first, to check interface.
15506         (getenv): Declare only if defined HAVE_DECL_GETENV &&
15507         !HAVE_DECL_GETENV.
15508         * lib/strndup.c [!_LIBC]: Include "strndup.h" to get prototype.
15509         (__strndup): Revert to K&R-style function dfns, the glibc style.
15510         * lib/strnlen.c: Don't claim it's taken from glibc; it's not.
15511         (strnlen, __strnlen): Remove #defines and #undefs; not needed.
15512         Include strnlen.h first, to get prototype properly.
15513         (strnlen): Renamed from __strnlen.
15514         Remove weak alias.
15515
15516 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
15517
15518         * m4/getopt.m4 (gl_PREREQ_GETOPT): Check for getenv decl.
15519
15520 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
15521
15522         * config/srclist.txt: Adjust to reflect glibc reorganization.
15523         This affects only comments.
15524
15525 2006-01-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
15526
15527          * gnulib-tool, build-aux/csharpcomp.sh.in: Do not pass `-q' to mktemp.
15528          Reported by Bruce Korb <bkorb@gnu.org>.
15529
15530 2006-01-22  Paul Eggert  <eggert@cs.ucla.edu>
15531
15532         * lib/quotearg.c (quotearg_buffer_restyled): Add "default: break;"
15533         to pacify gcc -Wswitch-default.
15534
15535 2006-01-22  Bruno Haible  <bruno@clisp.org>
15536
15537         * lib/vasnprintf.c (VASNPRINTF): In the computation of the size of the
15538         temporary buffer for sprintf, take into account the precision also
15539         for 'd', 'i', 'u', 'o', 'x', 'X'.
15540
15541 2006-01-21  Sergey Poznyakoff  <gray@gnu.org.ua>
15542
15543         * modules/argp-tests: New module
15544         * tests/test-argp.c: New file
15545         * tests/test-argp-2.sh: New file
15546
15547 2006-01-21  Sergey Poznyakoff  <gray@gnu.org.ua>
15548
15549         * lib/argp-help.c (usage_long_opt): Do not print DOC options.
15550         (__argp_base_name): Removed
15551         * lib/argp-namefrob.h (__argp_basename): Removed definition. Was a
15552         typo.
15553         (__argp_base_name): Provide macro definition or extern declaration
15554         depending on the configuration
15555
15556 2006-01-20  Simon Josefsson  <jas@extundo.com>
15557
15558         * modules/inet_ntop (Depends-on): Depend on sys_socket.
15559
15560 2006-01-20  Simon Josefsson  <jas@extundo.com>
15561
15562         * lib/inet_ntop.h: Unconditionally include sys/socket.h.
15563
15564 2006-01-20  Paul Eggert  <eggert@cs.ucla.edu>
15565
15566         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Use -Wl,-z,ignore
15567         rather than -Xlinker -z -Xlinker ignore, as it's more portable.
15568         Suggested by Bruno Haible.
15569
15570 2006-01-20  Karl Berry  <karl@gnu.org>
15571
15572         * config/srclist.txt (argp-fmtstream.h, localcharset.c): comment out
15573         until changes propagate, I guess.
15574
15575 2006-01-19  Simon Josefsson  <jas@extundo.com>
15576
15577         * m4/socklen.m4: Look in ws2tcpip.h too, for mingw32.
15578
15579 2006-01-19  Simon Josefsson  <jas@extundo.com>
15580
15581         * lib/socket_.h: Map SHUT_RD, SHUT_WR, SHUT_RDWR correctly.
15582
15583 2006-01-19  Simon Josefsson  <jas@extundo.com>
15584
15585         * gnulib-tool: Set check_PROGRAMS.
15586
15587         * modules/arcfour-tests, modules/arctwo-tests, modules/crc-tests,
15588         modules/des-tests, modules/gc-arcfour-tests,
15589         modules/gc-arctwo-tests, modules/gc-des-tests,
15590         modules/gc-hmac-md5-tests, modules/gc-hmac-sha1-tests,
15591         modules/gc-md2-tests, modules/gc-md4-tests, modules/gc-md5-tests,
15592         modules/gc-pbkdf2-sha1-tests, modules/gc-rijndael-tests,
15593         modules/gc-sha1-tests, modules/gc-tests, modules/hmac-md5-tests,
15594         modules/hmac-sha1-tests, modules/md2-tests, modules/md4-tests,
15595         modules/md5-tests, modules/readline, modules/rijndael-tests: Use
15596         check_PROGRAMS instead of noinst_PROGRAMS to be able to remove
15597         test_*_SOURCES.
15598
15599 2006-01-18  Simon Josefsson  <jas@extundo.com>
15600
15601         * modules/socklen (Depends-on): Depend on sys_socket.
15602
15603 2006-01-18  Simon Josefsson  <jas@extundo.com>
15604
15605         * modules/arcfour-tests, modules/arctwo-tests, modules/crc-tests,
15606         modules/des-tests, modules/gc-arcfour-tests,
15607         modules/gc-arctwo-tests, modules/gc-des-tests,
15608         modules/gc-hmac-md5-tests, modules/gc-hmac-sha1-tests,
15609         modules/gc-md2-tests, modules/gc-md4-tests, modules/gc-md5-tests,
15610         modules/gc-pbkdf2-sha1-tests, modules/gc-rijndael-tests,
15611         modules/gc-sha1-tests, modules/gc-tests, modules/hmac-md5-tests,
15612         modules/hmac-sha1-tests, modules/md2-tests, modules/md4-tests,
15613         modules/md5-tests, modules/readline, modules/rijndael-tests: Add
15614         $(EXEEXT) to automake TESTS variable, for mingw32.
15615
15616 2006-01-17  Simon Josefsson  <jas@extundo.com>
15617
15618         * modules/socklen (Include): Need sys/socket.h.
15619
15620 2006-01-17  Bruno Haible  <bruno@clisp.org>
15621
15622         * modules/ssize_t (Include): Add <sys/types.h>.
15623
15624 2006-01-16  Paul Eggert  <eggert@cs.ucla.edu>
15625
15626         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Don't use ldd, as
15627         it's not portable and it doesn't work with cross-compiles.
15628         Problem reported by Bruno Haible.  Fix missing-$ typo in
15629         'test "gl_cv_ignore_unused_libraries" ...' that prevented
15630         -zignore from being used with Sun's C compiler.
15631
15632 2006-01-12  Simon Josefsson  <jas@extundo.com>
15633
15634         * lib/base64.c: Fix warning, reported by Bruno Haible
15635         <bruno@clisp.org> and patch by Paul Eggert <eggert@CS.UCLA.EDU>.
15636
15637 2006-01-12  Bruno Haible  <bruno@clisp.org>
15638
15639         * modules/ldd: New file.
15640         * build-aux/ldd.sh.in: New file.
15641         * MODULES.html.sh (Support for building libraries and executables): Add
15642         ldd.
15643
15644 2006-01-12  Bruno Haible  <bruno@clisp.org>
15645
15646         * m4/ldd.m4: New file.
15647
15648 2006-01-12  Bruno Haible  <bruno@clisp.org>
15649
15650         * gnulib-tool (func_import, func_create_testdir): Don't go into an
15651         endless loop while replacing $auxdir with build-aux.
15652
15653 2006-01-11  Simon Josefsson  <jas@extundo.com>
15654
15655         * lib/stdint_.h (SIZE_MAX): Add missing (.
15656
15657 2006-01-11  Paul Eggert  <eggert@cs.ucla.edu>
15658
15659         Sync from coreutils.
15660         * lib/md5.c: Fix commentary typos.
15661         (alignof, UNALIGNED_P): No need for a GCC-specific version.
15662         * lib/md5.h (__attribute__): Remove; unused.
15663         * lib/sha1.c: Fix commentary to match md5 better.
15664         * lib/sha1.h (struct sha1_ctx): Use a word buffer, not a byte buffer,
15665         so that we don't need to worry about alignment.  All uses changed.
15666         This merges the 2005-10-28 md5 change into sha1.
15667
15668 2006-01-11  Jim Meyering  <jim@meyering.net>
15669
15670         Sync from coreutils.
15671         * lib/md5.c (OP): Fix spacing.
15672
15673 2006-01-11  Bruno Haible  <bruno@clisp.org>
15674
15675         Ensure automatic ordering between gl_LOCK and gl_ARGP.
15676         * m4/lock.m4 (gl_LOCK_BODY): Renamed from gl_LOCK.
15677         (gl_LOCK): New macro, requiring gl_LOCK_BODY.
15678
15679 2006-01-11  Bruno Haible  <bruno@clisp.org>
15680
15681         Ensure automatic ordering between gl_LOCK and gl_ARGP.
15682         * gnulib-tool (func_import, func_create_testdir): Put gl_LOCK into
15683         the "early" section as well.
15684
15685 2006-01-11  Bruno Haible  <bruno@clisp.org>
15686
15687         Avoid "ar: no archive members specified" error on MacOS X.
15688         * gnulib-tool (func_modules_add_dummy): New function.
15689         (func_import, func_create_testdir): Invoke it.
15690
15691 2006-01-11  Bruno Haible  <bruno@clisp.org>
15692
15693         * gnulib-tool (func_import, func_create_testdir): Replace build-aux
15694         with $auxdir in AC_CONFIG_FILES statements.
15695
15696 2006-01-11  Bruno Haible  <bruno@clisp.org>
15697
15698         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
15699         Initialize also noinst_HEADERS to empty.
15700
15701 2006-01-11  Bruno Haible  <bruno@clisp.org>
15702
15703         * gnulib-tool (AUTOMAKEPATH, AUTOCONF, ACLOCAL, AUTOMAKE): New
15704         variables.
15705         (func_create_megatestdir): Call aclocal, autoconf, automake here, not
15706         autoreconf.
15707
15708 2006-01-11  Bruno Haible  <bruno@clisp.org>
15709
15710         * gnulib-tool (AUTOCONF, ACLOCAL, AUTOMAKE, AUTORECONF): Make
15711         overridable by the user.
15712         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
15713
15714 2006-01-10  Simon Josefsson  <jas@extundo.com>
15715
15716         * modules/sys_socket: New file.
15717
15718 2006-01-10  Simon Josefsson  <jas@extundo.com>
15719
15720         * m4/sys_socket_h.m4: New file.
15721
15722 2006-01-10  Simon Josefsson  <jas@extundo.com>
15723
15724         * lib/socket_.h: New file.
15725
15726 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
15727
15728         * modules/readutmp (Maintainer): Add myself.
15729
15730 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
15731
15732         * m4/memcoll.m4 (gl_MEMCOLL): Don't require AC_FUNC_MEMCMP, undoing
15733         the 2002-12-31 change.  Problem and fix reported by Bruno Haible.
15734         People who are still concerned with buggy memcmp implementations
15735         can invoke gl_FUNC_MEMCMP themselves.
15736
15737 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
15738
15739         * lib/regex_internal.h (BITSET_WORD_BITS):
15740         Work around a bug in 64-bit PGC (before version 6.1-2), where the
15741         preprocessor mishandles large unsigned values as if they were signed.
15742         Problem reported by Claudio Fontana in
15743         <http://lists.gnu.org/archive/html/bug-gnulib/2005-12/msg00061.html>.
15744
15745 2006-01-10  Jim Meyering  <jim@meyering.net>
15746
15747         Avoid the double-free (first in fts_read, second in fts_close) that
15748         would occur when an `active' directory is made inaccessible (e.g.,
15749         via chmod a-x) during a traversal.
15750         * lib/fts.c (fts_read): After a failed fchdir, update sp->fts_cur
15751         before returning.  Reproduce this failure by
15752         mkdir -p a/b; cd a; chmod a-x . b
15753         Reported by Stavros Passas.
15754
15755         Sync from coreutils.
15756         * lib/sha1.c: Tweak grammar in a comment.
15757
15758 2006-01-10  Jim Meyering  <jim@meyering.net>
15759
15760         * m4/fpending.m4: Also include <stdio.h>, for Dragonfly.
15761         Patch by Joerg Sonnenberger.
15762
15763 2006-01-10  Bruno Haible  <bruno@clisp.org>
15764
15765         * modules/readutmp: Depend on module free.
15766         * modules/strtok_r: Depend on module restrict.
15767
15768 2006-01-10  Bruno Haible  <bruno@clisp.org>
15769
15770         * modules/gettext (configure.ac): Add an invocation of
15771         AM_GNU_GETTEXT_VERSION. Needed since autoreconf is used by gnulib-tool.
15772
15773 2006-01-10  Bruno Haible  <bruno@clisp.org>
15774
15775         * m4/localcharset.m4 (gl_LOCALCHARSET): Also test for getc_unlocked.
15776         Reported by Werner Lemberg <wl@gnu.org>.
15777
15778 2006-01-10  Bruno Haible  <bruno@clisp.org>
15779
15780         * lib/localcharset.c: Update from GNU gettext.
15781
15782 2006-01-10  Bruno Haible  <bruno@clisp.org>
15783
15784         * lib/argp.h (__const): Remove macro. Use const instead.
15785         * lib/argp-fmtstream.h (__const): Likewise.
15786         * lib/glob_.h (__const): Remove macro.
15787         * lib/glob-libc.h: Use const instead of __const.
15788
15789 2006-01-10  Bruno Haible  <bruno@clisp.org>
15790
15791         * gnulib-tool (func_emit_tests_Makefile_am): Emit an empty SUBDIR
15792         variable.
15793         Needed to avoid an automake error regarding the 'gettext' module.
15794
15795 2006-01-09  Simon Josefsson  <jas@extundo.com>
15796
15797         * modules/inet_ntop (Depends-on): Add restrict.
15798
15799 2006-01-09  Simon Josefsson  <jas@extundo.com>
15800
15801         * modules/gc-rijndael-tests (License): Put under LGPL.
15802
15803         * modules/gc-des-tests (License): Likewise.
15804
15805         * modules/gc-arcfour-tests (License): Likewise.
15806
15807         * modules/gc-arctwo-tests (License): Likewise.
15808
15809         * modules/gc-pbkdf2-sha1-tests (License): Likewise.
15810
15811         * modules/gc-hmac-sha1-tests (Files): Likewise.
15812
15813         * modules/gc-hmac-md5-tests (License): Likewise.
15814
15815         * modules/gc-sha1-tests (License): Likewise.
15816
15817         * modules/gc-md5-tests (License): Likewise.
15818
15819         * modules/gc-md4-tests (License): Likewise.
15820
15821         * modules/gc-md2-tests (License): Likewise.
15822
15823         * modules/gc-tests (License): Likewise.
15824
15825         * modules/des-tests (License): Likewise.
15826
15827         * modules/md4-tests (License): Likewise.
15828
15829         * modules/md2-tests (License): Likewise.
15830
15831 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
15832
15833         Sync from coreutils:
15834
15835         * MODULES.html.sh (build_lib): New section, with new lib-ignore module.
15836         * modules/lib-ignore: New file.
15837         * modules/mkdir-p (Files): Add chdir-safer.c, chdir-safer.h, lchmod.h,
15838         chdir-safer.m4, lchmod.m4.
15839         * modules/openat: Add mkdirat.c, openat-priv.h.
15840
15841 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
15842
15843         Sync from coreutils.
15844         * m4/lib-ignore.m4: New file.
15845         * m4/lchmod.m4: New file.
15846
15847 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
15848
15849         Sync from coreutils.
15850         * lib/chdir-long.c (cdb_free): Don't bother trying to open directory
15851         for write access: POSIX says that must fail.
15852         * lib/fts.c (diropen): Likewise.
15853         * lib/save-cwd.c (save_cwd): Likewise.
15854         * lib/chdir-long.c (cdb_free): Open with O_NOCTTY | O_NONBLOCK as
15855         well, for minor improvements on hosts that lack O_DIRECTORY.
15856         * lib/chown.c (rpl_chown) [CHOWN_MODIFIES_SYMLINK]:
15857         Don't try O_WRONLY unless O_RDONLY failed wth EACCES.
15858         Fall back on chown if open failed with EACCES.
15859
15860         * lib/gettime.c (gettime) [!defined OK_TO_USE_1S_CLOCK]:
15861         Report an error at compile-time if only a 1-second nominal clock
15862         resolution is found.
15863
15864         * lib/lchmod.h: New file.
15865         * lib/mkdir-p.c: Include lchmod.h, lchown.h.
15866         (make_dir_parents): Use lchown rather than chown, and
15867         lchmod rather than chmod.
15868
15869         * lib/mountlist.c (ME_DUMMY): "none" and "proc" file systems are
15870         dummies too.  Problem with "none" reported by Bob Proulx.  Problem with
15871         "proc" reported by n0dalus.
15872
15873         * lib/mountlist.c: Include <limits.h>.
15874         (dev_from_mount_options)
15875         [defined MOUNTED_GETMNTENT1 || defined MOUNTED_GETMNTENT2]:
15876         New function.  It no longer assumes "dev=" has the System V meaning
15877         on Linux (since it doesn't).  It also parses "dev=" more carefully.
15878         (read_file_system_list)
15879         [defined MOUNTED_GETMNTENT1 || defined MOUNTED_GETMNTENT2]: Use it.
15880         MOUNTED_GETMNTENT2 is new here; the code didn't used to look for
15881         dev= in that case.
15882
15883         * lib/posixtm.h (PDS_PRE_2000): New macro.
15884         * lib/posixtm.c (year): Arg is now syntax_bits rather than
15885         allow_century.  All usages changed.  Reject dates outside the range
15886         1969-1999 if PDS_PRE_2000 is used.
15887
15888 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
15889
15890         Sync from coreutils.
15891         * doc/getdate.texi (General date syntax): Invalid dates are rejected.
15892         (Time of day items): Mention the possibility of leap seconds.
15893         Problem reported by Dr. David Alan Gilbert.
15894
15895 2006-01-09  Jim Meyering  <jim@meyering.net>
15896
15897         Sync from coreutils.
15898
15899         * lib/version-etc.c (COPYRIGHT_YEAR): Update to 2006.
15900
15901         * lib/chdir-safer.h, lib/chdir-safer.c: New files.
15902
15903         * lib/modechange.c (mode_compile): Reject an invalid mode string
15904         that starts with an octal digit.  From Andreas Gruenbacher.
15905
15906         * lib/openat.c: Include "fcntl--.h" and "unistd--.h", to map open
15907         and dup to open_safer and dup_safer, respectively.
15908         (openat_permissive): Fix typo in comment.
15909
15910         * lib/openat.c: Don't include <stdlib.h>, <unistd.h>, <fcntl.h>,
15911         "gettext.h"; either no longer needed or are guaranteed by openat.h.
15912         (_): Remove; no longer needed.
15913         (openat): Renamed from rpl_openat; no need for rpl_openat
15914         since openat.h renames openat for us.
15915         Replace most of the body with a call to openat_permissive,
15916         to avoid duplicate code.
15917         Port to (probably hypothetical) environments were mode_t is
15918         wider than int.
15919         (openat_permissive): Require mode arg, so that we can check
15920         types better.  Put it just after flags.  Change cwd failure
15921         indicator from pointer-to-bool to pointer-to-errno-value.
15922         All callers changed.
15923         Invoke openat_save_fail and/or openat_restore_fail if
15924         cwd_errno is null, so that openat can call us.
15925         (openat_permissive, fdopendir, fstatat, unlinkat):
15926         Simplify errno handling to avoid some duplicate code,
15927         as it's OK to set errno on success.
15928         * lib/openat.h: Revamp code so that function macros depend on
15929         __OPENAT_PREFIX only, not also on AT_FDCWD.
15930         (openat_ro): Remove.  Caller changed to use openat_permissive.
15931         (openat_permissive): Now a macro, if not a function.
15932         (openat_restore_fail, openat_save_fail): Now always functions,
15933         since mkdirat needs them even if __OPENAT_PREFIX is defined.
15934
15935         * lib/openat-priv.h: New file, defining macros used by mkdirat.c
15936         and openat.c.
15937         * lib/mkdirat.c: Include openat-priv.h.
15938         Remove definitions of macros defined therein.
15939         * lib/openat.c: Likewise.
15940
15941         * lib/mkdirat.c (mkdirat): New file and function.
15942         * lib/openat.h (mkdirat): Declare.
15943
15944         * lib/openat.c (fdopendir): Don't change errno when returning non-NULL.
15945
15946         * lib/openat.h (openat_permissive): Declare.
15947         (openat_ro): Define.
15948
15949         * lib/openat.c (EXPECTED_ERRNO): New macro.
15950         (openat_permissive): New function -- used in remove.c rewrite.
15951         (all functions): Set errno just before returning, only if there
15952         was an actual failure.
15953         Use EXPECTED_ERRNO rather than comparing against only ENOTDIR.
15954
15955         Emulate openat-family functions using Linux's procfs, if possible.
15956         Idea and some code based on Ulrich Drepper's glibc changes.
15957
15958         * lib/openat.c: (BUILD_PROC_NAME): New macro.
15959         Include <stdio.h>, <string.h>, "alloca.h" and "intprops.h".
15960         (rpl_openat): Emulate by trying to open /proc/self/fd/%d/%s,
15961         before falling back on save_cwd and restore_cwd.
15962         (fdopendir, fstatat, unlinkat): Likewise.
15963
15964         * lib/openat.c (fstatat, unlinkat): Perform the syscall directly,
15965         skipping the save_cwd...restore_cwd overhead, if FILE is absolute.
15966
15967         * lib/openat.c (rpl_openat): Use the promoted type (int), not mode_t,
15968         as second argument to va_arg.  Otherwise, some versions of gcc
15969         warn that `if this code is reached, the program will abort'.
15970
15971 2006-01-09  Jim Meyering  <jim@meyering.net>
15972
15973         Sync from coreutils.
15974         * m4/openat.m4 (gl_FUNC_OPENAT): Require and compile mkdirat.c.
15975         Require openat-priv.h.
15976
15977 2006-01-09  Bruno Haible  <bruno@clisp.org>
15978
15979         * modules/strnlen (Include): Use strnlen.h.
15980
15981 2006-01-09  Bruno Haible  <bruno@clisp.org>
15982
15983         * m4/stdint.m4 (gl_STDINT_H): Also test for <sys/bitypes.h>.
15984
15985 2006-01-09  Bruno Haible  <bruno@clisp.org>
15986
15987         * lib/sysexit_.h (EX_OK): New macro.
15988         Suggested by Martin Lambers <marlam@marlam.de>.
15989
15990 2006-01-09  Bruno Haible  <bruno@clisp.org>
15991
15992         * lib/stdint_.h: On Linux libc4 and libc5, include <sys/bitypes.h> and
15993         don't define _STDINT_H_NEED_SIGNED_INT_TYPES.
15994
15995 2006-01-09  Bruno Haible  <bruno@clisp.org>
15996
15997         * lib/stdint_.h (SIZE_MAX): Write the value without involving negative
15998         numbers.
15999
16000 2006-01-09  Bruno Haible  <bruno@clisp.org>
16001
16002         * lib/javacomp.sh.in: Move to ../build-aux/javacomp.sh.in.
16003         * lib/javaexec.sh.in: Move to ../build-aux/javaexec.sh.in.
16004         * lib/csharpcomp.sh.in: Move to ../build-aux/csharpcomp.sh.in.
16005         * lib/csharpexec.sh.in: Move to ../build-aux/csharpexec.sh.in.
16006
16007 2006-01-09  Bruno Haible  <bruno@clisp.org>
16008
16009         * build-aux/javacomp.sh.in: New file, moved from lib/.
16010         * modules/javacomp-script (Files): Update.
16011         (configure.ac): Add AC_CONFIG_FILES invocation.
16012         (EXTRA_DIST): Remove variable.
16013
16014         * build-aux/javaexec.sh.in: New file, moved from lib/.
16015         * modules/javaexec (Files): Update.
16016         (configure.ac): Add AC_CONFIG_FILES invocation.
16017         (EXTRA_DIST): Remove javaexec.sh.in.
16018
16019         * build-aux/csharpcomp.sh.in: New file, moved from lib/.
16020         * modules/csharpcomp-script (Files): Update.
16021         (configure.ac): Add AC_CONFIG_FILES invocation.
16022         (EXTRA_DIST): Remove variable.
16023
16024         * build-aux/csharpexec.sh.in: New file, moved from lib/.
16025         * modules/csharpexec (Files): Update.
16026         (configure.ac): Add AC_CONFIG_FILES invocation.
16027         (EXTRA_DIST): Remove csharpexec.sh.in.
16028
16029 2006-01-09  Andreas Gruenbacher  <agruen@suse.de>
16030
16031         Sync from coreutils.
16032
16033         Add POSIX ACL support
16034         * lib/acl.h (copy_acl, set_acl): Add declarations.
16035         * lib/acl.c (acl_entries): Add fallback implementation for POSIX ACL
16036         systems other than Linux.
16037         (chmod_or_fchmod): New function: use fchmod when possible,
16038         and chmod otherwise.
16039         (file_has_acl): Add a POSIX ACL implementation, with a
16040         Linux-specific subcase.
16041         (copy_acl): Add: copy an acl and S_ISUID, S_ISGID, and
16042         S_ISVTX from one file to another.  Fall back to fchmod/chmod when
16043         acls are unsupported.
16044         (set_acl): Add: set a file's acl and S_ISUID, S_ISGID, and
16045         S_ISVTX to a defined value.  Fall back to fchmod/chmod when acls
16046         are unsupported.
16047
16048 2006-01-09  Andreas Gruenbacher  <agruen@suse.de>
16049
16050         Sync from coreutils.
16051         * m4/acl.m4 (AC_FUNC_ACL): Add POSIX ACL and Linux-specific acl tests.
16052
16053 2006-01-07  Bruno Haible  <bruno@clisp.org>
16054
16055         * gnulib-tool (func_import): Add an AC_PROG_RANLIB dependency to
16056         gl_EARLY.
16057
16058 2006-01-04  Paul Eggert  <eggert@cs.ucla.edu>
16059
16060         * lib/strftime.c (tzname): Don't declare if it is already #defined.
16061         Problem reported for Mingw by Mark Junker.
16062
16063 2006-01-04  Paul Eggert  <eggert@cs.ucla.edu>
16064
16065         * README: Gnulib normally doesn't generate a tarball.
16066
16067 2006-01-03  Paul Eggert  <eggert@cs.ucla.edu>
16068
16069         * lib/xtime.h (xtime_make, xtime_nonnegative_nsec, xtime_nsec): Use
16070         long int, not int, for nanosecond counts, so that people who are
16071         used to POSIX struct timespec won't be surprised.  Reported by Jim
16072         Meyering.
16073
16074 2005-12-28  Bruno Haible  <bruno@clisp.org>
16075
16076         * build-aux/config.rpath: Update from GNU gettext.
16077
16078 2005-12-16  Jim Meyering  <jim@meyering.net>
16079
16080         * modules/fprintftime: New module.
16081         * MODULES.html.sh (Date and time <time.h>): Add fprintftime.
16082
16083 2005-12-16  Jim Meyering  <jim@meyering.net>
16084
16085         * m4/fprintftime.m4: New file.
16086
16087 2005-12-16  Jim Meyering  <jim@meyering.net>
16088
16089         * lib/fprintftime.c, lib/fprintftime.h: New files.
16090
16091 2005-12-15  Simon Josefsson  <jas@extundo.com>
16092
16093         * modules/socklen (configure.ac): Fix M4 macro name, to align with
16094         new m4/socklen.m4.
16095
16096 2005-12-10  Sergey Poznyakoff  <gray@gnu.org.ua>
16097
16098         * m4/argp.m4: Define HAVE_DECL_PROGRAM_INVOCATION_NAME and
16099         HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME
16100
16101 2005-12-10  Sergey Poznyakoff  <gray@gnu.org.ua>
16102
16103         * lib/argp-fmtstream.c (__argp_fmtstream_update): Fix coredump
16104         * lib/argp-help.c (fill_in_uparams): Check if the constructed
16105         struct uparams is valid. Fall back to the default values if it is
16106         not.
16107
16108 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
16109
16110         * modules/argp (Files): Add argp-pin.c
16111         (Depends-on): dirname
16112         (lib_SOURCES): Add argp-pin.c
16113
16114 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
16115
16116         * m4/argp.m4:  Check if program_invocation_name and
16117         program_invocation_short_name are declared and define appropriate
16118         macros if they are not.
16119
16120 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
16121
16122         * lib/argp-help.c (__argp_base_name): New function
16123         (__argp_short_program_name): Rewrite using __argp_base_name
16124         * lib/argp-namefrob.h: Define program_invocation_name and
16125         program_invocation_short_name if requested
16126         (__argp_base_name): Add prototype
16127         * lib/argp-parse.c (argp_def): Use gettext wrappers
16128         (argp_default_parser): Use __argp_base_name
16129         * lib/argp-pin.c: New file. Defines program_invocation_name and
16130         program_invocation_short_name on systems that lack them.
16131
16132 2005-12-07  Paul Eggert  <eggert@cs.ucla.edu>
16133
16134         * m4/stat-time.m4 (gl_STAT_TIME): Add check for
16135         TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC, to fix IRIX 5.3
16136         porting problem reported by Georg Schwarz in
16137         <http://lists.gnu.org/archive/html/bug-coreutils/2005-12/msg00083.html>.
16138
16139 2005-12-07  Paul Eggert  <eggert@cs.ucla.edu>
16140
16141         * lib/stat-time.h (STATE_TIMESPEC, STAT_TIMESPEC_NS): Add check for
16142         TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC, to fix IRIX 5.3
16143         porting problem reported by Georg Schwarz in
16144         <http://lists.gnu.org/archive/html/bug-coreutils/2005-12/msg00083.html>.
16145
16146 2005-12-05  Bruno Haible  <bruno@clisp.org>
16147
16148         * lib/csharpcomp.sh.in (options_csc): For -l option, add a .dll suffix.
16149         * lib/csharpcomp.c (compile_csharp_using_sscli): Likewise.
16150         Reported by Mark Junker <mjscod@gmx.de>.
16151
16152 2005-12-02  Paul Eggert  <eggert@cs.ucla.edu>
16153
16154         * m4/socklen.m4 (gl_TYPE_SOCKLEN_T): Renamed from gl_SOCKLEN_T.
16155         Use implementation from Albert Chin, with some
16156         comments/corrections by Stepan Kasal and myself.
16157
16158 2005-12-02  Bruno Haible  <bruno@clisp.org>
16159
16160         * gnulib-tool (func_import): Accept GPLed build tool modules when
16161         --lgpl is given.
16162         * modules/csharpcomp-script: New file.
16163         * modules/csharpcomp: Depend on it.
16164         * modules/javacomp-script: New file.
16165         * modules/javacomp: Depend on it.
16166         Suggested by Simon Josefsson.
16167
16168 2005-12-01  Paul Eggert  <eggert@cs.ucla.edu>
16169
16170         * m4/regex.m4 (gl_REGEX): Check whether off_t can be used in a switch
16171         statement, to work around an HP-UX 10.20 compiler bug reported by
16172         Peter O'Gorman.
16173
16174 2005-11-29  Paul Eggert  <eggert@cs.ucla.edu>
16175
16176         * modules/savedir (Depends-on): Add openat.
16177
16178 2005-11-29  Paul Eggert  <eggert@cs.ucla.edu>
16179
16180         * lib/stdint_.h (intmax_t) [defined intmax_t]: Do not declare.
16181         (uintmax_t) [defined uintmax_t]: Do not declare.
16182         (SIZE_MAX) [defined SIZE_MAX]: Do not define.
16183         This works around a problem if intmax_t.m4 and/or uintmax_t.m4
16184         and/or size_max.m4 are also used.  Problem reported by Mark D. Baushke.
16185         (SIZE_MAX): Define to ((size_t) -1), not (~(size_t)0), for the
16186         sake of portability to weird hosts that C allows (though we don't
16187         know of any practical examples).
16188
16189         * lib/savedir.h (fdsavedir): New decl.
16190         * lib/savedir.c (fdsavedir, savedirstream): New functions; the latter
16191         contains most of the former guts of savedir.
16192         (savedir): Use savedirstream.
16193         Include "openat.h".
16194
16195 2005-11-25  Paul Eggert  <eggert@cs.ucla.edu>
16196
16197         * modules/obstack (Files): Add m4/ulonglong.m4.
16198         Problem reported by Davide Angelocola.
16199
16200 2005-11-15  Paul Eggert  <eggert@cs.ucla.edu>
16201
16202         * lib/xstrtod.c: Don't bother with #pragma STDC FENV_ACCESS ON, as
16203         coreutils no longer futzes with rounding modes.
16204
16205 2005-11-14  Jim Meyering  <jim@meyering.net>
16206
16207         * lib/mkstemp-safer.c: Include <config.h>, required for possible
16208         replacement of mkstemp.
16209
16210 2005-11-10  Simon Josefsson  <jas@extundo.com>
16211
16212         * lib/readline.c: Remove EOL.
16213
16214 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
16215
16216         * modules/gethrxtime (Depends-on): Add gettime.
16217
16218 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
16219
16220         * m4/gethrxtime.m4 (gl_PREREQ_GETHRXTIME): Don't require AC_HEADER_TIME
16221         or gettimeofday; no longer needed.
16222
16223 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
16224
16225         * lib/gethrxtime.c: Include "timespec.h" rather than the sys/time /
16226         time business.
16227         (gethrxtime) [! (HAVE_NANOUPTIME
16228         || (defined CLOCK_MONOTONIC && HAVE_CLOCK_GETTIME)
16229         || HAVE_MICROUPTIME)]: Fall back on gettime rather than rolling
16230         our own approximation.
16231
16232 2005-11-08  Eric Blake  <ebb9@byu.net>
16233
16234         * lib/inet_ntop.h: Use #if !, not #ifndef, for AC_CHECK_DECLS.
16235
16236 2005-11-08  Eric Blake  <ebb9@byu.net>
16237
16238         * lib/getaddrinfo.h: Use #if !, not #ifndef, for AC_CHECK_DECLS.
16239
16240 2005-11-04  Bruno Haible  <bruno@clisp.org>
16241
16242         * gnulib-tool: Implement --update mode.
16243
16244 2005-10-30  Paul Eggert  <eggert@cs.ucla.edu>
16245
16246         Fix porting problem reported by Theodoros V. Kalamatianos.
16247         * lib/utimens.c (futimens) [HAVE_WORKING_UTIMES && HAVE_FUTIMES]:
16248         Don't assume that futimes failing means we must fail.
16249
16250 2005-10-30  Paul Eggert  <eggert@cs.ucla.edu>
16251
16252         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Revamp wording and local
16253         variables to suggest the intended function of the PATH_MAX check.
16254
16255 2005-10-30  Kean Johnston  <jkj@sco.com>
16256
16257         Trivial changes to support SCO systems.
16258         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Check for MAXPATHLEN as well
16259         as PATH_MAX.
16260         * m4/fpending.m4 (gl_FUNC_FPENDING): Correct check for SCO systems,
16261         where __ptr is null when no I/O is pending.
16262
16263 2005-10-29  Paul Eggert  <eggert@cs.ucla.edu>
16264
16265         * lib/getcwd.c (__getcwd): Don't assume that system calls after readdir
16266         leave errno alone.  Problem reported by Dmitry V. Levin.
16267
16268 2005-10-28  Simon Josefsson  <jas@extundo.com>
16269
16270         * tests/test-gc-md4.c, tests/test-gc-md5.c, tests/test-gc-sha1.c:
16271         Test more.
16272
16273         * tests/test-gc-md2.c, tests/test-md2.c: New files.
16274
16275         * modules/md2, modules/md2-tests: New files.
16276
16277 2005-10-28  Simon Josefsson  <jas@extundo.com>
16278
16279         * m4/inet_ntop.m4: More tests.
16280
16281         * m4/gc-md2.m4, md2.m4: New file.
16282
16283 2005-10-28  Simon Josefsson  <jas@extundo.com>
16284
16285         * lib/inet_ntop.h, inet_ntop.c: Make it work under mingw32: Add
16286         "restrict" keywords, as per POSIX.  Protect the function
16287         declaration around HAVE_DECL_INET_NTOP rather than HAVE_INET_NTOP.
16288         Don't use K&R prototypes.  Check the sprintf return values.
16289         Re-define EAFNOSUPPORT if not present.  Indent.
16290
16291         * lib/md5.h, md5.c: Simplify buffer handling visavi alignment,
16292         suggested by Bruno Haible <bruno@clisp.org>.
16293
16294         * lib/gc-gnulib.c, gc-libgcrypt.c: Check calloc return value.
16295
16296         * lib/gc.h: Add MD2 and RMD160 length defines.  Add prototypes.
16297
16298         * lib/gc-libgcrypt.c: Add MD2 (which is not available through
16299         libgcrypt).
16300
16301         * lib/gc-gnulib.c: Add MD2.  Implement gc_hash_* API.
16302
16303         * lib/md2.h, lib/md2.c: New files.
16304
16305 2005-10-28  Paul Eggert  <eggert@cs.ucla.edu>
16306
16307         * lib/savedir.c (savedir): Don't assume that xrealloc etc. leave
16308         errno alone.  Problem reported by Frederic Jolliton.
16309
16310 2005-10-27  Paul Eggert  <eggert@cs.ucla.edu>
16311
16312         * modules/verify (License): Change from GPL to LGPL.  This is a
16313         tiny module and there are apparently near-equivalents that are
16314         under the BSD license.
16315
16316 2005-10-24  Simon Josefsson  <jas@extundo.com>
16317
16318         * modules/sha1: Relicense to LGPL.
16319
16320 2005-10-24  Simon Josefsson  <jas@extundo.com>
16321
16322         * lib/md4.h: Shrink buffer size, now that we changed the type.
16323
16324 2005-10-23  Simon Josefsson  <jas@extundo.com>
16325
16326         * gnulib-tool (func_import): Fix --tests-base.
16327
16328 2005-10-22  Simon Josefsson  <jas@extundo.com>
16329
16330         * modules/arcfour (Depends-on): Need stdint.
16331
16332 2005-10-22  Simon Josefsson  <jas@extundo.com>
16333
16334         * m4/gc.m4: Don't be fooled by --disable-*random-device parameters,
16335         suggested by Bruno Haible <bruno@clisp.org>.  Fix error messages.
16336
16337 2005-10-22  Simon Josefsson  <jas@extundo.com>
16338
16339         * lib/md4.h, md4.c: Simplify buffer handling visavi alignment,
16340         suggested by Bruno Haible <bruno@clisp.org>.
16341
16342 2005-10-22  Simon Josefsson  <jas@extundo.com>
16343
16344         * lib/crc.h: Include stddef.h, for size_t.
16345
16346 2005-10-22  Simon Josefsson  <jas@extundo.com>
16347
16348         * lib/arcfour.h, arcfour.c: Use fixed size indices in the
16349         arcfour_context struct (simplify test vector testing in GNU
16350         Shishi).
16351
16352 2005-10-21  Simon Josefsson  <jas@extundo.com>
16353
16354         * modules/des, modules/des-tests: New files.
16355
16356         * modules/gc-des, modules/gc-des-tests: New files.
16357
16358         * tests/test-des.c, tests/test-gc-des.c: New file.
16359
16360 2005-10-21  Simon Josefsson  <jas@extundo.com>
16361
16362         * modules/arctwo, modules/arctwo-tests: New files.
16363
16364         * tests/test-arctwo.c: New file.
16365
16366         * modules/gc-arctwo, modules/gc-arctwo-tests: New files.
16367
16368         * tests/test-gc-arctwo.c: New file.
16369
16370 2005-10-21  Simon Josefsson  <jas@extundo.com>
16371
16372         * m4/gc.m4: Don't use libgcrypt if gcrypt.h isn't found, suggested by
16373         Bruno Haible <bruno@clisp.org>.
16374
16375         * m4/gc-des.m4: New file.
16376
16377 2005-10-21  Simon Josefsson  <jas@extundo.com>
16378
16379         * m4/arctwo.m4: New file.
16380
16381         * m4/gc-arctwo.m4: New file.
16382
16383 2005-10-21  Simon Josefsson  <jas@extundo.com>
16384
16385         * lib/rijndael-api-fst.c: Fix bugs in CBC mode for more than one
16386         block.
16387
16388 2005-10-21  Simon Josefsson  <jas@extundo.com>
16389
16390         * lib/hmac-md5.c (hmac_md5): Add comments, suggested by Bruno Haible
16391         <bruno@clisp.org>.
16392
16393         * lib/hmac-sha1.c (hmac_sha1): Likewise.
16394
16395         * lib/crc.c (crc32_update): Actually use crc parameter, suggested by
16396         Bruno Haible <bruno@clisp.org>.
16397
16398         * lib/crc.h: Include stdint.h directly, suggested by Bruno Haible
16399         <bruno@clisp.org>.
16400
16401 2005-10-21  Simon Josefsson  <jas@extundo.com>
16402
16403         * lib/gc-libgcrypt.c (gc_cipher_open): Handle ECB.
16404
16405 2005-10-21  Simon Josefsson  <jas@extundo.com>
16406
16407         * lib/gc-gnulib.c: Support ARCTWO in CBC mode.
16408
16409 2005-10-21  Simon Josefsson  <jas@extundo.com>
16410
16411         * lib/des.h, lib/des.c: New files.
16412
16413         * lib/gc-gnulib.c: Support DES.c
16414
16415 2005-10-21  Simon Josefsson  <jas@extundo.com>
16416
16417         * lib/arctwo.h, lib/arctwo.c: New files.
16418
16419         * lib/gc-gnulib.c: Support ARCTWO.
16420
16421 2005-10-21  Simon Josefsson  <jas@extundo.com>
16422
16423         * lib/arctwo.h (arctwo_setkey): Protect variable in CPP macro,
16424         suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
16425
16426 2005-10-21  Simon Josefsson  <jas@extundo.com>
16427
16428         * gnulib-tool (func_import, func_create_testdir): Define automake
16429         conditional GL_COND_LIBTOOL if libtool is used (to be used by modules
16430         Makefile.am snippet),
16431         suggested by Bruno Haible <bruno@clisp.org>.
16432
16433         * modules/gc (Makefile.am): Use it.
16434
16435 2005-10-21  Bruno Haible  <bruno@clisp.org>
16436
16437         * gnulib-tool (func_import, func_create_testdir): Add quoting to last
16438         patch.
16439
16440 2005-10-19  Simon Josefsson  <jas@extundo.com>
16441
16442         * tests/test-gc-rijndael.c: New file.
16443
16444         * modules/gc-rijndael, modules/gc-rijndael-test: New files.
16445
16446 2005-10-19  Simon Josefsson  <jas@extundo.com>
16447
16448         * tests/test-gc-md4.c, tests/test-gc-md5.c: Test gc_hash_buffer
16449         interface too.
16450
16451 2005-10-19  Simon Josefsson  <jas@extundo.com>
16452
16453         * tests/test-gc-arcfour.c: New file.
16454
16455         * modules/gc-arcfour, modules/gc-arcfour-tests: New files.
16456
16457 2005-10-19  Simon Josefsson  <jas@extundo.com>
16458
16459         * modules/gc-md4, modules/gc-md4-tests: New file.
16460
16461         * tests/test-gc-md4.c: New file.
16462
16463 2005-10-19  Simon Josefsson  <jas@extundo.com>
16464
16465         * m4/gc-md4.m4: New file.
16466
16467 2005-10-19  Simon Josefsson  <jas@extundo.com>
16468
16469         * m4/gc-hmac-md5.m4, gc-hmac-sha1.m4, gc-md4.m4,
16470         gc-md5.m4, gc-sha1.m4: Fix typo, suggested by Stepan Kasal
16471         <kasal@ucw.cz>.
16472
16473 2005-10-19  Simon Josefsson  <jas@extundo.com>
16474
16475         * m4/gc-arcfour.m4: New file.
16476
16477         * m4/gc-rijndael.m4: New file.
16478
16479 2005-10-19  Simon Josefsson  <jas@extundo.com>
16480
16481         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Support MD4.
16482
16483 2005-10-19  Simon Josefsson  <jas@extundo.com>
16484
16485         * lib/gc-gnulib.c: Support ARCFOUR.
16486
16487 2005-10-19  Simon Josefsson  <jas@extundo.com>
16488
16489         * lib/gc-gnulib.c: Implement gc_cipher_* API, currently only with AES
16490         support.
16491
16492         * lib/gc.h: Add ECB enum type.
16493
16494         * lib/hmac-md5.c, hmac-sha1.c: Include memxor.h.
16495
16496 2005-10-18  Simon Josefsson  <jas@extundo.com>
16497
16498         * tests/test-md5.c: New file.
16499
16500         * modules/md5-tests: New file.
16501
16502 2005-10-18  Simon Josefsson  <jas@extundo.com>
16503
16504         * tests/test-md4.c: New file.
16505
16506         * modules/md4, modules/md4-tests: New files.
16507
16508 2005-10-18  Simon Josefsson  <jas@extundo.com>
16509
16510         * m4/md4.m4: New file.
16511
16512 2005-10-18  Simon Josefsson  <jas@extundo.com>
16513
16514         * lib/md4.h, lib/md4.c: New files, based on md5.?.
16515
16516 2005-10-17  Stepan Kasal  <kasal@ucw.cz>
16517
16518         * gnulib-tool (func_create_testdir): Omit the second check whether
16519         BUILT_SOURCES in nonempty.
16520
16521 2005-10-17  Simon Josefsson  <jas@extundo.com>
16522
16523         * tests/test-rijndael.c: New file.
16524
16525 2005-10-17  Simon Josefsson  <jas@extundo.com>
16526
16527         * modules/sha1: Depend on stdint instead of md5.
16528
16529         * modules/md5: Depend on stdint, remove uint32_t.
16530
16531 2005-10-17  Simon Josefsson  <jas@extundo.com>
16532
16533         * modules/gc-sha1-tests: New file.
16534
16535         * tests/test-gc-sha1.c: New file.
16536
16537 2005-10-17  Simon Josefsson  <jas@extundo.com>
16538
16539         * m4/md5.m4: Remove call to uint32_t.m4.
16540
16541 2005-10-17  Simon Josefsson  <jas@extundo.com>
16542
16543         * lib/sha1.c: Use uint32_t instead of md5_uint32.t
16544
16545         * lib/sha1.h: Use stdint.h and uint32_t instead of md5_uint32 from
16546         md5.h.
16547
16548         * lib/md5.c: Use uin32_t.  Fix non-gcc UNALIGNED_P macro.
16549
16550         * lib/md5.h: Use stdint.h and uint32_t.  Doc fix.
16551
16552 2005-10-17  Simon Josefsson  <jas@extundo.com>
16553
16554         * lib/gc.h, gc-libgcrypt.c: Add more hash types/functions.
16555
16556 2005-10-17  Simon Josefsson  <jas@extundo.com>
16557
16558         * lib/gc.h, gc-libgcrypt.c: Add ciphers.
16559
16560 2005-10-17  Simon Josefsson  <jas@extundo.com>
16561
16562         * lib/gc-libgcrypt.c (gc_hmac_sha1): Fix assert.
16563
16564         * lib/gc.h (gc_nonce, gc_pseudo_random, gc_random): Add prototypes.
16565
16566 2005-10-17  Bruno Haible  <bruno@clisp.org>
16567
16568         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Change the return statement so
16569         that it can also be used in a test.
16570
16571 2005-10-16  Bruno Haible  <bruno@clisp.org>
16572
16573         * gnulib-tool (func_emit_tests_Makefile_am): Also define
16574         TESTS_ENVIRONMENT, so that individual tests can augment it.
16575
16576         * gnulib-tool (func_create_testdir): Use an intermediate target for
16577         building $(BUILT_SOURCES). Needed because BUILT_SOURCES can contain
16578         macros, like $(ALLOCA_H), which cannot be passed through the command
16579         line.
16580
16581 2005-10-15  Simon Josefsson  <jas@extundo.com>
16582
16583         * modules/rijndael-tests: New file.
16584
16585         * modules/rijndael: New file.
16586
16587 2005-10-15  Simon Josefsson  <jas@extundo.com>
16588
16589         * m4/rijndael.m4: New file.
16590
16591 2005-10-15  Simon Josefsson  <jas@extundo.com>
16592
16593         * lib/rijndael-api-fst.h, lib/rijndael-api-fst.c: New files.
16594
16595         * lib/rijndael-alg-fst.h, lib/rijndael-alg-fst.c: New files.
16596
16597 2005-10-14  Simon Josefsson  <jas@extundo.com>
16598
16599         * tests/test-arcfour.c: New file.
16600
16601         * modules/arcfour, modules/arcfour-tests: New files.
16602
16603 2005-10-14  Simon Josefsson  <jas@extundo.com>
16604
16605         * m4/arcfour.m4: New file.
16606
16607 2005-10-14  Simon Josefsson  <jas@extundo.com>
16608
16609         * lib/arcfour.h, lib/arcfour.c: New files.
16610
16611 2005-10-14  Roland McGrath  <roland@redhat.com>
16612
16613         Import from libc.  [BZ #1331]
16614         * lib/obstack.h [!__STDC__] (obstack_int_grow_fast): Fix misnamed
16615         macro argument.
16616         Reported by Matej Vela <vela@debian.org>.
16617
16618 2005-10-14  Paul Eggert  <eggert@cs.ucla.edu>
16619
16620         * lib/obstack.c [defined _LIBC && defined USE_IN_LIBIO]: Don't
16621         include <wchar.h>; no longer needed.
16622
16623 2005-10-14  Paul Eggert  <eggert@cs.ucla.edu>
16624
16625         * config/srclist.txt: Add glibc bug 321 for obstack.c, obstack.h.
16626
16627 2005-10-14  Jakub Jelinek  <jakub@redhat.com>
16628         and  Ulrich Drepper  <drepper@redhat.com>
16629
16630         Import from libc.
16631         * lib/obstack.c (print_and_abort) [defined _LIBC]: Use __fxprintf
16632         instead of inline stream orientation test and two separate
16633         function calls.  Pay no attention to USE_IN_LIBIO.
16634
16635 2005-10-13  Simon Josefsson  <jas@extundo.com>
16636
16637         * modules/gc-hmac-md5-tests: New file.
16638
16639         * tests/test-gc-hmac-sha1.c: New file.
16640
16641         * tests/test-gc.c (main): Remove MD5 and HMAC-MD5 tests.
16642
16643         * modules/gc-hmac-md5-tests: New file.
16644
16645         * tests/test-gc-md5.c: New file.
16646
16647         * modules/gc-md5-tests: New file.
16648
16649 2005-10-13  Simon Josefsson  <jas@extundo.com>
16650
16651         * lib/gc-pbkdf2-sha1.c (gc_pbkdf2_sha1): Optimize CEIL computation.
16652         Move memory allocation outside of loop.
16653
16654 2005-10-13  Paul Eggert  <eggert@cs.ucla.edu>
16655
16656         * lib/mkdir-p.c (make_dir_parents): Don't report an error if an
16657         intermediate directory is in a read-only file system.  Problem
16658         reported by Eric Blake.
16659
16660 2005-10-13  Oskar Liljeblad  <oskar@osk.mine.nu>
16661
16662         * modules/human (Depends-on): Depend on xstrtoumax, not xstrtol.
16663
16664 2005-10-12  Simon Josefsson  <jas@extundo.com>
16665
16666         * tests/test-hmac-sha1.c: New file.
16667
16668         * modules/hmac-sha1-tests: New file.
16669
16670         * modules/hmac-sha1: New file.
16671
16672 2005-10-12  Simon Josefsson  <jas@extundo.com>
16673
16674         * modules/gc-sha1: New file.
16675
16676 2005-10-12  Simon Josefsson  <jas@extundo.com>
16677
16678         * modules/gc-pbkdf2-sha1, modules/gc-pbkdf2-sha1-tests: New files.
16679
16680         * tests/test-gc-pbkdf2-sha1.c: New file.
16681
16682 2005-10-12  Simon Josefsson  <jas@extundo.com>
16683
16684         * modules/gc-md5, modules/gc-hmac-md5: New files.
16685
16686         * modules/gc (Files): Remove md5, memxor and hmac files.
16687
16688 2005-10-12  Simon Josefsson  <jas@extundo.com>
16689
16690         * m4/gc-pbkdf2-sha1.m4: New file.
16691
16692         * m4/gc-hmac-sha1.m4: New file.
16693
16694         * m4/gc-sha1: New file.
16695
16696         * m4/hmac-sha1.m4: New file.
16697
16698 2005-10-12  Simon Josefsson  <jas@extundo.com>
16699
16700         * m4/gc-md5.m4, m4/gc-hmac-md5.m4: New files.
16701
16702         * m4/gc.m4: Don't call gl_MD5, gl_MEMXOR or gl_HMAC_MD5.
16703
16704 2005-10-12  Simon Josefsson  <jas@extundo.com>
16705
16706         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Use Gc_rc for return types,
16707         suggested by Bruno Haible <bruno@clisp.org>.
16708
16709 2005-10-12  Simon Josefsson  <jas@extundo.com>
16710
16711         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Support SHA-1.
16712
16713 2005-10-12  Simon Josefsson  <jas@extundo.com>
16714
16715         * lib/gc-pbkdf2-sha1.c: New file.
16716
16717         * lib/gc.h: Add gc_pbkdf2_sha1 prototype.
16718
16719 2005-10-12  Simon Josefsson  <jas@extundo.com>
16720
16721         * lib/gc-libgcrypt.c (gc_hmac_sha1): New function.
16722
16723         * lib/gc-gnulib.c (gc_hmac_sha1): New function.
16724
16725 2005-10-12  Simon Josefsson  <jas@extundo.com>
16726
16727         * lib/gc-gnulib.c: Condition MD5 and HMAC-MD5 use on GC_USE_MD5 and
16728         GC_USE_HMAC_MD5, respectively.
16729
16730         * lib/gc-libgcrypt.c (gc_md5): Fix assert call.
16731         (gc_md5): Fix typo.
16732
16733         * lib/gc.h (gc_hash_buffer): Use gc_hash in prototype.
16734
16735         * lib/gc-libgcrypt.c (gc_hash_buffer): Ditto.
16736
16737         * lib/gc-gnulib.c (gc_hash_buffer): Ditto.
16738
16739 2005-10-12  Bruno Haible  <bruno@clisp.org>
16740
16741         * m4/stdbool.m4 (gl_STDBOOL_H): Define as an alias of AM_STDBOOL_H.
16742         Reported by Stepan Kasal <kasal@ucw.cz>.
16743
16744 2005-10-11  Simon Josefsson  <jas@extundo.com>
16745
16746         * tests/test-crc.c: New file.
16747
16748         * modules/crc, modules/crc-tests: New files.
16749
16750 2005-10-11  Simon Josefsson  <jas@extundo.com>
16751
16752         * m4/crc.m4: New file.
16753
16754 2005-10-11  Simon Josefsson  <jas@extundo.com>
16755
16756         * lib/gc.h: Add gc_hash and gc_hash_buffer.
16757
16758         * lib/gc-gnulib.c (gc_hash_buffer): Add.  Reorder #include's.
16759
16760         * lib/gc-libgcrypt.c (gc_hash_buffer): Add.
16761
16762 2005-10-11  Simon Josefsson  <jas@extundo.com>
16763
16764         * lib/crc.h, lib/crc.c: New files.
16765
16766         * lib/gc.h (gc_hash_buffer): Add doc.
16767
16768 2005-10-11  Bruno Haible  <bruno@clisp.org>
16769
16770         * modules/c-strcasestr: New file.
16771         * MODULES.html.sh (String handling <string.h>): Add c-strcasestr.
16772
16773 2005-10-11  Bruno Haible  <bruno@clisp.org>
16774
16775         * modules/c-strcase: New file.
16776         * MODULES.html.sh (String handling <string.h>): Add c-strcase.
16777
16778 2005-10-11  Bruno Haible  <bruno@clisp.org>
16779
16780         * lib/strcasecmp.c: Include limits.h.
16781         (strcasecmp): Avoid integer overflow on exotic platforms.
16782         * lib/strncasecmp.c: Include limits.h.
16783         (strncasecmp): Avoid integer overflow on exotic platforms.
16784         Reported by Paul Eggert.
16785
16786 2005-10-11  Bruno Haible  <bruno@clisp.org>
16787
16788         * lib/c-strcasestr.h: New file, from GNU gettext.
16789         * lib/c-strcasestr.c: New file, from GNU gettext.
16790
16791 2005-10-11  Bruno Haible  <bruno@clisp.org>
16792
16793         * lib/c-strcase.h: New file, from GNU gettext.
16794         * lib/c-strcasecmp.c: New file, from GNU gettext.
16795         * lib/c-strncasecmp.c: New file, from GNU gettext.
16796
16797 2005-10-10  Paul Eggert  <eggert@cs.ucla.edu>
16798
16799         * modules/mempcpy (License): GPL -> LGPL.
16800         * modules/strchrnul (License): Likewise.
16801         * modules/sysexits (License): Likewise.
16802
16803 2005-10-08  Simon Josefsson  <jas@extundo.com>
16804
16805         * config/srclist.txt: Bug 1423 is closed, but 1439 remains.
16806
16807 2005-10-07  Simon Josefsson  <jas@extundo.com>
16808
16809         * m4/memxor.m4: Remove gl_C_RESTRICT call.
16810
16811 2005-10-06  Simon Josefsson  <jas@extundo.com>
16812
16813         * tests/test-hmac-md5.c: New file.
16814
16815         * modules/hmac-md5-tests: New file.
16816
16817         * modules/hmac-md5: New file.
16818
16819 2005-10-06  Simon Josefsson  <jas@extundo.com>
16820
16821         * m4/hmac-md5.m4: New file.
16822
16823         * m4/memxor.m4: Require gl_C_RESTRICT.
16824
16825 2005-10-06  Simon Josefsson  <jas@extundo.com>
16826
16827         * lib/memxor.c (memxor): Avoid casts and warnings.
16828
16829 2005-10-06  Simon Josefsson  <jas@extundo.com>
16830
16831         * lib/hmac-md5.c: New file.
16832
16833         * lib/hmac.h: New file.
16834
16835 2005-10-06  Paul Eggert  <eggert@cs.ucla.edu>
16836
16837         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check that bool
16838         promotes to int, not unsigned int, to catch the AIX 5.3
16839         compiler bug.
16840
16841 2005-10-05  Simon Josefsson  <jas@extundo.com>
16842
16843         * modules/memxor: New file.
16844
16845         * modules/iconv (Files): Move config.rpath to havelib, it is used
16846         there.
16847
16848         * modules/havelib (Files): Add config.rpath.
16849
16850 2005-10-05  Simon Josefsson  <jas@extundo.com>
16851
16852         * m4/memxor.m4: New file.
16853
16854 2005-10-05  Simon Josefsson  <jas@extundo.com>
16855
16856         * lib/memxor.c (memxor): Fix compiler error.
16857
16858         * lib/md5.h (MD5_DIGEST_SIZE, MD5_BLOCK_SIZE): Add, see also
16859         <http://sourceware.org/bugzilla/show_bug.cgi?id=1423>.
16860
16861         * lib/memxor.h, lib/memxor.c: New files.
16862
16863         * lib/getaddrinfo.h: Don't protect sys/types.h with HAVE_SYS_TYPES_H,
16864         we assume all systems have it, suggested by Jim Meyering
16865         <jim@meyering.net>.  Remove HAVE_SYS_SOCKET_H test too, to see if
16866         any systems lack sys/socket.h; mingw32 is known to lack it, but we
16867         don't support it yet anyway.  Also remove HAVE_NETDB_H test, for
16868         same reasons.
16869
16870 2005-10-05  Simon Josefsson  <jas@extundo.com>
16871
16872         * config/srclist.txt: Add glibc bug 1423 for md5.h.
16873
16874 2005-10-05  Paul Eggert  <eggert@cs.ucla.edu>
16875
16876         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Don't check for
16877         sys/socket.h, netdb.h, sys/types.h; the checks areno longer
16878         needed, since the source code now assumes these .h files.
16879
16880 2005-10-05  Derek Price  <derek@ximbiot.com>
16881
16882         * lib/getdelim.c (SIZE_MAX): New macro, if not already defined.
16883
16884 2005-10-05  Bruno Haible  <bruno@clisp.org>
16885
16886         * modules/stdint (License): Change to LGPL.
16887
16888 2005-10-04  Simon Josefsson  <jas@extundo.com>
16889
16890         * lib/getaddrinfo.h: Move sys/types.h include first, reported by "Mark
16891         D. Baushke" <mdb@gnu.org>.
16892
16893 2005-10-04  Bruno Haible  <bruno@clisp.org>
16894
16895         * lib/verify.h (verify_true): Provide alternative definition for C++.
16896
16897 2005-10-03  Paul Eggert  <eggert@cs.ucla.edu>
16898
16899         * lib/getdelim.c: Include getdelim.h first.  Include <limits.h>.
16900         (SSIZE_MAX): New macro, if not already defined.
16901         (getdelim): Fix buffer overrun on 64-bit hosts with lines longer
16902         than 2 GiB.
16903
16904 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
16905
16906         Sync from coreutils.
16907         * m4/openat.m4 (gl_FUNC_OPENAT): Check for fdopendir.
16908         * m4/ullong_max.m4 (gl_ULLONG_MAX): Simplify so that it merely
16909         defines ULONG_MAX_LT_ULLONG_MAX.  Thomas M.Ott reports that
16910         ULLONG_MAX doesn't work with 2.7.2.1.
16911
16912 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
16913
16914         * modules/xreadlink (Makefile.am): Remove lib_SOURCES.
16915         From Ben Pfaff.
16916
16917         * modules/exclude (Depends-on): Depend on verify.
16918         * modules/strtoimax (Depends-on): Likewise.
16919         * modules/utimecmp (Depends-on): Likewise.
16920
16921 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
16922
16923         * lib/exclude.c: Include verify.h.
16924         (verify): Remove.  All callers changed to use verify.h's version.
16925         * lib/strtoimax.c: Likewise.
16926         * lib/utimecmp.c: Likewis.e
16927
16928         Sync from coreutils.
16929         * lib/.cppi-disable: Add getaddrinfo.h, getdelim.h, getline.h,
16930         getpass.c, mbchar.h, mbuiter.h, strcase.h, strnlen.h, strnlen1.h.
16931         * lib/.cvsignore: Add fts.h, search.h, t-fpending.
16932         * lib/settime.c (settime): Fix { typo in previous patch.  Also, don't
16933         bother returning ENOSYS if settimeofday or stime fails; just let
16934         them return whatever errno they want to return.
16935         * lib/utimens.c: Include unistd.h, for dup2.
16936         (futimens): Fix typo: HAVE_FUTIMESAT was misspelled in an #if.
16937         (futimens) [! HAVE_FUTIMESAT]: If !file, set errno before returning -1.
16938
16939 2005-10-02  Jim Meyering  <jim@meyering.net>
16940
16941         Sync from coreutils.
16942         * m4/utimes.m4 (gl_FUNC_UTIMES): Detect the version of utimes
16943         from glibc-2.2.5 that fails for read-only files.
16944
16945 2005-10-02  Jim Meyering  <jim@meyering.net>
16946
16947         Sync from coreutils.
16948         * lib/fts-cycle.c [HAVE_CONFIG_H]: Include <config.h>.
16949         * lib/openat-die.c: Use `#ifdef HAVE_CONFIG_H', not
16950         `#if HAVE_CONFIG_H'.
16951         * lib/openat.c (fdopendir): Do not define if HAVE_FDOPENDIR.
16952         Remove AT_FDCWD test.
16953         Do not consume the fd unless successful.
16954         * lib/openat.h (fdopendir): Do not define if HAVE_FDOPENDIR.
16955         * lib/settime.c (settime): Move the HAVE_STIME block `up' into an #elif
16956         block, so that we don't even try to compile it if settimeofday is
16957         available.  This works around a compilation failure on OSF1 V5.1,
16958         due to stime requiring a `long int*' while tv_sec is `int'.
16959
16960 2005-10-02  Alfred M. Szmidt  <ams@gnu.org>
16961
16962         Sync from coreutils.
16963         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Compare $gl_have_path...
16964         against `yes', rather than just testing for nonempty.
16965
16966 2005-10-01  Simon Josefsson  <jas@extundo.com>
16967
16968         * m4/getaddrinfo.m4: Include sys/types.h for sys/socket.h, on FreeBSD
16969         and Darwin.
16970
16971         * m4/getaddrinfo.m4: Use AC_GNU_SOURCE, GNU only declare getaddrinfo
16972         as an (POSIX) extension.  Check for sys/types.h, sys/socket.h, and
16973         netdb.h too, needed by getaddrinfo.h.  Check if getaddrinfo,
16974         freeaddrinfo and gai_strerror are declared by the POSIX headers.
16975         Check if struct addrinfo is declared.
16976
16977 2005-10-01  Simon Josefsson  <jas@extundo.com>
16978
16979         * lib/getaddrinfo.h: Protect #include's of sys/socket.h and netdb.h.
16980         Only define struct addrinfo if !HAVE_STRUCT_ADDRINFO.  Protect
16981         AI_* and EAI_* definitions.  Protect function declarations.
16982
16983 2005-10-01  Jim Meyering  <jim@meyering.net>
16984
16985         Sync from coreutils.
16986
16987         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Look for getservbyname in these
16988         libraries [inet nsl socket xnet].  Nelson Beebe reported that with
16989         native cc on Solaris 7, getaddrinfo.c requires -lsocket.
16990         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Check for gethostbyname
16991         in the inet and nsl libraries.  Required on Solaris 5.7.
16992
16993 2005-10-01  Jim Meyering  <jim@meyering.net>
16994
16995         Sync from coreutils.
16996         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Check for gethostbyname
16997         in the inet and nsl libraries.  Required on Solaris 5.7.
16998
16999 2005-10-01  Eric Blake  <ebb9@byu.net>  (tiny change)
17000
17001         * lib/getdelim.c (getdelim): Remove unused variables.
17002
17003 2005-09-29  Paul Eggert  <eggert@cs.ucla.edu>
17004
17005         * lib/xtime.h (XTIME_PRECISION): Now of type int, not long long int,
17006         so that the code works even with ancient cpp.  Portability problem
17007         with GCC 2.7.2.1 reported by Thomas M.Ott.
17008
17009 2005-09-27  Paul Eggert  <eggert@cs.ucla.edu>
17010
17011         * modules/regex (Depends-on): Add strcase.
17012
17013         * modules/gethostname (Licence): Change from GPL to LGPL, since
17014         gethostname.c is a trivial implementation of a standard library
17015         function.
17016         * modules/poll (License): Change from GPL to LGPL, since it's
17017         derived from LGPL code.
17018
17019 2005-09-27  Jim Meyering  <jim@meyering.net>
17020
17021         * lib/getcwd.c: Change #ifdef<TAB>HAVE_CONFIG_H to #ifdef
17022         HAVE_CONFIG_H.
17023
17024         * lib/intprops.h (signed_type_or_expr__): Define.
17025         (INT_STRLEN_BOUND) [__GNUC__]: Use a slightly tighter bound
17026         for unsigned types.
17027
17028 2005-09-26  Paul Eggert  <eggert@cs.ucla.edu>
17029
17030         * lib/verify.h (verify_expr): Remove, replacing with:
17031         (verify_true): New macro that returns true instead of void.
17032         (verify_type__): Remove.
17033         (verify): Use verify_true rather than verify_type__.
17034
17035 2005-09-26  Bruno Haible  <bruno@clisp.org>
17036
17037         * modules/mbchar (Include): Mention that HAVE_WCHAR_H && HAVE_WCTYPE_H
17038         is necessary.
17039         (lib_SOURCES): Remove mbchar.c.
17040         * modules/mbfile (Include): Mention that HAVE_MBRTOWC is necessary.
17041         (Files): Add m4/mbrtowc.m4.
17042         * modules/mbiter: Likewise.
17043         * modules/mbuiter: Likewise.
17044
17045 2005-09-26  Bruno Haible  <bruno@clisp.org>
17046
17047         * m4/mbchar.m4 (gl_MBCHAR): Check for wchar.h and wctype.h. Don't
17048         compile mbchar.c if they are not both present.
17049         * m4/mbfile.m4 (gl_MBFILE): Require gl_FUNC_MBRTOWC.
17050         * m4/mbiter.m4 (gl_MBITER): Likewise.
17051         * m4/strstr.m4 (gl_PREREQ_STRSTR): Use AC_REQUIRE.
17052         * m4/strcasestr.m4 (gl_PREREQ_STRCASESTR): Likewise.
17053         * m4/strcase.m4 (gl_PREREQ_STRCASECMP): Likewise.
17054
17055 2005-09-25  Jim Meyering  <jim@meyering.net>
17056
17057         * modules/inet_ntop (Depends-on): Add socklen, since inet_ntop.c
17058         also uses socklen_t.
17059
17060 2005-09-24  Paul Eggert  <eggert@cs.ucla.edu>
17061
17062         * lib/utimens.c (ENOSYS): Define if not already defined.
17063         (futimens): Support having a null PATH if the file descriptor
17064         is nonnegative.
17065
17066         * lib/regex_internal.h (__GNUC_PREREQ, always_inline, inline, pure):
17067         Remove.
17068         (__attribute): Define to empty unless GCC 3.1 or later.
17069         This works around a core dump on OpenBSD 3.4, which has GCC
17070         2.95.3, which dumps core when given __attribute__(()).  It also
17071         simplifies other tests, since we really don't want to bother with
17072         worrying about which ancient version of GCC supported what.
17073         Original problem reported by Yoann Vandoorselaere, with part of
17074         the fix suggested by Derek Price.
17075
17076 2005-09-24  Jim Meyering  <jim@meyering.net>
17077
17078         * lib/verify.h (verify_type__): Use `unsigned int' as the bitfield type
17079         so we can once again use a positive bitfield width of 1 -- now we
17080         don't have to explain why we were using a bitfield width of 2.
17081
17082 2005-09-23  Paul Eggert  <eggert@cs.ucla.edu>
17083
17084         * m4/regex.m4 (gl_REGEX): If replacing, define regcomp to rpl_regcomp,
17085         and similarly for the other external symbols.  Problem reported
17086         by James Gallager.
17087
17088         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Catch Sun Studio 10u1 on Linux
17089         bug reported by Jim Meyering.
17090
17091         * m4/utimens.m4 (gl_UTIMENS): Check for futimesat.
17092         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Undo previous change;
17093         not needed, since socklen is a prerequisite module.
17094
17095 2005-09-23  Paul Eggert  <eggert@cs.ucla.edu>
17096
17097         * lib/getaddrinfo.c [HAVE_NETINET_IN_H]: Include <netinet/in.h>.
17098         Problem reported by Eric Blake.
17099         (getaddrinfo): Initialize se so that it's not garbage.
17100         Redo internal storage allocation so that it doesn't make unportable
17101         assumptions about alignment.
17102         Fix a memory leak.
17103
17104         * lib/utimens.c (futimens): Use futimesat if available.
17105         Prefer it to futimes since it doesn't have the futimes bug.
17106
17107         * lib/verify.h (GL_CONCAT0, GL_CONCAT): Remove.
17108         (verify): Don't use the __LINE__ trick, as it doesn't work in general.
17109         Instead, declare a function that returns a pointer to an array,
17110         and use verify_type__ to declare the size of the array.
17111         Problem and germ of a solution reported by Bruno Haible.
17112         (verify_type__): Use 2, not 1, for bitfield size, to avoid
17113         a warning with Irix 6.5 cc.  Problem reported by Bruno Haible.
17114
17115 2005-09-23  Jim Meyering  <jim@meyering.net>
17116
17117         Sync from coreutils.
17118         Correct build failure (socklen_t not defined) on at least
17119         mips-sgi-irix6.5 and alphaev67-dec-osf5.1.
17120         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Require gl_SOCKLEN_T.
17121
17122 2005-09-23  Jim Meyering  <jim@meyering.net>
17123
17124         * modules/getaddrinfo (Depends-on): Add socklen.
17125
17126 2005-09-23  Bruno Haible  <bruno@clisp.org>
17127
17128         * tests/test-verify.c: New file.
17129
17130 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
17131
17132         Sync from coreutils.
17133
17134         * modules/argmatch (Depends-on): Add verify.
17135         * modules/getloadavg (Depends-on): Depend on fcntl-safer, not
17136         unistd-safer.
17137         * modules/save-cwd (Depends-on): Likewise.
17138
17139         * modules/openat (Files): Add lib/openat-die.c.
17140         (Depends-on): Remove error, exitfail.
17141         Add dirname.
17142
17143         * modules/verify: New file.
17144         * MODULES.html.sh (Diagnostics <assert.h>): New section,
17145         with "verify" module.
17146
17147 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
17148
17149         Sync from coreutils.
17150
17151         * m4/backupfile.m4, calloc.m4, chown.m4, cloexec.m4, dup2.m4:
17152         * m4/fileblocks.m4, free.m4, ftruncate.m4, getcwd.m4, getpagesize.m4:
17153         * m4/getugroups.m4, group-member.m4, idcache.m4, link-follow.m4:
17154         * m4/mkstemp.m4, mktime.m4, mountlist.m4, nanosleep.m4, pathmax.m4:
17155         * m4/physmem.m4, posixver.m4, putenv.m4, safe-read.m4, same.m4:
17156         * m4/save-cwd.m4, stdio-safer.m4, unistd-safer.m4, unlinkdir.m4:
17157         * m4/userspec.m4, xgetcwd.m4, xreadlink.m4:
17158         Don't bother checking for string.h, stdlib.h, unistd.h.
17159         * m4/fts.m4 (gl_FUNC_FTS_CORE): Don't require
17160         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK; that's now the lstat
17161         module's job.
17162         * m4/jm-macros.m4 (gl_MACROS): Likewise.
17163         * m4/prereq.m4 (gl_PREREQ): Add gl_FUNC_LSTAT.
17164
17165         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): New macro.
17166         (gl_GETDATE): Use it.
17167
17168         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Don't bother checking for unistd.h.
17169
17170 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
17171
17172         Sync from coreutils.
17173
17174         * lib/.cppi-disable: Add regcomp.c, regex_internal.c, regex_internal.h,
17175         stat-time.h.
17176         * lib/argmatch.h: Include verify.h
17177         (ARGMATCH_VERIFY): Use verify rather than rolling our own.
17178         (ARGMATCH_ASSERT): Remove; unused.
17179         * lib/canonicalize.c: Assume STDC_HEADERS.
17180         * lib/exclude.c: Include "strcase.h".
17181         * lib/regex_internal.h [!defined _LIBC]: Likewise.
17182         * lib/getusershell.c: Include stdio--.h rather than stdio.h
17183         and stdio-safer.h.
17184         (getusershell): Call fopen, not fopen_safer.
17185         * lib/save-cwd.c: Include fcntl--.h rather than fcntl.h.
17186         Do not include unistd-safer.h.
17187         (save_cwd): Don't call fd_safer; no longer needed
17188         now that we include fcntl--.h.
17189
17190         * lib/getdate.y (relative_time): New type.
17191         (RELATIVE_TIME_0): New constant.
17192         (parser_control): Use relative_time instead of doing it ourselves.
17193         (%union): Add new relative_time rel member.
17194         (tYEAR_UNIT, tMONTH_UNIT, tHOUR_UNIT, tMINUTE_UNIT, tSEC_UNIT):
17195         Now typeless.
17196         (relunit, relunit_snumber): Now of type rel.
17197         (zone, rel, relunit, get_date): Adjust to above changes.
17198
17199         * lib/getloadavg.c: Include fcntl--.h rather than fcntl.h.
17200         Do not include unistd-safer.h.
17201         (getloadavg): Don't call fd_safer; no longer needed
17202         now that we include fcntl--.h.
17203
17204         * lib/mkdir-p.c (ENOSYS): Define to EEXIST if not defined.
17205         (make_dir_parents): Treat ENOSYS like EEXIST.
17206
17207         Improve quality of diagnostics on restore_cwd failure.
17208         * lib/mkdir-p.h (make_dir): Remove.  All uses replaced by mkdir.
17209         (make_dir_parents): Last arg is now int * (for errno), not bool *.
17210         * lib/mkdir-p.c (make_dir, make_dir_parents): Likewise.
17211         Rewrite "mkdir -p" algorithm to avoid the need for "stat"
17212         each time through the loop.  Do not diagnose restore_cwd failure;
17213         that is the caller's job (and perhaps the caller does not care).
17214
17215         * lib/mkdir-p.c (CLEANUP_CWD, CLEANUP): Remove.
17216         (make_dir_parents): Revamp to avoid need for CLEANUP_CWD, CLEANUP.
17217         If the file already exists but is not a directory, don't bother
17218         to try to make its parents.
17219         Close potential file descriptor leak if we can't chdir("/") (!).
17220         Don't always return true if chdir($PWD) fails; return true only
17221         if the requested action was done successfully (except for the
17222         chdir($PWD)).
17223         Don't log final directory unless we actually made it.
17224         Refactor to avoid duplicate code to fix up permissions.
17225         Don't attempt to fix up parent permissions if chdir($PWD) fails.
17226
17227         * lib/strftime.c (my_strftime): Rewrite the previous change slightly,
17228         to make it a bit faster and (I hope) clearer.
17229         * lib/strftime.c (my_strftime): Add support for %:z, %::z, %:::z.
17230         Fix bug in formats like %2N.
17231
17232         * lib/verify.h: New file.
17233
17234 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
17235
17236         Sync from coreutils.
17237         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Check for netinet/in.h.
17238
17239 2005-09-22  Jim Meyering  <jim@meyering.net>
17240
17241         Sync from coreutils.
17242
17243         * m4/lstat.m4 (gl_FUNC_LSTAT):
17244         Use AC_LIBSOURCES to require lstat.c and lstat.h.
17245         Remove obsolete comment.
17246         * m4/xreadlink.m4: Use AC_LIBSOURCES and AC_LIBOBJ.
17247         * m4/xstrtod.m4: Likewise.
17248
17249         * m4/openat.m4 (gl_FUNC_OPENAT): Add openat-die.c.
17250
17251 2005-09-22  Jim Meyering  <jim@meyering.net>
17252
17253         Sync from coreutils.
17254
17255         * lib/backupfile.c: Use ARGMATCH_VERIFY, just in case.
17256
17257         * lib/posixtm.c (posixtime) [lint]: Initialize *all* of tm0, not just
17258         the .tm_year member, since otherwise gcc-4.0 would now warn about
17259         tm_zone, tm_gmtoff, tm_isdst, tm_yday, tm_wday.
17260
17261         * lib/quotearg.c (quotearg_n_options): Change code to be suboptimal, in
17262         order to avoid an unsuppressible warning from gcc on 64-bit systems.
17263
17264         * lib/getdate.y (get_date): Undo part of the 2005-04-04 change, so that
17265         the command "date -d'2005-03-27 +1 day'" succeeds once again, even
17266         when run in a time zone for which daylight savings time is in effect
17267         for the starting date.
17268
17269         * lib/mkdir-p.c (make_dir_parents): Don't let a failed chdir($PWD)
17270         stop us from restricting permissions of just-created absolute-named
17271         directories.
17272         * lib/mkdir-p.c (CLEANUP_CWD): Return *true*, not false when failing
17273         to restore initial working directory.
17274         * lib/mkdir-p.c (make_dir_parents): New parameter:
17275         different_working_dir, to tell caller if/when we change the working
17276         directory and are unable to return to the initial one.
17277         * lib/mkdir-p.h (make_dir_parents): Update prototype.
17278         * lib/mkdir-p.c (CLEANUP_CWD): Change one more `return 1' to
17279         `return false'.  This fixes a bug introduced on 2004-07-30.
17280
17281         * lib/openat.c (fdopendir): Be sure to close the supplied
17282         file descriptor before returning.  This makes our replacement
17283         implementation a little closer to Solaris's, where fdopendir
17284         ties the file descriptor to the returned DIR* pointer.
17285         * lib/openat.c (unlinkat): New function.
17286         * lib/openat.h (unlinkat): Add prototype.
17287         * lib/openat-die.c (openat_save_fail): Rename from openat_save_die.
17288         (openat_restore_fail): Rename from openat_restore_die.
17289         * lib/openat.c, openat.h: Reflect s/_die/_fail/ renaming.
17290
17291         Provide an alternative to exiting immediately upon save_cwd or
17292         restore_cwd failure.  Now, an application can arrange e.g.,
17293         to perform a longjump in that case.
17294         * lib/openat.c: Include dirname.h.
17295         Use IS_ABSOLUTE_FILE_NAME rather than testing for leading slash.
17296         (rpl_openat, fdopendir, fstatat): Call openat_save_die
17297         and openat_restore_die rather than calling error directly.
17298         Don't include "error.h" or "exitfail.h"; they're no longer needed.
17299
17300         * lib/openat-die.c (openat_save_die, openat_restore_die): New file.
17301         * lib/openat.h (openat_save_die, openat_restore_die): Declare and
17302         define.
17303
17304         * lib/strftime.c [FPRINTFTIME] (fprintftime): Provide a new interface:
17305         size_t fprintftime (FILE *fp, char const *fmt, struct tm const *tm,
17306                             int utc, int nanoseconds);
17307         Background:
17308         date should not have to allocate a megabyte of virtual memory to
17309         handle a format argument like +%1048575T.  When implemented with
17310         strftime, it must allocate such a buffer, use strftime to fill it
17311         in, print it, then free it.
17312         With fprintftime, it simply prints everything and exits.
17313         With no need for memory allocation, that's one fewer way to fail.
17314         * lib/strftime.c (my_strftime): Parse the colons of %:::z *after* the
17315         optional field width, not before, so we accept %9:z, not %:9z.
17316         (my_strftime): Be sure to use L_('x') for literals.
17317
17318         * lib/backupfile.c, lib/canon-host.c, lib/canonicalize.c, lib/chown.c:
17319         * lib/cloexec.c, lib/dup-safer.c, lib/dup2.c, lib/euidaccess.c:
17320         * lib/fd-safer.c, lib/fileblocks.c, lib/fopen-safer.c, lib/fsusage.c:
17321         * lib/ftruncate.c, lib/getcwd.c, lib/getcwd.h, lib/getloadavg.c:
17322         * lib/getopt_.h, lib/getpagesize.h, lib/getugroups.c:
17323         * lib/group-member.c, lib/human.h, lib/idcache.c, lib/mkdir-p.c:
17324         * lib/mountlist.c, lib/nanosleep.c, lib/pathmax.h, lib/physmem.c:
17325         * lib/posixver.c, lib/putenv.c, lib/raise.c, lib/safe-read.c:
17326         * lib/same.c, lib/save-cwd.c, lib/setenv.c, lib/settime.c:
17327         * lib/tempname.c, lib/unlinkdir.c, lib/unsetenv.c, lib/userspec.c:
17328         * lib/xgethostname.c, lib/xreadlink.c:
17329         Assume HAVE_UNISTD_H, i.e., include <unistd.h> unconditionally.
17330
17331         * lib/chown.c, lib/cloexec.c, lib/dup-safer.c, lib/dup2.c:
17332         * lib/fsusage.c, lib/getcwd.c, lib/getloadavg.c, lib/mountlist.c:
17333         * lib/openat.h, lib/save-cwd.c, lib/tempname.c:
17334         Assume HAVE_FCNTL_H (i.e., include <fcntl.h> unconditionally,
17335         and don't include <sys/file.h>).
17336
17337 2005-09-22  Eric Blake  <ebb9@byu.net>  (tiny change)
17338
17339         Sync from coreutils.
17340
17341         * lib/getloadavg.c (getloadavg) [__CYGWIN__]: Port to cygwin.
17342         [__linux__]: Allocate a big enough buffer for /proc/loadavg.
17343         [!LDAV_DONE]: Avoid unused variable warning.
17344
17345 2005-09-21  Bruno Haible  <bruno@clisp.org>
17346
17347         * lib/unicodeio.h (unicode_to_mb): New declaration.
17348
17349 2005-09-20  Derek Price  <derek@ximbiot.com>
17350
17351         * lib/getaddrinfo.c: Don't include <netdb.h> included from
17352         getaddrinfo.h.
17353
17354 2005-09-20  Bruno Haible  <bruno@clisp.org>
17355
17356         * gnulib-tool: Remove trailing slashes from the values specified for
17357         --source-base, --m4-base, --tests-base, --aux-dir.
17358         Suggested by Simon Josefsson <jas@extundo.com>.
17359
17360 2005-09-20  Bruno Haible  <bruno@clisp.org>
17361
17362         * gnulib-tool (func_all_modules, func_modules_transitive_closure,
17363         func_modules_to_filelist, func_import, func_create_testdir): Make all
17364         sorting results locale-independent, so that gnulib-cache.m4 doesn't
17365         change when gnulib-tool is invoked in a different locale.
17366
17367 2005-09-19  Simon Josefsson  <jas@extundo.com>
17368
17369         * m4/socklen.m4: Fix typo.
17370
17371 2005-09-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
17372
17373         Use a consistent style for including <config.h>.
17374         * lib/__fpending.c, lib/acl.c, lib/argmatch.c, lib/argp-help.c,
17375         lib/argp-parse.c, lib/argp-pvh.c, lib/backupfile.c, lib/basename.c,
17376         lib/c-stack.c, lib/calloc.c, lib/check-version.c, lib/cloexec.c,
17377         lib/closeout.c, lib/copy-file.c, lib/creat-safer.c, lib/cycle-check.c,
17378         lib/dirfd.c, lib/dirname.c, lib/dup-safer.c, lib/dup2.c,
17379         lib/euidaccess.c, lib/exclude.c, lib/exitfail.c, lib/fatal-signal.c,
17380         lib/fd-safer.c, lib/file-type.c, lib/fileblocks.c, lib/filemode.c,
17381         lib/filenamecat.c, lib/findprog.c, lib/fnmatch.c, lib/fopen-safer.c,
17382         lib/free.c, lib/fsusage.c, lib/ftruncate.c, lib/full-write.c,
17383         lib/fwriteerror.c, lib/getaddrinfo.c, lib/getcwd.c, lib/getdelim.c,
17384         lib/getline.c, lib/getlogin_r.c, lib/getndelim2.c, lib/getnline.c,
17385         lib/getopt1.c, lib/getpass.c, lib/group-member.c, lib/hard-locale.c,
17386         lib/hash-pjw.c, lib/hash.c, lib/human.c, lib/idcache.c,
17387         lib/inet_ntop.c, lib/isdir.c, lib/long-options.c, lib/malloc.c,
17388         lib/memcasecmp.c, lib/memcmp.c, lib/memcoll.c, lib/memcpy.c,
17389         lib/memmove.c, lib/mkdir-p.c, lib/modechange.c, lib/mountlist.c,
17390         lib/open-safer.c, lib/physmem.c, lib/pipe-safer.c, lib/pipe.c,
17391         lib/poll.c, lib/posixver.c, lib/progname.c, lib/progreloc.c,
17392         lib/putenv.c, lib/quote.c, lib/quotearg.c, lib/readline.c,
17393         lib/readlink.c, lib/realloc.c, lib/regex.c, lib/rename.c, lib/rmdir.c,
17394         lib/rpmatch.c, lib/safe-read.c, lib/same.c, lib/save-cwd.c,
17395         lib/savedir.c, lib/sig2str.c, lib/strcspn.c, lib/strerror.c,
17396         lib/stripslash.c, lib/strncasecmp.c, lib/strndup.c, lib/strnlen.c,
17397         lib/strnlen1.c, lib/strsep.c, lib/strstr.c, lib/strtod.c,
17398         lib/strtoimax.c, lib/strtol.c, lib/strverscmp.c, lib/tempname.c,
17399         lib/time_r.c, lib/userspec.c, lib/utimecmp.c, lib/version-etc-fsf.c,
17400         lib/version-etc.c, lib/wait-process.c, lib/xalloc-die.c, lib/xgetcwd.c,
17401         lib/xmalloc.c, lib/xmemcoll.c, lib/xnanosleep.c, lib/xreadlink.c,
17402         lib/xsetenv.c, lib/xstrndup.c, lib/xstrtoimax.c, lib/xstrtol.c,
17403         lib/xstrtoumax.c, lib/yesno.c:
17404         Standardize inclusion of config.h.
17405         * lib/__fpending.h, lib/dirfd.h, lib/getdate.h, lib/human.h,
17406         lib/inttostr.h:  Removed inclusion of config.h from header files.
17407         * lib/inttostr.c:  Adjusted in-tree users.
17408         * lib/timespec.h: Remove superfluous warning to include config.h.
17409         * lib/atexit.c, lib/chdir-long.c, lib/chown.c, lib/fchown-stub.c,
17410         lib/getgroups.c, lib/gettimeofday.c, lib/lchown.c, lib/lstat.c,
17411         lib/mkdir.c, lib/mkstemp.c, lib/nanosleep.c, lib/openat.c, lib/raise.c,
17412         lib/readtokens0.c, lib/readutmp.c, lib/unlinkdir.c: Guard inclusion of
17413         config.h with HAVE_CONFIG_H.
17414
17415 2005-09-19  Jim Meyering  <jim@meyering.net>
17416
17417         * modules/pathmax (License): Change to LGPL.
17418
17419 2005-09-19  Derek Price  <derek@ximbiot.com>
17420
17421         * config/srclist.txt: glibc's glob.h is now in lib/glob-libc.h.
17422
17423 2005-09-19  Bruno Haible  <bruno@clisp.org>
17424
17425         * gnulib-tool (import): Provide default for --tests-base.
17426
17427 2005-09-19  Bruno Haible  <bruno@clisp.org>
17428
17429         * doc/quote.texi: New file, extracted from gnulib.texi.
17430         * doc/ctime.texi: New file, extracted from gnulib.texi.
17431         * doc/inet_ntoa.texi: New file, extracted from gnulib.texi.
17432         * doc/gnulib-tool.texi: New file, extracted from gnulib.texi.
17433         * doc/gnulib.texi: Include them.
17434
17435 2005-09-18  Bruno Haible  <bruno@clisp.org>
17436
17437         Portability fix.
17438         * gnulib-tool (func_readlink): New function.
17439         (func_ln_if_changed): Use it.
17440
17441 2005-09-18  Bruno Haible  <bruno@clisp.org>
17442
17443         * gnulib-tool: Support --with-tests also with --import.
17444         (func_emit_tests_Makefile_am): Use variables $m4base and $testsbase.
17445         (func_import): Use variables $testsbase and $inctests. Emit a
17446         gl_TESTS_BASE form into gnulib-cache.m4. Create $testsbase/Makefile.am.
17447         Remind the user to add AC_CONFIG_FILES($testsdir/Makefile) and
17448         SUBDIRS += $testsdir.
17449         (func_create_testdir): Update.
17450
17451 2005-09-18  Bruno Haible  <bruno@clisp.org>
17452
17453         * gnulib-tool: Revise --dry-run implementation. Use variable $doit
17454         instead of $dry_run.
17455         (func_cp_if_changed, func_mv_if_changed): Remove functions.
17456         (func_ln_if_changed): Don't handle dry-run here.
17457         (func_import): In dry-run mode, detect more precisely which actions
17458         would be performed, and don't use "...ing" verbs.
17459
17460 2005-09-18  Bruno Haible  <bruno@clisp.org>
17461
17462         * gnulib-tool (func_tmpdir): New function, taken from GNU gettextize.
17463         (func_import): Use join on two temporary files instead of three nested
17464         loops, in order to determine which files are new or old.
17465
17466 2005-09-18  Bruno Haible  <bruno@clisp.org>
17467
17468         * gnulib-tool (func_import): Comment out code that spits out the
17469         new files with --dry-run.
17470
17471 2005-09-18  Bruno Haible  <bruno@clisp.org>
17472
17473         * doc/gnulib.texi (Invoking gnulib-tool): 50% rewritten.
17474
17475 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
17476
17477         * lib/stat-time.h: New file.
17478         * lib/timespec.h (ST_TIME_CMP_NS, ST_TIME_CMP, ATIME_CMP, CTIME_CMP):
17479         (MTIME_CMP, TIMESPEC_NS): Remove.  Now done by stat-time.h,
17480         in a different way.
17481         (timespec_cmp): New function.
17482         * lib/utimecmp.c: Include stat-time.h.
17483         (SYSCALL_RESOLUTION): Depend on whether various struct stat
17484         members exist, not on the obsolescent ST_MTIM_NSEC.
17485         (utimecmp): Use the new stat-time functions rater than TIMESPEC_NS.
17486
17487 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
17488
17489         * config/srclist.txt: Remove glibc bug 1033 and uncomment mktime.c.
17490
17491 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
17492
17493         * MODULES.html.sh (File system functions): Add stat-time.
17494         * modules/stat-time: New file.
17495         * modules/timespec (Files): Remove m4/st_mtim.m4; this
17496         is now done in a different way, by the stat-time module.
17497         * modules/utimecmp (Depends-on): Add stat-time.
17498
17499 2005-09-15  Paul Eggert  <eggert@cs.ucla.edu>
17500
17501         * m4/st_mtim.m4: Remove.  Superseded by...
17502         * m4/stat-time.m4: New file.
17503         * m4/timespec.m4 (gl_TIMESPEC): Require AC_C_INLINE.
17504         Do not invoke AC_STRUCT_ST_MTIM_NSEC; no longer needed.
17505
17506 2005-09-15  Derek Price  <derek@ximbiot.com>
17507
17508         * m4/strstr.m4 (gl_FUNC_STRSTR): Don't define strstr here.
17509
17510 2005-09-15  Derek Price  <derek@ximbiot.com>
17511
17512         * lib/regex_internal.h: Blank `pure' for GNUC < 3.
17513         * lib/regex_internal.c: Ditto, using this...
17514         (__GNUC_PREREQ): ...new macro.
17515         * lib/regcomp.c, regexec.c: Blank `always_inline' for GNUC < 3.1
17516         using...
17517         (__GNUC_PREREQ): ...this new macro.
17518
17519         * lib/strstr.h: Include string.h. Define strstr as a macro here.
17520
17521 2005-09-15  Derek Price  <derek@ximbiot.com>
17522             Paul Eggert  <eggert@cs.ucla.edu>
17523
17524         * lib/regcomp.c, regexec.c, regex_internal.c: Back out previous
17525         changes, consolidating in...
17526         * lib/regex_internal.h: ...this file.
17527
17528 2005-09-13  Jim Meyering  <jim@meyering.net>
17529
17530         * lib/canon-host.c: Filter through gnu indent and reword comments
17531         slightly.
17532         * lib/canon-host.h (ch_strerror_r): Tweak cpp indentation and spacing.
17533
17534 2005-09-13  Derek Price  <derek@ximbiot.com>
17535
17536         * lib/canon-host.c (canon_host_r): Set *cherror on memory allocation
17537         failure.
17538         Reported by Jim Meyering  <jim@meyering.net>.
17539
17540 2005-09-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
17541
17542         * lib/base64.c: Typo.
17543         (base64_encode): Put b64str in initialized data section.
17544
17545 2005-09-12  Paul Eggert  <eggert@cs.ucla.edu>
17546
17547         Merge glibc and coreutils changes into gnulib, plus a few
17548         extra fixes.
17549         * lib/md5.c: Use #error rather than a string.
17550         (CYCLIC): New macro, from glibc source.  Use it instead of rol.
17551         * lib/md5.h (__GNUC_PREREQ, __THROW): Define if not defined already.
17552         (__attribute__): Define to empty for non recent-GCC.
17553         (__md5_buffer, __md5_finish_ctx, __md5_init_ctx, __md5_process_block):
17554         (__md5_process_bytes, __md5_read_ctx, __md5_stream):
17555         Renamed from their non-__ counterparts, with new macros replacing
17556         them if not _LIBC.  Add __THROW attribute.
17557         (rol): Remove.
17558         (struct md5_ctx): Align buffer if using GCC.
17559         * lib/sha1.h (struct sha1_ctx): Likewise.
17560         * lib/sha1.c (SWAP): Renamed from the NOTSWAP.  All uses changed.
17561         The old name was backwards.
17562         (NOTSWAP): Remove; not used.
17563         (rol): New macro, moved here from md5.h.
17564         (sha1_process_block): Remove a FIXME that doesn't make sense.
17565
17566 2005-09-12  Derek Price  <derek@ximbiot.com>
17567
17568         Return usable errors from canon-host.
17569         * lib/canon-host.h: New file.
17570         * lib/canon-host.c (canon_host): Wrap...
17571         (canon_host_r): ...this new function, which now relies exclusively on
17572         getaddrinfo.
17573         (ch_strerror): New function.
17574         (last_cherror): New global.
17575         * lib/getaddrinfo.c: Move include of getaddrinfo.h first to test
17576         interface.
17577         (getaddrinfo): Add AI_CANONNAME functionality.  Don't do arithmetic on
17578         void *.
17579         (freeaddrinfo): Free ai->ai_canonname when set.
17580
17581 2005-09-12  Derek Price  <derek@ximbiot.com>
17582
17583         Make canon-host require getaddrinfo.
17584         * m4/canon-host.m4 (gl_CANON_HOST): Remove most dependencies.
17585         AC_LIBSOURCE canon-host.h.  Call...
17586         (gl_PREREQ_CANON_HOST): ...this new function, which requires
17587         gl_GETADDRINFO.
17588         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Compile gai_strerror when needed.
17589
17590 2005-09-12  Derek Price  <derek@ximbiot.com>
17591
17592         * modules/canon-host: Add canon-host.h.  Depend on getaddrinfo.  Make
17593         LGPL.
17594         * modules/getaddrinfo: Add link to opengroup spec.  Depend on strdup.
17595
17596 2005-09-12  Derek Price  <derek@ximbiot.com>
17597
17598         * lib/gai_strerror.c: Include config.h when available.  Include
17599         getaddrinfo.h before other headers to test interface.
17600         Reported by Larry Jones <lawrence.jones@ugs.com>.
17601
17602 2005-09-12  Derek Price  <derek@ximbiot.com>
17603             Paul Eggert  <eggert@cs.ucla.edu>
17604
17605         * modules/glob (Files): Add glob-libc.h.
17606
17607 2005-09-12  Derek Price  <derek@ximbiot.com>
17608             Paul Eggert  <eggert@cs.ucla.edu>
17609
17610         * m4/glob.m4 (gl_GLOB_SUBSTITUTE): AC_LIBSOURCES for glob.c,
17611         glob_.h, glob-libc.h.
17612         (gl_PREREQ_GLOB): Remove _SYS_CDEFS_H hack; no longer needed.
17613
17614 2005-09-12  Derek Price  <derek@ximbiot.com>
17615             Paul Eggert  <eggert@cs.ucla.edu>
17616
17617         * lib/glob-libc.h: Renamed from glob_.h.  The new version is
17618         taken from libc's glob.h, except with '#ifdef __GLOB_GNULIB'
17619         protecting things that should be done only in gnulib contexts.
17620         * lib/glob_.h: New file, containing only the glob things needed for
17621         gnulib.
17622         (GLOB_PREFIX): Remove.  All uses changed to look for __GLOB_GNULIB.
17623         (__GLOB_CONCAT, __GLOB_XCONCAT, __GLOB_ID): Remove; no longer needed.
17624         (glob, globfree, glob_pattern_p): Now defined simply in terms of
17625         rpl_glob, rpl_globfree, rpl_glob_pattern_p.
17626         (__GLOB_GNULIB): New macro, to keep the glob.h changes clearer
17627         and to respect the namespace rules better.
17628
17629 2005-09-08  Simon Josefsson  <jas@extundo.com>
17630
17631         * modules/socklen: New file.
17632
17633 2005-09-08  Simon Josefsson  <jas@extundo.com>
17634
17635         * m4/socklen.m4: New file.
17636
17637 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
17638
17639         * modules/utimens (Files): Add m4/utimbuf.m4, since
17640         m4/utimens.m4 requires gl_CHECK_TYPE_STRUCT_UTIMBUF.
17641         Reported by Sergey Poznyakoff.
17642
17643 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
17644
17645         * lib/glob.c (glob, globfree, __glob_pattern_p): Use old-style function
17646         definitions, since that's the preferred style in glibc.
17647         Fix a minor spacing issue, and update copyright notice to match
17648         glibc's.
17649
17650 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
17651
17652         * config/srclist.txt: Remove glibc bug 1061; it's been fixed.
17653
17654 2005-09-06  Simon Josefsson  <jas@extundo.com>
17655
17656         * lib/getpass.c (getpass): Fix typo, test for HAVE_TCSETATTR and not
17657         TCSETATTR.  Reported by Derek Price <derek@ximbiot.com>.
17658
17659 2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
17660
17661         * lib/regex_internal.h (bitset_not): Add parens to avoid gcc -Wall
17662         warning.
17663
17664 2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
17665
17666         * config/srclist.txt: Add glibc bug 1302.
17667
17668 2005-09-05  Paul Eggert  <eggert@cs.ucla.edu>
17669
17670         Change bitset word type from unsigned int to unsigned long int,
17671         as this has better performance on typical 64-bit hosts.
17672         Port bitset code to hosts with unusual word sizes.
17673         * lib/regcomp.c (build_equiv_class, build_charclass, build_range_exp):
17674         (build_collating_symbol):
17675         Prefer bitset to re_bitset_ptr_t in prototypes, when the actual
17676         argument is a bitset.  This is merely a style issue, but it makes
17677         it clearer that an entire array is expected.
17678         (re_compile_fastmap_iter, init_dfa, init_word_char, optimize_subexps):
17679         * lib/regcomp.c (lower_subexp, parse_bracket_exp, built_charclass_op):
17680         Port to the case where bitset_word is not the same as unsigned int.
17681         * lib/regex_internal.h (bitset_set, bitset_clear, bitset_contain):
17682         (bitset_not, bitset_merge, bitset_set_all, bitset_mask):
17683         Likewise.
17684         * lib/regexec.c (check_dst_limits_calc_pos_1,
17685         check_subexp_matching_top):
17686         (build_trtable, group_nodes_into_DFAstates):
17687         Likewise.
17688         * lib/regcomp.c (re_compile_fastmap_iter, utf8_sb_map, optimize_utf8):
17689         Don't assume that SBC_MAX is a multiple of BITSET_WORD_BITS.
17690         * lib/regex_internal.h (bitset_set_all, bitset_not): Likewise.
17691         * lib/regexec.c (group_nodes_into_DFAstates): Likewise.
17692         * lib/regcomp.c (utf8_sb_map): Don't assume UINT_MAX == 0xffffffff.
17693         * lib/regcomp.c (optimize_subexps, lower_subexp):
17694         Work even if bitset_word has holes in its bitwise representation.
17695         * lib/regex_internal.h (BITSET_WORD_BITS): Likewise.
17696         * lib/regexec.c (check_dst_limits_calc_pos_1,
17697         check_subexp_matching_top):
17698         Likewise.
17699         * lib/regex_internal.c (re_string_reconstruct):
17700         Don't assume UCHAR_MAX == 255.
17701         * lib/regex_internal.h (bitset_set_all): Likewise.
17702         * lib/regex_internal.h (BITSET_WORD_BITS): Renamed from UINT_BITS.
17703         All uses changed.
17704         (BITSET_WORDS): Renamed from BITSET_UINTS.  All uses changed.
17705         (bitset_word): New type, replacing 'unsigned int' for bitset uses.
17706         All uses changed.
17707         (BITSET_WORD_MAX): New macro.
17708         (bitset_set, bitset_clear, bitset_contain, bitset_empty):
17709         (bitset_set_all, bitset_copy):  Now inline functions, not macros.
17710         (bitset_empty, bitset_copy):
17711         Prefer sizeof (bitset) to multiplying it out ourselves.
17712         (bitset_not_merge): Remove; unused.
17713         (bitset_contain): Return bool, not unsigned int with one bit on.
17714         All callers changed.
17715         * lib/regexec.c (build_trtable): Don't assume bitset has no stricter
17716         alignment than re_node_set; do this by defining a new internal
17717         type struct dests_alloc and using it to allocate memory.
17718
17719 2005-09-05  Bruno Haible  <bruno@clisp.org>
17720
17721         * gnulib-tool (func_import): Fix comparison in handling of symbolic
17722         links.
17723
17724 2005-09-04  Martin Lambers  <marlam@marlam.de>  (tiny change)
17725
17726         * modules/size_max (Makefile.am): Add size_max.h
17727
17728 2005-09-04  Derek Price  <derek@ximbiot.com>
17729
17730         * gnulib-tool (func_import): Fix reversed $symbolic logic.
17731
17732 2005-09-03  Simon Josefsson  <jas@extundo.com>
17733
17734         * gnulib-tool: Fix typo.
17735
17736 2005-09-03  Simon Josefsson  <jas@extundo.com>
17737
17738         * config/srclist.txt: Add glibc bug 1293.
17739
17740 2005-09-03  Derek Price  <derek@ximbiot.com>
17741
17742         * m4/getlogin_r (gl_GETLOGIN_R): Fix cut & paste error.
17743         From Larry Jones <lawrence.jones@ugs.com>.
17744
17745 2005-09-02  Simon Josefsson  <jas@extundo.com>
17746
17747         * modules/socklen: New file.
17748
17749 2005-09-02  Simon Josefsson  <jas@extundo.com>
17750
17751         * modules/havelib: New module.
17752
17753         * modules/gettext, modules/iconv, modules/lock, modules/readline:
17754         Use havelib.
17755
17756 2005-09-02  Paul Eggert  <eggert@cs.ucla.edu>
17757
17758         Check for arithmetic overflow when calculating sizes, to prevent
17759         some buffer-overflow issues.  These patches are conservative, in the
17760         sense that when I couldn't determine whether an overflow was possible,
17761         I inserted a run-time check.
17762         * lib/regex_internal.h (re_xmalloc, re_xrealloc, re_x2realloc): New
17763         macros.
17764         (SIZE_MAX) [!defined SIZE_MAX]: New macro.
17765         (re_alloc_oversized, re_x2alloc_oversized, re_xnmalloc):
17766         (re_xnrealloc, re_x2nrealloc): New inline functions.
17767         * lib/regcomp.c (init_dfa, analyze, build_range_exp,
17768         parse_bracket_exp):
17769         (build_equiv_class, build_charclass): Check for arithmetic overflow
17770         in size expression calculations.
17771         * lib/regex_internal.c (re_string_realloc_buffers):
17772         (build_wcs_upper_buffer, re_node_set_add_intersect):
17773         (re_node_set_init_union, re_node_set_insert, re_node_set_insert_last):
17774         (re_dfa_add_node, register_state): Likewise.
17775         * lib/regexec.c (re_search_stub, re_copy_regs, re_search_internal):
17776         (prune_impossible_nodes, push_fail_stack, set_regs, check_arrival):
17777         (build_trtable, extend_buffers, match_ctx_init, match_ctx_add_entry):
17778         (match_ctx_add_subtop, match_ctx_add_sublast): Likewise.
17779
17780 2005-09-02  Paul Eggert  <eggert@cs.ucla.edu>
17781
17782         * modules/inttostr (Files): Add m4/inttypes_h.m4, m4/stdint_h.m4,
17783         m4/ulonglong.m4.  Problem reported by Martin Lambers.
17784
17785 2005-09-02  Bruno Haible  <bruno@clisp.org>
17786
17787         Support for lib vs. lib64 distinction on biarch platforms.
17788         * m4/lib-prefix.m4 (AC_LIB_PREPARE_MULTILIB): New macro.
17789         (AC_LIB_PREFIX): Require it. Use $acl_libdirstem instead of 'lib'.
17790         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Likewise.
17791
17792 2005-09-02  Bruno Haible  <bruno@clisp.org>
17793
17794         * gnulib-tool (import): In the other first-use case, provide defaults
17795         as well.
17796
17797 2005-09-02  Bruno Haible  <bruno@clisp.org>
17798
17799         * config/srclist.txt: lib-link.m4 and lib-prefix.m4 currently have
17800         patches not yet found in the latest gettext release.
17801
17802 2005-09-01  Paul Eggert  <eggert@cs.ucla.edu>
17803
17804         * lib/glob.c (GET_LOGIN_NAME_MAX): Renamed from LOGIN_NAME_MAX,
17805         to avoid a collision with bits/local_lim.h in glibc.
17806         All uses changed.  Problem reported by Dmitry V. Levin in
17807         <http://sources.redhat.com/bugzilla/show_bug.cgi?id=1060>.
17808
17809         * lib/regex_internal.c (build_wcs_upper_buffer): Fix portability
17810         bugs in int versus size_t comparisons.
17811         (re_string_context_at): Fix bug where the code assumed that
17812         Idx is signed.
17813
17814         Use bool where appropriate.
17815         * lib/regcomp.c (re_set_fastmap): ICASE arg is bool, not int.
17816         All callers changed.
17817         (calc_eclosure_iter): Likewise, for ROOT arg.
17818         (parse_bracket_element): Likewise, for ACCEPT_HYPHEN arg.
17819         (build_charclass_op): Likewise, for NON_MATCH arg.
17820         * lib/regex_internal.c (re_string_allocate, re_string_construct):
17821         (re_string_construct_common): Likewise, for ICASE arg.
17822         * lib/regexec.c (re_search_2_stub, re_search_stub):
17823         Likewise, for RET_LEN arg.
17824         (check_matching): Likewise, for FL_LONGEST_MATCH arg.
17825         (set_regs): Likewise, for FL_BACKTRACK arg.
17826         * lib/regcomp.c (re_compile_fastmap_iter, optimize_utf8):
17827         (duplicate_node_closure, calc_inveclosure, calc_eclosure):
17828         (calc_eclosure_iter, parse_bracket_exp):
17829         Use bool for internal variables that are booleans.
17830         * lib/regexec.c (re_search_internal, check_matching,
17831         proceed_next_node):
17832         (set_regs, build_sifted_states, sift_states_bkref):
17833         (check_arrival_add_next_nodes, check_arrival_expand_ecl_sub):
17834         (expand_bkref_cache, build_trtable, group_nodes_into_DFAstates):
17835         (find_collation_sequence_value):
17836         Likewise.
17837         * lib/regex_internal.c (re_node_set_insert, re_node_set_insert_last):
17838         (re_node_set_compare):
17839         Return bool, not int. All callers changed.
17840         * lib/regexec.c (check_halt_node_context, check_dst_limits):
17841         (build_trtable, check_node_accept): Likewise.
17842         * lib/regex_internal.h: Include stdbool.h.
17843
17844         Fix bugs uncovered when converting to bool.
17845         * lib/regcomp.c (calc_eclosure_iter): Check for storage allocation
17846         failure instead of charging ahead blindly.
17847         * lib/regex_internal.c (register_state): Likewise.
17848         * lib/regexec.c (re_search_2_stub): Use simpler method than boolean
17849         for freeing internal storage.
17850         (group_nodes_into_DFA_states): Use unsigned int, not int, for
17851         bitset pieces used as boolean, to avoid undefined behavior
17852         on hosts that do int overflow checking.
17853
17854 2005-09-01  Paul Eggert  <eggert@cs.ucla.edu>
17855
17856         * config/srclist.txt: Add glibc bugs 1285-1287.
17857
17858 2005-09-01  Jim Meyering  <jim@meyering.net>
17859
17860         * m4/lchown.m4: Require gl_FUNC_CHOWN, for the definition of
17861         CHOWN_MODIFIES_SYMLINK, which is used by lchown.c.
17862         Require gl_STAT_MACROS, too.
17863
17864 2005-09-01  Bruno Haible  <bruno@clisp.org>
17865
17866         * gnulib-tool (import): In the first-use case, provide defaults.
17867
17868 2005-09-01  Bruno Haible  <bruno@clisp.org>
17869
17870         * gnulib-tool (func_import): Remove the .tmp files.
17871
17872 2005-09-01  Bruno Haible  <bruno@clisp.org>
17873
17874         * gnulib-tool (func_import): Fix handling of symbolic links.
17875
17876 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
17877
17878         On 64-bit hosts (where size_t is 64 bits and int is 32 bits), the
17879         old glibc regex code mishandles strings longer than 2**31 bytes.
17880         This patch fixes this when the regex code is used in gnulib
17881         (i.e., outside glibc).
17882
17883         This patch should not affect the use of the regex code inside
17884         glibc.  No doubt this problem also needs to be handled for glibc
17885         as well, but the result will be an incompatible change to the
17886         glibc ABI, and the old ABI will have to be supported too.  That
17887         can be the the subject for another patch.
17888
17889         * lib/regex.h (_REGEX_LARGE_OFFSETS): New feature-test macro,
17890         governing whether the rest of this patch is active.  By default,
17891         the macro is disabled and the patch has no effect.
17892         (regoff_t) [defined _REGEX_LARGE_OFFSETS]: Define to off_t, not int.
17893         (__re_idx_t, __re_size_t, __re_long_size_t): New types.
17894         (struct re_pattern_buffer, re_search, re_search_2, re_match):
17895         (re_match_2, re_set_registers): Use the new types.
17896         * lib/regex_internal.h (Idx, re_hashval_t): New types.
17897         (REG_MISSING, REG_ERROR, REG_VALID_INDEX, REG_VALID_NONZERO_INDEX):
17898         New macros.
17899         (re_node_set, re_charset_t, re_token_t, re_string_realloc_buffers):
17900         (re_string_context_at, bin_tree_t, re_dfastate_t):
17901         (struct re_state_table_entry, state_array_t, re_sub_match_last_t):
17902         (re_sub_match_top_t, re_match_context_t, re_sift_context_t):
17903         (struct re_fail_stack_ent_t, struct re_fail_stack_t, struct re_dfa_t):
17904         (re_string_char_size_at, re_string_wchar_at):
17905         (re_string_elem_size_at):
17906         Use the new types and macros to port to 64-bit hosts.
17907         Use unsigned types for internal values, so that the code
17908         mostly works even for arrays larger than SSIZE_MAX.
17909         * lib/regcomp.c (re_compile_internal, init_dfa, duplicate_node):
17910         (search_duplicated_node, calc_eclosure_iter, fetch_number):
17911         (parse_reg_exp, parse_branch, parse_expression, parse_sub_exp):
17912         (build_equiv_class, build_charclass, re_compile_fastmap_iter):
17913         (free_dfa_content, create_initial_state, optimize_utf8, analyze):
17914         (optimize_subexps, calc_first, link_nfa_nodes, duplicate_node_closure):
17915         (calc_inveclosure, parse_dup_op, build_range_exp):
17916         (build_collating_symbol, parse_bracket_exp, build_charclass_op):
17917         (fetch_number, create_token_tree, mark_opt_subexp):
17918         Likewise.
17919         * lib/regex_internal.c (re_string_construct_common,
17920         create_ci_newstate):
17921         (create_cd_newstate, re_string_allocate, re_string_construct):
17922         (re_string_realloc_buffers, build_wcs_upper_buffer):
17923         (re_string_skip_chars, build_upper_buffer, re_string_translate_buffer):
17924         (re_string_reconstruct, re_string_peek_byte_case):
17925         (re_string_fetch_byte_case, re_string_context_at):
17926         (re_node_set_alloc, re_node_set_init_1, re_node_set_init_2):
17927         (re_node_set_init_copy, re_node_set_add_intersect):
17928         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
17929         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
17930         (re_node_set_remove_at, re_dfa_add_node, calc_state_hash):
17931         (re_acquire_state, re_acquire_state_context, register_state):
17932         Likewise.
17933         * lib/regex.c (match_ctx_init, match_ctx_add_entry,
17934         search_cur_bkref_entry):
17935         (match_ctx_add_subtop, match_ctx_add_sublast, sift_ctx_init):
17936         (re_search_internal, re_search_2_stub, re_search_stub)
17937         (re_copy_regs, check_matching, check_halt_state_context, update_regs):
17938         (push_fail_stack, sift_states_iter_mb, build_sifted_states):
17939         (update_cur_sifted_state, check_dst_limits):
17940         (check_dst_limits_calc_pos_1, check_dst_limits_calc_pos):
17941         (check_subexp_limits, sift_states_bkref, merge_state_array):
17942         (check_subexp_matching_top, get_subexp, get_subexp_sub):
17943         (find_subexp_node, check_arrival, check_arrival_add_next_nodes):
17944         (check_arrival_expand_ecl, check_arrival_expand_ecl_sub):
17945         (expand_bkref_cache, check_node_accept_bytes):
17946         (group_nodes_into_DFAstates, check_node_accept, regexec, re_match):
17947         (re_search, re_match_2, re_search_2, prune_impossible_nodes):
17948         (acquire_init_state_context, check_halt_node_context):
17949         (proceed_next_node, pop_fail_stack, set_regs, free_fail_stack_return):
17950         (sift_states_backward, clean_state_log_if_needed):
17951         (sub_epsilon_src_nodes, add_epsilone_src_nodes, merge_state_with_log):
17952         (find_recover_state, transit_state_sb, transit_state_mb):
17953         (transit_state_bkref, build_trtable, match_ctx_clean):
17954         Likewise.
17955         * lib/regcomp.c (parse_dup_op): Add an extra test if Idx is unsigned,
17956         to work around an assumption that REG_MISSING is negative.
17957
17958         * lib/regcomp.c (re_comp) [defined _REGEX_RE_COMP || defined _LIBC]:
17959         (seek_collating_symbol_entry) [defined _LIBC]:
17960         (lookup_collation_sequence_value) [defined _LIBC]:
17961         (build_range_exp, build_collating_symbol) [defined _LIBC]:
17962         Use prototypes rather than old-style function definitions.
17963         * lib/regexec.c (re_exec) [defined _REGEX_RE_COMP || defined _LIBC]:
17964         (transit_state_sb) [0]:
17965         (find_collation_sequence_value) [defined _LIBC]: Likewise.
17966
17967         * lib/regexec.c (re_search_internal): Simplify update of rm_so and
17968         rm_eo.
17969
17970         * lib/regcomp.c (re_compile_fastmap_iter, init_dfa, init_word_char):
17971         (optimize_subexps, lower_subexp):
17972         Don't assume 1<<31 has defined behavior on hosts with 32-bit int,
17973         since the signed shift might overflow.  Use 1u<<31 instead.
17974         * lib/regex_internal.h (bitset_set, bitset_clear, bitset_contain):
17975         Likewise.
17976         * lib/regexec.c (check_dst_limits_calc_pos_1,
17977         check_subexp_matching_top): Likewise.
17978
17979         * lib/regcomp.c (optimize_subexps, lower_subexp):
17980         Use CHAR_BIT rather than 8, for clarity.
17981         * lib/regexec.c (check_dst_limits_calc_pos_1):
17982         (check_subexp_matching_top): Likewise.
17983         * lib/regcomp.c (init_dfa): Make table_size unsigned, so that we don't
17984         have to worry about portability issues when shifting it left.
17985         Remove no-longer-needed test for table_size > 0.
17986         * lib/regcomp.c (parse_sub_exp): Do not shift more bits than there are
17987         in a word, as the resulting behavior is undefined.
17988         * lib/regexec.c (check_dst_limits_calc_pos_1): Likewise;
17989         in one case, a <= should have been an <, and in another case the
17990         whole test was missing.
17991         * lib/regex_internal.h (BYTE_BITS): Remove.  All uses changed to
17992         the standard name CHAR_BIT.
17993         * lib/regexec.c (match_ctx_add_entry): Don't assume that ~0 == -1;
17994         this is not true on one's complement and signed-magnitude hosts.
17995
17996         * lib/regex_internal.h (re_sub_match_top_t): Remove unused member
17997         next_last_offset.
17998         (struct re_dfa_t): Remove unused member states_alloc.
17999         * lib/regcomp.c (init_dfa): Don't initialize unused members.
18000
18001 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
18002
18003         * m4/regex.m4 (gl_REGEX): Require AC_SYS_LARGEFILE, Define
18004         _REGEX_LARGE_OFFSETS).  Test for regoff_t/off_t bug in 64-bit
18005         and large-file glibc and in 32-bit large-file Solaris.
18006
18007 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
18008
18009         * lib/regex_internal.c (re_string_reconstruct): Don't assume buffer
18010         lengths fit in regoff_t; this isn't true if regoff_t is the same
18011         width as size_t.
18012         * lib/regex.c (re_search_internal): 5th arg is LAST_START
18013         (= START + RANGE) instead of RANGE.  This avoids overflow
18014         problems when regoff_t is the same width as size_t.
18015         All callers changed.
18016         (re_search_2_stub): Check for overflow when adding the
18017         sizes of the two strings.
18018         (re_search_stub): Check for overflow when adding START
18019         to RANGE; if it occurs, substitute the extreme value.
18020
18021 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
18022
18023         * config/srclist.txt: Add glibc bugs 1273, 1278-1282, 1284.
18024
18025 2005-08-31  Jim Meyering  <jim@meyering.net>
18026
18027         * lib/regcomp.c (search_duplicated_node): Make first pointer arg
18028         a pointer-to-const.
18029         * lib/regex_internal.c (create_ci_newstate, create_cd_newstate):
18030         (register_state): Likewise.
18031         * lib/regexec.c (search_cur_bkref_entry, check_dst_limits):
18032         (check_dst_limits_calc_pos_1, check_dst_limits_calc_pos):
18033         (group_nodes_into_DFAstates): Likewise.
18034
18035 2005-08-31  Jim Meyering  <jim@meyering.net>
18036
18037         * check-module: Add a FIXME comment.
18038
18039 2005-08-31  Eric Blake  <ebb9@byu.net>
18040
18041         * modules/unistd-safer (Files): Add unistd--.h.
18042         * modules/stdio-safer (Files): Add stdio--.h.
18043
18044 2005-08-31  Derek Price  <derek@ximbiot.com>
18045
18046         * lib/getdelim.c (getdelim): Return EOF on EOF.
18047         Reported by Larry Jones <lawrence.jones@ugs.com>.
18048
18049 2005-08-31  Bruno Haible  <bruno@clisp.org>
18050
18051         Avoid unnecessary diffs in the generated lib/Makefile.am.
18052         * gnulib-tool (func_emit_lib_Makefile_am): Don't write the cmd into
18053         the generated files.
18054         (func_import): Don't set cmd.
18055
18056 2005-08-31  Bruno Haible  <bruno@clisp.org>
18057
18058         * lib/strstr.c: Include <stddef.h>, for NULL.
18059         * lib/strcasestr.c: Likewise.
18060         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
18061
18062 2005-08-31  Bruno Haible  <bruno@clisp.org>
18063
18064         * gnulib-tool: New option --macro-prefix.
18065         (func_import): Use macro_prefix.
18066         (import): Handle option --macro-prefix.
18067
18068 2005-08-31  Bruno Haible  <bruno@clisp.org>
18069
18070         * gnulib-tool (import): Rename most ac_* variables to cached_*.
18071         Also use new variables cached_lgpl, cached_libtool.
18072
18073 2005-08-31  Bruno Haible  <bruno@clisp.org>
18074
18075         * gnulib-tool (func_import): Require AC_GNU_SOURCE etc. instead of
18076         always instantiating them.
18077
18078 2005-08-31  Bruno Haible  <bruno@clisp.org>
18079
18080         * gnulib-tool (func_import): Read the previous cached settings
18081         from gnulib-cache.m4 and gnulib-comp.m4. Remove files that were
18082         earlier added by gnulib but are now dropped. Warn when a gnulib file
18083         overwrites a non-gnulib file.
18084
18085 2005-08-31  Bruno Haible  <bruno@clisp.org>
18086
18087         * gnulib-tool (func_import): Generate two files gnulib-cache.m4 and
18088         gnulib-comp.m4 instead of a single gnulib.m4, to make it easy for
18089         projects that don't keep autogenerated files in CVS. Put into
18090         actioncmd only the specified modules, not the transitive closure.
18091
18092 2005-08-31  Bruno Haible  <bruno@clisp.org>
18093
18094         * gnulib-tool (func_import): Fix defaulting of $libname and $libtool.
18095         Create directories that shall be filled.
18096         (import): Don't look for gl_* macros in configure.ac. Recurse across
18097         all directories containing a gnulib-cache.m4 files, if meaningful.
18098
18099 2005-08-31  Bruno Haible  <bruno@clisp.org>
18100
18101         * gnulib-tool (func_import): Emit also a stub for gl_LIBTOOL.
18102         (import): Set seen_libtool when we see gl_LIBTOOL.
18103
18104 2005-08-31  Bruno Haible  <bruno@clisp.org>
18105
18106         * gnulib-tool (func_import): Also copy m4/gnulib-tool.m4. Omit
18107         declaration macro definitions from generated gnulib.m4.
18108
18109 2005-08-30  Oskar Liljeblad  <oskar@osk.mine.nu>
18110
18111         * lib/iconvme.h: Add prototype for iconv_alloc.
18112
18113 2005-08-29  Simon Josefsson  <jas@extundo.com>
18114
18115         * lib/iconvme.c: Fix errno.
18116
18117 2005-08-29  Bruno Haible  <bruno@clisp.org>
18118
18119         * gnulib-tool: Enclose all occurrences of $destdir in "...", so
18120         that it works when the directory contains spaces.
18121
18122 2005-08-29  Bruno Haible  <bruno@clisp.org>
18123
18124         * gnulib-tool (import): Avoid unnecessary spaces in $avoidlist.
18125
18126 2005-08-29  Bruno Haible  <bruno@clisp.org>
18127
18128         * gnulib-tool (func_import): Emit more comments into gnulib.m4.
18129         Emit more advice.
18130
18131 2005-08-29  Bruno Haible  <bruno@clisp.org>
18132         and Stepan Kasal  <kasal@ucw.cz>
18133
18134         * check-module: If more parameters are given, check each of them
18135         separately; add more exceptions, as noted by Jim Meyering.
18136         (check_module): New procedure.
18137         (%exempt_header): Now contains all exceptions.
18138
18139 2005-08-29  Ben Pfaff  <blp@cs.stanford.edu>
18140
18141         * modules/byteswap (Makefile.am): Fix rule to not assume GNU make.
18142
18143 2005-08-29  Oskar Liljeblad  <oskar@osk.mine.nu>
18144
18145         * lib/iconvme.c: Split iconv_string into iconv_alloc.
18146
18147 2005-08-28  Bruno Haible  <bruno@clisp.org>
18148
18149         * m4/gnulib-tool.m4: New file.
18150
18151 2005-08-27  Jim Meyering  <jim@meyering.net>
18152
18153         * modules/unistd-safer (Files): Add pipe-safer.c.
18154         * modules/fcntl-safer (Files): Add creat-safer.c.
18155
18156 2005-08-27  Jim Meyering  <jim@meyering.net>
18157
18158         * m4/stdlib-safer.m4: New file.  From coreutils.
18159         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Add stdio--.h.
18160         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Add creat-safer.c to the
18161         AC_LIBSOURCES list and arrange to compile it via AC_LIBOBJ.
18162         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Likewise, add pipe-safer.c.
18163         Add pipe-safer.c and unistd--.h to the AC_LIBSOURCES list.
18164
18165 2005-08-27  Jim Meyering  <jim@meyering.net>
18166
18167         * lib/fopen-safer.c: Merge minor changes from coreutils.
18168         * lib/dup-safer.c: Likewise.
18169         * lib/fd-safer.c: Likewise.
18170
18171         Merge from coreutils.
18172         * lib/stdio--.h: New file.
18173         * lib/stdlib--.h: New file.
18174         * lib/mkstemp-safer.c: New file.
18175
18176         GNU tar needs these.
18177         * lib/pipe-safer.c: New file.
18178         * lib/creat-safer.c: New file.
18179         * lib/fcntl--.h (creat): Define to creat_safer.
18180         * lib/fcntl-safer.h: Include <sys/types.h> and declare creat_safer.
18181         * lib/unistd--.h (pipe): Define to pipe_safer.
18182         * lib/unistd-safer.h: Declare pipe_safer.
18183
18184 2005-08-26  Simon Josefsson  <jas@extundo.com>
18185
18186         * lib/getpass.c: Use _WIN32 instead of WIN32, suggested by Bruno
18187         Haible <bruno@clisp.org>.
18188
18189 2005-08-26  Paul Eggert  <eggert@cs.ucla.edu>
18190
18191         * lib/regex_internal.h: Remove all references to
18192         RE_NO_INTERNAL_PROTOTYPES; no longer neeeded now that we assume C89
18193         or better.
18194         (bitset_not, bitset_merge, bitset_not_merge):
18195         (bitset_mask, re_string_allocate, re_string_construct):
18196         (re_string_reconstruct, re_string_destruct, re_string_elem_size_at):
18197         (re_string_char_size_at, re_string_wchar_at, re_string_peek_byte_case):
18198         (re_string_fetch_byte_case, re_node_set_alloc, re_node_set_init_1):
18199         (re_node_set_init_2, re_node_set_init_copy, re_node_set_add_intersect):
18200         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
18201         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
18202         (re_node_set_remove_at, re_dfa_add_node, re_acquire_state):
18203         (re_acquire_state_context):
18204         Remove unnecessary forward decls.
18205         (re_string_char_size_at, re_string_wchar_at, re_string_elem_size_at):
18206         Put __attribute at function definition,
18207         now that the function decl has been removed.
18208         * lib/regex_internal.c (re_string_peek_byte_case):
18209         (re_string_fetch_byte_case, re_node_set_compare, re_node_set_contains):
18210         Likewise.
18211
18212 2005-08-25  Stepan Kasal  <kasal@ucw.cz>
18213
18214         * m4/regex.m4: Add AC_PREREQ(2.50).
18215         (gl_REGEX): If --with-included-regex was given, skip the autodetection.
18216
18217 2005-08-25  Simon Josefsson  <jas@extundo.com>
18218
18219         * m4/getpass.m4: Check for termios.h, tcgetattr, tcsetattr, and
18220         __fsetlocking.
18221
18222 2005-08-25  Simon Josefsson  <jas@extundo.com>
18223
18224         * lib/getpass.c: Add WIN32 implementation.  Conditionalize use of
18225         termios.h, tcgetattr, tcsetattr and __fsetlocking.  Remove some
18226         GLIBC specific code.
18227
18228 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
18229
18230         Make regex safe for g++.  This fixes one real bug (an "err"
18231         that should have been "*err").  g++ problem reported by
18232         Sam Steingold.
18233         * lib/regex_internal.h (re_calloc): New macro, consistent with
18234         re_malloc etc.  All callers of calloc changed to use re_calloc.
18235         * lib/regex_internal.c (build_wcs_upper_buffer): Return reg_errcode_t,
18236         not int.  All callers changed.
18237         * lib/regcomp.c (re_compile_fastmap_iter): Don't use
18238         alloca (mb_cur_max); just use an array of size MB_LEN_MAX.
18239         * lib/regexec.c (push_fail_stack): Use re_realloc, not realloc.
18240         (find_recover_state): Change "err" to "*err"; this fixes what
18241         appears to be a real bug.
18242         (check_arrival_expand_ecl_sub): Be consistent about reg_errcode_t
18243         versus int.
18244
18245 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
18246
18247         * modules/regex (Depends-on): Add malloc, since the code
18248         assumes that !malloc(0) means failure.
18249
18250 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
18251
18252         * lib/regexec.c (set_regs): Don't alloca with an unbounded size.
18253
18254         alloca modernization/simplification for regex.
18255         * lib/regex.c: Remove portability cruft for alloca.  This no longer
18256         needs to be at the start of the file, and can be moved into
18257         regex_internal.h and simplified.
18258         * lib/regex_internal.h: Include <alloca.h>.
18259         (__libc_use_alloca) [!defined _LIBC]: New macro.
18260         * lib/regexec.c (build_trtable): Remove "#ifdef _LIBC", since the code
18261         now works outside glibc.
18262
18263 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
18264
18265         * config/srclist.txt: Add glibc bugs 1241, 1245.
18266
18267 2005-08-25  Jim Meyering  <jim@meyering.net>
18268
18269         * lib/open-safer.c: Include <config.h>.
18270         Otherwise, we'd lose LARGEFILE support in any file using
18271         e.g. "fcntl--.h"
18272
18273 2005-08-25  Bruno Haible  <bruno@clisp.org>
18274
18275         * m4/minmax.m4: Require autoconf 2.52.
18276         (gl_MINMAX_IN_HEADER): Add comments. Use m4_pushdef/m4_popdef instead
18277         of define/undefine. Use AS_TR_SH and AS_TR_CPP as more robust
18278         alternatives of translit over the alphabet.
18279         Based on a patch from Stepan Kasal <kasal@ucw.cz>.
18280
18281 2005-08-24  Simon Josefsson  <jas@extundo.com>
18282
18283         * tests/test-getpass.c: New file.
18284
18285 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
18286
18287         * m4/regex.m4 (gl_REGEX): Use POSIX-compliant spellings when testing
18288         for GNU regex features.
18289
18290 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
18291
18292         * lib/regcomp.c (regerror): 2nd arg is 'restrict', as per POSIX.
18293         * lib/regex.h (regerror): Likewise.
18294
18295         * lib/regex.c: Do not include <sys/types.h>, as POSIX no longer
18296         requires this.  (The code never needed it.)
18297
18298         * lib/regcomp.c, regex_internal.c, regex_internal.h, regexec.c:
18299         All uses of recently-renamed identifiers changed to use the new,
18300         POSIX-compliant names.  The code will build and run just fine
18301         without these changes, but it's better to eat our own dog food
18302         and use the standard-conforming names.
18303
18304         * lib/regex.h: Fix a multitude of POSIX name space violations.
18305         These changes have an effect only for programs that define
18306         _POSIX_C_SOURCE, _POSIX_SOURCE, or _XOPEN_SOURCE; they
18307         do not change anything for programs compiled in the normal way.
18308         Also, there is no effect on the ABI.
18309
18310         (_REGEX_SOURCE): New macro.
18311         Do not include <stddef.h> if _XOPEN_SOURCE and VMS are both
18312         defined and _GNU_SOURCE is not; this fixes a name space violation.
18313
18314         Rename the following macros to obey POSIX requirements.
18315         The old names are still visible as macros if _REGEX_SOURCE is defined.
18316         (REG_BACKSLASH_ESCAPE_IN_LISTS): renamed from
18317         RE_BACKSLASH_ESCAPE_IN_LISTS.
18318         (REG_BK_PLUS_QM): renamed from RE_BK_PLUS_QM.
18319         (REG_CHAR_CLASSES): renamed from RE_CHAR_CLASSES.
18320         (REG_CONTEXT_INDEP_ANCHORS): renamed from RE_CONTEXT_INDEP_ANCHORS.
18321         (REG_CONTEXT_INDEP_OPS): renamed from RE_CONTEXT_INDEP_OPS.
18322         (REG_CONTEXT_INVALID_OPS): renamed from RE_CONTEXT_INVALID_OPS.
18323         (REG_DOT_NEWLINE): renamed from RE_DOT_NEWLINE.
18324         (REG_DOT_NOT_NULL): renamed from RE_DOT_NOT_NULL.
18325         (REG_HAT_LISTS_NOT_NEWLINE): renamed from RE_HAT_LISTS_NOT_NEWLINE.
18326         (REG_INTERVALS): renamed from RE_INTERVALS.
18327         (REG_LIMITED_OPS): renamed from RE_LIMITED_OPS.
18328         (REG_NEWLINE_ALT): renamed from RE_NEWLINE_ALT.
18329         (REG_NO_BK_BRACES): renamed from RE_NO_BK_BRACES.
18330         (REG_NO_BK_PARENS): renamed from RE_NO_BK_PARENS.
18331         (REG_NO_BK_REFS): renamed from RE_NO_BK_REFS.
18332         (REG_NO_BK_VBAR): renamed from RE_NO_BK_VBAR.
18333         (REG_NO_EMPTY_RANGES): renamed from RE_NO_EMPTY_RANGES.
18334         (REG_UNMATCHED_RIGHT_PAREN_ORD): renamed from
18335         RE_UNMATCHED_RIGHT_PAREN_ORD.
18336         (REG_NO_POSIX_BACKTRACKING): renamed from RE_NO_POSIX_BACKTRACKING.
18337         (REG_NO_GNU_OPS): renamed from RE_NO_GNU_OPS.
18338         (REG_DEBUG): renamed from RE_DEBUG.
18339         (REG_INVALID_INTERVAL_ORD): renamed from RE_INVALID_INTERVAL_ORD.
18340         (REG_IGNORE_CASE): renamed from RE_ICASE.  This renaming is a bit
18341         unusual, since we can't clash with the POSIX REG_ICASE.
18342         (REG_CARET_ANCHORS_HERE): renamed from RE_CARET_ANCHORS_HERE.
18343         (REG_CONTEXT_INVALID_DUP): renamed from RE_CONTEXT_INVALID_DUP.
18344         (REG_NO_SUB): renamed from RE_NO_SUB.
18345         (REG_SYNTAX_EMACS): renamed from RE_SYNTAX_EMACS.
18346         (REG_SYNTAX_AWK): renamed from RE_SYNTAX_AWK.
18347         (REG_SYNTAX_GNU_AWK): renamed from RE_SYNTAX_GNU_AWK.
18348         (REG_SYNTAX_POSIX_AWK): renamed from RE_SYNTAX_POSIX_AWK.
18349         (REG_SYNTAX_GREP): renamed from RE_SYNTAX_GREP.
18350         (REG_SYNTAX_EGREP): renamed from RE_SYNTAX_EGREP.
18351         (REG_SYNTAX_POSIX_EGREP): renamed from RE_SYNTAX_POSIX_EGREP.
18352         (REG_SYNTAX_ED): renamed from RE_SYNTAX_ED.
18353         (REG_SYNTAX_SED): renamed from RE_SYNTAX_SED.
18354         (_REG_SYNTAX_POSIX_COMMON): renamed from _RE_SYNTAX_POSIX_COMMON.
18355         (REG_SYNTAX_POSIX_BASIC): renamed from RE_SYNTAX_POSIX_BASIC.
18356         (REG_SYNTAX_POSIX_MINIMAL_BASIC): renamed from
18357         RE_SYNTAX_POSIX_MINIMAL_BASIC.
18358         (REG_SYNTAX_POSIX_EXTENDED): renamed from RE_SYNTAX_POSIX_EXTENDED.
18359         (REG_SYNTAX_POSIX_MINIMAL_EXTENDED): renamed from
18360         RE_SYNTAX_POSIX_MINIMAL_EXTENDED.
18361         (REG_DUP_MAX): renamed from RE_DUP_MAX.  No need to undef it.
18362         (REG_UNALLOCATED): Renamed from REGS_UNALLOCATED.
18363         (REG_REALLOCATE): Renamed from REGS_REALLOCATE.
18364         (REG_FIXED): Renamed from REGS_FIXED.
18365         (REG_NREGS): Renamed from RE_NREGS.
18366
18367         (REG_ICASE, REG_NEWLINE, REG_NOSUB): Do not depend on the values
18368         of other REG_* macros, since POSIX says the user is allowed to
18369         #undef these macros selectively.
18370
18371         (reg_errcode_t): Update comment stating what other tables need
18372         to be consistent.
18373
18374         Rename the following enum values to obey POSIX requirements.
18375         The old names are still visible as macros.
18376         (_REG_ENOSYS): Renamed from REG_ENOSYS.  Define even if _XOPEN_SOURCE
18377         is not defined, since GNU is supposed to be a superset of POSIX as
18378         much as possible, and since we want reg_errcode_t to be a signed
18379         type for implementation consistency.
18380         (_REG_NOERROR): Renamed from REG_NOERROR.
18381         (_REG_NOMATCH): Renamed from REG_NOMATCH.
18382         (_REG_BADPAT): Renamed from REG_BADPAT.
18383         (_REG_ECOLLATE): Renamed from REG_ECOLLATE.
18384         (_REG_ECTYPE): Renamed from REG_ECTYPE.
18385         (_REG_EESCAPE): Renamed from REG_EESCAPE.
18386         (_REG_ESUBREG): Renamed from REG_ESUBREG.
18387         (_REG_EBRACK): Renamed from REG_EBRACK.
18388         (_REG_EPAREN): Renamed from REG_EPAREN.
18389         (_REG_EBRACE): Renamed from REG_EBRACE.
18390         (_REG_BADBR): Renamed from REG_BADBR.
18391         (_REG_ERANGE): Renamed from REG_ERANGE.
18392         (_REG_ESPACE): Renamed from REG_ESPACE.
18393         (_REG_BADRPT): Renamed from REG_BADRPT.
18394         (_REG_EEND): Renamed from REG_EEND.
18395         (_REG_ESIZE): Renamed from REG_ESIZE.
18396         (_REG_ERPAREN): Renamed from REG_ERPAREN.
18397         (REG_ENOSYS, REG_NOERROR, REG_NOMATCH, REG_BADPAT, REG_ECOLLATE):
18398         (REG_ECTYPE, REG_EESCAPE, REG_ESUBREG, REG_EBRACK, REG_EPAREN):
18399         (REG_EBRACE, REG_BADBR, REG_ERANGE, REG_ESPACE, REG_BADRPT, REG_EEND):
18400         (REG_ESIZE, REG_ERPAREN): Now macros, not enum constants.
18401
18402         (_REG_RE_NAME, _REG_RM_NAME): New macros.
18403         (REG_TRANSLATE_TYPE): Renamed from RE_TRANSLATE_TYPE.  All uses
18404         changed.  But support the old name if the new one is not defined
18405         and if _REGEX_SOURCE.
18406
18407         Change the following member names in struct re_pattern_buffer.
18408         The old names are still supported if !_REGEX_SOURCE.
18409         The new names are always supported, regardless of _REGEX_SOURCE.
18410         (re_buffer): Renamed from buffer.
18411         (re_allocated): Renamed from allocated.
18412         (re_used): Renamed from used.
18413         (re_syntax): Renamed from syntax.
18414         (re_fastmap): Renamed from fastmap.
18415         (re_translate): Renamed from translate.
18416         (re_can_be_null): Renamed from can_be_null.
18417         (re_regs_allocated): Renamed from regs_allocated.
18418         (re_fastmap_accurate): Renamed from fastmap_accurate.
18419         (re_no_sub): Renamed from no_sub.
18420         (re_not_bol): Renamed from not_bol.
18421         (re_not_eol): Renamed from not_eol.
18422         (re_newline_anchor): Renamed from newline_anchor.
18423
18424         Change the following member names in struct re_registers.
18425         The old names are still supported if !_REGEX_SOURCE.
18426         The new names are always supported, regardless of _REGEX_SOURCE.
18427         (rm_num_regs): Renamed from num_regs.
18428         (rm_start): Renamed from start.
18429         (rm_end): Renamed from end.
18430
18431         (re_set_syntax, re_compile_pattern, re_compile_fastmap):
18432         (re_search, re_search_2, re_match, re_match_2, re_set_registers):
18433         Prepend __ to parameter names.
18434
18435         Undo yesterday's changes.
18436
18437 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
18438
18439         * config/srclist.txt: Remove glibc bug 1233 and add 1236, which
18440         supersedes it. Add glibc bugs 1237, 1238, 1240.  Comment out
18441         lib/regex.c.
18442
18443 2005-08-24  Jim Meyering  <jim@meyering.net>
18444
18445         Sync from coreutils.
18446         * m4/fcntl-safer.m4: New file.
18447
18448         * m4/xgetcwd.m4: Use AC_LIBSOURCES and AC_LIBOBJ to indicate source
18449         and object files for this module.
18450
18451 2005-08-24  Jim Meyering  <jim@meyering.net>
18452
18453         Sync from coreutils.
18454         * lib/fcntl--.h, lib/fcntl-safer.h, lib/open-safer.c: New files.
18455
18456 2005-08-24  Jim Meyering  <jim@meyering.net>
18457
18458         * modules/xgetcwd (Makefile.am): Remove `lib_SOURCES += ...' line,
18459         now that xgetcwd.m4 requires xgetcwd.c and xgetcwd.h.
18460
18461 2005-08-24  Jim Meyering  <jim@meyering.net>
18462
18463         * modules/fcntl-safer: New module.
18464         * modules/fts (Depends-on): Add fcntl-safer.
18465         * MODULES.html.sh (File descriptor based Input/Output):
18466         Add fcntl-safer.
18467
18468 2005-08-24  Bruno Haible  <bruno@clisp.org>
18469
18470         Support for unit test modules.
18471         * modules/README: Mention tests modules.
18472         * modules/TEMPLATE-TESTS: New file.
18473         * gnulib-tool: New options --extract-tests-module, --with-tests and
18474         --tests-base (unused for the moment).
18475         (testsbase, inctests): New variables.
18476         (func_all_modules): Exclude TEMPLATE-TESTS and *-tests.
18477         (func_verify_module): Exclude TEMPLATE-TESTS.
18478         (func_verify_nontests_module, func_verify_tests_module): New functions.
18479         (func_get_dependencies): Add implicit dependency for tests modules.
18480         (func_get_tests_module): New function.
18481         (func_modules_transitive_closure): When --with-tests was specified,
18482         include the unit tests as well, unless explicitly avoided.
18483         (func_emit_lib_Makefile_am): Ignore the tests modules here.
18484         (func_emit_tests_Makefile_am): New function.
18485         (func_create_testdir): When --with-tests was specified, emit a
18486         tests/ directory.
18487         * MODULES.html.sh (Future developments): Update.
18488
18489 2005-08-24  Bruno Haible  <bruno@clisp.org>
18490
18491         * modules/tls-tests: New file.
18492         * tests/test-tls.c: New file, from GNU gettext.
18493
18494 2005-08-24  Bruno Haible  <bruno@clisp.org>
18495
18496         * modules/lock-tests: New file.
18497         * tests/test-lock.c: New file, from GNU gettext.
18498
18499 2005-08-24  Bruno Haible  <bruno@clisp.org>
18500
18501         * lib/lock.h: Add multiple inclusion guard.
18502         * lib/tls.h: Add multiple inclusion guard.
18503
18504 2005-08-24  Bruno Haible  <bruno@clisp.org>
18505
18506         * gnulib-tool: Add support for the --aux-dir option to
18507         --create-testdir, --create-megatestdir, --test, --megatest.
18508         (func_create_testdir, func_create_megatestdir): Optionally emit a
18509         AC_CONFIG_AUX_DIR directive.
18510         (create-testdir, create-megatestdir, test, megatest): Provide a
18511         default value for $auxdir.
18512
18513 2005-08-24  Bruno Haible  <bruno@clisp.org>
18514
18515         * gnulib-tool (import): Use compound statement instead of subshell
18516         where possible.
18517
18518 2005-08-24  Bruno Haible  <bruno@clisp.org>
18519
18520         * gnulib-tool (import): Change --aux-dir default to "build-aux".
18521
18522 2005-08-24  Bruno Haible  <bruno@clisp.org>
18523
18524         * gnulib-tool (func_version): Update.
18525
18526 2005-08-24  Bruno Haible  <bruno@clisp.org>
18527
18528         * gnulib-tool (func_import, func_create_testdir,
18529         func_create_megatestdir): Quote all autoconf macro arguments.
18530
18531 2005-08-24  Bruno Haible  <bruno@clisp.org>
18532
18533         * gnulib-tool (func_create_megatestdir): Call autoreconf without the
18534         option --force, because --force causes the aclocal.m4 of each
18535         subdirectory to be newer than the corresponding config.h.in.
18536
18537 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
18538
18539         * m4/regex.m4 (gl_INCLUDED_REGEX): Remove; no longer used.
18540         All contents moved to gl_REGEX.
18541         (gl_REGEX): Don't bother checking whether lib/regex.c exists;
18542         assume that it does.
18543
18544 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
18545
18546         * lib/regex.h (REG_NOSYS)
18547         [!defined _XOPEN_SOURCE && 200112L <= _POSIX_C_SOURCE]:
18548         Define, since POSIX requires it as of 2001.
18549         (_REG_ENOSYS)
18550         [! (defined _XOPEN_SOURCE || 200112L <= _POSIX_C_SOURCE)]:
18551         New private symbol, used to keep the enum signed in all cases.
18552         * lib/regex.h (RE_NO_EMPTY_RANGES): Fix doc bug reported by James
18553         Youngman in
18554         <http://lists.gnu.org/archive/html/bug-gnulib/2005-07/msg00132.html>.
18555
18556         * lib/regex_internal.c (re_string_skip_chars, register_state):
18557         (calc_state_hash):
18558         Remove forward decls; no longer needed now that we use prototypes.
18559         * lib/regexec.c (acquire_init_state_context, check_halt_node_context):
18560         (proceed_next_node, pop_fail_stack, sub_epsilon_src_nodes):
18561         (clean_state_log_if_needed): Likewise.
18562
18563 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
18564
18565         * config/srclist.txt: Add glibc bugs 1231-1233.
18566
18567 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
18568
18569         Fix problems reported by Sam Steingold in
18570         <http://lists.gnu.org/archive/html/bug-gnulib/2005-08/msg00007.html>.
18571         * lib/regexec.c (sift_states_bkref): Fix portability bug: the code
18572         assumed that reg_errcode_t is a signed type, which is not
18573         necessarily true if _XOPEN_SOURCE is not defined.
18574         * lib/regex_internal.c (calc_state_hash): Put 'inline' before type,
18575         since some compilers warn about it otherwise.
18576
18577 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
18578
18579         * lib/regcomp.c (create_initial_state): Remove duplicate decl.
18580         (init_word_char, create_initial_state, duplicate_node_closure):
18581         (fetch_token, peek_token_bracket, build_range_exp):
18582         (build_collating_symbol): Remove forward decls; no longer needed
18583         now that we use prototypes.
18584
18585         * lib/regcomp.c:
18586         (re_compile_pattern, re_set_syntax, re_compile_fastmap):
18587         (re_compile_fastmap_iter, regcomp, regerror, regfree):
18588         (re_compile_internal, init_dfa, init_word_char, free_workarea_compile):
18589         (create_initial_state, optimize_utf8, analyze, postorder, preorder):
18590         (optimize_subexps, lower_subexps, lower_subexp, calc_first, calc_next):
18591         (link_nfa_nodes, duplicate_node_closure, search_duplicated_node):
18592         (duplicate_node, calc_inveclosure, calc_eclosure, calc_eclosure_iter):
18593         (fetch_token, peek_token, peek_token_bracket, parse, parse_reg_exp):
18594         (parse_branch, parse_expression, parse_sub_exp, parse_dup_op):
18595         (build_range_exp, build_collating_symbol, parse_bracket_exp):
18596         (parse_bracket_element, parse_bracket_symbol, build_equiv_class):
18597         (build_charclass, build_charclass_op, fetch_number, create_tree):
18598         (create_token_tree, mark_opt_subexp, duplicate_tree):
18599         Use prototypes rather than old-style definitions.
18600
18601         * lib/regex_internal.c:
18602         (re_string_allocate, re_string_construct, re_string_realloc_buffers):
18603         (re_string_construct_common, build_wcs_buffer, build_wcs_upper_buffer):
18604         (re_string_skip_chars, build_upper_buffer, re_string_translate_buffer):
18605         (re_string_reconstruct, re_string_peek_byte_case):
18606         (re_string_fetch_byte_case, re_string_destruct, re_string_context_at):
18607         (re_node_set_alloc, re_node_set_init_1, re_node_set_init_2):
18608         (re_node_set_init_copy, re_node_set_add_intersect):
18609         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
18610         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
18611         (re_node_set_remove_at, re_dfa_add_node, calc_state_hash):
18612         (re_acquire_state, re_acquire_state_context, register_state):
18613         (create_ci_newstate, create_cd_newstate, free_state):
18614         Likewise.
18615         * lib/regexec.c (regexec, re_match, re_search, re_match_2,
18616         re_search_2):
18617         (re_search_2_stub, re_search_stub, re_copy_regs, re_set_registers):
18618         (re_search_internal, prune_impossible_nodes):
18619         (acquire_init_state_context, check_matching, static):
18620         (check_halt_node_context, check_halt_state_context, proceed_next_node):
18621         (push_fail_stack, pop_fail_stack, set_regs, free_fail_stack_return):
18622         (update_regs, sift_states_backward, build_sifted_states):
18623         (clean_state_log_if_needed, merge_state_array):
18624         (update_cur_sifted_state, add_epsilon_src_nodes):
18625         (sub_epsilon_src_nodes, check_dst_limits, check_dst_limits_calc_pos_1):
18626         (check_dst_limits_calc_pos, check_subexp_limits, sift_states_bkref):
18627         (sift_states_iter_mb, transit_state, merge_state_with_log, static):
18628         (find_recover_state, check_subexp_matching_top, transit_state_mb):
18629         (transit_state_bkref, get_subexp, get_subexp_sub, find_subexp_node):
18630         (check_arrival, check_arrival_add_next_nodes):
18631         (check_arrival_expand_ecl, check_arrival_expand_ecl_sub):
18632         (expand_bkref_cache, build_trtable, group_nodes_into_DFAstates):
18633         (check_node_accept_bytes, check_node_accept, extend_buffers):
18634         (match_ctx_init, match_ctx_clean, match_ctx_free, match_ctx_add_entry):
18635         (search_cur_bkref_entry, match_ctx_add_subtop, match_ctx_add_sublast):
18636         (sift_ctx_init):
18637         Likewise.
18638
18639         * lib/regex_internal.h:
18640         (re_string_allocate, re_string_construct, re_string_reconstruct):
18641         (re_string_realloc_buffers, build_wcs_buffer, build_wcs_upper_buffer):
18642         (build_upper_buffer, re_string_translate_buffer, re_string_destruct):
18643         (re_string_elem_size_at, re_string_char_size_at, re_string_wchar_at):
18644         (re_string_context_at, re_string_peek_byte_case):
18645         (re_string_fetch_byte_case): Declare even if RE_NO_INTERNAL_PROTOTYPES
18646         is defined, since we now use prototypes always.
18647
18648         * lib/regex.h (_RE_ARGS): Remove.  No longer needed, since we assume
18649         C89 or better.  All uses removed.
18650
18651 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
18652
18653         * config/srclist.txt: Add glibc bugs 1220-1227.
18654
18655 2005-08-20  Jim Meyering  <jim@meyering.net>
18656
18657         * lib/regexec.c (regexec, re_search_stub) [!_LIBC]: Omit declaration
18658         of unused local, dfa.
18659
18660 2005-08-20  Bruno Haible  <bruno@clisp.org>
18661
18662         * m4/regex.m4 (gl_PREREQ_REGEX): Require AC_GNU_SOURCE.
18663
18664 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
18665
18666         * lib/regex_internal.c (re_string_realloc_buffers, re_node_set_insert):
18667         (re_node_set_insert_last, re_dfa_add_node):
18668         Rename local variables to avoid GCC shadowing warnings.
18669
18670 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
18671
18672         * lib/regex_internal.c (re_acquire_state, re_acquire_state_context)
18673         [defined lint]: Suppress bogus uninitialized-variable warnings.
18674
18675         * lib/regcomp.c (duplicate_node): Return new index, not an error code,
18676         and let the caller return REG_ESPACE if out of space.  This
18677         removes an uninitialied-variable warning with GCC 4.0.1, and also
18678         avoids taking the address of a local variable.  All callers
18679         changed.
18680
18681 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
18682
18683         * config/srclist.txt: Comment out $LIBCSRC/posix/regex_internal.c,
18684         $LIBCSRC/posix/regexec.c.
18685         Add glibc bug 1217 for regcomp.c.
18686
18687 2005-08-19  Jim Meyering  <jim@meyering.net>
18688
18689         * lib/regexec.c (proceed_next_node): Redo local variables to
18690         avoid GCC shadowing warnings.
18691
18692 2005-08-18  Bruno Haible  <bruno@clisp.org>
18693
18694         * lib/strstr.c (strstr): Fix return value in multibyte case.
18695         * lib/strcasestr.c (strcasestr): Likewise.
18696
18697 2005-08-17  Paul Eggert  <eggert@cs.ucla.edu>
18698
18699         * lib/regex.h: Remove useless space-before-tab.  From coreutils.
18700
18701 2005-08-17  Jim Meyering  <jim@meyering.net>
18702
18703         Make the %s format (seconds since the epoch) work for a negative
18704         number and when used with a zero-padded field width, e.g. %015s.
18705
18706         * lib/strftime.c (my_strftime): Move the `do_number_sign_and_padding'
18707         label so that it precedes the code to set `digits'.  Otherwise,
18708         %0Ns wouldn't work.  Before this change, `date -d @-22 +%05s' would
18709         print `00-22'.  Now, it prints `-0022', as it should.
18710
18711 2005-08-17  Bruno Haible  <bruno@clisp.org>
18712
18713         * modules/strstr (Files): Add m4/mbrtowc.m4.
18714         (Depends-on): Add mbuiter.
18715
18716 2005-08-17  Bruno Haible  <bruno@clisp.org>
18717
18718         * modules/strcasestr: New file.
18719         * MODULES.html.sh (String handling, based on ANSI C 89): Add
18720         strcasestr.
18721
18722 2005-08-17  Bruno Haible  <bruno@clisp.org>
18723
18724         * modules/strcase (Depends-on): Add mbuiter. Remove strnlen1, mbchar.
18725
18726 2005-08-17  Bruno Haible  <bruno@clisp.org>
18727
18728         * modules/mbuiter: New file.
18729         * MODULES.html.sh (Extended multibyte and wide character utilities):
18730         Add mbuiter.
18731
18732 2005-08-17  Bruno Haible  <bruno@clisp.org>
18733
18734         * m4/strstr.m4 (gl_FUNC_STRSTR): Use the replacement function always.
18735         (gl_PREREQ_STRSTR): Use gl_FUNC_MBRTOWC.
18736
18737 2005-08-17  Bruno Haible  <bruno@clisp.org>
18738
18739         * m4/strcasestr.m4: New file.
18740
18741 2005-08-17  Bruno Haible  <bruno@clisp.org>
18742
18743         * lib/strstr.h: Ignore HAVE_STRSTR, always declare the gnulib function.
18744         * lib/strstr.c: Completely rewritten, with multibyte locale support.
18745
18746 2005-08-17  Bruno Haible  <bruno@clisp.org>
18747
18748         * lib/strcasestr.h: New file.
18749         * lib/strcasestr.c: New file.
18750
18751 2005-08-17  Bruno Haible  <bruno@clisp.org>
18752
18753         * lib/strcasecmp.c: Use mbuiter.h.
18754
18755 2005-08-17  Bruno Haible  <bruno@clisp.org>
18756
18757         * lib/mbuiter.h: New file.
18758
18759 2005-08-16  Paul Eggert  <eggert@cs.ucla.edu>
18760
18761         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Do not override the results
18762         of gl_GETOPT_SUBSTITUTE.  That way, if both gl_GETOPT_SUBSTITUTE
18763         and gl_GETOPT are both invoked via different paths (as happens
18764         with GNU tar CVS because it uses both argp and getopt), the former
18765         wins.
18766
18767 2005-08-16  Bruno Haible  <bruno@clisp.org>
18768
18769         * modules/tls: New file.
18770         * MODULES.html.sh (Multithreading): Add tls.
18771
18772 2005-08-16  Bruno Haible  <bruno@clisp.org>
18773
18774         * modules/strnlen1: New file.
18775         * MODULES.html.sh (String handling): Add strnlen1.
18776
18777 2005-08-16  Bruno Haible  <bruno@clisp.org>
18778
18779         * modules/strcase (Files): Add m4/mbrtowc.m4.
18780         (Depends-on): Add strnlen1, mbchar.
18781
18782 2005-08-16  Bruno Haible  <bruno@clisp.org>
18783
18784         * modules/mbiter: New file.
18785         * MODULES.html.sh (Extended multibyte and wide character utilities):
18786         Add mbiter.
18787
18788 2005-08-16  Bruno Haible  <bruno@clisp.org>
18789
18790         * modules/mbfile: New file.
18791         * MODULES.html.sh (Extended multibyte and wide character utilities):
18792         Add mbfile.
18793
18794 2005-08-16  Bruno Haible  <bruno@clisp.org>
18795
18796         * modules/mbchar: New file.
18797         * MODULES.html.sh (Extended multibyte and wide character utilities):
18798         New section.
18799
18800 2005-08-16  Bruno Haible  <bruno@clisp.org>
18801
18802         * m4/tls.m4: New file, from GNU gettext.
18803
18804 2005-08-16  Bruno Haible  <bruno@clisp.org>
18805
18806         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Use the replacement function
18807         always.
18808         (gl_PREREQ_STRCASECMP): Use gl_FUNC_MBRTOWC.
18809
18810 2005-08-16  Bruno Haible  <bruno@clisp.org>
18811
18812         * m4/mbiter.m4: New file.
18813
18814 2005-08-16  Bruno Haible  <bruno@clisp.org>
18815
18816         * m4/mbfile.m4: New file.
18817
18818 2005-08-16  Bruno Haible  <bruno@clisp.org>
18819
18820         * m4/mbchar.m4: New file.
18821
18822 2005-08-16  Bruno Haible  <bruno@clisp.org>
18823
18824         * lib/tls.h: New file, from GNU gettext.
18825         * lib/tls.c: New file, from GNU gettext.
18826
18827 2005-08-16  Bruno Haible  <bruno@clisp.org>
18828
18829         * lib/strnlen1.h: New file.
18830         * lib/strnlen1.c: New file.
18831
18832 2005-08-16  Bruno Haible  <bruno@clisp.org>
18833
18834         * lib/strcasecmp.c (struct mbiter_multi): Remove at_end field.
18835         (mbi_init): Update.
18836         (mbi_avail, mbi_advance): Let the iteration end before the terminating
18837         NUL byte, not after it.
18838
18839 2005-08-16  Bruno Haible  <bruno@clisp.org>
18840
18841         * lib/strcase.h (strcasecmp): Add note in comments.
18842         * lib/strncasecmp.c: Use code from strcasecmp.c.
18843         * lib/strcasecmp.c: Use mbchar module. Define private mbiter variant.
18844         (strcasecmp): Work correctly in multibyte locales.
18845
18846 2005-08-16  Bruno Haible  <bruno@clisp.org>
18847
18848         * lib/mbiter.h: New file.
18849
18850 2005-08-16  Bruno Haible  <bruno@clisp.org>
18851
18852         * lib/mbfile.h: New file.
18853
18854 2005-08-16  Bruno Haible  <bruno@clisp.org>
18855
18856         * lib/mbchar.h: New file.
18857         * lib/mbchar.c: New file.
18858
18859 2005-08-16  Bruno Haible  <bruno@clisp.org>
18860
18861         * lib/mbchar.h (mb_cmp, mb_casecmp): Order the invalid characters after
18862         the valid ones. Makes the comparison operations transitive:
18863         cmp (a, b) < 0 && cmp (b, c) < 0 ==> cmp (a, c) < 0.
18864         * lib/strcasecmp.c (strcasecmp): Use mb_casecmp.
18865
18866 2005-08-15  Simon Josefsson  <jas@extundo.com>
18867
18868         * modules/ssize_t (License): Change to 'unlimited'.
18869
18870         * gnulib-tool (sed_extract_prog): Recognize 'unlimited' license.
18871
18872 2005-08-15  Paul Eggert  <eggert@cs.ucla.edu>
18873
18874         * config/srclist.txt: Comment out $LIBCSRC/posix/regex.h.
18875         Add comments for each pending glibc patch.
18876
18877 2005-08-15  Bruno Haible  <bruno@clisp.org>
18878
18879         * lib/regex.h (__restrict_arr): Don't define to __restrict if
18880         __cplusplus is defined.
18881
18882 2005-08-14  Jim Meyering  <jim@meyering.net>
18883
18884         Sync from coreutils.
18885
18886         * lib/fts-cycle.c (setup_dir, enter_dir, leave_dir, free_dir):
18887         Use the hash-table-based cycle-detection code not just when
18888         FTS_TIGHT_CYCLE_CHECK if specified, but also with FTS_LOGICAL.
18889         Reported by James Youngman in
18890         <http://lists.gnu.org/archive/html/bug-gnulib/2005-08/msg00011.html>.
18891         * lib/fts_.h: Mention that with FTS_LOGICAL, we use
18892         FTS_TIGHT_CYCLE_CHECK.
18893         * lib/fts.c (fts_cross_check) [FTS_DEBUG]:
18894         s/active_dir_ht/fts_cycle.ht/. This lets us compile with -DFTS_DEBUG,
18895         once again.
18896         * lib/fts.c [! _LIBC]: Include "lstat.h" rather than rolling our own.
18897         * lib/fts.c (fd_safer): Remove decl.
18898         Include fcntl--.h rather than unistd-safer.h
18899         (fts_safe_changedir): Don't call fd_safer; no longer needed
18900         now that we include fcntl--.h.
18901
18902 2005-08-12  Simon Josefsson  <jas@extundo.com>
18903
18904         * modules/getndelim2: Use ssize_t module.
18905         * modules/getnline: Likewise.
18906         * modules/safe-read: Likewise.
18907         * modules/xreadlink: Likewise.
18908
18909         * modules/ssize_t: New file.
18910
18911 2005-08-12  Simon Josefsson  <jas@extundo.com>
18912
18913         * m4/readline.m4: Look for termcap, curses or ncurses if required.
18914
18915 2005-08-12  Simon Josefsson  <jas@extundo.com>
18916
18917         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
18918         ssize_t.
18919
18920 2005-08-12  Simon Josefsson  <jas@extundo.com>
18921
18922         * MODULES.html.sh (Extra functions based on ANSI C 89: Misc): Add
18923         readline, getdelim and check_version.
18924         (Support for systems lacking ISO C 99: Sizes of integer types):
18925         Add size_max.
18926
18927 2005-08-12  Bruno Haible  <bruno@clisp.org>
18928
18929         * m4/readline.m4 (gl_FUNC_READLINE): Look for ncurses first.
18930
18931 2005-08-11  Simon Josefsson  <jas@extundo.com>
18932
18933         * modules/readline: New file.
18934
18935         * modules/strnlen (Files): Add strnlen.h.
18936
18937 2005-08-11  Simon Josefsson  <jas@extundo.com>
18938
18939         * m4/readline.m4: New file.
18940
18941 2005-08-11  Simon Josefsson  <jas@extundo.com>
18942
18943         * lib/readline.h, readline.c: New file.
18944
18945 2005-08-11  Simon Josefsson  <jas@extundo.com>
18946
18947         * doc/gnulib.texi (Initial import, Finishing touches): Mention
18948         gl_AVOID.
18949
18950 2005-08-11  Bruno Haible  <bruno@clisp.org>
18951
18952         * lib/strnlen.h (strnlen): Change parameter name to match comment.
18953
18954 2005-08-10  Stepan Kasal  <kasal@ucw.cz>
18955
18956         * m4/onceonly_2_57.m4: Really require Autoconf 2.57.
18957
18958 2005-08-10  Simon Josefsson  <jas@extundo.com>
18959
18960         * tests/test-iconvme.c: New file.
18961
18962 2005-08-10  Simon Josefsson  <jas@extundo.com>
18963
18964         * m4/strnlen.m4: New file.
18965
18966         * m4/strndup.m4: Don't check for strnlen declaration, done in
18967         strnlen.m4.
18968
18969 2005-08-10  Simon Josefsson  <jas@extundo.com>
18970
18971         * lib/strndup.c: Use strnlen.h.
18972
18973         * lib/strnlen.h: New file.
18974
18975 2005-08-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
18976
18977         * README: Typos.
18978
18979 2005-08-02  Simon Josefsson  <jas@extundo.com>
18980
18981         * modules/readline: New file.
18982
18983 2005-08-02  Simon Josefsson  <jas@extundo.com>
18984
18985         * modules/getdelim: New file.
18986
18987         * modules/getline: Rewrite, don't use getndelim2.
18988
18989 2005-08-02  Simon Josefsson  <jas@extundo.com>
18990
18991         * m4/getline.m4: Separate out getdelim stuff into separate module.
18992
18993         * m4/getdelim.m4: New file.
18994
18995 2005-08-02  Simon Josefsson  <jas@extundo.com>
18996
18997         * lib/getline.h, getline.c: Rewrite.
18998
18999         * lib/getdelim.h, lib/getdelim.c: New files, ported from glibc.
19000
19001 2005-07-31  Bruno Haible  <bruno@clisp.org>
19002
19003         * lib/lock.h (gl_lock_initializer): New macro.
19004         (gl_lock_define_initialized): Use it.
19005         (gl_rwlock_initializer): New macro.
19006         (gl_rwlock_define_initialized): Use it.
19007         (gl_recursive_lock_initializer): New macro.
19008         (gl_recursive_lock_define_initialized): Use it.
19009
19010 2005-07-30  Karl Berry  <karl@gnu.org>
19011
19012         * doc/gnulib.texi (Initial import): mention -I$(top_builddir)/lib.
19013         Report from Ben Pfaff, regarding getopt.
19014
19015 2005-07-26  Paul Eggert  <eggert@cs.ucla.edu>
19016
19017         Add support to getopt for Emacs, which doesn't use LIBOBJS in the
19018         normal way.
19019         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE_HEADER): New macro.
19020         (gl_GETOPT_SUBSTITUTE): Use it.  Invoke gl_PREREQ_GETOPT.
19021         (gl_GETOPT_IFELSE, gl_GETOPT_CHECK_HEADERS): New macros.
19022         (gl_GETOPT): Use the new macros.  Most of the implementation
19023         is moved to the new macros.  This is for programs like Emacs
19024         that don't want all the functionality of gl_GETOPT.
19025
19026 2005-07-26  Bruno Haible  <bruno@clisp.org>
19027
19028         * m4/lock.m4: Update from GNU gettext.
19029
19030 2005-07-26  Bruno Haible  <bruno@clisp.org>
19031
19032         * lib/lock.h: Update from GNU gettext.
19033         * lib/lock.c: Update from GNU gettext.
19034
19035 2005-07-25  Paul Eggert  <eggert@cs.ucla.edu>
19036
19037         * m4/regex.m4 (gl_INCLUDED_REGEX): Use AC_RUN_IFELSE instead of the
19038         obsolescent AC_TRY_RUN.  Include the default includes files, for
19039         'exit'.
19040
19041 2005-07-24  Bruno Haible  <bruno@clisp.org>
19042
19043         * modules/visibility: New file.
19044         * MODULES.html.sh (Misc): Add visibility.
19045
19046 2005-07-24  Bruno Haible  <bruno@clisp.org>
19047
19048         * m4/visibility.m4: New file.
19049
19050 2005-07-24  Bruno Haible  <bruno@clisp.org>
19051
19052         * doc/visibility.texi: New file.
19053
19054 2005-07-22  Bruno Haible  <bruno@clisp.org>
19055
19056         * modules/alloca-opt (Makefile.am): Remove explicit dependency on
19057         $(ALLOCA_H), redundant through BUILT_SOURCES.
19058         * modules/argz (Makefile.am): Remove explicit dependency on $(ARGZ_H),
19059         redundant through BUILT_SOURCES.
19060         * modules/byteswap (Makefile.am): Remove explicit dependency on
19061         $(BYTESWAP_H), redundant through BUILT_SOURCES.
19062         * modules/fnmatch (Makefile.am): Remove explicit dependency on
19063         $(FNMATCH_H), redundant through BUILT_SOURCES.
19064         * modules/getopt (Makefile.am): Remove explicit dependency on
19065         $(GETOPT_H), redundant through BUILT_SOURCES.
19066         * modules/glob (Makefile.am): Remove explicit dependency on $(GLOB_H),
19067         redundant through BUILT_SOURCES.
19068         * modules/poll (Makefile.am): Remove explicit dependency on $(POLL_H),
19069         redundant through BUILT_SOURCES.
19070         * modules/stdbool (Makefile.am): Remove explicit dependency on
19071         $(STDBOOL_H), redundant through BUILT_SOURCES.
19072         * modules/stdint (Makefile.am): Remove explicit dependency on
19073         $(STDINT_H), redundant through BUILT_SOURCES.
19074         * modules/sysexits (Makefile.am): Add $(SYSEXITS_H) to BUILT_SOURCES.
19075         Remove explicit dependency on $(SYSEXITS_H).
19076         Reported by Alexandre Duret-Lutz <adl@src.lip6.fr>.
19077
19078 2005-07-18  Simon Josefsson  <jas@extundo.com>
19079
19080         * lib/check-version.c (check_version): Accept identical versions too.
19081
19082 2005-07-18  Bruno Haible  <bruno@clisp.org>
19083
19084         * modules/lock: New file.
19085         * MODULES.html.sh (Multithreading): New section.
19086
19087 2005-07-18  Bruno Haible  <bruno@clisp.org>
19088
19089         * m4/lock.m4: New file, from GNU gettext.
19090
19091 2005-07-18  Bruno Haible  <bruno@clisp.org>
19092
19093         * lib/lock.h: New file, from GNU gettext.
19094         * lib/lock.c: New file, from GNU gettext.
19095
19096 2005-07-18  Bruno Haible  <bruno@clisp.org>
19097
19098         * lib/lock.h (gl_once_t): New type.
19099         (gl_once_define, gl_once): New macros.
19100         * lib/lock.c (fresh_once): New variable.
19101         (glthread_once, glthread_once_call, glthread_once_singlethreaded): New
19102         functions.
19103
19104 2005-07-16  Simon Josefsson  <jas@extundo.com>
19105
19106         * doc/gnulib.texi (Library version handling): Add ELF symbol collision
19107         workaround, suggested by Bruno.
19108
19109 2005-07-15  Paul Eggert  <eggert@cs.ucla.edu>
19110
19111         * modules/xalloc (Depends-on): Add xalloc-die.
19112         * modules/xvasprintf (Depends-on): Add xalloc-die.
19113
19114 2005-07-15  Paul Eggert  <eggert@cs.ucla.edu>
19115
19116         * lib/quotearg.c: Add translator comment suggested by Bruno Haible,
19117         with a minor change.
19118
19119 2005-07-15  Bruno Haible  <bruno@clisp.org>
19120
19121         * m4/poll.m4 (gl_FUNC_POLL): Check against MacOS X 10.4 poll() bug.
19122         When using lib/poll.c, define poll as rpl_poll.
19123
19124 2005-07-14  Paul Eggert  <eggert@cs.ucla.edu>
19125
19126         * modules/argp (Depends-on): Remove unlocked-io.
19127
19128 2005-07-14  Derek Price  <derek@ximbiot.com>
19129
19130         * m4/glob.m4 (gl_GLOB): Cache glob interface check result.  Add check
19131         for glob symlink bug.
19132
19133 2005-07-14  Bruno Haible  <bruno@clisp.org>
19134
19135         * m4/argp.m4 (gl_ARGP): Remove invocation of gl_FUNC_GLIBC_UNLOCKED_IO.
19136         Instead, test for *_unlocked function declarations directly.
19137
19138 2005-07-11  Simon Josefsson  <jas@extundo.com>
19139
19140         * modules/size_max: New file.
19141
19142         * modules/xsize: Depend on size_max module for size_max.m4.
19143
19144 2005-07-11  Simon Josefsson  <jas@extundo.com>
19145
19146         * lib/size_max.h: New file.
19147
19148 2005-07-11  Paul Eggert  <eggert@cs.ucla.edu>
19149
19150         * lib/version-etc-fsf.c (version_etc_copyright): Parameterize the
19151         copyright symbol and the year.
19152         * lib/version-etc.c (COPYRIGHT_YEAR): New constant.
19153         (version_etc_va): Use parameterized copyright notice.
19154         Reword to conform to the current GNU coding standards.
19155
19156 2005-07-11  Karl Berry  <karl@gnu.org>
19157
19158         * doc/gnulib.texi (Quoting): new node.
19159         (Initial import): more info, from Patrice.
19160
19161 2005-07-11  Bruno Haible  <bruno@clisp.org>
19162
19163         * gnulib-tool (func_usage): Document option --avoid.
19164         (Command line options): Handle --avoid.
19165         (func_acceptable): New function.
19166         (func_modules_transitive_closure): Use it.
19167
19168 2005-07-11  Bruno Haible  <bruno@clisp.org>
19169
19170         * MODULES.html.sh: Use shortcut URLs to the www.opengroup.org site.
19171         Reported by Jim Meyering.
19172
19173 2005-07-10  Bruno Haible  <bruno@clisp.org>
19174
19175         * m4/size_max.m4 (gl_SIZE_MAX): Cast ~(size_t)0 back to size_t.
19176         Needed when size_t is smaller than 'unsigned int'.
19177         Reported by Paul Eggert.
19178
19179 2005-07-09  Sergey Poznyakoff  <gray@gnu.org.ua>
19180
19181         * modules/argp (Depends-on): Add unlocked-io
19182
19183 2005-07-09  Sergey Poznyakoff  <gray@gnu.org.ua>
19184
19185         * lib/argp-namefrob.h: Include unlocked-io.h. Removed unnecessary
19186         block of defines.
19187
19188 2005-07-08  Paul Eggert  <eggert@cs.ucla.edu>
19189
19190         * config/srclist.txt: Comment out regcomp.c, since we have a porting
19191         fix now.
19192
19193 2005-07-08  Eric Blake  <ebb9@byu.net>  (tiny change)
19194         and Paul Eggert  <eggert@cs.ucla.edu>
19195
19196         * lib/regcomp.c (init_dfa, build_range_exp): Store __btowc value
19197         in wint_t, not wchar_t.  Remove now-unnecessary cast.
19198
19199 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
19200
19201         * modules/regex (Files): Add lib/regex_internal.c,
19202         lib/regex_internal.h, lib/regexec.c, lib/regcomp.c, m4/codeset.m4.
19203         (Depends-on): Add extensions.
19204         (Makefile.am): Remove lib_SOURCES; now done by m4 code.
19205
19206 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
19207
19208         * m4/backupfile.m4 (gl_BACKUPFILE): Use AC_CHECK_FUNCS_ONCE on
19209         pathconf.
19210         * m4/same.m4 (gl_SAME): Likewise.
19211         Require AC_SYS_LONG_FILE_NAMES; bug reported by Gerrit P. Haase.
19212
19213         * m4/regex.m4: Adjust to new libc regex implementation.
19214         (gl_INCLUDED_REGEX): Add AC_LIBSOURCES for
19215         all the .c and .h parts of (the new) regex.
19216         Quote the m4 stuff better.
19217         Check for RE_ICASE bug of old gnulib.
19218         Check for REG_STARTEND of recent libc.
19219         Rename local variables from jm_* to gl_*.
19220         Quote operand of "test -f".
19221         Say "recent enough" version of libc, not "version 2".
19222         (gl_PREREQ_REGEX): Remove AC_FUNC_ALLOCA, since alloca is a
19223         prerequisite module.  Remove AC_HEADER_STDC; no longer needed.
19224         Check for locale.h, isblank, mbrtowc, wcrtomb, wcscoll.
19225         Remove check for btowc, isascii.
19226         Require AM_LANGINFO_CODESET.
19227
19228 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
19229
19230         * lib/regex.c, regex.h: Sync from libc.
19231         * lib/regcomp.c, lib/regexec_internal.c, lib/regex_internal.h:
19232         * lib/regexec.c:
19233         New files, synced from libc, except that regex_internal.h
19234         currently has a small porting fix.
19235
19236 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
19237
19238         * config/srclist.txt: Add regcomp.c, regex.c, regex.h,
19239         regex_internal.c, regexec.c.
19240         Add regex_internal.h too, but as a comment, since the libc version
19241         is currently broken in gnulib mode.
19242
19243 2005-07-06  Paul Eggert  <eggert@cs.ucla.edu>
19244
19245         Support programs like Emacs that use gnulib but not gettext.
19246         * MODULES.html.sh (Internationalization functions): Add gettext-h.
19247         * modules/gettext-h: New file.
19248         * modules/gettext (Files): Remove lib/gettext.h.
19249         (Depends-on): Add gettext-h.
19250         (Makefile.am): Remove lib_SOURCES.
19251         * modules/argmatch, modules/c-stack, modules/closeout:
19252         * modules/copy-file, modules/csharpcomp, modules/csharpexec:
19253         * modules/execute, modules/file-type, modules/getaddrinfo:
19254         * modules/getopt, modules/human, modules/javacomp:
19255         * modules/javaexec, modules/mkdir-p, modules/obstack:
19256         * modules/openat, modules/pagealign_alloc, modules/pipe:
19257         * modules/quotearg, modules/regex, modules/rpmatch:
19258         * modules/unicodeio, modules/userspec, modules/version-etc:
19259         * modules/wait-process, modules/xalloc-die, modules/xmemcoll:
19260         * modules/xsetenv:
19261         Depend on gettext-h, not gettext.
19262
19263 2005-07-05  Paul Eggert  <eggert@cs.ucla.edu>
19264
19265         * gnulib-tool (func_import): Add support for 'public domain' license.
19266         * modules/alloca, modules/atexit, modules/memmove:
19267         Now public domain, not GPL.
19268         * modules/dup2, modules/getpagesize, modules/malloc, modules/memset:
19269         * modules/realloc, modules/strerror, modules/strtod:
19270         Now LGPL, not GPL.
19271
19272 2005-07-05  Bruno Haible  <bruno@clisp.org>
19273
19274         * m4/mbrtowc.m4 (gl_FUNC_MBRTOWC): Upgrade to version from current
19275         autoconf CVS. Needed for mingw.
19276
19277 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
19278
19279         Remove the dependency of the strftime module on the tzset module.
19280         * modules/strftime (Depends-on): Remove dependency on tzset.
19281
19282 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
19283
19284         Remove the dependency of the strftime module on the tzset module.
19285         * m4/strftime.m4 (gl_FUNC_STRFTIME): Don't require
19286         gl_FUNC_TZSET_CLOBBER.
19287
19288 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
19289
19290         Remove the dependency of the strftime module on the tzset module.
19291         * lib/strftime.c (my_strftime)
19292         [! defined _LIBC && ! HAVE_RUN_TZSET_TEST]:
19293         Copy the input structure, to work around some of the bug with
19294         Solaris 2.5.1 and Solaris 2.6.  If you still care about these old
19295         Solaris releases, you should also use the tzset module, but we won't
19296         require it as a dependency any more since we don't want LGPLed code
19297         to depend on GPLed code.
19298
19299 2005-07-02  Jim Meyering  <jim@meyering.net>
19300
19301         * m4/chown.m4, cloexec.m4, dup2.m4, fsusage.m4:
19302         * m4/getcwd-path-max.m4, getcwd.m4, mkstemp.m4, mountlist.m4:
19303         * m4/pagealign_alloc.m4, save-cwd.m4, unistd-safer.m4:
19304         Don't check for fcntl.h, and don't test for HAVE_FCNTL_H.
19305
19306 2005-07-02  Jim Meyering  <jim@meyering.net>
19307
19308         * lib/backupfile.c (backup_args): Change a `0' to NULL.
19309
19310 2005-07-01  Paul Eggert  <eggert@cs.ucla.edu>
19311
19312         * lib/xnanosleep.c: Include timespec.h, since OpenBSD 3.4 <time.h>
19313         declares only 'struct timespec;' (!).
19314
19315 2005-07-01  Jim Meyering  <jim@meyering.net>
19316
19317         * lib/chown.c, cloexec.c, dup-safer.c, dup2.c, fsusage.c, getcwd.c:
19318         * lib/getloadavg.c, mountlist.c, openat.h, pagealign_alloc.c:
19319         * lib/save-cwd.c, tempname.c:
19320         Assume HAVE_FCNTL_H (i.e., include <fcntl.h> unconditionally,
19321         and don't include <sys/file.h>).
19322
19323 2005-06-29  Jim Meyering  <jim@meyering.net>
19324
19325         * lib/mkdir-p.c (make_dir_parents): Don't apply sizeof to a hard-coded
19326         type name.  Use the variable name instead.
19327         * lib/idcache.c (getuser, getuidbyname, getgroup, getgidbyname):
19328         Likewise.
19329
19330 2005-06-28  Simon Josefsson  <jas@extundo.com>
19331
19332         * modules/check-version (Files): Add check-version.m4.
19333
19334 2005-06-28  Simon Josefsson  <jas@extundo.com>
19335
19336         * m4/check-version.m4: New file, suggested by Jim Meyering
19337         <jim@meyering.net>.
19338
19339 2005-06-28  Simon Josefsson  <jas@extundo.com>
19340
19341         * lib/check-version.h, lib/check-version.c: New files.
19342
19343 2005-06-28  Simon Josefsson  <jas@extundo.com>
19344
19345         * lib/base64.c (base64_encode): Indent.  Rename 'b64' to avoid
19346         collision with global variable.  Better indentation.  Don't
19347         increment buffer pointer beyond buffer end.  Based on comments
19348         from Paul Eggert <eggert@cs.ucla.edu>.
19349
19350         * lib/base64.h: Indent.
19351
19352 2005-06-28  Simon Josefsson  <jas@extundo.com>
19353
19354         * doc/gnulib.texi (Library version handling): New section.
19355
19356 2005-06-28  Jim Meyering  <jim@meyering.net>
19357
19358         * check-module (find_included_lib_files): Hard-code another
19359         pair of exceptions: fts.c includes fts-cycle.c and unistd-safer.h
19360         but modules/fts-lgpl (correctly) does not list those files.
19361
19362         * modules/canonicalize (Files): Add lib/pathmax.h.
19363
19364 2005-06-25  Simon Josefsson  <jas@extundo.com>
19365
19366         * modules/check-version: New file.
19367
19368 2005-06-24  Paul Eggert  <eggert@cs.ucla.edu>
19369
19370         * lib/canon-host.c (canon-host): Append trailing "," to 0 in
19371         initializer of struct addrinfo, as an indication that we don't
19372         care how many members the structure has.
19373
19374 2005-06-24  Derek Price  <derek@ximbiot.com>
19375         and Bruno Haible  <bruno@clisp.org>
19376
19377         Remove stat module & update lstat.
19378         * m4/lstat.m4 (gl_FUNC_LSTAT): Drop AC_FUNC_LSTAT in favor of
19379         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
19380         * m4/stat.m4: Remove this file.
19381
19382 2005-06-24  Derek Price  <derek@ximbiot.com>
19383         and Bruno Haible  <bruno@clisp.org>
19384
19385         Remove stat module & update lstat.
19386         * lib/stat.c: Remove this file...
19387         (slash_aware_lstat): ...moving this content and its support...
19388         * lib/lstat.c (rpl_lstat): ...into here.
19389         * lib/lstat.h: New file.
19390
19391 2005-06-24  Derek Price  <derek@ximbiot.com>
19392         and Bruno Haible  <bruno@clisp.org>
19393
19394         Remove stat module & update lstat.
19395         * config/srclist.txt (libc sources): Remove stat.
19396
19397 2005-06-24  Derek Price  <derek@ximbiot.com>
19398         and Bruno Haible  <bruno@clisp.org>
19399
19400         Remove stat module & update lstat.
19401         * MODULES.html.sh (stat): Remove.
19402         * MODULES.html: Regenerated.
19403         * modules/lstat (Description): Correct function name.
19404         (Files): Add "lstat.h".
19405         (Depends-on): Remove stat, add xalloc, stat-macros.
19406         * modules/stat: Remove this file.
19407         (Include): Add "lstat.h", remove <sys/stat.h>.
19408
19409 2005-06-23  Paul Eggert  <eggert@cs.ucla.edu>
19410
19411         * lib/mktime.c: Include <string.h> even if !DEBUG.  (From glibc.)
19412         (ranged_convert): Don't save conversion in a temporary struct.
19413         This causes a warning with GCC 4.0.0, and anyway in the typical
19414         case it's not worth the extra 100 bytes or so of code.
19415         (ranged_convert, __mktime_internal): When calling a function via a
19416         pointer P, use P () rather than (*P) (), as we now assume C89 or
19417         better.
19418
19419 2005-06-22  Paul Eggert  <eggert@cs.ucla.edu>
19420
19421         * lib/readutmp.c (desirable_utmp_entry): Fix bug where "who -b" and
19422         "who -r" failed to give output.  Problem reported by Tim Waugh.
19423
19424         * lib/xmalloc.c (HAVE_GNU_CALLOC): New constant.
19425         (xcalloc): Use it to avoid needless tests.
19426         Problem reported by Jim Meyering.
19427
19428 2005-06-20  Derek Price  <derek@ximbiot.com>
19429
19430         * m4/bison.m4: Note that precious decls of YACC & YFLAGS will be
19431         unnecessary for Autoconfs > 2.59c.
19432
19433 2005-06-16  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
19434
19435         * lib/argp.h (__option_is_short): Check upper limit of
19436         __key. Isprint() requires its argument to have the value
19437         of an unsigned char or EOF.
19438
19439 2005-06-16  Jim Meyering  <jim@meyering.net>
19440
19441         * lib/calloc.c (rpl_calloc): Allocate a 1-byte buffer (not 1xS or Nx1)
19442         when either N or S is zero.
19443
19444 2005-06-16  Derek Price  <derek@ximbiot.com>
19445
19446         * m4/bison.m4: Declare YACC & YFLAGS precious.
19447
19448 2005-06-10  Paul Eggert  <eggert@cs.ucla.edu>
19449
19450         * lib/fnmatch.c (fnmatch): If there is an encoding error in a
19451         multibyte string or pattern, fall back on unibyte matching.
19452         Problem reported by James Youngman.
19453
19454 2005-06-08  Bruno Haible  <bruno@clisp.org>
19455
19456         * modules/csharpcomp: New file.
19457         * MODULES.html.sh (C#): Add csharpcomp.
19458
19459 2005-06-08  Bruno Haible  <bruno@clisp.org>
19460
19461         * m4/csharpcomp.m4: New file, from GNU gettext.
19462
19463 2005-06-08  Bruno Haible  <bruno@clisp.org>
19464
19465         * lib/csharpcomp.h: New file, from GNU gettext.
19466         * lib/csharpcomp.c: New file, from GNU gettext.
19467         * lib/csharpcomp.sh.in: New file, from GNU gettext.
19468
19469 2005-06-08  Bruno Haible  <bruno@clisp.org>
19470
19471         * lib/binary-io.h (fileno): Undefine before defining it. Avoids a gcc
19472         warning on mingw.
19473
19474 2005-06-07  Derek Price  <derek@ximbiot.com>
19475
19476         Sync from CVS.
19477         * lib/glob_.h: Indent nested #ifdef.
19478
19479 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
19480
19481         Sync from coreutils.
19482         Use "file name" when talking about file names, instead of "filename"
19483         or "path", as per the GNU coding standards.
19484         * lib/mkdir-p.c: Renamed from makepath.c.
19485         (make_dir_parents): Renamed from make_path.  All callers changed.
19486         * lib/mkdir-p.h: Likewise.  All includers changed.
19487         * lib/filenamecat.c: Renamed from path-concat.c.
19488         (file_name_concat): Renamed from path_concat.  All callers changed.
19489         [TEST_FILE_NAME_CONCAT]: Renamed from TEST_PATH_CONCAT.
19490         * lib/filenamecat.h: Likewise.  All includers changed.
19491         * lib/acl.c: Don't use "path" or "filename" to mean "file name"
19492         in comments or local variable names.
19493         * lib/basename.c: Likewise.
19494         * lib/canonicalize.c, canonicalize.h: Likewise.
19495         * lib/dirname.c, dirname.h: Likewise.
19496         * lib/euidaccess.c: Likewise.
19497         * lib/exclude.c: Likewise
19498         * lib/fnmatch_.h, fnmatch_loop.c: Likewise.
19499         * lib/fsusage.c, fsuage.h: Likewise.
19500         * lib/fts.c, fts_.h: Likewise.
19501         * lib/getcwd.c: Likewise.
19502         * lib/getloadavg.c: Likewise.
19503         * lib/mkstemp.c: Likewise.
19504         * lib/mountlist.c, mountlist.h: Likewise.
19505         * lib/openat.c, openat.h: Likewise.
19506         * lib/readlink-stub.c: Likewise.
19507         * lib/readutmp.c, readutmp.h: Likewise.
19508         * lib/rename.c: Likewise.
19509         * lib/rmdir.c: Likewise.
19510         * lib/same.c: Likewise.
19511         * lib/savedir.c: Likewise.
19512         * lib/stripslash.c: Likewise.
19513         * lib/tempname.c: Likewise.
19514         * lib/xreadlink.c: Likewise.
19515         * lib/exclude.c (excluded_file_name): Renamed from excluded_filename.
19516         All uses changed.
19517         * lib/exclude.h: Likewise.
19518
19519         * lib/euidaccess.c (getuid, getgid, getuid, getegid)
19520         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
19521         * lib/idcache.c (getpwuid, getpwnam, getgrgid, getgrnam)
19522         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
19523         * lib/pathmax.h: Include <limits.h> unconditionally, since other
19524         files have been getting away with it for years (MORE/BSD 4.3
19525         is extinct now).
19526         * lib/userspec.c (getpwnam, getgrnam, getgrgid)
19527         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
19528
19529         * lib/pathmax.h (_POSIX_PATH_MAX) [!defined _POSIX_PATH_MAX]:
19530         Define to 256, not 255, as per modern POSIX.
19531
19532 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
19533
19534         Sync from coreutils.
19535         Use "file name" when talking about file names, instead of "filename"
19536         or "path", as per the GNU coding standards.
19537         * MODULES.html.sh: mkdir-p renamed from makepath.
19538         filenamecat renamed from path-concat.
19539         * modules/filenamecat: Renamed from modules/path-concat.
19540         (Files): filenamecat.h and filenamecat.c renamed from
19541         path-concat.h and path-concat.c.
19542         (configure.ac): gl_FILE_NAME_CONCAT, not gl_PATH_CONCAT.
19543         (Include): filenamecat.h, not path-concat.h.
19544         * modules/mkdir-p: Renamed from modules/makepath.
19545         (Files): mkdir-p.h and mkdir-p.c renamed from makepath.h and
19546         makepath.c.
19547         (configure.ac): gl_MKDIR_PARENTS, not gl_MAKEPATH.
19548         (Include): mkdir-p.h, not makepath.h.
19549
19550 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
19551
19552         Sync from coreutils.
19553         * m4/mkdir-p.m4: Renamed from makepath.m4.
19554         (gl_MKDIR_PARENTS): Renamed from gl_MAKEPATH.  All uses changed.
19555         Rename files from makepath.c to mkdir-p.c, and from
19556         makepath.h to mkdir-p.h.
19557         * m4/filenamecat.m4: Renamed from path-concat.m4.
19558         (gl_FILE_NAME_CONCAT): Renamed from gl_PATH_CONCAT.  All uses changed.
19559         Rename files from path-concat.c to filenamecat.c,
19560         and from path-concat.h to filenamecat.h.
19561         * m4/getcwd-path-max.m4: Don't use "path" or "filename" to mean
19562         "file name" in local variables or comments.
19563         * m4/rename.m4: Likewise.
19564
19565 2005-06-01  Bruno Haible  <bruno@clisp.org>
19566
19567         * modules/csharpexec: New file.
19568         * MODULES.html.sh (C#): New section.
19569
19570 2005-06-01  Bruno Haible  <bruno@clisp.org>
19571
19572         * m4/csharp.m4: New file, from GNU gettext.
19573         * m4/csharpexec.m4: New file, from GNU gettext.
19574
19575 2005-06-01  Bruno Haible  <bruno@clisp.org>
19576
19577         * lib/csharpexec.h: New file, from GNU gettext.
19578         * lib/csharpexec.c: New file, from GNU gettext.
19579         * lib/csharpexec.sh.in: New file, from GNU gettext.
19580
19581 2005-05-31  Derek Price  <derek@ximbiot.com>
19582             Paul Eggert  <eggert@cs.ucla.edu>
19583
19584         Sync from cvs.
19585         * m4/glob.m4: s/MISSING_SYS_CDEFS_H/_SYS_CDEFS_H/ and comment.
19586
19587 2005-05-31  Derek Price  <derek@ximbiot.com>
19588             Paul Eggert  <eggert@cs.ucla.edu>
19589
19590         Sync from cvs.
19591         * lib/glob_.h: s/MISSING_SYS_CDEFS_H/_SYS_CDEFS_H/ and comment.
19592
19593 2005-05-29  Derek Price  <derek@ximbiot.com>
19594
19595         * config/srclist.txt (glob_.h, glob.c): Add these files.
19596
19597 2005-05-29  Derek Price  <derek@ximbiot.com>
19598
19599         * MODULES.html.sh: Add glob to Enhanced POSIX.2001 section.
19600         * modules/glob: New file.
19601         * modules/getlogin_r: Add link to POSIX spec in description.
19602
19603 2005-05-29  Derek Price  <derek@ximbiot.com>
19604             Paul Eggert  <eggert@cs.ucla.edu>
19605
19606         * m4/glob.m4: New file.
19607
19608 2005-05-29  Derek Price  <derek@ximbiot.com>
19609             Paul Eggert  <eggert@cs.ucla.edu>
19610
19611         * lib/glob_.h, lib/glob.c: New files.
19612
19613 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
19614
19615         * modules/fts (Files): Remove m4/inttypes-pri.m4.
19616         * modules/fts-lgpl (Depends-on): Remove gettext.
19617
19618 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
19619
19620         * m4/fts.m4 (gl_FUNC_FTS_CORE): Don't check for inttypes.h or stdint.h,
19621         and don't require gt_INTTYPES_PRI.
19622
19623 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
19624
19625         * lib/getlogin_r.c (getlogin_r): Don't set errno to 0 on return.
19626
19627         * lib/fts.c: Don't worry about debugging on pre-C99-compatible hosts;
19628         the configuration hassle isn't worth it.
19629         Include inttypes.h and stdint.h unconditionally if FTS_DEBUG.
19630         (LONGEST_MODIFIER, PRIuMAX): Remove.
19631
19632 2005-05-27  Bruno Haible  <bruno@clisp.org>
19633
19634         * lib/getlogin_r.h: Remove second include of <stddef.h>.
19635
19636 2005-05-26  Paul Eggert  <eggert@cs.ucla.edu>
19637
19638         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Define
19639         _POSIX_PTHREAD_SEMANTICS for Solaris.
19640
19641 2005-05-25  Derek Price  <derek@ximbiot.com>
19642
19643         * MODULES.html.sh: Add getlogin_r to POSIX.2001 support section.
19644
19645 2005-05-25  Derek Price  <derek@ximbiot.com>
19646             Paul Eggert  <eggert@cs.ucla.edu>
19647
19648         * modules/getlogin_r, m4/getlogin_r.m4: New files.
19649         * lib/getlogin_r.c, getlogin_r.h: New files.
19650
19651 2005-05-25  Bruno Haible  <bruno@clisp.org>
19652             Derek Price  <derek@ximbiot.com>
19653
19654         * lib/getlogin_r.h: Simplify API documentation.
19655
19656 2005-05-23  Derek Price  <derek@ximbiot.com>
19657
19658         * modules/minmax (Files): Add m4/minmax.m4.
19659         (configure.ac): Add gl_MINMAX.
19660
19661 2005-05-22  Paul Eggert  <eggert@cs.ucla.edu>
19662
19663         * lib/fts.c (fd_safer) [_LGPL_PACKAGE]: New static function,
19664         so that unistd-safer.h (GPL'ed code) need not be included.
19665
19666 2005-05-22  Bruno Haible  <bruno@clisp.org>
19667
19668         * m4/minmax.m4: New file.
19669         Based on a patch by Derek Price <derek@ximbiot.com>.
19670
19671 2005-05-22  Bruno Haible  <bruno@clisp.org>
19672
19673         * lib/stdint_.h (_STDINT_H_HAVE_INT64): New macro. Use it in #ifdefs.
19674         (INT64_MIN): Fix definition.
19675         Suggested by Paul Eggert <eggert@cs.ucla.edu>.
19676
19677         * lib/stdint_.h (_STDINT_H_NEED_SIGNED_INT_TYPES): Renamed from
19678         NEED_SIGNED_INT_TYPES.
19679
19680         * lib/stdint_.h (_STDINT_H_HAVE_SYSTEM_INTTYPES): Renamed from
19681         HAVE_SYSTEM_INTTYPES.
19682
19683 2005-05-22  Bruno Haible  <bruno@clisp.org>
19684
19685         * lib/minmax.h: Include <limits.h> only when it defines MIN, MAX.
19686         Also include <sys/param.h> if it defines MIN, MAX.
19687         Based on a patch by Derek Price <derek@ximbiot.com>.
19688
19689 2005-05-21  Jim Meyering  <jim@meyering.net>
19690
19691         * modules/fts (Files): Add m4/inttypes-pri.m4.
19692         (Depends-on): Add lstat and remove gettext.  Alphabetize.
19693
19694 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
19695
19696         New fts module.
19697         * lib/fts.c: Don't include "cycle-check.h" or "hash.h".
19698         (setup_dir, free_dir): New functions.
19699         (enter_dir, leave_dir): Define trivial
19700         alternatives of _LGPL_PACKAGE.  Move to fts-cycle.c if !_LGPL_PACKAGE.
19701         (HT_INITIAL_SIZE, ENTER_DIR): Remove.  All uses removed.
19702         (LEAVE_DIR): Fix typo: pass Fts and Ent to leave_dir.
19703         (struct Active_dir, AD_compare, AD_hash, enter_dir, leave_dir):
19704         Move to fts-cycle.c.
19705         (fts_open): Use setup_dir.
19706         (fts_close): Use free_dir.
19707         (fts_read): Have just one copy of the ENTER_DIR code rather than three.
19708         This adds a label and some gotos, but the alternatives were messier.
19709         Check for memory allocation failure when entering a dir.
19710         (fts_stat) [_LGPL_PACKAGE]: Bring back glibc cycle detection code.
19711         * lib/fts_.h (_LGPL_PACKAGE) [defined _LIBC]: New macro.
19712         (FTS): New member fts_cycle, that is a union that contains the
19713         old active_dir_ht and cycle_state.  All uses changed to mention
19714         fts_cycle.ht and fts_cycle.state.
19715         * lib/fts-cycle.c: New file, containing GPL'ed code migrated out of
19716         fts.c, with the following changes:
19717         (setup_dir, free_dir): New functions.
19718         (enter_dir): Now returns bool.  Return true if successful, false
19719         if memory exhausted.  All callers changed.
19720         Do not bother partly cleaning up on
19721         memory allocation failure; that is free_dir's job.
19722         However, free ad if hash_insert fails, to avoid memory leak.
19723         (enter_dir, leave_dir): Accommodate change to FTS by inspecting
19724         fts->fts_options to see which union member to use.
19725
19726 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
19727
19728         * m4/fts.m4 (gl_FUNC_FTS_CORE): Renamed from gl_FUNC_FTS.
19729         (gl_FUNC_FTS, gl_FUNC_FTS_LGPL): New macros.
19730
19731 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
19732
19733         * MODULES.html.sh (File system functions): Add fts, fts-lgpl.
19734
19735 2005-05-20  Jim Meyering  <jim@meyering.net>
19736
19737         * lib/unlinkdir.h (cannot_unlink_dir) [UNLINK_CANNOT_UNLINK_DIR]:
19738         Now a macro, to pacify GCC.
19739
19740 2005-05-20  Eric Blake  <ebb9@byu.net>  (tiny change)
19741
19742         * m4/chown.m4 (gl_FUNC_CHOWN): Correct sense of test for honoring IDs
19743         of -1.
19744
19745 2005-05-20  Eric Blake  <ebb9@byu.net>  (tiny change)
19746
19747         * lib/chown.c (rpl_chown): Return -1 on failure.
19748
19749 2005-05-18  Paul Eggert  <eggert@cs.ucla.edu>
19750
19751         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME]):
19752         Don't check for stddef.h.
19753         * m4/fts.m4 (gl_FUNC_FTS): Don't require AC_HEADER_STDC, as we
19754         don't use its results.
19755         Don't check for fcntl.h, stddef.h, stdlib.h, string.h, unistd.h,
19756         since we include them unconditionally.  Don't require
19757         AM_STDBOOL_H, since stdbool is a prerequisite.
19758         Don't require AC_C_CONST, AC_TYPE_SIZE_T or check for ptrdiff_t
19759         since we assume C89 or better.
19760         Don't require AC_FUNC_CLOSEDIR_VOID, AC_FUNC_LSTAT, or AC_FUNC_STAT,
19761         as we don't use their results.
19762         Don't check for fchdir, memmove, memset, strrchr, as we use
19763         them unconditionally.
19764         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER): Don't define
19765         GETTIMEOFDAY_CLOBBERS_LOCALTIME_BUFFER, since nobody uses it.
19766
19767 2005-05-18  Paul Eggert  <eggert@cs.ucla.edu>
19768
19769         * lib/canonicalize.c: Include canonicalize.h first, to test interface.
19770         Include <stddef.h> unconditionally, since we assume C89 now.
19771         All uses of PTR_INT_TYPE replaced by ptrdiff_t.
19772         * lib/fts.c: Include fts_.h first, to check interface.
19773         Do not include intprops.h; no longer needed.
19774         Include cycle-check.h and hash.h, since fts_.h no longer does.
19775         Remove unnecessary casts of closedir to void.
19776         (fts_build): Use a simpler method (not involving TYPE_SIGNED) to
19777         decide whether to decrement nlinks.
19778         * lib/fts_.h: Do not include hash.h or cycle-check.h; no longer needed.
19779         (FTS): Use struct hash_table * instead of Hash_table, so that
19780         we no longer need to include hash.h here.
19781
19782 2005-05-18  Jim Meyering  <jim@meyering.net>
19783
19784         * modules/dirfd (License): Change to LGPL.  Most of the code
19785         is already in the public domain.
19786
19787 2005-05-18  Jim Meyering  <jim@meyering.net>
19788
19789         * m4/fts.m4 (AC_LIBSOURCES): Add intprops.h to the list.
19790         Reported by Yoann Vandoorselaere.
19791
19792 2005-05-17  Jim Meyering  <jim@meyering.net>
19793
19794         * m4/fts.m4: New file, from coreutils.
19795
19796 2005-05-17  Jim Meyering  <jim@meyering.net>
19797
19798         * lib/fts.c, lib/fts_.h: New files, from coreutils.
19799
19800 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
19801
19802         Sync from coreutils.
19803         * m4/unlinkdir.m4: New file.
19804
19805 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
19806
19807         Sync from coreutils.
19808         * lib/unlinkdir.c, lib/unlinkdir.h: New files.
19809         * lib/gethrxtime.c, lib/gethrxtime.h, lib/getpass.h, lib/mountlist.h,
19810         lib/path-concat.c, lib/regex.h, lib/unlocked-io.h, lib/xtime.h:
19811         White space changes only.
19812         * lib/makepath.c (make_path): Port to hosts where leading "//" is
19813         special.
19814         * lib/yesno.c: Include getline.h, not ctype.h.
19815         (yesno): Don't remove leading white space; POSIX doesn't allow it.
19816         Use getline to remove arbitrary restriction on response length.
19817
19818 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
19819
19820         * config/srclist-update: Spell out "Street" in FSF postal
19821         mail address; this is the style the FSF seems to prefer.
19822
19823         * build-aux/depcomp, build-aux/install-sh, build-aux/mdate-sh,
19824         build-aux/missing, build-aux/mkinstalldirs: Sync from Automake;
19825         this updates FSF postal mail address.
19826
19827         Sync from coreutils.
19828         * modules/unlinkdir: New file.
19829         * modules/yesno (Depends-on): Add getline.
19830         * MODULES.html.sh (File system functions): Add unlinkdir.
19831
19832 2005-05-13  Paul Eggert  <eggert@cs.ucla.edu>
19833
19834         * lib/byteswap_.h, lib/getsubopt.h, lib/iconvme.h, lib/strsep.c,
19835         lib/strsep.h:
19836         Change the initial comment to refer to GPL, not LGPL.
19837         gnulib-tool will change it to LGPL as needed.
19838
19839         * lib/__fpending.c, lib/acl.c, lib/acl.h, lib/alloca_.h, lib/allocsa.c,
19840         lib/allocsa.h, lib/argmatch.c, lib/argmatch.h, lib/argp-ba.c,
19841         lib/argp-eexst.c, lib/argp-fmtstream.c, lib/argp-fmtstream.h,
19842         lib/argp-fs-xinl.c, lib/argp-help.c, lib/argp-namefrob.h,
19843         lib/argp-parse.c, lib/argp-pv.c, lib/argp-pvh.c, lib/argp-xinl.c,
19844         lib/argp.h, lib/argz.c, lib/argz_.h, lib/asnprintf.c, lib/asprintf.c,
19845         lib/atanl.c, lib/backupfile.c, lib/backupfile.h, lib/base64.c,
19846         lib/base64.h, lib/basename.c, lib/binary-io.h, lib/byteswap_.h,
19847         lib/c-ctype.c, lib/c-ctype.h, lib/c-stack.c, lib/c-stack.h,
19848         lib/c-strtod.c, lib/calloc.c, lib/canon-host.c, lib/canonicalize.c,
19849         lib/canonicalize.h, lib/ceill.c, lib/chdir-long.c, lib/chdir-long.h,
19850         lib/chown.c, lib/classpath.c, lib/classpath.h, lib/cloexec.c,
19851         lib/closeout.c, lib/closeout.h, lib/concatpath.c, lib/config.charset,
19852         lib/copy-file.c, lib/copy-file.h, lib/cycle-check.c, lib/cycle-check.h,
19853         lib/diacrit.c, lib/diacrit.h, lib/dirfd.c, lib/dirfd.h, lib/dirname.c,
19854         lib/dirname.h, lib/dummy.c, lib/dup-safer.c, lib/dup2.c, lib/eealloc.h,
19855         lib/error.c, lib/error.h, lib/euidaccess.c, lib/exclude.c,
19856         lib/exclude.h, lib/execute.c, lib/execute.h, lib/exit.h,
19857         lib/exitfail.c, lib/exitfail.h, lib/expl.c, lib/fatal-signal.c,
19858         lib/fatal-signal.h, lib/fd-safer.c, lib/file-type.c, lib/file-type.h,
19859         lib/fileblocks.c, lib/filemode.c, lib/filemode.h, lib/findprog.c,
19860         lib/findprog.h, lib/floorl.c, lib/fnmatch.c, lib/fnmatch_.h,
19861         lib/fnmatch_loop.c, lib/fopen-safer.c, lib/free.c, lib/frexpl.c,
19862         lib/fsusage.c, lib/fsusage.h, lib/full-read.c, lib/full-read.h,
19863         lib/full-write.c, lib/full-write.h, lib/fwriteerror.c,
19864         lib/fwriteerror.h, lib/gai_strerror.c, lib/gcd.c, lib/gcd.h,
19865         lib/getaddrinfo.c, lib/getaddrinfo.h, lib/getcwd.c, lib/getcwd.h,
19866         lib/getdate.h, lib/getdate.y, lib/getdomainname.c, lib/getdomainname.h,
19867         lib/getgroups.c, lib/gethostname.c, lib/gethrxtime.c, lib/gethrxtime.h,
19868         lib/getline.c, lib/getline.h, lib/getloadavg.c, lib/getndelim2.c,
19869         lib/getndelim2.h, lib/getnline.c, lib/getnline.h, lib/getopt.c,
19870         lib/getopt1.c, lib/getopt_.h, lib/getopt_int.h, lib/getpagesize.h,
19871         lib/getpass.c, lib/getpass.h, lib/getsubopt.c, lib/getsubopt.h,
19872         lib/gettext.h, lib/gettime.c, lib/gettimeofday.c, lib/getugroups.c,
19873         lib/getusershell.c, lib/group-member.c, lib/group-member.h,
19874         lib/hard-locale.c, lib/hard-locale.h, lib/hash-pjw.c, lib/hash-pjw.h,
19875         lib/hash.c, lib/hash.h, lib/human.c, lib/human.h, lib/iconvme.c,
19876         lib/iconvme.h, lib/idcache.c, lib/inet_ntop.h, lib/intprops.h,
19877         lib/inttostr.c, lib/inttostr.h, lib/isdir.c, lib/javacomp.c,
19878         lib/javacomp.h, lib/javacomp.sh.in, lib/javaexec.c, lib/javaexec.h,
19879         lib/javaexec.sh.in, lib/lbrkprop.h, lib/lchown.c, lib/ldexpl.c,
19880         lib/linebreak.c, lib/linebreak.h, lib/linebuffer.c, lib/linebuffer.h,
19881         lib/localcharset.c, lib/localcharset.h, lib/logl.c, lib/long-options.c,
19882         lib/long-options.h, lib/lstat.c, lib/makepath.c, lib/makepath.h,
19883         lib/malloc.c, lib/mathl.h, lib/mbswidth.c, lib/mbswidth.h, lib/md5.c,
19884         lib/md5.h, lib/memcasecmp.c, lib/memcasecmp.h, lib/memchr.c,
19885         lib/memcmp.c, lib/memcoll.c, lib/memcoll.h, lib/memcpy.c, lib/memmem.c,
19886         lib/memmem.h, lib/mempcpy.c, lib/mempcpy.h, lib/memrchr.c,
19887         lib/memrchr.h, lib/memset.c, lib/minmax.h, lib/mkdir.c, lib/mkdtemp.c,
19888         lib/mkdtemp.h, lib/mkstemp.c, lib/mktime.c, lib/modechange.c,
19889         lib/modechange.h, lib/mountlist.c, lib/mountlist.h, lib/nanosleep.c,
19890         lib/obstack.c, lib/obstack.h, lib/openat.c, lib/openat.h,
19891         lib/pagealign_alloc.c, lib/pagealign_alloc.h, lib/path-concat.c,
19892         lib/path-concat.h, lib/pathmax.h, lib/pathname.h, lib/physmem.c,
19893         lib/physmem.h, lib/pipe.c, lib/pipe.h, lib/poll.c, lib/poll_.h,
19894         lib/posixtm.c, lib/posixtm.h, lib/posixver.c, lib/printf-args.c,
19895         lib/printf-args.h, lib/printf-parse.c, lib/printf-parse.h,
19896         lib/progname.c, lib/progname.h, lib/progreloc.c, lib/putenv.c,
19897         lib/quote.c, lib/quote.h, lib/quotearg.c, lib/quotearg.h, lib/raise.c,
19898         lib/readlink.c, lib/readtokens.c, lib/readtokens.h, lib/readtokens0.c,
19899         lib/readtokens0.h, lib/readutmp.c, lib/readutmp.h, lib/realloc.c,
19900         lib/ref-add.sin, lib/ref-del.sin, lib/regex.c, lib/regex.h,
19901         lib/rename.c, lib/rmdir.c, lib/rpmatch.c, lib/safe-read.c,
19902         lib/safe-read.h, lib/safe-write.c, lib/safe-write.h, lib/same.c,
19903         lib/same.h, lib/save-cwd.c, lib/save-cwd.h, lib/savedir.c,
19904         lib/savedir.h, lib/setenv.c, lib/setenv.h, lib/settime.c,
19905         lib/sh-quote.c, lib/sh-quote.h, lib/sha1.c, lib/sha1.h, lib/sig2str.c,
19906         lib/sig2str.h, lib/sincosl.c, lib/snprintf.c, lib/snprintf.h,
19907         lib/sqrtl.c, lib/stat-macros.h, lib/stat.c, lib/stdbool_.h,
19908         lib/stdint_.h, lib/stdio-safer.h, lib/stpcpy.c, lib/stpcpy.h,
19909         lib/stpncpy.c, lib/stpncpy.h, lib/strcase.h, lib/strcasecmp.c,
19910         lib/strchrnul.c, lib/strchrnul.h, lib/strcspn.c, lib/strdup.c,
19911         lib/strdup.h, lib/strerror.c, lib/strftime.c, lib/strftime.h,
19912         lib/stripslash.c, lib/strndup.c, lib/strndup.h, lib/strnlen.c,
19913         lib/strpbrk.c, lib/strpbrk.h, lib/strsep.c, lib/strsep.h, lib/strstr.c,
19914         lib/strstr.h, lib/strtod.c, lib/strtoimax.c, lib/strtok_r.c,
19915         lib/strtok_r.h, lib/strtol.c, lib/strtoll.c, lib/strtoul.c,
19916         lib/strtoull.c, lib/strverscmp.c, lib/strverscmp.h, lib/sysexit_.h,
19917         lib/tempname.c, lib/time_r.c, lib/time_r.h, lib/timegm.c, lib/timegm.h,
19918         lib/timespec.h, lib/trigl.c, lib/trigl.h, lib/ucs4-utf16.h,
19919         lib/ucs4-utf8.h, lib/unicodeio.c, lib/unicodeio.h, lib/unistd-safer.h,
19920         lib/unlocked-io.h, lib/unsetenv.c, lib/userspec.c, lib/utf16-ucs4.h,
19921         lib/utf8-ucs4.h, lib/utime.c, lib/utimecmp.c, lib/utimecmp.h,
19922         lib/utimens.c, lib/vasnprintf.c, lib/vasnprintf.h, lib/vasprintf.c,
19923         lib/vasprintf.h, lib/version-etc-fsf.c, lib/version-etc.c,
19924         lib/version-etc.h, lib/vsnprintf.c, lib/vsnprintf.h, lib/w32spawn.h,
19925         lib/wait-process.c, lib/wait-process.h, lib/xalloc-die.c, lib/xalloc.h,
19926         lib/xallocsa.c, lib/xallocsa.h, lib/xasprintf.c, lib/xgetcwd.c,
19927         lib/xgetcwd.h, lib/xgetdomainname.c, lib/xgetdomainname.h,
19928         lib/xgethostname.c, lib/xmalloc.c, lib/xmemcoll.c, lib/xnanosleep.c,
19929         lib/xreadlink.c, lib/xreadlink.h, lib/xsetenv.c, lib/xsetenv.h,
19930         lib/xsize.h, lib/xstrndup.c, lib/xstrndup.h, lib/xstrtod.c,
19931         lib/xstrtod.h, lib/xstrtoimax.c, lib/xstrtol.c, lib/xstrtol.h,
19932         lib/xstrtoumax.c, lib/xtime.h, lib/xvasprintf.c, lib/xvasprintf.h,
19933         lib/yesno.c, lib/yesno.h:
19934         Update FSF postal mail address.
19935
19936 2005-05-13  Paul Eggert  <eggert@cs.ucla.edu>
19937
19938         * MODULES.html.sh, README, gnulib-tool, tests/test-base64.c,
19939         tests/test-memmem.c, tests/test-stpncpy.c:
19940         Update FSF postal mail address.
19941
19942 2005-05-13  Bruno Haible  <bruno@clisp.org>
19943
19944         * lib/stdint_.h (int64_t, uint64_t, int_least64_t, uint_least64_t,
19945         int_fast64_t, uint_fast64_t, intmax_t, uintmax_t, INT64_MIN, INT64_MAX,
19946         UINT64_MAX, INT_LEAST64_MIN, INT_LEAST64_MAX, UINT_LEAST64_MAX,
19947         INT_FAST64_MIN, INT_FAST64_MAX, UINT_FAST64_MAX, INTMAX_MIN,
19948         INTMAX_MAX, UINTMAX_MAX, INT64_C, UINT64_C, INTMAX_C, UINTMAX_C):
19949         Add support for 64-bit integers in the MSVC compiler.
19950
19951 2005-05-12  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
19952
19953         * modules/getdate (Makefile.am): Add getdate.c to EXTRA_DIST
19954
19955 2005-05-12  Eric Blake  <ebb9@byu.net>  (tiny change)
19956
19957         * gnulib-tool (func_import): Sort and uniquify recommended includes.
19958
19959 2005-05-11  Paul Eggert  <eggert@cs.ucla.edu>
19960
19961         * doc/getdate.texi (General date syntax): Don't say that date
19962         date --iso-8601=ns generates acceptable dates; it doesn't yet.
19963         Problem reported by Nic Ferrier.
19964
19965 2005-05-10  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
19966
19967         * lib/getaddrinfo.c: Don't fail when SOCK_STREAM or SOCK_DGRAM are
19968         specified in ai_socktype. Fix invalid ai_protocol
19969         check. ai_protocol is usually set to 0 or depending on
19970         ai_family/ai_socktype to IPPROTO_TCP / IPPROTO_UDP.  Checking for
19971         SOCK_STREAM / SOCK_DGRAM in ai_protocol was invalid.  Set
19972         ai_socktype / ai_protocol in the returned addrinfo structure.
19973
19974 2005-05-10  Simon Josefsson  <jas@extundo.com>
19975
19976         * m4/getaddrinfo.m4: Look in libnsl/libsocket for getaddrinfo, from
19977         Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
19978
19979 2005-05-10  Karl Berry  <karl@gnu.org>
19980
19981         * doc/fdl.texi, gpl.texi, lgpl.texi, COPYING: update FSF address
19982         (from http://www.gnu.org/licenses).
19983         * doc/COPYING.LIB: also rename to COPYING.LESSER.
19984         * doc/COPYING.DOC: remove; per rms, only needed in doc files, so
19985         fdl.texi suffices.
19986
19987 2005-05-10  Karl Berry  <karl@gnu.org>
19988
19989         * config/srclist.txt (COPYING.LESSER): rename from COPYING.LIB.
19990         (COPYING.DOC): remove.
19991
19992         * config/srclist-update: new FSF address.
19993
19994 2005-05-10  Derek Price  <derek@ximbiot.com>
19995
19996         * m4/getopt.m4 (gl_GETOPT): Check for Solaris 10 bug, not decl, when
19997         possible.
19998
19999 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
20000             Bruno Haible  <bruno@clisp.org>
20001
20002         * modules/inet_ntop: New file.
20003         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
20004         inet_ntop.
20005
20006 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
20007             Bruno Haible  <bruno@clisp.org>
20008
20009         * m4/inet_ntop.m4: New file.
20010
20011 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
20012             Bruno Haible  <bruno@clisp.org>
20013
20014         * lib/inet_ntop.h: New file.
20015         * lib/inet_ntop.c: New file, from glibc with modifications.
20016
20017 2005-05-09  Paul Eggert  <eggert@cs.ucla.edu>
20018
20019         * modules/time_r (License): Change to LGPL.
20020         * modules/extensions (License): Change to LGPL.  Actually,
20021         the license is more permissive than that, but currently gnulib-tool
20022         doesn't know how to handle more-permissive licenses.
20023
20024         * modules/stat-macros (Depends-on): Don't depend on stat-macros (!).
20025         Problem reported by Dave Love.
20026
20027 2005-05-08  Jim Meyering  <jim@meyering.net>
20028
20029         * lib/classpath.c (PATH_SEPARATOR): Remove insignificant trailing
20030         blank.
20031
20032 2005-05-06  Paul Eggert  <eggert@cs.ucla.edu>
20033
20034         * modules/argmatch (Depends-on): Add stdbool.
20035         * modules/backupfile (Depends-on): Likewise.
20036         * modules/chdir-long (Depends-on): Likewise.
20037         * modules/closeout (Depends-on): Likewise.
20038         * modules/cycle-check (Depends-on): Likewise.
20039         * modules/dirname (Depends-on): Likewise.
20040         * modules/fnmatch (Depends-on): Likewise.
20041         * modules/fsusage (Depends-on): Likewise.
20042         * modules/fwriteerror (Depends-on): Likewise.
20043         * modules/getcwd (Depends-on): Likewise.
20044         * modules/getloadavg (Depends-on): Likewise.
20045         * modules/hard-locale (Depends-on): Likewise.
20046         * modules/makepath (Depends-on): Likewise.
20047         * modules/mountlist (Depends-on): Likewise.
20048         * modules/nanosleep (Depends-on): Likewise.
20049         * modules/posixtm (Depends-on): Likewise.
20050         * modules/quotearg (Depends-on): Likewise.
20051         * modules/readtokens (Depends-on): Likewise.
20052         * modules/readtokens0 (Depends-on): Likewise.
20053         * modules/readutmp (Depends-on): Likewise.
20054         * modules/save-cwd (Depends-on): Likewise.
20055         * modules/strftime (Depends-on): Likewise.
20056         * modules/userspec (Depends-on): Likewise.
20057         * modules/utimecmp (Depends-on): Likewise.
20058         * modules/xgetcwd (Depends-on): Likewise.
20059         * modules/xnanosleep (Depends-on): Likewise.
20060         * modules/xstrtod (Depends-on): Likewise.
20061         * modules/yesno (Depends-on): Likewise.
20062
20063 2005-05-05  Paul Eggert  <eggert@cs.ucla.edu>
20064
20065         * m4/getopt.m4 (gl_GETOPT): Check for Solaris 10 getopt, and avoid
20066         needless checks.
20067
20068 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
20069
20070         Merge from coreutils.  Among other things,
20071         add bulletproofing for cases where stdin, stdout, or stderr are closed.
20072         * lib/fd-safer.c: New file.
20073         * lib/fcntl-safer.h, open-safer.c: Remove.
20074         * lib/chdir-long.c: Fix comment "fetish" -> "coreutils".
20075         * lib/dup-safer.c: Include unistd-safer.h first.
20076         Don't include errno.h.
20077         (dup_safer) [!defined F_DUPFD]: Let fd_safer do the real work.
20078         * lib/file-type.h: Don't assume invoker included sys/stat.h first.
20079         * lib/file-type.c: Rely on file-type.h change.
20080         * lib/getloadavg.c: Include unistd-safer.h.
20081         (getloadavg): Use safer open.
20082         * lib/getusershell.c: Include "stdio-safer.h".
20083         (getusershell): Use safer fopen.
20084         * lib/long-options.c (long_options): Use NULL rather than 0.
20085         * lib/modechange.h (mode_free): Remove; all callers changed to invoke
20086         'free'.
20087         * lib/modechange.c: Likewise.
20088         xstrtol.h, stdbool.h, stddef.h: Don't include; no longer needed.
20089         (MODE_DONE): New constant.
20090         (struct mode_change): Remove 'next' member.
20091         (make_node_op_equals): New function; like the old one of the
20092         same name, except it allocates an array.
20093         (mode_compile, mode_create_from_ref): Use it.
20094         (mode_compile): Allocate result as an array, not a linked list.
20095         Parse octal string ourself, so that we catch mistakes like "+0".
20096         (mode_adjust): Arg is an array, not a linked list.
20097         * lib/modechange.c: Include stat-macros.h, xalloc.h.
20098         (S_ISDIR, S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR):
20099         (S_IRGRP, S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH, S_IRXWU):
20100         (S_IRWXG, S_IRWXO, CHMOD_MODE_BITS):
20101         Remove.  This is now stat-macros.h's job.
20102         (talloc): Remove.  All callers replaced by xalloc, so that
20103         our invokers don't have to worry about reporting memory failures.
20104         (make_node_op_equals): Remove.
20105         (MODE_ORDINARY_CHAGE, MODE_X_IF_ANY_X, MODE_COPY_EXISTING):
20106         New constants.
20107         (struct mode_change): Moved here from modechange.h.
20108         (mode_append_entry): Remove.
20109         (mode_compile): Remove MASKED_OPS arg, since it encouraged
20110         apps to have incorrect behavior.  Use simpler algorithm for head
20111         and tail.  Don't futz with umask; that's now the job of mode_adjust.
20112         Detect more invalid usages rather than having somewhat-random behavior.
20113         Don't insert an "a=" action, as that leads to incorrect behavior.
20114         (mode_compile, mode_create_from_ref): Return NULL on error instead
20115         of an enum, since now there's only one way to have an error.  All
20116         callers changed.
20117         (mode_adjust): Accept new arg UMASK_VALUE, and interpret it
20118         at the correct time.  Simplify calculation of "+u" and its ilk.
20119         Don't mishandle "+X".
20120         (mode_free): Remove "register" and localize decls.
20121         * lib/modechange.h (MODE_X_IF_ANY_X, MODE_COPY_EXISTING):
20122         (struct mode_change): Move to modechange.c; callers don't
20123         need to see this stuff.
20124         (MODE_MASK_EQUALS, MODE_MASK_PLUS, MODE_MASK_MINUS, MODE_MASK_ALL):
20125         (MODE_INVALID, MODE_MEMORY_EXHAUSTED, MODE_BAD_REFERENCE): Remove.
20126         (mode_change, mode_adjust): Reflect the new signatures noted above.
20127         * lib/nanosleep.c (rpl_nanosleep): Include "timespec.h" before macros
20128         that might redefine system include files.
20129         (siginterrupt) [!HAVE_SIGINTERRUPT]: New macro.
20130         (my_usleep): Use NULL rather than (void *) 0.
20131         (rpl_nanosleep) [!defined SA_NOCLDSTOP]:
20132         Use siginterrupt to specify that system calls should be interrupted.
20133         (rpl_nanosleep): Move initialization of suspended closer to call of
20134         my_usleep.
20135         * lib/readutmp.h (read_utmp): New arg OPTIONS.  All uses changed.
20136         * lib/readutmp.c: Likewise.  Include signal.h, stdbool.h.
20137         (desirable_utmp_entry): New function.
20138         (read_utmp) [defined UTMP_NAME_FUNCTION]: Redo memory allocation
20139         using x2nrealloc, to simplify logic.
20140         (read_utmp) [!defined UTMP_NAME_FUNCTION]: Check for overflow in
20141         size calculation.  Do not assume utmp file is a regular file.
20142         * lib/readutmp.h (UT_PID): Moved here from ../src/who.c.
20143         (READ_UTMP_CHECK_PIDS): New constant.
20144         * lib/save-cwd.c: Include unistd-safer.h.
20145         (save_cwd): Use fd_safer.
20146         * lib/tempname.c (S_ISDIR, S_IRUSR, S_IRUSR, S_IWUSR, S_IXUSR): Remove.
20147         [!_LIBC] Include "stat-macros.h" instead.
20148         * lib/unistd-safer.h (fd_safer): New decl.
20149
20150 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
20151
20152         * modules/getloadavg (Depends-on): Add unistd-safer.
20153         * modules/getusershell (Depends-on): Add stdio-safer.
20154         * modules/lstat (Depends-on): Remove xalloc.
20155         * modules/mkstemp (Depends-on): Add stat-macros.
20156         * modules/modechange (Depends-on): Remove xstrtol.
20157         Add stat-macros, xalloc.
20158         * modules/save-cwd (Depends-on): Add unistd-safer.
20159         * modules/stdio-safer (Makefile.am): Remove lib_SOURCES.
20160         * modules/unistd-safer (Files): Add lib/fd-safer.c
20161         (Makefile.am): Remove lib_SOURCES.
20162
20163         * MODULES.html.sh (Enhancements for POSIX:2001 functions):
20164         Remove fcntl-safer; unistd-safer supersedes it.
20165
20166 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
20167
20168         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Don't require
20169         AC_HEADER_STAT.
20170         * m4/lchown.m4 (gl_FUNC_CHOWN): Likewise.
20171         (gl_PREREQ_CHOWN): Remove.
20172         * m4/lstat.m4 (gl_FUNC_LSTAT): Require AC_FUNC_LSTAT instead of calling
20173         it.  Don't require AC_HEADER_STAT.
20174         (gl_PREREQ_LSTAT): Remove.
20175         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Check stdint.h only once.
20176         Don't require AC_HEADER_STAT.
20177         * m4/rmdir.m4 (gl_FUNC_RMDIR): Don't require AC_HEADER_STAT.
20178         (gl_PREREQ_RMDIR): Remove.
20179         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME): Don't
20180         mention stat-macros.h or AC_HEADER_STAT, since we'll make
20181         the stat-macros module a prerequisite.
20182         * m4/file-type.m4 (gl_FILE_TYPE): Likewise.
20183         * m4/filemode.m4 (gl_FILEMODE): Likewise.
20184         * m4/makepath.m4 (gl_MAKEPATH): Likewise.
20185         * m4/modechange.m4 (gl_MODECHANGE): Likewise.
20186         * m4/clock_time.m4 (gl_CLOCK_TIME): Use gl_ rather than fetish_ for
20187         variable names.
20188         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Renamed from
20189         fetish_FUNC_RMDIR_NOTEMPTY.  All uses changed.  Use gl_ for
20190         variable prefixes.
20191         * m4/fcntl-safer.m4: Remove.
20192         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Use AC_LIBSOURCES and AC_LIBOBJ.
20193         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Likewise.
20194         Invoke gl_PREREQ_FD_SAFER.
20195         (gl_PREREQ_FD_SAFER): New macro.
20196         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): Check for siginterrupt.
20197         * m4/readutmp.m4 (gl_READUTMP): Require AC_C_INLINE.
20198         Use AC_CHECK_HEADERS_ONCE and AC_CHECK_FUNCS_ONCE when possible.
20199         Remove duplicate call to AC_LIBOBJ(readutmp).
20200         (gl_PREREQ_READUTMP): Remove.  All uses inlined.
20201
20202         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Check for message, not for
20203         MAP_ANON.  Problem reported by Moriyoshi Koizumi to bug-cvs.
20204
20205 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
20206
20207         * MODULES.html.sh (Misc): Add byteswap.
20208
20209 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
20210
20211         * modules/getcwd (Depends-on): Add extensions.
20212         * modules/openat (Depends-on): Likewise.
20213
20214 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
20215
20216         * modules/byteswap: New file.
20217
20218 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
20219
20220         * m4/byteswap.m4: New file.
20221
20222 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
20223
20224         * lib/byteswap_.h: New file.
20225
20226 2005-04-25  Karl Berry  <karl@gnu.org>
20227
20228         * m4/gettext.m4: Update from GNU gettext 0.14.4.
20229
20230 2005-04-25  Albert Chin  <china@thewrittenword.com>
20231
20232         * lib/regex.c: Include <stdio.h>, as a workaround to a Compaq Desktop
20233         Toolkit C bug.
20234
20235 2005-04-21  Oskar Liljeblad  <oskar@osk.mine.nu>
20236
20237         * gnulib-tool (Options): Add -s for --symlink/--symbolic.
20238         (func_ln_if_changed) Remove forcibly for no error message
20239         in case file does not exist.
20240
20241 2005-04-19  Simon Josefsson  <jas@extundo.com>
20242
20243         * gnulib-tool (Options): Make --symlink mean --symbolic.
20244
20245 2005-04-18  Oskar Liljeblad  <oskar@osk.mine.nu>
20246
20247         * doc/gnulib.texi (Initial import): Fix.  Mention --aux-dir.
20248
20249 2005-04-16  Simon Josefsson  <jas@extundo.com>
20250
20251         * modules/getpass-gnu (Makefile.am): Don't mention getpass.h.
20252
20253 2005-04-15  Simon Josefsson  <jas@extundo.com>
20254
20255         * m4/getpass.m4 (gl_FUNC_GETPASS): Use AC_LIBSOURCES.
20256
20257 2005-04-15  Simon Josefsson  <jas@extundo.com>
20258
20259         * gnulib-tool: Rename --symlink to --symbolic.
20260
20261 2005-04-15  Oskar Liljeblad  <oskar@osk.mine.nu>
20262
20263         * gnulib-tool: Add -s, --symlink option to gnulib-tool to make
20264         symbolic links to files instead of copying/moving.  Add --aux-dir,
20265         specifying directory relative --dir where auxiliary build tools
20266         are placed.
20267
20268 2005-04-14  Bruno Haible  <bruno@clisp.org>
20269
20270         * modules/allocsa (License): Change to LGPL.
20271         Requested by Yoann Vandoorselaere <yoann@prelude-ids.org>.
20272
20273 2005-04-13  Paul Eggert  <eggert@cs.ucla.edu>
20274
20275         * lib/getdate.y (zone): Allow relunit_snumber after tZONE, so
20276         that "UTC +1 second" continues to work.  Problem reported
20277         by Dmitry V. Levin.
20278         (relunit_snumber): New rule.
20279         (relunit): Use it.
20280
20281 2005-04-12  Paul Eggert  <eggert@cs.ucla.edu>
20282
20283         * lib/getdate.y (universal_time_zone_table): New constant.
20284         (time_zone_table): Remove GMT, UT, UTC entries; they're now in
20285         universal_time_zone_table.
20286         (lookup_zone): Prefer universal_time_zone_table to
20287         local_time_zone_table, so that "GMT" time stamps are allowed in
20288         London during the summer.  Problem reported by Ian Abbott.
20289
20290 2005-04-12  Jim Meyering  <jim@meyering.net>
20291
20292         * lib/human.c (humblock): Set *options even when returning due to
20293         xstrtoumax conversion failure.  Thanks to a used-uninitialized
20294         warning from gcc-4.
20295
20296 2005-04-09  Jim Meyering  <jim@meyering.net>
20297
20298         * lib/posixtm.c (posixtime) [lint]: Avoid spurious warning from gcc-4's
20299         -Wuninitialized: initialize tm0.tm_year.
20300
20301 2005-04-04  Paul Eggert  <eggert@cs.ucla.edu>
20302
20303         * lib/getdate.y (parser_control): rels_seen is now a boolean, not a
20304         count, since there's no maximum.  All uses changed.
20305         Add member dsts_seen.
20306         (local_zone): Accumulate dsts_seen rather than relying on tm_isdst
20307         not being INT_MAX.
20308         (get_date): Initialize dsts_seen, and check that it doesn't go over 1.
20309         Use pc_rels_seen to decide whther a date is absolute.
20310
20311         * lib/getdate.y (number): Don't overwrite year.
20312         (get_date): Initialize pc.year.digits to 0, not 4, to enable above
20313         check.
20314
20315 2005-04-02  Simon Josefsson  <jas@extundo.com>
20316
20317         * lib/getaddrinfo.h: Fix OpenBSD compilation failure, inspired by tiny
20318         patch from Yoann Vandoorselaere <yoann@prelude-ids.org>.
20319
20320 2005-03-28  Eric Blake  <ebb9@byu.net>  (tiny change)
20321
20322         * m4/getcwd-path-max.m4: Return success on systems such as Cygwin
20323         where no absolute path name can be longer than PATH_MAX.
20324
20325 2005-03-27  Jim Meyering  <jim@meyering.net>
20326
20327         * lib/argmatch.c: Clarify comment: null-terminated -> NULL-terminated.
20328
20329 2005-03-26  Paul Eggert  <eggert@cs.ucla.edu>
20330
20331         * lib/intprops.h (INT_STRLEN_BOUND, INT_BUFSIZE_BOUND):
20332         "one's complement" -> "ones' complement" in comment, as per Knuth.
20333         "value of type" -> "type or expression" in comment.
20334         * lib/mktime.c, strftime.c: Propagate intprops.h comment nits.
20335
20336 2005-03-26  Jim Meyering  <jim@meyering.net>
20337
20338         Comment nits.
20339         * lib/intprops.h: Add the apostrophe in `(one|two)'s complement'.
20340         Correct typos: s/or/of/.
20341
20342 2005-03-26  Jim Meyering  <jim@meyering.net>
20343
20344         * modules/check-include-files: Move to ../ and rename to...
20345         * check-module: ...this.
20346
20347 2005-03-25  Jim Meyering  <jim@meyering.net>
20348
20349         * modules/xvasprintf (Files): Add xalloc.h.
20350
20351 2005-03-23  Paul Eggert  <eggert@cs.ucla.edu>
20352
20353         * modules/gettext (Files): config/config.rpath ->
20354         build-aux/config.rpath
20355         * modules/iconv (Files): Likewise.
20356         Problem reported by Oskar Liljeblad.
20357
20358 2005-03-23  Jim Meyering  <jim@meyering.net>
20359
20360         * modules/check-include-files: New script to check for
20361         missing dependencies, multiple includes, etc.
20362
20363         * modules/c-strtold (Depends-on): Add xalloc.
20364         * modules/c-strtod (Depends-on): Add xalloc.
20365         * modules/hash (Depends-on): Add xalloc.
20366         (Files): Remove lib/xalloc.h.
20367
20368         * modules/gethrxtime (Files): Add lib/gethrxtime.h.
20369         * modules/userspec (Files): Add lib/inttostr.h.
20370
20371 2005-03-23  Jim Meyering  <jim@meyering.net>
20372
20373         * lib/canonicalize.c: Remove duplicate `#include "stat-macros.h"'.
20374
20375 2005-03-22  Jim Meyering  <jim@meyering.net>
20376
20377         * modules/stat-macros: New module.
20378         * modules/canonicalize, modules/euidaccess, modules/file-type,
20379         * modules/filemode, modules/lchown, modules/makepath,
20380         * modules/rmdir, modules/stat: Depend on new stat-macros module
20381         rather than listing lib/stat-macros.h manually.
20382         Don't add stat-macros.h to lib_SOURCES or list it in Files: section.
20383
20384 2005-03-22  Jim Meyering  <jim@meyering.net>
20385
20386         * m4/stat-macros.m4 (gl_STAT_MACROS): New file/macro.
20387
20388 2005-03-22  Bruno Haible  <bruno@clisp.org>
20389
20390         * config/srclist.txt: Replace target directory 'config' with
20391         'build-aux'.
20392         * config/config.guess, config.sub, config.rpath, depcomp, install-sh:
20393         * config/mdate-sh, missing, mkinstalldirs, texinfo.tex: Move to
20394         ../build-aux/.
20395
20396 2005-03-21  Paul Eggert  <eggert@cs.ucla.edu>
20397
20398         * modules/chdir-long (Depends-on): Add mempcpy.
20399
20400         * modules/acl, modules/backupfile, modules/c-strtod,
20401         modules/c-strtold, modules/canon-host, modules/canonicalize,
20402         modules/cloexec, modules/closeout, modules/dirfd, modules/dirname,
20403         modules/exclude, modules/exitfail, modules/file-type,
20404         modules/filemode, modules/fpending, modules/fsusage, modules/getcwd,
20405         modules/getdate, modules/getline, modules/getpagesize,
20406         modules/getpass, modules/getugroups, modules/group-member,
20407         modules/hard-locale, modules/hash, modules/human, modules/idcache,
20408         modules/inttostr, modules/long-options, modules/makepath,
20409         modules/md5, modules/memcasecmp, modules/memcoll,
20410         modules/modechange, modules/mountlist, modules/path-concat,
20411         modules/pathmax, modules/physmem, modules/posixtm, modules/posixver,
20412         modules/quote, modules/quotearg, modules/readtokens, modules/readutmp,
20413         modules/safe-read, modules/safe-write, modules/same, modules/savedir,
20414         modules/settime, modules/sha1, modules/sig2str, modules/strdup,
20415         modules/strftime, modules/strndup, modules/strverscmp,
20416         modules/timespec, modules/unlocked-io, modules/userspec,
20417         modules/utimecmp, modules/utimens, modules/xalloc, modules/xstrtol,
20418         modules/yesno:
20419         Remove lib_SOURCES line from Makefile.am section, as this is now
20420         done automatically by the corresponding Autoconf macro.
20421
20422 2005-03-21  Jim Meyering  <jim@meyering.net>
20423
20424         Changes imported from coreutils.
20425
20426         * lib/cycle-check.c: Don't include xalloc.h.
20427
20428         * lib/path-concat.c: Don't include assert.h.
20429         (path_concat): Remove assertion that would have triggered
20430         for ABASE starting with more than one slash.
20431         Reported by Andreas Schwab.
20432
20433         * lib/path-concat.c (path_concat): Set *BASE_IN_RESULT
20434         properly when ABASE is an absolute file name.
20435         Correct the description of this function.
20436         Include <assert.h>.
20437         Add an assertion and a test driver.
20438         This fixes a bug introduced on 2004-07-02.
20439         Andreas Schwab reported the resulting failure of cp --parents:
20440         http://lists.gnu.org/archive/html/bug-coreutils/2005-01/msg00130.html
20441
20442 2005-03-21  Jim Meyering  <jim@meyering.net>
20443
20444         * m4/chdir-long.m4 (gl_PREREQ_CHDIR_LONG): Invoke gl_FUNC_MEMRCHR.
20445         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Check for memrchr decl.
20446
20447 2005-03-21  Jim Meyering  <jim@meyering.net>
20448         and  Paul Eggert  <eggert@cs.ucla.edu>
20449
20450         * m4/acl.m4, m4/backupfile.m4, m4/c-strtod.m4, m4/canon-host.m4,
20451         m4/canonicalize.m4, m4/cloexec.m4, m4/closeout.m4, m4/dirfd.m4,
20452         m4/dirname.m4, m4/exclude.m4, m4/exitfail.m4, m4/file-type.m4,
20453         m4/filemode.m4, m4/fpending.m4, m4/fsusage.m4, m4/getcwd.m4,
20454         m4/getdate.m4, m4/getline.m4, m4/getpagesize.m4, m4/getpass.m4,
20455         m4/getugroups.m4, m4/group-member.m4, m4/hard-locale.m4, m4/hash.m4,
20456         m4/human.m4, m4/idcache.m4, m4/inttostr.m4, m4/long-options.m4,
20457         m4/makepath.m4, m4/md5.m4, m4/memcasecmp.m4, m4/memcoll.m4,
20458         m4/modechange.m4, m4/mountlist.m4, m4/nanosleep.m4, m4/path-concat.m4,
20459         m4/pathmax.m4, m4/physmem.m4, m4/posixtm.m4, m4/posixver.m4,
20460         m4/quote.m4, m4/quotearg.m4, m4/readtokens.m4, m4/readutmp.m4,
20461         m4/safe-read.m4, m4/safe-write.m4, m4/same.m4, m4/savedir.m4,
20462         m4/settime.m4, m4/sha1.m4, m4/sig2str.m4, m4/strdup.m4, m4/strftime.m4,
20463         m4/strndup.m4, m4/strverscmp.m4, m4/timespec.m4, m4/unlocked-io.m4,
20464         m4/userspec.m4, m4/utimecmp.m4, m4/utimens.m4, m4/xalloc.m4,
20465         m4/xnanosleep.m4, m4/xstrtol.m4, m4/yesno.m4:
20466         Use AC_LIBSOURCES and AC_LIBOBJ to indicate source and object files
20467         for these modules.
20468
20469 2005-03-18  Paul Eggert  <eggert@cs.ucla.edu>
20470
20471         * lib/strftime.c (my_strftime): If the underlying strftime returns 0
20472         (which shouldn't happen), generate nothing instead of returning 0
20473         immediately, so that nstrftime (NULL, ...) doesn't return 0.
20474
20475 2005-03-16  Bruno Haible  <bruno@clisp.org>
20476
20477         * modules/stdint (Makefile.am): Use HAVE_LONG_LONG_64BIT instead of
20478         HAVE_LONGLONG_64BIT.
20479
20480 2005-03-16  Bruno Haible  <bruno@clisp.org>
20481
20482         * m4/stdint.m4 (gl_STDINT_H): Define HAVE_LONG_LONG_64BIT instead of
20483         HAVE_LONGLONG_64BIT.
20484
20485 2005-03-16  Bruno Haible  <bruno@clisp.org>
20486
20487         * lib/stdint_.h: Use HAVE_LONG_LONG_64BIT instead of
20488         HAVE_LONGLONG_64BIT.
20489
20490 2005-03-15  Paul Eggert  <eggert@cs.ucla.edu>
20491
20492         * lib/strftime.c (my_strftime): Prepend space to format so that we can
20493         reliably distinguish strftime failure from empty output on POSIX
20494         hosts.
20495
20496 2005-03-15  Paul Eggert  <eggert@cs.ucla.edu>
20497
20498         * lib/iconvme.c (SIZE_MAX): New macro, if not already defined.
20499         (iconv_string): Don't guess a size-zero buffer, as that might cause
20500         buffer overrun.  Instead, avoid multiplying by MB_LEN_MAX if the
20501         result would be 'too large', where 'too large' is (heuristically)
20502         the square root of SIZE_MAX, divided by MB_LEN_MAX to allay
20503         overflow concerns.  This will prevent some unwanted malloc failures
20504         when the inputs are very large.
20505
20506 2005-03-15  Karl Berry  <karl@gnu.org>
20507
20508         * config/srclist.txt (config.rpath): from gettext.
20509         * config/config.rpath: update.
20510
20511 2005-03-15  Bruno Haible  <bruno@clisp.org>
20512
20513         * lib/regex.c (byte_re_match_2_internal): Rename local variable 'not'
20514         to 'negate'.
20515
20516         * lib/regex.c (byte_re_match_2_internal): Reduce scope of same_str_p
20517         variable.
20518
20519         * lib/regex.c (EXTEND_BUFFER, regcomp): Cast the realloc/malloc
20520         results.
20521
20522 2005-03-14  Simon Josefsson  <jas@extundo.com>
20523
20524         * lib/timegm.h: Use proper prototype CPP guards, reported by Dave Love
20525         <fx@gnu.org>.
20526
20527 2005-03-14  Paul Eggert  <eggert@cs.ucla.edu>
20528
20529         * lib/mktime.c (TYPE_TWOS_COMPLEMENT, TYPE_ONES_COMPLEMENT,
20530         TYPE_SIGNED_MAGNITUDE, TYPE_MINIMUM, TYPE_MAXIMUM): Sync from
20531         intprops.h.
20532         * lib/strtol.c: Likewise.
20533
20534 2005-03-14  Jim Meyering  <jim@meyering.net>
20535
20536         * lib/strftime.c (my_strftime) [HAVE_STRFTIME && ! (_NL_CURRENT
20537         && HAVE_STRUCT_ERA_ENTRY)]: Initialize the first byte of ubuf[]
20538         to be nonzero so that we (and caller) can detect the difference
20539         between a valid zero-length expansion and an error return, even
20540         when the underlying strftime fails before writing anything into
20541         that location.
20542
20543 2005-03-14  Bruno Haible  <bruno@clisp.org>
20544
20545         * m4/lib-link.m4, gettext.m4, nls.m4, po.m4:
20546         Update from GNU gettext 0.14.3.
20547
20548 2005-03-10  Jim Meyering  <jim@meyering.net>
20549
20550         * m4/save-cwd.m4 (gl_SAVE_CWD): Check for fchdir.
20551
20552 2005-03-10  Jim Meyering  <jim@meyering.net>
20553
20554         * lib/save-cwd.c [!HAVE_FCHDIR]: Define open, fchdir, and chdir_long
20555         so that this module works on systems without fchdir.
20556
20557 2005-03-09  Paul Eggert  <eggert@cs.ucla.edu>
20558
20559         Factor int-properties macros into a single file, except for
20560         glibc-related files.
20561         * lib/intprops.h: New file.
20562         * lib/getloadavg.c: Include it instead of limits.h.
20563         (INT_STRLEN_BOUND): Remove.
20564         * lib/human.c: Include intprops.h.
20565         (group_number): Use INT_STRLEN_BOUND instead of rolling it ourself.
20566         * lib/human.h (LONGEST_HUMAN_READABLE): Use 146/485 rather than
20567         302/1000.
20568         * lib/inttostr.h: Include intprops.h instead of limits.h.
20569         (INT_STRLEN_BOUND, INT_BUFSIZE_BOUND): Remove.
20570         * lib/mktime.c (TYPE_IS_INTEGER, TYPE_TWOS_COMPLEMENT): New macros,
20571         for consistency with intprops.h.
20572         (time_t_is_integer, twos_complement_arithmetic): Use them.
20573         * lib/sig2str.h: Include <signal.h>, intprops.h.
20574         (INT_STRLEN_BOUND): Remove.
20575         * lib/strftime.c (TYPE_SIGNED): Remove.
20576         (INT_STRLEN_BOUND): Switch to same implementation as intprops.h.
20577         * lib/strtol.c: Adjust comments to match intprops.h.
20578         * lib/userspec.c: Include intprops.h.
20579         (TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Remove.
20580         * lib/utimecmp.c, xnanosleep.c, xstrtol.c: Likewise.
20581         * lib/utimecmp.c (utimecmp): Use TYPE_IS_INTEGER, TYPE_TWOS_COMPLEMENT
20582         instead of rolling our own expressions.
20583         * lib/xstrtol.c: Include xstrtol.h first, to test interface.
20584
20585         * lib/strftime.c: Include <stdbool.h>.  Use bool where appropriate,
20586         instead of int.
20587         (my_strftime): Do not mishandle years close to INT_MAX, by doing
20588         the right thing even if adding 1900 would overflow.  Similarly
20589         for tm_mon + 1 and tm_yday + 1.
20590         Make %Y always equivalent to %C%y, and similarly for %G and %g.
20591         (DO_NUMBER, DO_NUMBER_SPACEPAD): Set digits to d, not a conditional.
20592         (DO_SIGNED_NUMBER): New macro.
20593         (my_strftime) [HAVE_TZNAME]: Don't dump core if tp->tm_dst > 1.
20594
20595 2005-03-07  Bruno Haible  <bruno@clisp.org>
20596
20597         * m4/mmap-anon.m4 (MAP_FILE, MAP_FAILED): Remove definitions.
20598
20599 2005-03-07  Bruno Haible  <bruno@clisp.org>
20600
20601         * lib/pagealign_alloc.c (MAP_FILE, MAP_FAILED): Define fallbacks.
20602
20603 2005-03-04  Derek R. Price  <derek@ximbiot.com>
20604
20605         * gnulib-tool (func_cp_if_changed, func_mv_if_changed): New functions.
20606         (func_import): Only replace files via --import when they have actually
20607         changed.
20608
20609 2005-03-03  Derek R. Price  <derek@ximbiot.com>
20610
20611         * m4/mmap-anon.m4: New file.
20612         * m4/pagealign_alloc.m4: New file.
20613
20614 2005-03-03  Derek R. Price  <derek@ximbiot.com>
20615             Bruno Haible  <bruno@clisp.org>
20616
20617         * modules/pagealign_alloc: New file.
20618         * MODULES.html.sh (Memory management functions): Add pagealign_alloc.
20619
20620 2005-03-03  Derek R. Price  <derek@ximbiot.com>
20621             Bruno Haible  <bruno@clisp.org>
20622
20623         * lib/pagealign_alloc.h: New file.
20624         * lib/pagealign_alloc.c: New file.
20625
20626 2005-03-03  Bruno Haible  <bruno@clisp.org>
20627
20628         * m4/inttypes.m4, isc-posix.m4, once-only.m4:
20629         Use an all-permissive copyright notice, recommended by RMS.
20630
20631 2005-03-02  Bruno Haible  <bruno@clisp.org>
20632
20633         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Undo the replacement here. Because
20634         of AIX, the replacement has to be done only after <string.h> is
20635         included, therefore not in config.h. stpncpy.h does the replacement,
20636         and stpncpy.c uses it.
20637
20638 2005-03-02  Bruno Haible  <bruno@clisp.org>
20639
20640         * lib/stpncpy.h (stpncpy): Define as a macro without arguments, so that
20641         stpncpy.c uses it.
20642
20643 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
20644
20645         Remove workaround for bug in Linux kernel 2.6.8 or thereabouts.
20646         The workaround isn't strictly needed for POSIX conformance, and
20647         it's too much of a pain to configure and maintain.  We'll ask
20648         people to fix their kernels instead.
20649         * lib/xnanosleep.c: Don't include gethrxtime.h or xtime.h.
20650         (NANOSLEEP_BUG_WORKAROUND): Remove.
20651         (xnanosleep): Remove the workaround.
20652
20653 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
20654
20655         * modules/gettime (Makefile.am): Remove lib_SOURCES line.
20656         Reported by Derek Price.
20657         (Include): Add "timespec.h".
20658
20659         * modules/xnanosleep (Depends-on): Remove gethrxtime.
20660
20661 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
20662
20663         * m4/xnanosleep.m4 (gl_XNANOSLEEP): Remove configuration attempting
20664         to detect nanosleep bug.
20665
20666 2005-03-01  Bruno Haible  <bruno@clisp.org>
20667
20668         * lib/vasnprintf.c (EOVERFLOW): Define to a fallback if needed.
20669
20670 2005-02-26  Paul Eggert  <eggert@cs.ucla.edu>
20671
20672         * modules/gethrxtime: New file.
20673         * modules/xnanosleep (Files): Add m4/xnanosleep.m4.
20674         (Depends-on): Add gethrxtime.
20675         (configure.ac): Add gl_XNANOSLEEP.
20676         (Makefile.am): Remove lib_SOURCES line.
20677
20678 2005-02-25  Paul Eggert  <eggert@cs.ucla.edu>
20679
20680         * m4/gethrxtime.m4, m4/xnanosleep.m4: New files.
20681         * m4/gettime.m4 (gl_GETTIME): Check for nanotime.
20682
20683 2005-02-25  Paul Eggert  <eggert@cs.ucla.edu>
20684
20685         * lib/gethrxtime.h, lib/gethrxtime.c, lib/xtime.h: New files.
20686         * lib/timespec.h (gettime): Return void, since it always
20687         succeeds now.  All uses changed.
20688         * lib/gettime.c (gettime) Likewise.
20689         [HAVE_NANOTIME]: Prefer nanotime.
20690         Assume gettimeofday succeeds, as POSIX requires.
20691         Assime time () succeeds, since other code already does.
20692         * lib/xnanosleep.c: Include xtime.h and gethrxtime.h, not xalloc.h.
20693         (timespec_subtract): Remove.
20694         (NANOSLEEP_BUG_WORKAROUND): New constant.
20695         (xnanosleep): Use gethrxtime rather than gettime; this simplifies
20696         things considerably.  Use it only on GNU/Linux hosts, since the
20697         workaround shouldn't be needed elsewhere.
20698
20699 2005-02-24  Bruno Haible  <bruno@clisp.org>
20700
20701         * modules/gettext (Files): Add m4/glibc2.m4.
20702
20703 2005-02-24  Bruno Haible  <bruno@clisp.org>
20704
20705         * m4/gettext.m4, intdiv0.m4, intmax.m4, inttypes-pri.m4, lcmessage.m4:
20706         * m4/lib-link.m4, lib-prefix.m4, nls.m4, po.m4, printf-posix.m4:
20707         * m4/progtest.m4:
20708         Update from GNU gettext 0.14.2.
20709         * m4/glibc2.m4: New file, from GNU gettext 0.14.2.
20710
20711 2005-02-24  Bruno Haible  <bruno@clisp.org>
20712
20713         * lib/localcharset.c: Update from GNU gettext 0.14.2.
20714         * lib/config.charset: Update from GNU gettext 0.14.2.
20715
20716 2005-02-24  Bruno Haible  <bruno@clisp.org>
20717
20718         * lib/gettext.h: Update from GNU gettext 0.14.2.
20719
20720 2005-02-23  Simon Josefsson  <jas@extundo.com>
20721
20722         * m4/iconvme.m4: New file.
20723
20724 2005-02-23  Jim Meyering  <jim@meyering.net>
20725
20726         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Revert yesteday's
20727         change.
20728         Thanks to Bruno Haible for catching it.
20729
20730 2005-02-22  Simon Josefsson  <jas@extundo.com>
20731
20732         * modules/iconvme: New file.
20733
20734         * MODULES.html.sh: Add iconvme.
20735
20736 2005-02-22  Simon Josefsson  <jas@extundo.com>
20737
20738         * lib/iconvme.h, lib/iconvme.c: New files, from libc.
20739
20740 2005-02-22  Simon Josefsson  <jas@extundo.com>
20741
20742         * config/srclist.txt: Sync iconvme.h, iconvme.c from libc.
20743
20744 2005-02-22  Jim Meyering  <jim@meyering.net>
20745
20746         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Fix typo:
20747         s/ifndef/ifdef/.
20748
20749 2005-02-20  Neil Conway  <neilc@samurai.com>
20750
20751         * lib/xgethostname.c (xgethostname): Check for ENOMEM, which is
20752         returned by OSX/Darwin if the specified buffer is not large
20753         enough for the hostname.
20754
20755 2005-02-03  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
20756
20757         * lib/argp-help.c (__argp_help): Create a fake struct argp_state and
20758         pass it to _help, otherwise the latter coredumps trying to
20759         dereference state.root_argp.
20760
20761 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
20762
20763         * modules/chdir-long (Depends-on): Add memrchr.
20764         * modules/memrchr (Files): Add lib/memrchr.h.
20765         (Include): "memrchr.h".
20766
20767 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
20768
20769         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Add AC_LIBSOURCES, for memrchr.h.
20770
20771 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
20772
20773         * lib/memrchr.h: New file.
20774         * lib/chdir-long.c: Include it.
20775         * lib/memrchr.c [!defined _LIBC]: Include it rather than <string.h>
20776         Don't bother including stddef.h.
20777
20778 2005-02-01  Paul Eggert  <eggert@cs.ucla.edu>
20779
20780         * lib/mountlist.h (MOUNTLIST_H_): New macro, to protect against double
20781         inclusion.
20782         Include <sys/types.h>, for dev_t.
20783         (ME_DUMMY, ME_REMOTE): Move from here....
20784         * lib/mountlist.c (ME_DUMMY, ME_REMOTE): To here.
20785         (ME_DUMMY): Count "subfs" as a dummy.  Problem reported by
20786         Dmitry V. Levin.
20787         Include mountlist.h first, to test the interface.
20788
20789 2005-01-29  Bruno Haible  <bruno@clisp.org>
20790
20791         * lib/progname.c (program_name): Initialize.
20792         Needed when linking statically on MacOS X.
20793
20794 2005-01-28  Paul Eggert  <eggert@cs.ucla.edu>
20795
20796         Sync from coreutils.
20797         * modules/getloadavg (Files): Remove m4/getloadavg.m4.
20798         (Depends-on): Add c-strtod.
20799         (configure.ac): Replace gl_FUNC_GETLOADAVG with AC_FUNC_GETLOADAVG.
20800
20801 2005-01-28  Paul Eggert  <eggert@cs.ucla.edu>
20802
20803         Sync from coreutils.
20804         * m4/getloadavg.m4, glibc.m4, search-libs.m4: Remove.
20805
20806         Remove files that are specific to coreutils.
20807         * m4/check-decl.m4, jm-macros.m4, lib-check.m4, prereq.m4: Remove.
20808
20809 2005-01-28  Bruno Haible  <bruno@clisp.org>
20810
20811         * modules/javacomp: New file.
20812         * MODULES.html.sh (Java): Add javacomp.
20813
20814 2005-01-28  Bruno Haible  <bruno@clisp.org>
20815
20816         * m4/javacomp.m4: New file, from GNU gettext.
20817
20818 2005-01-28  Bruno Haible  <bruno@clisp.org>
20819
20820         * lib/javacomp.sh.in: New file, from GNU gettext.
20821         * lib/javacomp.h: New file, from GNU gettext.
20822         * lib/javacomp.c: New file, from GNU gettext.
20823
20824 2005-01-26  Simon Josefsson  <jas@extundo.com>
20825
20826         * lib/gai_strerror.c: Use GPL in header.
20827
20828 2005-01-26  Bruno Haible  <bruno@clisp.org>
20829
20830         * modules/javaexec: New file.
20831         * MODULES.html.sh (Java): Add javaexec.
20832
20833 2005-01-26  Bruno Haible  <bruno@clisp.org>
20834
20835         * m4/javaexec.m4: New file, from GNU gettext.
20836
20837 2005-01-26  Bruno Haible  <bruno@clisp.org>
20838
20839         * lib/javaexec.sh.in: New file, from GNU gettext.
20840         * lib/javaexec.h: New file, from GNU gettext.
20841         * lib/javaexec.c: New file, from GNU gettext.
20842
20843 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
20844
20845         * modules/lchown (Depends-on): Remove lchown.h
20846
20847 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
20848
20849         * m4/sysexits.m4 (gl_SYSEXITS): Reverted logic. SYSEXITS_H
20850         must be defined if the header file was not found, in order
20851         to provide a replacement. Reported by Todd Vierling <tv@duh.org>
20852
20853 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
20854
20855         * lib/argp-help.c (hol_entry_help): Avoid using non-constant
20856         initializers for struct pentry_state.
20857         (__argp_error): Check return value of __asprintf
20858         (__argp_failure): Translate error message
20859
20860         * lib/argp-parse.c: Removed braces around the expansion of N_()
20861
20862 2005-01-23  Paul Eggert  <eggert@cs.ucla.edu>
20863
20864         * m4/acl.m4, afs.m4, alloca.m4, argp.m4, assert.m4, atexit.m4,
20865         backupfile.m4, base64.m4, bison.m4, c-bs-a.m4, c-stack.m4,
20866         c-strtod.m4, calloc.m4, canon-host.m4, canonicalize.m4,
20867         clock_time.m4, cloexec.m4, closeout.m4, d-ino.m4, d-type.m4,
20868         dirfd.m4, dirname.m4, dos.m4, dup2.m4, error.m4, euidaccess.m4,
20869         exclude.m4, exitfail.m4, extensions.m4, fcntl-safer.m4,
20870         file-type.m4, fileblocks.m4, filemode.m4, fnmatch.m4, fpending.m4,
20871         free.m4, fstypename.m4, fsusage.m4, ftruncate.m4, getaddrinfo.m4,
20872         getcwd-path-max.m4, getcwd.m4, getdate.m4, getdomainname.m4,
20873         getgroups.m4, gethostname.m4, getline.m4, getndelim2.m4,
20874         getnline.m4, getopt.m4, getpagesize.m4, getpass.m4, getsubopt.m4,
20875         gettime.m4, gettimeofday.m4, getugroups.m4, getusershell.m4,
20876         group-member.m4, hard-locale.m4, hash.m4, host-os.m4, human.m4,
20877         idcache.m4, inttostr.m4, isdir.m4, jm-winsz1.m4, jm-winsz2.m4,
20878         link-follow.m4, long-options.m4, ls-mntd-fs.m4, lstat.m4,
20879         makepath.m4, mathl.m4, md5.m4, memcasecmp.m4, memchr.m4,
20880         memcmp.m4, memcoll.m4, memcpy.m4, memmem.m4, memmove.m4,
20881         memrchr.m4, memset.m4, mkdir-slash.m4, mkstemp.m4, mktime.m4,
20882         modechange.m4, mountlist.m4, nanosleep.m4, obstack.m4,
20883         path-concat.m4, pathmax.m4, perl.m4, physmem.m4, poll.m4,
20884         posixtm.m4, posixver.m4, putenv.m4, quote.m4, quotearg.m4,
20885         readdir.m4, readtokens.m4, readutmp.m4, regex.m4, rename.m4,
20886         restrict.m4, rmdir-errno.m4, rmdir.m4, rpmatch.m4, same.m4,
20887         savedir.m4, settime.m4, sha1.m4, sig2str.m4, snprintf.m4,
20888         sockpfaf.m4, st_dm_mode.m4, st_mtim.m4, stat.m4, stdint.m4,
20889         stdio-safer.m4, strchrnul.m4, strdup.m4, strerror.m4,
20890         strerror_r.m4, strftime.m4, strndup.m4, strnlen.m4, strsep.m4,
20891         strtod.m4, strtoimax.m4, strtok_r.m4, strtol.m4, strtoll.m4,
20892         strtoul.m4, strtoull.m4, strtoumax.m4, strverscmp.m4, sysexits.m4,
20893         time_r.m4, timegm.m4, timespec.m4, tm_gmtoff.m4, tzset.m4,
20894         uint32_t.m4, uintptr_t.m4, unistd-safer.m4, unlink-busy.m4,
20895         unlocked-io.m4, uptime.m4, userspec.m4, utimbuf.m4, utime.m4,
20896         utimecmp.m4, utimens.m4, utimes-null.m4, vsnprintf.m4, xalloc.m4,
20897         xgetcwd.m4, xreadlink.m4, xstrndup.m4, xstrtod.m4, xstrtoimax.m4,
20898         xstrtol.m4, xstrtoumax.m4, yesno.m4:
20899         Use an all-permissive copyright notice, recommended by RMS.
20900
20901 2005-01-21  Paul Eggert  <eggert@cs.ucla.edu>
20902
20903         * modules/chdir-long (Depends-on): Remove mempcpy.
20904
20905 2005-01-21  Jim Meyering  <jim@meyering.net>
20906
20907         * lib/openat.h (AT_SYMLINK_NOFOLLOW): Define to 4096, so it's the
20908         same value as for Solaris 9.
20909
20910         * lib/chdir-long.c (chdir_long): Rewrite to remove limitation on
20911         component length.  This included changing the parameter to be
20912         of type `char *' rather than `char const *'.
20913         * lib/chdir-long.h (chdir_long): Update prototype.
20914
20915         * lib/openat.c (fdopendir, fstatat): New functions.
20916         * lib/openat.h: Include headers required for use of DIR and struct
20917         stat.
20918         [AT_SYMLINK_NOFOLLOW]: Define.
20919         (fdopendir, fstatat): Add prototypes.
20920
20921 2005-01-21  Bruno Haible  <bruno@clisp.org>
20922
20923         * modules/classpath: New file.
20924         * MODULES.html.sh (Java): Add classpath.
20925
20926 2005-01-21  Bruno Haible  <bruno@clisp.org>
20927
20928         * lib/classpath.h: New file, from GNU gettext.
20929         * lib/classpath.c: New file, from GNU gettext.
20930
20931 2005-01-20  Simon Josefsson  <jas@extundo.com>
20932
20933         * modules/version-etc-fsf: New file.
20934
20935 2005-01-20  Simon Josefsson  <jas@extundo.com>
20936
20937         * lib/version-etc-fsf.c: New file, with version_etc_copyright.
20938         * lib/version-etc.c: Remove version_etc_copyright.
20939         * lib/version-etc.h (version_etc_copyright): Use [] instead of * in
20940         prototype, suggested by Paul Eggert <eggert@CS.UCLA.EDU>.
20941
20942 2005-01-20  Simon Josefsson  <jas@extundo.com>
20943
20944         * lib/base64.h (isbase64): Add.
20945
20946         * lib/base64.c (isb64): Rename to isbase64, use to_uchar instead of
20947         using a unsigned prototype, don't inline.
20948         (base64_decode): Use it.
20949
20950 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
20951
20952         * m4/save-cwd.m4 (gl_SAVE_CWD): Remove check for fcntl; we now assume
20953         it.
20954
20955 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
20956
20957         * lib/save-cwd.c (save_cwd): Remove code to support the case
20958         where fchdir is missing or flaky.
20959
20960 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
20961
20962         * MODULES.html.sh (Command-line arguments): Add version-etc-fsf.
20963
20964 2005-01-19  Paul Eggert  <eggert@cs.ucla.edu>
20965
20966         * modules/mempcpy (Makefile.am): Remove mention of mempcpy.h;
20967         AC_LIBSOURCES now does this.
20968         * MODULES.html.sh (Sizes of integer types <limits.h>): New element,
20969         with new ullong_max module.
20970
20971 2005-01-19  Bruno Haible  <bruno@clisp.org>
20972
20973         * modules/sh-quote: New file.
20974         * MODULES.html.sh (Executing programs): Add sh-quote.
20975
20976 2005-01-19  Bruno Haible  <bruno@clisp.org>
20977
20978         * lib/sh-quote.h: New file, from GNU gettext.
20979         * lib/sh-quote.c: New file, from GNU gettext.
20980
20981 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
20982
20983         Merge from coreutils.
20984         * m4/ullong_max.m4: New file.
20985         * m4/jm-macros.m4 (gl_MACROS): Require gl_ULLONG_MAX.
20986         (gl_MACROS): Assume localeconv exists.
20987
20988 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
20989
20990         Merge changes from coreutils, as described below in several
20991         changelogs dated today.
20992
20993         * lib/save-cwd.c: Include "save-cwd.h" before other include files.
20994         (O_DIRECTORY): Remove; not needed here, since "." must be
20995         a directory.  All uses removed.
20996         (save_cwd): Use __sgi || __sun, not sun || __sun.  __sun is
20997         universal on Suns, and we also need to test for IRIX.
20998         Revamp code to use 'if' rather than '#if'.
20999         Avoid unnecessary comparison of cwd->desc to 0.
21000
21001         * lib/utimens.c (futimens): Robustify the previous patch, by checking
21002         for known valid error numbers rather than observed invalid ones.
21003
21004 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
21005
21006         * modules/ullong_max: New file.
21007
21008         * modules/chdir-long, modules/openat: New files.
21009         * modules/save-cwd (Depends-on): Depend on chdir-long.
21010         (Makefile.am): Remove lib_SOURCES; now handled by AC_LIBSOURCES.
21011
21012 2005-01-18  Jim Meyering  <jim@meyering.net>
21013
21014         Merge from coreutils.
21015         * m4/chdir-long.m4, m4/openat.m4: New files.
21016         * m4/save-cwd.m4 (gl_SAVE_CWD): Add AC_LIBSOURCES for save-cwd.c,
21017         save-cwd.h.  Add AC_LIBOBJ for save-cwd.
21018         * m4/chown.m4 (gl_FUNC_CHOWN): When cross-compiling, assume that chown
21019         is sane and DOES follow symlinks.  Besides, testing 20 different
21020         systems found no broken chown implementations.
21021         Prompted by a change in rsync's copy of this macro.
21022         * m4/jm-macros.m4 (gl_MACROS): Require gl_FUNC_CHDIR_LONG.
21023
21024         * m4/lchown.m4 (gl_FUNC_LCHOWN): Use AC_LIBSOURCES.
21025
21026         * m4/utimes.m4: Work around tests/touch/empty-file failure on a system
21027         (sparc64, Linux-2.4.28, glibc-2.3.3) that didn't honor utimes'
21028         NULL-means-set-to-current-time semantics.
21029         Remove temporary file immediately, rather than waiting
21030         for configure's at-exit trap code to do it.
21031
21032 2005-01-18  Jim Meyering  <jim@meyering.net>
21033
21034         * lib/version-etc.c (version_etc_copyright): Update copyright date.
21035
21036         * lib/utimens.c (futimens): Account for the fact that futimes
21037         can also fail with errno == ENOSYS or errno == ENOENT.
21038         Patch from Dmitry V. Levin.
21039
21040         Change the name of the robust chdir function from chdir to chdir_long.
21041         * lib/save-cwd.c: Include chdir-long.h rather than chdir.h.
21042         (restore_cwd): Use chdir_long, not chdir.
21043         * lib/chdir-long.c: Renamed from chdir.c.
21044         * lib/chdir-long.h: Renamed from chdir.h.
21045         [!defined PATH_MAX]: Define chdir_long to chdir on systems like the
21046         Hurd.
21047
21048 2005-01-18  Bruno Haible  <bruno@clisp.org>
21049
21050         * m4/allocsa.m4, m4/codeset.m4, m4/copy-file.m4, m4/eaccess.m4:
21051         * m4/eealloc.m4, m4/eoverflow.m4, m4/execute.m4, m4/fatal-signal.m4:
21052         * m4/findprog.m4, m4/glibc21.m4, m4/iconv.m4, m4/intmax_t.m4:
21053         * m4/inttypes_h.m4, m4/lib-ld.m4, m4/lib-link.m4, m4/lib-prefix.m4:
21054         * m4/linebreak.m4, m4/localcharset.m4, m4/longdouble.m4:
21055         * m4/longlong.m4, m4/mbrtowc.m4, m4/mbstate_t.m4, m4/mbswidth.m4:
21056         * m4/mkdtemp.m4, m4/pipe.m4, m4/readlink.m4, m4/safe-read.m4:
21057         * m4/safe-write.m4, m4/setenv.m4, m4/sig_atomic_t.m4:
21058         * m4/signalblocking.m4, m4/signed.m4, m4/size_max.m4, m4/ssize_t.m4:
21059         * m4/stdbool.m4, m4/stdint_h.m4, m4/stpcpy.m4, m4/stpncpy.m4:
21060         * m4/strcase.m4, m4/strcspn.m4, m4/strpbrk.m4, m4/strstr.m4:
21061         * m4/ucs4-utf.m4, m4/uintmax_t.m4, m4/ulonglong.m4, m4/unicodeio.m4:
21062         * m4/utf-ucs4.m4, m4/vasnprintf.m4, m4/vasprintf.m4:
21063         * m4/wait-process.m4, m4/wchar_t.m4, m4/wint_t.m4, m4/xsize.m4:
21064         Use an all-permissive copyright notice, recommended by RMS.
21065
21066 2005-01-18  Bob Proulx  <bob@proulx.com>
21067
21068         * lib/obstack.c [DEFAULT_ALIGNMENT]: Use an intermediate type to
21069         simplify offsetof() macro construct to avoid compile failure with
21070         native HP-UX 11.0 ANSI C compiler.
21071
21072 2005-01-17  Bruno Haible  <bruno@clisp.org>
21073
21074         * lib/stpncpy.c: Remove HAVE_STPNCPY and gnu_stpncpy renaming,
21075         redundant because stpncpy.m4 takes care of it.
21076
21077 2005-01-17  Bruno Haible  <bruno@clisp.org>
21078
21079         * lib/progreloc.c: Include xalloc.h instead of xmalloc.h.
21080
21081 2005-01-17  Bruno Haible  <bruno@clisp.org>
21082
21083         * lib/progreloc.c (xstrdup): Define as strdup if no xmalloc should be
21084         used.
21085
21086 2005-01-17  Bruno Haible  <bruno@clisp.org>
21087
21088         * lib/fwriteerror.h (fwriteerror): Change specification to include
21089         fclose.
21090         * lib/fwriteerror.c: Include <stdbool.h>.
21091         (fwriteerror): At the end, close the file stream. Record whether
21092         stdout was already closed.
21093
21094 2005-01-17  Bruno Haible  <bruno@clisp.org>
21095
21096         * lib/execute.c (environ): Declare if needed.
21097         * lib/pipe.c (environ): Likewise.
21098         Reported by Michael Schloh von Bennewitz <michael.schloh@cw.com>.
21099
21100 2005-01-11  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
21101
21102         * modules/argp: Depend on vsnprintf
21103
21104 2005-01-10  Jim Meyering  <jim@meyering.net>
21105
21106         * modules/closeout (Depends-on): Add atexit.
21107
21108 2005-01-06  Bruno Haible  <bruno@clisp.org>
21109
21110         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Rename stpncpy to gnu_stpncpy here.
21111
21112 2005-01-04  Paul Eggert  <eggert@cs.ucla.edu>
21113
21114         * lib/human.c (SIZE_MAX, UINTMAX_MAX): Move these conditional
21115         definitions to be after all include files, to avoid collisions.
21116         Problem reported by Bob Proulx.
21117
21118 2005-01-04  Jim Meyering  <jim@meyering.net>
21119
21120         Changes imported from coreutils.
21121         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Rather than using "conftestXXXXXX"
21122         as the mkstemp template, use a temporary directory and an
21123         8.3-friendly template to avoid trouble on systems like DJGPP.
21124         Reported by Juan M. Guerrero via Stepan Kasal.
21125         * m4/(gl_FUNC_MKSTEMP): Include <unistd.h> for the declaration of
21126         close. Remove the temporary directory right away, rather than waiting
21127         for configure's at-exit trap code to do it.
21128         Suggestion from Stepan Kasal.
21129
21130 2005-01-01  Simon Josefsson  <jas@extundo.com>
21131
21132         * gnulib-tool: Print #include directives when --import'ing.
21133
21134 2004-12-28  Simon Josefsson  <jas@extundo.com>
21135
21136         * tests/test-base64.c: Include required header files.  Remove
21137         unused variables.
21138
21139 2004-12-28  Paul Eggert  <eggert@cs.ucla.edu>
21140
21141         * modules/error (Depends-on): Remove gettext.
21142
21143 2004-12-28  Paul Eggert  <eggert@cs.ucla.edu>
21144
21145         * lib/error.c [!_LIBC && !ENABLE_NLS]: Do not include "gettext.h";
21146         not needed.  This removes a dependency on the gettext module.
21147         [defined _LIBC]: Do not include <libintl.h>; not needed.
21148
21149 2004-12-24  Paul Eggert  <eggert@cs.ucla.edu>
21150
21151         * m4/c-strtod.m4 (gl_C99_STRTOLD): New macro.
21152         (gl_C_STRTOD): Use it instead of AC_CHECK_DECLS_ONCE(strtold).
21153
21154 2004-12-24  Paul Eggert  <eggert@cs.ucla.edu>
21155
21156         * lib/c-strtod.c (STRTOD): Depend on HAVE_C99_STRTOLD, not
21157         HAVE_DECL_STRTOLD.
21158
21159 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
21160
21161         * modules/getdate (Depends-on): Remove alloca-opt.
21162
21163 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
21164
21165         * m4/getdate.m4 (gl_GETDATE): Remove AC_FUNC_ALLOCA.
21166
21167 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
21168
21169         * lib/argp-parse.c: Include <stddef.h>.
21170         (alignof, alignto): New macros.
21171         (parser_init): Don't assume that void * is aligned sufficiently
21172         for struct option.
21173
21174         * lib/getdate.y (YYSTACK_USE_ALLOCA): Define to 0, since there's no
21175         need to extend the stack.
21176         (YYINITDEPTH): New macro, so that the initial stack isn't overly
21177         large.
21178
21179 2004-12-22  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
21180
21181         * lib/argp-parse.c (parser_init): Avoid arithmetics on void pointers.
21182
21183 2004-12-19  Paul Eggert  <eggert@cs.ucla.edu>
21184
21185         * modules/regex (lib_SOURCES): Remove regex.c, undoing previous
21186         (2004-10-24) change.  Apparently this was a false alarm.
21187
21188         * modules/getdate: Depend on alloca-opt, not alloca.
21189
21190 2004-12-19  Paul Eggert  <eggert@cs.ucla.edu>
21191
21192         * lib/alloca_.h: Conditionalize on _GNULIB_ALLOCA_H, not _ALLOCA_H.
21193         Remove now-obsolete comment about AIX.
21194         * lib/getdate.y: Include <alloca.h> only if HAVE_ALLOCA.
21195         (YYSTACK_USE_ALLOCA): Define to 0 if !HAVE_ALLOCA.
21196         (YYMAXDEPTH): New macro.
21197
21198 2004-12-18  Simon Josefsson  <jas@extundo.com>
21199
21200         * modules/alloca: Depend on alloca-opt, instead of duplicating it.
21201
21202 2004-12-18  Bruno Haible  <bruno@clisp.org>
21203
21204         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Also test for sigaction.
21205
21206 2004-12-18  Bruno Haible  <bruno@clisp.org>
21207
21208         * lib/fatal-signal.c (fatal_signals): Make non-const.
21209         (init_fatal_signals): New function.
21210         (uninstall_handlers, install_handlers): Ignore signals that were set to
21211         SIG_IGN.
21212         (at_fatal_signal): Call init_fatal_signals.
21213         (init_fatal_signal_set): Likewise. Ignore signals that were set to
21214         SIG_IGN.
21215         Reported by Paul Eggert.
21216
21217 2004-12-18  Bruno Haible  <bruno@clisp.org>
21218
21219         * doc/alloca.texi: New file.
21220         * doc/alloca-opt.texi: New file.
21221
21222 2004-12-17  Jim Meyering  <jim@meyering.net>
21223
21224         * config/install-sh: Use `(exit N); exit N', not `(exit N); exit'.
21225         Otherwise, install-sh could exit with improper exit status when
21226         exiting via a trapped interrupt.  Thanks to a report from Bob Proulx.
21227
21228 2004-12-16  Simon Josefsson  <jas@extundo.com>
21229
21230         * tests/test-base64.c: Add license.
21231
21232 2004-12-15  Stepan Kasal  <address@hidden>
21233
21234         * gnulib-tool (func_emit_lib_Makefile_am): Shorten a long sed command.
21235
21236 2004-12-12  Paul Eggert  <eggert@cs.ucla.edu>
21237
21238         * modules/getcwd (Files): Add m4/d-ino.m4.
21239         Suggested by Mark D. Baushke.
21240
21241 2004-12-08  Paul Eggert  <eggert@cs.ucla.edu>
21242
21243         * lib/getdate.y (textint): New member "negative".
21244         (time_zone_hhmm): New function.
21245         Expect 14 shift-reduce conflicts, not 13.
21246         (o_colon_minutes): New rule.
21247         (time, zone): Use it to add support for +HH:MM, UTC+HH:MM.
21248         (yylex): Set the "negative" member of signed numbers.
21249
21250 2004-12-08  Paul Eggert  <eggert@cs.ucla.edu>
21251
21252         * doc/getdate.texi (Time of day items, Time zone items):
21253         Describe new formats +00:00, UTC+00:00.
21254
21255 2004-12-07  Paul Eggert  <eggert@cs.ucla.edu>
21256
21257         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): Fix typo in previous change:
21258         spurious "-l"s.  Problem reported by Stepan Kasal.
21259
21260 2004-12-06  Paul Eggert  <eggert@cs.ucla.edu>
21261
21262         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): New macro, to work around bug
21263         in Autoconf 2.59.  Problem reported by Mark D. Baushke.
21264
21265 2004-12-04  Simon Josefsson  <jas@extundo.com>
21266
21267         * modules/getaddrinfo (License): Add LGPL, reported by Yoann
21268         Vandoorselaere <yoann@prelude-ids.org>.
21269
21270 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
21271
21272         Changes imported from coreutils.
21273         * m4/hard-locale.m4 (gl_HARD_LOCALE): Assume locale.h and setlocale
21274         exist.
21275         * m4/human.m4 (gl_HUMAN): Assume locale.h and localeconv exist.
21276
21277 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
21278
21279         Changes imported from coreutils.
21280         * lib/hard-locale.c: Assume <locale.h> exists.
21281         Include "strdup.h".
21282         (GLIBC_VERSION): New macro.
21283         (hard_locale): Assume setlocale exists.
21284         Rewrite to avoid #ifdef.
21285         Use strdup rather than malloc + strcpy.
21286         * lib/human.c: Assume <locale.h> exists.
21287         (human_readable): Assume localeconv exists.
21288
21289 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
21290
21291         * modules/hard-locale (Depends-on): Add strdup.
21292
21293 2004-12-01  Jakub Jelinek  <jakub@redhat.com>
21294
21295         * lib/mktime.c (__mktime_internal): If SEC_REQUESTED != SEC,
21296         convert T2, not T.  (Imported from libc.)
21297
21298 2004-11-30  Simon Josefsson  <jas@extundo.com>
21299
21300         * modules/restrict (License): Change to LGPL.
21301
21302 2004-11-30  Simon Josefsson  <jas@extundo.com>
21303
21304         * m4/restrict.m4: Add copyright and copying conditions.
21305
21306 2004-11-30  Simon Josefsson  <jas@extundo.com>
21307
21308         * m4/base64.m4: New file.
21309
21310 2004-11-30  Simon Josefsson  <jas@extundo.com>
21311
21312         * MODULES.html.sh (Extra functions based on ANSI C 89): Add
21313         base64.
21314
21315         * tests/test-base64.c: New file.
21316
21317         * modules/base64: New file.
21318
21319 2004-11-30  Paul Eggert  <eggert@cs.ucla.edu>
21320
21321         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX):
21322         Define HAVE_PARTLY_WORKING_GETCWD if getcwd is partly working.
21323
21324         * m4/readutmp.m4 (gl_READUTMP): Don't check for sys/param.h.
21325
21326 2004-11-30  Paul Eggert  <eggert@cs.ucla.edu>
21327
21328         * lib/getcwd.c (is_ENAMETOOLONG): New macro.
21329         (__getcwd.c): Don't restore errno; glibc doesn't.
21330         [HAVE_PARTLY_WORKING_GETCWD && !defined AT_FDCWD]: Try system getcwd
21331         first, falling back to our code only if its results look suspicious.
21332         Ensure that the resulting buffer is only as large as necessary.
21333
21334         * lib/readutmp.c: Include readutmp.h first.
21335         Include <errno.h>, since readutmp.h no longer does that.
21336         * lib/readutmp.h: Don't include <errno.h>,
21337         <sys/param.h>, <time.h>; not needed to establish interface.
21338         (errno): Remove decl.
21339         (HAVE_STRUCT_XTMP_UT_TYPE): Remove; no longer needed.
21340         (UT_TYPE_EQ, UT_TYPE_NOT_DEFINED, UT_TYPE_BOOT_TIME,
21341         UT_TYPE_USER_PROCESS, IS_USER_PROCESS): New macros.
21342
21343 2004-11-28  Simon Josefsson  <jas@extundo.com>
21344
21345         * lib/base64.h, base64.c: New file.
21346
21347 2004-11-27  Paul Eggert  <eggert@cs.ucla.edu>
21348
21349         * lib/getcwd.h: New file, which I forgot to check in on 2004-11-25.
21350
21351 2004-11-26  Paul Eggert  <eggert@cs.ucla.edu>
21352
21353         * modules/getcwd (Files): Add lib/getcwd.h, m4/getcwd.m4.
21354         (Depends-on): Remove pathmax, same.  Add mempcpy.
21355         (configure.ac): GL_FUNC_GETCWD_PATH_MAX -> gl_FUNC_GETCWD.
21356         (Makefile.am): Append getcwd.h to lib_SOURCES.
21357         (Include): Add getcwd.h.
21358         (Maintainer): Change from Jim Meyering to "all, glibc",
21359         since getdate now uses intended-for-glibc code.
21360         * modules/xgetcwd (Files): Remove m4/getcwd.m4.
21361         (Depends-on): Depend on getcwd.  Do not depend on pathmax.
21362
21363 2004-11-25  Paul Eggert  <eggert@cs.ucla.edu>
21364
21365         Fix problems reported by Scott S. Tinsley for HP-UX 11.11 using
21366         HP's ANSI C compiler.
21367         * lib/fsusage.c (statvfs) [HAVE_SYS_STATVFS_H]: Remove decl.
21368         Declaring int functions causes warnings on some modern systems and
21369         shouldn't be needed to compile on ancient ones.
21370         * lib/same.c (MIN) [defined MIN]: Don't define, since it's already
21371         defined.
21372
21373         * lib/getcwd.c: Replace by a copy of glibc/sysdeps/posix/getcwd.c, but
21374         with the following changes.
21375         (__set_errno): Parenthesize properly.
21376         Include <stdbool.h>.
21377         (MIN, MAX, MATCHING_INO): New macros.
21378         (__getcwd): Define with prototype, not K&R form.
21379         Use heuristics to allocate default buffer on stack if possible.
21380         If AT_FDCWD is defined, use openat and fstatat to avoid O(N**2)
21381         behavior, and to avoid the PATH_MAX limit when computing
21382         ../../../../...
21383         Use MATCHING_INO to compare inode number to file.
21384         Check for arithmetic overflow in size calculations.
21385         Fix bug in reallocation of dot array that caused getcwd to fail
21386         on directories nested deeper than 75.
21387         Be more careful about saving errno on error.
21388         Do not use realloc; use only free+malloc, as this is a bit
21389         more flexible and avoids a needless copy operation.
21390         Do not inspect st_dev and st_ino for symbolic links; POSIX
21391         doesn't specify the latter.
21392         Check for closedir errors.
21393         Avoid needless casts.
21394         Use "#ifdef weak_alias" around weak_alias, to be like other
21395         glibc code.
21396         The following changes to getcwd.c have effect only when used in
21397         gnulib; they have no effect inside glibc proper.
21398         (#pragma alloca) [defined _AIX && !defined __GNUC__]: Remove,
21399         as alloca isn't used.
21400         (alloca, __alloca): Likewise.
21401         [!_LIBC]: Include "getcwd.h", "mempcpy.h".
21402         Include <stddef.h>, <stdlib.h>, <string.h>, <limits.h>
21403         unconditionally, as gnulib assumes C89 or better.
21404         Do not include <sys/param.h>.
21405         (errno) [!defined __GNU_LIBRARY__ && !defined STDC_HEADERS]: Remove
21406         no-longer-necessary 'extern int errno' decl; gnulib assumes C89 or
21407         better.
21408         (NULL) [!defined NULL]: Remove; we assume C89 or better.
21409         Include <dirent.h> in a way that is compatible with modern Autoconf.
21410         (_D_ALLOC_NAMELEN, _D_EXACT_NAMLEN):
21411         New macros, if not already defined.
21412         Include <unistd.h> if _LIBC, not if __GNU_LIBRARY__.
21413         Use "_LIBC", not "defined _LIBC", for consistency.
21414         (HAVE_MEMPCPY): Remove; no longer needed now that gnulib has
21415         a mempcpy module.
21416         (__lstat, __closedir, __opendir, __readdir) [!_LIBC]: New macros.
21417         (GETCWD_RETURN_TYPE): Remove.  All uses replaced by char *.
21418         * lib/xgetcwd.c: David MacKenzie's old code was removed, so give
21419         credit only to Jim Meyering and adjust the copyright dates.
21420         Do not include <limits.h>, <stdio.h>, <sys/types.h>,
21421         <stdlib.h>, <unistd.h>, "pathmax.h".
21422         Instead, include "xgetcwd.h" (first) and "getcwd.h".
21423         (INITIAL_BUFFER_SIZE): Remove.
21424         (xgetcwd): Rely on getcwd, since we now depend on a reliable one.
21425
21426 2004-11-25  Paul Eggert  <eggert@cs.ucla.edu>
21427
21428         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Renamed from
21429         GL_FUNC_GETCWD_PATH_MAX for consistency.  All uses changed.
21430         Use the _ONCE methods, for efficiency.
21431         Check for fcntl.h.  In test program, include <errno.h>
21432         and <fcntl.h> if available.  Remove old K&R cruft from
21433         test program.  Check for common errors in GNU/Linux,
21434         OpenBSD, and Solaris.  Just set gl_cv_func_getcwd_path_max;
21435         don't do AC_LIBOBJ, as that's getcwd.m4's job.
21436         * m4/getcwd.m4 (gl_FUNC_GETCWD_NULL): Renamed from
21437         AC_FUNC_GETCWD_NULL.  All used changed.  Change cache variable
21438         name accordingly.
21439         (gl_FUNC_GETCWD, gl_PREREQ_GETCWD): New macros.  Revamp to
21440         accommodate new getcwd.c.
21441         * m4/jm-macros.m4 (gl_MACROS): Don't require GL_FUNC_GETCWD_PATH_MAX.
21442         * m4/prereq.m4 (gl_PREREQ): Add gl_FUNC_MEMPCPY.
21443         * m4/xgetcwd.m4 (gl_XGETCWD): Replace with gl_FUNC_GETCWD, since
21444         that's all we need now.
21445
21446 2004-11-23  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
21447
21448         * m4/argp.m4 (gl_ARGP): Require gl_GETOPT_SUBSTITUTE unconditionally:
21449         argp-parse.c depends on getopt internals, that means we should
21450         always use our getopt, to be on the safe side.
21451         * m4/getopt.m4 (gl_GETOPT): Check if GETOPT_H is already set, in
21452         order not to spoil the result of an eventual previous invocation
21453         of gl_GETOPT_SUBSTITUTE.
21454
21455 2004-11-23  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
21456
21457         * lib/getopt_.h: Re-addition of __getopt_argv_const caused
21458         redefinition warnings. To avoid them, include the defines
21459         in `#if !defined __need_getopt ... #endif'. The only place
21460         where __getopt_argv_const is used is in definitions
21461         of getopt_long and getopt_long_only below, which are as well
21462         protected by `#ifndef __need_getopt'.
21463         [defined __GETOPT_PREFIX && !defined __need_getopt]: Undef
21464         __need_getopt after including <stdio.h> and <unistd.h> These
21465         headers might have defined it.
21466
21467 2004-11-23  Paul Eggert  <eggert@cs.ucla.edu>
21468
21469         * m4/utimens.m4 (gl_UTIMENS): Check for futimes function.
21470
21471 2004-11-23  Paul Eggert  <eggert@cs.ucla.edu>
21472
21473         * lib/utimens.c (__attribute__, ATTRIBUTE_UNUSED): New macros.
21474         (futimens): New function, which uses futimes if available.
21475         (futimens, utimens): Support timespec==NULL, with same semantics
21476         as utime and utimens.
21477         * lib/utimens.h (futimens): New decl.
21478
21479 2004-11-23  Jim Meyering  <jim@meyering.net>
21480
21481         * lib/getopt_.h: Remove trailing blanks.
21482
21483 2004-11-23  Jim Meyering  <jim@meyering.net>
21484
21485         * lib/__fpending.c: Add comment.
21486
21487 2004-11-22  Paul Eggert  <eggert@cs.ucla.edu>
21488
21489         * modules/canonicalize (Depends-on): Add xreadlink.
21490         Problem reported by James Youngman.
21491
21492 2004-11-20  Paul Eggert  <eggert@cs.ucla.edu>
21493
21494         * lib/getopt_.h (__GETOPT_CONCAT, __GETOPT_XCONCAT, __GETOPT_ID):
21495         New macros.
21496         (getopt, getopt_long, getopt_long_only, optarg, opterr, optind,
21497         optopt): Use them instead of invoking ## directly; otherwise, the
21498         symbols will be __GETOPT_PREFIXgetopt rather than rpl_getopt.
21499
21500 2004-11-19  Bruno Haible  <bruno@clisp.org>
21501
21502         * lib/strtok_r.c: Move comments from here...
21503         * lib/strtok_r.h: ... to here.
21504
21505 2004-11-17  Paul Eggert  <eggert@cs.ucla.edu>
21506
21507         * m4/calloc.m4 (_AC_FUNC_CALLOC_IF): Check for buggy calloc
21508         implementations that mishandle size_t overflow.
21509
21510 2004-11-17  Paul Eggert  <eggert@cs.ucla.edu>
21511
21512         * lib/realloc.c (rpl_realloc): Call 'free' if n==0, since realloc
21513         might fail.  Problem reported by Yoann Vandoorselaere.
21514         * lib/calloc.c (rpl_calloc): Defend against buggy calloc
21515         implementations that mishandle size_t overflow.
21516
21517 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
21518
21519         * modules/canon-host (Depends-on): Add strdup.
21520
21521 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
21522
21523         * m4/canon-host.m4 (gl_CANON_HOST): Check for getaddrinfo.
21524
21525 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
21526
21527         * lib/canon-host.c: Include "strdup.h".
21528         (canon_host): Use getaddrinfo if available, so that IPv6 works.
21529         Use strdup instead of malloc/strcpy to duplicate strings.
21530
21531         * lib/human.h (LONGEST_HUMAN_READABLE): Add 1 for space before unit.
21532         (human_space_before_unit): New constant.
21533         * lib/human.c (human_readable): Support it.
21534
21535         * lib/xgetcwd.c: Include <limits.h>, for PATH_MAX.
21536         (xgetcwd): Set errno correctly when failing.
21537         Work around Solaris 9 bug: getcwd sets errno==ERANGE even though
21538         the failure is actually due to a PATH_MAX problem.
21539
21540         Further getopt changes to make it more likely that glibc will
21541         buy the changes back.
21542         * lib/getopt.c (POSIXLY_CORRECT): New constant.
21543         (getopt): Use it, so to preserve glibc semantic
21544         * lib/getopt1.c (getopt_long, getopt_long_only): Arg is char * const *
21545         when compiling for libc.
21546         * lib/getopt_.h (__getopt_argv_const): Bring it back.
21547         (getopt_long, getopt_long_only): Use it.
21548
21549         * lib/getopt.c (_getopt_initialize, _getopt_internal_r,
21550         _getopt_internal): New arg POSIXLY_CORRECT.  All callers changed.
21551         (getopt): Argv is now char * const *, as per standard.
21552         (_getopt_internal_r, _getopt_internal): Argv is now char **,
21553         not char *__getopt_argv_const *.
21554         * lib/getopt1.c (getopt_long, _getopt_long_r, getopt_long_only,
21555         _getopt_long_only_r): Likewise.
21556         * lib/getopt_.h (getopt, getopt_long, geopt_long_only): Likewise.
21557         * lib/getopt_int.h (_getopt_internal, _getopt_internal_r,
21558         _getopt_long_r, _getopt_long_only_r): Likewise.
21559         * lib/getopt_.h (__getopt_argv_const): Remove.
21560         (getopt): Argv is now char * const *, as per standard.
21561
21562         * lib/getdate.y (tORDINAL): New token.
21563         (day, relunit): Allow it for relative times.
21564         (relative_time_table): Use tORDINAL for ordinals.
21565
21566 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
21567
21568         * doc/getdate.texi (General date syntax): "next" is 1, not 2.
21569         Document that "second" isn't allowed as an ordinal number.
21570
21571 2004-11-16  Jim Meyering  <jim@meyering.net>
21572
21573         * modules/closeout (Depends-on): Add fpending.
21574
21575 2004-11-15  Jim Meyering  <jim@meyering.net>
21576
21577         * lib/closeout.c: Include "__fpending.h" once again.
21578         Include <stdbool.h>.
21579         (close_stdout): Don't fail just because stdout was closed initially,
21580         since some programs don't write to stdout in the normal course of
21581         operation (other than --version and --help), and we don't want this
21582         function to make e.g. `touch file >&-' fail.
21583         But do fail if it was closed and someone has tried to write to it.
21584         E.g., `printf foo >&-' must fail.
21585
21586 2004-11-13  Jim Meyering  <jim@meyering.net>
21587
21588         * m4/jm-macros.m4: Do require gl_FUNC_FPENDING.
21589
21590 2004-11-12  Simon Josefsson  <jas@extundo.com>
21591
21592         * config/srclist.txt: Add strtok_r.c, glibc bought our changes, but a
21593         small doc fix is still pending.
21594
21595 2004-11-11  Simon Josefsson  <jas@extundo.com>
21596
21597         * modules/strtok_r: New file.
21598
21599         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
21600         strtok_r.
21601
21602 2004-11-11  Simon Josefsson  <jas@extundo.com>
21603
21604         * m4/strtok_r.m4: New file.
21605
21606         * m4/getopt.m4: Replace opterr.
21607
21608 2004-11-11  Simon Josefsson  <jas@extundo.com>
21609
21610         * lib/strtok_r.h, strtok_r.c: New file.
21611
21612 2004-11-11  Paul Eggert  <eggert@cs.ucla.edu>
21613
21614         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE): Define __GETOPT_PREFIX instead
21615         of replacing opterr, getopt, etc.  This should handle the
21616         powerpc-apple-darwin5.5 problem recently noted by Simon Josefsson.
21617
21618 2004-11-11  Paul Eggert  <eggert@cs.ucla.edu>
21619
21620         * lib/getopt_.h (__getopt_argv_const): New macro, to be used so that
21621         we can stop lying to compilers about the constness of argv when we
21622         are compiled outside glibc.
21623         (getopt, getopt_long, getopt_long_only): Use it.
21624         * lib/getopt.c (_getopt_initialize, _getopt_internal_r,
21625         _getopt_internal, getopt): Likewise.
21626         * lib/getopt1.c (getopt_long, _getopt_long_r, getopt_long_only,
21627         _getopt_long_only_r): Likewise.
21628         * lib/getopt_int.h (_getopt_internal, _getopt_internal_r,
21629         _getopt_long_r, _getopt_long_only_r): Likewise.
21630
21631         * lib/getopt_.h [defined __GETOPT_PREFIX && !defined __need_getopt]:
21632         Include <stdlib.h> and <stdio.h>, and <unistd.h> if available.
21633         Then rename getopt to __GETOPT_PREFIX##getopt, and so forth for
21634         the other external symbols.
21635         (getopt) [!defined __GNU_LIBRARY]: Use prototype, not old-style
21636         declaration, since the above renaming now works around collisions.
21637
21638 2004-11-11  Jim Meyering  <jim@meyering.net>
21639
21640         * lib/linebreak.c: Remove trailing blanks.
21641         * lib/alloca_.h: Likewise.
21642         * lib/acosl.c: Likewise.
21643         * lib/euidaccess.c: Likewise.
21644         * lib/allocsa.h: Likewise.
21645
21646 2004-11-10  Simon Josefsson  <jas@extundo.com>
21647
21648         * m4/getaddrinfo.m4: New file.
21649
21650 2004-11-10  Simon Josefsson  <jas@extundo.com>
21651
21652         * lib/getaddrinfo.h, lib/getaddrinfo.c: New files.
21653
21654 2004-11-10  Simon Josefsson  <jas@extundo.com>
21655
21656         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
21657         getaddrinfo.
21658
21659         * modules/getaddrinfo: New file.
21660
21661 2004-11-10  Paul Eggert  <eggert@cs.ucla.edu>
21662
21663         * m4/prereq.m4 (gl_PREREQ): Require gt_FUNC_SETENV.
21664
21665 2004-11-10  Paul Eggert  <eggert@cs.ucla.edu>
21666
21667         * lib/mktime.c (SHR): New macro, which is a portable
21668         substitute for >> that should work even on Crays.
21669         (TIME_T_MIDPOINT, ydhms_diff, __mktime_internal): Use it.
21670         Problem reported by Mark D. Baushke in
21671         <http://lists.gnu.org/archive/html/bug-gnulib/2004-11/msg00071.html>.
21672         * lib/getdate.y (SHR): Likewise.
21673         (tm_diff): Use it.
21674         * lib/strftime.c (SHR): Likewise.
21675         (tm_diff): Use it.
21676         * lib/quotearg.c (struct quoting_options): Use unsigned int for
21677         quote_these_too, so that right shifts are well defined.  All uses
21678         changed.
21679
21680 2004-11-10  Jim Meyering  <jim@meyering.net>
21681
21682         Ensure that no close failure goes unreported.
21683         * lib/closeout.c (close_stdout): Always close stdout.  I.e., don't
21684         return early when it seems there's nothing to flush.
21685         Don't include __fpending.h.
21686
21687 2004-11-10  Jim Meyering  <jim@meyering.net>
21688
21689         * modules/closeout (Depends-on): Remove fpending.
21690
21691 2004-11-10  Jim Meyering  <jim@meyering.net>
21692
21693         * m4/jm-macros.m4 (gl_MACROS): Don't require gl_FUNC_FPENDING.
21694
21695 2004-11-09  Paul Eggert  <eggert@cs.ucla.edu>
21696
21697         * m4/strftime.m4 (_gl_STRFTIME_PREREQS): Remove.  Move its body to
21698         gl_FUNC_STRFTIME.
21699         (gl_FUNC_STRFTIME): Use AC_CHECK_FUNCS_ONCE and AC_CHECK_HEADERS_ONCE
21700         and AC_REQUIRE when possible, to avoid duplicate checks.
21701         Check for <wchar.h>.
21702
21703 2004-11-09  Paul Eggert  <eggert@cs.ucla.edu>
21704
21705         * lib/strftime.c (DO_MULTIBYTE): Check for wchar.h, too.
21706
21707 2004-11-09  Bruno Haible  <bruno@clisp.org>
21708
21709         * m4/sockpfaf.m4: New file.
21710
21711 2004-11-05  Bruno Haible  <bruno@clisp.org>
21712
21713         * lib/readlink.c: Include stddef.h, needed for size_t on Woe32.
21714         Reported by Mark D. Baushke <mdb@cvshome.org>.
21715
21716 2004-11-04  Bruno Haible  <bruno@clisp.org>
21717
21718         2004-09-11  Bruno Haible  <bruno@clisp.org>
21719                 * allocsa.valgrind: New file.
21720         2004-02-06  Bruno Haible  <bruno@clisp.org>
21721                 * allocsa.h (sa_alignof): Define differently with HP-UX cc, to
21722                 avoid a bug of this cc on HP-UX 10.20 dealing with enums.
21723                 Reported by Christopher Seip <chris.seip@hp.com>.
21724
21725 2004-11-04  Bruno Haible  <bruno@clisp.org>
21726
21727         * modules/allocsa (Files): Add lib/allocsa.valgrind.
21728         (Makefile.am): Distribute it.
21729
21730 2004-11-03  Paul Eggert  <eggert@cs.ucla.edu>
21731
21732         * lib/xreadlink.c (xreadlink): AIX and HP-UX readlink return -1
21733         with errno == ERANGE if the buffer is too small.
21734         Problem reported by Mark D. Baushke.
21735
21736 2004-11-03  Albert Chin  <china@thewrittenword.com>
21737             Paul Eggert  <eggert@cs.ucla.edu>
21738
21739         * m4/uint32_t.m4 (gl_AC_TYPE_UINT32_T): When determining uint32_t
21740         equivalent, substitute $ac_type for equivalent type rather than
21741         blindly using uint32_t *always* which won't work if uint32_t is not
21742         available.  Define _UINT32_T to work around typedef of uint32_t if
21743         <sys/sched.h>, <pthread.h>, or <semaphore.h> used on Solaris
21744         2.5.1.
21745
21746 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
21747
21748         * m4/jm-macros.m4: Sync from coreutils.
21749         (gl_MACROS): Check for mbrlen, for pathchk.
21750         (gl_CHECK_ALL_TYPES): Require AC_TYPE_MBSTATE_T, for pathchk.
21751
21752 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
21753
21754         * lib/xreadlink.c (MAXSIZE): New macro.
21755         (xreadlink): Use it instead of SSIZE_MAX.  Ensure initial buffer
21756         size does not exceed MAXSIZE.  Avoid cast.
21757         As suggested by Mark D. Baushke in
21758         <http://lists.gnu.org/archive/html/bug-gnulib/2004-11/msg00009.html>,
21759         if readlink fails with buffer size just under MAXSIZE, try again
21760         with MAXSIZE.
21761
21762 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
21763
21764         * config/srclist.txt: Add mktime.c; glibc bought all our changes.
21765
21766 2004-11-02  Derek R. Price  <derek@ximbiot.com>
21767         and  Paul Eggert  <eggert@cs.ucla.edu>
21768
21769         * lib/getdate.y [!TEST]: Include <stdio.h>, since we use sprintf now.
21770         (get_date): Overparenthesize to avoid GCC warning.
21771
21772 2004-11-02  Bruno Haible  <bruno@clisp.org>
21773
21774         * m4/setenv.m4 (gt_FUNC_SETENV): Define VOID_UNSETENV if unsetenv()
21775         returns void.
21776
21777 2004-11-02  Bruno Haible  <bruno@clisp.org>
21778
21779         * lib/setenv.h (unsetenv): Define as a macro if the system's unsetenv()
21780         function returns void.
21781
21782 2004-11-01  Paul Eggert  <eggert@cs.ucla.edu>
21783
21784         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for declarations of
21785         fflush_unlocked, flockfile, funlockfile, funlockfile,
21786         fputs_unlocked, putc_unlocked.
21787
21788 2004-11-01  Paul Eggert  <eggert@cs.ucla.edu>
21789
21790         * lib/getpass.c (fflush_unlocked, flockfile, funlockfile)
21791         (funlockfile, fputs_unlocked, putc_unlocked): Don't define if
21792         already declared.
21793
21794 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
21795
21796         * modules/getdate (Files): Add doc/getdate.texi.
21797         (Depends-on): Add setenv, xalloc.
21798
21799 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
21800
21801         * lib/getdate.y: Add support for TZ="foo" within a date string.
21802         Fix some bugs near time_t boundaries.  Reject dates with
21803         out-of-range components, e.g., "Sept 31".
21804         Include <stdlib.h>, "setenv.h", "xalloc.h".
21805         (ISDIGIT_LOCALE): Remove; unused.
21806         Note that the TZ and time functions used here are not reentrant.
21807         (mktime_ok, get_tz): New functions.
21808         (TZBUFSIZE): New constant.
21809         (get_date): Parse leading TZ="foo".  Reject out-of-range components;.
21810         This requires that we sometimes generate our own TZ="XXX..." setting.
21811
21812 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
21813
21814         * doc/getdate.texi: New file, from coreutils with modifications for
21815         the new TZ parsing.
21816
21817 2004-10-27  Derek R. Price  <derek@ximbiot.com>
21818
21819         * lib/mktime.c (not_equal_tm): Remove redundant check.
21820
21821 2004-10-24  Paul Eggert  <eggert@cs.ucla.edu>
21822
21823         * modules/regex (lib_SOURCES): Add regex.c.
21824         Reported by James Youngman in
21825         <http://lists.gnu.org/archive/html/bug-gnulib/2004-10/msg00199.html>.
21826
21827 2004-10-24  Paul Eggert  <eggert@cs.ucla.edu>
21828
21829         * lib/getdate.y: Use Bison 1.875 features, and some minor
21830         code cleanups.  This change does not affect semantics.
21831         Don't include <stdlib.h>; no longer needed.
21832         Don't include unlocked-io.h; only the "#if TEST" code uses
21833         stdio, and performance isn't crucial there.
21834         (PC, YYLEX_PARAM, YYPARSE_PARAM): Remove; replaced by
21835         Bison 1.875 features as described below.
21836         All uses of "PC." replaced by "pc->".
21837         (YYSTYPE): Add a forward declaration.
21838         (yylex, yyerror): Use full prototypes in forward decls.
21839         Use "%pure-parser" rather than obsolescent "%pure_parser".
21840         Use %parse-param and %lex-param instead of obsolescent
21841         YYPARSE_PARAM and YYLEX_PARAM.
21842         (meridian_table, month_and_day_table, time_units_table,
21843         relative_time_table, time_zone_table, military_table,
21844         lookup_zone, lookup_word, get_date):
21845         Use NULL instead of 0 where appropriate.
21846         (to_hour): Avoid abort (), to avoid a dependency on
21847         stdlib.h.
21848         (yyerror, yylex): Now accepts parser_control * arg.
21849         (main) [TEST]: Use '\0' rather than 0 for char.
21850
21851 2004-10-22  Paul Eggert  <eggert@cs.ucla.edu>
21852
21853         * m4/getpagesize.m4 (gl_GETPAGESIZE): Check for <sys/param.h>.
21854
21855 2004-10-22  Paul Eggert  <eggert@cs.ucla.edu>
21856
21857         * lib/getpagesize.c (getpagesize): Don't assume <sys/param.h> exists.
21858         It's now the caller's responsibility to handle the case where
21859         !HAVE_GETPAGESIZE && !defined getpagesize.
21860
21861         * lib/mktime.c (leapyear): Arg is long int, not int.
21862
21863 2004-10-18  Paul Eggert  <eggert@cs.ucla.edu>
21864
21865         * lib/argp-fs-xinl.c, argp-xinl.c: Update from glibc.
21866
21867 2004-10-17  Paul Eggert  <eggert@cs.ucla.edu>
21868
21869         * gnulib-tool (func_emit_lib_Makefile_am): Fix typo: a $ was
21870         missing.  Problem reported by James Youngman.
21871
21872 2004-10-16  Simon Josefsson  <jas@extundo.com>
21873
21874         * gnulib-tool: Fix comments.  Fix parse problem.
21875         (func_emit_lib_Makefile_am): Don't hard code a in libgl_a_SOURCES.
21876
21877 2004-10-15  Paul Eggert  <eggert@cs.ucla.edu>
21878
21879         * m4/getopt.m4 (gl_GETOPT): Detect and reject the incompatible BSD
21880         implementation of getopt_long.  Problem reported by Alexander Taler in:
21881         http://lists.gnu.org/archive/html/bug-gnulib/2004-10/msg00103.html
21882
21883 2004-10-15  Bruno Haible  <bruno@clisp.org>
21884
21885         * gnulib-tool: Untabify. Initialize supplied_libname.
21886         (func_usage): More homogenous output.
21887         (func_modules_transitive_closure, func_modules_to_filelist,
21888         func_emit_lib_Makefile_am): New functions.
21889         (func_import): New function, extracted from big case statement. Use
21890         func_get_license, func_modules_transitive_closure,
21891         func_modules_to_filelist, func_emit_lib_Makefile_am. Initialize
21892         opt_lgpl. Don't use test -a, as it's not portable.
21893         (func_create_testdir): Use func_modules_transitive_closure,
21894         func_modules_to_filelist, func_emit_lib_Makefile_am.
21895
21896 2004-10-15  Bruno Haible  <bruno@clisp.org>
21897
21898         * gnulib-tool (func_import): Let gl_INIT define LTALLOCA when needed.
21899
21900 2004-10-15  Bruno Haible  <bruno@clisp.org>
21901
21902         * gnulib-tool (func_emit_lib_Makefile_am): Add markers to separate
21903         the portions belonging to each module.
21904         Suggested by Derek Robert Price <derek@ximbiot.com>.
21905
21906 2004-10-12  Simon Josefsson  <jas@extundo.com>
21907
21908         * lib/getpass.c (fflush_unlocked, flockfile, funlockfile)
21909         (fputs_unlocked, putc_unlocked) [!_LIBCS && !USE_UNLOCKED_IO]: Map
21910         to real functions.
21911
21912 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
21913
21914         * modules/vsnprintf: New file.
21915
21916 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
21917
21918         * m4/vsnprintf.m4: New file.
21919
21920 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
21921
21922         * lib/vsnprintf.h: New file.
21923         * lib/vsnprintf.c: New file.
21924
21925 2004-10-11  Bruno Haible  <bruno@clisp.org>
21926
21927         * MODULES.html.sh (Support for systems lacking ISO C 99): Add
21928         vsnprintf.
21929
21930 2004-10-10  Paul Eggert  <eggert@cs.ucla.edu>
21931
21932         * config/srclistvars.sh: Add GNUSTANDARDS (for eggert only).
21933
21934 2004-10-07  Bruno Haible  <bruno@clisp.org>
21935
21936         * lib/snprintf.c (snprintf): Avoid a memory allocation if the result
21937         fits into the provided buffer.
21938
21939 2004-10-06  Paul Eggert  <eggert@cs.ucla.edu>
21940
21941         * lib/diacrit.c, diacrit.h: Add GPL notice.
21942
21943         * lib/atanl.c, logl.c: Add GPL notice, to match glibc's added LGPL
21944         notice.
21945         * lib/atanl.c (atanl): Keep the code as similar to glibc as possible.
21946         * lib/logl.c (logl): Keep the code as similar to glibc as possible.
21947         This avoids a potential constant-folding bug.
21948
21949 2004-10-05  Bruno Haible  <bruno@clisp.org>
21950
21951         * m4/strsep.m4 (gl_FUNC_STRSEP): Require AC_GNU_SOURCE. Don't check
21952         for the declaration of strsep.
21953
21954 2004-10-05  Bruno Haible  <bruno@clisp.org>
21955
21956         * lib/strsep.h: Don't declare strsep() if HAVE_STRSEP.
21957
21958 2004-10-04  Simon Josefsson  <jas@extundo.com>
21959
21960         * modules/memmem: New file.
21961         * tests/test-memmem.c: New file.
21962         * MODULES.html.sh (Extra functions based on ANSI C 89): Add memmem.
21963
21964 2004-10-04  Simon Josefsson  <jas@extundo.com>
21965
21966         * m4/memmem.m4: New file.
21967
21968 2004-10-04  Simon Josefsson  <jas@extundo.com>
21969
21970         * lib/memmem.h: New file.
21971         * lib/memmem.c: New file, taken from glibc.
21972
21973 2004-10-04  Simon Josefsson  <jas@extundo.com>
21974
21975         * lib/error.c, md5.c, regex.c: Use '#if USE_UNLOCKED_IO' instead of
21976         '#ifdef USE_UNLOCKED_IO'.
21977
21978 2004-10-04  Simon Josefsson  <jas@extundo.com>
21979
21980         * config/srclist.txt: Add memmem from glibc.
21981
21982 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
21983
21984         * modules/xalloc (Files, Makefile.am): Remove xstrdup.c.
21985
21986         * modules/argmatch, modules/argp, modules/closeout, modules/error,
21987         modules/exclude, modules/getdate, modules/getline,
21988         modules/getndelim2, modules/getpass, modules/getpass-gnu,
21989         modules/getusershell, modules/linebuffer, modules/md5,
21990         modules/mountlist, modules/posixtm, modules/readtokens,
21991         modules/readutmp, modules/regex, modules/sha1,
21992         modules/version-etc, modules/yesno:
21993         Remove dependency on unlocked-io.
21994
21995 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
21996
21997         * m4/xalloc.m4 (gl_PREREQ_XSTRDUP): Remove.  All uses removed.
21998
21999         * m4/unlocked-io.m4: Add copyright notice.
22000         (gl_FUNC_GLIBC_UNLOCKED_IO): Define USE_UNLOCKED_IO.
22001
22002 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
22003
22004         * lib/xalloc.h (xmemdup): Renamed from xclone.  All uses changed.
22005         * lib/xmalloc.c (xmemdup): Likewise.
22006         * lib/xalloc.h (CCLONE, CLONE, NEW, XCALLOC, XMALLOC, XREALLOC,
22007         XFREE): Remove these long-obsolescent macros.
22008         * lib/xmalloc.c (xstrdup): Implementation moved here from xstrdup.c
22009         * lib/xstrdup.c: Remove.
22010
22011         * lib/regex.c (re_comp): Cast gettext return value to char *,
22012         Problem reported by Martin Neitzel via Mark D. Baushke.
22013
22014 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
22015
22016         * lib/argmatch.c, closeout.c, error.c, exclude.c, getdate.y,
22017         getndelim2.c, getpass.c, getusershell.c, linebuffer.c,
22018         md5.c, mountlist.c, posixtm.c, readtokens.c, readutmp.c,
22019         regex.c, sha1.c, version-etc.c, yesno.c:
22020         Include "unlocked-io.h" only if USE_UNLOCKED_IO.
22021         * lib/unlocked-io.h: Don't worry about USE_UNLOCKED_IO; that's now
22022         the includer's responsibility.
22023
22024         Sync from coreutils.
22025
22026         * lib/modechange.c (mode_compile): Don't decrement a pointer that
22027         points to the start of a string, as the C Standard says the
22028         resulting behavior is undefined.
22029
22030         * lib/backupfile.h (enum backuptype): Rename none -> no_backups,
22031         simple -> simple_backups, numbered_existing ->
22032         numbered_existing_backups, numbered -> numbered_backups
22033         to avoid shadowing problems.  All uses changed.
22034         * lib/argmatch.c (enum backuptype) [defined TEST]: Likewise.
22035         * lib/backupfile.c (check_extension, numbered_backup):
22036         Rename locals to avoid shadowing 'basename'.
22037         * lib/backupfile.h (VALID_BACKUP_TYPE): Don't evaluate arg more than
22038         once.
22039
22040         * lib/.cppi-disable: Add getopt_.h, getopt_int.h.
22041         * lib/.cvsignore: Add getopt.h.
22042
22043 2004-10-04  Bruno Haible  <bruno@clisp.org>
22044
22045         * modules/README: New file.
22046         * gnulib-tool (func_all_modules, func_verify_module): modules/README is
22047         not a module.
22048
22049 2004-10-02  Jim Meyering  <jim@meyering.net>
22050
22051         * lib/dirfd.h, getpagesize.h: Add copyright notice.
22052
22053 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
22054
22055         * modules/strsep: New file.
22056
22057 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
22058
22059         * m4/strsep.m4: New file.
22060
22061 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
22062
22063         * lib/strsep.h: New file.
22064         * lib/strsep.c: New file.
22065
22066 2004-10-01  Simon Josefsson  <jas@extundo.com>
22067
22068         * lib/snprintf.c (snprintf): Handle size==0.
22069
22070 2004-10-01  Simon Josefsson  <jas@extundo.com>
22071             Bruno Haible  <bruno@clisp.org>
22072
22073         * lib/snprintf.c: Include <stdarg.h>, <stdlib.h>, <string.h>.
22074         (snprintf): Declare 'args'.
22075
22076 2004-10-01  Paul Eggert  <eggert@cs.ucla.edu>
22077
22078         * lib/snprintf.c: Remove comments as to why each header is needed.
22079
22080 2004-10-01  Bruno Haible  <bruno@clisp.org>
22081
22082         * MODULES.html.sh: Add strsep.
22083
22084 2004-09-30  Simon Josefsson  <jas@extundo.com>
22085
22086         * modules/snprintf: New file.
22087
22088 2004-09-30  Simon Josefsson  <jas@extundo.com>
22089
22090         * m4/snprintf.m4: New file.
22091
22092 2004-09-30  Simon Josefsson  <jas@extundo.com>
22093
22094         * lib/snprintf.h, lib/snprintf.c: New files.
22095
22096 2004-09-30  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
22097
22098         * lib/argp-help.c (canon_doc_option): Fixed coredump if *name==NULL
22099         (hol_entry_help): Never translate an empty string.
22100         Do not translate option tag (opt->name) if OPTION_NO_TRANS is set
22101         * lib/argp.h (OPTION_NO_TRANS): New option.
22102
22103 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
22104
22105         * modules/argp (Maintainer): Replace Simon Josefsson
22106         by Sergey Poznyakoff.
22107
22108 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
22109
22110         * config/srclist.txt: Comment-out argp/argp.h, until we get the argp
22111         changes merged back into glibc.
22112
22113 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
22114
22115         * MODULES.html.sh (Support for systems lacking ISO C 99): Add snprintf.
22116
22117 2004-09-29  Oskar Liljeblad  <oskar@osk.mine.nu>
22118
22119         * lib/xvasprintf.c: Include xalloc.h.
22120         (xvasprintf): Use xalloc_die, not xmalloc_die.
22121
22122 2004-09-29  Bruno Haible  <bruno@clisp.org>
22123
22124         * modules/alloca-opt: New file, derived from modules/alloca.
22125         * modules/allocsa: Depend on alloca-opt instead of alloca.
22126         * modules/setenv: Likewise.
22127         * modules/vasnprintf: Likewise.
22128         * MODULES.html.sh: Add alloca-opt.
22129
22130 2004-09-28  Simon Josefsson  <jas@extundo.com>
22131
22132         * gnulib-tool: New parameter --lgpl, to asseert that modules are
22133         LGPL, and to replace license template from GPL to LGPL.
22134
22135 2004-09-28  Paul Eggert  <eggert@cs.ucla.edu>
22136
22137         * modules/dummy: Change license to LGPL.
22138
22139 2004-09-28  Paul Eggert  <eggert@cs.ucla.edu>
22140
22141         * lib/dummy.c: Change copyright notice to FSF, and license to GPL.
22142
22143 2004-09-24  Simon Josefsson  <jas@extundo.com>
22144
22145         * modules/minmax (License): Change from GPL to LGPL.
22146
22147 2004-09-23  Simon Josefsson  <jas@extundo.com>
22148
22149         * gnulib-tool (--import): Typo.
22150
22151 2004-09-23  Simon Josefsson  <jas@extundo.com>
22152
22153         * gnulib-tool (--import): Make sure *.m4 end up in m4/ by default.
22154
22155 2004-09-22  Bruno Haible  <bruno@clisp.org>
22156
22157         * modules/*: Add 'License' field.
22158         * gnulib-tool: Accept --extract-license option.
22159         (func_get_license): New function.
22160
22161 2004-09-21  Bruno Haible  <bruno@clisp.org>
22162
22163         * modules/vasnprintf (Files): Add m4/stdint_h.m4, m4/inttypes_h.m4.
22164         Reported by Simon Josefsson.
22165
22166 2004-09-20  Paul Eggert  <eggert@cs.ucla.edu>
22167
22168         * modules/inttostr (Files): Add m4/longlong.m4, since it uses
22169         gl_AC_TYPE_LONG_LONG.
22170
22171 2004-09-20  Paul Eggert  <eggert@cs.ucla.edu>
22172
22173         * config/srclist.txt: Add getsubopt.c, since libc bought our changes.
22174
22175 2004-09-18  Simon Josefsson  <jas@extundo.com>
22176         and  Paul Eggert  <eggert@cs.ucla.edu>
22177
22178         * gnulib-tool: Replace various ad-hoc automake/autoconf/aclocal
22179         calls with autoreconf.  Define GL_LIB.
22180
22181 2004-09-14  Karl Berry  <karl@gnu.org>
22182
22183         * config/srclist.txt: unsync setenv.c, sigh.
22184
22185 2004-09-13  Paul Eggert  <eggert@cs.ucla.edu>
22186
22187         * lib/argp-pvh.c (argp_program_version_hook): Provide initial value.
22188         Problem reported by Bruno Haible in:
22189         http://lists.gnu.org/archive/html/bug-tar/2004-09/msg00023.html
22190
22191 2004-09-13  Paul Eggert  <eggert@cs.ucla.edu>
22192
22193         * config/srclist.txt: Comment out argp-pvh.c.
22194
22195 2004-09-11  Paul Eggert  <eggert@cs.ucla.edu>
22196
22197         * lib/mempcpy.h: Wrap the entire include file inside #ifndef mempcpy,
22198         in case some system header has #define'd it.  Problem reported by
22199         Soeren D. Schulze in
22200         <http://lists.gnu.org/archive/html/bug-gnulib/2004-09/msg00017.html>.
22201
22202 2004-09-09  Karl Berry  <karl@gnu.org>
22203
22204         * regex.[ch]: delete from the root.  These were supposed to be
22205                 synced with emacs cvs, but this has not happened for about
22206                 a year, and anyway nothing else uses emacs regex.[ch].
22207                 bug-gnulib mail from Jeff Bailey, 9 Sep 2004 15:49:24 -0700.
22208                 lib/regex[.ch] is untouched.
22209
22210 2004-09-09  Bruno Haible  <bruno@clisp.org>
22211
22212         * modules/vasnprintf (Files): Add m4/eoverflow.m4.
22213
22214 2004-09-09  Bruno Haible  <bruno@clisp.org>
22215
22216         * m4/eoverflow.m4: New file, taken from GNU libiconv eilseq.m4 with
22217         modifications.
22218         * m4/vasnprintf.m4 (gl_FUNC_VASNPRINTF): Require gl_EOVERFLOW.
22219
22220 2004-09-08  Oskar Liljeblad  <oskar@osk.mine.nu>
22221
22222         * modules/xvasprintf: New file.
22223         * MODULES.html.sh (Extra functions based on ANSI C 89): Add vasprintf.
22224
22225 2004-09-08  Oskar Liljeblad  <oskar@osk.mine.nu>
22226
22227         * lib/xvasprintf.h: New file.
22228         * lib/xvasprintf.c: New file.
22229         * lib/xasprintf.c: New file.
22230
22231 2004-09-08  Bruno Haible  <bruno@clisp.org>
22232
22233         * m4/stdint.m4: New file, taken from GNU clisp with modifications.
22234
22235 2004-09-08  Bruno Haible  <bruno@clisp.org>
22236
22237         * lib/vasnprintf.c (VASNPRINTF): Signal EOVERFLOW if the resulting
22238         length is > INT_MAX.
22239         * lib/vasprintf.c (vasprintf): Don't test for length > INT_MAX any
22240         more.
22241
22242 2004-09-08  Bruno Haible  <bruno@clisp.org>
22243
22244         * lib/stdint_.h: New file, taken from GNU clisp.
22245
22246 2004-09-08  Bruno Haible  <bruno@clisp.org>
22247             Oskar Liljeblad  <oskar@osk.mine.nu>
22248
22249         * modules/stdint: New file.
22250         * MODULES.html.sh (Support for systems lacking ISO C 99): Add stdint.
22251
22252 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
22253
22254         Import from coreutils.
22255         * lib/userspec.c: Don't use <alloca.h>, so that we don't use alloca on
22256         strings on unbounded length.  alloca's performance benefits aren't
22257         that important here.
22258         (V_STRDUP): Remove.
22259         (parse_with_separator): New function, with most of the internals
22260         of the old parse_user_spec.  Allow user to omit both user and group,
22261         for compatibility with FreeBSD.
22262         Clone only the user name, not the entire spec.
22263         Do not set *uid, *gid unless entirely successful.
22264         Avoid memory leak in some failing cases.
22265         Fix regression for USER.GROUP reported by Dmitry V. Levin in
22266         <http://lists.gnu.org/archive/html/bug-coreutils/2004-08/msg00102.html>
22267         (parse_user_spec): Rewrite to use parse_with_separator.
22268
22269 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
22270
22271         * modules/userspec: Don't depend on alloca.
22272
22273 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
22274
22275         * m4/userspec.m4 (gl_USERSPEC): Don't require AC_FUNC_ALLOCA.
22276
22277 2004-08-17  Paul Eggert  <eggert@cs.ucla.edu>
22278
22279         * MODULES.html.sh: Add xalloc-die, c-strtod, c-strtold, raise,
22280         readtokens0, getcwd, fcntl-safer, canonicalize, cycle-check,
22281         utimecmp, utimens, xnanosleep.  Rename sha to sha1.
22282
22283 2004-08-16  Simon Josefsson  <jas@extundo.com>
22284
22285         * gnulib-tool: Use sed instead of autoconf --trace, inspired by
22286         libtoolize behaviour by "Gary V. Vaughan" <gary@gnu.org>.
22287         Add --dry-run for --import.
22288         Let user provided command line parameters override configure.ac
22289         settings.
22290
22291 2004-08-12  Simon Josefsson  <jas@extundo.com>
22292
22293         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE): New macro,
22294         as discussed with Paul Eggert in threads rooted at
22295         <http://lists.gnu.org/archive/html/bug-gnulib/2004-06/msg00039.html>
22296         and
22297         <http://lists.gnu.org/archive/html/bug-gnulib/2004-07/msg00001.html>.
22298         Before, the test was empty, and relied on ELIDE_CODE in source
22299         code.)
22300         (gl_PREREQ_GETOPT): New macro.
22301         (gl_GETOPT): Use them.
22302
22303 2004-08-12  Simon Josefsson  <jas@extundo.com>
22304
22305         * lib/getopt.c, getopt1.c: Remove ELIDE_CODE hack.
22306         * lib/getopt_.h: Renamed from getopt.h.
22307
22308 2004-08-12  Simon Josefsson  <jas@extundo.com>
22309
22310         * gnulib-tool: Add --source-base, --m4-base, --libtool options.
22311         Change default library name from libfoo to libgnu.
22312         Now, if you have a configure.ac that says:
22313                 gl_SOURCE_BASE(gl)
22314                 gl_M4_BASE(gl/m4)
22315                 gl_MODULES(error getopt etcetera)
22316                 gl_INIT
22317         you can import all you need by running:
22318                 ../gnulib/gnulib-tool --import
22319
22320         * modules/getopt (Files): Rename getopt.h to getopt_.h.
22321         (Makefile.am): Rewrite, use logic from argz.
22322         (Include): Use <getopt.h> instead of "getopt.h".
22323
22324 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
22325
22326         * modules/argp (Files): Add m4/unlocked-io.m4.
22327         (Depends-on): Add extensions.
22328
22329 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
22330
22331         * m4/argp.m4 (gl_ARGP): Do not check for argp.h or argp_parse; nobody
22332         uses HAVE_ARGP_H or HAVE_ARGP_PARSE.
22333         Require gl_FUNC_GLIBC_UNLOCKED_IO, gl_USE_SYSTEM_EXTENSIONS.
22334         Check for program_invocation_name, program_invocation_short_name,
22335         flockfile, funlockfile, features.h, _getopt_long_only_r.
22336
22337 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
22338
22339         * lib/argp-help.c, argp-parse.c: Use "gettext.h" instead of
22340         its complicated substitute.
22341         * lib/argp-help.c: Include <errno.h>, for program_invocation_short_name
22342         and program_invocation_name.
22343         (__argp_basename) [!_LIBC]: Remove; the only use was
22344         replaced by its body.
22345         (__argp_short_program_name): Change condition from
22346         !defined __argp_short_program_name to
22347         ! (defined _LIBC || HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME),
22348         to match argp-namefrob.h.
22349         (__argp_failure): Don't assume strerror_r returns char *.
22350         * lib/argp-parse.c (N_): Define unconditionally.
22351         (argp_default_options): Fill out initializers with 0 to avoid
22352         gcc warnings.
22353
22354 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
22355
22356         * config/srclist.txt: Remove getopt.c, getopt.h (renamed to getopt_.h),
22357         getopt1.c.
22358
22359 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
22360
22361         Merge from coreutils.
22362
22363         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for wmemchr and wmemcpy.
22364
22365         * m4/obstack.m4 (gl_PREREQ_OBSTACK): Require
22366         gl_AC_HEADER_INTTYPES_H, gl_AC_HEADER_STDINT_H, gl_AC_TYPE_UINTMAX_T.
22367
22368 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
22369
22370         Merge from coreutils.
22371
22372         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Don't set to 1 if missing
22373         wmemchr or wmemcpy.  Problem reported by Robert Dahlem
22374         for Reliant Unix 5.43.
22375
22376         * lib/obstack.c: Include <inttypes.h> and <stdint.h> if available.
22377         (union fooround): Use uintmax_t, not long int.
22378         The rest is a merge from libc:
22379         [defined _LIBC]: Include <shlib-compat.h>.
22380         (_obstack) [defined _LIBC]: Remove after 2.3.4.
22381
22382         * lib/settime.c (settime): Recode to avoid warning with
22383         Sun Forte C 6U2.
22384
22385         * lib/strverscmp.c: Convert to UTF-8.
22386
22387 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
22388
22389         * modules/obstack (Files): Add m4/inttypes_h.m4, m4/stdint_h.m4,
22390         m4/uintmax_t.m4.
22391
22392 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
22393
22394         * modules/xalloc-die: New file.
22395         * modules/xalloc: Remove dependencies on error, gettext, exitfail.
22396
22397         * modules/md5 (Files): Add m4/uint32_t.m4.
22398         * modules/sha1: Renamed from modules/sha.
22399         (Files):
22400         Rename lib/sha.h to lib/sha1.h.
22401         Rename lib/sha.c to lib/sha1.c.
22402         Rename m4/sha.m4 to m4/sha1.m4.
22403         (lib_SOURCES): Likewise.
22404         (configure.ac): Rename gl_SHA to gl_SHA1.
22405         (Include): sha.h -> sha1.h.
22406
22407 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
22408
22409         * m4/uint32_t.m4, m4/uintptr_t.m4: New files.
22410         * m4/sha1.m4: Renamed from sha.m4.
22411         (gl_SHA1): Renamed from gl_SHA.  All uses changed.
22412
22413 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
22414
22415         * lib/obstack.h (obstack_empty_p):
22416         Don't assume that chunk->contents is suitably aligned.
22417         * lib/obstack.c (_obstack_begin, _obstack_begin_1, _obstack_newchunk):
22418         Likewise. Problem reported by Benno in
22419         <http://sources.redhat.com/ml/libc-alpha/2004-08/msg00055.html>.
22420
22421         * lib/chown.c (rpl_chown): Work even if the file is writeable but not
22422         readable.  This could be improved further but it'd take some work.
22423
22424 2004-08-08  Simon Josefsson  <jas@extundo.com>
22425
22426         * modules/xgethostname (Depends-on): Remove exit and error (not
22427         used).
22428
22429         * modules/getpass-gnu: Add getpass.h.
22430         (Depends-on): Add stdbool.
22431         * modules/getpass: Add getpass.h.
22432
22433 2004-08-08  Simon Josefsson  <jas@extundo.com>
22434
22435         * m4/getpass.m4 (gl_FUNC_GETPASS, gl_FUNC_GETPASS_GNU):
22436         Check getpass declaration.
22437
22438 2004-08-08  Simon Josefsson  <jas@extundo.com>
22439
22440         * lib/xgethostname.c: Don't include error.h (not used).
22441
22442         * lib/getpass.h: Add.
22443         * lib/getpass.c: Include getpass.h first.
22444
22445 2004-08-08  Paul Eggert  <eggert@cs.ucla.edu>
22446
22447         * lib/xalloc-die.c: New file.
22448         * lib/xalloc.h (xalloc_fail_func, xalloc_msg_memory_exhausted): Remove.
22449         All uses removed.
22450         * lib/xmalloc.c (xalloc_fail_func, xalloc_msg_memory_exhausted):
22451         Likewise. Move inclusions of gettext.h, error.h, exitfail.h to
22452         xalloc-die.c.
22453         (_, N_, xalloc_die): Move to xalloc-die.c.
22454         * lib/userspec.c (parse_user_spaec): Use xstrdup rather than strdup,
22455         so that we needn't mess with xalloc_msg_memory_exhausted.
22456
22457         * lib/sha1.h: Renamed from sha.h.
22458         (SHA1_H): Renamed from _SHA_H.
22459         (sha1_ctx): Renamed from sha_ctx.
22460         (sha1_init_ctx): Renamed from sha_init_ctx.
22461         (sha1_process_block): Renamed from sha_process_block.
22462         (sha1_process_bytes): Renamed from sha_process_bytes.
22463         (sha1_finish_ctx): Renamed from sha_finish_ctx.
22464         (sha1_read_ctx): Renamed from sha_read_ctx.
22465         (sha1_stream): Renamed from sha_stream.
22466         (sha1_buffer): Renamed from sha_buffer.
22467         * lib/sha1.c: Likewise; renamed from sha.c.
22468         Do not include <sys/types.h>.
22469         Include <stddef.h> rather than <stdlib.h>.
22470
22471 2004-08-08  Bruno Haible  <bruno@clisp.org>
22472
22473         * lib/pathname.h (FILE_SYSTEM_PREFIX_LEN): Renamed from
22474         FILESYSTEM_PREFIX_LEN.
22475         * lib/progreloc.c: Likewise.
22476         * lib/concatpath.c (concatenated_pathname): Use FILE_SYSTEM_PREFIX_LEN.
22477
22478 2004-08-06  Simon Josefsson  <jas@extundo.com>
22479
22480         * modules/progname (Depends-on): Don't depend on stdbool.
22481
22482 2004-08-06  Simon Josefsson  <jas@extundo.com>
22483
22484         * modules/getsubopt: New file.
22485         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
22486         getsubopt.
22487
22488 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
22489
22490         More merge from coreutils.
22491
22492         * m4/utimens.m4, m4/utimecmp.m4: New files.
22493         * m4/backupfile.m4, euidacces.m4, acl.m4, afs.m4, calloc.m4, dirfd.m4,
22494         fsusage.m4, jm-macros.m4, ls-mntd-fs.m4, md5.m4, mountlist.m4,
22495         prereq.m4, sha.m4: Import changes from coreutils.
22496
22497 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
22498
22499         More merge from coreutils.
22500         * modules/raise, modules/readtokens0, modules/utimens:
22501         * modules/utimecmp, module/xnanosleep: New files.
22502         * modules/strftime: Add lib/strftime.h.
22503         Change include from <time.h> to "strftime.h".
22504         * modules/yesno: Add lib/yesno.h.
22505         * modules/backupfile: Remove lib/addext.c.
22506         * modules/euidaccess: Add stat-macros.h.
22507         * modules/canonicalize, modules/euidaccess,
22508         modules/filemode, modules/lchown, modules/makepath,
22509         modules/rmdir, modules/stat: Likewise.
22510
22511 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
22512
22513         Merge from tar.
22514         * lib/argp-help.c (make_hol, hol_append): Don't assume that
22515         SIZE_MAX is a valid preprocessor constant.
22516         (__argp_basename): Change from "#ifndef _LIBC"
22517         to "#ifndef __argp_short_program_name", so that
22518         we don't compile these functions for tar.
22519
22520         More merges from coreutils.
22521         * lib/raise.c, lib/readtokens0.h, lib/readtokens0.c, lib/strftime.h:
22522         * lib/utimens.h, lib/utimens.c, lib/utimecmp.h, lib/utimecmp.c:
22523         * lib/xnanosleep.h, lib/xnanosleep.c, lib/yesno.h: New files.
22524         * lib/addext.c: Remove; no longer needed.
22525         * lib/yesno.c, lib/argmatch.h, lib/argmatch.c, lib/backupfile.h,
22526         lib/backupfile.c, lib/euidaccess.c, lib/filemode.c, lib/closeout.c,
22527         lib/dup2.c, lib/exclude.c, lib/fileblocks.c, lib/filemode.c,
22528         lib/fnmatch.c, lib/fnmtahc_loop.c, lib/fopen-safer.c, lib/fsusage.c,
22529         lib/fsusage.h, lib/ftruncate.c, lib/full-write.c, lib/getdate.y,
22530         lib/getloadavg.c, lib/getugroups.c, lib/hard-locale.c,
22531         lib/hard-locale.h, lib/hash.c, lib/human.c, lib/human.h, lib/lchown.c,
22532         lib/lchown.h, lib/makepath.c, lib/makepath.h, lib/md5.c, lib/md5.h,
22533         lib/memchr.c, lib/memcoll.c, lib/memrchr.c, lib/modechange.c,
22534         lib/modechange.h, lib/mountlist.c, lib/mountlist.h, lib/nanosleep.c,
22535         lib/posixtm.c, lib/putenv.c, quotearg.c, lib/quotearg.h,
22536         lib/readtokens.c, lib/readutmp.c, lib/readutmp.h, lib/rmdir.c,
22537         lib/safe-read.c, lib/save-cwd.c, lib/savedir.c, lib/setenv.c,
22538         lib/sig2str.c, lib/stat.c, lib/strtoimax.c, lib/strverscmp.c,
22539         lib/userspec.c, lib/utime.c, lib/version-etc.c., lib/xgethostname.c,
22540         lib/xmemcoll.c, lib/xreadlink.c, lib/xstrtod.c, lib/xstrtod.h,
22541         lib/xstrtoimax.c, lib/xstrtol.c, lib/xstrtol.h, lib/xstrtoumax.c:
22542         Import changes from coreutils.
22543
22544 2004-08-05  Simon Josefsson  <jas@extundo.com>
22545
22546         * m4/strdup.m4: Always run gl_PREREQ_STRDUP, since strdup.h need it.
22547
22548 2004-08-05  Simon Josefsson  <jas@extundo.com>
22549
22550         * m4/getsubopt.m4: New file.
22551
22552 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
22553
22554         Merge from coreutils.
22555
22556         * m4/c-strtod.m4, m4/canonicalize.m4, m4/fcntl-safer.m4:
22557         * m4/getcwd-path-max.m4: New files.
22558
22559         * m4/dos.m4 (gl_AC_DOS): filesystem -> file system renaming.
22560         FILESYSTEM_PREFIX_LEN ->
22561         FILE_SYSTEM_PREFIX_LEN.
22562         FILESYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX ->
22563         FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX.
22564         FILESYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR ->
22565         FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR.
22566
22567         * m4/path-concat.m4 (gl_PATH_CONCAT): Don't require gl_AC_DOS, the
22568         prerequisite modules now handle the DOS stuff.
22569         Don't check for unistd.h.
22570
22571 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
22572
22573         Merge from coreutils.
22574
22575         * lib/.gdb-history: Remove; this doesn't belong here.
22576
22577         * lib/c-strtod.c, lib/c-strtod.h, lib/c-strtold.c, lib/cycle-check.c:
22578         * lib/cycle-check.h, lib/dev-ino.h, lib/canonicalize.h:
22579         * lib/canonicalize.c, lib/fcntl-safer.h, lib/fcntl-safer.c:
22580         * lib/getcwd.c: New files.
22581
22582         * lib/dirname.h: Include <stdbool.h>.
22583         (FILE_SYSTEM_PREFIX_LEN): Renamed from FILESYSTEM_PREFIX_LEN,
22584         for consistency with POSIX terminology.  All uses changed.
22585         (IS_ABSOLUTE_FILE_NAME, IS_RELATIVE_FILE_NAME): New macros.
22586         (strip_trailing_slashes): Use bool for booleans.
22587         * lib/stripslash.c (strip_trailing_slashes): Likewise.
22588
22589         * lib/error.c: Work around bug in OpenBSD 3.4 sterror_r: it
22590         sometimes returns a positive errno value even when it succeeds.
22591         (print_errno_message) [!LIBC]: Fall back on strerror if
22592         __strerror_r fails.
22593
22594         * lib/path-concat.c (mempcpy): Don't define if a system header defines
22595         it. Don't include stdio.h, stdlib.h, unistd.h, strdup.h.
22596         (longest_relative_suffix): New function.
22597         (path_concat): Use it.  Assume first argument is not NULL.
22598         Port to DOS.  Omit redundant separators.
22599         Report an error instead of returning NULL.
22600         Use mempcpy instead of memcpy.
22601         (xpath_concat): Remove: not declared or used.
22602
22603         * lib/same.h: Include <stdbool.h>
22604         (same_name): Return bool, not int.
22605         * lib/same.c (same_name): Likewise.
22606         (errno): Don't declare; we assume C89 or better now.
22607
22608         * lib/stat-macros (S_ISCTG, S_ISOFD, S_ISOFL): New macros,
22609         if not already defined.
22610
22611         * lib/xgetcwd.c (errno): Don't declare; we assume C89 or better now.
22612         * lib/dup-safer.c (errno): Likewise.
22613
22614 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
22615
22616         Merge from coreutils.
22617         * modules/c-strtod, modules/c-strtold, modules/canonicalize:
22618         * modules/cycle-check, modules/fcntl-safer, modules/getcwd: New files.
22619         * modules/path-concat: Don't depend on strdup.
22620
22621 2004-08-03  Simon Josefsson  <jas@extundo.com>
22622
22623         * lib/strdup.h: Only use HAVE_DECL_STRDUP if defined.
22624         * lib/progname.h: Don't include stdbool.h.
22625
22626 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
22627
22628         * modules/fatal: Remove, as the "fatal" module wasn't used or working.
22629         * MODULES.html.sh (func_all_modules): Remove fatal.
22630
22631 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
22632
22633         * m4/fatal.m4: Remove, as the "fatal" module wasn't used or working.
22634
22635 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
22636
22637         * lib/fatal.c, fatal.h: Remove as the "fatal" module wasn't used or
22638         working.
22639
22640 2004-08-02  Simon Josefsson  <jas@extundo.com>
22641
22642         * lib/getsubopt.h: New file, with comments from Bruno Haible.
22643         * lib/getsubopt.c: New file, from glibc, but slightly modified based on
22644         suggestions from Paul Eggert <eggert@cs.ucla.edu>.
22645
22646 2004-08-01  Simon Josefsson  <jas@extundo.com>
22647
22648         * lib/xgetdomainname.c: Include stdlib.h, for free().
22649
22650 2004-07-19  Bruno Haible  <bruno@clisp.org>
22651
22652         * MODULES.html.sh (func_all_modules): Add dummy.
22653
22654 2004-07-16  Simon Josefsson  <jas@extundo.com>
22655
22656         * modules/dummy: New file.
22657
22658 2004-07-16  Simon Josefsson  <jas@extundo.com>
22659
22660         * lib/dummy.c: New file.
22661
22662 2004-07-16  Bruno Haible  <bruno@clisp.org>
22663
22664         * lib/backupfile.h: Add extern "C" for C++.
22665         * lib/closeout.h: Likewise.
22666         * lib/copy-file.h: Likewise.
22667         * lib/findprog.h: Likewise.
22668         * lib/full-write.h: Likewise.
22669         * lib/pathname.h: Likewise.
22670         * lib/progname.h: Likewise.
22671         * lib/stpcpy.h: Likewise.
22672         * lib/stpncpy.h: Likewise.
22673         * lib/strcase.h: Likewise.
22674         * lib/strstr.h: Likewise.
22675         * lib/xalloc.h: Likewise.
22676
22677         * lib/mbswidth.h: Add extern "C" for C++.
22678         Reported by Albert Chin-A-Young <china@thewrittenword.com>.
22679
22680 2004-07-13  Robert Millan  <robertmh@gnu.org>
22681
22682         * m4/host-os.m4: s/KNetBSD/kNetBSD/g and s/KFreeBSD/kFreeBSD/g.
22683
22684 2004-07-09  Simon Josefsson  <jas@extundo.com>
22685
22686         * lib/getndelim2.c: Include stddef.h, for ptrdiff_t.  (FreeBSD 4.9
22687         failed without this.)
22688
22689 2004-07-09  Paul Eggert  <eggert@cs.ucla.edu>
22690
22691         * modules/chown (Files): Add lib/fchown-stub.c, since
22692         gl_PREREQ_CHOWN invokes AC_LIBOBJ(fchown-stub).
22693
22694 2004-07-09  Paul Eggert  <eggert@cs.ucla.edu>
22695
22696         * lib/fchown-stub.c: New file.
22697
22698 2004-06-24  Jim Meyering  <jim@meyering.net>
22699
22700         * lib/obstack.h (obstack_base): Cast to (void *), per documentation.
22701
22702 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
22703
22704         * modules/argz: Omit "#include".
22705
22706         * MODULES.html.sh (func_all_modules): Add calloc, to match
22707         2004-06-01 addition of calloc module.
22708
22709 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
22710
22711         * m4/argz.m4: New file, which is autoupdated from libtool.
22712
22713 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
22714
22715         * lib/argz.c, lib/argz_.h: New files, which are autoupdated from
22716         libtool.
22717
22718 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
22719
22720         * config/srclist-update: Don't insist on "USA." before the
22721         close-comment, as libtool omits the period and puts the */ on a
22722         separate line.
22723         * config/srclist.txt: Add argz.c, argz_.h, argz.m4.
22724         * config/srclistvars.sh: Add LIBTOOL (for eggert only).
22725
22726 2004-06-22  Gary V. Vaughan  <gary@gnu.org>
22727
22728         * modules/argz: New file.
22729         * MODULES.html.sh (func_all_modules): Add argz.
22730
22731 2004-06-12  Jim Meyering  <jim@meyering.net>
22732         and  Paul Eggert  <eggert@cs.ucla.edu>
22733
22734         * modules/hash (Files): Add lib/xalloc.h.
22735         * modules/pipe (Depends-on): Add wait-process.
22736         * modules/stat (Depends-on): Add xalloc.
22737         * modules/userspec (Files): Add lib/userspec.h.
22738         * modules/xstrto
22739
22740         Upgrade from gettext-0.13.
22741         * modules/gettext (Files): Add m4/intmax.m4, m4/longdouble.m4,
22742         m4/longlong.m4, m4/printf-posix.m4, m4/signed.m4, m4/size_max.m4,
22743         m4/wchar_t.m4, m4/wint_t.m4, m4/xsize.m4.
22744
22745 2004-06-10  Jim Meyering  <jim@meyering.net>
22746
22747         * lib/calloc.c: New file.
22748
22749 2004-06-06  Paul Eggert  <eggert@cs.ucla.edu>
22750
22751         * lib/getdate.y (yylex): Allow space between sign and number.
22752         Problem reported by Dan Jacobson.
22753
22754 2004-06-01  Paul Eggert  <eggert@cs.ucla.edu>
22755
22756         Merge from coreutils CVS.
22757
22758         * m4/backupfile.m4, dirname.m4, human.m4, inttypes.m4, longlong.m4,
22759         makepath.m4, memchr.m4, memcmp.m4, mountlist.m4, path-concat.m4,
22760         putenv.m4, quotearg.m4, readutmp.m4, strtoimax.m4, strtoll.m4,
22761         strtoull.m4, strtoumax.m4, ulonglong.m4, vasnprintf.m4,
22762         xstrtol.m4: Fix copyright date and/or serial number.
22763
22764         * m4/chown.m4 (gl_PREREQ_CHOWN): Check for fcntl.h.
22765         See if we need an fchown replacement.
22766         (gl_FUNC_CHOWN_FOLLOWS_SYMLINK): New macro.
22767         (gl_FUNC_CHOWN): Require gl_FUNC_CHOWN_FOLLOWS_SYMLINK,
22768         and use the replacement function if we detect either defect.
22769
22770         * m4/prereq.m4 (gl_PREREQ): Add gl_ALLOCSA, gl_CLOEXEC, gl_INTTOSTR,
22771         gl_UTIMECMP.
22772
22773 2004-06-01  Paul Eggert  <eggert@cs.ucla.edu>
22774         and  Jim Meyering  <jim@meyering.net>
22775
22776         Merge from coreutils CVS.
22777
22778         * lib/stat-macros.h: New file, with contents from file-type.h
22779         and coreutils' system.h.
22780         * lib/file-type.c: Include "stat-macros.h".
22781         * lib/file-type.h (file_type): Move all macro definitions to new file,
22782         stat-macros.h.
22783
22784         * lib/chown.c (rpl_chown) [CHOWN_FAILS_TO_HONOR_ID_OF_NEGATIVE_ONE]:
22785         Wrap old code with this conditional.
22786         [CHOWN_MODIFIES_SYMLINK]: Try to work around a chown
22787         function that does not dereference symlinks.
22788         * lib/lchown.c (lchown) [CHOWN_MODIFIES_SYMLINK]: Just call chown.
22789
22790         * lib/xreadlink.c: Include xreadlink.h first, to catch .h file
22791         dependency problems.
22792         (xreadlink): Accept new arg SIZE, for efficiency.
22793         All decls and uses changed.
22794         * lib/xreadlink.h: Include <stddef.h>, for size_t.
22795
22796         * lib/.cppi-disable: Add alloca_.h, allocsa.h, exit.h, getndelim2.h,
22797         gettext.h, localcharset.h, strdup.h, strndup.h, strtoul.c, time_r.h.
22798
22799         * lib/.cvsignore: Add alloca.h, fnmatch.h, poll.h, stdbool.h,
22800         sysexits.h.
22801
22802 2004-06-01  Jim Meyering  <jim@meyering.net>
22803
22804         * m4/calloc.m4: New file.
22805
22806 2004-05-31  Paul Eggert  <eggert@cs.ucla.edu>
22807
22808         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Detect _Bool bug in HP aC++/ANSI
22809         C B3910B A.05.55 [Dec 04 2003].  Problem reported by Jim Meyering.
22810         Also, fix a typo in a diagnostic.
22811
22812 2004-05-30  Paul Eggert  <eggert@cs.ucla.edu>
22813
22814         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Do not require AC_FUNC_MALLOC
22815         or AC_FUNC_REALLOC.
22816
22817 2004-05-30  Paul Eggert  <eggert@cs.ucla.edu>
22818
22819         * lib/xmalloc.c (HAVE_MALLOC, HAVE_REALLOC): Do not require these
22820         macros to be defined.
22821         (xnmalloc_inline, xnrealloc_inline, xcalloc): Do not die if
22822         the allocator returns NULL because the requested size is zero.
22823
22824 2004-05-20  Paul Eggert  <eggert@cs.ucla.edu>
22825
22826         * lib/malloc/obstack.c (_obstack) [defined _LIBC]: Bring back this
22827         var.  Add comment explaining why libc still defines it.  This
22828         merges the following patch from glibc:
22829         http://sources.redhat.com/ml/libc-alpha/2004-05/msg00157.html
22830
22831 2004-05-20  Andreas Schwab  <schwab@suse.de>
22832
22833         * m4/free.m4: Replace free if it not known to work, not the other
22834         way round.
22835
22836 2004-05-19  Paul Eggert  <eggert@cs.ucla.edu>
22837
22838         * lib/obstack.c (_obstack): Remove unused variable.  It hasn't been
22839         present in glibc since revision 1.1 of this file.
22840         * lib/obstack.h (_obstack_free, obstack_1grow, obstack_1grow_fast,
22841         obstack_alignment_mask, obstack_alloc, obstack_base,
22842         obstack_blank, obstack_blank_fast, obstack_chunk_size,
22843         obstack_copy, obstack_copy0, obstack_finish, obstack_grow,
22844         obstack_grow0, obstack_init, obstack_int_grow,
22845         obstack_int_grow_fast, obstack_make_room, obstack_memory_used,
22846         obstack_next_free, obstack_object_size, obstack_ptr_grow,
22847         obstack_ptr_grow_fast, obstack_room): Remove declarations of
22848         nonexistent functions.
22849
22850 2004-05-18  Karl Berry  <karl@gnu.org>
22851
22852         * config/srclist.txt: break link for vasnprintf.c.
22853
22854 2004-05-17  Paul Eggert  <eggert@cs.ucla.edu>
22855
22856         Port obstack to the AS/400, where pointers are 16 bytes wide and
22857         you cannot cast an integer to a valid pointer.  This patch is
22858         currently waiting to be integrated into glibc; see
22859         <http://sources.redhat.com/ml/libc-alpha/2004-05/msg00073.html>.
22860
22861         * lib/obstack.h (__PTR_TO_INT, __INT_TO_PTR): Remove.
22862         All uses of __INT_TO_PTR (PTR_TO_INT ...) replaced by __PTR_ALIGN.
22863         (__BPTR_ALIGN, __PTR_ALIGN): New macros.
22864         (struct obstack): temp member is now a union of a pointer and
22865         an integer, instead of an integer.  All integer uses changed.
22866         This does not affect the physical layout of struct obstack,
22867         except on hosts (like the AS/400) where the size or alignment of
22868         void * is greater than that of ptrdiff_t.
22869         (obstack_finish) [! (defined __GNUC__ && defined __STDC__ &&
22870         __STDC__)]: Store temporary in pointer member of union, not
22871         integer member.
22872         * lib/obstack.c: Include <stddef.h>, for offsetof.
22873         (struct fooalign): Remove; it doesn't need a name.
22874         (union fooround): Change double to long double, and add void *.
22875         (DEFAULT_ALIGNMENT): Use offsetof to compute.
22876         (DEFAULT_ALIGNMENT, DEFAULT_ROUNDING): Now an enum constant,
22877         not a macro.  Hence the values are always int; so remove all
22878         casts-to-int in uses.
22879
22880 2004-05-17  Paul Eggert  <eggert@cs.ucla.edu>
22881
22882         * config/srclist.txt: Break link for argp-help.c and argp-parse.c until
22883         we can get this patch merged into glibc.
22884
22885 2004-05-17  Derek R. Price  <derek@ximbiot.com>
22886             Paul Eggert  <eggert@cs.ucla.edu>
22887
22888         * m4/argp: Depend on alloca.
22889
22890 2004-05-17  Derek R. Price  <derek@ximbiot.com>
22891             Paul Eggert  <eggert@cs.ucla.edu>
22892
22893         * lib/argp-help.c, argp-parse.c: Assume <alloca.h> rather than
22894         freecoding.
22895
22896 2004-05-17  Bruno Haible  <bruno@clisp.org>
22897
22898         * lib/vasnprintf.c (VASNPRINTF): Correctly handle the case of a
22899         precision that consists of a '.' followed by an empty digit string.
22900         Patch by Tor Lillqvist <tml@iki.fi>.
22901
22902 2004-05-16  Paul Eggert  <eggert@cs.ucla.edu>
22903
22904         * m4/alloca.m4 (gl_FUNC_ALLOCA): Define HAVE_ALLOCA_H always,
22905         for backward compatibility with older code.  We need our own
22906         alloca.h if _AIX is defined.  Define HAVE_ALLOCA if we discover
22907         it under some other name, and our alloca.h will define it.
22908
22909 2004-05-16  Paul Eggert  <eggert@cs.ucla.edu>
22910             Derek Price  <derek@ximbiot.com>
22911
22912         * lib/alloca.c: Include <alloca.h>, to get our interface.
22913         * lib/alloca_.h: Use __alloca on AIX, so that we don't have to
22914         include <alloca.h> first.  Use C89 prototype for alloca; this
22915         requires including <stddef.h> for size_t.  Use extern "C" if C++.
22916         Use #elif for simplicity, since we can assume C89 now.
22917         Don't try to source the system alloca.h since it will not be found
22918         and to prevent recursively including its replacement.
22919         * lib/fnmatch.c: Include <alloca.h> instead of opencoding.
22920         * lib/regex.c: Likewise.
22921
22922 2004-05-16  Derek Price  <derek@ximbiot.com>
22923             Paul Eggert  <eggert@cs.ucla.edu>
22924
22925         getline cleanup.  This changes the getndelim2 API: both order of
22926         arguments, and meaning of delim2 (now uses EOF, not 0, to indicate
22927         no delimiter).
22928
22929         * lib/getline.c: Don't include stddef.h or stdio.h, since our
22930         interface does that.
22931         (getline): Always use getdelim, so that we don't have two
22932         copies of this code.
22933         * lib/getndelim2.c: Include <limits.h>, <inttypes.h>, <stdint.h>
22934         if available.
22935         (PTRDIFF_MAX, SIZE_MAX, SSIZE_MAX): Define if not defined.
22936         (GETNDELIM2_MAXIMUM): New macro.
22937         (getndelim2): Reorder arguments.  delim==EOF now means no delimiter,
22938         instead of the old practice of delim2==0.  All callers changed.
22939         Return -1 on overflow, instead of returning junk.
22940         Do not set *linesize unless allocation succeeds.
22941         * lib/getndelim2.h: Do not include stddef.h; no longer needed, now
22942         that we include sys/types.h.
22943         * lib/getnline.h: Likewise.
22944         * lib/getndelim2.h (GETNLINE_NO_LIMIT): New macro.
22945         (getndelim2): Reorder arguments.
22946         * lib/getnline.c (getnline, getndelim):
22947         Don't discard the NMAX argument.
22948         (getnline): Invoke getndelim, to avoid code duplication.
22949         * lib/getnline.h (GETNLINE_NO_LIMIT): New macro, used instead
22950         of (size_t) -1 by callers of the getnline family.
22951
22952 2004-05-13  Paul Eggert  <eggert@cs.ucla.edu>
22953
22954         * m4/gettime.m4 (gl_GETTIME): Require gl_TIMESPEC.
22955         Check for gettimeofday.
22956         * m4/settime.m4 (gl_SETTIME): Require gl_TIMESPEC.
22957         Check for settimeofday, stime.
22958
22959 2004-05-13  Paul Eggert  <eggert@cs.ucla.edu>
22960
22961         * lib/nanosleep.c (suspended): Change its type from int to
22962         sig_atomic_t volatile.
22963         (first_call): Make it private to rpl_nanosleep, and have it
22964         be zero initially as that's a bit faster.
22965         (my_usleep): Round up fractional times instead of truncating them,
22966         as this is the usual meaning for 'sleep'.
22967
22968         * lib/gettime.c (gettime): Fall back on `time' if `gettimeofday'
22969         doesn't work.
22970         * lib/settime.c: Include <unistd.h>, for stime (on Solaris 8, anyway).
22971         (ENOSYS): Define if not defined.
22972         (settime): Fall back on stime if it exists and settimeofday fails.
22973         But don't bother with fallbacks if a method fails with errno == EPERM.
22974
22975 2004-05-11  Jim Meyering  <jim@meyering.net>
22976
22977         Prior to this change, the save_cwd caller required read access to the
22978         current directory on most systems (ones with the fchdir function).
22979
22980         * lib/save-cwd.c (save_cwd) [HAVE_FCHDIR]: If opening `.' read-only
22981         fails, try write-only, and finally, resort to using xgetcwd.
22982
22983 2004-05-06  Paul Eggert  <eggert@cs.ucla.edu>
22984
22985         * lib/obstack.c, obstack.h: Import changes from libc.
22986
22987 2004-04-28  Bruno Haible  <bruno@clisp.org>
22988
22989         * lib/findprog.c (find_in_path): Treat Cygwin like Windows, since it
22990         also implicitly appends .exe to executables.
22991         * lib/localcharset.c (ISSLASH): Treat Cygwin like Windows, since it now
22992         accepts Windows pathnames.
22993         * lib/pathname.h (ISSLASH, IS_PATH_WITH_DIR, FILESYSTEM_PREFIX_LEN):
22994         Treat Cygwin like Windows, since it now accepts Windows pathnames.
22995         * lib/progreloc.c (ISSLASH, IS_PATH_WITH_DIR, FILESYSTEM_PREFIX_LEN):
22996         Treat Cygwin like Windows, since it now accepts Windows pathnames.
22997         Reported by Derek Robert Price <derek@ximbiot.com>.
22998
22999 2004-04-21  Karl Berry  <karl@gnu.org>
23000
23001         * config/srclist.txt (localcharset.c): break sync.
23002
23003 2004-04-20  Paul Eggert  <eggert@twinsun.com>
23004
23005         * m4/host-os.m4: Add a copyright notice.
23006
23007 2004-04-20  Jim Meyering  <jim@meyering.net>
23008
23009         Change UTILS_ to gl_ in AC_DEFINE'd names.
23010         Change utils_- and jm_-prefixed variables, too.
23011         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Renamed from
23012         UTILS_FUNC_MKDIR_TRAILING_SLASH.
23013         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Renamed from UTILS_FUNC_MKSTEP.
23014
23015         * m4/dirfd.m4 (gl_FUNC_DIRFD): Rename from UTILS_FUNC_DIRFD.
23016         Don't emit trailing blanks.
23017         Also rename jm_-prefixed variables to have gl_ prefix.
23018
23019         * m4/host-os.m4 (gl_HOST_OS): Rename from UTILS_HOST_OS.
23020         Also rename jm_-prefixed variables to have gl_ prefix.
23021
23022         * m4/jm-macros.m4: Reflect the renamings.
23023         * m4/prereq.m4: Likewise.
23024
23025 2004-04-20  Jim Meyering  <jim@meyering.net>
23026
23027         * lib/getndelim2.c (getndelim2): Upon realloc failure, don't leak
23028         memory.
23029
23030 2004-04-20  Jim Meyering  <jim@meyering.net>
23031             Bruno Haible  <bruno@clisp.org>
23032
23033         * lib/localcharset.c (get_charset_aliases) [!VMS && !WIN32]: Don't leak
23034         memory when realloc fails.
23035
23036 2004-04-19  Jim Meyering  <jim@meyering.net>
23037
23038         * m4/readutmp.m4 (gl_PREREQ_READUTMP): Require gl_FUNC_FREE,
23039         now that readutmp.c may call `free (0)'.
23040
23041 2004-04-19  Bruno Haible  <bruno@clisp.org>
23042
23043         * m4/mbrtowc.m4: Change jm_ to gl_ in cache variables as well.
23044         * m4/inttypes_h.m4: Likewise.
23045         * m4/stdint_h.m4: Likewise.
23046         * m4/intmax_t.m4: Likewise.
23047         * m4/uintmax_t.m4: Likewise.
23048
23049 2004-04-18  Jim Meyering  <jim@meyering.net>
23050
23051         * m4/prereq.m4: Don't forbid jm_ prefix.
23052
23053         * m4/afs.m4, m4/allocsa.m4, m4/assert.m4, m4/backupfile.m4:
23054         * m4/bison.m4, m4/check-decl.m4, m4/chown.m4, m4/d-ino.m4:
23055         * m4/d-type.m4, m4/dirname.m4, m4/dos.m4, m4/error.m4, m4/fpending.m4:
23056         * m4/fstypename.m4, m4/fsusage.m4, m4/ftruncate.m4, m4/getdate.m4:
23057         * m4/getgroups.m4, m4/gettext.m4, m4/glibc21.m4, m4/group-member.m4:
23058         * m4/human.m4, m4/intmax.m4, m4/intmax_t.m4, m4/inttostr.m4:
23059         * m4/inttypes.m4, m4/inttypes_h.m4, m4/jm-macros.m4, m4/jm-winsz1.m4:
23060         * m4/jm-winsz2.m4, m4/lchown.m4, m4/lib-check.m4, m4/link-follow.m4:
23061         * m4/localcharset.m4, m4/longlong.m4, m4/ls-mntd-fs.m4, m4/lstat.m4:
23062         * m4/makepath.m4, m4/mbrtowc.m4, m4/mbswidth.m4, m4/memchr.m4:
23063         * m4/memcmp.m4, m4/mkdtemp.m4, m4/mkstemp.m4, m4/mountlist.m4:
23064         * m4/nanosleep.m4, m4/path-concat.m4, m4/perl.m4, m4/prereq.m4:
23065         * m4/putenv.m4, m4/quotearg.m4, m4/regex.m4, m4/stat.m4:
23066         * m4/stdint_h.m4, m4/strftime.m4, m4/strtoimax.m4, m4/strtoll.m4:
23067         * m4/strtoull.m4, m4/strtoumax.m4, m4/timespec.m4, m4/uintmax_t.m4:
23068         * m4/ulonglong.m4, m4/unlink-busy.m4, m4/unlocked-io.m4, m4/uptime.m4,
23069         * m4/utimbuf.m4, m4/utime.m4, m4/utimes-null.m4, m4/vasnprintf.m4:
23070         * m4/xstrtoimax.m4, m4/xstrtol.m4, m4/xstrtoumax.m4:
23071         Change jm_ to gl_ in AC_DEFINE'd names. Update all uses.
23072
23073 2004-04-18  Jim Meyering  <jim@meyering.net>
23074
23075         * lib/readutmp.c (read_utmp) [UTMP_NAME_FUNCTION]: Upon realloc
23076         failure, don't leak memory and do call END_UTMP_ENT.
23077
23078 2004-04-16  Jim Meyering  <jim@meyering.net>
23079
23080         * m4/prereq.m4 (jm_PREREQ_STAT): Remove macro.  It is specific to
23081         coreutils' stat program.
23082         (gl_PREREQ): Don't require jm_PREREQ_STAT.
23083
23084 2004-04-11  Paul Eggert  <eggert@twinsun.com>
23085
23086         * lib/inttostr.h: Include <limits.h> unconditionally, since we assume
23087         C89.
23088         (CHAR_BIT): Remove, since we assume C89.
23089         Include <stdint.h> if available, as per current Autoconf CVS advice.
23090
23091 2004-03-31  Jim Meyering  <jim@meyering.net>
23092
23093         * m4/prereq.m4: Require AC_FUNC_MALLOC, not jm_FUNC_MALLOC.
23094         Require AC_FUNC_REALLOC, not jm_FUNC_REALLOC.
23095         * m4/xalloc.m4: Likewise.
23096
23097 2004-03-30  Paul Eggert  <eggert@twinsun.com>
23098
23099         Merge from coreutils.
23100
23101         * m4/inttostr.m4: New file.
23102         * m4/getdate.m4 (gl_GETDATE): Remove time-related stuff.
23103         Require AM_STDBOOL_H and gl_TIMESPEC instead.
23104         Require gl_CLOCK_TIME.
23105         * m4/clock_time.m4 (gl_CLOCK_TIME): Require AC_GNU_SOURCE.
23106
23107 2004-03-30  Paul Eggert  <eggert@twinsun.com>
23108
23109         * lib/cloexec.h, cloexec.c (set_cloexec_flag): Return int
23110         not bool, to be more consistent with Unix conventions.
23111         Suggested by Bruno Haible.
23112
23113         Merge from coreutils.
23114
23115         * lib/imaxtostr.c, lib/inttostr.c, lib/inttostr.h, lib/offtostr.c:
23116         * lib/umaxtostr.c: New files.
23117
23118         * lib/getdate.h: Include stdbool.h, and timespec.h instead of
23119         the usual <time.h> dance.
23120         (get_date): Change signature to support fractional time stamps.
23121         All callers changed.
23122         * lib/getdate.y: Include "getdate.h" first, as we can now
23123         assume C89 and don't need to worry about 'const'.
23124         Similarly, include "unlocked-io.h" near start, not in middle.
23125         Include <limits.h>.
23126         (textint.value): Use long int rather than int.
23127         (textint.digits): Use size_t rather than int.
23128         (BILLION, LOG10_BILLION): New constants.
23129         (parser_control): New member rel_ns.  Members day_ordinal,
23130         time_zone, month, day, hour, minutes, rel_year, rel_month,
23131         rel_day, rel_hour, rel_minutes, rel_seconds
23132         are now long int, not int.  Member seconds is now struct timespec,
23133         not int.  New member timespec_seen.  Members dates_seen, days_seen,
23134         local_zones_seen, rels_seen, times_seen, zones_seen are now size_t,
23135         not int.
23136         (%union.intval): Now long int, not int.
23137         New member timespec.
23138         (tSDECIMAL_NUMBER, tUDECIMAL_NUMBER): New tokens.
23139         (seconds, signed_seconds, unsigned_seconds): New nonterminals.
23140         (spec): Now is a timespec or an item list.
23141         (timespec, items): New nonterminals.
23142         (time, rel, relunit, number, get_date):
23143         Add support for fractional seconds.
23144         (time): Fix bug: seconds weren't cleared in "00:00 +0000" syntax.
23145         (gmtime, localtime, mktime): Remove decls; not needed with C89.
23146         (to_hour): First arg is now long int, not int.
23147         (to_year): Returns long int, not int.
23148         Don't treat year -70 like 70.
23149         (tm_diff): Returns long int, not int.
23150         (lookup_word): Use bool instead of int when appropriate.
23151         (yylex): Use size_t for count, not int.
23152         Detect overflow when parsing large integer constants.
23153         Add support for fractions.
23154         (get_date): Make pointers 'const' if possible.
23155         Use more-portable code to detect integer overflow.
23156         (main) [TEST]: Adjust to above changes.  Test for localtime failure.
23157         Don't use ctime; it's not reliable if the year has >4 digits.
23158
23159         * lib/human.c (humblock): Inspect BLOCKSIZE if BLOCK_SIZE isn't set.
23160         This is for compatibility with BSD.
23161
23162         * lib/timespec.h (ST_TIME_CMP_NS, ST_TIME_CMP): Define.
23163         (ATIME_CMP, CTIME_CMP, MTIME_CMP, TIMESPEC_NS): Likewise.
23164         From coreutils' system.h.
23165
23166         * lib/userspec.c: Don't include "posixver.h".
23167         (parse_user_spec): Fall back on USER.GROUP parsing, regardless
23168         of POSIX version, as POSIX 1003.1-2001 allows that behavior as a
23169         compatible extension.  Simplify code by removing a boolean int
23170         that was always nonzero if a string was nonnull.
23171
23172 2004-03-30  Jim Meyering  <jim@meyering.net>
23173
23174         Merge from coreutils.
23175
23176         Avoid a configure-time warning about sys/ucred.h on OSF V4.0.
23177         * m4/ls-mntd-fs.m4: Test for sys/ucred.h separately, since
23178         on some systems one must include <grp.h> before it.
23179         Reported by Christian Krackowizer.
23180
23181 2004-03-30  Jim Meyering  <jim@meyering.net>
23182
23183         Merge from coreutils.
23184
23185         * lib/mountlist.c [HAVE_SYS_UCRED_H]: Include grp.h before sys/ucred.h.
23186
23187         * lib/readtokens.c (readtoken): Don't leak 64 bytes when reading
23188         an empty input stream.
23189
23190         * lib/readtokens.c: Include <stdbool.h>.
23191         (readtoken): Use `size_t' rather than int/long.
23192         All callers adjusted.
23193         Use `bool' rather than `int' where appropriate.
23194         Use memset rather than an explicit loop.
23195         Use x2nrealloc rather than xrealloc.
23196         Allow the use of `\0' as a delimiter.
23197         (readtokens): Likewise.
23198         * lib/readtokens.h (readtoken, readtokens): Update prototypes.
23199
23200 2004-03-30  Jim Meyering  <jim@meyering.net>
23201
23202         * m4/realloc.m4: Remove file, since now it does no more than
23203         AC_REQUIRE([AC_FUNC_REALLOC]), and that can be done via
23204         the `configure.ac' section of module/realloc.
23205         * m4/malloc.m4: Likewise, but for AC_FUNC_MALLOC.
23206
23207 2004-03-30  Bruno Haible  <bruno@clisp.org>
23208
23209         * lib/getloadavg.c (getloadavg): Don't assume setlocale returns
23210         nonnull.
23211
23212 2004-03-29  Paul Eggert  <eggert@twinsun.com>
23213
23214         Merge changes to getloadavg.c from coreutils and Emacs.
23215
23216         * lib/getloadavg.c [!defined HAVE_SETLOCALE] (setlocale):
23217         Define to an expression, not to the empty string.
23218         Include cloexec.h and xalloc.h.
23219         (getloadavg): Restore LC_NUMERIC locale after setting it temporarily.
23220         Use set_cloexec_flag rather than rolling our own.
23221         * lib/cloexec.c, lib/cloexec.h: New files.
23222
23223 2004-03-29  Paul Eggert  <eggert@twinsun.com>
23224
23225         * m4/cloexec.m4: New file.
23226
23227 2004-03-18  Paul Eggert  <eggert@twinsun.com>
23228
23229         * lib/getopt.h: Sync with libc CVS.
23230
23231 2004-03-18  Paul Eggert  <eggert@twinsun.com>
23232             Bruno Haible  <bruno@clisp.org>
23233
23234         * m4/mbswidth.m4 (gl_MBSWIDTH): Also test whether <wchar.h> declares
23235         mbswidth.
23236
23237 2004-03-18  Paul Eggert  <eggert@twinsun.com>
23238             Bruno Haible  <bruno@clisp.org>
23239
23240         * lib/mbswidth.h: Include <wchar.h> only if
23241         HAVE_DECL_MBSWIDTH_IN_WCHAR_H, not on all platforms that have
23242         <wchar.h>.
23243         * lib/mbswidth.c: Include <stdio.h> and <time.h> before <wchar.h>.
23244
23245 2004-03-09  Paul Eggert  <eggert@twinsun.com>
23246
23247         * lib/argp-parse.c, getopt.c, getopt.h, getopt1.c:
23248         Sync with libc CVS.
23249         * lib/getopt_int.h: New file, also synced from libc.
23250
23251 2004-03-09  Paul Eggert  <eggert@twinsun.com>
23252
23253         * config/srclistvars.sh: Add GNUWWWLICENSES for eggert.
23254         * config/srclist.txt: Sync getopt with libc.  Add getopt_int.h.
23255         Bring back getopt.c, getopt.h, getopt1.c.
23256
23257 2004-03-07  Paul Eggert  <eggert@twinsun.com>
23258
23259         * m4/c-stack.m4 (gl_PREREQ_C_STACK): Renamed from jm_PREREQ_C_STACK.
23260         All uses changed.  Check for sa_sigaction member; this fixes
23261         a bug first reported by Jason Andrade in
23262         <http://mail.gnu.org/archive/html/bug-textutils/2003-03/msg00027.html>.
23263
23264 2004-03-07  Paul Eggert  <eggert@twinsun.com>
23265
23266         * lib/c-stack.c (SIGACTION_WORKS): New macro.  Use it instead of long
23267         '#if' expressions.  Unlike the code it replaces, it does not
23268         depend on (defined _SC_PAGESIZE).  However, it does depend on
23269         HAVE_STRUCT_SIGACTION_SA_SIGACTION; this last change fixes a bug
23270         first reported by Jason Andrade in
23271         <http://mail.gnu.org/archive/html/bug-textutils/2003-03/msg00027.html>.
23272
23273 2004-02-25  Simon Josefsson  <jas@extundo.com>
23274
23275         * m4/strdup.m4 (gl_PREREQ_STRDUP): Check whether strdup is declared.
23276
23277 2004-02-25  Simon Josefsson  <jas@extundo.com>
23278
23279         * lib/strdup.h: New file.
23280         * lib/strdup.c: Include it.
23281         * lib/path-concat.c: Include strdup.h. Drop strdup declaration.
23282         * lib/userspec.c: Include strdup.h. Drop strdup declaration.
23283
23284 2004-02-23  Karl Berry  <karl@gnu.org>
23285
23286         * doc/maintain.texi, doc/standards.texi, doc/make-stds.texi: new files
23287         (from fencepost.gnu.org:/gd/gnuorg).
23288
23289 2004-02-23  Karl Berry  <karl@gnu.org>
23290
23291         * config/srclistvars.sh (GNUORG) [karl]: redefine.
23292         * config/srclist.txt: add maintain/standards documents.
23293
23294 2004-02-18  Bruno Haible  <bruno@clisp.org>
23295
23296         * m4/xsize.m4 (gl_XSIZE): Require AC_C_INLINE.
23297         Reported by Derek Robert Price <derek@ximbiot.com>.
23298
23299 2004-02-16  Karl Berry  <karl@gnu.org>
23300
23301         * config/mkinstalldirs, install-sh: update from automake.
23302
23303 2004-02-06  Karl Berry  <karl@gnu.org>
23304
23305         * m4/po.m4: update from gettext 0.14.1.
23306
23307 2004-02-06  Karl Berry  <karl@gnu.org>
23308
23309         * lib/config.charset: update from gettext 0.14.1.
23310
23311 2004-02-05  Paul Eggert  <eggert@twinsun.com>
23312
23313         Add comments and code, prompted by suggestions from Bruno Haible
23314         for sh-quote.
23315         * lib/quotearg.h (quotearg_alloc): New decl.  Improve the comments
23316         describing the enum quoting_style values.
23317         * lib/quotearg.c (quotearg_alloc): New function.
23318         (quotearg_buffer_restyled): Treat lone { and } as special.
23319         Treat = as special.  Work around bug with older shells
23320         that "see" a '\' that is really the 2nd byte of a multibyte char.
23321         Quote empty string with shell_quoting_style.
23322
23323 2004-02-03  Bruno Haible  <bruno@clisp.org>
23324
23325         * m4/pipe.m4: New file, from GNU gettext.
23326
23327 2004-02-03  Bruno Haible  <bruno@clisp.org>
23328
23329         * lib/pipe.h: New file, from GNU gettext.
23330         * lib/pipe.c: New file, from GNU gettext.
23331
23332 2004-01-27  Bruno Haible  <bruno@clisp.org>
23333
23334         * m4/execute.m4: New file, from GNU gettext.
23335
23336 2004-01-27  Bruno Haible  <bruno@clisp.org>
23337
23338         * lib/execute.h: New file, from GNU gettext.
23339         * lib/execute.c: New file, from GNU gettext.
23340         * lib/w32spawn.h: New file, from GNU gettext.
23341
23342 2004-01-24  Paul Eggert  <eggert@twinsun.com>
23343
23344         Merge from diffutils.
23345
23346         * lib/file-type.c (file_type): Add typed memory objects.
23347         * lib/file-type.h (S_TYPEISTMO): New macro.
23348
23349         * lib/c-stack.h (c_stack_action): Remove argv argument.
23350         * lib/c-stack.c (c_stack_action): Likewise.  All uses changed.
23351         (die): Don't calculate message unless segv_action returns.
23352         (get_stack_location, min_address_from_argv, max_address_from_argv,
23353         volatile stack_base, volatile_stack_size): Remove.
23354         (segv_handler): If ! HAVE_XSI_STACK_OVERFLOW_HEURISTIC, assume
23355         that every segmentation violation is a stack overflow.  (Ouch!)
23356         See Debian bug 136249 (still outstanding) for more info about why
23357         HAVE_XSI_STACK_OVERFLOW_HEURISTIC fails on Linux kernels.
23358
23359 2004-01-24  Paul Eggert  <eggert@twinsun.com>
23360
23361         Exit-status fix from coreutils.
23362
23363         Use exit_failure consistently in place of EXIT_FAILURE,
23364         so that program exit statuses are consistent on failure.
23365
23366         * lib/argmatch.c (ARGMATCH_DIE) [! defined ARGMATCH_DIE]:
23367         Include "exitfail.h", and use exit_failure rather than EXIT_FAILURE.
23368         * lib/argmatch.h: Comment fix to match the above.
23369         * lib/obstack.c (obstack_exit_failure) [!defined _LIBC]:
23370         Now a macro referring to exit_failure, instead of a separate
23371         variable.  Include "exitfail.h" to get it.
23372         * lib/xstrtol.h: Include "exitfail.h".
23373         (STRTOL_FATAL_ERROR): Exit with status exit_failure, not 2.
23374
23375         * lib/long-options.c (parse_long_options): Use prototype
23376         for usage function arg.  Pass it EXIT_SUCCESS rather than 0,
23377         for clarity.
23378
23379 2004-01-21  Jim Meyering  <jim@meyering.net>
23380
23381         * lib/mktime.c (__mktime_internal) [!_LIBC]: Define to mktime_internal
23382         so as not to conflict with a different-sized __mktime_internal
23383         function in GNU libc.
23384         * lib/timegm.c (__mktime_internal) [!_LIBC]: Likewise.
23385         Problem building statically-linked `ls' reported by Michael Brunnbauer.
23386
23387 2004-01-20  Karl Berry  <karl@gnu.org>
23388
23389         * config/config.guess: update from config.
23390
23391         * config/srclistvars.sh: GNUWWWLICENSES for karl.
23392
23393 2004-01-20  Bruno Haible  <bruno@clisp.org>
23394
23395         Safer stack allocation.
23396         * lib/setenv.c: Include allocsa.h.
23397         (alloca): Remove fallback definition.
23398         (freea): Remove macro.
23399         (__add_to_environ) [!_LIBC]: Use allocsa instead of alloca. Use freesa
23400         instead of freea.
23401
23402 2004-01-20  Bruno Haible  <bruno@clisp.org>
23403
23404         * m4/eealloc.m4: New file, from GNU gettext.
23405
23406 2004-01-20  Bruno Haible  <bruno@clisp.org>
23407
23408         * m4/allocsa.m4: New file, from GNU gettext.
23409
23410 2004-01-20  Bruno Haible  <bruno@clisp.org>
23411
23412         * lib/xallocsa.h: New file, from GNU gettext.
23413         * lib/xallocsa.c: New file, from GNU gettext.
23414
23415 2004-01-20  Bruno Haible  <bruno@clisp.org>
23416
23417         * lib/wait-process.c: On Windows, include windows.h. Needed on mingw.
23418
23419 2004-01-20  Bruno Haible  <bruno@clisp.org>
23420
23421         * lib/wait-process.c (wait_subprocess): Add ignore_sigpipe argument.
23422         * lib/wait-process.c (wait_subprocess): Likewise. Handle SIGPIPE
23423         specially.
23424
23425 2004-01-20  Bruno Haible  <bruno@clisp.org>
23426
23427         * lib/wait-process.c (wait_process): Disable the 2003-10-31 waitid()
23428         patch.
23429
23430 2004-01-20  Bruno Haible  <bruno@clisp.org>
23431
23432         * lib/wait-process.c (cleanup_slaves): Use ANSI C declaration.
23433
23434 2004-01-20  Bruno Haible  <bruno@clisp.org>
23435
23436         * lib/eealloc.h: New file.
23437
23438 2004-01-20  Bruno Haible  <bruno@clisp.org>
23439
23440         * lib/binary-io.h: Avoid warnings on Cygwin.
23441
23442 2004-01-20  Bruno Haible  <bruno@clisp.org>
23443
23444         * lib/allocsa.h: New file, from GNU gettext.
23445         * lib/allocsa.c: New file, from GNU gettext.
23446
23447 2004-01-18  Karl Berry  <karl@gnu.org>
23448
23449         * doc/gpl.texi, doc/lgpl.texi: new files.
23450
23451 2004-01-18  Karl Berry  <karl@gnu.org>
23452
23453         * config/srclistvars.sh (GNUWWWLICENSES): new variable.
23454         * config/srclist.txt ({fdl,gpl,lgpl}.text): get from there.
23455
23456 2004-01-15  Paul Eggert  <eggert@twinsun.com>
23457
23458         Merge from coreutils.
23459
23460         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Check for uintptr_t.
23461         * m4/posixver.m4 (gl_POSIXVER): Require gl_DEFAULT_POSIX2_VERSION.
23462         (gl_DEFAULT_POSIX2_VERSION): Move
23463         the documentation from 'configure' into 'config.hin',
23464         so that 'configure --help' isn't burdened by it and
23465         we don't have to worry about its formatting there.
23466         Reword the documentation so that it's more succinct
23467         and can be run together into a single paragraph.
23468         * m4/same.m4 (gl_SAME): Check for pathconf.
23469
23470 2004-01-15  Paul Eggert  <eggert@twinsun.com>
23471
23472         Merge from coreutils.
23473
23474         * lib/posixver.c: Include posixver.h.
23475
23476         * lib/same.c: Include <stdbool.h>, <limits.h>.
23477         (_POSIX_NAME_MAX): Define if not defined.
23478         (MIN): New macro.
23479         (same_name): If file names are silently truncated, report
23480         that the file names are the same if they are the same after
23481         the silent truncation.
23482
23483         * lib/xstrtod.h (xstrtod): Accept an extra arg, specifying the
23484         conversion function.
23485         * lib/xstrtod.c (xstrtod): Likewise.  All callers changed to
23486         include c-strtod.h and use c_strtod.  Don't include stdlib.h; no
23487         longer needed.
23488
23489 2004-01-15  Jim Meyering  <jim@meyering.net>
23490
23491         Merge from coreutils.
23492
23493         * m4/clock_time.m4 (gl_CLOCK_TIME): Don't set LIB_CLOCK_GETTIME
23494         if no library is required.
23495         * m4/jm-macros.m4: Don't require UTILS_SYS_OPEN_MAX.
23496         * m4/jm-macros.m4 (jm_MACROS): Require gl_FUNC_FREE.
23497         * m4/jm-macros.m4 (jm_MACROS): Require autoconf-2.58.
23498         (AC_LANG_SOURCE): Remove definition, now that we require autoconf-2.58.
23499         * m4/jm-macros.m4 (jm_MACROS): Don't require AC_FUNC_FTW.
23500         * m4/lib-check.m4 (jm_LIB_CHECK): Do not set LIB_CRYPT to the
23501         value, $ac_cv_search_crypt, if it's "none required".
23502         * m4/posixver.m4 (gl_DEFAULT_POSIX2_VERSION): New macro.
23503         * m4/prereq.m4 (jm_PREREQ): Require AC_FUNC_GETLOADAVG,
23504         not gl_FUNC_GETLOADAVG.
23505         * m4/prereq.m4 (jm_PREREQ): Require gl_READTOKENS, gl_MD5, gl_MAKEPATH,
23506         gl_LONG_OPTIONS, and gl_IDCACHE, gl_GETUGROUPS.
23507
23508 2004-01-15  Jim Meyering  <jim@meyering.net>
23509
23510         Merge from coreutils.
23511
23512         * lib/md5.h (rol) [__GNUC__ && __i386__]: Don't use `asm' code.  These
23513         days, gcc-3.x does better all by itself.  Patch from Dean Gaudet:
23514         http://mail.gnu.org/archive/html/bug-coreutils/2003-11/msg00144.html
23515
23516         * lib/posixver.c (DEFAULT_POSIX2_VERSION): Use definition of new,
23517         optional configure-time default.
23518
23519         * lib/version-etc.c (version_etc_copyright): Update copyright date.
23520
23521         * lib/xreadlink.c (xreadlink): Correct outdated comment.
23522
23523 2004-01-15  Alexandre Duret-Lutz  <adl@gnu.org>
23524
23525         Merge from coreutils.
23526
23527         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Do not set LIB_NANOSLEEP to the
23528         value, $ac_cv_search_nanosleep, if it's "none required".
23529
23530 2004-01-14  Paul Eggert  <eggert@twinsun.com>
23531
23532         * lib/fnmatch_loop.c (ALLOCA_LIMIT): Remove macro, which collided
23533         with like-named macro in fnmatch.c.
23534         (EXT): Use an internal constant instead.
23535
23536         Merge fnmatch patches from glibc.
23537         * lib/fnmatch.c (mbsinit): Remove define.
23538         Add libc_hidden_ver (__fnmatch, fnmatch).
23539         * lib/fnmatch_loop.c (FCT): Cast to int32_t and UCHAR when appropriate.
23540         Adjust to renaming of collseq_table_lookup to __collseq_table_lookup.
23541
23542 2004-01-14  Karl Berry  <karl@gnu.org>
23543
23544         * config/install-sh: update from automake.
23545
23546 2004-01-13  Karl Berry  <karl@gnu.org>
23547
23548         * config/install-sh: update from automake.
23549
23550 2004-01-09  Karl Berry  <karl@gnu.org>
23551
23552         * config/install-sh: update from automake.
23553
23554 2004-01-05  Karl Berry  <karl@gnu.org>
23555
23556         * config/config.{sub,guess}: update from config.
23557
23558 2003-12-31  Karl Berry  <karl@gnu.org>
23559
23560         * config/depcomp: update from automake.
23561
23562 2003-12-14  Karl Berry  <karl@gnu.org>
23563
23564         * lib/config.charset: update from gettext-runtime.
23565
23566 2003-12-03  Paul Eggert  <eggert@twinsun.com>
23567
23568         * lib/getgroups.c (getgroups): xmalloc takes one argument, not two.
23569         Bug reported by Alfred M. Szmidt.
23570
23571 2003-12-03  Bruno Haible  <bruno@clisp.org>
23572
23573         * m4/gettext.m4: Upgrade from gettext-0.13.
23574         * m4/po.m4: Upgrade from gettext-0.13.
23575         * m4/size_max.m4 (gl_SIZE_MAX): Don't use the _ONCE macros here.
23576         * m4/intmax.m4: New file, from gettext-0.13.
23577         * m4/printf-posix.m4: New file, from gettext-0.13.
23578
23579 2003-11-29  Karl Berry  <karl@gnu.org>
23580
23581         * lib/argp-{help.c,parse.c,namefrob.h}, argp.h: update from libc.
23582
23583 2003-11-25  Paul Eggert  <eggert@twinsun.com>
23584             Bruno Haible  <bruno@clisp.org>
23585
23586         * lib/printf-parse.h: Don't include sys/types.h.
23587         (ARG_NONE): New macro.
23588         (char_directive): Change type of *arg_index fields to size_t.
23589         * lib/printf-parse.c: Don't include sys/types.h.
23590         (SSIZE_MAX): Remove macro.
23591         (PRINTF_PARSE): Change the type of the arg_index variables to size_t.
23592         Remove unnecessary overflow check.
23593         * lib/vasnprintf.c (VASNPRINTF): Update for type change of *arg_index
23594         fields.
23595
23596 2003-11-25  Bruno Haible  <bruno@clisp.org>
23597
23598         * modules/vasnprintf (Files): Remove m4/ssize_t.m4.
23599
23600 2003-11-25  Bruno Haible  <bruno@clisp.org>
23601
23602         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_PARSE): Don't require
23603         gt_TYPE_SSIZE_T.
23604
23605 2003-11-24  Paul Eggert  <eggert@twinsun.com>
23606
23607         * modules/alloca: Remove dependency on xalloc.
23608
23609 2003-11-24  Paul Eggert  <eggert@twinsun.com>
23610
23611         * lib/alloca.c: Remove dependency on xalloc module.
23612         (xalloc_die): Remove.
23613         (memory_full) [!defined emacs]: New macro.
23614         [!defined emacs]: Don't include xalloc.h.
23615         (alloca): Invoke memory_full, not xalloc_die, if malloc fails or
23616         address arithmetic overflows.  Change datatypes a bit to avoid
23617         unnecessary casts.
23618
23619 2003-11-22  Jim Meyering  <jim@meyering.net>
23620
23621         * lib/xmalloc.c (x2nrealloc_inline): Fix typos in comments:
23622         s/size/size_t/.
23623
23624 2003-11-21  Karl Berry  <karl@gnu.org>
23625
23626         * config/config.{sub,guess}: update from config.
23627
23628 2003-11-18  Karl Berry  <karl@gnu.org>
23629
23630         * config/config.{sub,guess}: update from config.
23631
23632         * config/(printf-{parse,args}.[ch]): sync broken, sigh.
23633
23634 2003-11-17  Paul Eggert  <eggert@twinsun.com>
23635
23636         * README: Mention that S+T cannot overflow if S is the size of
23637         an existing object and T is sufficiently small.
23638
23639 2003-11-17  Jim Meyering  <jim@meyering.net>
23640
23641         On systems without utime and without a utimes function capable of
23642         dealing with a NULL struct utimbuf* argument, this utime replacement
23643         could -- in unusual circumstances -- leak a file descriptor.
23644         * lib/utime.c: Include <unistd.h> and <errno.h>.
23645         (utime_null): Be sure to close `fd' and to preserve errno.
23646         Reported by Geoff Collyer via Arnold Robbins.
23647
23648 2003-11-17  Bruno Haible  <bruno@clisp.org>
23649
23650         * modules/vasnprintf (Files): Add m4/ssize_t.m4.
23651         (Depends-on): Add xsize.
23652
23653 2003-11-17  Bruno Haible  <bruno@clisp.org>
23654
23655         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_PARSE): Require gt_TYPE_SSIZE_T.
23656
23657 2003-11-17  Bruno Haible  <bruno@clisp.org>
23658
23659         * lib/vasnprintf.c (alloca): Remove fallback definition.
23660         (freea): Remove definition.
23661         (VASNPRINTF): Use alloca only for small sizes, say <= 4000 bytes.
23662         Reported by Paul Eggert.
23663
23664 2003-11-16  Paul Eggert  <eggert@twinsun.com>
23665             Bruno Haible  <bruno@clisp.org>
23666
23667         Protect against address arithmetic overflow.
23668         * lib/printf-args.h: Include stddef.h.
23669         (arguments): Change type of field 'count' to size_t.
23670         * lib/printf-args.c (printf_fetchargs): Use size_t instead of
23671         'unsigned int' where appropriate.
23672         * lib/printf-parse.h: Include sys/types.h.
23673         (char_directive): Change type of *arg_index fields to ssize_t.
23674         (char_directives): Change type of fields 'count', max_*_length to
23675         size_t.
23676         * lib/printf-parse.c: Include sys/types.h and xsize.h.
23677         (SSIZE_MAX): Define fallback value.
23678         (PRINTF_PARSE): Use size_t instead of 'unsigned int' and ssize_t
23679         instead of 'int' where appropriate. Check a_allocated, d_allocated
23680         against overflow. Reject %m$ argument numbers > SSIZE_MAX + 1.
23681         * lib/vasnprintf.c: Include xsize.h.
23682         (VASNPRINTF): Use size_t instead of 'unsigned int' where appropriate.
23683         Check alloca, malloc, realloc, ENSURE_ALLOCATION arguments against
23684         overflow. Avoid wraparound when converting a width or precision from
23685         decimal to binary.
23686
23687 2003-11-16  Bruno Haible  <bruno@clisp.org>
23688
23689         Update from GNU gettext.
23690         * lib/printf-parse.c: Generalize to it can be compiled for wide
23691         strings.
23692         (PRINTF_PARSE, CHAR_T, DIRECTIVE, DIRECTIVES): New macros.
23693         * lib/vasnprintf.c: Generalize to it can be compiled for wide strings.
23694         (VASNPRINTF, CHAR_T, DIRECTIVE, DIRECTIVES, PRINTF_PARSE, USE_SNPRINTF,
23695         SNPRINTF): New macros.
23696         Don't include <alloca.h> if the file is used inside libintl.
23697         (local_wcslen): New function, for Solaris 2.5.1.
23698         (VASNPRINTF): Use it instead of wcslen.
23699
23700 2003-11-16  Bruno Haible  <bruno@clisp.org>
23701
23702         * lib/xsize.h (xmax): New function.
23703         (xsum, xsum3, xsum4): Declare as "pure" functions.
23704
23705 2003-11-12  Paul Eggert  <eggert@twinsun.com>
23706
23707         * modules/xalloc (Files): Undo latest change, since xalloc.h
23708         no longer needs SIZE_MAX or PTRDIFF_MAX.
23709
23710 2003-11-12  Paul Eggert  <eggert@twinsun.com>
23711
23712         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Do not require gl_SIZE_MAX or
23713         gl_PTRDIFF_MAX.
23714
23715 2003-11-12  Paul Eggert  <eggert@twinsun.com>
23716
23717         * lib/xstrtol.c (__xstrtol): Remove "break" immediately after
23718         "return", to pacify some unknown compiler.  Problem reported
23719         by Joerg Schilling.
23720
23721 2003-11-12  Paul Eggert  <eggert@twinsun.com>
23722
23723         * lib/xalloc.h: Do not include <limits.h> or <stdint.h>.
23724         (xalloc_oversized): Use sizeof (ptrdiff_t) and sizeof (size_t) for
23725         the heuristic, rather than PTRDIFF_MAX and SIZE_MAX.  This
23726         heuristic is just as accurate as far as we know, and it removes a
23727         dependency on size_max.m4 and ptrdiff_max.m4.
23728
23729 2003-11-11  Bruno Haible  <bruno@clisp.org>
23730
23731         * modules/xsize (Files): Add m4/size_max.m4.
23732         * modules/xalloc (Files): Add m4/size_max.m4, m4/ptrdiff_max.m4.
23733
23734 2003-11-11  Bruno Haible  <bruno@clisp.org>
23735
23736         * m4/size_max.m4: New file.
23737         * m4/ptrdiff_max.m4: New file.
23738         * m4/xsize,m4 (gl_XSIZE): Require gl_SIZE_MAX.
23739         * m4/xalloc.m4 (gl_PREREQ_XALLOC): New macro.
23740         (gl_XALLOC): Invoke it.
23741
23742 2003-11-11  Bruno Haible  <bruno@clisp.org>
23743
23744         * lib/xsize.h (SIZE_MAX): Remove fallback definition.
23745         * lib/xalloc.h: Include limits.h. Assume SIZE_MAX and PTRDIFF_MAX are
23746         defined.
23747
23748 2003-11-10  Paul Eggert  <eggert@twinsun.com>
23749
23750         * lib/xalloc.h (xalloc_oversized): [! (defined PTRDIFF_MAX &&
23751         PTRDIFF_MAX < SIZE_MAX)]: Fix off-by-one error that would have
23752         rejected some allocations of exactly SIZE_MAX - 2 bytes.
23753         From Bruno Haible.
23754         [defined PTRDIFF_MAX && PTRDIFF_MAX < SIZE_MAX]: Use SIZE_MAX,
23755         not (size_t) -1, since it's defined here.
23756
23757 2003-11-09  Karl Berry  <karl@gnu.org>
23758
23759         * config/mkinstalldirs, depcomp, mdate-sh: update from automake.
23760
23761 2003-11-06  Paul Eggert  <eggert@twinsun.com>
23762
23763         * lib/xalloc.h [HAVE_STDINT_H]: Include <stdint.h>.
23764         (xalloc_oversized) [! (PTRDIFF_MAX < SIZE_MAX)]:
23765         Reject sizes of exactly SIZE_MAX bytes.
23766         * lib/xreadlink.c: Include "xalloc.h" before checking whether SIZE_MAX
23767         is defined, since "xalloc.h" now defines SIZE_MAX on modern hosts.
23768
23769 2003-11-05  Bruno Haible  <bruno@clisp.org>
23770
23771         * lib/xsize.h: Include limits.h, to avoid a possible collision with
23772         SIZE_MAX defined in <limits.h> on Solaris.
23773
23774 2003-11-04  Jim Meyering  <jim@meyering.net>
23775
23776         * modules/sysexits: Use the `$(VAR)' notation for AC_SUBST'd
23777         variable names, rather than @VAR@.
23778         * modules/poll: Likewise.
23779
23780 2003-11-04  Bruno Haible  <bruno@clisp.org>
23781
23782         * modules/xsize: New file.
23783         * modules/linebreak: Depend on xsize.
23784         * MODULES.html.sh (func_all_modules): Add xsize.
23785
23786 2003-11-04  Bruno Haible  <bruno@clisp.org>
23787
23788         * m4/xsize.m4: New file.
23789
23790 2003-11-04  Bruno Haible  <bruno@clisp.org>
23791
23792         * lib/xsize.h: New file.
23793         * lib/linebreak.c: Include xsize.h.
23794         (mbs_possible_linebreaks, mbs_width_linebreaks): Check malloc()
23795         argument for overflow.
23796         Suggested by Paul Eggert.
23797
23798 2003-11-03  Karl Berry  <karl@gnu.org>
23799
23800         * config/config.{guess,sub}: update from config.
23801
23802 2003-11-03  Jim Meyering  <jim@meyering.net>
23803
23804         * modules/userspec (lib_SOURCES): Add userspec.h.
23805         (Include): Add "userspec.h".
23806         Improve description.
23807
23808 2003-11-03  Jim Meyering  <jim@meyering.net>
23809
23810         * lib/userspec.c: Include "userspec.h".
23811         * lib/userspec.h: New file.
23812
23813 2003-11-03  Bruno Haible  <bruno@clisp.org>
23814
23815         * m4/wait-process.m4 (gl_WAIT_PROCESS): Also check for waitid.
23816
23817 2003-11-03  Bruno Haible  <bruno@clisp.org>
23818
23819         * lib/wait-process.c (wait_process): Use waitid with WNOWAIT if
23820         available, to avoid (extremely rare) race condition.
23821         Suggested by Paul Eggert.
23822
23823 2003-11-02  Karl Berry  <karl@gnu.org>
23824
23825         * config/srclist.txt (vasprintf.c): sync broken, sigh.
23826
23827 2003-10-31  Paul Eggert  <eggert@twinsun.com>
23828
23829         * lib/mountlist.h (struct mount_entry.me_type_malloced): New member.
23830         * lib/mountlist.c (SIZE_MAX): Define if not defined already.
23831         (read_filesystem_list): Set and use me_type_malloced.
23832         Use "sizeof *me" rather than "sizeof (struct mount_entry)" (or
23833         whatever the type happens to be), for brevity and consistency.
23834         Check for size calculation overflow on Alphas running OSF/1.
23835
23836 2003-10-31  Jim Meyering  <jim@meyering.net>
23837
23838         * lib/hash.c: Include "xalloc.h" for use of xalloc_oversized.
23839
23840         * lib/linebuffer.c: Include <string.h> for declaration of memset.
23841
23842 2003-10-30  Paul Eggert  <eggert@twinsun.com>
23843             Bruno Haible  <bruno@clisp.org>
23844
23845         * lib/vasprintf.c: Include <limits.h>, <stdlib.h>.
23846         (vasprintf): Fail if the resulting length doesn't fit in an 'int'.
23847
23848 2003-10-30  Paul Eggert  <eggert@cs.ucla.edu>
23849
23850         * m4/host-os.m4 (UTILS_HOST_OS): Change netbsd*-gnu pattern back to
23851         netbsd*-gnu*.  Suggested by Robert Millan.
23852
23853 2003-10-29  Paul Eggert  <eggert@twinsun.com>
23854
23855         * modules/group-member: Depend on stdbool.
23856
23857 2003-10-29  Paul Eggert  <eggert@twinsun.com>
23858
23859         * m4/xalloc.m4 (gl_XALLOC): Undo previous change.
23860
23861 2003-10-29  Paul Eggert  <eggert@twinsun.com>
23862
23863         * m4/host-os.m4 (UTILS_HOST_OS): Resurrect netbsd*-gnu.  Add comments
23864         to it, and to knetbsd*-gnu and kfreebsd*-gnu.  Remove the '*' from
23865         after the 'gnu' in these cases.  This fixes some bugs in the
23866         previous change, and is based on suggestions by Robert Millan.
23867
23868 2003-10-29  Paul Eggert  <eggert@twinsun.com>
23869
23870         * lib/xalloc.h (xalloc_oversized): Now a macro, not a function,
23871         so that it works even if SIZE_MAX < N.  Do not include <stdbool.h>;
23872         no longer needed.
23873         * lib/quotearg.c (quotearg_n_options): Use it.
23874         * lib/group-member.c: Include <stdbool.h>.
23875         (free_group_info): Arg is now const *; don't free arg.
23876         (get_group_info): Now returns bool and accepts struct group_info *,
23877         rather than returning a malloc'ed struct group_info *.
23878         All uses changed.  Check for overflow in internal size calculation.
23879
23880         * lib/getusershell.c (readname): Simplify the code by using x2nrealloc
23881         rather than xmalloc/xrealloc.
23882         * lib/linebuffer.c (initbuffer, readlinebuffer): Simplify the code by
23883         using x2realloc rather than xmalloc/xrealloc.  Also, fix a C
23884         conformance bug: the old code used a pointer after freeing the
23885         storage that it addressed.
23886         * lib/hash.c (hash_initialize): Simplify the code by using
23887         xalloc_oversized rather than doing it by hand.
23888         * lib/getgroups.c (getgroups): Don't use xrealloc, since we don't need
23889         the buffer preserved.  Use free and xmalloc instead.
23890         * lib/quotearg.c (quotearg_n_options): Likewise.
23891         Use a simpler test for size overflow.  Don't use xalloc_oversized
23892         because unsigned int might be wider than size_t (!); this suggests
23893         that we should switch from unsigned int to size_t for slot numbers.
23894
23895 2003-10-28  Paul Eggert  <eggert@twinsun.com>
23896
23897         * m4/host-os.m4 (UTILS_HOST_OS): Identify GNU/KFreeBSD and
23898         GNU/KNetBSD.  These implementations use glibc atop the FreeBSD and
23899         NetBSD kernels.  Requested by Richard Stallman.
23900
23901 2003-10-27  Paul Eggert  <eggert@twinsun.com>
23902
23903         * lib/exclude.c (new_exclude): Use xzalloc rather than xmalloc
23904         to allocate the returned structure.  Do not allocate a subarray,
23905         as x2nrealloc will do that.
23906         (add_exclude): Use x2nrealloc to reallocate ex->exclude,
23907         instead of xnrealloc.
23908         (add_exclude_file): Use x2realloc instead of malloc + xnrealloc.
23909
23910 2003-10-27  Bruno Haible  <bruno@clisp.org>
23911
23912         * lib/stdbool_.h: Better support for BeOS.
23913
23914 2003-10-26  Paul Eggert  <eggert@twinsun.com>
23915
23916         * m4/xalloc.m4 (gl_XALLOC): Requore AC_C_INLINE, since xalloc.h
23917         now uses inline.
23918
23919 2003-10-26  Paul Eggert  <eggert@twinsun.com>
23920
23921         * lib/xalloc.h (xalloc_oversized): New static inline function, for
23922         callers that want to do their own size-overflow checking.  Include
23923         <stdbool.h>, since xalloc_oversized returns bool.
23924         * lib/xalloc.c (array_size_overflow): Remove.  All callers changed
23925         to use xalloc_oversized.
23926
23927         Add two functions x2realloc, x2nrealloc, for programs that grow
23928         arrays dynamically by doubling their sizes.
23929         * lib/xalloc.h (x2realloc, x2nrealloc): New decls.
23930         * lib/xmalloc.c (x2nrealloc_inline, x2nrealloc, x2realloc):
23931         New functions.
23932
23933         Port to C99 semantics for 'inline' of external functions.
23934         Bug reported by Bruno Haible.
23935         * lib/xmalloc.c (xnmalloc_inline): New static inline function,
23936         with the old contents of xnmalloc.
23937         (xnmalloc, xmalloc): Use it.
23938         (xnrealloc_inline): New static inline function,
23939         with the old contents of xnrealloc.
23940         (xnrealloc, xrealloc): Use it.
23941
23942         * lib/alloc.c (alloca): xmalloc cannot return NULL, so don't test for
23943         that.
23944
23945 2003-10-26  Karl Berry  <karl@gnu.org>
23946
23947         * config/srclist.txt (COPYING.DOC): no longer available from
23948         /gd/gnuorg; don't know where the ultimate source is.
23949
23950 2003-10-25  Paul Eggert  <eggert@twinsun.com>
23951
23952         Fix several address-calculation bugs in the hash modules,
23953         plus some minor code cleanup.
23954
23955         * lib/hash.h: Include <stdbool.h>, for bool.
23956         * lib/hash.c: Don't include <stdbool.h>, since hash.h does it now.
23957         * lib/hash.h (Hash_hasher, hash_get_n_buckets, hash_get_n_buckets_used,
23958         hash_get_n_entries, hash_get_max_bucket_length,
23959         hash_get_entries, hash_do_for_each, hash_string, hash_initialize,
23960         hash_rehash): Use size_t rather than unsigned.
23961         * lib/hash.c (struct hash_table, hash_get_n_buckets,
23962         hash_get_n_buckets_used, hash_get_n_entries,
23963         hash_get_max_bucket_length, hash_table_ok, hash_print_statistics,
23964         hash_get_entries, hash_do_for_each, hash_string, is_prime,
23965         next_prime, hash_initialize, hash_rehash, hash_delete, hash_print):
23966         Likewise.
23967         (SIZE_MAX): Define if not defined.
23968         (hash_get_max_bucket_length, hash_table_ok, hash_lookup,
23969         hash_get_first, hash_get_next, hash_get_entries, hash_do_for_each,
23970         hash_print):
23971         Use const * when possible.
23972         (hash_string): Use (unsigned char) *P rather than *(unsigned char *) P.
23973         (check_tuning): Fix bug: if tuning parameters were very close to
23974         0 or 1, rounding errors could have caused subscript violations.
23975         (hash_initialize, allocate_entry, hash_print): Remove unnecessary cast.
23976         (hash_initialize): Add 'fail:' label
23977         to free table and return NULL, and use it to simplify code.
23978         Use calloc rather than clearing the storage ourself.
23979         (hash_initialize, hash_rehash): Check for arithmetic overflow in
23980         buffer size calculations.
23981         * lib/hash-pjw.h (hash_pjw): Use size_t, not unsigned.
23982         Include <stddef.h>, for size_t.
23983         * lib/hash-pjw.c (hash_pjw): Likewise.
23984         Switch to method described by Bruno Haible.
23985         Include <limits.h>, for CHAR_BIT.
23986         (SIZE_BITS): New macro.
23987
23988 2003-10-23  Paul Eggert  <eggert@twinsun.com>
23989
23990         * m4/getline.m4 (AM_FUNC_GETLINE):
23991         Don't include getndelim2.o twice into LIBOBJS; this breaks on some
23992         hosts.  Problem reported by Derek Robert Price in
23993         <http://mail.gnu.org/archive/html/bug-gnulib/2003-10/msg00092.html>.
23994         This patch can be withdrawn after Autoconf 2.58 is required for gnulib.
23995         * m4/getndelim2.m4 (gl_GETNDELIM2): Likewise.
23996
23997 2003-10-21  Paul Eggert  <eggert@twinsun.com>
23998
23999         * lib/getndelim2.c (getndelim2): When size calculation overflows,
24000         ceiling the allocation at NMAX bytes rather than silently
24001         discarding input bytes before NMAX is reached.  This makes
24002         a difference only if NMAX exceeds SIZE_MAX / 2.
24003
24004         * lib/obstack.c: Merge from glibc.
24005         [defined _LIBC]: Include <obstack.h>, not "obstack.h".
24006         Add libc_hidden_def (_obstack_newchunk).
24007         (_obstack_free) [! defined _LIBC]: Remove.
24008         [defined _LIBC]: Make a strong alias from obstack_free, rather than
24009         a clone of the function body.
24010         (fputs) [defined _LIBC && defined USE_IN_LIBIO]: Remove.
24011         [defined _LIBC && !defined USE_IN_LIBIO]: Include <libio/iolibio.h>.
24012
24013         * lib/obstack.h: Indenting cleanup, to make it easier to merge with
24014         glibc.
24015         (obstack_grow, obstack_grow0): Remove unnecessary parentheses around
24016         arg to memcpy.
24017
24018         * lib/obstack.h (obstack_1grow_fast): Properly parenthesize arg.
24019         (obstack_ptr_grow_fast, obstack_int_grow_fast):
24020         Don't use lvalue casts, as GCC plans to remove support for them
24021         in GCC 3.5.  Reported by Joseph S. Myers.  This bug
24022         was also present in the non-GCC version, indicating that this
24023         code had always been buggy and had never been widely used.
24024         (obstack_1grow, obstack_ptr_grow, obstack_int_grow, obstack_blank):
24025         Use the fast variant of each macro, rather than copying the
24026         definiens of the fast variant; that way, we'll be more likely to
24027         catch future bugs in the fast variants.
24028
24029 2003-10-20  Bruno Haible  <bruno@clisp.org>
24030
24031         * modules/wait-process: New file.
24032         * MODULES.html.sh (func_all_modules): Add wait-process.
24033
24034 2003-10-20  Bruno Haible  <bruno@clisp.org>
24035
24036         * m4/wait-process.m4: New file.
24037
24038 2003-10-20  Bruno Haible  <bruno@clisp.org>
24039
24040         * lib/wait-process.h: New file, from GNU gettext.
24041         * lib/wait-process.c: New file, from GNU gettext.
24042
24043 2003-10-19  Jim Meyering  <jim@meyering.net>
24044
24045         * lib/vasnprintf.c (vasnprintf): Work around losing snprintf on
24046         HPUX 10.20.
24047
24048 2003-10-18  Karl Berry  <karl@gnu.org>
24049
24050         * config/config.guess: update from config.
24051
24052 2003-10-16  Paul Eggert  <eggert@twinsun.com>
24053
24054         * lib/getgroups.c: Include <errno.h>, <stdlib.h>.
24055         (getgroups): First arg is int, not size_t.
24056         Don't let 'free' mangle errno.
24057
24058 2003-10-16  Paul Eggert  <eggert@twinsun.com>
24059
24060         * README: Mention that gnulib assumes that (foo *) NULL + 0 == NULL.
24061
24062 2003-10-16  Karl Berry  <karl@gnu.org>
24063
24064         * config/config.{guess,sub}: update from config.
24065
24066 2003-10-16  Jim Meyering  <jim@meyering.net>
24067
24068         * lib/xmalloc.c: Include <string.h>, for declarations of memset and
24069         memcpy.
24070
24071 2003-10-15  Paul Eggert  <eggert@twinsun.com>
24072
24073         * lib/exclude.c: Do not include <inttypes.h> or <stdint.h>.
24074         (SIZE_MAX): Remove.
24075         (new_exclude, add_exclude_file): Initial size no longer needs to
24076         be a power of 2.
24077         (add_exclude, add_exclude_file): Use xnrealloc instead of rolling
24078         our own address arithmetic overflow checking.
24079
24080         * lib/fnmatch.c (SIZE_MAX): Define if standard headers don't.
24081         (fnmatch): Do not alloca more than 2000 wide characters;
24082         instead, use malloc for large buffers.
24083         Check for address arithmetic overflow, and return -1
24084         with errno set to ENOMEM in that case.
24085         * lib/fnmatch_loop.c (ALLOCA_LIMIT): New macro.
24086         (NEW_PATTERN): Do not alloca more than 8000 bytes;
24087         instead, return -1.  Check for address arithmetic overflow.
24088
24089 2003-10-14  Paul Eggert  <eggert@twinsun.com>
24090
24091         Handle invalid suffixes and overflow independently, so that
24092         callers can treat them independently as needed.  Fix some bugs in
24093         suffix handling, e.g., "100k@" was not diagnosed as an invalid
24094         suffix for a human-readable blocksize.  The major caller-visible
24095         change is the addition of a new
24096         LONGINT_INVALID_SUFFIX_CHAR_WITH_OVERFLOW enum value, indicating
24097         that both overflow and suffix chars were found.
24098
24099         * lib/human.c (humblock): Don't check separately for invalid suffix
24100         char; that is xstrtoumax's job (now that its bug is fixed).
24101         * lib/xstrtoimax.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM) [defined
24102         INTMAX_MAX]: New macros.
24103         * lib/xstrtol.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM, TYPE_MINIMUM,
24104         TYPE_MAXIMUM): New macros.
24105         (bkm_scale, bkm_scale_by_power): Return strtol_error, not int.
24106         (bkm_scale, bkm_scale_by_power, __xstrtol): Return maximal values
24107         if overflow occurs, as it's what __strtol does and it's more useful
24108         in practice.
24109         (__xstrtol): If __strtol reports some error other than ERANGE,
24110         reflect it to the caller as LONGINT_INVALID.  If it reports
24111         ERANGE, continue the rest of parsing, and report LONGINT_OVERFLOW
24112         | LONGINT_INVALID_SUFFIX_CHAR if both errors occur.
24113         * lib/xstrtol.h (LONGINT_INVALID_SUFFIX_CHAR_WITH_OVERFLOW): New enum
24114         value.
24115         (_STRTOL_ERROR): Handle it.  Abort when given unknown error codes.
24116         * lib/xstrtoul.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM): New macros.
24117         * lib/xstrtoumax.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM)
24118         [defined UINTMAX_MAX]: New macros.
24119
24120 2003-10-14  Bruno Haible  <bruno@clisp.org>
24121
24122         * modules/fatal-signal: Add m4/sig_atomic_t.m4 to file list.
24123
24124 2003-10-14  Bruno Haible  <bruno@clisp.org>
24125
24126         * m4/sig_atomic_t: New file, from GNU gettext.
24127         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Require gt_TYPE_SIG_ATOMIC_T.
24128
24129 2003-10-14  Bruno Haible  <bruno@clisp.org>
24130
24131         * lib/fatal-signal.h: Improved comments. Suggested by Paul Eggert.
24132         * lib/fatal-signal.c: Use sig_atomic_t. Suggested by Paul Eggert.
24133         Also use volatile where needed.
24134
24135 2003-10-12  Paul Eggert  <eggert@twinsun.com>
24136
24137         * modules/xalloc: Do not depend on 'exit'.  Depend on 'stdbool'.
24138         Change maintainer from Bruno Haible to 'all'.
24139
24140 2003-10-12  Paul Eggert  <eggert@twinsun.com>
24141
24142         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Require AC_C_INLINE.
24143
24144 2003-10-12  Paul Eggert  <eggert@twinsun.com>
24145
24146         * lib/xalloc.h (xnmalloc, xzalloc, xnrealloc, xclone): New decls.
24147         (XMALLOC, XCALLOC, XREALLOC, XFREE, CCLONE, CLONE): Deprecate,
24148         and define in terms of the other primitives.
24149         * lib/xmalloc.c: Include stdbool.h; do not include exit.h.
24150         (SIZE_MAX): Define if not already defined.
24151         (array_size_overflow): New function.
24152         (xalloc_die): Abort instead of exiting if 'error' returns.
24153         (xnmalloc, xnrealloc, xzalloc, xclone): New functions.
24154         (xmalloc, xrealloc): Use them.
24155         (xcalloc): Check for address arithmetic overflow.
24156         * lib/xstrdup.c (xstrdup): Use xclone, since memcpy should be
24157         a bit faster than strcpy.
24158
24159 2003-10-10  Simon Josefsson  <jas@extundo.com>
24160
24161         * modules/argp (Depends-on): Add restrict and strcase.
24162
24163 2003-10-10  Simon Josefsson  <jas@extundo.com>
24164
24165         * m4/argp.m4: Add AC_C_INLINE.
24166
24167 2003-10-08  Paul Eggert  <eggert@twinsun.com>
24168
24169         Merge getpass from libc, plus a few fixes.
24170
24171         * lib/getpass.c (HAVE_STDIO_EXT) [_LIBC]: Define to 1.
24172         Include <stdbool.h>.
24173         Include <stdio_ext.h> if HAVE_STDIO_H, otherwise define
24174         __fsetlocking to empty.
24175         [_LIBC]: Do not include "getline.h" or "unlocked-io.h", but
24176         do include <bits/libc-lock.h>.
24177         Do not include <fcntl.h>; not needed.
24178         [_LIBC]: Include <wchar.h>.
24179         (NOTCANCEL_MODE): New macro.
24180         (flockfile, funlockfile) [_LIBC]: New macros.
24181         (__libc_cleanup_push, __libc_cleanup_pop, __getline, __tcgetattr)
24182         [!_LIBC]: New macros.
24183         (call_fclose): New function.
24184         (getpass): Use it.  Save tty stream separately; this simplifies the
24185         code and makes it more reliable if stdin happens to equal stdout.
24186         Invoke __fsetlocking on tty.
24187         Handle thread cancellation if needed.
24188         Namespace cleanup (use __tcgetattr, __getline).
24189         Use bool for Booleans.
24190         [USE_IN_LIBIO]: Handle wide streams.
24191         [!_LIBC]: Unconditionally do the fseek, since we don't know what
24192         stream might go where.
24193
24194         * lib/unlocked-io.h: Include <stdio.h>, so that the caller
24195         doesn't have to include <stdio.h> before us.
24196         (clearerr_unlocked, feof_unlocked, ferror_unlocked,
24197         fflush_unlocked, fgets_unlocked, fputc_unlocked, fputs_unlocked,
24198         fread_unlocked, fwrite_unlocked, getc_unlocked, getchar_unlocked,
24199         putc_unlocked, putchar_unlocked): Define to the unlocked counterpart
24200         if not declared, so that we can use getpass.c code from libc without
24201         rewriting it.
24202         (flockfile, ftrylockfile, funlockfile): New macros.
24203
24204 2003-10-08  Paul Eggert  <eggert@twinsun.com>
24205
24206         * modules/getpass: Depend on stdbool.
24207
24208 2003-10-08  Paul Eggert  <eggert@twinsun.com>
24209
24210         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for stdio_ext.h.
24211
24212 2003-10-07  Karl Berry  <karl@gnu.org>
24213
24214         * config/config.{guess,sub}: update from config.
24215
24216 2003-10-06  Jim Meyering  <jim@meyering.net>
24217             Bruno Haible  <bruno@clisp.org>
24218
24219         This lets translators provide better translations for the
24220         "Written by ..." part of --version output.
24221         * lib/version-etc.h: Include stdarg.h.
24222         (version_etc_copyright): Declare as readonly.
24223         (version_etc): Make this function variadic with a NULL-terminated list
24224         of author name strings.
24225         (version_etc_va): New declaration.
24226         * lib/version-etc.c: Include stdarg.h, stdlib.h.
24227         (version_etc_copyright): Declare as readonly.
24228         (version_etc_va): New function. Provide a different translatable string
24229         for each possible number of authors < 10. Abbreviate when there are 10
24230         authors or more.
24231         (version_etc): Make this function variadic. Call version_etc_va.
24232         Suggestion from Gary V. Vaughan.
24233
24234         * lib/long-options.h (parse_long_options): Change prototype: the
24235         authors string is moved to the end and becomes variadic.
24236         * lib/long-options.c: Include stdarg.h.
24237         (parse_long_options): Make this function variadic, too.
24238         Call version_etc_va, not version_etc.
24239
24240 2003-10-06  Bruno Haible  <bruno@clisp.org>
24241
24242         * modules/version-etc-2: Remove file.
24243         * MODULES.html.sh (func_all_modules): Remove version-etc-2.
24244
24245 2003-10-06  Bruno Haible  <bruno@clisp.org>
24246
24247         * modules/fatal-signal: New file.
24248         * MODULES.html.sh (func_all_modules): Add fatal-signal.
24249
24250 2003-10-06  Bruno Haible  <bruno@clisp.org>
24251
24252         * m4/fatal-signal.m4: New file.
24253         * m4/signalblocking.m4: New file, from GNU gettext.
24254
24255 2003-10-06  Bruno Haible  <bruno@clisp.org>
24256
24257         * lib/version-etc-2.h: Remove file.
24258         * lib/version-etc-2.c: Remove file.
24259
24260 2003-10-06  Bruno Haible  <bruno@clisp.org>
24261
24262         * lib/fatal-signal.h: New file, from GNU gettext.
24263         * lib/fatal-signal.c: New file, from GNU gettext.
24264
24265 2003-10-05  Paul Eggert  <eggert@twinsun.com>
24266
24267         * README: Rework advice for preventing empty .o files.
24268         Don't recommend ELIDE constructs.  Recommend <stddef.h>,
24269         not <sys/types.h>.
24270
24271 2003-10-04  Karl Berry  <karl@gnu.org>
24272
24273         * lib/argp*: update from libc.
24274
24275 2003-10-04  Karl Berry  <karl@gnu.org>
24276
24277         * config/config.{guess,sub}: update from config.
24278
24279 2003-10-02  Bruno Haible  <bruno@clisp.org>
24280
24281         * modules/lchown (Include): Add lchown.h.
24282         * modules/time_r (Include): Use "..." syntax.
24283         * modules/xgetdomainname (Include): Add xgetdomainname.h.
24284
24285 2003-10-01  Simon Josefsson  <jas@extundo.com>
24286
24287         * MODULES.html.sh (func_all_modules): Move gethostname from section
24288         'based on' to section 'lacking' POSIX:2001.
24289
24290 2003-10-01  Larry Jones  <lawrence.jones@eds.com>
24291
24292         * lib/getpass.c (getpass): Use a no-op fseek when switching from input
24293         to output mode on the same stream.
24294
24295 2003-09-29  Paul Eggert  <eggert@twinsun.com>
24296
24297         * lib/strftime.c (tm_diff) [! HAVE_TM_GMTOFF]:
24298         Fix arg typo in previous patch.
24299
24300 2003-09-28  Jim Meyering  <jim@meyering.net>
24301
24302         * lib/error.c: Correct cpp indentation.
24303
24304 2003-09-27  Paul Eggert  <eggert@twinsun.com>
24305
24306         * modules/free: New file.
24307
24308 2003-09-27  Paul Eggert  <eggert@twinsun.com>
24309
24310         * m4/free.m4: New file.
24311
24312 2003-09-27  Paul Eggert  <eggert@twinsun.com>
24313
24314         * lib/minmax.h (MIN, MAX)
24315         [__STDC__ && defined __GNUC__ && __GNUC__ >= 2]:
24316         Omit the special code that used __typeof__, since we worry that
24317         it could be more trouble than it's worth.  See:
24318         http://mail.gnu.org/archive/html/bug-gnulib/2003-01/msg00090.html
24319         http://mail.gnu.org/archive/html/bug-gnulib/2003-01/msg00095.html
24320
24321         * lib/free.c: New file.
24322
24323 2003-09-27  Oskar Liljeblad  <oskar@osk.mine.nu>
24324
24325         Trivial fixes to Makefile.am parts of module listings.
24326         * modules/strstr: Append strstr.h to lib_SOURCES.
24327         * modules/strcase: Likewise, for strcase.h.
24328
24329 2003-09-27  Karl Berry  <karl@gnu.org>
24330
24331         * config/mkinstalldirs: update from automake.
24332
24333 2003-09-26  Paul Eggert  <eggert@twinsun.com>
24334
24335         * lib/error.c (SIZE_MAX) [!defined SIZE_MAX]: Define.
24336         (error_tail): Do not loop, reallocating temporary buffer, since
24337         the output cannot contain more wide characters than the input
24338         contains bytes, the size must be big enough already.  This avoids
24339         one potential size overflow calculation.  Check for size overflow
24340         when calculating temporary buffer size.  Free temporary buffer
24341         when done, if it was allocated with malloc; this plugs a memory
24342         leak.  Remove casts from void * to pointers, that are no longer
24343         needed now that we're assuming C89 or better.
24344
24345         Merge error changes from glibc.
24346
24347         * lib/error.c, error.h: Update copyright notice header to match glibc.
24348         * lib/error.c [defined _LIBC]: Include <errno.h>, <bits/libc-lock.h>.
24349         (error, error_at_line) [defined _LIBC && defined __libc_ptf_call]:
24350         Disable cancellation while printing error.
24351         * lib/error.h: Prepend __ to parameter names.
24352
24353 2003-09-26  Jim Meyering  <jim@meyering.net>
24354
24355         * lib/error.c (error_tail): Move some declarations
24356         into inner scope where the local variables are used.
24357
24358 2003-09-26  Bruno Haible  <bruno@clisp.org>
24359
24360         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Add comments about the AIX
24361         stpncpy().
24362         Don't define stpncpy through config.h; it's now done through stpncpy.h.
24363
24364 2003-09-26  Bruno Haible  <bruno@clisp.org>
24365
24366         * lib/stpncpy.h (gnu_stpncpy): New declaration.
24367         (stpncpy): Define as alias for gnu_stpncpy.
24368         * lib/stpncpy.c [!_LIBC]: Define gnu_stpncpy, not stpncpy.
24369
24370 2003-09-25  Simon Josefsson  <jas@extundo.com>
24371
24372         * lib/xgetdomainname.h: New file.
24373         * lib/xgetdomainname.c: New file.
24374
24375 2003-09-25  Simon Josefsson  <jas@extundo.com>
24376             Bruno Haible  <bruno@clisp.org>
24377
24378         * modules/getdomainname: New file.
24379         * modules/xgetdomainname: New file.
24380         * MODULES.html.sh (func_all_modules): Add getdomainname,
24381         xgetdomainname.
24382
24383 2003-09-25  Simon Josefsson  <jas@extundo.com>
24384             Bruno Haible  <bruno@clisp.org>
24385
24386         * m4/getdomainname.m4: New file.
24387
24388 2003-09-25  Simon Josefsson  <jas@extundo.com>
24389             Bruno Haible  <bruno@clisp.org>
24390
24391         * lib/getdomainname.h: New file.
24392         * lib/getdomainname.c: New file.
24393
24394 2003-09-25  Karl Berry  <karl@gnu.org>
24395
24396         * lib/argp-fmtstream.c, argp-help.c: update from libc.
24397
24398 2003-09-25  Karl Berry  <karl@gnu.org>
24399
24400         * config/install-sh: update from automake.
24401
24402 2003-09-25  Bruno Haible  <bruno@clisp.org>
24403
24404         * modules/version-etc-2: New file, from modules/version-etc with
24405         modifications.
24406         * MODULES.html.sh (func_all_modules): Add version-etc-2.
24407
24408 2003-09-25  Bruno Haible  <bruno@clisp.org>
24409
24410         * lib/version-etc-2.h: New file, from version-etc.h with modifications.
24411         * lib/version-etc-2.c: New file, from version-etc.c with modifications.
24412
24413 2003-09-24  Simon Josefsson  <jas@extundo.com>
24414
24415         * modules/xgethostname: Add xgethostname.h.
24416
24417 2003-09-24  Paul Eggert  <eggert@twinsun.com>
24418
24419         * lib/linebuffer.c (freebuffer): Don't free the argument, just
24420         the buffer associated with the argument.  Bug reported by
24421         Simon Josefsson.
24422
24423 2003-09-24  Paul Eggert  <eggert@twinsun.com>
24424
24425         * README: Document assumptions that 'int' is at least 32 bits
24426         wide, that integer arithmetic is 2's complement without overflow,
24427         that there are no holes in integer values, that adding sizes of
24428         two nonoverlapping objects can't overflow, and that all-bits-zero
24429         yields scalar zero.  Fix spelling and capitalization typos.
24430
24431 2003-09-19  Karl Berry  <karl@gnu.org>
24432
24433         * lib/argp.h: update from libc.
24434
24435 2003-09-17  Paul Eggert  <eggert@twinsun.com>
24436
24437         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Call AC_BEFORE first,
24438         to avoid spurious warnings like "AC_RUN_IFELSE was called before
24439         gl_USE_SYSTEM_EXTENSIONS" from autoreconf.
24440
24441 2003-09-17  Paul Eggert  <eggert@twinsun.com>
24442
24443         * gnulib-tool: Use "test -h", not "test -L", for portability
24444         to Solaris 8 /bin/sh.  (This bug is fixed in Solaris 9.)
24445         (tags_regexp): Remove, since \| doesn't conform to POSIX.
24446         (sed_extract_prog): Issue s commands one-by-one, rather than
24447         using \| in one s command.
24448
24449 2003-09-16  Paul Eggert  <eggert@twinsun.com>
24450
24451         * lib/linebuffer.c (readlinebuffer): Return NULL immediately upon
24452         input error, instead of returning NULL the next time we are called
24453         (and therefore losing track of errno).
24454
24455 2003-09-16  Bruno Haible  <bruno@clisp.org>
24456
24457         * gnulib-tool (func_create_testdir): Warn about duplicated
24458         dependencies.
24459
24460 2003-09-15  Paul Eggert  <eggert@twinsun.com>
24461
24462         * modules/argmatch, modules/fatal, modules/obstack,
24463         modules/xalloc, modules/xgethostname: Sort dependencies by
24464         importance, not alphabetically.
24465
24466 2003-09-15  Paul Eggert  <eggert@twinsun.com>
24467
24468         * lib/getndelim2.c (getndelim2): Don't trash errno when a read
24469         fails, so that the caller gets the proper errno.
24470
24471         * lib/readutmp.c (read_utmp): Likewise.
24472         Check for fstat error.  Close stream and free storage
24473         when failing.
24474
24475 2003-09-14  Karl Berry  <karl@gnu.org>
24476
24477         * config/srclist.txt (strdup.c): disable for c89 changes.
24478
24479 2003-09-14  Jim Meyering  <jim@meyering.net>
24480
24481         * lib/getloadavg.c: Correct cpp indentation.
24482         * lib/strdup.c: Likewise.
24483         * lib/vasnprintf.c: Likewise.
24484
24485 2003-09-14  Bruno Haible  <bruno@clisp.org>
24486
24487         * modules/fwriteerror: New file.
24488         * MODULES.html.sh (func_all_modules): Add fwriteerror.
24489
24490 2003-09-14  Bruno Haible  <bruno@clisp.org>
24491
24492         * lib/fwriteerror.h: New file.
24493         * lib/fwriteerror.c: New file.
24494
24495 2003-09-12  Paul Eggert  <eggert@twinsun.com>
24496
24497         * modules/argmatch, modules/exitfail, modules/fatal, modules/obstack,
24498         modules/xgethostname, modules/xalloc: Depend on exit.
24499
24500 2003-09-12  Paul Eggert  <eggert@twinsun.com>
24501
24502         * m4/error.m4: Require AC_FUNC_STRERROR_R rather than invoking it.
24503
24504         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Require AC_AIX
24505         and AC_MINIX, too, so that their extensions are available.
24506
24507         * m4/prereq.m4 (jm_PREREQ_ADDEXT): Remove.  All uses removed.
24508         This macro has been superseded by gl_BACKUPFILE.
24509
24510         More patches to assume C89 or better.
24511
24512         * m4/error.m4 (gl_ERROR): Don't check for vprintf.
24513
24514         * m4/check-decl.m4 (jm_CHECK_DECLS): Include <string.h>, <stdlib.h>
24515         unconditionally.
24516         * m4/closeout.m4 (gl_CLOSEOUT): Don't check for stdlib.h.
24517         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER):
24518         Include <string.h>, <stdlib.h> unconditionally.
24519         * m4/lstat.m4 (gl_PREREQ_LSTAT): Don't check for stdlib.h, free.
24520         * m4/readdir.m4 (GL_FUNC_READDIR): Don't check for string.h.
24521         * m4/readutmp.m4 (gl_PREREQ_READUTMP): Don't check for standard C
24522         headers or for string.h.
24523         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Don't check for stdlib.h
24524         or strtoul.
24525
24526         * m4/mkstemp.m4 (jm_PREREQ_TEMPNAME): Do not require standard C
24527         headers.
24528         * m4/strdup.m4 (gl_PREREQ_STRDUP): Likewise.
24529         * m4/userspec.m4 (gl_USERSPEC): Likewise.
24530         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Likewise.
24531         * m4/xstrtod.m4 (gl_XSTRTOD): Likewise.
24532         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
24533         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't check for limits.h,
24534         memcpy, memset.
24535         (jm_FUNC_GNU_STRFTIME): Don't require standard C headers.
24536         * m4/strtod.m4 (gl_FUNC_STRTOD): Do not check for float.h.
24537         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Do not check for stdlib.h,
24538         strtol.
24539         * m4/strtol.m4 (gl_FUNC_STRTOL): Do not check for limits.h.
24540         * m4/userspec.m4 (gl_USERSPEC): Do not check for string.h.
24541         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Do not check for string.h, strtol,
24542         strtoul.
24543
24544 2003-09-12  Paul Eggert  <eggert@twinsun.com>
24545
24546         * lib/argmatch.c, fatal.c, xgethostname.c, xmalloc.c: Include exit.h.
24547         * lib/obstack.c [!defined _LIBC]: Likewise.
24548         * lib/argmatch.c (EXIT_FAILURE): Remove; now done by exit.h
24549         * lib/exitfail.c, fatal.c, xgethostname.c, xmalloc.c: Likewise.
24550         * lib/exitfail.c: Don't include stdlib.h; no longer needed.
24551
24552         More changes to assume C89 or better.
24553
24554         * lib/error.c (error_tail): Assume vprintf.
24555
24556         * lib/argmatch.c (getenv): Remove decl.
24557         * lib/progreloc.c (get_full_program_name): Define via prototype.
24558         * lib/setenv.c (clearenv): Likewise.
24559         * lib/stpncpy.c: Do not include <string.h> or <sys/types.h>; not
24560         needed.
24561         * lib/strdup.c: Include <stdlib.h>, <string.h> unconditionally.
24562         (malloc, memcpy): Remove decls.
24563         * lib/strftime.c (HAVE_LIMITS_H, STDC_HEADERS) [defined _LIBC]: Remove.
24564         (HAVE_MEMCPY) [defined emacs && !defined HAVE_BCOPY]: Remove.
24565         Include <limits.h>, <stddef.h>, <stdlib.h>, <string.h> unconditionally.
24566         (memcpy): Remove macro.
24567         (MEMCPY) [!defined COMPILE_WIDE]: Define to memcpy unconditionally.
24568         (__P): Remove.  All uses removed.
24569         (PTR): Remove.  All uses changed to void *.
24570         (CHAR_BIT, NULL): Remove.
24571         (spaces, zeros, memset_space, memset_zero)
24572         [!defined memset && !defined HAVE_MEMSET && !defined _LIBC]:
24573         Remove.
24574         (LOCALE_PARAM, LOCALE_PARAM_DECL): Remove.
24575         (memcpy_lowcase, memcpy_uppcase, tm_diff, iso_week_days):
24576         Define with prototype.
24577         Remove now-unnecessary prototype decl.
24578         (extra_args_spec): Assume ANSI C.  All uses changed.
24579         (extra_args_spec_iso): Remove.
24580         (my_strftime, emacs_strftimeu): Define via prototype.
24581         * lib/strtod.c: Include <float.h>, <stdlib.h>, <string.h>
24582         unconditionally.
24583         (DBL_MAX, DBL_MIN, HUGE_VAL, NULL): Remove decls.
24584         * lib/strtoimax.c: Include <stdlib.h> unconditionally.
24585         (strtoul, strtol): Remove decls.
24586         * lib/strtol.c (STDC_HEADERS, HAVE_LIMITS_H, NULL, ULONG_MAX,
24587         LONG_MAX): Remove.
24588         Include <limits.h>, <stddef.h>, <stdlib.h>, <string.h> unconditionally.
24589         (LOCALE_PARAM_DECL): Remove.  All uses changed to LOCALE_PARAM_PROTO.
24590         (LOCALE_PARAM_PROTO): New macro.
24591         (INTERNAL, INTERNAL1, WEAKNAME): Assume ANSI C, not K&R.
24592         (INTERNAL (strtol), strtol): Define with a prototype.
24593         (PARAMS): Remove.  All uses removed.
24594         * lib/tempname.c: Include <string.h> unconditionally.
24595         * lib/userspec.c: Include <stdlib.h>, <string.h> unconditionally.
24596         * lib/xgethostname.c (main): Define with a prototype.
24597         * lib/xmalloc.c: Include "xalloc.h" first, to check interface.
24598         Include <stdlib.h> unconditionally.
24599         (calloc, malloc, realloc, free): Remove decls.
24600         * lib/xstrtod.c: Include "xstrtod.h" first, to check interface.
24601         Include <stdlib.h> unconditionally.  Sort include file names.
24602         (strtod): Remove.
24603         (xstrtod): Define with a prototype.
24604         * lib/xstrtol.c: Include <stdlib.h>, <string.h> unconditionally.
24605         (strtol, strtoul): Remove decls.
24606
24607 2003-09-11  Paul Eggert  <eggert@twinsun.com>
24608
24609         More patches to assume C89 or better.
24610         * m4/strndup.m4 (gl_PREREQ_STRNDUP): Remove STDC_HEADERS check.
24611         * m4/strnlen.m4 (gl_PREREQ_STRNLEN): Don't check for memory.h,
24612         string.h, memchr, STDC_HEADERS.
24613
24614 2003-09-11  Paul Eggert  <eggert@twinsun.com>
24615
24616         * lib/strndup.c: Don't include <stdio.h>, <sys/types.h>.
24617         Include <stdlib.h>, <string.h> unconditionally.
24618         Remove now-unnecessary cast to char *.
24619         * lib/strnlen.c: Include <string.h> unconditionally.
24620         * lib/yesno.c (yesno): Define with a prototype.
24621
24622 2003-09-11  Bruno Haible  <bruno@clisp.org>
24623
24624         * config/srclist.txt (setenv.c, unsetenv.c): Disable for the moment.
24625
24626 2003-09-10  Jim Meyering  <jim@meyering.net>
24627
24628         * lib/error.c: Correct indentation of cpp directives.
24629
24630 2003-09-10  Bruno Haible  <bruno@clisp.org>
24631
24632         * m4/strcspn.m4 (gl_PREREQ_STRCSPN): Remove <string.h> check.
24633         * m4/strpbrk.m4 (gl_PREREQ_STRPBRK): Remove <string.h> check.
24634         * m4/strstr.m4 (gl_PREREQ_STRSTR): Remove <string.h> check.
24635         * m4/unicodeio.m4 (gl_UNICODEIO): Remove <string.h> check.
24636         * m4/setenv.m4 (gl_PREREQ_SETENV, gl_PREREQ_UNSETENV): Remove
24637         <stdlib.h> and <string.h> checks.
24638         * m4/xreadlink.m4 (gl_XREADLINK): Remove <stdlib.h> check.
24639         * m4/yesno.m4 (gl_YESNO): Remove <stdlib.h> check.
24640
24641 2003-09-10  Bruno Haible  <bruno@clisp.org>
24642
24643         * lib/strcspn.c: Include <string.h> unconditionally.
24644         * lib/strpbrk.c: Include <string.h> unconditionally.
24645         * lib/strstr.c: Include <string.h> unconditionally.
24646         * lib/unicodeio.c: Include <string.h> unconditionally.
24647         * lib/setenv.c: Include <stdlib.h> and <string.h> unconditionally.
24648         * lib/unsetenv.c: Likewise.
24649         * lib/xreadlink.c: Include <stdlib.h> unconditionally.
24650         * lib/yesno.c: Include <stdlib.h> unconditionally.
24651         (rpmatch): Add prototype.
24652
24653 2003-09-09  Paul Eggert  <eggert@twinsun.com>
24654
24655         More patches to assume C89 or better.
24656         * m4/getcwd.m4 (AC_FUNC_GETCWD_NULL): Don't check for stdlib.h.
24657         * m4/getopt.m4 (gl_GETOPT): Don't check for string.h.
24658         * m4/getugroups.m4 (gl_GETUGROUPS): Do not check for standard C headers
24659         or for string.h.
24660         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Do not check for
24661         stdlib.h.
24662         * m4/group-member.m4 (gl_PREREQ_GROUP_MEMBER): Do not require standard
24663         C headers.
24664         * m4/hard-locale.m4 (gl_HARD_LOCALE): Do not check for stdlib.h,
24665         string.h.
24666         * m4/hash.m4 (gl_HASH): Do not check for stdlib.h, malloc, free.
24667         * m4/human.m4 (gl_HUMAN): Do not check for stdlib.h, string.h, getenv.
24668         * m4/idcache.m4 (gl_IDCACHE): Do not check for standard C headers,
24669         or for string.h.
24670         * m4/long-options.m4 (gl_LONG_OPTIONS): Do not check for stdlib.h.
24671         * m4/makepath.m4 (gl_MAKEPATH): Do not check for string.h or standard
24672         C headers.
24673         * m4/md5.m4 (gl_MD5): Don't check for limits.h, standard C headers,
24674         memcpy.
24675         * m4/sha.m4 (gl_SHA): Don't check for standard Cheaders, memcpy.
24676         * m4/memchr.m4 (jm_PREREQ_MEMCHR): Don't check for limits.h, stdlib.h.
24677         * m4/memcmp.m4 (gl_PREREQ_MEMCMP): Don't check for string.h.
24678         * m4/memcoll.m4 (gl_MEMCOLL): Likewise.
24679         * m4/memrchr.c (gl_PREREQ_MEMRCHR): Don't check for limits.h.
24680         * m4/mkdir-slash.m4 (gl_PREREQ_MKDIR): Don't check for stdlib.h,
24681         string.h, free.
24682         * m4/mktime.m4 (gl_PREREQ_MKTIME): Don't check for standard C headers.
24683         * m4/modechange.m4 (gl_MODECHANGE): Don't check for standard C headers.
24684         * m4/mountlist.m4 (gl_PREREQ_MOUNTLIST_EXTRA): Don't check for standard
24685         C headers, or for string.h.
24686         * m4/obstack.m4 (gl_OBSTACK): Don't check for stddefe.h, string.h.
24687         (gl_PREREQ_OBSTACK): Don't check for stdlib.h.
24688         * m4/path-concat.m4 (gl_PATH_CONCAT): Don't check for standard C
24689         headers, memory.h, stdlib.h, string.h, strings.h.
24690         * m4/posixtm.m4 (gl_POSIXTM): Don't check for stdlib.h, string.h.
24691         * m4/posixver.m4 (gl_POSIXVER): Don't check for getenv.
24692         * m4/putenv.m4 (gl_PREREQ_PUTENV): Don't check for string.h, memcpy,
24693         strchr.
24694         * m4/readtokens.m4 (gl_READTOKENS): Don't check for standard C
24695         headers, memory.h, string.h.
24696         * m4/regex.m4 (jm_PREREQ_REGEX): Do not check for limits.h, string.h.
24697         * m4/rename.m4 (gl_PREREQ_RENAME): Do not check for stdlib.h, string.h,
24698         free.
24699         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Don't check for standard C
24700         headers.
24701         * m4/same.m4 (gl_SAME): Don't check for stdlib.h, string.h, free.
24702         * m4/save-cwd.m4 (gl_SAVE_CWD): Don't check for standard C headers.
24703         * m4/savedir.m4 (gl_SAVEDIR): Don't check for standard C headers.
24704         * m4/strchrnul.m4 (gl_PREREQ_STRCHRNUL): Don't check for string.h.
24705         * m4/xgetcwd.m4 (gl_XGETCWD): Don't check for stdlib.h.
24706
24707 2003-09-09  Paul Eggert  <eggert@twinsun.com>
24708
24709         More K&R removal.
24710
24711         * lib/acosl.c (main): Use a prototype.
24712         * lib/asinl.c, cosl.c, expl.c, frexpl.c, ldexpl.c, sinl.c,
24713         tanl.c: Likewise.
24714
24715         * lib/getloadavg.c (getloadavg, main): Define via prototypes.
24716
24717         * lib/getopt.h (struct option.name): Assume C89, and use 'const'.
24718         (getopt, etopt_long, getopt_long_only, _getopt_internal)
24719         [defined __GNU_LIBRARY__]: Assume C89, so we can always declare
24720         with a prototype.
24721         * lib/getopt.c (const): Remove macro.
24722         Include <string.h> unconditionally.
24723         (my_index): Remove; all uses changed to strchr.
24724         (strlen): Remove decl.
24725         (exchange): Remove forward decl; no longer needed.
24726         (exchange, _getopt_initialize, _getopt_internal, getopt, main):
24727         Define with prototype.
24728         * lib/getopt1.c (const): Remove macro.
24729         (getopt_long, getopt_long_only, main): Define with prototype.
24730
24731         * lib/getugroups.c: Include <string.h> unconditionally.
24732
24733         * lib/getusershell.c: Include <stdlib.h> unconditionally.
24734         (getusershell, setusershell, endusershell, readname, main):
24735         Define with prototypes.
24736
24737         * lib/group-member.c: Include group-member.h first.
24738         Include <stdlib.h> unconditionally.
24739
24740         * lib/hard-locale.c: Include hard-locale.h first.
24741         Include <stdlib.h>, <string.h> unconditionally.
24742
24743         * lib/hash.c (free, malloc): Remove decls.
24744         Include <stdlib.h> unconditionally.
24745
24746         * lib/human.c: Include <stdlib.h>, <string.h> unconditionally.
24747         (getenv): Do not declare.
24748
24749         * lib/idcache.c: Include <string.h> unconditionally.
24750
24751         * lib/long-options.c: Include long-options.h first, to test interface.
24752         Include <stdlib.h> unconditionally.
24753
24754         * lib/makepath.c: Include makepath.h first, to test interface.
24755         Include <stdlib.h> and <string.h> unconditionally.
24756
24757         * lib/linebuffer.c: Include <stdlib.h>.
24758         (free): Remove decl.
24759
24760         * lib/malloc.c: Include <stdlib.h>, for malloc; don't bother with
24761         stddef.h. rpl_malloc returns void *, not char *.
24762         * lib/realloc.c (rpl_realloc): Likewise.  Also, define with a
24763         prototype.
24764
24765         * lib/md5.h: Include <limits.h> unconditionally.
24766         (UINT_MAX_32_BITS): Don't worry about non-__STDC__ case.
24767         (__P): Remove; all uses removed.
24768         * lib/md5.c: Include "md5.h" first.
24769         (md5_init_ctx, md5_read_ctx, md5_finish_ctx, md5_stream,
24770         md5_buffer, md5_process_bytes, md5_process_block):
24771         Define with prototypes.
24772         * lib/sha.h (__P): Remove all uses.  (It wasn't defined??)
24773         * lib/sha.c: Include "sha.h" first.
24774         Include <stdlib.h>, <string.h> unconditionally.
24775
24776         * lib/memchr.c (__ptr_t): Remove; all uses changed to void *.
24777         * lib/memcmp.c (__ptr_t): Likewise.
24778         * lib/memrchr.c (__ptr_t): Likewise.
24779         * lib/memchr.c, memcmp.c, memcoll.c, memrchr.c:
24780         Include <string.h> unconditionally.
24781         * lib/memchr.c, memrchr.c: Include <limits.h> unconditionally.
24782         * lib/memchr.c: Include <stdlib.h> unconditionally.
24783         * lib/memchr.c (LONG_MAX): Remove.
24784         * lib/memrchr.c (LONG_MAX): Likewise.
24785         * lib/memchr.c (__memchr): Define via a prototype.
24786         * lib/memrchr.c (__memrchr): Likewise.
24787         * lib/memcmp.c (__P): Remove, and remove all uses.
24788         (memcmp_bytes, memcmp_common_alignment, memcmp_not_common_alignment):
24789         Remove forward decls; no longer needed.
24790         * lib/memcpy.c, memmove.c, memset.c: Include <stddef.h>.
24791         Use types required by C89 in prototype.
24792
24793         * lib/mkdir.c: Include <stdlib.h>, <string.h> unconditionally.
24794         * lib/savedir.c: Likewise.
24795         * lib/mkdir.c (free): Remove decl.
24796         * lib/rmdir.c (rmdir): Define with a prototype.
24797         * lib/savedir.c: Include savedir.h first, to test interface.
24798
24799         * lib/mktime.c (STDC_HEADERS): Remove.
24800         Include <stdlib.h>, <string.h> unconditionally.
24801
24802         * lib/modechange.c: Include <stdlib.h> unconditionally.
24803         (malloc): Remove decl.
24804
24805         * lib/mountlist.c: Include <stdlib.h>, <string.h> unconditionally.
24806         (free): Remove decl.
24807
24808         * lib/obstack.h (PTR_INT_TYPE) [!defined __PTRDIFF_TYPE__]:
24809         Define to ptrdiff_t, without bothering to check HAVE_STDDEF_H.
24810         (This type really should be intptr_t, but that's a C99ism.)
24811         (_obstack_memcpy): Remove: all uses changed to memcpy.
24812         Include <string.h> unconditionally.
24813         (struct obstack): Assume __STDC__ for types of members
24814         chunkfun, freefun, extra_arg.
24815         (_obstack_newchunk, _obstack_free, _obstack_begin, _obstack_begin_1,
24816         _obstack_memory_used, obstack_alloc_failed_handler, obstack_init,
24817         obstack_begin, obstack_specify_allocation,
24818         obstack_specify_allocation_with_arg, obstack_chunkfun,
24819         obstack_freefun, obstack_free) [! (defined __STDC__ && __STDC__)]:
24820         Remove unprototyped decls and the macros that use them.
24821         * lib/obstack.c (POINTER): Remove.  All uses changed to void *.
24822         (obstack_alloc_failed_handler, CALL_CHUNKFUN, CALL_FREEFUN,
24823         _obstack_begin, _obstack_begin_1, _obstack_allocated_p)
24824         (defined __STDC__ && __STDC__)]:
24825         Remove nonprototyped code.
24826         Include <stdlib.h> unconditionally.
24827         (_obstack_begin, _obstack_begin_1, _obstack_newchunk,
24828         _obstack_allocated_p, _obstack_free, obstack_free,
24829         _obstack_memory_used, print_and_abort):
24830         Define using prototypes.
24831         (obstack_1grow, obstack_1grow_fast, obstack_alloc, obstack_base,
24832         obstack_blank, obstack_blank_fast, obstack_copy, obstack_copy0,
24833         obstack_finish, obstack_grow, obstack_grow0, obstack_make_room,
24834         obstack_next_free, obstack_object_size, obstack_room) [0]:
24835         Remove unused, unprototyped code.
24836
24837         * lib/path-concat.c: Include <stdlib.h>, <string.h> unconditionally.
24838
24839         * lib/physmem.c (physmem_total, physmem_available, main): Define
24840         with prototypes.
24841
24842         * lib/posixtm.c: Include <stdlib.h>, <string.h> unconditionally.
24843         (main): Define with a prototype.
24844
24845         * lib/posixver.c (getenv): Remove decl.
24846
24847         * lib/putenv.c (malloc): Returns void *, not char *.
24848         Include <string.h> unconditionally.
24849         (strchr, memcpy, NULL): Do not define.
24850
24851         * lib/readtokens.c: Include readtokens.h first, to test interface.
24852         Include <stdlib.h>, <string.h> unconditionally.
24853         (init_tokenbuffer): Define with a prototype.
24854
24855         * lib/regex.c (PARAMS): Remove.  All uses removed.
24856         All uses of _RE_ARGS removed, too.
24857         Include <stddef.h>, <stdlib.h>, <string.h>, <limits.h>
24858         unconditionally.
24859         (bzero): Assume memset exists.
24860         (memcmp, memcpy, NULL): Remove.
24861         (SIGN_EXTEND_CHAR): Remove; all uses replaced by casts to signed
24862         char, or assignments to local vars of type signed char.
24863         (init_syntax_once, PREFIX(extract_number_and_incr),
24864         PREFIX(print_partial_compiled_pattern),
24865         PREFIX(print_compiled_pattern), PREFIX(print_double_string),
24866         convert_mbs_to_wcs, print_fastmap, re_set_syntax,
24867         PREFIX(regex_grow_registers), PREFIX(regex_compile),
24868         PREFIX(store_op1), PREFIX(store_op2), PREFIX(insert_op1),
24869         PREFIX(insert_op2), PREFIX(at_begline_loc_p),
24870         PREFIX(at_endline_loc_p), group_in_compile_stack, insert_space,
24871         wcs_compile_range, byte_compile_range, truncate_wchar,
24872         PREFIX(re_compile_fastmap), re_compile_fastmap, re_set_registers,
24873         re_search, re_search_2, PREFIX(re_search_2), re_match, re_match_2,
24874         count_mbs_length, wcs_re_match_2_internal,
24875         byte_re_match_2_internal, PREFIX(group_match_null_string_p),
24876         PREFIX(alt_match_null_string_p),
24877         PREFIX(common_op_match_null_string_p), PREFIX(bcmp_translate),
24878         re_compile_pattern, re_comp, re_exec, regcomp, regexec, regerror,
24879         regfree, PREFIX(extract_number)): Define with prototype.  Remove
24880         now-unnecessary declaration, if any.
24881         (byte_compile_range, PREFIX(regex_compile), re_comp, re_exec,
24882         regcomp, regexec):
24883         Remove now-unnecessary casts among pointer types.
24884         * lib/regex.h (_RE_ARGS): Remove.  All uses removed.
24885
24886         * lib/rename.c: Include <stdlib.h>, <string.h> unconditionally.
24887         (free): Remove decl.
24888
24889         * lib/rpmatch.c: Include <stdlib.h> unconditionally.
24890
24891         * lib/same.c: Include <stdlib.h>, <string.h> unconditionally.
24892         (free): Remove decl.
24893
24894         * lib/save-cwd.c: Include <stdlib.h> unconditionally.
24895         * lib/xgetcwd.c: Likewise.
24896
24897         * lib/stat.c: Include <stdlib.h>, <string.h> unconditionally.
24898         (free): Remove decl.
24899
24900         * lib/strchrnul.c (strchrnul): Define with a prototype.
24901         Fix bug: c_in was not converted to char before searching.
24902
24903         The following changes are not K&R related:
24904
24905         * lib/group-member.h: Include <sys/types.h>, so that this file is
24906         self-contained.
24907         * lib/makepath.h: Likewise.
24908
24909         * lib/getusershell.c (readname, default_index, line_size, readname):
24910         Use size_t, not int, for sizes.
24911         (readname): If the size overflows, report an error instead of
24912         looping forever.
24913
24914 2003-09-09  Paul Eggert  <eggert@twinsun.com>
24915
24916         * config/srclist.txt: Do not get getopt.h, getopt1.c, or regex.h from
24917         libc.
24918
24919 2003-09-09  Paul Eggert  <eggert@twinsun.com>
24920
24921         * README: New section: portability guidelines.
24922
24923 2003-09-09  Derek Robert Price  <derek@ximbiot.com>
24924
24925         * m4/getndelim2.m4 (gl_PREREQ_GETNDELIM2): Assume stdlib.h per the
24926         C89 spec.
24927
24928 2003-09-09  Derek Robert Price  <derek@ximbiot.com>
24929
24930         * lib/getndelim2.c: Assume stdlib.h per the C89 spec.
24931
24932 2003-09-08  Paul Eggert  <eggert@twinsun.com>
24933
24934         Assume C89 or better; remove K&R cruft.
24935         A few of these changes were first proposed by Derek Robert Price
24936         in <http://mail.gnu.org/archive/html/bug-gnulib/2003-07/msg00105.html>.
24937
24938         * lib/addext.c: Include <string.h> unconditionally.
24939         * lib/backupfile.c: Include <string.h>, <stdlib.h> unconditionally.
24940         Don't declare getenv or malloc.
24941
24942         * lib/alloca.c: Include <string.h>, <stdlib.h> unconditionally.
24943         (POINTER_TYPE, pointer): Remove; all uses changed to void *.
24944         (NULL): Remove.
24945         (find_stack_direction, alloca): Use prototypes.
24946
24947         * lib/atexit.c (atexit): Define using a prototype.
24948
24949         * lib/basename.c, dirname.c, stripslash.c:
24950         Include <string.h> unconditionally.
24951
24952         * lib/bcopy.c: Include <stddef.h>.
24953         (bcopy): Define with prototype, using 'const' and 'void' and 'size_t'.
24954
24955         * lib/canon-host.c: Include <stdlib.h>, <string.h> unconditionally.
24956
24957         * lib/error.h (error, error_at_line, error_print_progname)
24958         [! (defined (__STDC__) && __STDC__)]: Remove decls.
24959         * lib/error.c: Include error.h first, to check interface.
24960         Include <stdarg.h>, <stdlib.h>, <string.h> unconditionally.
24961         (VA_START): Remove; all uses changeed to va_start.
24962         (exit, strerror): Remove decls.
24963         (error_print_progname): Prototype uncondionally.
24964         Don't include <errno.h>; no longer needed.
24965         (private_strerror): Remove.
24966         (error_tail): Always define.
24967         (error, error_at_line): Assume C89 or better; always use prototypes.
24968         * lib/fatal.c: Include "fatal.h" first, to test interface.
24969         Include <stdarg.h>, <stdlib.h>, <string.h> unconditionally.
24970         (VA_START): Remove; all uses changed to va_start.
24971         [! (HAVE_VPRINTF || HAVE_DOPRNT || _LIBC)]: Remove support for
24972         this case.
24973         (exit): Remove decl.
24974         (fatal): Prototype unconditionally.  Assume va_start works.
24975         Abort at end, to pacify gcc.
24976
24977         * lib/euidaccess.c (main): Define with a prototype.
24978
24979         * lib/exclude.c: Include <stdlib.h>, <string.h> unconditionally.
24980
24981         * lib/exitfail.c: Include <stdlib.h> unconditionally.
24982
24983         * lib/fnmatch_.h (__P): Remove.  All uses changed to assume
24984         prototypes.
24985         * lib/fnmatch.c: Include fnmatch.h first, to test interface.
24986         Include <string.h>, <stddef.h>, <stdlib.h> unconditionally.
24987         (getenv): Remove decl.
24988         (fnmatch): Define using a prototype.
24989         * lib/fnmatch_loop.c (FCT): Remove forward decl; no longer needed.
24990         (FCT): Define using a prototype.
24991
24992         * lib/getdate.y: Include <stdlib.h>, <string.h> unconditionally.
24993
24994         * lib/gethostname.c: Include <stddef.h>.
24995         (gethostname): Define with prototype.  Length is size_t, not int.
24996
24997 2003-09-08  Paul Eggert  <eggert@twinsun.com>
24998
24999         Assume C89 or better; remove K&R cruft.
25000         * m4/alloca.m4 (gl_PREREQ_ALLOCA): Don't check for stdlib.h, string.h.
25001         * m4/backupfile.m4 (gl_BACKUPFILE): Don't check for stdlib.h,
25002         string.h, getenv, malloc.
25003         * m4/dirname.m4 (gl_DIRNAME): Don't check for string.h or C standard
25004         headers.
25005         * m4/canon-host.m4 (gl_CANON_HOST): Don't check for string.h, stdlib.h.
25006         * m4/error.m4 (jm_PREREQ_ERROR): Do not require STDC headers, and
25007         do not check for strerror.
25008         * m4/exclude.m4: Do not check for stdlib.h, string.h, strings.h.
25009         * m4/exitfail.m4 (gl_EXITFAIL): Do not check for stdlib.h.
25010         * m4/fatal.m4 (gl_FATAL): Do not require STDC headers, and
25011         do not check for doprnt or vprintf.
25012         * m4/fnmatch.m4 (gl_PREREQ_FNMATCH_EXTRA): Remove.  All uses removed.
25013         * m4/getdate.m4 (gl_GETDATE): Don't check for stdlib.h or string.h.
25014
25015 2003-09-08  Paul Eggert  <eggert@twinsun.com>
25016
25017         * lib/getversion.c: Remove; was migrated to backupfile.c in 1997.
25018         getversion.c should have been removed then, but was accidentally
25019         preserved.
25020
25021         * lib/utime.c [!HAVE_UTIMES_NULL]: Include <sys/stat.h>, <fcntl.h>.
25022         (utime_null): Fix typo: 'st' was sometimes called 'sb'.
25023
25024 2003-09-08  Karl Berry  <karl@gnu.org>
25025
25026         * config/config.sub, config.guess, srclistvars.sh: update from savannah
25027                 config, forget about prep.
25028
25029         * config/depcomp, missing: update from automake.
25030
25031 2003-09-07  Paul Eggert  <eggert@twinsun.com>
25032
25033         * modules/time_r: Depend on 'restrict'.  Fix from Simon Josefsson in
25034         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00028.html>.
25035
25036 2003-09-07  Paul Eggert  <eggert@twinsun.com>
25037
25038         * lib/time_r.c (gmtime_r, localtime_r): Fix silly typo: missing arg to
25039         copy_tm_result.  Bug reported by Simon Josefsson in
25040         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00028.html>.
25041
25042 2003-09-06  Paul Eggert  <eggert@twinsun.com>
25043
25044         * m4/time_r.m4: New file.
25045         * m4/mktime.m4 (gl_PREREQ_MKTIME): Remove check for limits.h.
25046         * m4/timegm.m4 (gl_FUNC_TIMEGM): Assume that timegm is buggy if mktime
25047         is. Check for timegm declaration.
25048         (gl_PREREQ_TIMEGM): Require gl_FUNC_MKTIME.
25049         Do not check for gmtime_r.
25050         Replace mktime if __mktime_internal does not exist and if mktime
25051         hasn't been replaced already.
25052
25053 2003-09-06  Paul Eggert  <eggert@twinsun.com>
25054
25055         * lib/time_r.c, lib/time_r.h: New files.
25056
25057         * lib/mktime.c (my_mktime_localtime_r): Remove; all uses changed to
25058         __localtime_r.
25059         (__localtime_r) [!defined _LIBC]: New macro.  Include <time_r.h>.
25060         (__mktime_internal) [!defined _LIBC]: Now extern, not static.
25061
25062         * lib/strftime.c (my_strftime_gmtime_r): Remove; all uses changed to
25063         __gmtime_r.
25064         (my_strftime_localtime_r): Remove; all uses changed to __localtime_r.
25065         (__gtime_r, __localtime_r) [!HAVE_TM_GMTOFF]: New macros.
25066         Include <time_r.h>.
25067
25068         * lib/timegm.c: Switch to glibc implementation, with the following
25069         changes:
25070         [defined HAVE_CONFIG_H]: Include <config.h>.
25071         [!defined _LIBC]: Include "timegm.h" rather than <time.h>.
25072         (__mktime_internal) [!defined _LIBC]: New decl.
25073         (__gmtime_r) [!defined _LIBC]: New macro and function.
25074         (timegm): Use a prototype, since gnulib assumes C89.
25075         Do not bother declaring tmp to be const, as it's not really usefu.
25076         * lib/timegm.h: Hoist "#include <time.h>" out of #ifdef.
25077         (timegm): Declare only if HAVE_DECL_TIMEGM.
25078
25079 2003-09-06  Paul Eggert  <eggert@twinsun.com>
25080
25081         * MODULES.html.sh (func_all_modules): Add time_r.
25082         * modules/time_r: New file.
25083         * modules/mktime, modules/strftime, modules/timegm: Depend on time_r.
25084         * modules/timegm: Depend on mktime.  Change maintainer to "all, glibc".
25085
25086 2003-09-03  Paul Eggert  <eggert@twinsun.com>
25087
25088         * lib/human.c (human_readable): Fix bug that rounded 10501 to 10k.
25089         Bug reported by Lute Kamstra in
25090         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00003.html>.
25091
25092         * lib/getdate.y (relative_time_table): Use tDAY_UNIT for "tomorrow",
25093         "yesterday", "today", and "now" rather than tMINUTE_UNIT.  Of
25094         course with correspondingly smaller numbers for tomorrow and
25095         yesterday.  From Tadayoshi Funaba.  Originally installed into
25096         sh-utils on 1999-08-07, but the patch got lost (I guess during the
25097         coreutils merge?).
25098
25099 2003-08-31  Simon Josefsson  <jas@extundo.com>
25100
25101         * modules/timegm: New file.
25102         * MODULES.html.sh (func_all_modules): Add timegm.
25103
25104 2003-08-31  Simon Josefsson  <jas@extundo.com>
25105
25106         * m4/timegm.m4: New file.
25107
25108 2003-08-31  Simon Josefsson  <jas@extundo.com>
25109
25110         * lib/timegm.h: New file.
25111         * lib/timegm.c: New file.  Based on
25112         wget-1.8.2/src/http.c:mktime_from_utc.
25113
25114 2003-08-31  Karl Berry  <karl@gnu.org>
25115
25116         * lib/argp.h: update from libc.
25117
25118 2003-08-28  Bruno Haible  <bruno@clisp.org>
25119
25120         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Remove AC_DEFINE of fnmatch here.
25121         This avoids havoc on compilers for which '#define fnmatch rpl_fnmatch'
25122         followed by '#define fnmatch fnmatch_posix' gives an error.
25123
25124 2003-08-28  Bruno Haible  <bruno@clisp.org>
25125
25126         * lib/binary-io.h: Undefine O_BINARY before defining it. This avoids a
25127         warning on QNX, which defines O_BINARY to 000000.
25128
25129 2003-08-27  Jim Meyering  <jim@meyering.net>
25130
25131         * m4/mkstemp.m4: Require that the system mkstemp be able to create
25132         70 temporary files, not just 30.  Tru64 V4.0F's mkstemp function
25133         would fail after 32.  Reported by Danny Levinson.  Details here:
25134         http://mail.gnu.org/archive/html/bug-coreutils/2003-08/msg00124.html
25135
25136 2003-08-24  Bruno Haible  <bruno@clisp.org>
25137
25138         * lib/binary-io.h: Include <stdio.h>, to avoid a compilation error when
25139         MSVC7 <stdio.h> is included later.
25140
25141 2003-08-22  Simon Josefsson  <jas@extundo.com>
25142
25143         * modules/strndup (Makefile.am): Add strndup.h to lib_SOURCES.
25144
25145 2003-08-20  Karl Berry  <karl@gnu.org>
25146
25147         * m4/lib-ld.m4: serial 1003 from gettext, no changes besides serial.
25148
25149 2003-08-20  Bruno Haible  <bruno@clisp.org>
25150
25151         * modules/progname: New file.
25152         * MODULES.html.sh (func_all_modules): Add progname.
25153
25154 2003-08-20  Bruno Haible  <bruno@clisp.org>
25155
25156         * lib/progname.h: New file, from GNU gettext.
25157         * lib/progname.c: New file, from GNU gettext.
25158         * lib/progreloc.c: New file, from GNU gettext.
25159
25160 2003-08-19  Jim Meyering  <jim@meyering.net>
25161
25162         * m4/lib-ld.m4: Revert yesterday's change, per Bruno's request here:
25163         http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00155.html
25164
25165 2003-08-19  Bruno Haible  <bruno@clisp.org>
25166
25167         * m4/xalloc.m4 (gl_PREREQ_XSTRDUP): Don't check for <string.h> any
25168         more.
25169
25170 2003-08-19  Bruno Haible  <bruno@clisp.org>
25171
25172         * lib/xstrdup.c: Assume <string.h> exists.
25173
25174 2003-08-18  Paul Eggert  <eggert@twinsun.com>
25175
25176         * modules/stdbool: Add BUILT_SOURCES.  Prefer $@ to target name
25177         in makefile rules.
25178
25179 2003-08-18  Jim Meyering  <jim@meyering.net>
25180
25181         * m4/getloadavg.m4: Use [\t ], not [ \t] (where \t is a literal TAB).
25182         * m4/lib-ld.m4: Likewise.
25183
25184 2003-08-18  Jim Meyering  <jim@meyering.net>
25185
25186         * lib/setenv.h: Indent nested cpp directive.
25187         * lib/vasnprintf.c: Remove trailing blanks.
25188
25189 2003-08-17  Simon Josefsson  <jas@extundo.com>
25190
25191         * modules/xstrndup: New file.
25192         * MODULES.html.sh (func_all_modules): Add xstrndup.
25193
25194 2003-08-17  Simon Josefsson  <jas@extundo.com>
25195
25196         * modules/argp: Fix autoconf macro name. Add more dependencies.
25197
25198 2003-08-17  Simon Josefsson  <jas@extundo.com>
25199
25200         * m4/xstrndup.m4: New file.
25201
25202 2003-08-17  Simon Josefsson  <jas@extundo.com>
25203
25204         * m4/argp.m4: New file.
25205
25206 2003-08-17  Simon Josefsson  <jas@extundo.com>
25207             Bruno Haible  <bruno@clisp.org>
25208
25209         * lib/xstrndup.h: New file.
25210         * lib/xstrndup.c: New file.
25211
25212 2003-08-17  Bruno Haible  <bruno@clisp.org>
25213
25214         * modules/strndup (Files, Include): Add lib/strndup.h.
25215
25216 2003-08-17  Bruno Haible  <bruno@clisp.org>
25217
25218         * modules/euidaccess (Files): Add lib/euidaccess.h.
25219
25220 2003-08-17  Bruno Haible  <bruno@clisp.org>
25221
25222         * lib/strndup.h: New file.
25223
25224 2003-08-17  Bruno Haible  <bruno@clisp.org>
25225
25226         * gnulib-tool (func_create_testdir): Handle gl_USE_SYSTEM_EXTENSIONS
25227         like AC_GNU_SOURCE.
25228         * modules/extensions (configure.ac): Comment out the invocation of
25229         gl_USE_SYSTEM_EXTENSIONS.
25230
25231 2003-08-16  Paul Eggert  <eggert@twinsun.com>
25232
25233         Merges from coreutils, etc.
25234         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Insert ':' to prevent a syntax
25235         error in gl_FUNC_MATCH.  This fixes a bug I introduced on 2003-05-28.
25236         * m4/readlink.m4 (gl_PREREQ_READLINK): Renamed from gl_PREREQ_READLINE,
25237         fixing a typo.
25238         * m4/host-os.m4 (UTILS_HOST_OS): Add GNU/NetBSD, GNU/FreeBSD.
25239         * m4/hash.m4 (gl_HASH): Use AM_STDBOOL_H, not AC_HEADER_STDBOOL.
25240
25241 2003-08-16  Paul Eggert  <eggert@twinsun.com>
25242
25243         Document merge from coreutils.
25244         * modules/alloca: Append $(ALLOCA_H) to BUILT_SOURCES.
25245         * modules/fnmatch: Append $(FNMATCH_H) to BUILT_SOURCES.
25246         * modules/utime: Add m4/utimes-null.m4.
25247
25248 2003-08-16  Paul Eggert  <eggert@twinsun.com>
25249
25250         * lib/regex.h, strdup.c, strtoll.c, strtoul.c: Do not normalize white
25251         space, undoing this 2003-08-12 change:
25252         <http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00080.html>
25253
25254 2003-08-16  Paul Eggert  <eggert@twinsun.com>
25255
25256         * config/srclist.txt: Get regex.h, strdup.c, strtoll.c,
25257         strtoul.c from libc, undoing this 2003-08-12 change:
25258         <http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00080.html>
25259
25260 2003-08-16  Jim Meyering  <jim@meyering.net>
25261
25262         Merges from coreutils.
25263         * m4/readdir.m4 (GL_FUNC_READDIR): Change name to have GL_ (not jm_)
25264         prefix.  Adjust cache variables similarly.  Create 500 rather than
25265         just 300 files, to exercise bug on Darwin6.5, too.
25266         * m4/perl.m4 (jm_PERL): Use $am_missing_run, not undefined
25267         $missing_dir.
25268         * m4/jm-winsz1.m4: Require AC_SYS_POSIX_TERMIOS, not
25269         AM_SYS_POSIX_TERMIOS.
25270         Reported by mkc@mathdogs.com.
25271         Also change use of $am_cv_sys_posix_termios
25272         to $ac_cv_sys_posix_termios.  Reported by Andreas Schwab.
25273         * m4/getgroups.m4 (jm_FUNC_GETGROUPS): Rewrite to use AC_FUNC_GETGROUPS
25274         and (if needed) to call AC_LIBOBJ and to set GETGROUPS_LIB.
25275         * m4/fsusage.m4 [__GLIBC__]: GNU libc's statvfs stats each mount point
25276         in /proc/mounts until it finds one with matching device number.  This
25277         is unnecessary when the FILE argument *is* a mount point.  No stat call
25278         is necessary in that case.  So, disable the statvfs-testing code on
25279         systems with GNU libc.  Reported by Andrei Gaponenko via Tim Waugh
25280         as RedHat bug# 84846.
25281         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Limit stack size
25282         to 1MB, so as not to render systems with no stack size limit (e.g.,
25283         linux-2.2.x) unusable.  Suggestion and code from Bruno Haible.
25284         Include <unistd.h>.  On some systems,
25285         it is required for the definition of _SC_PAGESIZE.
25286
25287 2003-08-16  Jim Meyering  <jim@meyering.net>
25288
25289         Merge from coreutils.
25290         * lib/xstrtoimax.c: #else #if -> #elif.
25291         * lib/xstrtoumax.c: Likewise.
25292
25293 2003-08-16  Jim Meyering  <jim@meyering.net>
25294
25295         * m4/utimes.m4 (gl_FUNC_UTIMES): New file.
25296         * m4/utimes.m4: Removed.
25297         * m4/utimes-null.m4: Renamed from utimes.m4.
25298
25299         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Limit stack size
25300         to 1MB, so as not to render systems with no stack size limit (e.g.,
25301         linux-2.2.x) unusable.  Suggestion and code from Bruno Haible.
25302         Include <unistd.h>.  On some systems,
25303         it is required for the definition of _SC_PAGESIZE.
25304
25305 2003-08-16  Jim Meyering  <jim@meyering.net>
25306         and Paul Eggert  <eggert@cs.ucla.edu>
25307
25308         Merges from coreutils, etc.
25309
25310         * m4/jm-macros.m4 (AC_LANG_SOURCE(C)): New macro, undefine, then define
25311         using the latest version from cvs.  This avoids problems with #line
25312         directives using a vendor (Sun) compiler.
25313         (jm_MACROS): Bump prerequisite from 2.52g to 2.57.
25314         Don't set GETGROUPS_LIB here; now it's
25315         done via getgroups.m4's wrapper function.
25316         AC_SUBST OPTIONAL_BIN_PROGS, OPTIONAL_BIN_ZCRIPTS, and MAN here,
25317         rather than just in sh-util/configure.in, so that the
25318         now-shared-by-fileutils-and-textutils lib/Makefile.am are all the
25319         same.
25320         Use AC_CONFIG_LIBOBJ_DIR(lib) to tell the new
25321         AC_FUNC_GETLOADAVG where to find getloadavg.c.
25322         Require AC_FUNC_FTW, gt_INTTYPES_PRI, gl_CLOCK_TIME,
25323         UTILS_SYS_OPEN_MAX, GL_FUNC_GETCWD_PATH_MAX, GL_FUNC_READDIR,
25324         gl_FSUSAGE, gl_MOUNTLIST, AC_FUNC_CANONICALIZE_FILE_NAME.
25325         Remove code that is now done by the newly-required macros.
25326         Append $(EXEEXT) to DF_PROG.
25327         AC_LIBOBJ fchdir-stub if fchdir doesn't exist; similarly for fchown.
25328         Do not invoke or require the following here,
25329         since prereq.m4 or some gnulib .m4 now does this for us:
25330         gl_REGEX, UTILS_FUNC_MKDIR_TRAILING_SLASH, jm_BISON, gl_FUNC_MKTIME,
25331         jm_FUNC_LSTAT, jm_FUNC_STAT, jm_FUNC_REALLOC, jm_FUNC_MALLOC,
25332         jm_FUNC_NANOSLEEP, jm_FUNC_READDIR, jm_FUNC_MEMCMP,
25333         jm_FUNC_GLIBC_UNLOCKED_IO, AC_FUNC_FNMATCH_GNU, jm_FUNC_PUTENV,
25334         jm_AC_PREREQ_XSTRTOUMAX, jm_AC_PREREQ_XSTRTOIMAX,
25335         AC_FUNC_ERROR_AT_LINE, jm_FUNC_GNU_STRFTIME, AC_FUNC_VPRINTF,
25336         vb_FUNC_RENAME, UTILS_FUNC_MKSTEP, jm_FUNC_UTIME, AM_FUNC_GETLINE,
25337         AC_FUNC_OBSTACK.
25338         Do not replace the following functions, as this is now the job
25339         of some gnulib .m4: strcasecmp, strncasecmp, dup2, gethostname,
25340         getusershell, sig2str, strcspn, stpcpy, strstr, strtol, strtoul
25341         strpbrk, euidaccess, memcmp, rmdir, rpmatch, strndup, strverscmp,
25342         atexit getpass, strdup, getpagesize.
25343         Replace 'raise'.
25344         Do not check for the following functions, as this is now the job
25345         of some gnulib .m4: bcopy, canonicalize_file_name, fchdir, ftime,
25346         getcwd, getmntinfo, resolvepath.  But check for sysctl, setreuid,
25347         setregid.
25348         (jm_CHECK_ALL_HEADERS): Do not check for fenv.h.
25349         Check for sys/sysctl.h.
25350         (jm_CHECK_ALL_TYPES): Do not require AC_STRUCT_TM, AC_STRUCT_TIMEZONE,
25351         jm_CHECK_TYPE_STRUCT_TIMESPEC.  Invoke gt_TYPE_SSIZE_T instead
25352         of checking for ssize_t ourselves.
25353
25354         * m4/prereq.m4 (jm_PREREQ): Don't invoke macros; AC_REQUIRE them.
25355         Require every macro that gnulib/modules/* suggests for us.
25356         (jm_PREREQ_ADDEXT): New macro.
25357         (jm_PREREQ_STAT): Check for 'struct statfs' on Ultrix 4.4.
25358         Require jm_AC_TYPE_LONG_LONG instead of invoking it.
25359
25360         * m4/physmem.m4 (gl_SYS__SYSTEM_CONFIGURATION): New macro.
25361         (gl_PHYSMEM): Use it.
25362         Also check for `table' function.
25363         Check for new headers and functions.
25364         Add check for sys/sysmp.h.
25365         With suggestions from Kaveh Ghazi.
25366         Ignore headers that are present but cannot be compiled.  This
25367         avoids spurious warnings on Solaris 9 sparc with Forte Developer 7
25368         C 5.4.
25369
25370 2003-08-15  Paul Eggert  <eggert@twinsun.com>
25371
25372         Document merge from coreutils.
25373         * modules/userspec: Depend on posixver.
25374         * modules/strftime: Depend on tzset.
25375
25376 2003-08-15  Paul Eggert  <eggert@twinsun.com>
25377
25378         * lib/config.charset, ref-add.sin, ref-del.sin: Use three spaces,
25379         rather than tab, after '#' in shell-script copyright notices.
25380         Suggested by Bruno Haible.
25381
25382 2003-08-15  Paul Eggert  <eggert@twinsun.com>
25383
25384         * config/srclist-update: Use three spaces, rather than tab, after '#'
25385         in shell-script copyright notices.  Suggested by Bruno Haible.
25386         Remove unnecessary parenthesization in regular expression.
25387
25388 2003-08-15  Jim Meyering  <jim@meyering.net>
25389
25390         Merge from coreutils.
25391         * lib/xgethostname.c: Include <stdlib.h>.
25392         (xghostname): Don't exit for anything other than memory-related
25393         failure; just return NULL.
25394         * lib/userspec.c: Include "posixver.h".
25395         (parse_user_spec): Accept `.' as a separator only
25396         in pre-POSIX-200112 mode.
25397         * lib/strtoimax.c: Use #elif rather than #else #if.
25398         * lib/strftime.c (my_strftime) [!_LIBC && HAVE_TZNAME && HAVE_TZSET]:
25399         Remove function, now that we can rely on a working tzset function.
25400         [!_LIBC]: Ensure that the required autoconf test has been run.
25401         [!defined _NL_CURRENT && HAVE_STRFTIME]:
25402         Use underlying_strftime for %r.
25403         * lib/sha.c: Merge in some clean-up and optimization changes from
25404         glibc.
25405         * lib/sha.c (sha_stream) [BLOCKSIZE]: Move definition to top of file.
25406         Ensure that it is a multiple of 64.
25407         Rearrange loop exit tests so as to avoid performing an
25408         additional fread after encountering an error or EOF.
25409         * lib/realloc.c: Update copyright date.
25410
25411 2003-08-15  Jim Meyering  <jim@meyering.net>
25412         and Paul Eggert  <eggert@twinsun.com>
25413
25414         Merge from coreutils.
25415         * lib/readutmp.h (HAVE_UTMPX_H): Undef if struct utmp has the ut_exit
25416         member but strut utmpx does not.  Needed for AIX 4.3.3.
25417         (UT_EXIT_E_TERMINATION, UT_EXIT_E_EXIT): Define.
25418
25419 2003-08-15  Jim Meyering  <jim@meyering.net>
25420         and Paul Eggert  <eggert@cs.ucla.edu>
25421
25422         Merges from coreutils, etc.
25423         * m4/strftime.m4 (_jm_STRFTIME_PREREQS):
25424         Require gl_FUNC_TZSET_CLOBBER.
25425         * m4/readutmp.m4 (gl_READUTMP): Check for ut_exit.ut_exit,
25426         ut_exit.e_exit, ut_exit.ut_termination, and ut_exit.e_termination
25427         members.
25428
25429 2003-08-14  Paul Eggert  <eggert@twinsun.com>
25430
25431         Help the merge from coreutils.
25432         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): New macro.
25433         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Use it.
25434         * m4/tzset.m4: Use it too.
25435
25436 2003-08-14  Paul Eggert  <eggert@twinsun.com>
25437
25438         * modules/tzset: New file.
25439
25440 2003-08-14  Jim Meyering  <jim@meyering.net>
25441
25442         Merges from coreutils.
25443         * modules/fnmatch: Use the `$(FNMATCH_H)' notation for AC_REPLACED
25444         variable names, rather than @FNMATCH_H@.
25445         * modules/alloca: Likewise for $(ALLOCA_H).
25446
25447         * modules/fnmatch (fnmatch.h): Use `$@' in the commands, in place of
25448         the three copies of the literal target, `fnmatch.h'.
25449         * modules/alloca (alloca.h): Likewise.
25450
25451 2003-08-14  Jim Meyering  <jim@meyering.net>
25452
25453         Merge from coreutils.
25454         * m4/tzset.m4: New file.
25455         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Move the
25456         MOUNTED_VMOUNT test to precede the MOUNTED_GETMNTENT1 tests, since
25457         otherwise, AIX 5.1 systems would end up using the latter.
25458         MOUNTED_GETMNTENT1 support is inadequate on such systems: 1) detecting
25459         whether a file system is remote doesn't work  2) the MOUNTED_VMOUNT
25460         code reports the HOSTNAME:/MOUNT_POINT, while the MOUNTED_GETMNTENT1
25461         code reports merely /MOUNT_POINT.  Reported by Mike Jetzer.
25462
25463 2003-08-14  Jim Meyering  <jim@meyering.net>
25464
25465         Merge from coreutils.
25466         * lib/obstack.h: Whitespace changes.
25467         * lib/mountlist.c: Remove anachronistic casts of xmalloc, xrealloc,
25468         and xcalloc return values.
25469         (read_filesystem_list) [MOUNTED_GETFSSTAT]:
25470         Use MNT_NOWAIT, rather than MNT_WAIT.  Otherwise, `df DIR' could
25471         hang on OSF/1 5.1 for DIR on both local and remote file systems.
25472         Reported by (and fix confirmed by) Nelson H. F. Beebe.
25473         (read_filesystem_list) [MOUNTED_VMOUNT]: Detect any
25474         error from mntctl.
25475         Use mntctl's return value to drive the entry-processing loop, since
25476         we can't rely on the value of the vmt_length member in the last
25477         entry.  On some systems doing so could result in exhausting
25478         virtual memory.  Based in part on a patch from Mike Jetzer.
25479
25480 2003-08-14  Jim Meyering  <jim@meyering.net>
25481         and Paul Eggert  <eggert@twinsun.com>
25482
25483         Merges from coreutils, plus other fixes.
25484         * lib/physmem.c: Merge in portability changes from gcc/libiberty
25485         to support AIX, IRIX, Tru64, and Windows.  See the ChangeLog there
25486         for credits and details.  Thanks to Kaveh Ghazi for helping
25487         to keep these files in sync.
25488         (ARRAY_SIZE): Define it.
25489         (physmem_total, physmem_available): Add comments. From Kaveh Ghazi.
25490         * lib/memcasecmp.c: Remove unnecessary parentheses after 'defined'.
25491         (memcasecmp): Don't assume size_t fits in unsigned int.
25492         Remove casts and duplicate code.
25493         * lib/md5.c: Include <string.h> and <stdlib.h> unconditionally.
25494         (memcpy): Remove definition.
25495         Merge in some clean-up and optimization changes from glibc.
25496         [BLOCKSIZE]: Move definition to top of file.
25497         Ensure that it is a multiple of 64.
25498         Rearrange loop exit tests so as to avoid performing an
25499         additional fread after encountering an error or EOF.
25500         * lib/md5.h (md5_uintptr): Define.
25501         * lib/makepath.c (CLEANUP_CWD): Report an error if we failed to
25502         return to the initial working directory.  Preserve errno
25503         for caller.
25504         * lib/idcache.c: Include "xalloc.h".
25505         (xmalloc, xrealloc): Remove decls.
25506         (getuser): Remove casts no longer required in C89.
25507         * lib/human.c: Include stdio.h, for sprintf.
25508         * lib/group-member.c: Include "xalloc.h".
25509         (xmalloc, xrealloc): Remove decls.
25510         (get_group_info): Remove casts no longer required in C89.
25511         * lib/getusershell.c (readname): Remove casts no longer required in
25512         C89.
25513         * lib/gettimeofday.c (rpl_gmtime, rpl_tzset): New functions.
25514         * lib/getline.c: Whitespace fix, from coreutils.
25515
25516 2003-08-13  Paul Eggert  <eggert@twinsun.com>
25517
25518         * m4/exclude.m4 (gl_EXCLUDE): Require AC_C_INLINE, AC_HEADER_STDC.
25519         Check for isascii.
25520
25521         * m4/gettext.m4, iconv.m4, intdiv0.m4, inttypes-pri.m4, lib-link.m4,
25522         lib-prefix.m4, longdouble.m4, po.m4, progtest.m4, signed.m4:
25523         Undo previous (whitespace-only) change.
25524
25525 2003-08-13  Paul Eggert  <eggert@twinsun.com>
25526
25527         * lib/exclude.c: Include <ctype.h>
25528         (IN_CTYPE_DOMAIN): New macro.
25529         (is_space): New fn.
25530         (add_exclude_file): If LINE_END is a space, ignore trailing spaces
25531         and empty lines.
25532
25533         * lib/argp-help.c, argp-parse.c, config.charset, getopt.h:
25534         Undo previous (whitespace-only) change.
25535
25536 2003-08-13  Paul Eggert  <eggert@twinsun.com>
25537
25538         * config/srclist-update: Change update back to the old behavior,
25539         leaving whitespace alone.  Use one 'sed' command rather than a
25540         pipeline.
25541         (fixlicense): Now a variable, not a function.
25542         (remove_trailing_blanks): Remove.
25543         (fixfile): Don't invoke unexpand or cat, or remove trailing blanks.
25544         * config/config.guess, config.sub, install-sh, missing, texinfo.tex:
25545         Undo previous (whitespace-only) change.
25546
25547 2003-08-12  Paul Eggert  <eggert@twinsun.com>
25548
25549         Merge from coreutils.
25550         * modules/euidaccess: Add lib_SOURCES, include for new
25551         file euidaccess.h
25552
25553 2003-08-12  Paul Eggert  <eggert@twinsun.com>
25554
25555         * m4/gettext.m4, iconv.m4, intdiv0.m4, inttypes-pri.m4, lib-link.m4,
25556         lib-prefix.m4, longdouble.m4, po.m4, progtest.m4, signed.m4:
25557         Normalize leading white space and remove trailing white space.
25558
25559         Merge from coreutils
25560         * m4/euidaccess.m4 (gl_FUNC_EUIDACCESS): Check for euidaccess decl.
25561
25562         * m4/lib-ld.m4, lib-link.m4, lib-prefix.m4: Regenerate from gettext
25563         0.12.1.  These files are now being upgraded automatically by
25564         ../config/srclist-update.
25565
25566 2003-08-12  Paul Eggert  <eggert@twinsun.com>
25567
25568         * lib/argp-help.c, argp-parse.c, config.charset, getopt.h:
25569         Normalize leading white space and remove trailing white space.
25570         * lib/ref-add.sin, ref-del.sin: Use '#' before empty line in copyright
25571         notice, as per ../config/srclist-update.
25572
25573         Merge from coreutils.
25574         * lib/euidaccess.h: New file.
25575         * lib/euidaccess.c: Include it.
25576         * lib/.cppi-disable: Add printf-args.h, printf-parse.h, stdbool_.h,
25577         vasnprintf.h, vasprintf.h.  Remove strdup.c, gettext.h.
25578         * lib/regex.h, strdup.c, strtoll.c, strtoul.c: Normalize white space.
25579
25580 2003-08-12  Paul Eggert  <eggert@twinsun.com>
25581
25582         * config/srclist-update: Add copyright notice.
25583         (remove_id_lines, remove_trailing_blanks): New constants.
25584         (fixfile): Use them to normalize spacing a bit in copied files.
25585         * config/config.guess, config.sub, install-sh, missing, texinfo.tex:
25586         Normalize leading white space and remove trailing white space.
25587
25588         * config/texinfo.tex: Sync with texinfo.
25589
25590         * config/srclist.txt: Don't get regex.h, strdup.c, strtoll.c,
25591         strtoul.c from libc, to merge coreutils whitespace changes.
25592
25593         * config/srclist.txt: Get the following m4 files from gettext:
25594         codeset.m4, gettext.m4, glibc21.m4, iconv.m4, intdiv0.m4,
25595         inttypes-pri.m4, lcmessage.m4, lib-ld.m4, lib-link.m4, lib-prefix.m4,
25596         longdouble.m4, nls.m4, po.m4, progtest.m4, signed.m4, wchar_t.m4,
25597         wint_t.m4.
25598
25599 2003-08-12  Karl Berry  <karl@gnu.org>
25600
25601         * config/srclist.txt: can't sync vasnprintf.c any more, changes have
25602         been made.
25603
25604 2003-08-11  Paul Eggert  <eggert@twinsun.com>
25605
25606         * modules/gnu-source, m4/gnu-source.m4:
25607         Remove; we're assuming Autoconf 2.54 or later now.
25608         Suggested by Bruno Haible.
25609         * MODULES.html.sh (func_all_modules): Remove gnu-source.
25610
25611 2003-08-11  Bruno Haible  <bruno@clisp.org>
25612
25613         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF): Also check for wcslen.
25614
25615 2003-08-11  Bruno Haible  <bruno@clisp.org>
25616
25617         * lib/vasnprintf.c (local_wcslen): New function, for Solaris 2.5.1.
25618         (vasnprintf): Use it instead of wcslen.
25619
25620 2003-08-11  Bruno Haible  <bruno@clisp.org>
25621
25622         * lib/stdbool_.h (_Bool): Undo last change; instead use a negative enum
25623         value to ensure that _Bool promotes to int. Use #define for _Bool when
25624         using the Solaris C compiler. Adds comments suggested by Paul Eggert.
25625
25626 2003-08-10  Karl Berry  <karl@gnu.org>
25627
25628         * lib/regex.h: update from libc (whitespace fix).
25629
25630 2003-08-09  Paul Eggert  <eggert@twinsun.com>
25631
25632         Merge some files from coreutils.  These changes were
25633         originally made by Jim Meyering.
25634         * lib/acl.c: Include <sys/types.h> before <sys/stat.h>;
25635         many older Unixes require this.
25636         * lib/alloca.c (alloca): Remove cast to argument of free;
25637         no longer needed in C89.
25638         * lib/alloca_.h, regex.h: Fix white space to match
25639         what GNU indent does.
25640
25641 2003-08-09  Paul Eggert  <eggert@twinsun.com>
25642
25643         * m4/regex.m4 (jm_INCLUDED_REGEX): Change "\201" to "\371";
25644         apparently Emacs's Unicode mode got confused before my 2003-08-05
25645         checkin.
25646
25647 2003-08-08  Paul Eggert  <eggert@twinsun.com>
25648
25649         * m4/extensions.m4: New file.
25650         * m4/timespec.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC):
25651         Require gl_USE_SYSTEM_EXTENSIONS.
25652         * m4/unlocked-io.m4 (jm_FUNC_GLIBC_UNLOCKED_IO):
25653         Require gl_USE_SYSTEM_EXTENSIONS rather than AC_GNU_SOURCE.
25654
25655 2003-08-08  Paul Eggert  <eggert@twinsun.com>
25656
25657         * MODULES.html.sh (func_all_modules): Add extensions, gnu-source.
25658         * modules/extensions, modules/gnu-source: New files.
25659         * modules/timespec, modules/unlocked-io: Depend on extensions.
25660
25661 2003-08-07  Paul Eggert  <eggert@twinsun.com>
25662
25663         * modules/restrict: New file.
25664         * MODULES.html.sh (func_all_modules): Add restrict.
25665         * modules/regex: Depend on restrict.
25666
25667 2003-08-07  Paul Eggert  <eggert@twinsun.com>
25668
25669         * m4/restrict.m4: New file.
25670         * m4/regex.m4 (jm_PREREQ_REGEX): Add gl_C_RESTRICT.
25671
25672 2003-08-07  Bruno Haible  <bruno@clisp.org>
25673
25674         * modules/getndelim2 (Makefile.am): Add the files to EXTRA_DIST, not
25675         lib_SOURCES, because getndelim2.m4 now uses AC_LIBOBJ(getndelim2).
25676
25677 2003-08-07  Bruno Haible  <bruno@clisp.org>
25678
25679         * m4/getndelim2.m4 (gl_GETNDELIM2): Use AC_LIBOBJ(getndelim2). This
25680         makes the module 'getndelim2' compatible with the module 'getline'.
25681
25682 2003-08-05  Paul Eggert  <eggert@twinsun.com>
25683
25684         * m4/regex.m4 (jm_INCLUDED_REGEX): Replace a single non-ASCII
25685         byte with "\201" to avoid glitches when editing that source file
25686         with multi-gnome-terminal.
25687
25688 2003-08-05  Paul Eggert  <eggert@twinsun.com>
25689
25690         * lib/bumpalloc.h: Remove.
25691
25692 2003-08-05  Paul Eggert  <eggert@twinsun.com>
25693
25694         * MODULES.html.sh (func_all_modules): Remove bumpalloc.
25695         * modules/bumpalloc: Remove.
25696
25697 2003-08-04  Paul Eggert  <eggert@twinsun.com>
25698
25699         * lib/getloadavg.c: Change copyright notice and spacing to conform to
25700         GNU coding style.
25701
25702         Merge from coreutils.
25703         * lib/error.c [!USE_IN_LIBIO]: Omit this case; assume USE_IN_LIBIO is
25704         1. From glibc.
25705         * lib/getdate.y (date): Also accept dates like May-23-2003; suggestion
25706         from Karl Berry, implemented by Jim Meyering.
25707         * lib/getgroups.c: Include "xalloc.h" instead of declaring xalloc fns;
25708         from Dmitry V. Levin.
25709         Remove anachronistic cast of xrealloc.
25710         * lib/fnmatch_.h (__const): Remove.  Use 'const'.
25711         * lib/fnmatch_loop.c (NEW_PATTERN): Cast alloca return value to proper
25712         type. Otherwise, it wouldn't compile with at least /bin/cc on
25713         ymp-cray-unicos9.0.2.X.
25714         Combine two mostly-identical uses of alloca into one.
25715         Thanks to the Cray-Cyber project for access to a Cray Y-MP.
25716
25717 2003-08-04  Dave Love  <d.love@dl.ac.uk>
25718
25719         [From Emacs.]
25720
25721         * lib/getloadavg.c: Check `__unix' as well as `unix'.  Use #ifdef, not
25722         #if.  Check HAVE_LIBKSTAT as well as LOAD_AVE_TYPE.  Check
25723         F_SETFD, not FD_SETFD.  Use HAVE_STRUCT_NLIST_N_UN_N_NAME, not
25724         obsolete NLIST_NAME_UNION.
25725         [__GNU__]: Undef BSD and FSCALE.
25726         [!NLIST_STRUCT]: Remove conditional definition of NLIST_STRUCT.
25727
25728 2003-08-03  Paul Eggert  <eggert@twinsun.com>
25729
25730         * lib/stdbool_.h (_Bool): Make it signed char, instead of
25731         an enum type, so that it's guaranteed to promote to int.  See:
25732         <http://mail.gnu.org/archive/html/bug-gnulib/2003-07/msg00124.html>
25733
25734 2003-08-03  Karl Berry  <karl@gnu.org>
25735
25736         * config/depcomp: update from automake.
25737
25738 2003-07-31  Paul Eggert  <eggert@twinsun.com>
25739
25740         * lib/strerror.c: Include config.h, limits.h.  Declare sprintf.
25741         (strerror): Don't assume that a printable int fits in 14 bytes.
25742
25743 2003-07-31  Bruno Haible  <bruno@clisp.org>
25744
25745         * modules/getpass-gnu: New file.
25746         * MODULES.html.sh (func_all_modules): Add getpass-gnu.
25747
25748 2003-07-31  Bruno Haible  <bruno@clisp.org>
25749
25750         * m4/getpass.m4 (gl_FUNC_GETPASS_GNU): New macro.
25751
25752 2003-07-24  Karl Berry  <karl@gnu.org>
25753
25754         * config/missing: update from automake.
25755
25756 2003-07-24  Derek Robert Price  <derek@ximbiot.com>
25757             Bruno Haible  <bruno@clisp.org>
25758
25759         * lib/getline.h (getline, getdelim): Change return type to ssize_t.
25760         * lib/getline.c (getline, getdelim): Likewise.
25761         Remove _GNU_SOURCE define; now it's defined in config.h through
25762         m4/getline.m4.
25763
25764 2003-07-23  Karl Berry  <karl@gnu.org>
25765
25766         * config/config.sub: update from prep.
25767
25768 2003-07-22  Paul Eggert  <eggert@twinsun.com>
25769
25770         * modules/xalloc (Depends-on): Add exitfail.
25771         * modules/xmemcoll: Likewise.
25772
25773 2003-07-22  Paul Eggert  <eggert@twinsun.com>
25774
25775         * lib/xalloc.h (XCALLOC, XREALLOC, CCLONE): Fix under- and
25776         over-parenthesization in macros.
25777
25778         Sync with coreutils.
25779
25780         * lib/xalloc.h (XMALLOC, XCALLOC, XREALLOC): Remove casts not
25781         required by C99.
25782
25783         Use `exit_failure' for xalloc and xmemcoll instead of their own
25784         private exit-failure variables.
25785         * lib/xalloc.h (xalloc_exit_failure): Remove.
25786         * lib/xmalloc.c: Likewise.  Include exitfail.h.
25787         (xalloc_die): Use exit_failure instead of xalloc_exit_failure.
25788         * lib/xmemcoll.h (xmemcoll_exit_failure): Remove.
25789         * lib/xmemcoll.c: Likewise.  Include exitfail.h.
25790         (xmemcoll): Use exit_failure instead of xalloc_exit_failure.
25791
25792 2003-07-20  Jim Meyering  <jim@meyering.net>
25793
25794         * modules/closeout (Depends-on): Add exitfail.
25795         Suggestion from Bruno Haible.
25796
25797 2003-07-19  Karl Berry  <karl@gnu.org>
25798
25799         * config/config.sub: update from prep.
25800
25801 2003-07-18  Paul Eggert  <eggert@twinsun.com>
25802
25803         * lib/closeout.h (close_stdout_set_status, close_stdout_status):
25804         Remove.
25805         * lib/closeout.c: Likewise.  Include "closeout.h" right after config.h,
25806         to test that it can stand by itself.  Include "exitfail.h".
25807         Clients should set exit_failure instead.
25808         (EXIT_FAILURE): Remove; no longer needed.  Do not include <stdlib.h>.
25809
25810 2003-07-18  Bruno Haible  <bruno@clisp.org>
25811
25812         * modules/getndelim2: New file.
25813         * modules/getline: Share files with module getndelim2.
25814         * modules/getnline: Depend on getndelim2 instead of sharing files with
25815         it. Add getnline.c to lib_SOURCES.
25816         * MODULES.html.sh (func_all_modules): Add getndelim2.
25817
25818 2003-07-18  Bruno Haible  <bruno@clisp.org>
25819
25820         * m4/getndelim2.m4: New file.
25821         * m4/getline.m4 (AM_FUNC_GETLINE): Add AC_LIBOBJ of getndelim2.c and
25822         invoke gl_PREREQ_GETNDELIM2.
25823         (gl_PREREQ_GETLINE): Drop AC_HEADER_STDC, now done by
25824         gl_PREREQ_GETNDELIM2.
25825         * m4/getnline.m4 (gl_GETNLINE): Drop AC_HEADER_STDC, now done by
25826         gl_GETNDELIM2.
25827
25828 2003-07-18  Bruno Haible  <bruno@clisp.org>
25829
25830         * lib/getndelim2.h: New file.
25831         * lib/getndelim2.c: Make into a module of its own. Include config.h,
25832         getndelim2.h.
25833         (getndelim2): Make non-static. Change return type to ssize_t.
25834         * lib/getline.h: Change argument names.
25835         * lib/getline.c: Include getndelim2.h instead of getndelim2.c.
25836         * lib/getnline.c: Include getndelim2.h.
25837
25838 2003-07-18  Andreas Schwab  <schwab@suse.de>
25839
25840         * lib/memcoll.c (memcoll) [!HAVE_STRCOLL]: Clear errno.
25841
25842 2003-07-17  Karl Berry  <karl@gnu.org>
25843
25844         * config/config.sub: update from prep.
25845
25846 2003-07-17  Bruno Haible  <bruno@clisp.org>
25847
25848         * modules/getnline: New file.
25849         * modules/getline: Add lib/getndelim2.c to source file list.
25850         * MODULES.html.sh (func_all_modules): Add getnline.
25851
25852 2003-07-17  Bruno Haible  <bruno@clisp.org>
25853
25854         * m4/getnline.m4: New file.
25855
25856 2003-07-17  Bruno Haible  <bruno@clisp.org>
25857
25858         * m4/Makefile.am.in: Remove file.
25859         * m4/Makefile.am: Remove file.
25860         * m4/Makefile.in: Remove file.
25861
25862 2003-07-17  Bruno Haible  <bruno@clisp.org>
25863
25864         * lib/getnline.h: New file.
25865         * lib/getnline.c: New file.
25866         * lib/getndelim2.c: New file, extracted from getline.c.
25867         (getndelim2): Renamed from getdelim2, with added nmax argument.
25868         * lib/getline.c: Include getndelim2.c.
25869         (getdelim2): Moved out to getndelim2.c.
25870         (getline, getdelim): Update.
25871
25872 2003-07-17  Bruno Haible  <bruno@clisp.org>
25873
25874         * lib/Makefile.am: Remove file.
25875         * lib/Makefile.in: Remove file.
25876
25877 2003-07-17  Bruno Haible  <bruno@clisp.org>
25878
25879         * configure.in: Remove file.
25880         * Makefile.in: Remove file.
25881
25882 2003-07-17  Bruno Haible  <bruno@clisp.org>
25883
25884         * MODULES.html.sh: Put the </BODY> right before </HTML>.
25885
25886 2003-07-16  Karl Berry  <karl@gnu.org>
25887
25888         * config/srclist-update: was running fixlicense twice, which caused
25889                 texinfo.tex to be nullified for some reason.  Simplify,
25890                 $gplsrc is no longer needed as far as I can see?
25891
25892 2003-07-16  Jim Meyering  <jim@meyering.net>
25893
25894         * modules/save-cwd: Depend on xgetcwd.  From Derek Price.
25895
25896 2003-07-15  Paul Eggert  <eggert@twinsun.com>
25897
25898         * config/srclist.txt: Get the following files from gettext-runtime/intl
25899         instead: config.charset, localcharset.c, localcharset.h, ref-add.sin,
25900         ref-del.sin.  From Bruno Haible.
25901         * config/srclist-update (fixfile): Change grep pattern again, since the
25902         previous fix didn't work (there was another trailing $).  Use
25903         '[$]' to escape the $s.
25904
25905 2003-07-15  Karl Berry  <karl@gnu.org>
25906
25907         * lib/vasnprintf.c: update from gettext.
25908
25909 2003-07-15  Karl Berry  <karl@gnu.org>
25910
25911         * config/srclist-update (fixfile): Change grep pattern, since 'Id'
25912         gets expanded when surrounded by '$'.
25913
25914 2003-07-15  Jim Meyering  <jim@meyering.net>
25915
25916         * modules/save-cwd: Don't depend on error.  From Derek Price.
25917
25918 2003-07-15  Jim Meyering  <jim@meyering.net>
25919
25920         * lib/makepath.c (make_path): Enclose diagnostic in _(...).
25921
25922 2003-07-14  Simon Josefsson  <jas@extundo.com>
25923
25924         * modules/mempcpy: New file.
25925         * MODULES.html.sh (func_all_modules): Add mempcpy.
25926
25927 2003-07-14  Simon Josefsson  <jas@extundo.com>
25928
25929         * m4/mempcpy.m4: New file.
25930
25931 2003-07-14  Simon Josefsson  <jas@extundo.com>
25932
25933         * lib/mempcpy.h: New file.
25934         * lib/mempcpy.c: New file.
25935
25936 2003-07-14  Paul Eggert  <eggert@twinsun.com>
25937
25938         * modules/getdate, modules/posixtm: Depend on mktime.
25939
25940 2003-07-14  Paul Eggert  <eggert@twinsun.com>
25941
25942         * lib/ceill.c, expl.c, floorl.c, frexpl.c, ldexpl.c, mathl.h,
25943         sincosl.c, sqrtl.c, trigl.c, trigl.h, poll.c, poll_.h, mkstemp.c,
25944         unicodeio.c, unicodeio.h, unlocked-io.h:
25945         Switch from LGPL to GPL.
25946
25947 2003-07-14  Paul Eggert  <eggert@twinsun.com>
25948
25949         * lib/asnprintf.c, asprintf.c, config.charset, gettext.h,
25950         localcharset.c, localcharset.h, mkdtemp.c, printf-args.c,
25951         printf-args.h, printf-parse.c, printf-parse.h, ref-add.sin,
25952         ref-del.sin, setenv.c, unsetenv.c, vasnprintf.c, vasnprintf.h,
25953         vasprintf.c, vasprintf.h: Regenerate.  These files are now being
25954         updated automatically by ../config/srclist-update.  This changes
25955         their license from LPGL to GPL.
25956
25957 2003-07-14  Paul Eggert  <eggert@twinsun.com>
25958
25959         * config/srclist.txt: Add tons more gettext files.  $GETTEXT is now
25960         assumed to refer to the root of the most recent stable gettext version.
25961         * config/srclistvars.sh: Add defaults for eggert.
25962         * config/srclist-update: Convert LGPL to GPL in shell scripts, too.
25963         Match "This program" as well as "The program".  This is needed
25964         for gettext.
25965
25966 2003-07-14  Jim Meyering  <jim@meyering.net>
25967
25968         Don't emit diagnostics.  Let callers do that.
25969         * lib/save-cwd.c: Don't include "error.h".
25970         (save_cwd): Don't call error.  Ensure that errno is valid
25971         when returning nonzero.
25972
25973         * lib/save-cwd.h (restore_cwd): Update prototype.
25974         * lib/save-cwd.c (restore_cwd): Remove two parameters.
25975         Simplify.  Don't call error upon failure.  Let callers do that.
25976         (save_cwd): Mention that Irix 5.3 has the same problem as SunOS 4
25977         when auditing is enabled.  But don't bother updating the #if.
25978
25979 2003-07-11  Alexandre Duret-Lutz  <adl@gnu.org>
25980
25981         * lib/obstack.h (__INT_TO_PTR): Revert change of 2003-03-13;
25982         it breaks C++ compilation.
25983         [!__GNUC__ || !__STDC__] (obstack_finish): Cast result to void*.
25984
25985 2003-07-10  Simon Josefsson  <jas@extundo.com>
25986
25987         * modules/strchrnul (Makefile.am): Add strchrnul.h.
25988
25989 2003-07-10  Jim Meyering  <jim@meyering.net>
25990
25991         * m4/clock_time.m4: Remove trailing blank.
25992         * m4/intmax_t.m4: Likewise.
25993
25994 2003-07-10  Jim Meyering  <jim@meyering.net>
25995
25996         * lib/vasnprintf.c: Remove trailing blanks.
25997         Make cpp indentation consistent.
25998
25999 2003-07-09  Paul Eggert  <eggert@twinsun.com>
26000
26001         * lib/alloca_.h, euidaccess.c, getpass.c, memrchr.c, obstack.h,
26002         posixver.c, strftime.c, strnlen.c, strverscmp.c:
26003         Switch from LGPL to GPL.
26004
26005 2003-07-09  Paul Eggert  <eggert@twinsun.com>
26006
26007         * config/srclist.txt: Sort sublists.  Add
26008         $LIBCSRC/sysdeps/generic/strtoul.c. In comments, add more libc files
26009         that differ from gnulib for one reason or another; we'd like this list
26010         to be smaller but for now let's document what we have.
26011
26012 2003-07-08  Paul Eggert  <eggert@twinsun.com>
26013
26014         * config/srclist-update: Port to POSIX 1003.1-2001 hosts by avoiding
26015         the use of GNU extensions.  Change "x=`eval echo $x`" to the shorter
26016         and sweeter "eval x=$x".
26017         * config/srclist.txt: Get lib/argp* from glibc.
26018
26019 2003-07-07  Paul Eggert  <eggert@twinsun.com>
26020
26021         * lib/mktime.c: Fix some boundary cases and remove need for floating
26022         point.
26023
26024         Issue a compile-time diagnostic if time_t is floating point, or if
26025         two's complement arithmetic is not in effect, or if arithmetic
26026         right shift does not propagate the sign.  These assumptions were
26027         all in the original code but they weren't checked.
26028
26029         (TIME_T_MIDPOINT, verify): New macros.
26030         (__isleap): Remove; it has integer overflow problems.
26031         (leapyear): New function, without those problems.
26032         (ydhms_tm_diff): Remove; splitting into two parts.
26033         (ydhms_diff): New function, containing the arithmetic part of
26034         the old ydhms_tm_diff function.  Issue a compile-time
26035         diagnostic if we are not using C99 integer division.
26036         Avoid casts when possible.
26037         (guess_time_tm): New function, containing the checking part of
26038         the old ydhms_tm_diff function.  Return the new value, rather than
26039         the difference between it and the old.  Accept a new argument T
26040         so that *T specifies the old value.  Check for overflow in the result.
26041
26042         (__mktime_internal): Use a time_t offset, not a long int offset.
26043         This undoes the 2003-06-04 change, which is no longer needed now
26044         that we have better overflow checking.
26045         (localtime_offset): Likewise.
26046
26047         (__mktime_internal): Avoid harmful overflow on hosts where time_t
26048         and long are 64-bit but int is only 32-bit.
26049         (ydhms_diff): Use long int to store year1 and yday1.
26050         Issue a compile-time diagnostic if long int is not wide enough.
26051
26052         (__mktime_internal): Use long int to store adjusted year and yday.
26053         Use plain C rather than preprocessor commands, if that doesn't
26054         affect efficiency.
26055         Check for overflow (and try to repair) after each probe
26056         rather than checking only at the very end.  This avoids some bugs
26057         (e.g., southern hemisphere, behind GMT, and GMT offset at minimum time
26058         does not equal GMT offset at maximum time).
26059         Use integer to check for overflow rather than floating point; this
26060         is more portable to non-IEEE hosts, and is a tad faster.
26061         When we detect that we are oscillating between two values,
26062         don't check whether tm_isdst has the requested value, since
26063         we already know the answer.  When tm_isdst has the wrong value,
26064         use a different heuristic to find the right one, based on the
26065         extreme values actually observed in practice in tz2003a,
26066         rather than the (overly optimistic) "previous 3 calendar quarters".
26067
26068         (not_equal_tm, print_tm, check_result): Use "const T" rather than
26069         "T const" to accommodate glibc style.
26070         (check_result): Use less-confusing report format.  "long" -> "long int.
26071         (main): Likewise.
26072         Don't loop if the iteration overflows time_t.
26073         Allow a negative step in the iteration.
26074
26075 2003-07-06  Karl Berry  <karl@gnu.org>
26076
26077         * config/depcomp: update from automake.
26078         * config/config.sub: update from prep.
26079
26080 2003-07-03  Karl Berry  <karl@gnu.org>
26081
26082         * config/config.guess: update from prep.
26083
26084 2003-07-01  Paul Eggert  <eggert@twinsun.com>
26085
26086         * m4/xreadlink.m4 (gl_XREADLINK): Don't check for sys/types.h, since
26087         xreadlink.c now includes it unconditionally.
26088
26089 2003-07-01  Paul Eggert  <eggert@twinsun.com>
26090
26091         * lib/xreadlink.c: Include <sys/types.h> unconditionally, instead of
26092         having it depend on HAVE_SYS_TYPES_H.
26093
26094 2003-07-01  Bruno Haible  <bruno@clisp.org>
26095
26096         * m4/ssize_t.m4 (gt_TYPE_SSIZE_T): Don't include <unistd.h>.
26097         <sys/types.h> should be sufficient.
26098         Reported by Paul Eggert.
26099
26100 2003-06-26  Karl Berry  <karl@gnu.org>
26101
26102         * config/depcomp: update from automake.
26103
26104 2003-06-26  Bruno Haible  <bruno@clisp.org>
26105
26106         * modules/human: Depend on module stdbool.
26107
26108 2003-06-25  Bruno Haible  <bruno@clisp.org>
26109
26110         * modules/readlink: New file.
26111         * modules/xreadlink: Depend on it.
26112         * MODULES.html.sh (func_all_modules): Add readlink.
26113
26114 2003-06-25  Bruno Haible  <bruno@clisp.org>
26115
26116         * m4/readlink.m4: New file.
26117
26118 2003-06-25  Bruno Haible  <bruno@clisp.org>
26119
26120         * lib/readlink.c: New file.
26121
26122 2003-06-22  Karl Berry  <karl@gnu.org>
26123
26124         * config/srclist.txt: update mkinstalldirs from automake.
26125         * config/mkinstalldirs: update.
26126
26127 2003-06-22  Bruno Haible  <bruno@clisp.org>
26128
26129         Portability to mingw32.
26130         * m4/ssize_t.m4: New file, from GNU gettext.
26131         * m4/safe-read.m4 (gl_PREREQ_SAFE_READ): Require gt_TYPE_SSIZE_T.
26132         * m4/xreadlink.m4 (gl_XREADLINK): Require gt_TYPE_SSIZE_T.
26133
26134 2003-06-22  Bruno Haible  <bruno@clisp.org>
26135
26136         * modules/safe-read: Add m4/ssize_t.m4.
26137         * modules/xreadlink: Add m4/ssize_t.m4.
26138
26139 2003-06-20  Bruno Haible  <bruno@clisp.org>
26140
26141         Assume C89, so PARAMS isn't needed.
26142         * lib/unicodeio.h (PARAMS): Remove.
26143         * lib/unicodeio.c: Don't use PARAMS.
26144
26145 2003-06-18  Karl Berry  <karl@gnu.org>
26146
26147         * config/config.{guess,sub}: update from prep.
26148
26149 2003-06-18  Jim Meyering  <jim@meyering.net>
26150
26151         Merge changes from coreutils.
26152         * lib/readutmp.c: Include <string.h> and <stdlib.h> unconditionally.
26153         Remove explicit declarations of xmalloc and realloc.
26154         Include xalloc.h.
26155         (read_utmp): Remove anachronistic cast of xmalloc.
26156
26157 2003-06-17  Paul Eggert  <eggert@twinsun.com>
26158
26159         Assume C89, so PARAMS isn't needed.
26160         * lib/backupfile.h (PARAMS): Remove.  All uses removed.
26161         * lib/closeout.h, lib/dirname.h, lib/filemode.h, lib/fsusage.h,
26162         lib/getdate.h, lib/getline.h, lib/group-member.h, lib/hard-locale.h,
26163         lib/hash.h, lib/linebuffer.h, lib/long-options.h, lib/makepath.h,
26164         lib/memcasecmp.h, lib/memcoll.h, lib/modechange.h, lib/mountlist.h,
26165         lib/path-concat.h, lib/physmem.h, lib/posixtm.h, lib/quote.h,
26166         lib/readutmp.h, lib/same.h, lib/save-cwd.h, lib/savedir.h,
26167         lib/stdio-safer.h, lib/strtoimax.c, lib/strverscmp.h,
26168         lib/unistd-safer.h, lib/version-etc.h, lib/xalloc.h, lib/xreadlink.h,
26169         lib/xstrtod.h, lib/xstrtol.h: Likewise.
26170         * lib/filemode.h, lib/hard-locale.h, lib/memcoll.h, lib/modechange.h,
26171         lib/physmem.h, lib/same.h, lib/strverscmp.h: Do not include config.h;
26172         no longer needed. Anyway, config.h should always be included before any
26173         other file.
26174
26175 2003-06-11  Simon Josefsson  <jas@extundo.com>
26176
26177         * modules/sysexits: New file.
26178         * MODULES.html.sh (func_all_modules): Add sysexits.
26179
26180 2003-06-11  Simon Josefsson  <jas@extundo.com>
26181
26182         * lib/sysexit_.h: New file.
26183
26184 2003-06-11  Derek Price  <derek@ximbiot.com>
26185
26186         * lib/stat.c [LSTAT]: Compile/use slash_aware_lstat only if it is
26187         necessary.
26188
26189 2003-06-11  Bruno Haible  <bruno@clisp.org>
26190
26191         * m4/sysexits.m4: New file.
26192
26193 2003-06-10  Simon Josefsson  <jas@extundo.com>
26194
26195         * lib/argp.h: New file, from glibc.
26196         * lib/argp-ba.c: New file, from glibc.
26197         * lib/argp-eexst.c: New file, from glibc.
26198         * lib/argp-fmtstream.c: New file, from glibc.
26199         * lib/argp-fmtstream.h: New file, from glibc.
26200         * lib/argp-fs-xinl.c: New file, from glibc.
26201         * lib/argp-help.c: New file, from glibc.
26202         * lib/argp-namefrob.h: New file, from glibc.
26203         * lib/argp-parse.c: New file, from glibc.
26204         * lib/argp-pv.c: New file, from glibc.
26205         * lib/argp-pvh.c: New file, from glibc.
26206         * lib/argp-xinl.c: New file, from glibc.
26207
26208 2003-06-10  Simon Josefsson  <jas@extundo.com>
26209
26210         * modules/strchrnul: New file.
26211
26212 2003-06-10  Simon Josefsson  <jas@extundo.com>
26213
26214         * modules/argp: New file.
26215
26216 2003-06-10  Simon Josefsson  <jas@extundo.com>
26217
26218         * m4/strchrnul.m4: New file.
26219
26220 2003-06-10  Simon Josefsson  <jas@extundo.com>
26221
26222         * lib/strchrnul.h: New file.
26223         * lib/strchrnul.c: New file.
26224
26225 2003-06-10  Bruno Haible  <bruno@clisp.org>
26226
26227         * MODULES.html.sh (func_all_modules): Add strchrnul and argp.
26228
26229 2003-06-07  Karl Berry  <karl@gnu.org>
26230
26231         * config/config.{guess,sub}: update from prep.
26232
26233 2003-06-07  Jim Meyering  <jim@meyering.net>
26234
26235         * modules/strtod: Use $(...) notation, not @...@ for
26236         AC_REPLACE'd variables.
26237         * modules/localcharset: Likewise.
26238
26239 2003-06-07  Jim Meyering  <jim@meyering.net>
26240
26241         * lib/readtokens.h: Put `Free Software Foundation, Inc.'
26242         in place of my name in the copyright comment.
26243         Remove definition and uses of __P.
26244
26245         From coreutils.
26246         * lib/stat.c: Don't declare xmalloc explicitly.
26247         Instead, include "xalloc.h".
26248         * lib/readtokens.c (readtokens): Remove anachronistic casts of xmalloc,
26249         xrealloc, and xcalloc return values.
26250         * lib/xgetcwd.c (xgetcwd): Include "xgetcwd.h".
26251         Improve comment.
26252         * lib/xgetcwd.h: Remove definition/uses of PARAMS.
26253
26254 2003-06-07  Bruno Haible  <bruno@clisp.org>
26255
26256         * modules/poll (Makefile.am): Use explicit creation rule for poll.h, to
26257         avoid AC_CONFIG_LINKS.
26258         * modules/fnmatch (Makefile.am): Use explicit creation rule for
26259         fnmatch.h, to avoid AC_CONFIG_LINKS.
26260         * modules/alloca (Makefile.am): Make creation of alloca.h Ctrl-C safe.
26261
26262 2003-06-07  Bruno Haible  <bruno@clisp.org>
26263
26264         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH, gl_FUNC_FNMATCH_POSIX,
26265         gl_FUNC_FNMATCH_GNU): Set FNMATCH_H instead of invoking
26266         AC_CONFIG_LINKS. Needed to allow for a different name of the lib
26267         directory.
26268         * m4/poll.m4 (gl_FUNC_POLL): Set POLL_H instead of invoking
26269         AC_CONFIG_LINKS. Needed to allow for a different name of the lib
26270         directory.
26271
26272 2003-06-06  Jim Meyering  <jim@meyering.net>
26273
26274         Merge from coreutils.
26275         * lib/same.c: (same_name): Declare *_basename locals to be `const'.
26276         Consolidate declarations and initializations of *_base* locals.
26277
26278         Merge from coreutils.
26279         This avoids a core dump on systems without GNU putenv,
26280         when running `env -u SOME_ALREADY_UNSET_VARIABLE'.
26281         * lib/putenv.c (__set_errno, LOCK, UNLOCK): Define.
26282         (unsetenv): New static function, from GNU libc.
26283         (rpl_putenv): Use it.
26284
26285         * lib/modechange.c: Remove trailing blanks.
26286
26287         Merge from coreutils.
26288         * lib/fsusage.c: Remove declaration of statfs.
26289         It conflicted with one from OSF/1 5.1 in <sys/mount.h>.
26290
26291         * lib/posixtm.c: Include <stdbool.h> unconditionally.
26292
26293 2003-06-06  Jim Meyering  <jim@meyering.net>
26294
26295         * lib/stdbool_.h: Renamed from stdbool.h.in.
26296
26297 2003-06-06  Jim Meyering  <jim@meyering.net>
26298             Bruno Haible  <bruno@clisp.org>
26299
26300         * modules/stdbool: Reflect renaming: stdbool.h.in -> stdbool_.h.
26301         Adjust Makefile.am snippet not to redirect directly to target.
26302         Use $(STDBOOL_H) notation, not @STDBOOL_H@ for AC_REPLACE'd variables.
26303
26304 2003-06-05  Paul Eggert  <eggert@twinsun.com>
26305
26306         * lib/mktime.c (__mktime_internal): When resolving a tm_isdst
26307         mismatch, look in future quarters as well as past.  This fixes a
26308         bug when processing fall-backwards gaps immediately after a long
26309         period of daylight-saving time.
26310
26311         * lib/mktime.c: Assume freestanding C89 or better.
26312         (HAVE_LIMITS_H): Remove.  Assume it's 1.
26313         (__P): Remove; not used.
26314         (CHAR_BIT, INT_MIN, INT_MAX): Remove; <limits.h> defines them.
26315         (mktime, not_equal_tm, print_tm, check_result,
26316         main): Use prototypes.  Use const * where appropriate.
26317         (main): Fix typo in testing code that uncovered by above changes.
26318         (Local Variables): Remove -DHAVE_LIMITS_H from compile-command.
26319
26320 2003-06-04  Paul Eggert  <eggert@twinsun.com>
26321
26322         * m4/human.m4 (gl_HUMAN): Require AM_STDBOOL_H.  Check for
26323         locale.h, localeconv.  This merges changes from coreutils.
26324
26325         * m4/mktime.m4 (AC_FUNC_MKTIME): New macro, taken from Autoconf CVS.
26326         It can be removed after the next Autoconf is released.
26327         * m4/exclude.m4 (gl_EXCLUDE): Don't check for sys/types.h; no loner
26328         needed.
26329
26330 2003-06-04  Paul Eggert  <eggert@twinsun.com>
26331
26332         * lib/mktime.c: Fix Debian bug 177940
26333         <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=177940>.
26334         (localtime_offset): Now long int, not time_t, because we want it
26335         to be guaranteed to be signed.  All uses changed.
26336         (__mktime_internal): If overflow would occur when adding offset,
26337         don't add it.
26338
26339         Merge 'human' changes from coreutils.  Rewrite to support
26340         locale-specific notations like thousands separators.
26341         * lib/human.c: Simplify authorship notice.
26342         Include human.h immediately after config.h.
26343         <sys/types.h>, <stdio.h>: Do not include; no longer needed.
26344         <limits.h>: Do not include, since human.h does.
26345         (SIZE_MAX, UINTMAX_MAX): New macros.
26346         <strings.h>: Include if HAVE_STRINGS_H, not if !HAVE_STRING_H.
26347         <locale.h>: Include if HAVE_LOCALE_H and HAVE_LOCALECONV.
26348         (HUMAN_READABLE_SUFFIX_LENGTH_MAX): New macro.
26349         (power_letter): Renamed from suffixes.
26350         (generate_suffix_backwards): Remove.
26351         (adjust_value): Now takes int style (because of human.h changes)
26352         and long double value (for greater precision on some platforms).
26353         (group_number): New function.
26354         (human_readable): Use it.  Use integer options, not enum.
26355         Put the options before the sizes in the arg list.
26356         Support all the new options.
26357         The old human_readable function has been removed;
26358         use inttostr.h instead.
26359         (human_readable, default_block_size, humblock):
26360         Use uintmax_t, not int, for block sizes.
26361         (human_readable_inexact, block_size_types): Remove.
26362         (block_size_opts): New constant.
26363         (human_options): Renamed from human_block_size, with new signature
26364         that allows block sizes up to UINTMAX_MAX.  All callers changed.
26365         * lib/human.h: Add copyright and authorship notice.
26366         Include <limits.h> and <stdbool.h> unconditionally.
26367         (PARAMS): Remove.  All uses removed.
26368         (LONGEST_HUMAN_READABLE): Add support for thousands separator.
26369         (enum human_inexact_style): Remove tag; now a nameless enum.
26370         (human_floor, human_ceiling, human_round_to_even): Now have
26371         values 2, 0, 1 rather than -1, 1, 0.
26372         (human_group_digits, human_suppress_point_zero, human_autoscale,
26373         human_base_1024, human_SI, human_B): New constants.
26374         (human_readable_inexact, human_block_size): Remove.
26375         (human_readable): Size args are now uintmax_t, not int.
26376         (human_options): New decl.
26377
26378         * lib/exclude.c: (new_exclude, add_exclude): Remove casts that are
26379         unnecessary now that we assume C89 or better.  This change
26380         imported from coreutils.
26381
26382         * lib/mktime.c (__mktime_internal): Do not reject negative timestamps
26383         arbitrarily.  This is the same patch as 2003-05-28, but it got lost
26384         in the 2003-05-30 sync from glibc.
26385
26386         .h files should stand alone, but we shouldn't include <sys/types.h>
26387         if we can get away with just <stddef.h>.
26388
26389         * lib/__fpending.h, addext.c, backupfile.c, exclude.c, getline.c,
26390         malloc.c, putenv.c, realloc.c, strcasecmp.c: Include <stddef.h>
26391         rather than <sys/types.h>, as we merely need size_t.
26392         * lib/dirname.h, memcoll.h, xalloc.h, xmemcoll.h: Include <stddef.h>,
26393         to get size_t.
26394         * lib/hash.h, linebuffer.h, readtokens.h, stdio-safer.h, version-etc.h:
26395         Include <stdio.h>, to get FILE.
26396         * lib/memcasecmp.c: Don't include <sys/types.h>, as we can assume
26397         memcasecmp.h has included <stddef.h> and all we need is size_t.
26398         * lib/memcoll.c: Include "memcoll.h", which gets us size_t and checks
26399         our interface, instead of including <sys/types.h>
26400
26401 2003-06-04  Paul Eggert  <eggert@twinsun.com>
26402
26403         * config/srclist.txt ($LIBCSRC/time/mktime.c lib gpl): Comment out for
26404         now, as glibc mktime is buggy on non-glibc systems.
26405
26406 2003-06-03  Karl Berry  <karl@gnu.org>
26407
26408         * config/config.sub: update from prep.
26409
26410 2003-06-02  Paul Eggert  <eggert@twinsun.com>
26411
26412         [from coreutils]
26413         Fix some minor time-related bugs with POSIX time arguments.
26414         Some valid time stamps were being rejected (notably -1, and
26415         time stamps before 1900 on 64-bit hosts).  And some invalid
26416         time stamps were being accepted, e.g. September 31.
26417
26418         * lib/posixtm.h (posixtime): Return bool instead of time_t, so
26419         that we can return (time_t) -1 successfully.
26420         * lib/posixtm.c: Likewise.
26421         [HAVE_STDBOOL_H]: Include <stdbool.h>.
26422         (bool, false, true) [!HAVE_STDBOOL_H]: New type.
26423         (t): Remove static var.
26424         (year, posix_time_parse): Now takes struct tm * arg to modify, instead
26425         of static var.  All uses changed.
26426         (year): Do not reject years before 1900; they can occur with
26427         64-bit time_t.
26428         (posix_time_parse): Do not check for out-of-range components;
26429         that is now the caller's responsibility, since our checks were
26430         only approximations.
26431         (posixtime): Use mktime to check for out-of-range components,
26432         since it knows them exactly.
26433         If mktime returns (time_t) -1, check whether an error actually occurred
26434         by invoking localtime on -1.
26435         (main) [TEST_POSIXTIME]: Check for input data errors, and report
26436         posixtime failures better.
26437         Improve the test data (in comments only).
26438
26439 2003-06-02  Karl Berry  <karl@gnu.org>
26440
26441         * config/mkinstalldirs (version): new variable.
26442         (--version): new option.
26443         (usage): improve message.
26444
26445 2003-05-30  Karl Berry  <karl@gnu.org>
26446
26447         * lib/mktime.c: update from libc.
26448
26449 2003-05-30  Bruno Haible  <bruno@clisp.org>
26450
26451         * modules/gettext: Add files m4/nls.m4 and m4/po.m4.
26452         * config/config.rpath: Upgrade to gettext-0.12.1.
26453
26454 2003-05-30  Bruno Haible  <bruno@clisp.org>
26455
26456         * m4/gettext.m4: Upgrade to gettext-0.12.1.
26457         * m4/nls.m4: New file, from gettext-0.12.1.
26458         * m4/po.m4: New file, from gettext-0.12.1.
26459         * m4/progtest.m4: Upgrade to gettext-0.12.1.
26460
26461 2003-05-30  Bruno Haible  <bruno@clisp.org>
26462
26463         * lib/config.charset: Upgrade to gettext-0.12.1 and libiconv-1.9.1.
26464         * lib/localcharset.h: Likewise.
26465         * lib/localcharset.c: Likewise.
26466
26467 2003-05-29  Karl Berry  <karl@gnu.org>
26468
26469         * config/config.rpath: update from gettext.
26470
26471 2003-05-28  Paul Eggert  <eggert@twinsun.com>
26472
26473         Assume the headers required for C89 freestanding compilers.
26474         * m4/backupfile.m4 (gl_BACKUPFILE): Don't check for limits.h.
26475         * m4/fsusage.m4 (gl_PREREQ_FSUSAGE_EXTRA): Likewise.
26476         * m4/human.m4 (gl_HUMAN): Likewise.
26477         * m4/pathmax.m4 (gl_PATHMAX): Likewise.
26478         * m4/rpmatch.m4 (gl_FUNC_RPMATCH): Likewise.
26479         * m4/userspec.m4 (gl_USERSPEC): Likewise.
26480         * m4/xreadlink.m4 (gl_XREADLINK): Likewise.
26481         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
26482         * m4/quote.m4 (gl_QUOTE): Don't check for stddef.h.
26483
26484 2003-05-28  Paul Eggert  <eggert@twinsun.com>
26485
26486         Assume the headers required for C89 freestanding compilers.
26487         * lib/addext.c, lib/backupfile.c, lib/fsusage.c, lib/human.c,
26488         lib/pathmax.h, lib/rpmatch.c, lib/userspec.c, lib/xreadlink.c,
26489         lib/xstrtol.c: Include <limits.h> without checking for HAVE_LIMITS_H.
26490         * lib/backupfile.c, lib/fsusage.c, lib/hash.c, lib/human.c,
26491         lib/safe-read.c, lib/userspec.c, lib/xstrtol.c (CHAR_BIT): Don't
26492         define, since <limits.h> is guaranteed to do that.
26493         * lib/fatal.c: Include <stdarg.h> without checking for __STDC__.
26494         * lib/exclude.c: Include <stdbool.h> unconditionally.
26495         * lib/tempname.c: Include <stddef.h> unconditionally.
26496         * lib/hash.c: Include <limits.h>, since we no longer define CHAR_BIT.
26497         * lib/modechange.c, rpmatch.c (NULL): Don't define, since
26498         <stddef.h> does that.
26499         * lib/quote.c: Dont include <stddef.h> or <sys/types.h>; not needed.
26500         * lib/safe-read.c (INT_MAX): Don't define, since <limits.h> does that.
26501         * lib/safe-read.c (TYPE_MINIMUM, TYPE_MAXIMUM): Remove; no longer
26502         needed.
26503         * lib/xstrtol.c: Likewise.
26504         * lib/safe-read.c: Remove TYPE_SIGNED; no longer needed.
26505         * lib/savedir.c: Include <stddef.h> instead of defining NULL.
26506
26507         * lib/addext.c (addext): Use assignment rather than cast, to avoid
26508         warnings on some platforms.
26509
26510         * lib/mktime.c (__mktime_internal): Do not reject negative timestamps
26511         arbitrarily.
26512
26513 2003-05-26  Jim Meyering  <jim@meyering.net>
26514
26515         Merge in a change from coreutils:
26516         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Test the cache variable, not one
26517         that is guaranteed to be `no'.  Use `no_such_member' to indicate
26518         that condition, rather than `-1' which is slightly misleading.
26519         Change the name of the cache variable to have the gl_ prefix.
26520         Prompted by a patch from Richard Dawe for DJGPP.
26521
26522 2003-05-24  Karl Berry  <karl@gnu.org>
26523
26524         * config/config.guess: update from prep.
26525
26526 2003-05-22  Karl Berry  <karl@gnu.org>
26527
26528         * gnulib-tool (func_usage): =LIBRARY not =libRARY in help msg.
26529
26530 2003-05-20  Karl Berry  <karl@gnu.org>
26531
26532         * config/config.guess: update from prep.
26533
26534 2003-05-18  Karl Berry  <karl@gnu.org>
26535
26536         * config/srclistvars.sh (TEXMF): use TEXMFROOT instead, since TEXMF
26537         might actually be set by the user.
26538
26539         * config/depcomp, install-sh, mdate-sh: update from automake.
26540
26541 2003-05-17  Bruno Haible  <bruno@clisp.org>
26542
26543         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Fix a quoting bug leading to an
26544         invalid expansion for AC_EGREP_CPP.
26545         * m4/strtoimax.m4 (gl_FUNC_STRTOIMAX): Likewise.
26546         * m4/strtoumax.m4 (gl_FUNC_STRTOUMAX): Likewise.
26547         Suggested by Akim Demaille <akim@epita.fr> in
26548         http://mail.gnu.org/archive/html/bug-autoconf/2003-05/threads.html
26549
26550 2003-05-12  Jim Meyering  <jim@meyering.net>
26551
26552         * lib/strftime.c (my_strftime): Let the `-' (no-pad) flag affect
26553         the space-padded-by-default conversion specifiers, %e, %k, %l.
26554
26555 2003-05-12  Bruno Haible  <bruno@clisp.org>
26556
26557         * lib/linebreak.c (iconv_string_length): Don't return -1 just because
26558         the string is longer than 4 KB.
26559
26560 2003-05-11  Karl Berry  <karl@gnu.org>
26561
26562         * config/config.{guess,sub}: update from prep.
26563
26564 2003-05-09  Bruno Haible  <bruno@clisp.org>
26565
26566         * modules/error: Add m4/strerror_r.m4 to file list.
26567
26568 2003-05-03  Bruno Haible  <bruno@clisp.org>
26569
26570         Upgrade to Unicode-4.0.
26571         * lib/linebreak.c (nonspacing_table_data): Change width of U+00AD,
26572         U+0350..U+0357, U+035D..U+035F, U+0600..U+0603, U+0610..U+0615,
26573         U+0656..U+0658, U+0A01, U+0AE2..U+0AE3, U+0CBC, U+17B4..U+17B5,
26574         U+17DD, U+1920..U+1922, U+1927..U+192B, U+1932, U+1939..U+193B
26575         from 1 to 0. Change width of U+0CBF, U+0CC6, U+180E from 0 to 1.
26576         (uc_width): Change width of U+4DC0..U+4DFF from 2 to 1. Change width
26577         of U+2A6D7..U+2F7FF, U+2FA1E..U+2FFFD, U+30000..U+3FFFD from 1 to 2.
26578         Change width of U+E0100..U+E01EF from 1 to 0.
26579
26580 2003-04-25  Jim Meyering  <jim@meyering.net>
26581
26582         * lib/copy-file.c (copy_file_preserving): Declare buf_size to be
26583         of type size_t, not int.
26584
26585 2003-04-25  Bruno Haible  <bruno@clisp.org>
26586
26587         * lib/copy-file.c: Include <stddef.h>, for size_t.
26588
26589 2003-04-21  Paul Eggert  <eggert@twinsun.com>
26590
26591         * m4/error.m4 (gl_ERROR): Do not put under dynamic conditions some
26592         code which expansion is under static control.  Patch imported from
26593         Akim Demaille's patch to Bison; see
26594         <http://mail.gnu.org/archive/html/bison-patches/2003-03/msg00057.html>.
26595
26596 2003-04-14  Bruno Haible  <bruno@clisp.org>
26597
26598         * m4/error.m4 (jm_PREREQ_ERROR): Use AC_FUNC_VPRINTF.
26599
26600 2003-04-11  Jim Meyering  <jim@meyering.net>
26601
26602         Merge changes from Coreutils.
26603
26604         2003-03-22  Jim Meyering  <jim@meyering.net>
26605
26606         * lib/strftime.c (widen): Cast alloca return value to proper type.
26607
26608         2003-01-19  Ulrich Drepper  <drepper@redhat.com>
26609
26610         From GNU libc.
26611         * lib/strftime.c (my_strftime): Handle very large width
26612         specifications for numeric values correctly.  Improve checks for
26613         overflow.
26614
26615         2003-01-19  Jim Meyering  <jim@meyering.net>
26616
26617         * lib/strftime.c (widen) [COMPILE_WIDE]: Merge nearly-identical
26618         definitions.
26619         (nl_get_alt_digit) [! defined my_strftime]: Define.
26620         (my_strftime) [_NL_CURRENT]: Merge nearly-identical uses of
26621         _nl_get_alt_digit and _nl_get_walt_digit.
26622
26623         * lib/strftime.c (my_strftime): Merge in locale-related changes from
26624         libc. These changes have no effect outside of _LIBC.
26625
26626 2003-04-10  Bruno Haible  <bruno@clisp.org>
26627
26628         * modules/findprog: New file.
26629         * MODULES.html.sh (func_all_modules): Add it.
26630
26631 2003-04-10  Bruno Haible  <bruno@clisp.org>
26632
26633         * m4/findprog.m4: New file.
26634         * m4/eaccess.m4: New file.
26635
26636 2003-04-10  Bruno Haible  <bruno@clisp.org>
26637
26638         * lib/findprog.h: New file, from GNU gettext.
26639         * lib/findprog.c: New file, from GNU gettext.
26640
26641 2003-04-05  Jim Meyering  <jim@meyering.net>
26642
26643         Merge changes from Coreutils.
26644
26645         * lib/exclude.h (PARAMS): Remove definition and uses.
26646         * lib/exclude.c: Remove uses of `PARAMS'.
26647
26648         * lib/dirname.c [TEST_DIRNAME]: Update build instructions for test.
26649         Add test-cases for DOS filenames. Declare program_name.
26650         (main): Set up program_name.  Patch by Rich Dawe.
26651
26652         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Detect any
26653         error from mntctl.
26654         Use mntctl's return value to drive the entry-processing loop, since
26655         we can't rely on the value of the vmt_length member in the last
26656         entry.  On some systems doing so could result in exhausting
26657         virtual memory.  Based in part on a patch from Mike Jetzer.
26658
26659 2003-04-04  Bruno Haible  <bruno@clisp.org>
26660
26661         * modules/linebreak: New file.
26662         * MODULES.html.sh (func_all_modules): Add it.
26663
26664 2003-04-04  Bruno Haible  <bruno@clisp.org>
26665
26666         * m4/linebreak.m4: New file.
26667
26668 2003-04-04  Bruno Haible  <bruno@clisp.org>
26669
26670         * lib/linebreak.h: New file, from GNU gettext.
26671         * lib/linebreak.c: New file, from GNU gettext with slight
26672         modifications.
26673         * lib/lbrkprop.h: New file, from GNU gettext.
26674
26675 2003-04-03  Bruno Haible  <bruno@clisp.org>
26676
26677         * modules/utf8-ucs4: New file.
26678         * modules/utf16-ucs4: New file.
26679         * modules/ucs4-utf8: New file.
26680         * modules/ucs4-utf16: New file.
26681         * MODULES.html.sh (func_all_modules): Add them.
26682
26683 2003-04-03  Bruno Haible  <bruno@clisp.org>
26684
26685         * m4/utf-ucs4.m4: New file.
26686         * m4/ucs4-utf.m4: New file.
26687
26688 2003-04-03  Bruno Haible  <bruno@clisp.org>
26689
26690         * lib/utf8-ucs4.h: New file, from GNU gettext.
26691         * lib/utf16-ucs4.h: New file, from GNU gettext.
26692         * lib/ucs4-utf8.h: New file, from GNU gettext.
26693         * lib/ucs4-utf16.h: New file, from GNU gettext.
26694
26695 2003-04-02  Bruno Haible  <bruno@clisp.org>
26696
26697         * modules/binary-io: New file.
26698         * MODULES.html.sh (func_all_modules): Add it.
26699
26700 2003-04-02  Bruno Haible  <bruno@clisp.org>
26701
26702         * lib/binary-io.h: New file, from GNU gettext.
26703
26704 2003-04-01  Bruno Haible  <bruno@clisp.org>
26705
26706         * modules/pathname: New file.
26707         * MODULES.html.sh (func_all_modules): Add it.
26708
26709 2003-04-01  Bruno Haible  <bruno@clisp.org>
26710
26711         * lib/pathname.h: New file, from GNU gettext.
26712         * lib/concatpath.c: New file, from GNU gettext.
26713
26714 2003-03-30  Bruno Haible  <bruno@clisp.org>
26715
26716         * m4/copy-file.m4 (gl_COPY_FILE): Add check for chown().
26717
26718 2003-03-30  Bruno Haible  <bruno@clisp.org>
26719
26720         * lib/copy-file.c (copy_file_preserving): Don't set owner if the
26721         function chown() doesn't exist.
26722
26723 2003-03-28  Bruno Haible  <bruno@clisp.org>
26724
26725         * modules/copy-file: New file.
26726         * MODULES.html.sh (func_all_modules): Add it.
26727
26728 2003-03-28  Bruno Haible  <bruno@clisp.org>
26729
26730         * m4/copy-file.m4: New file.
26731
26732 2003-03-28  Bruno Haible  <bruno@clisp.org>
26733
26734         * lib/copy-file.h: New file, from GNU gettext.
26735         * lib/copy-file.c: New file, from GNU gettext.
26736
26737 2003-03-18  Jim Meyering  <jim@meyering.net>
26738
26739         * lib/quote.c (quote_n): Fix typo in comment.
26740
26741 2003-03-18  Bruno Haible  <bruno@clisp.org>
26742
26743         * m4/onceonly.m4: Use m4_defn instead of defn, for better error
26744         checking.
26745         * m4/onceonly_2_57.m4: Likewise.
26746
26747 2003-03-17  Bruno Haible  <bruno@clisp.org>
26748
26749         * m4/onceonly.m4: Require autoconf 2.54 or newer.
26750         (m4_quote): Remove macro.
26751         * m4/onceonly_2_57.m4: Require autoconf 2.54 or newer.
26752
26753 2003-03-14  Jim Meyering  <jim@meyering.net>
26754
26755         Merge changes from Coreutils.
26756         * lib/obstack.h (obstack_object_size): Declare temporary, __o,
26757         to be const, in order to avoid warnings.
26758         (obstack_room): Likewise.
26759         (obstack_empty_p): Likewise.
26760
26761 2003-03-14  Bruno Haible  <bruno@clisp.org>
26762
26763         * m4/onceonly_2_57.m4 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE,
26764         AC_CHECK_DECLS_ONCE): Quote AC_FOREACH variable-expansions properly.
26765
26766 2003-03-13  Paul Eggert  <eggert@twinsun.com>
26767
26768         Merge changes from Bison.
26769         * lib/obstack.h: (__INT_TO_PTR) [__STDC__]: Cast result to
26770         (void *) to avoid diagnostic with native c89 on SGI IRIX 6.5
26771         when compiling Bison 1.875's `bitset bset = obstack_alloc
26772         (bobstack, bytes);'.  Problem reported by Nelson H. F. Beebe.
26773         * lib/hash.c: Include <stdbool.h> unconditionally.
26774
26775 2003-03-13  Paul Eggert  <eggert@twinsun.com>
26776
26777         * m4/onceonly.m4 (m4_quote): New macro.
26778         (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE, AC_CHECK_DECLS_ONCE):
26779         Quote AC_FOREACH variable-expansions properly.
26780
26781 2003-03-13  Paul Eggert  <eggert@twinsun.com>
26782
26783         * doc/COPYING.DOC, fdl.texi: Sync with latest FSF version.
26784
26785 2003-03-09  Paul Eggert  <eggert@twinsun.com>
26786
26787         * lib/argmatch.c (EXIT_FAILURE): Define if the system doesn't.
26788         Reported by Bruce Becker; see:
26789         http://mail.gnu.org/archive/html/bug-bison/2003-03/msg00017.html
26790
26791 2003-03-03  Paul Eggert  <eggert@twinsun.com>
26792             Bruno Haible  <bruno@clisp.org>
26793
26794         * lib/mbswidth.h: Include <wchar.h>. Needed for UnixWare 7.1.1.
26795         Reported by John Hughes, see
26796         http://mail.gnu.org/archive/html/bug-bison/2003-02/msg00030.html
26797
26798 2003-02-20  Bruno Haible  <bruno@clisp.org>
26799
26800         * MODULES.html.sh (func_all_modules): Add poll.
26801
26802 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
26803
26804         * modules/poll: New file.
26805
26806 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
26807
26808         * lib/poll_.h: New file.
26809         * lib/poll.c: New file.
26810
26811 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
26812
26813         * m4/poll.m4: New file.
26814
26815 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
26816
26817         * modules/mathl: New file.
26818
26819 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
26820
26821         * lib/mathl.h: New file.
26822         * lib/acosl.c: New file.
26823         * lib/asinl.c: New file.
26824         * lib/atanl.c: New file.
26825         * lib/ceill.c: New file.
26826         * lib/cosl.c: New file.
26827         * lib/expl.c: New file.
26828         * lib/floorl.c: New file.
26829         * lib/frexpl.c: New file.
26830         * lib/ldexpl.c: New file.
26831         * lib/logl.c: New file.
26832         * lib/sincosl.c: New file.
26833         * lib/sinl.c: New file.
26834         * lib/sqrtl.c: New file.
26835         * lib/tanl.c: New file.
26836         * lib/trigl.c: New file.
26837         * lib/trigl.h: New file.
26838
26839 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
26840
26841         * m4/mathl.m4: New file.
26842
26843 2003-02-18  Bruno Haible  <bruno@clisp.org>
26844
26845         * MODULES.html.sh (func_all_modules): Add mathl.
26846
26847 2003-02-17  Bruno Haible  <bruno@clisp.org>
26848
26849         * modules/mkdtemp: New module.
26850         * MODULES.html.sh (func_all_modules): Add it.
26851
26852 2003-02-17  Bruno Haible  <bruno@clisp.org>
26853
26854         * m4/mkdtemp.m4: New file, from GNU gettext with modifications.
26855
26856 2003-02-17  Bruno Haible  <bruno@clisp.org>
26857
26858         * lib/mkdtemp.h: New file, from GNU gettext.
26859         * lib/mkdtemp.c: New file, from GNU gettext.
26860
26861 2003-02-02  Jim Meyering  <jim@meyering.net>
26862
26863         * m4/regex.m4 (jm_INCLUDED_REGEX): Detect broken re_search in
26864         e.g. glibc-2.2.93.
26865
26866 2003-01-31  Bruno Haible  <bruno@clisp.org>
26867
26868         * m4/rename.m4 (vb_FUNC_RENAME): Add a redirection from 'rename' to
26869         'rpl_rename'.
26870         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Add a redirection from 'strnlen' to
26871         'rpl_strnlen'.
26872         * m4/strtod.m4 (gl_FUNC_STRTOD): Add a redirection from 'strtod' to
26873         'rpl_strtod'.
26874         * m4/utime.m4 (jm_FUNC_UTIME): Add a redirection from 'utime' to
26875         'rpl_utime'.
26876
26877 2003-01-31  Bruno Haible  <bruno@clisp.org>
26878
26879         * lib/rename.c: #undef rename before defining rpl_rename.
26880         * lib/strnlen.c: #undef strnlen, define rpl_strnlen instead of strnlen.
26881
26882 2003-01-30  Bruno Haible  <bruno@clisp.org>
26883
26884         * modules/vasnprintf, modules/vasprintf: New modules.
26885         * MODULES.html.sh (func_all_modules): Add them.
26886
26887 2003-01-30  Bruno Haible  <bruno@clisp.org>
26888
26889         * m4/signed.m4: New file, from GNU gettext.
26890         * m4/longdouble.m4: New file, from GNU gettext.
26891         * m4/wchar_t.m4: New file, from GNU gettext.
26892         * m4/wint_t.m4: New file, from GNU gettext.
26893         * m4/vasnprintf.m4: New file.
26894         * m4/vasprintf.m4: New file.
26895
26896 2003-01-30  Bruno Haible  <bruno@clisp.org>
26897
26898         * lib/printf-args.h: New file, from GNU gettext.
26899         * lib/printf-args.c: New file, from GNU gettext.
26900         * lib/printf-parse.h: New file, from GNU gettext.
26901         * lib/printf-parse.c: New file, from GNU gettext.
26902         * lib/vasnprintf.h: New file, from GNU gettext.
26903         * lib/vasnprintf.c: New file, from GNU gettext.
26904         * lib/asnprintf.c: New file, from GNU gettext.
26905         * lib/vasprintf.h: New file, from GNU gettext with modifications.
26906         * lib/vasprintf.c: New file, from GNU gettext.
26907         * lib/asprintf.c: New file, from GNU gettext.
26908
26909 2003-01-29  Bruno Haible  <bruno@clisp.org>
26910
26911         * modules/stpncpy: New module.
26912         * MODULES.html.sh (func_all_modules): Add it.
26913
26914 2003-01-29  Bruno Haible  <bruno@clisp.org>
26915
26916         * m4/stpncpy.m4: New file.
26917
26918 2003-01-29  Bruno Haible  <bruno@clisp.org>
26919
26920         * lib/stpncpy.h: New file, from GNU gettext with modifications.
26921         * lib/stpncpy.c: New file, from GNU gettext with modifications.
26922
26923 2003-01-28  Bruno Haible  <bruno@clisp.org>
26924
26925         * modules/c-ctype: New module.
26926         * MODULES.html.sh (func_all_modules): Add it.
26927
26928 2003-01-28  Bruno Haible  <bruno@clisp.org>
26929
26930         * lib/c-ctype.h: New file, from GNU gettext, with changes suggested by
26931         Paul Eggert.
26932         * lib/c-ctype.c: New file, from GNU gettext, with changes suggested by
26933         Paul Eggert.
26934
26935 2003-01-27  Bruno Haible  <bruno@clisp.org>
26936
26937         * modules/xsetenv: New module.
26938         * MODULES.html.sh (func_all_modules): Add it.
26939
26940 2003-01-27  Bruno Haible  <bruno@clisp.org>
26941
26942         * lib/xsetenv.h: New file, from GNU gettext.
26943         * lib/xsetenv.c: New file, from GNU gettext.
26944
26945 2003-01-23  Jim Meyering  <jim@meyering.net>
26946
26947         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Correct typo: s/-1/no/ that kept this
26948         from working on systems without dirfd (at least Irix and OSF1/Tru64).
26949
26950 2003-01-23  Bruno Haible  <bruno@clisp.org>
26951
26952         * modules/minmax: New module.
26953         * MODULES.html.sh (func_all_modules): Add it.
26954
26955 2003-01-23  Bruno Haible  <bruno@clisp.org>
26956
26957         * lib/minmax.h: New file, from GNU gettext, with comments from Paul
26958         Eggert.
26959
26960 2003-01-22  Bruno Haible  <bruno@clisp.org>
26961
26962         * modules/exit: New module.
26963         * MODULES.html.sh (func_all_modules): Add it.
26964
26965 2003-01-22  Bruno Haible  <bruno@clisp.org>
26966
26967         * lib/exit.h: New file, from GNU gettext.
26968
26969 2003-01-19  Bruno Haible  <bruno@clisp.org>
26970
26971         * gnulib-tool: Recognize option --extract-maintainer.
26972         (func_get_maintainer): New function.
26973         * modules/*: Add Maintainer entry.
26974
26975 2003-01-16  Jim Meyering  <jim@meyering.net>
26976
26977         * m4/regex.m4: The `regex' struct is both input and output.
26978         Initialize it before each use.  Patch by Tim Waugh.
26979
26980 2003-01-16  Bruno Haible  <bruno@clisp.org>
26981
26982         * MODULES.html.sh: Add a table of contents. Add the module name as
26983         leftmost column. Add hyperlinks.
26984
26985 2003-01-15  Bruno Haible  <bruno@clisp.org>
26986
26987         * m4/md5.m4 (gl_MD5): Require AC_C_INLINE.
26988
26989 2003-01-15  Bruno Haible  <bruno@clisp.org>
26990
26991         * m4/longlong.m4 (jm_AC_TYPE_LONG_LONG): Also test the LL suffix.
26992         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Also test the ULL
26993         suffix.
26994
26995 2003-01-15  Bruno Haible  <bruno@clisp.org>
26996
26997         * m4/alloca.m4 (gl_FUNC_ALLOCA): Invoke AC_EGREP_CPP prerequisites.
26998
26999 2003-01-15  Bruno Haible  <bruno@clisp.org>
27000
27001         * lib/stpcpy.h (stpcpy): Use ANSI C function declarations.
27002         * lib/strcase.h (strcasecmp, strncasecmp): Likewise.
27003
27004 2003-01-14  Jim Meyering  <jim@meyering.net>
27005
27006         * lib/same.c (same_name): Tweak a comment.
27007
27008 2003-01-14  Bruno Haible  <bruno@clisp.org>
27009
27010         * lib/same.c (same_name): Reorder tests so as to avoid calling stat()
27011         when a string comparison is sufficient.
27012
27013 2003-01-14  Bruno Haible  <bruno@clisp.org>
27014
27015         * lib/readtokens.c (readtoken): Cast character to 'unsigned char', not
27016         'unsigned int'.
27017
27018 2003-01-14  Bruno Haible  <bruno@clisp.org>
27019
27020         * lib/hash-pjw.c: Add comment about low quality of this function.
27021
27022 2003-01-13  Bruno Haible  <bruno@clisp.org>
27023
27024         * modules/stpcpy: Distribute lib/stpcpy.h.
27025         * modules/setenv: Depend on alloca. Distribute lib/setenv.h.
27026
27027 2003-01-13  Bruno Haible  <bruno@clisp.org>
27028
27029         * modules/*: Add a description.
27030         * modules/strpbrk: Fix Makefile.am snippet.
27031         * modules/strtoimax: Fix dependencies.
27032         * modules/strtoumax: Likewise.
27033
27034 2003-01-13  Bruno Haible  <bruno@clisp.org>
27035
27036         * gnulib-tool (func_create_testdir): Substitute lib_OBJECTS.
27037         * modules/alloca (Makefile.am): All object files depend on alloca.h.
27038         * modules/stdbool (Makefile.am): All object files depend on stdbool.h.
27039
27040 2003-01-13  Bruno Haible  <bruno@clisp.org>
27041
27042         * gnulib-tool (func_create_testdir): Store config/* files in the main
27043         directory.
27044         * config.rpath: Move to ...
27045         * config/config.rpath: ... here.
27046         * modules/gettext: Contains config/config.rpath, not config.rpath.
27047         * modules/iconv: Likewise.
27048
27049 2003-01-12  Paul Eggert  <eggert@twinsun.com>
27050
27051         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
27052         to avoid collisions with libcurses and libreadline.
27053
27054         * m4/getstr.m4: Remove.
27055         * m4/getline.m4 (gl_PREREQ_GETLINE): Require AC_HEADER_STDC.
27056
27057 2003-01-12  Paul Eggert  <eggert@twinsun.com>
27058
27059         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
27060         to avoid collisions with libcurses and libreadline.
27061
27062         * lib/Makefile.am (libfetish_a_SOURCES): Remove getstr.c, getstr.h.
27063         * lib/getstr.h, getstr.c: Remove.
27064         * lib/getline.c: Include "getline.h", to check interface.
27065         Move body of old getstr.c here: this defines MIN_CHUNK and
27066         declares getdelim2, which is renamed from getstr.
27067         (getline, getdelim): Adjust to renaming of getstr -> getdelim2.
27068
27069         * lib/linebuffer.c (readlinebuffer): Renamed from readline.
27070         All uses changed.
27071         * lib/linebuffer.h: Likewise.
27072         (readline): Remove backward-compatibility macro.
27073
27074 2003-01-12  Paul Eggert  <eggert@twinsun.com>
27075
27076         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
27077         to avoid collisions with libcurses and libreadline.
27078         * getstr: Remove.
27079         * MODULES.html.sh: Remove getstr.
27080         * modules/getline: Depend on unlocked-io, not getstr.
27081
27082 2003-01-12  Jim Meyering  <jim@meyering.net>
27083
27084         * lib/makepath.c: Don't test HAVE_ERRNO_H.  It's not necessary.
27085
27086 2003-01-10  Bruno Haible  <bruno@clisp.org>
27087
27088         * modules/alloca: Change Makefile.am requirements. Simplify Include
27089         requirements. Add lib/alloca_.h to file list.
27090
27091 2003-01-10  Bruno Haible  <bruno@clisp.org>
27092
27093         * m4/alloca.m4 (gl_FUNC_ALLOCA): Also define ALLOCA_H.
27094
27095 2003-01-10  Bruno Haible  <bruno@clisp.org>
27096
27097         * lib/alloca_.h: New file.
27098         * lib/getdate.y: Unconditionally include alloca.h.
27099         * lib/makepath.c: Likewise.
27100         * lib/setenv.c: Likewise.
27101         * lib/userspec.c: Likewise.
27102
27103 2003-01-09  Karl Berry  <karl@gnu.org>
27104
27105         * MODULES.html.sh: include `dirname $0` in PATH, to find
27106         gnulib-tool.
27107
27108 2003-01-09  Bruno Haible  <bruno@clisp.org>
27109
27110         * modules/stdbool: Change configure.ac, Makefile.am requirements.
27111         Simplify Include requirements. Add lib/stdbool.h.in to file list.
27112
27113 2003-01-09  Bruno Haible  <bruno@clisp.org>
27114
27115         * m4/stdbool.m4 (AM_STDBOOL_H): New macro.
27116
27117 2003-01-09  Bruno Haible  <bruno@clisp.org>
27118
27119         * lib/stdbool.h.in: New file.
27120
27121 2003-01-09  Bruno Haible  <bruno@clisp.org>
27122
27123         * gnulib-tool (func_all_modules): Ignore files ending in ~.
27124         * MODULES.html.sh: Likewise.
27125
27126 2003-01-08  Jim Meyering  <jim@meyering.net>
27127
27128         * lib/full-write.c: Undefine and define-away `const' after inclusion
27129         of errno.h, not before.  Suggestion from Bruno Haible.
27130
27131 2003-01-08  Bruno Haible  <bruno@clisp.org>
27132
27133         * modules/full-read: Depend on full-write.
27134
27135 2003-01-08  Bruno Haible  <bruno@clisp.org>
27136
27137         * lib/safe-read.c: Include specification header first, to ensure its
27138         selfcontainedness.
27139         * lib/full-write.c: Likewise.
27140
27141 2003-01-07  Jim Meyering  <jim@meyering.net>
27142
27143         * lib/full-write.c: Rework so that it may serve to define full_read,
27144         too.
27145         * lib/full-read.c: Simply #define FULL_READ and include full-write.c.
27146
27147 2003-01-07  Bruno Haible  <bruno@clisp.org>
27148
27149         * lib/strtoimax.c: Include <stdint.h> as an alternative to
27150         <inttypes.h>.
27151         * lib/xstrtol.h: Likewise.
27152         * lib/xstrtoimax.c: Likewise.
27153         * lib/xstrtoumax.c: Likewise.
27154         * lib/human.h: Likewise.
27155
27156         * lib/tempname.c: Include <inttypes.h> too. Avoids a compilation error
27157         on systems that have <inttypes.h> but not <stdint.h>.
27158
27159 2003-01-07  Bruno Haible  <bruno@clisp.org>
27160
27161         * MODULES.html.sh: Add copyright notice.
27162         (missed_files): Omit CVS directory entries.
27163         (func_module): Make it work with sed-3.02.
27164         * MODULES.txt: Remove file.
27165
27166 2003-01-06  Jim Meyering  <jim@meyering.net>
27167
27168         * lib/version-etc.c: Update year in translatable copyright string.
27169
27170 2003-01-03  Karl Berry  <karl@gnu.org>
27171
27172         * config/config.{guess,sub}: update from prep.
27173
27174 2003-01-02  Karl Berry  <karl@gnu.org>
27175
27176         * doc/COPYING.DOC: belatedly updated to 1.2.
27177
27178 2003-01-01  Karl Berry  <karl@gnu.org>
27179
27180         * gnulib-tool (func_verify_module): report module name $module in
27181         error message, not $1.
27182         * gnulib-tool (create-testdir): don't complain if destdir couldn't
27183         be created, only if it doesn't exist.
27184         * gnulib-tool (last_checkin_date): don't expand the $Date here.
27185
27186 2002-12-31  Paul Eggert  <eggert@twinsun.com>
27187
27188         * m4/memcoll.m4 (gl_MEMCOLL): Require AC_FUNC_MEMCMP.
27189
27190 2002-12-31  Paul Eggert  <eggert@twinsun.com>
27191
27192         * lib/memcoll.c (memcoll): Fall back on a simple algorithm using
27193         memcmp if strcoll doesn't work.
27194
27195 2002-12-31  Bruno Haible  <bruno@clisp.org>
27196
27197         * lib/utime.c (utime_null): No need to call ftruncate if the file was
27198         nonempty.
27199
27200 2002-12-31  Bruno Haible  <bruno@clisp.org>
27201
27202         * lib/memcoll.c (STRCOLL): New macro.
27203         (memcoll): Use it.
27204
27205 2002-12-31  Bruno Haible  <bruno@clisp.org>
27206
27207         * lib/localcharset.h: New file.
27208         * lib/localcharset.c: Include it.
27209         * lib/unicodeio.c: Likewise.
27210
27211 2002-12-31  Bruno Haible  <bruno@clisp.org>
27212
27213         * lib/getstr.h (getstr): Define, to avoid clash with libcurses.
27214         * lib/linebuffer.h (readline): Define, to avoid clash with libreadline.
27215
27216 2002-12-31  Bruno Haible  <bruno@clisp.org>
27217
27218         * lib/getline.h: Include <stddef.h>, for size_t.
27219
27220         * lib/unicodeio.h: Include <stddef.h>, for size_t.
27221         * lib/unicodeio.c: Don't include <stddef.h>.
27222
27223 2002-12-31  Bruno Haible  <bruno@clisp.org>
27224
27225         * lib/getdate.y (get_date): Test HAVE_STRUCT_TM_TM_ZONE, not
27226         HAVE_TM_ZONE.
27227
27228 2002-12-24  Karl Berry  <karl@gnu.org>
27229
27230         * config/config.guess: update from prep.
27231
27232 2002-12-24  Bruno Haible  <bruno@clisp.org>
27233
27234         General infrasructure.
27235         * m4/README: Rewritten.
27236         * m4/onceonly.m4: New file.
27237         * m4/onceonly_2_57.m4: New file.
27238
27239         Module atexit.
27240         * m4/atexit.m4: New file.
27241
27242         Module strtod.
27243         * m4/strtod.m4: New file.
27244
27245         Module strtol.
27246         * m4/strtol.m4: New file.
27247
27248         Module strtoul.
27249         * m4/strtoul.m4: New file.
27250
27251         Module memchr.
27252         * m4/memchr.m4: New file.
27253
27254         Module memcmp.
27255         * m4/memcmp.m4 (gl_PREREQ_MEMCMP): New macro.
27256         (jm_FUNC_MEMCMP): Invoke it.
27257
27258         Module memcpy.
27259         * m4/memcpy.m4: New file.
27260
27261         Module memmove.
27262         * m4/memmove.m4: New file.
27263
27264         Module memset.
27265         * m4/memset.m4: New file.
27266
27267         Module strcspn.
27268         * m4/strcspn.m4: New file.
27269
27270         Module strpbrk.
27271         * m4/strpbrk.m4: New file.
27272
27273         Module strstr.
27274         * m4/strstr.m4: New file.
27275
27276         Module strerror.
27277         * m4/strerror.m4: New file.
27278
27279         Module mktime.
27280         * m4/mktime.m4: Renamed from jm-mktime.m4.
27281         (gl_PREREQ_MKTIME): New macro.
27282         (gl_FUNC_MKTIME): Renamed from jm_FUNC_MKTIME. Invoke gl_PREREQ_MKTIME.
27283
27284         Module malloc.
27285         * m4/malloc.m4 (gl_PREREQ_MALLOC): New macro.
27286         (jm_FUNC_MALLOC): Use AC_FUNC_MALLOC. Invoke gl_PREREQ_MALLOC.
27287         Don't define HAVE_DONE_WORKING_MALLOC_CHECK, since nothing uses it.
27288
27289         Module realloc.
27290         * m4/realloc.m4 (gl_PREREQ_REALLOC): New macro.
27291         (jm_FUNC_REALLOC): Use AC_FUNC_REALLOC. Invoke gl_PREREQ_REALLOC.
27292         Don't define HAVE_DONE_WORKING_REALLOC_CHECK, since nothing uses it.
27293
27294         Module strftime.
27295         * m4/tm_gmtoff.m4: New file, extracted from strftime.m4.
27296         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Use AC_FUNC_STRFTIME.
27297         Don't test for bcopy (we are not emacs). Invoke AC_TYPE_MBSTATE_T and
27298         gl_TM_GMTOFF.
27299         (_jm_STRFTIME_PREREQS, jm_FUNC_GNU_STRFTIME): Use onceonly macros.
27300
27301         Module xalloc.
27302         * m4/xalloc.m4: New file.
27303
27304         Module alloca.
27305         * m4/alloca.m4: New file.
27306
27307         Module putenv.
27308         * m4/putenv.m4 (gl_PREREQ_PUTENV): New macro.
27309         (jm_FUNC_PUTENV): Invoke it.
27310
27311         Module setenv.
27312         * m4/setenv.m4 (gt_FUNC_SETENV): New macro.
27313         (gt_CHECK_VAR_DECL): Fix quoting error that led to infinite loop in m4
27314         when invoked twice.
27315         (gt_PREREQ_SETENV, gt_PREREQ_UNSETENV): New macros, replacing old
27316         gt_FUNC_SETENV.
27317
27318         Module memrchr.
27319         * m4/memrchr.m4: New file.
27320
27321         Module stpcpy.
27322         * m4/stpcpy.m4: New file.
27323
27324         Module strcase.
27325         * m4/strcase.m4: New file.
27326
27327         Module strdup.
27328         * m4/strdup.m4: New file.
27329
27330         Module strnlen.
27331         * m4/strnlen.m4: New file.
27332
27333         Module strndup.
27334         * m4/strndup.m4: New file.
27335
27336         Module xstrtod.
27337         * m4/xstrtod.m4: New file.
27338
27339         Module xstrtol.
27340         * m4/xstrtol.m4: New file.
27341
27342         Module getdate.
27343         * m4/getdate.m4: New file.
27344
27345         Module unlocked-io.
27346         * m4/unlocked-io.m4: Renamed from jm-glibc-io.m4.
27347         (jm_FUNC_GLIBC_UNLOCKED_IO): Invoke AC_GNU_SOURCE. Use onceonly macros.
27348         * m4/jm-glibc-io.m4n: Remove file.
27349
27350         Module long-options.
27351         * m4/long-options.m4: New file.
27352
27353         Module md5.
27354         * m4/md5.m4: New file.
27355
27356         Module sha.
27357         * m4/sha.m4: New file.
27358
27359         Module getstr.
27360         * m4/getstr.m4: New file.
27361
27362         Module getline.
27363         * m4/getline.m4 (gl_PREREQ_GETLINE): New macro.
27364         (AM_FUNC_GETLINE): Invoke AC_GNU_SOURCE. Use <stdlib.h>, not
27365         <sys/types.h>, for size_t. Use the function name gnu_getline, not
27366         simply getline. Infoke gl_PREREQ_GETLINE.
27367
27368         Module obstack.
27369         * m4/obstack.m4: New file.
27370
27371         Module hash.
27372         * m4/hash.m4: New file.
27373
27374         Module readtokens.
27375         * m4/readtokens.m4: New file.
27376
27377         Module strverscmp.
27378         * m4/strverscmp.m4: New file.
27379
27380         Module stdbool.
27381         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Add test for _Bool. Needed for
27382         OSF/1.
27383
27384         Module strtoll.
27385         * m4/strtoll.m4: New file.
27386
27387         Module strtoull.
27388         * m4/strtoull.m4: New file.
27389
27390         Module strtoimax.
27391         * m4/strtoimax.m4: New file.
27392
27393         Module strtoumax.
27394         * m4/strtoumax.m4: New file.
27395
27396         Module xstrtoimax.
27397         * m4/xstrtoimax.m4 (jm_XSTRTOIMAX): Renamed from
27398         jm_AC_PREREQ_XSTRTOIMAX.
27399         Moved the strtol prerequisites to strtol.m4.
27400         Moved the strtoll prerequisites to strtoll.m4.
27401         Moved the strtoimax prerequisites to strtoimax.m4.
27402
27403         Module xstrtoumax.
27404         * m4/xstrtoumax.m4 (jm_XSTRTOUMAX): Renamed from
27405         jm_AC_PREREQ_XSTRTOUMAX.
27406         Moved the strtoul prerequisites to strtoul.m4.
27407         Moved the strtoull prerequisites to strtoull.m4.
27408         Moved the strtoumax prerequisites to strtoumax.m4.
27409
27410         Module chown.
27411         * m4/chown.m4 (gl_PREREQ_CHOWN): New macro.
27412         (jm_FUNC_CHOWN): Use AC_FUNC_CHOWN. Invoke gl_PREREQ_CHOWN.
27413
27414         Module dup2.
27415         * m4/dup2.m4: New file.
27416
27417         Module ftruncate.
27418         * m4/ftruncate.m4 (gl_PREREQ_FTRUNCATE): New macro.
27419         (jm_FUNC_FTRUNCATE): Use AC_REPLACE_FUNCS. Invoke gl_PREREQ_FTRUNCATE.
27420
27421         Module getgroups.
27422         * m4/getgroups.m4 (gl_PREREQ_GETGROUPS): New macro.
27423         (jm_FUNC_GETGROUPS): Use AC_FUNC_GETGROUPS. Invoke gl_PREREQ_GETGROUPS.
27424
27425         Module gettimeofday.
27426         * m4/gettimeofday.m4 (gl_PREREQ_GETTIMEOFDAY): New macro.
27427         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Use onceonly macros. Invoke
27428         gl_PREREQ_GETTIMEOFDAY.
27429
27430         Module mkdir.
27431         * m4/mkdir-slash.m4 (gl_PREREQ_MKDIR): New macro.
27432         (UTILS_FUNC_MKDIR_TRAILING_SLASH): Invoke gl_PREREQ_MKDIR.
27433
27434         Module mkstemp.
27435         * m4/mkstemp.m4 (gl_PREREQ_MKSTEMP): New macro.
27436         (jm_PREREQ_TEMPNAME): New macro, from prereq.m4. Also invoke
27437         jm_AC_TYPE_UINTMAX_T.
27438         (UTILS_FUNC_MKSTEMP): Invoke gl_PREREQ_MKSTEMP and jm_PREREQ_TEMPNAME.
27439
27440         Module stat.
27441         * m4/stat.m4 (gl_PREREQ_STAT): New macro.
27442         (jm_FUNC_STAT): Use AC_FUNC_STAT. Invoke gl_PREREQ_STAT.
27443
27444         Module lstat.
27445         * m4/lstat.m4 (gl_PREREQ_LSTAT): New macro.
27446         (jm_FUNC_LSTAT): Use AC_FUNC_LSTAT. Invoke gl_PREREQ_LSTAT.
27447
27448         Module timespec.
27449         * m4/timespec.m4 (gl_TIMESPEC): New macro.
27450         (jm_CHECK_TYPE_STRUCT_TIMESPEC): Add check for <sys/time.h>.
27451         * m4/st_mtim.m4: Indentation.
27452
27453         Module nanosleep.
27454         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): New macro.
27455         (jm_FUNC_NANOSLEEP): Add check for <sys/time.h>. Invoke
27456         gl_PREREQ_NANOSLEEP.
27457
27458         Module regex.
27459         * m4/regex.m4 (jm_PREREQ_REGEX): New macro.
27460         (jm_INCLUDED_REGEX): Invoke jm_PREREQ_REGEX.
27461         (gl_REGEX): New macro.
27462
27463         Module rename.
27464         * m4/rename.m4 (gl_PREREQ_RENAME): New macro.
27465         (vb_FUNC_RENAME): Invoke gl_PREREQ_RENAME.
27466
27467         Module rmdir.
27468         * m4/rmdir.m4: New file.
27469
27470         Module utime.
27471         * m4/utimbuf.m4 (jm_CHECK_TYPE_STRUCT_UTIMBUF): Use onceonly macros.
27472         * m4/utime.m4 (gl_PREREQ_UTIME): New macro.
27473         (jm_FUNC_UTIME): Invoke gl_PREREQ_UTIME.
27474
27475         Module dirname.
27476         * m4/dirname.m4: New file.
27477
27478         Module getopt.
27479         * m4/getopt.m4: New file.
27480
27481         Module unistd-safer.
27482         * m4/unistd-safer.m4: New file.
27483
27484         Module fnmatch.
27485         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Include <stdlib.h>, for exit()
27486         declaration.
27487         (gl_PREREQ_FNMATCH_EXTRA): New macro.
27488         (gl_FUNC_FNMATCH_POSIX): New macro.
27489         (gl_FUNC_FNMATCH_GNU): Renamed from AC_FUNC_FNMATCH_GNU. Invoke
27490         gl_PREREQ_FNMATCH_EXTRA. Use the function name gnu_fnmatch, not
27491         simply fnmatch.
27492
27493         Module exclude.
27494         * m4/exclude.m4: New file.
27495
27496         Module human.
27497         * m4/human.m4: New file.
27498
27499         Module acl.
27500         * m4/acl.m4: Nop.
27501
27502         Module backupfile.
27503         * m4/backupfile.m4: New file.
27504         * m4/d-ino.m4: Indentation.
27505
27506         Module fsusage.
27507         * m4/fsusage.m4 (gl_FSUSAGE): New macro.
27508         (jm_STATFS_TRUNCATES): New macro, from coreutils-4.5.4/configure.ac.
27509         (gl_PREREQ_FSUSAGE_EXTRA): New macro.
27510
27511         Module dirfd.
27512         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Invoke some AC_EGREP_CPP
27513         requirements.
27514
27515         Module euidaccess.
27516         * m4/euidaccess.m4: New file.
27517
27518         Module file-type.
27519         * m4/file-type.m4: New file.
27520
27521         Module fileblocks.
27522         * m4/fileblocks.m4: New file.
27523
27524         Module filemode.
27525         * m4/filemode.m4: New file.
27526
27527         Module isdir.
27528         * m4/isdir.m4: New file.
27529
27530         Module lchown.
27531         * m4/lchown.m4 (gl_PREREQ_LCHOWN): New macro.
27532         (jm_FUNC_LCHOWN): Invoke gl_PREREQ_LCHOWN.
27533
27534         Module makepath.
27535         * m4/makepath.m4: New file.
27536
27537         Module modechange.
27538         * m4/modechange.m4: New file.
27539
27540         Module mountlist.
27541         * m4/mountlist.m4: New file.
27542         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Use onceonly macros.
27543         Indentation.
27544
27545         Module path-concat.
27546         * m4/path-concat.m4: New file.
27547
27548         Module pathmax.
27549         * m4/pathmax.m4: New file.
27550
27551         Module same.
27552         * m4/same.m4: New file.
27553
27554         Module save-cwd.
27555         * m4/save-cwd.m4: New file.
27556
27557         Module savedir.
27558         * m4/savedir.m4: New file.
27559
27560         Module xgetcwd.
27561         * m4/xgetcwd.m4: New file.
27562         * m4/getcwd.m4 (AC_FUNC_GETCWD_NULL): Use onceonly macros.
27563
27564         Module xreadlink.
27565         * m4/xreadlink.m4: New file.
27566
27567         Module safe-read.
27568         * m4/safe-read.m4: New file.
27569
27570         Module safe-write.
27571         * m4/safe-write.m4: New file.
27572
27573         Module closeout.
27574         * m4/closeout.m4: New file.
27575
27576         Module stdio-safer.
27577         * m4/stdio-safer.m4: New file.
27578
27579         Module getpass.
27580         * m4/getpass.m4: New file.
27581
27582         Module getugroups.
27583         * m4/getugroups.m4: New file.
27584
27585         Module group-member.
27586         * m4/group-member.m4 (gl_PREREQ_GROUP_MEMBER): New macro.
27587         (jm_FUNC_GROUP_MEMBER): Invoke AC_GNU_SOURCE, gl_PREREQ_GROUP_MEMBER.
27588
27589         Module idcache.
27590         * m4/idcache.m4: New file.
27591
27592         Module userspec.
27593         * m4/userspec.m4: New file.
27594
27595         Module gettime.
27596         * m4/clock_time.m4: New file.
27597         * m4/gettime.m4: New file.
27598
27599         Module settime.
27600         * m4/settime.m4: New file.
27601
27602         Module posixtm.
27603         * m4/posixtm.m4: New file.
27604
27605         Module gethostname.
27606         * m4/gethostname.m4: New file.
27607
27608         Module canon-host.
27609         * m4/canon-host.m4: New file.
27610
27611         Module gettext.
27612         * m4/codeset.m4: New file, from gettext-0.11.5.
27613         * m4/gettext.m4: New file, from gettext-0.11.5.
27614         * m4/glibc21.m4: New file, from gettext-0.11.5.
27615         * m4/iconv.m4: New file, from gettext-0.11.5.
27616         * m4/intdiv0.m4: New file, from gettext-0.11.5.
27617         * m4/inttypes-pri.m4: New file, from gettext-0.11.5.
27618         * m4/inttypes.m4: New file, from gettext-0.11.5.
27619         * m4/inttypes_h.m4: New file, from gettext-0.11.5 with modifications.
27620         * m4/isc-posix.m4: New file, from gettext-0.11.5.
27621         * m4/lcmessage.m4: New file, from gettext-0.11.5.
27622         * m4/lib-ld.m4: New file, from gettext-0.11.5.
27623         * m4/lib-link.m4: New file, from gettext-0.11.5.
27624         * m4/lib-prefix.m4: New file, from gettext-0.11.5.
27625         * m4/progtest.m4: New file, from gettext-0.11.5.
27626         * m4/stdint_h.m4: New file, from gettext-0.11.5 with modifications.
27627         * m4/uintmax_t.m4: New file, from gettext-0.11.5 with modifications.
27628         * m4/ulonglong.m4: New file, from gettext-0.11.5 with modifications.
27629
27630         Module localcharset.
27631         * m4/localcharset.m4: New file.
27632
27633         Module hard-locale.
27634         * m4/hard-locale.m4: New file.
27635
27636         Module mbswidth.
27637         * m4/mbswidth.m4 (gl_MBSWIDTH): Renamed from jm_PREREQ_MBSWIDTH. Use
27638         onceonly macros.
27639         * m4/mbrtowc.m4: Add comment.
27640
27641         Module memcasecmp.
27642         * m4/memcasecmp.m4: New file.
27643
27644         Module memcoll.
27645         * m4/memcoll.m4: New file.
27646
27647         Module unicodeio.
27648         * m4/unicodeio.m4: New file.
27649
27650         Module rpmatch.
27651         * m4/rpmatch.m4: New file.
27652
27653         Module yesno.
27654         * m4/yesno.m4: New file.
27655
27656         Module exitfail.
27657         * m4/exitfail.m4: New file.
27658
27659         Module c-stack.
27660         * m4/c-stack.m4 (gl_C_STACK): New macro.
27661         (jm_PREREQ_C_STACK): Check for <sys/time.h>. Use onceonly macros.
27662
27663         Module error.
27664         * m4/error.m4 (gl_ERROR): New macro.
27665         (jm_PREREQ_ERROR): Use onceonly macros.
27666
27667         Module fatal.
27668         * m4/fatal.m4: New file.
27669
27670         Module getloadavg.
27671         * m4/getloadavg.m4 (AC_FUNC_GETLOADAVG): Use onceonly macros.
27672         (gl_FUNC_GETLOADAVG, gl_PREREQ_GETLOADAVG): New macros.
27673
27674         Module getpagesize.
27675         * m4/getpagesize.m4: New file.
27676
27677         Module getusershell.
27678         * m4/getusershell.m4: New file.
27679
27680         Module physmem.
27681         * m4/physmem.m4: New file.
27682
27683         Module posixver.
27684         * m4/posixver.m4: New file.
27685
27686         Module quotearg.
27687         * m4/quotearg.m4: New file.
27688
27689         Module quote.
27690         * m4/quote.m4: New file.
27691
27692         Module readutmp.
27693         * m4/readutmp.m4: New file, based on jm_PREREQ_READUTMP from prereq.m4.
27694
27695         Module sig2str.
27696         * m4/sig2str.m4: New file.
27697
27698         Other.
27699         * m4/longlong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Remove, moved to
27700         ulonglong.m4.
27701         * m4/intmax_t.m4: New file.
27702         * m4/d-type.m4: Indentation.
27703         * m4/jm-macros.m4: Update.
27704         * m4/prereq.m4 (jm_PREREQ): Update.
27705         (jm_PREREQ_ADDEXT): Remove, obsoleted by backupfile.m4.
27706         (jm_PREREQ_CANON_HOST): Remove, obsoleted by canon-host.m4.
27707         (jm_PREREQ_DIRNAME): Remove, obsoleted by dirname.m4.
27708         (jm_PREREQ_EXCLUDE): Remove, obsoleted by exclude.m4.
27709         (jm_PREREQ_GETPAGESIZE): Remove, obsoleted by getpagesize.m4.
27710         (jm_PREREQ_HARD_LOCALE): Remove, obsoleted by hard-locale.m4.
27711         (jm_PREREQ_HASH): Remove, obsoleted by hash.m4.
27712         (jm_PREREQ_HUMAN): Remove, obsoleted by human.m4.
27713         (jm_PREREQ_MEMCHR): Remove, obsoleted by memchr.m4.
27714         (jm_PREREQ_PHYSMEM): Remove, obsoleted by physmem.m4.
27715         (jm_PREREQ_POSIXVER): Remove, obsoleted by posixver.m4.
27716         (jm_PREREQ_QUOTEARG): Remove, obsoleted by quotearg.m4.
27717         (jm_PREREQ_READUTMP): Remove, obsoleted by readutmp.m4.
27718         (jm_PREREQ_REGEX): Remove, obsoleted by regex.m4.
27719         (jm_PREREQ_STRNLEN): Remove, obsoleted by strnlen.m4.
27720         (jm_PREREQ_TEMPNAME): Remove, obsoleted by mkstemp.m4.
27721         (jm_PREREQ_XGETCWD): Remove, obsoleted by xgetcwd.m4.
27722         (jm_PREREQ_XREADLINK): Remove, obsoleted by xreadlink.m4.
27723         * m4/readdir.m4 (jm_FUNC_READDIR): Use onceonly macros.
27724
27725 2002-12-24  Bruno Haible  <bruno@clisp.org>
27726
27727         * MODULES.txt: Update according to m4/ changes.
27728
27729         Module gettext.
27730         * config.rpath: New file, from gettext-0.11.5.
27731
27732         * modules/*: New module descriptions.
27733         * gnulib-tool: New file.
27734         * MODULES.html.sh: New file.
27735
27736 2002-12-21  Karl Berry  <karl@gnu.org>
27737
27738         * doc/fdl.texi: update to version 1.2.
27739
27740 2002-12-19  Karl Berry  <karl@gnu.org>
27741
27742         * config/config.guess: update from prep.
27743
27744 2002-12-18  Bruno Haible  <bruno@clisp.org>
27745
27746         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't test for localtime_r.
27747         * m4/jm-mktime.m4 (jm_FUNC_MKTIME): Likewise.
27748
27749 2002-12-17  Bruno Haible  <bruno@clisp.org>
27750
27751         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Remove checks for limits.h,
27752         stdlib.h, string.h.
27753
27754 2002-12-17  Bruno Haible  <bruno@clisp.org>
27755
27756         * lib/canon-host.c (strdup): Remove unused declaration.
27757
27758         * lib/fsusage.c: Include full_read.h.
27759         (get_fs_usage): Use full_read instead of safe_read.
27760
27761         * lib/utime.c (utime_null): Use SAFE_READ_ERROR.
27762
27763 2002-12-12  Karl Berry  <karl@gnu.org>
27764
27765         * config/config.guess: update from prep.
27766
27767 2002-12-11  Bruno Haible  <bruno@clisp.org>
27768
27769         * m4/setenv.m4: New file, from gettext-0.11.5.
27770
27771 2002-12-11  Bruno Haible  <bruno@clisp.org>
27772
27773         * lib/setenv.h: Rewritten to cope with systems that have setenv() but
27774         not unsetenv().
27775         * lib/setenv.c, unsetenv.c: Taken from glibc-2.2.4 with the following
27776         modifications:
27777
27778         2002-12-11  Bruno Haible  <bruno@clisp.org>
27779
27780                 * setenv.c (alloca): Fall back to malloc.
27781                 (freea): New macro.
27782                 (setenv): Use freea() to free memory allocated with alloca().
27783
27784         2002-11-13  Bruno Haible  <bruno@clisp.org>
27785
27786                 * setenv.c (compar_fn_t, __add_to_environ, setenv): Use ANSI C
27787                 function declarations.
27788                 * unsetenv.c (unsetenv): Likewise.
27789
27790         2002-03-04  Bruno Haible  <bruno@clisp.org>
27791
27792                 Portability to AIX 4.3.3.
27793                 * unsetenv.c: New file, extracted from setenv.c.
27794                 * setenv.c: Move the unsetenv() function to unsetenv.c.
27795
27796         2001-12-20  Bruno Haible  <bruno@clisp.org>
27797
27798                 * setenv.c (__add_to_environ): Don't call realloc(NULL,...),
27799                 use malloc instead. For SunOS 4.
27800
27801         2001-12-11  Bruno Haible  <bruno@clisp.org>
27802
27803                 * setenv.c: Declare alloca.
27804                 (compar_fn_t): New typedef.
27805                 (KNOWN_VALUE, STORE_VALUE): Use it.
27806
27807         * lib/Makefile.am (libfetish_a_SOURCES): Add setenv.c, unsetenv.c,
27808         setenv.h.
27809
27810 2002-12-10  Paul Eggert  <eggert@twinsun.com>
27811
27812         Port exclude.c and exclude.h to more non-GNU systems, e.g. Solaris 7.
27813         * lib/exclude.h (EXCLUDE_ANCHORED, EXCLUDE_INCLUDE, EXCLUDE_WILDCARDS):
27814         Choose values that are less likely to collide with system fnmatch
27815         options.
27816         * lib/exclude.c (FNM_CASEFOLD, FNM_LEADING_DIR): Define to 0 if not
27817         defined (e.g., a pure POSIX system).
27818         (EXCLUDE_macros_do_not_collide_with_FNM_macros): Use FNM_PATHNAME
27819         instead of FNM_FILE_NAME, for compatibility with pure POSIX sytems.
27820
27821 2002-12-06  Paul Eggert  <eggert@twinsun.com>
27822
27823         Undo the 2001-07-02 change for jm-glibc-io, as it was too much of
27824         a pain in practice to deal with generated m4 files.  This change
27825         goes together with the 2002-12-04 unlocked-io.h change in ../lib.
27826
27827         * m4/Makefile.am.in (Makefile.am): Don't mention jm-glibc-io.m4n
27828         and jm-glibc-io.m4, as they are no longer a special case.
27829         * m4/jm-glibc-io.m4: Rename from jm-glibc-io.m4n, and remove the
27830         kludge and the auto-generation stuff.  Check only whether the
27831         functions are declared, not whether they exist, since older hosts
27832         that don't declare the functions can't use the optimization anyway.
27833
27834 2002-12-06  Jim Meyering  <jim@meyering.net>
27835
27836         * lib/error.c: Be consistent: change `#ifndef _LIBC' to `#if !_LIBC'.
27837
27838         Merge in changes from libc's misc/error.c, in preparation
27839         for the merge of gnulib's changes back into libc.
27840
27841         * lib/error.c (_): Define only if not already defined.
27842         Move definition to follow all #include directives.
27843         Include unlocked-io.h only if !_LIBC.
27844         [_LIBC]: Include <libio/libioP.h>.
27845         [USE_IN_LIBIO]: Include <libio/iolibio.h>
27846         (fflush): Tweak definition to use INTUSE.
27847         (putc): Define.
27848
27849 2002-12-05  Paul Eggert  <eggert@twinsun.com>
27850
27851         * lib/alloca.c [defined emacs]: Include "lisp.h".
27852         (xalloc_die) [defined emacs]: New macro.
27853         (free) [defined emacs && defined EMACS_FREE]: Define to EMACS_FREE.
27854         [! defined emacs]: Include <xalloc.h>.
27855         (POINTER_TYPE) [!defined POINTER_TYPE]: New macro.
27856         (pointer): Typedef to POINTER_TYPE *.
27857         (malloc): Remove decl; we now always use xmalloc.
27858         (alloca): Use old-style definition, since Emacs needs this.
27859         Check for arithmetic overflow when computing combined size.
27860
27861 2002-12-04  Paul Eggert  <eggert@twinsun.com>
27862
27863         Do not generate unlocked-io.h automatically, since it's easier to
27864         maintain it by hand.
27865
27866         * lib/unlocked-io.h: New file, from GNU diffutils,
27867         but with proper copyright notice and attribution.
27868         * lib/gen-uio: Remove.
27869         * lib/Makefile.am: Add copyright notice.
27870         (libfetish_a_SOURCES): Add unlocked-io.h.
27871         (BUILT_SOURCES, all-local): Remove unlocked-io.h.
27872         (DISTCLEANFILES, io_functions): Remove macros.
27873         (EXTRA_DIST): Remove gen_uio.
27874         (unlocked-io.h): Remove rule.
27875
27876 2002-12-04  Jim Meyering  <jim@meyering.net>
27877
27878         Reflect the fact that stat.c and lstat.c are no longer generated.
27879         * lib/Makefile.am (BUILT_SOURCES): Remove stat.c and lstat.c.
27880         (DISTCLEANFILES): Likewise.
27881         (EXTRA_DIST): Likewise.
27882         (all_local): Don't depend on stat.c or lstat.c.
27883         (stat.c, lstat.c): Remove rules.
27884         (EXTRA_DIST): Remove xstat.in.
27885
27886         * lib/xstat.in: Remove file.  Contents moved into stat.c.
27887         * lib/stat.c: New file.  Contents mostly from xstat.in.
27888         * lib/stat.c: Rework so that it may serve to define rpl_lstat, too.
27889         * lib/lstat.c: New file. Simply #define LSTAT and include stat.c.
27890
27891         * lib/safe-read.c: Rework so that it may serve to define safe_write,
27892         too.
27893         * lib/safe-write.c: Simply #define SAFE_WRITE and include safe-read.c.
27894
27895 2002-12-03  Jim Meyering  <jim@meyering.net>
27896
27897         * lib/safe-read.c, safe-write.c: Change variable names and comments,
27898         but not semantics, to minimize the differences between these two files.
27899         (safe_read): Change comment to mention SAFE_READ_ERROR.
27900
27901         * lib/safe-read.c (IS_EINTR): Define.
27902         (safe_read): Use IS_EINTR in place of in-function cpp directives.
27903
27904 2002-12-02  Jim Meyering  <jim@meyering.net>
27905
27906         * lib/safe-read.c (EINTR): Define.
27907         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Define.
27908         (INT_MAX): Provide fallback.
27909         (safe_read): Rewrite to iterate IFF the read fails with EINTR.
27910
27911         * lib/safe-read.h (SAFE_READ_ERROR): Define.
27912
27913 2002-12-02  Bruno Haible  <bruno@clisp.org>
27914
27915         * lib/safe-write.c (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM):
27916         Define, taken from safe-read.c.
27917         (INT_MAX): Provide fallback.
27918         (safe_write): Rewrite to iterate IFF the write fails with EINTR.
27919         * lib/safe-write.h (SAFE_WRITE_ERROR): Define.
27920
27921         * lib/safe-read.c (EINTR): Remove definition.
27922         (safe_read): Don't use EINTR if it is absent.
27923
27924 2002-12-01  Jim Meyering  <jim@meyering.net>
27925
27926         * lib/safe-read.c: (safe_read): Also exit the loop when read returns
27927         zero.
27928         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM, INT_MAX): Define.
27929
27930 2002-11-27  Paul Eggert  <eggert@twinsun.com>
27931
27932         * lib/hash.c (hash_lookup, hash_get_first, hash_get_next,
27933         hash_find_entry, hash_rehash): Replace `if (limit <= value) abort ();'
27934         with `if (! (value < limit)) abort ();', for readability.
27935
27936 2002-11-26  Karl Berry  <karl@gnu.org>
27937
27938         * lib/strdup.c: copy from libc again, with jim's ok.
27939         * lib/.cppi-disable: re-add strdup.c
27940
27941 2002-11-25  Karl Berry  <karl@gnu.org>
27942
27943         * lib/strtoll.c: copy from libc, meaning we now #include <strtol.c>
27944         instead of "strtol.c".
27945
27946 2002-11-25  Karl Berry  <karl@gnu.org>
27947
27948         * config/install-sh: update from automake for variable quoting, $0 in
27949         error msgs, etc.
27950
27951         * config/srclist.txt ($LIBCSRC/time/mktime.c lib gpl): new entry.
27952         * config/srclist.txt ($LIBCSRC/sysdeps/generic/strtoll.c lib gpl): new
27953         entry.
27954
27955 2002-11-25  Jim Meyering  <jim@meyering.net>
27956
27957         * lib/mktime.c: Sync from libc, now that it has the latest fix.
27958
27959 2002-11-24  Karl Berry  <karl@gnu.org>
27960
27961         * lib/error.c, getopt.c, getopt.h, getopt1.c, obstack.c, regex.c,
27962         regex.h, strdup.c, strtoll.c, tempname.c: change license to gpl.
27963
27964 2002-11-24  Jim Meyering  <jim@meyering.net>
27965
27966         Update from coreutils:
27967
27968         * lib/mktime.c: Merge in changes from libc.
27969
27970         Avoid a link-time failure on some Linux systems.
27971         * lib/mktime.c (STATIC): Define to be empty (_LIBC) or `static'
27972         (otherwise).
27973         (__mon_yday): Declare with the STATIC attribute.
27974         (__mktime_internal): Likewise.
27975         Based on a report from Greg Schafer.
27976
27977 2002-11-23  Jim Meyering  <jim@meyering.net>
27978
27979         * lib/sig2str.c (str2signum, sig2str): Avoid a warning from gcc:
27980         Use `unsigned', not `int', as type of index.
27981
27982         * lib/xstat.in [@BEGIN_LSTAT_ONLY@]: Include <string.h>.
27983
27984         * lib/fsusage.c: Remove unneeded parentheses around operands of
27985         `defined'.
27986
27987 2002-11-22  Paul Eggert  <eggert@twinsun.com>
27988
27989         * lib/quotearg.h: Allow multiple inclusion by surrounding with
27990         "#ifndef QUOTEARG_H_".  Include <stddef.h>, for size_t,
27991         so that we can be included first.
27992         (PARAMS): Remove; we now assume C89 or later.  All uses removed.
27993         * lib/quotearg.c: Include quotearg.h immediately after config.h.
27994         No need to include stddef.h or sys/types.h any more.
27995         Surround local include files with "", not "<>".
27996         Assume HAVE_LIMITS_H unconditionally, as we assume C89.
27997         Similarly, assume HAVE_C_BACKSLASH_A, CHAR_BIT, UCHAR_MAX, UINT_MAX,
27998         HAVE_STDLIB_H, HAVE_STRING_H, STDC_HEADERS.
27999         (HAVE_MBSINIT): Undef if !HAVE_MBRTOWC.
28000         (mbsinit): Define to 1 if !defined mbsinit && !HAVE_MBSINIT.
28001         (ISPRINT): Remove; no longer needed now that we assume C89.
28002
28003         (clone_quoting_options, quotearg_buffer, quotearg_n_options):
28004         Preserve errno.
28005
28006         (quotearg_buffer_restyled, quotearg_n, quotearg_n_style,
28007         quotearg_char): Use SIZE_MAX rather than
28008         (size_t) -1 when we are talking about "infinity".
28009
28010         (quotearg_buffer_restyled): Fix bug when quoting trigraphs.
28011
28012 2002-11-22  Paul Eggert  <eggert@twinsun.com>
28013
28014         * lib/hash.c: Avoid use of <assert.h>, as the GNU Coding Standards
28015         hint that one should use `if (! x) abort ();' rather than `assert
28016         (x);', and anyway it's one less thing to worry about configuring.
28017         (hash_lookup, hash_get_first, hash_get_next, hash_find_entry,
28018         hash_rehash, hash_insert): Use abort rather than assert.
28019
28020 2002-11-22  Bruno Haible  <bruno@clisp.org>
28021
28022         * lib/safe-read.h: Assume C89. Add comments.
28023         (safe_read): Change return type to size_t.
28024         * lib/safe-read.c (safe_read): Change return type to size_t. Handle
28025         byte counts > SSIZE_MAX correctly.
28026         * lib/safe-write.h: New file.
28027         * lib/safe-write.c: New file.
28028         * lib/full-read.h: New file.
28029         * lib/full-read.c: New file.
28030         * lib/full-write.h: Assume C89. Add comments.
28031         * lib/full-write.c: Include safe-write.h.
28032         (full_write): Rewritten to use safe_write.
28033         Suggested by Jim Meyering and Paul Eggert.
28034
28035 2002-11-21  Jim Meyering  <jim@meyering.net>
28036
28037         * lib/strdup.c (strdup): Tweak comment and initial #if/#include.
28038
28039         Merge in changes from the coreutils.
28040
28041         2002-09-25  Paul Eggert  <eggert@twinsun.com>
28042         * lib/fsusage.c [! HAVE_INTTYPES_H && HAVE_STDINT_H] Include
28043         <stdint.h>.
28044         (UINTMAX_MAX) [!defined UINTMAX_MAX]: New macro.
28045         (PROPAGATE_ALL_ONES): Work even if X is unsigned and narrower than
28046         int.  Work more efficiently if X is the same width as uintmax_t.
28047         Do not compare X to -1, to avoid bogus compiler warning.
28048         (get_fs_usage): (uintmax_t) -1 -> UINTMAX_MAX to avoid a cast.
28049         Don't assume that f_frsize and f_bsize are the same type.
28050
28051         * lib/mountlist.c: #undef MNT_IGNORE before defining it, to avoid
28052         warning on FreeBSD.
28053
28054         * lib/makepath.c (make_path): Restore umask *before* creating the final
28055         component.
28056         (make_path): Minor reformatting.
28057
28058         * lib/xmalloc.c: Adjust to work with new autoconf macros,
28059         AC_FUNC_MALLOC and AC_FUNC_REALLOC: test #ifndef
28060         HAVE_MALLOC/HAVE_REALLOC.
28061
28062         * lib/mountlist.h (ME_DUMMY): Don't count entries of type `auto' as
28063         dummy ones.  At least on GNU/Linux systems, `auto' means something
28064         else.
28065         From Michael Stone.
28066
28067 2002-11-21  Bruno Haible  <bruno@clisp.org>
28068
28069         Remove case insensitive option matching.
28070         * lib/argmatch.h (argcasematch): Remove declaration.
28071         (ARGCASEMATCH): Remove macro.
28072         (__xargmatch_internal): Remove case_sensitive argument.
28073         (XARGMATCH): Update.
28074         (XARGCASEMATCH): Remove macro.
28075         * lib/argmatch.c (argmatch): Renamed from __argmatch_internal. Remove
28076         case_sensitive argument.
28077         (argcasematch): Remove function.
28078         (__xargmatch_internal): Remove case_sensitive argument.
28079         (main): Use XARGMATCH instead of XARGCASEMATCH.
28080
28081         * lib/xmalloc.c: Change compile-time error message. Add comment about
28082         required autoconf version.
28083
28084 2002-11-20  Paul Eggert  <eggert@twinsun.com>
28085
28086         Merge argmatch cleanups from Bison.  Assume C89.
28087
28088         * lib/argmatch.c: Include config.h here, not in argmatch.h.
28089         Include stdlib.h, for EXIT_FAILURE.
28090         Always include <string.h>, since we assume C89.
28091         (EXIT_FAILURE): Remove pre-C89 bug workaround.
28092         * lib/argmatch.h: Do not include <config.h> or <sys/types.h>.
28093         Include <stddef.h> instead, since it's all we need for size_t.
28094         (PARAMS): Remove.  All uses removed.
28095         (ARRAY_CARDINALITY): Do not bother to #undef.
28096         (ARRAY_CARDINALITY, ARGMATCH, ARGCASEMATCH, invalid_arg,
28097         ARGMATCH_VALID, XARGMATCH, XARGCASEMATCH):
28098         Remove unnecessary parentheses.
28099         (ARGMATCH_VALID, XARGMATCH, XARGCASEMATCH):
28100         Insert necessary parentheses.
28101         (ARGMATCH_CONSTRAINT, ARGMATCH_VERIFY): New macros.
28102         (ARGMATCH_ASSERT): Use ARGMATCH_CONSTRAINT.
28103
28104 2002-11-19  Bruno Haible  <bruno@clisp.org>
28105
28106         * lib/mbswidth.c: Include mbswidth.h right at the beginning.
28107         * lib/mbswidth.h: Include <stddef.h>, for size_t.
28108
28109         * lib/mbswidth.h (PARAMS): Remove macro.
28110         (mbswidth, mbsnwidth): Use ANSI C function declarations.
28111         * lib/mbswidth.c (mbswidth, mbsnwidth): Likewise.
28112
28113         * lib/gcd.h (PARAMS): Remove macro.
28114         (gcd): Use ANSI C function declarations.
28115         * lib/gcd.c (gcd): Likewise.
28116
28117 2002-11-15  Bruno Haible  <bruno@clisp.org>
28118
28119         * lib/strcspn.c: Include <stddef.h>.
28120         (strcspn): Use ANSI C function declaration. Change return type to
28121         size_t. Use NULL.
28122         * lib/strpbrk.c: Minimize diffs to glibc. Include <stddef.h>.
28123         (strpbrk): Use NULL.
28124         * lib/strpbrk.h (PARAMS): Remove macro.
28125         (strpbrk): Use ANSI C function declaration.
28126         * lib/strstr.c: Don't include <sys/types.h>.
28127         * lib/strstr.h (PARAMS): Remove macro.
28128         (strstr): Use ANSI C function declarations.
28129
28130 2002-11-14  Karl Berry  <karl@gnu.org>
28131
28132         * config/mkinstalldirs: `do' on separate line, instead of
28133         `for var; do'.
28134
28135 2002-11-06  Bruno Haible  <bruno@clisp.org>
28136
28137         * lib/gcd.h (gcd): Change argument type to 'unsigned long'.
28138         * lib/gcd.c (gcd): Likewise.
28139
28140 2002-11-05  Bruno Haible  <bruno@clisp.org>
28141
28142         * lib/gcd.h: New file, from gettext-0.11.5.
28143         * lib/gcd.c: New file, from gettext-0.11.5.
28144
28145 2002-11-05  Bruno Haible  <bruno@clisp.org>
28146
28147         * lib/error.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
28148         * lib/getopt.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
28149         * lib/obstack.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
28150         * lib/regex.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
28151
28152         * lib/argmatch.c: Include gettext.h instead of <locale.h> and
28153         <libintl.h>.
28154         * lib/makepath.c: Include gettext.h instead of <locale.h> and
28155         <libintl.h>.
28156
28157         * lib/closeout.c: Include gettext.h instead of <libintl.h>.
28158         * lib/human.c: Include gettext.h instead of <libintl.h>.
28159         * lib/quotearg.c: Include gettext.h instead of <libintl.h>.
28160         * lib/rpmatch.c: Include gettext.h instead of <libintl.h>.
28161         * lib/unicodeio.c: Include gettext.h instead of <libintl.h>.
28162         * lib/userspec.c: Include gettext.h instead of <libintl.h>.
28163         * lib/version-etc.c: Include gettext.h instead of <libintl.h>.
28164         * lib/xmalloc.c: Include gettext.h instead of <libintl.h>.
28165         (textdomain): Remove definition.
28166         * lib/xmemcoll.c: Include gettext.h instead of <libintl.h>.
28167
28168         * lib/long-options.c: Remove include of <libintl.h> and definition of
28169         _.
28170         * lib/same.c: Remove include of <libintl.h> and definition of _.
28171
28172 2002-11-04  Owen Taylor  <otaylor@redhat.com>
28173
28174         * lib/config.charset: A few additions for Solaris.
28175
28176 2002-11-04  Bruno Haible  <haible@clisp.cons.org>
28177
28178         Make it possible to build libcharset with CC=gcc CFLAGS="-x c++".
28179         * lib/localcharset.c (locale_charset): Declare as extern "C".
28180
28181 2002-11-04  Bruno Haible  <haible@clisp.cons.org>
28182
28183         * lib/config.charset: msdos in uk_UA uses CP1125.
28184
28185 2002-11-04  Bruno Haible  <bruno@clisp.org>
28186
28187         * lib/stpcpy.h: New file, from GNU gettext-0.11.5.
28188         * lib/strcase.h: New file, from GNU gettext-0.11.5.
28189         * lib/strpbrk.h: New file, from GNU gettext-0.11.5.
28190         * lib/strstr.h: New file, from GNU gettext-0.11.5.
28191         * lib/xgetcwd.h: New file, from GNU gettext-0.11.5.
28192
28193 2002-11-04  Bruno Haible  <bruno@clisp.org>
28194
28195         * lib/localcharset.c (locale_charset): Don't return an empty string.
28196
28197 2002-11-04  Bruno Haible  <bruno@clisp.org>
28198
28199         * lib/localcharset.c (get_charset_aliases): Add more Windows specific
28200         aliases.
28201
28202 2002-11-04  Bruno Haible  <bruno@clisp.org>
28203
28204         * lib/config.charset: Update for newest glibc. Add canonical names
28205         ISO-8859-14, KOI8-T, TCVN5712-1, GEORGIAN-PS.
28206
28207 2002-11-04  Bruno Haible  <bruno@clisp.org>
28208
28209         * lib/config.charset: Add support for NetBSD.
28210
28211 2002-11-04  Bruno Haible  <bruno@clisp.org>
28212
28213         * lib/config.charset [msdosdjgpp]: For Russian, use CP866.
28214
28215 2002-11-01  Bruno Haible  <bruno@clisp.org>
28216
28217         * configure.in: Add AC_CONFIG_AUX_DIR call.
28218         (AC_OUTPUT): Add m4/Makefile, lib/Makefile. Remove doc/Makefile,
28219         test/Makefile.
28220         * Makefile.in (subdirs): Add m4, lib. Remove doc, test.
28221
28222 2002-09-28  Karl Berry  <karl@gnu.org>
28223
28224         * config/srclist.txt: can't copy install-sh/mkinstalldirs from
28225         installed automake until the next release, since changes have been
28226         made.
28227
28228 2002-09-25  Karl Berry  <karl@gnu.org>
28229
28230         * lib/strdup.c: copy from libc/string (via ../config/srclist*).
28231         * lib/getopt*: copy from libc/posix.
28232         * lib/gettext.h: copy from gettext.
28233         * lib/.cppi-disable: add strdup.c, gettext.h.
28234
28235 2002-09-25  Karl Berry  <karl@gnu.org>
28236
28237         * config/srclist.txt: enable gettext.h check.
28238         * config/config.{guess,sub}: update from prep.
28239         * config/depcomp, install-sh, mdate-sh, missing, mkinstalldirs: update
28240                 from automake 1.6.3.
28241         See srclist*.
28242
28243 2002-08-23  Stefan Monnier  <monnier@cs.yale.edu>
28244
28245         * regex.c (PATFETCH): Remove the translating fetch.
28246         (PATFETCH_RAW): Rename to PATFETCH.
28247         (set_image_of_range): New fun.
28248         (SET_RANGE_TABLE_WORK_AREA): Use it.
28249         (regex_compile): Don't translate the pattern chars so eagerly.
28250         Only do it when inserting an `exactn' bytecode or when handling
28251         a char-range.
28252         (mutually_exclusive_p): Avoid empty statement.
28253
28254 2002-07-06  Jim Meyering  <meyering@lucent.com>
28255
28256         * m4/README: Don't mention Makefile.am.in.
28257         Outline how I've tested changes to .m4 files.  Yep, it's a pain.
28258
28259 2002-07-01  Jim Meyering  <meyering@lucent.com>
28260
28261         * lib/c-stack.c: Include sys/time.h.
28262         From Volker Borchert.
28263
28264 2002-06-26  Paul Eggert  <eggert@twinsun.com>
28265
28266         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for btowc.
28267
28268 2002-06-26  Paul Eggert  <eggert@twinsun.com>
28269
28270         * lib/fnmatch.c, fnmatch_loop.c (WIDE_CHAR_SUPPORT):
28271         New macro.  Use it uniformly instead of
28272         (defined HAVE_WCTYPE_H && defined HAVE_WCHAR_H).
28273         It also uses HAVE_BTOWC, to fix a porting bug on Solaris 2.5.1
28274         reported by Vin Shelton.
28275
28276 2002-06-22  Paul Eggert  <eggert@twinsun.com>
28277
28278         * lib/c-stack.h (segv_handler, c_stack_action) [! defined SA_SIGINFO]:
28279         Do not assume SA_SIGINFO behavior.
28280         Bug reported by Jim Meyering on NetBSD 1.5.2.
28281
28282 2002-06-22  Jim Meyering  <meyering@lucent.com>
28283
28284         * m4/c-stack.m4: New file, from diffutils-2.8.2.
28285         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_C_STACK.
28286
28287         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Don't require AC__GNU_SOURCE,
28288         now that configure.ac uses AC_GNU_SOURCE.
28289         (jm_MACROS): Rename: jm_FUNC_FNMATCH to AC_FUNC_FNMATCH_GNU.
28290         * m4/prereq.m4 (jm_PREREQ_EXCLUDE): Likewise, wrt jm_FUNC_FNMATCH.
28291
28292         Update to latest tools.  Suggestions from Paul Eggert.
28293         * m4/stdbool.m4: New file, from diffutils-2.8.2.
28294         * m4/gnu-source.m4: Update from diffutils-2.8.2.
28295         * m4/fnmatch.m4: Likewise.
28296         * m4/prereq.m4: Change each use of AC_CHECK_HEADERS(stdbool.h)
28297         to AC_HEADER_STDBOOL
28298
28299 2002-06-22  Jim Meyering  <meyering@lucent.com>
28300
28301         * lib/fnmatch.c (ISASCII, ISPRINT): Undefine, to avoid warning about
28302         redefinition due to Solaris 2.6's definition in /usr/include/sys/euc.h.
28303
28304 2002-06-22  Jim Meyering  <meyering@lucent.com>
28305
28306         * lib/c-stack.c, lib/c-stack.h: New files, from diffutils-2.8.2.
28307
28308         * lib/exitfail.c, exitfail.h: Likewise.
28309         * lib/Makefile.am (libfetish_a_SOURCES): Add exitfail.c and exitfail.h.
28310
28311         * lib/Makefile.am (libfetish_a_SOURCES): Add fnmatch_.h in place
28312         of fnmatch.h.
28313         (EXTRA_DIST): Add fnmatch_loop.c.
28314         (libfetish_a_SOURCES): Add c-stack.c and c-stack.h.
28315
28316         * lib/fnmatch_loop.c: New file, from diffutils-2.8.2.
28317         * lib/fnmatch.c: Update from diffutils-2.8.2.
28318         * lib/fnmatch_.h: New file.  From diffutils-2.8.2.
28319         * lib/fnmatch.h: Remove file.
28320
28321 2002-06-21  Jim Meyering  <meyering@lucent.com>
28322
28323         * m4/c-bs-a.m4: Add comment, from diffutils-2.8.2.
28324         * m4/mbrtowc.m4: Likewise.
28325
28326         * m4/mbstate_t.m4: Update from diffutils-2.8.2.
28327         * m4/mbswidth.m4: Reflect name change:
28328         s/AC_MBSTATE_T/AC_TYPE_MBSTATE_T.
28329         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Likewise.
28330
28331         * m4/lib-link.m4: Update from gettext-0.11.2.
28332         * m4/gettext.m4: Likewise.
28333
28334         * m4/jm-macros.m4 (jm_CHECK_ALL_HEADERS): Check for hurd.h.
28335         From Alfred M. Szmidt.
28336
28337 2002-06-18  Paul Eggert  <eggert@twinsun.com>
28338
28339         * lib/file-type.h: Report an error if neither S_ISREG nor
28340         S_IFREG is defined, instead of using a test specific to glibc
28341         2.2.  This should be safe, since POSIX requires S_ISREG and
28342         Unix Version 7 had S_IFREG.  We don't need to check for
28343         <sys/types.h> since we don't use any symbols that it defines.
28344
28345 2002-06-15  Richard Dawe  <richdawe@bigfoot.com>
28346
28347         * lib/Makefile.am (lstat.c, stat.c, .sin.sed): Use t-$@, rather than
28348         $@-t, so that each temporary file name is unique and valid in the first
28349         8 characters, for operation under DOS.
28350
28351 2002-06-15  Paul Eggert  <eggert@twinsun.com>
28352
28353         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Check for st_author.
28354
28355 2002-06-15  Jim Meyering  <meyering@lucent.com>
28356
28357         Work even with DJGPP 2.03, which lacks support for symlinks.
28358         From Richard Dawe.
28359         * lib/xstat.in (S_ISLNK): Define to 0 if neither S_ISLNK nor S_IFLNK
28360         is defined.
28361         * lib/lchown.c (S_ISLNK): Likewise.
28362
28363 2002-06-15  Jim Meyering  <meyering@lucent.com>
28364
28365         * lib/file-type.h (FILE_TYPE_H): Guard entire contents with #ifndef.
28366         For GNU libc 2.2 and newer, ensure that <sys/types.h> and <sys/stat.h>
28367         have been included before this file.
28368
28369 2002-06-14  Jim Meyering  <meyering@lucent.com>
28370
28371         * lib/file-type.h: Use the version from diffutils-2.8.2.
28372         * lib/file-type.c: Likewise.
28373
28374 2002-06-07  Jim Meyering  <meyering@lucent.com>
28375
28376         * m4/prereq.m4 (jm_PREREQ_STAT): Check for sys/param.h and sys/mount.h.
28377         They're needed at least for NetBSD 1.5.2.
28378         ($statxfs_includes): Include those same headers.
28379         ($statxfs_includes): Include sys/vfs.h if available.
28380         ($statxfs_includes): Likewise for sys/statvfs.h.
28381         Check for the following members in both structs statfs and statvfs:
28382         f_basetype, f_type, f_fsid.__val, f_namemax, f_namelen.
28383
28384 2002-06-01  Jim Meyering  <meyering@lucent.com>
28385
28386         * m4/d-type.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Rename macro:
28387         s/D_TYPE_IN_DIRENT/HAVE_STRUCT_DIRENT_D_TYPE/.
28388
28389 2002-05-28  Jim Meyering  <meyering@lucent.com>
28390
28391         * m4/readdir.m4 (jm_FUNC_READDIR): Undefine `mkdir', not `rmdir'.
28392         Reported by Volker Borchert.
28393
28394 2002-05-27  Jim Meyering  <meyering@lucent.com>
28395
28396         Fix a problem seen only on nonconforming systems whereby ls.c's
28397         use of localtime, and then of gettimeofday would cause trouble:
28398         the localtime call used to initialize rpl_gettimeofday's save
28399         mechanism would clobber ls's current local time information so
28400         that in any long listing the first file would always be listed
28401         with date 1970-01-01.  Analysis by Volker Borchert.
28402
28403         * lib/gettimeofday.c (localtime): Undefine.
28404         (rpl_localtime): New function.
28405
28406 2002-05-27  Jim Meyering  <meyering@lucent.com>
28407
28408         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER): Also replace
28409         localtime.
28410
28411         * m4/readdir.m4 (jm_FUNC_READDIR): Undefine `rmdir' so we don't try to
28412         use the replacement function; it wouldn't resolve at link time.
28413         Reported by Volker Borchert.
28414
28415 2002-05-22  Jim Meyering  <meyering@lucent.com>
28416
28417         * lib/Makefile.am (libfetish_a_SOURCES): Add file-type.c and
28418         file-type.h.
28419         * lib/file-type.h: New file.
28420         * lib/file-type.c (file_type): New file/function.  Extracted from
28421         diffutils.
28422
28423 2002-04-30  Jim Meyering  <meyering@lucent.com>
28424
28425         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_STAT.
28426
28427 2002-04-29  Paul Eggert  <eggert@twinsun.com>
28428
28429         * m4/prereq.m4 (jm_PREREQ_SIG2STR): Remove; all callers changed.
28430
28431 2002-04-29  Paul Eggert  <eggert@twinsun.com>
28432
28433         * m4/prereq.m4 (jm_PREREQ_HARD_LOCALE): Check for stdlib.h.
28434         Do not check for alloca.h (no longer used) or stdbool.h (was never
28435         used?).  Add AM_C_PROTOTYPES since hard-locale.h uses it.
28436
28437 2002-04-29  Paul Eggert  <eggert@twinsun.com>
28438
28439         * lib/hard-locale.c: Upgrade to version used in GNU Diffutils 2.8.1.
28440
28441 2002-04-29  Jim Meyering  <meyering@lucent.com>
28442
28443         * m4/jm-macros.m4 (jm_MACROS): Remove use of AC_FUNC_STRNLEN.
28444         * m4/prereq.m4: Add jm_PREREQ_STRNLEN.
28445         Use AC_FUNC_STRNLEN here instead.
28446
28447         * m4/jm-macros.m4: Don't AC_REQUIRE([AC_PROG_CC_STDC]).
28448         With autoconf-2.53a, it's part of AC_PROG_CC.
28449
28450 2002-04-28  Paul Eggert  <eggert@twinsun.com>
28451
28452         * m4/jm-macros.m4 (jm_MACROS): Add AC_REPLACE_FUNCS(sig2str).
28453         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_SIG2STR.
28454
28455 2002-04-28  Paul Eggert  <eggert@twinsun.com>
28456
28457         * lib/sig2str.h, lib/sig2str.c: New files.
28458         * lib/Makefile.am (libfetish_a_SOURCES): Add sig2str.h.
28459
28460 2002-04-28  Paul Eggert  <eggert@twinsun.com>
28461
28462         * lib/sig2str.h (SIGNUM_BOUND): Do not use WTERMSIG, to avoid
28463         depending on <sys/wait.h> and WTERMSIG.  Default to 64 instead
28464         of 127, since 64 is the largest conceivable number for ancient
28465         nonstandard hosts.
28466         * lib/sig2str.c: Do not include <sys/wait.h>; no longer needed.
28467
28468 2002-04-28  Jim Meyering  <meyering@lucent.com>
28469
28470         * lib/sig2str.c (WTERMSIG): Remove definition (unused).
28471
28472 2002-04-24  Jim Meyering  <meyering@lucent.com>
28473
28474         * m4/prereq.m4 (jm_PREREQ_HARD_LOCALE): New macro.
28475         (jm_PREREQ): Use it.
28476
28477         * m4/getloadavg.m4: Check for these headers: locale.h unistd.h
28478         mach/mach.h fcntl.h.
28479         Check for this function: setlocale.
28480
28481 2002-04-24  Jim Meyering  <meyering@lucent.com>
28482
28483         * lib/gettext.h: New file, from Gettext.
28484         * lib/Makefile.am (INCLUDES): Remove -I../intl.
28485         (libfetish_a_SOURCES): Add gettext.h.
28486
28487 2002-04-16  Jim Meyering  <meyering@lucent.com>
28488
28489         * m4/prereq.m4 (jm_PREREQ_READUTMP): Also check for these members:
28490         ut_pid, ut_id, ut_exit.
28491
28492 2002-04-16  Jim Meyering  <meyering@lucent.com>
28493
28494         * lib/readutmp.h (UT_TYPE): Remove definition (now in who.c).
28495         (HAVE_STRUCT_XTMP_UT_EXIT, HAVE_STRUCT_XTMP_UT_ID): Define.
28496         (HAVE_STRUCT_XTMP_UT_PID, HAVE_STRUCT_XTMP_UT_TYPE): Define.
28497
28498 2002-04-12  Jim Meyering  <meyering@lucent.com>
28499
28500         * m4/ls-mntd-fs.m4 (checking for getmntinfo function...): Remove
28501         now-bogus check for f_type in sys/mount.h.  Instead, just test for the
28502         existence of the getmntinfo function.  Needed for Darwin 5.3.
28503
28504         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Also detect when dirfd is a macro.
28505         This is necessary at least on Darwin 5.3.
28506
28507         * m4/jm-macros.m4: Don't AC_REPLACE(strnlen), now that we use
28508         AC_FUNC_STRNLEN.  Otherwise, we'd end up putting two copies of
28509         strnlen.o in the library, and that makes some versions of ranlib
28510         object.
28511
28512 2002-04-12  Jim Meyering  <meyering@lucent.com>
28513
28514         * lib/dirfd.h (dirfd): Elide prototype if dirfd is a macro.
28515
28516 2002-04-09  Jim Meyering  <meyering@lucent.com>
28517
28518         * m4/malloc.m4: (jm_FUNC_MALLOC): Change the `checking ...' message
28519         to be more precise.  Rather than saying we're checking whether the
28520         function `works', say what we're testing.
28521         * m4/realloc.m4 (jm_FUNC_REALLOC): Likewise.
28522         Reported by Bruno Haible.
28523
28524 2002-03-10  Jim Meyering  <meyering@lucent.com>
28525
28526         * lib/makepath.c (make_path): Remove a comma from a diagnostic.
28527         Suggestion from Santiago Vila.
28528
28529 2002-03-08  Jim Meyering  <meyering@lucent.com>
28530
28531         * lib/rename.c: Mention that this wrapper is needed also on
28532         mips-dec-ultrix4.4 systems.
28533
28534 2002-03-02  Jim Meyering  <meyering@lucent.com>
28535
28536         * lib/gettime.c (gettime): Test HAVE_CLOCK_GETTIME,
28537         not HAVE_CLOCK_SETTIME.
28538
28539 2002-02-27  Paul Eggert  <eggert@twinsun.com>
28540
28541         * m4/jm-macros.m4 (jm_MACROS): Do not replace stime; no longer used.
28542         Check for clock_settime.
28543
28544 2002-02-27  Paul Eggert  <eggert@twinsun.com>
28545
28546         * lib/nanosleep.h: Rename to....
28547         * lib/timespec.h: New name for nanosleep.h.  All uses changed.
28548
28549         * lib/gettime.c: New file.
28550         * lib/settime.c: New file.
28551         * lib/stime.c: Remove.
28552
28553         * lib/Makefile.am (libfetish_a_SOURCES): Add gettime.c, settime.c,
28554         timespec.h.  Remove nanosleep.h.
28555
28556 2002-02-25  Paul Eggert  <eggert@twinsun.com>
28557
28558         * m4/acl.m4: New file.
28559         * m4/jm-macros.m4 (jm_MACROS): Require AC_FUNC_ACL.
28560         Do not check for acl or sys/acl.h, as AC_FUNC_ACL does that now.
28561
28562 2002-02-25  Paul Eggert  <eggert@twinsun.com>
28563
28564         * lib/acl.c, lib/acl.h: New files.
28565         * lib/Makefile.am (libfetish_a_SOURCES): Add acl.h, acl.c.
28566
28567 2002-02-24  Jim Meyering  <meyering@lucent.com>
28568
28569         * lib/strnlen.c (strnlen): Define-away/undef so that an inconsistent
28570         prototype in string.h (on at least AIX4.3.2.0 w/gcc-2.95.3) doesn't
28571         cause trouble.  Reported by Nelson Beebe.
28572
28573 2002-02-23  Paul Eggert  <eggert@twinsun.com>
28574
28575         * lib/path-concat.c (xpath_concat): Reorder code to pacify
28576         compilers that don't know that xalloc_die never returns.
28577
28578 2002-02-20  Jim Meyering  <meyering@lucent.com>
28579
28580         * lib/getdate.c: Regenerate using bison-1.33.
28581
28582 2002-02-17  Jim Meyering  <meyering@lucent.com>
28583
28584         * config/config.guess (main): Don't use `head -1'; it's no longer
28585         portable. Use `sed 1q' instead.
28586
28587 2002-02-16  gettextize  <bug-gnu-gettext@gnu.org>
28588
28589         * m4/codeset.m4: Upgrade to gettext-0.11.
28590         * m4/gettext.m4: Upgrade to gettext-0.11.
28591         * m4/glibc21.m4: Upgrade to gettext-0.11.
28592         * m4/iconv.m4: Upgrade to gettext-0.11.
28593         * m4/isc-posix.m4: Upgrade to gettext-0.11.
28594         * m4/lcmessage.m4: Upgrade to gettext-0.11.
28595         * m4/lib-ld.m4: New file, from gettext-0.11.
28596         * m4/lib-link.m4: New file, from gettext-0.11.
28597         * m4/lib-prefix.m4: New file, from gettext-0.11.
28598         * m4/progtest.m4: Upgrade to gettext-0.11.
28599
28600 2002-02-15  Paul Eggert  <eggert@twinsun.com>
28601
28602         * m4/prereq.m4 (jm_PREREQ_POSIXVER): New macro.
28603         (jm_PREREQ): Use it.
28604
28605 2002-02-15  Paul Eggert  <eggert@twinsun.com>
28606
28607         * lib/posixver.c, lib/posixver.h: New files.
28608         * lib/Makefile.am (libfetish_a_SOURCES): Add them.
28609
28610 2002-02-02  Paul Eggert  <eggert@twinsun.com>
28611             Bruno Haible  <bruno@clisp.org>
28612
28613         * lib/unicodeio.h (print_unicode_char): Add exit_on_error argument.
28614         (fwrite_success_callback): New declaration.
28615         * lib/unicodeio.c (unicode_to_mb): New function, extracted from
28616         print_unicode_char. Call failure callback instead of error.
28617         (fwrite_success_callback): New function.
28618         (exit_failure_callback): New function.
28619         (fallback_failure_callback): New function.
28620         (print_unicode_char): Call unicode_to_mb.
28621
28622 2002-01-26  Jim Meyering  <meyering@lucent.com>
28623
28624         * m4/jm-macros.m4 (jm_MACROS): Require autoconf-2.52g.
28625         * m4/strnlen.m4: Remove file, now that it's part of autoconf.
28626
28627 2002-01-26  Jim Meyering  <meyering@lucent.com>
28628
28629         * lib/Makefile.am (getdate$U.o): Depend on unlocked-io.h.
28630
28631 2002-01-22  Paul Eggert  <eggert@twinsun.com>
28632
28633         * m4/jm-macros.m4 (jm_MACROS): Require AC_FUNC_FSEEKO.
28634
28635 2002-01-22  Jim Meyering  <meyering@lucent.com>
28636
28637         * lib/Makefile.am (Makefile): Don't depend on $(BUILT_SOURCES).
28638         Otherwise, some versions of automake would omit the rule that makes
28639         Makefile from Makefile.in.
28640
28641 2002-01-21  Paul Eggert  <eggert@twinsun.com>
28642
28643         * lib/xmemcoll.h, lib/xmemcoll.c: New files.
28644         * lib/Makefile.am (libfetish_a_SOURCES): Add them.
28645         * lib/memcoll.c: Include errno.h, and declare errno if not defined.
28646         (memcoll): Set errno to zero if there is no error.
28647
28648         * lib/quotearg.c (quotearg_buffer_restyled):
28649         Fix bug with quoting buffers containing NUL when backslashing escapes.
28650         This bug was exposed by the other changes in this patch.
28651         (quotearg_n_options): New arg ARGSIZE.
28652         All callers changed.
28653         (quoting_options_from_style): New function.
28654         (quotearg_n_style): Use it.
28655         (quotearg_n_style_mem): New function.
28656
28657         * lib/quotearg.h (quotearg_n_style_mem): New function.
28658
28659 2002-01-19  Jim Meyering  <meyering@lucent.com>
28660
28661         * m4/jm-macros.m4 (jm_MACROS): Use AC_FUNC_STRNLEN.
28662         Remove useless quotes: DF_PROG="df".
28663         * m4/strnlen.m4: New file.
28664
28665 2002-01-16  Paul Eggert  <eggert@twinsun.com>
28666
28667         * lib/backupfile.c (ISDIGIT): Comment fix.
28668         * lib/getdate.y (ISDIGIT): Likewise.
28669         * lib/posixtm.c (ISDIGIT, year): Likewise.
28670         * lib/strverscmp.c (ISDIGIT): Likewise.
28671         * lib/userspec.c (ISDIGIT): Likewise.
28672
28673 2002-01-16  Jim Meyering  <meyering@lucent.com>
28674
28675         * lib/getdate.y: Add three semicolons, each just before a closing
28676         brace. Bison (as of version 1.31) no longer papers over that mistake.
28677
28678 2002-01-05  Jim Meyering  <meyering@lucent.com>
28679
28680         * lib/version-etc.c (version_etc_copyright): Update copyright year.
28681
28682 2001-12-19  Paul Eggert  <eggert@twinsun.com>
28683
28684         * lib/closeout.c (close_stdout_status): If ferror (stdout), do
28685         not silently exit merely because the output buffer happens to
28686         have nothing pending.
28687
28688 2001-12-18  Paul Eggert  <eggert@twinsun.com>
28689
28690         See the big note in ../ChangeLog.
28691         * lib/human.c (suffixes): Prefer K to k for 1024.
28692         (generate_suffix_backwards): New function.
28693         (human_readable_inexact): Use it.
28694         * lib/xstrtol.c (__xstrtol): If there is no number but there
28695         is a valid suffix, assume 1.  "MB" now means decimal, "MiB" binary.
28696         Accept 'K' as well as 'k'.
28697
28698 2001-12-15  Jim Meyering  <meyering@lucent.com>
28699
28700         * lib/regex.h (__restrict_arr): Update from libc.
28701
28702         * lib/mountlist.h (ME_REMOTE): Recognize file systems of type smbfs
28703         as `remote' if the name starts with `//'.  Suggested by Michael Stone.
28704         (STREQ): Define.
28705
28706 2001-12-14  Jim Meyering  <meyering@lucent.com>
28707
28708         * m4/jm-macros.m4 (jm_MACROS): Check for iswspace.
28709         Suggestion from Bruno Haible.
28710
28711 2001-12-10  Jim Meyering  <meyering@lucent.com>
28712
28713         * lib/linebuffer.c: Remove explicit declarations of xmalloc and
28714         xrealloc, Instead, include "xalloc.h".
28715         (initbuffer): Don't cast xmalloc return value to char*.
28716         (readline): Reword comment.
28717         Don't cast xrealloc return value to char*
28718         Return NULL, not 0.
28719
28720 2001-12-09  Jim Meyering  <meyering@lucent.com>
28721
28722         * lib/modechange.c (mode_compile): Add cast to avoid pedantic warning
28723         about `signed and unsigned type in conditional expression'.
28724         * lib/posixtm.c (posix_time_parse): Likewise.
28725
28726         * lib/xreadlink.c (xreadlink): Add cast to avoid a pedantic warning.
28727
28728         * lib/readtokens.c (readtoken): Declare an index to be of type unsigned
28729         to avoid a pedantic warning.
28730
28731         * lib/getstr.c: Don't include assert.h.
28732         (getstr): Remove warning-evoking assertions.
28733         Return -1 if offset parameter is out of bounds.
28734         Change the type of a local from int to size_t.
28735
28736         * lib/strftime.c (my_strftime_localtime_r): Include this function
28737         definition in the `#if ! HAVE_TM_GMTOFF' block.
28738
28739         * lib/xgethostname.c: Remove declarations of xmalloc and xrealloc.
28740         Include xalloc.h instead.
28741
28742 2001-12-02  Jim Meyering  <meyering@lucent.com>
28743
28744         * lib/tempname.c: Don't declare getenv, thus reverting the change of
28745         2001-11-18.  It's no longer necessary, now that stdlib.h is always
28746         included.
28747
28748         * lib/regex.c [!__BOUNDED_POINTERS__]: Define away __bounded,
28749         __unbounded, and __ptrvalue.  Reported by Uwe H. Steinfeld.
28750
28751 2001-11-30  Akim Demaille  <akim@epita.fr>
28752
28753         * lib/xstrdup.c: Include xalloc.h, so that xstrdup is declared
28754         before being defined.
28755
28756 2001-11-27  Paul Eggert  <eggert@twinsun.com>
28757
28758         * lib/quotearg.h (quotearg_n, quotearg_n_style):
28759         First arg is int, not unsigned.
28760         * lib/quotearg.c (quotearg_n, quotearg_n_style): Likewise.
28761         (SIZE_MAX, UINT_MAX): New macros.
28762         (quotearg_n_options): Abort if N is negative.
28763         Avoid overflow check on hosts where size_t is 64 bits and int
28764         is 32 bits, as overflow is impossible there.
28765         Fix off-by-one typo that caused unnecessary reallocation.
28766
28767 2001-11-27  Jim Meyering  <meyering@lucent.com>
28768
28769         * lib/tempname.c: Merge with version from libc.
28770         * lib/regex.c: Likewise.
28771
28772         * lib/tempname.c: Include stdlib.h unconditionally.  On some old
28773         systems for which STDC_HEADERS is 0, it was not included, resulting in
28774         a warning about an integer-to-pointer conversion problem with getenv.
28775         Reported by Volker Borchert.
28776
28777 2001-11-26  Jim Meyering  <meyering@lucent.com>
28778
28779         * lib/gtod.h: Remove file.
28780         * lib/Makefile.am (libfetish_a_SOURCES): Remove gtod.h.
28781         * lib/gettimeofday.c: Don't include gtod.h.
28782         (GTOD_init): Remove function.
28783         (rpl_gettimeofday): Do its job here instead, rather than aborting.
28784         Suggestion from Volker Borchert.
28785
28786 2001-11-23  Jim Meyering  <meyering@lucent.com>
28787
28788         * lib/hash.h (struct hash_table): Don't define here.  Merely declare
28789         it.
28790         * lib/hash.c (struct hash_table): Define it here instead.
28791
28792 2001-11-22  Jim Meyering  <meyering@lucent.com>
28793
28794         * lib/hash.h: Bracket contents of file with #ifndef HASH_H_ ... #endif.
28795
28796 2001-11-20  Jim Meyering  <meyering@lucent.com>
28797
28798         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Update comment to reflect that
28799         SunOS 4.1.4 and Solaris 2.5.1 lose, too.
28800
28801 2001-11-19  Jim Meyering  <meyering@lucent.com>
28802
28803         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Don't bother with a temporary
28804         directory.  Use "conftestXXXXXX" as the template.
28805         Suggestion from Paul Eggert.
28806
28807         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Close each descriptor
28808         immediately, so the test doesn't mistakenly hit the max-open-files
28809         limit.
28810
28811 2001-11-18  Paul Eggert  <eggert@twinsun.com>
28812
28813         * lib/tempname.c (TMP_MAX): Remove; no longer needed.
28814         (TEMPORARIES): New macro.
28815         (__gen_tempname): Use TEMPORARIES rather than TMP_MAX.  This
28816         removes an artificial limitation (e.g. HP-UX 10.20, where
28817         TMP_MAX is 17576).
28818
28819 2001-11-18  Jim Meyering  <meyering@lucent.com>
28820
28821         * m4/prereq.m4 (jm_PREREQ_TEMPNAME): Check for declaration of getenv.
28822
28823 2001-11-18  Jim Meyering  <meyering@lucent.com>
28824
28825         * lib/tempname.c [!HAVE_DECL_GETENV]: Declare getenv to avoid warning
28826         on SunOS 4.
28827
28828         * lib/Makefile.am (Makefile): Depend on $(BUILT_SOURCES), so those
28829         files will be created before anything else.
28830
28831 2001-11-17  Paul Eggert  <eggert@twinsun.com>
28832
28833         * m4/jm-winsz1.m4 (jm_WINSIZE_IN_PTEM): Do not define
28834         WINSIZE_IN_PTEM if <termios.h> defines struct winsize.
28835
28836 2001-11-17  Jim Meyering  <meyering@lucent.com>
28837
28838         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): New file and macro.
28839         Prompted by a report from Bob Proulx.
28840
28841         * m4/jm-macros.m4 (jm_MACROS): Don't test for mkstemp here.
28842         Instead, require UTILS_FUNC_MKSTEMP.
28843
28844 2001-11-17  Jim Meyering  <meyering@lucent.com>
28845
28846         * m4/jm-macros.m4 (jm_MACROS): Remove code to set POW_LIBM.
28847         Now, that's done as part of AC_FUNC_STRTOD.
28848
28849 2001-11-17  Jim Meyering  <meyering@lucent.com>
28850
28851         * lib/modechange.c (mode_adjust): Fix error introduced on 1999-04-26
28852         that made e.g., `chmod a=,o=w,g=o F' cause F to be group readable
28853         rather than group writable.  Patch by Juan F. Codagnone.
28854
28855         * lib/readtokens.c: Remove explicit declarations of xmalloc and
28856         xrealloc, Instead, include "xalloc.h".
28857
28858         * lib/mountlist.c: Include unlocked-io.h after all system headers.
28859         Remove explicit declarations of xmalloc, xrealloc,
28860         and xstrdup.  Instead, include "xalloc.h".
28861
28862         * lib/argmatch.c, closeout.c, error.c, exclude.c: Include
28863         unlocked-io.h.
28864         * lib/fatal.c, getdate.y, getpass.c, getstr.c, getusershell.c:
28865         Likewise.
28866         * lib/mountlist.c, posixtm.c, readtokens.c, readutmp.c: Likewise.
28867
28868         * lib/regex.c, sha.c, version-etc.c, yesno.c: Likewise.
28869         Reported by Padraig Brady.
28870
28871         * lib/mkstemp.c: #undef mkstemp.
28872         Include config.h.
28873         (rpl_mkstemp): Rename from mkstemp.
28874         Protoize.
28875
28876 2001-11-16  Jim Meyering  <meyering@lucent.com>
28877
28878         * lib/physmem.c [HAVE_SYS_PSTAT_H]: Include <sys/pstat.h>.
28879         (physmem_total) [HAVE_PSTAT_GETSTATIC]: If sysconf couldn't be used to
28880         determine the amount of total physical memory, use pstat_getstatic.
28881         HPUX-11 doesn't define _SC_PHYS_PAGES.
28882         (physmem_available) [HAVE_PSTAT_GETSTATIC && HAVE_PSTAT_GETDYNAMIC]:
28883         If sysconf couldn't be used to determine the amount of available
28884         physical memory, use both pstat_getstatic and pstat_getdynamic.
28885         Based on a patch from Bob Proulx.
28886
28887 2001-11-10  Jim Meyering  <meyering@lucent.com>
28888
28889         * m4/prereq.m4 (jm_PREREQ_PHYSMEM): New function.
28890         (jm_PREREQ): Use it.
28891
28892 2001-11-09  Jim Meyering  <meyering@lucent.com>
28893
28894         * m4/jm-macros.m4: Require autoconf-2.52f.
28895         (AC_FUNC_ERROR_AT_LINE, AC_FUNC_OBSTACK, AC_FUNC_STRTOD):
28896         Use these AC_-prefixed names, not the AM_-prefixed ones.
28897
28898         * m4/afs.m4 (jm_AFS): Quote the body.  Patch by Akim Demaille.
28899
28900 2001-11-05  Jim Meyering  <meyering@lucent.com>
28901
28902         * lib/xstat.in (slash_aware_lstat): Correct a misleading comment.
28903
28904 2001-11-04  Jim Meyering  <meyering@lucent.com>
28905
28906         * m4/fpending.m4: Remove unused cruft that saved, set, and restored
28907         $DEFS.
28908
28909 2001-11-03  Jim Meyering  <meyering@lucent.com>
28910
28911         * m4/jm-glibc-io.m4n (jm_FUNC_GLIBC_UNLOCKED_IO): Quote first arg
28912         of AC_DEFUN.
28913
28914         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Rework so dirfd.c doesn't have to
28915         know the name of the variable in the macro definition.
28916
28917 2001-11-03  Jim Meyering  <meyering@lucent.com>
28918
28919         * lib/argmatch.h (ARGMATCH_TO_ARGUMENT): Remove casts of first two args
28920         in argmatch_to_argument call.
28921
28922         * lib/dirfd.c (dirfd): Reflect the fact that DIR_TO_FD now takes an
28923         argument.
28924
28925         * lib/hash.c (hash_clear): Fix a bug that could lead to an infloop or
28926         e.g., a fault due to an attempt to free a NULL pointer.
28927
28928 2001-11-01  Jim Meyering  <meyering@lucent.com>
28929
28930         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): New macro.
28931         * m4/jm-macros.m4 (jm_MACROS): Require UTILS_FUNC_DIRFD.
28932
28933 2001-11-01  Jim Meyering  <meyering@lucent.com>
28934
28935         * lib/dirfd.c, lib/dirfd.h: New files.
28936         * lib/Makefile.am (libfetish_a_SOURCES): Add dirfd.h.
28937
28938         * lib/hash.c (hash_print) [TESTING]: Clean up.
28939
28940 2001-10-22  Paul Eggert  <eggert@twinsun.com>
28941
28942         * lib/hard-locale.c (alloca): Define to __builtin_alloca if __GNUC__,
28943         to avoid a warning if -Wall.
28944
28945 2001-10-22  Jeff Bailey  <jbailey@outpost.dnsalias.org>
28946
28947         * README: New file
28948         * doc/*: Add COPYING, COPYING.LIB, COPYING.DOC, fdl.texi
28949         (per RMS's instructions, this is now the canonical source)
28950         * lgpl/, gpl/: New directories.
28951
28952 2001-10-21  Paul Eggert  <eggert@twinsun.com>
28953
28954         * lib/regex.c (uintptr_t): Remove macro and decl; it's config.h's job.
28955
28956 2001-10-21  Jim Meyering  <meyering@lucent.com>
28957
28958         * lib/obstack.c (_): Honor the setting of ENABLE_NLS.  Otherwise,
28959         this code would end up calling gettext even in packages built
28960         with --disable-nls.
28961         * lib/getopt.c (_): Likewise.
28962         * lib/regex.c (_): Likewise.
28963
28964 2001-10-20  Paul Eggert  <eggert@twinsun.com>
28965
28966         * m4/error.m4 (jm_PREREQ_ERROR):
28967         Do not invoke AC_CHECK_FUNCS with strerror_r, as
28968         AC_FUNC_STRERROR_R does that.
28969         Check for strerror declaration.
28970
28971         * m4/strerror_r.m4: Add copyright notice, as nontrivial m4 files
28972         are supposed to have them these days.
28973         (AC_FUNC_STRERROR_R): Always do char* test, so that it gets cached.
28974         Merge changes from latest Autoconf CVS.
28975         Rename ac_cv_func_strerror_r_works to ac_cv_func_strerror_r_char_p,
28976         and rename HAVE_WORKING_STRERROR_R to STRERROR_R_CHAR_P, since
28977         POSIX decided to standardize on the int flavor of strerror_r.
28978
28979 2001-10-20  Paul Eggert  <eggert@twinsun.com>
28980
28981         * lib/error.c (strerror_r): Do not declare unless !_LIBC.
28982         Do not check for HAVE_DECL_STRERROR_R missing unless STRERROR_R_CHAR_P.
28983         Use strerror_r that is only a macro, even if it is not a function.
28984         (strerror): Check for HAVE_DECL_STRERROR before declaring.
28985         (private_strerror): Use prototypes, not old-style function definition.
28986         (print_errno_message): New function.
28987         Support the POSIX 'int'-flavored strerror_r, as well as the traditional
28988         char*-flavored one.
28989         (error_tail, error, error_at_line): Use it.
28990
28991 2001-10-11  Jim Meyering  <meyering@lucent.com>
28992
28993         * lib/argmatch.c (argmatch_invalid): Use quotearg_n_style (0, ...
28994         and quote_n (1, ... to avoid clobbering a buffer.
28995
28996 2001-10-05  Jim Meyering  <meyering@lucent.com>
28997
28998         * lib/Makefile.am: (libfetish_a_SOURCES): Add hash-pjw.c and
28999         hash-pjw.h.
29000         * lib/hash-pjw.c: New file (factored out of fileutils' remove.c).
29001         * lib/hash-pjw.h: New file.
29002
29003 2001-09-30  Jim Meyering  <meyering@lucent.com>
29004
29005         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): See if
29006         `struct fsstat' has the `f_fstypename' member.
29007         Use that to define FS_TYPE, which is now used to make
29008         the getfsstat link test tighter.
29009
29010 2001-09-30  Jim Meyering  <meyering@lucent.com>
29011
29012         * lib/mountlist.c [MOUNTED_GETFSSTAT]:
29013         Include <sys/ucred.h>, for Apple Darwin.
29014         Include sys/mount.h and sys/fs_types.h only if available.
29015         (FS_TYPE): Define.
29016         (read_filesystem_list): Use FS_TYPE.
29017
29018 2001-09-29  Paul Eggert  <eggert@twinsun.com>
29019
29020         * lib/exclude.c (excluded_filename): 0 -> false, since it's
29021         a boolean context.
29022
29023 2001-09-29  Jim Meyering  <meyering@lucent.com>
29024
29025         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS)
29026         [one-argument getmntent function]): Include stdio.h before mntent.h.
29027         SunOS 4.1.x needs it for the declaration of `FILE'.
29028         Patch by Volker Borchert.
29029
29030         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS)
29031         Check for these headers: sys/param.h sys/ucred.h sys/mount.h
29032         sys/fs_types.h, and make the link-test for getfsstat guard #include
29033         directives with appropriate #if HAVE_*_H tests so that we can
29034         detect getfsstat on Apple Darwin1.3.7 systems.
29035         Reported by Nelson Beebe.
29036         Fix harmless typo in cache variable name: s/getsstat/getfsstat/.
29037
29038 2001-09-28  Paul Eggert  <eggert@twinsun.com>
29039
29040         Fix bug reported by Petter Reinholdtsen for HP-UX 10.20, which
29041         #defines strtoimax.  Also treat the other strto* functions
29042         like strtoimax.
29043
29044         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX):
29045         Check for strtoul and strtoumax,
29046         as those declarations are made even in the signed case.
29047         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX):
29048         Likewise, for strtol and strtoimax.
29049
29050 2001-09-28  Paul Eggert  <eggert@twinsun.com>
29051
29052         Fix bug reported by Petter Reinholdtsen for HP-UX 10.20, which
29053         #defines strtoimax.  Also treat the other strto* functions
29054         like strtoimax.
29055
29056         * lib/xstrtol.c (strtol): Do not declare if HAVE_DECL_STRTOL.
29057         (strtoul): Do not declare if HAVE_DECL_STRTOUL.
29058         (strtoimax, strtoumax): Do not declare if already defined as a macro.
29059
29060 2001-09-26  Jim Meyering  <meyering@lucent.com>
29061
29062         Most macros in unlocked-io.h had the wrong number of arguments.
29063         * lib/gen-uio: New script.
29064         (USE_UNLOCKED_IO): Define to 1 if not already defined.
29065         * lib/unlocked-io.hin: Remove file.
29066         * lib/Makefile.am (unlocked-io.h): Rewrite to use a separate script,
29067         rather than trying to embed it here.
29068         (EXTRA_DIST): Add gen-uio.  Remove unlocked-io.hin
29069         Reported by Padraig Brady.
29070
29071 2001-09-25  Volker Borchert  <bt@teknon.de>
29072
29073         * lib/gettimeofday.c (rpl_gettimeofday): Declare local variable
29074         `result'.
29075
29076 2001-09-24  Jim Meyering  <meyering@lucent.com>
29077
29078         * m4/gettext.m4: Use the version from gettext-0.10.40, not CVS.
29079
29080 2001-09-23  Jim Meyering  <meyering@lucent.com>
29081
29082         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Add a compile-test
29083         instead of the mere test for existence of mntent.h.  The latter
29084         would get a false-positive on AIX 3.4 systems.
29085         In the outer getmntent if-block, don't die if neither of the getmntent
29086         tests succeeds.  Instead, just fall through and continue with the
29087         remaining tests.
29088
29089 2001-09-23  Jim Meyering  <meyering@lucent.com>
29090
29091         * lib/mountlist.c: Remove useless parentheses in #if directives.
29092         (MOUNTED) [!defined MOUNTED]: Define to _PATH_MOUNTED, for when
29093         the deprecated MOUNTED symbol is no longer defined in mntent.h.
29094
29095 2001-09-22  Jim Meyering  <meyering@lucent.com>
29096
29097         * m4/gettext.m4: New file.  From gettext.
29098         * m4/lcmessage.m4: Sync with gettext -- this changes only comments.
29099         * m4/progtest.m4: Likewise
29100         * m4/isc-posix.m4: Decrement serial number to sync with gettext.
29101         * m4/glibc21.m4: Likewise.
29102
29103         * m4/libintl.m4: Remove.  No longer used.
29104
29105 2001-09-22  Jim Meyering  <meyering@lucent.com>
29106
29107         * lib/localcharset.c: Update from latest gettext.
29108         * lib/config.charset: Likewise.
29109
29110 2001-09-20  Jim Meyering  <meyering@lucent.com>
29111
29112         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX): Check for declaration of
29113         strtoimax.
29114         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Check for declaration of
29115         strtoumax.
29116
29117 2001-09-20  Jim Meyering  <meyering@lucent.com>
29118
29119         * lib/xstrtol.c (strtoimax): Guard declaration with
29120         `#if !HAVE_DECL_STRTOIMAX', rather than just `#ifndef strtoimax'.
29121         The latter fails because some systems (at least rs6000-ibm-aix4.3.3.0)
29122         have their own, conflicting declaration of strtoimax in sys/inttypes.h.
29123         (strtoumax): Likewise, for completeness (it wasn't necessary).
29124
29125 2001-09-17  Paul Eggert  <eggert@twinsun.com>
29126
29127         * lib/strtoimax.c (HAVE_LONG_LONG):
29128         Redefine to HAVE_UNSIGNED_LONG_LONG if unsigned.
29129         (strtoimax): Use sizeof (long), not sizeof strtol (ptr, endptr, base),
29130         to work around bug in IBM C compiler.
29131
29132 2001-09-17  Jim Meyering  <meyering@lucent.com>
29133
29134         * m4/chown.m4, fstypename.m4, getgroups.m4, gettimeofday.m4,
29135         * m4/jm-mktime.m4, lstat.m4, malloc.m4, memcmp.m4, mkdir-slash.m4,
29136         * m4/nanosleep.m4, putenv.m4, readdir.m4, realloc.m4, rename.m4,
29137         * m4/st_dm_mode.m4, stat.m4, strerror_r.m4, timespec.m4, utimbuf.m4,
29138         * m4/utimes.m4: Use AC_DEFINE rather than AC_DEFINE_UNQUOTED,
29139         whenever the right hand side need not be expanded by the shell.
29140
29141 2001-09-16  Paul Eggert  <eggert@twinsun.com>
29142
29143         * m4/fnmatch.m4 (jm_FUNC_FNMATCH): Remove test for GNU C
29144         library.  It's not correct, as some older glibcs are buggy.
29145         fnmatch wasn't fixed until glibc 2.2.
29146
29147         Use AC_DEFINE, not AC_DEFINE_UNQUOTED, as there's no
29148         special shell magic here.
29149
29150 2001-09-16  Jim Meyering  <meyering@lucent.com>
29151
29152         * m4/mkdir-slash.m4 (UTILS_FUNC_MKDIR_TRAILING_SLASH): New file/macro.
29153         * m4/jm-macros.m4: Require it.
29154
29155 2001-09-16  Jim Meyering  <meyering@lucent.com>
29156
29157         * lib/mkdir.c: New file.
29158
29159 2001-09-15  Jim Meyering  <meyering@lucent.com>
29160
29161         * m4/jm-macros.m4: Check for help2man.
29162
29163 2001-09-11  Jim Meyering  <meyering@lucent.com>
29164
29165         * m4/host-os.m4 (UTILS_HOST_OS): New file/macro.
29166         The body, by Paul Eggert, was moved here from configure.in.
29167         * m4/jm-macros.m4: Require UTILS_HOST_OS.
29168
29169 2001-09-04  Paul Eggert  <eggert@twinsun.com>
29170
29171         * m4/prereq.m4 (jm_PREREQ_XREADLINK): New macro.
29172         (jm_PREREQ): Use it.
29173
29174 2001-09-04  Paul Eggert  <eggert@twinsun.com>
29175
29176         * lib/xreadlink.c (xreadlink): Omit size_t* arg.  All uses changed.
29177         Use ssize_t, not int, to store result of readlink.
29178         Check for ssize_t overflow as well as size_t overflow,
29179         as POSIX says the result of readlink is implementation-defined
29180         when ssize_t overflows.
29181         Remove unnecessary cast to char*.
29182         Use free+malloc instead of realloc, as the storage doesn't need
29183         to be preserved and it's clearer and can be more efficient that way.
29184         (SIZE_MAX, SSIZE_MAX): New macros, if <limits.h> doesn't declare.
29185         * lib/xreadlink.h (xreadlink): Update prototype.
29186
29187 2001-09-04  Paul Eggert  <eggert@twinsun.com>
29188
29189         * lib/xgetcwd.c: Revert some of the previous change; intead,
29190         fix the HAVE_GETCWD_NULL code to behave more like the
29191         !HAVE_GETCWD_NULL code used to.
29192
29193         Include "xalloc.h".
29194         (xgetcwd): Do not return NULL when memory is exhausted; instead,
29195         invoke xalloc_die.
29196
29197 2001-09-03  Paul Eggert  <eggert@twinsun.com>
29198
29199         * m4/prereq.m4 (jm_PREREQ_XGETCWD): Check for limits.h and
29200         sys/param.h, as pathmax.h includes them.
29201
29202 2001-09-03  Paul Eggert  <eggert@twinsun.com>
29203
29204         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_XGETCWD.
29205         (jm_PREREQ_XGETCWD): New macro.
29206
29207         * m4/getcwd.m4: New file.
29208
29209 2001-09-03  Paul Eggert  <eggert@twinsun.com>
29210
29211         * lib/xgetcwd.c: Fix the !HAVE_GETCWD_NULL code to behave more
29212         like the HAVE_GETCWD_NULL code.
29213         Include pathmax.h if not HAVE_GETCWD.
29214         Do not include xalloc.h.
29215         (INITIAL_BUFFER_SIZE): New symbol.
29216         Do not use xmalloc / xrealloc, since the caller is responsible for
29217         handling errors.  Preserve errno around `free' during failure.
29218         Do not overrun buffer when using getwd.
29219
29220 2001-09-03  Paul Eggert  <eggert@twinsun.com>
29221
29222         * lib/xgetcwd.c (xgetcwd): Use HAVE_GETCWD_NULL, not (defined
29223         __GLIBC__ && __GLIBC__ >= 2), to decide whether to use
29224         getcwd (NULL, 0).
29225
29226 2001-09-03  Paul Eggert  <eggert@twinsun.com>
29227
29228         * lib/exclude.c (fnmatch_no_wildcards): Fix confusion between
29229         usage of FNM_CASEFOLD and FNM_LEADING_DIR.  The bug was
29230         spotted by Jim Meyering.
29231
29232 2001-09-03  Jim Meyering  <meyering@lucent.com>
29233
29234         * lib/xreadlink.c (xreadlink): Preserve errno around `free' during
29235         failure.
29236
29237 2001-09-02  Jim Meyering  <meyering@lucent.com>
29238
29239         * lib/error.c: Update from GNU libc.
29240
29241 2001-09-01  Jim Meyering  <meyering@lucent.com>
29242
29243         * m4/jm-macros.m4 (jm_MACROS): Check for canonicalize_file_name.
29244         Used by df.
29245
29246 2001-09-01  Jim Meyering  <meyering@lucent.com>
29247
29248         * lib/xreadlink.c: New file.
29249         * lib/xreadlink.h: New file.
29250         * lib/Makefile.am (libfetish_a_SOURCES): Add xreadlink.c and
29251         xreadlink.h.
29252
29253         * lib/regex.c (uintptr_t) [!_LIBC]: Define to private_uintptr_t, so it
29254         doesn't conflict with sparc Solaris 7's definition in
29255         /usr/include/sys/int_types.h.
29256
29257         * lib/exclude.c: Use `""', not `<>' to #include non-system header
29258         files.
29259         (fnmatch_no_wildcards): Rewrite not to use function names, strcasecmp
29260         and strncasecmp as r-values.  Unixware didn't have declarations.
29261
29262 2001-08-31  Paul Eggert  <eggert@twinsun.com>
29263
29264         * lib/xstrtol.h: Add copyright notice.
29265         (_DECLARE_XSTRTOL): Improve quality of diagnostic for
29266         LONGINT_INVALID_SUFFIX_CHAR.
29267
29268 2001-08-31  Paul Eggert  <eggert@twinsun.com>
29269
29270         * lib/xstrtol.c (strtoimax): New decl.
29271
29272 2001-08-31  Paul Eggert  <eggert@twinsun.com>
29273
29274         * lib/xgetcwd.c: Don't include pathmax.h.
29275         Include stdlib.h and unistd.h if available.
29276         Include xalloc.h.
29277         (xmalloc, xstrdup, free): Remove decls.
29278         (xgetcwd): Don't assume sizes fit in unsigned.
29279         Check for overflow when computing sizes.
29280         Simplify reallocation code.
29281
29282 2001-08-31  Paul Eggert  <eggert@twinsun.com>
29283
29284         * lib/savedir.c (savedir): Remove size parameter, as POSIX says that
29285         a directory's st_size can have an arbitrary value, so the old
29286         usage could waste an arbitrary amount of memory.  All uses
29287         changed.
29288         * lib/savedir.h: Update prototype.
29289
29290 2001-08-31  Paul Eggert  <eggert@twinsun.com>
29291
29292         * lib/Makefile.am (libfetish_a_SOURCES): Remove strtoxmax.c.
29293
29294         * lib/strtoimax.c: Renamed from strtoxmax.c, removing the
29295         old strtoimax.c.
29296
29297         Also, make the following further changes to make this file's
29298         configuration more similar to that of strtol.c:
29299         (UNSIGNED): Renamed from STRTOUXMAX_UNSIGNED.  All uses changed.
29300         (strtoumax, uintmax_t, strtoull, strtol): Remove.
29301         (intmax_t, strtoimax, strtol, strtoll): New macros, if UNSIGNED.
29302         (strtoimax): Renamed from strtoumax.  All uses of unsigned values
29303         changed to signed values.
29304
29305         And make the following changes as well:
29306         Fix copyright notice, as 1999 was missing.
29307         (verify): New macro.
29308         (strtoimax): Check sizes at compile-time, not run-time.
29309         Prefer strtol to strtoll if both work.
29310         (main): Remove; it was not that useful and was a pain to maintain.
29311
29312         * lib/strtoumax.c: Include strtoimax.c, not strtouxmax.c.
29313
29314 2001-08-31  Jim Meyering  <meyering@lucent.com>
29315
29316         * lib/xgetcwd.c (xgetcwd): Reorganize to avoid some duplication.
29317         Use an initial, malloc'd, buffer of length 128 rather than
29318         a statically allocated one of length 1024.
29319
29320 2001-08-30  Paul Eggert  <eggert@twinsun.com>
29321
29322         Simplify code, partly by assuming autoconf 2.52 semantics.
29323
29324         * m4/Makefile.am (EXTRA_DIST): Remove uintmax_t.m4.
29325
29326         * m4/inttypes.m4 (AC_PREREQ): Bump to 2.52.
29327         (jm_AC_HEADER_INTTYPES_H): Remove; now done by autoconf in 2.52.
29328         All uses removed.
29329         (jm_AC_TYPE_INTMAX_T, jm_AC_TYPE_UINTMAX_T):
29330         Move AC_REQUIRE to next-to-top level, to avoid confusion.
29331         Use 2.52's AC_CHECK_TYPE instead of merely looking for the header.
29332         * m4/prereq.m4 (jm_PREREQ_HUMAN): Don't require
29333         jm_AC_HEADER_INTTYPES_H.
29334         * m4/jm-macros.m4 (jm_MACROS): Likewise.
29335
29336         * m4/uintmax_t.m4: Remove, as it duplicates inttypes.m4.
29337
29338         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX):
29339         Quote first arg of AC_DEFUN.
29340         Require jm_AC_TYPE_UINTMAX_T and jm_AC_TYPE_UNSIGNED_LONG_LONG
29341         since they are needed to parse the include file even if we need
29342         only xstrtoimax.  Simplify logic behind the args to AC_REPLACE.
29343         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Likewise,
29344         but with opposite signedness.
29345
29346 2001-08-30  Paul Eggert  <eggert@twinsun.com>
29347
29348         Merge 'exclude' changes from tar 1.13.22.
29349         This fixes one or two unlikely storage allocation overflow bugs,
29350         but doesn't change user-visible behavior otherwise.
29351
29352 2001-08-30  Paul Eggert  <eggert@twinsun.com>
29353
29354         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_EXCLUDE.
29355         (jm_PREREQ_EXCLUDE): New macro.
29356
29357 2001-08-30  Paul Eggert  <eggert@twinsun.com>
29358
29359         * lib/quotearg.c: BSD/OS 4.1 wchar.h requires FILE and struct
29360         tm to be declared.
29361
29362 2001-08-30  Paul Eggert  <eggert@twinsun.com>
29363
29364         * lib/hash.c: Remove '2001' from copyright notice.
29365
29366 2001-08-30  Paul Eggert  <eggert@twinsun.com>
29367
29368         * lib/full-write.h: New file.
29369         * lib/Makefile.am (libfetish_a_SOURCES): Add full-write.h.
29370         * lib/full-write.c: Correct credits, as cccp.c no longer
29371         exists and anyway it was so heavily changed from the old cccp
29372         code as to be unrecognizable.  Include full-write.h.
29373         (full_write) Return size_t, with short writes meaning failure.
29374         All callers changed.  This fixes a bug with large buffers
29375         on 64-bit hosts.
29376         * lib/utime.c: Include full-write.h.
29377
29378 2001-08-30  Paul Eggert  <eggert@twinsun.com>
29379
29380         * lib/exclude.c (bool): Declare, perhaps by including stdbool.h.
29381         (<sys/types.h>): Include only if HAVE_SYS_TYPES_H.
29382         (<stdlib.h>, <string.h>, <strings.h>, <inttypes.h>, <stdint.h>):
29383         Include if available.
29384         (<xalloc.h>): Include
29385         (SIZE_MAX): Define if <stdint.h> or <inttypes.h> doesn't.
29386         (verify): New macro.  Use it to verify that EXCLUDE macros do not
29387         collide with FNM macros.
29388         (struct patopts): New struct.
29389         (struct exclude): Use it, as exclude patterns now come with options.
29390         (new_exclude): Support above changes.
29391         (new_exclude, add_exclude_file):
29392         Initial size must now be a power of two to simplify overflow checking.
29393         (free_exclude, fnmatch_no_wildcards): New function.
29394         (excluded_filename): No longer requires options arg, as the options
29395         are determined by add_exclude.  Now returns bool, not int.
29396         (excluded_filename, add_exclude):
29397         Add support for the fancy new exclusion options.
29398         (add_exclude, add_exclude_file): Now takes int options arg.
29399         Check for arithmetic overflow when computing sizes.
29400         (add_exclude_file): xrealloc might modify errno, so don't
29401         realloc until after errno might be used.
29402
29403         * lib/exclude.h (EXCLUDE_ANCHORED, EXCLUDE_INCLUDE,EXCLUDE_WILDCARDS):
29404         New macros.
29405         (free_exclude): New decl.
29406         (add_exclude, add_exclude_file): Now takes int options arg.
29407         (excluded_filename): No longer requires options arg, as the options
29408         are determined by add_exclude.  Now returns bool, not int.
29409
29410 2001-08-30  Paul Eggert  <eggert@twinsun.com>
29411
29412         * lib/alloca.c (alloca): Arg is of type size_t, not unsigned.
29413
29414 2001-08-27  Jim Meyering  <meyering@lucent.com>
29415
29416         * lib/Makefile.am (libfetish_a_SOURCES): Add strtoxmax.c
29417
29418         * lib/version-etc.c (N_): Remove definition.
29419         Revert most of last change.
29420         Instead, simply don't mark the `Copyright...' string for translation.
29421         Based on advice from Paul Eggert.
29422
29423         * lib/strtoxmax.c: Tweak comment.
29424
29425 2001-08-26  Jim Meyering  <meyering@lucent.com>
29426
29427         * m4/jm-macros.m4: Require jm_AC_PREREQ_XSTRTOIMAX.
29428
29429         * m4/xstrtoimax.m4: New file.
29430         * m4/xstrtoumax.m4: Add comments explaining why we
29431         AC_REPLACE_FUNCS(strtol).
29432
29433 2001-08-26  Jim Meyering  <meyering@lucent.com>
29434
29435         * lib/version-etc.c (version_etc_copyright_fmt): Replace literal year
29436         of copyright with `%s' so translators don't get an untranslated
29437         message in 2002.
29438         (COPYRIGHT_YEAR): Define.
29439         (version_etc): Use fprintf rather than fputs.
29440         Suggestion from Ulrich Drepper.
29441
29442         * lib/Makefile.am (libfetish_a_SOURCES): Add xstrtoimax.c.
29443
29444         * lib/strtoll.c: New file, from GNU libc.
29445         * lib/xstrtoimax.c: New file.
29446
29447         * lib/xstrtol.h: Add xstrtoimax.
29448         * lib/strtoumax.c: New file.  Simply include "strtoumax.c".
29449         * lib/strtoimax.c: New file.  Likewise, but first define
29450         STRTOUXMAX_SIGNED.
29451
29452         * lib/strtoumax.c: Factor to work both for unsigned and signed types,
29453         ...
29454         * lib/strtoxmax.c: ... then renamed to this.
29455
29456 2001-08-18  Paul Eggert  <eggert@twinsun.com>
29457
29458         * m4/inttypes.m4: Add AC_PREREQ(2.13).
29459         (jm_AC_HEADER_INTTYPES_H): Test for intmax_t, too.
29460         (jm_AC_TYPE_INTMAX_T): New macro.
29461         (jm_AC_TYPE_UINTMAX_T): Moved here from uintmax_t.m4.
29462
29463         * m4/longlong.m4 (jm_AC_TYPE_LONG_LONG): New macro.
29464
29465         * m4/longlong.m4: Renamed from ulonglong.m4.
29466         * m4/inttypes.m4: Renamed from inttypes_h.m4.
29467         * m4/uintmax_t.m4: Removed.
29468
29469 2001-08-13  Paul Eggert  <eggert@twinsun.com>
29470
29471         * lib/Makefile.am (unlocked-io.h): Do not append "_unlocked" twice.
29472         Port to Solaris 8, where 'sed' requires a space after the 'r'
29473         command, and where sh dislikes "$/".  Clean up the spacing a bit.
29474         Redirect output to $tmp just once.
29475
29476 2001-08-12  Paul Eggert  <eggert@sic.twinsun.com>
29477
29478         * lib/addext.c (<errno.h>): Include.
29479         (errno): Declare if not defined.
29480         (addext): Work correctly when pathconf returns -1 and leaves
29481         errno alone because there is no limit.  Also, work even if
29482         pathconf returns a value greater than SIZE_MAX.
29483
29484 2001-08-12  Jim Meyering  <meyering@lucent.com>
29485
29486         * m4/afs.m4, assert.m4, bison.m4, check-decl.m4, chown.m4, d-ino.m4,
29487         d-type.m4, dos.m4, error.m4, fnmatch.m4, fpending.m4, fstypename.m4,
29488         fsusage.m4, ftruncate.m4, getgroups.m4, glibc.m4, gnu-source.m4,
29489         group-member.m4, jm-glibc-io.m4, jm-macros.m4, jm-mktime.m4,
29490         jm-winsz1.m4, jm-winsz2.m4, lchown.m4, lib-check.m4, libintl.m4,
29491         link-follow.m4, ls-mntd-fs.m4, lstat.m4, malloc.m4, mbrtowc.m4,
29492         mbstate_t.m4, mbswidth.m4, memcmp.m4, nanosleep.m4, perl.m4,
29493         prereq.m4, putenv.m4, readdir.m4, realloc.m4, regex.m4, rename.m4,
29494         rmdir-errno.m4, search-libs.m4, st_dm_mode.m4, st_mtim.m4, stat.m4,
29495         strftime.m4, timespec.m4, unlink-busy.m4, uptime.m4, utimbuf.m4,
29496         utime.m4, utimes.m4, xstrtoumax.m4:
29497         Quote the first argument in each use of AC_DEFUN.
29498
29499 2001-08-12  Jim Meyering  <meyering@lucent.com>
29500
29501         * lib/xgetcwd.c (xgetcwd) [defined __GLIBC__ && __GLIBC__ >= 2]:
29502         Simply `return getcwd (NULL, 0);'.
29503         [! (defined __GLIBC__ && __GLIBC__ >= 2)]:
29504         Use 1300 as initial value for length, not PATH_MAX.
29505
29506         * lib/pathmax.h: Clean up cpp syntax.
29507
29508 2001-08-12  Jim Meyering  <meyering@lucent.com>
29509
29510         * lib/gettimeofday.c: New file.
29511         * lib/gtod.h: New file.
29512         * lib/Makefile.am (libfetish_a_SOURCES): Add gtod.h.
29513
29514 2001-08-05  Jim Meyering  <meyering@lucent.com>
29515
29516         * m4/jm-macros.m4: Require autoconf-2.52.
29517
29518 2001-08-04  Jim Meyering  <meyering@lucent.com>
29519
29520         * lib/error.h (__attribute__): Remove `|| __STRICT_ANSI__' from #if
29521         stmt, to get in sync with glibc.
29522
29523 2001-08-03  Paul Eggert  <eggert@twinsun.com>
29524
29525         The following changes are from gettext 0.10.39 as maintained by
29526         Bruno Haible.
29527
29528         * lib/mbswidth.h (MBSW_REJECT_UNPRINTABLE, MBSW_REJECT_INVALID):
29529         Renamed from MBSW_ACCEPT_UNPRINTABLE and MBSW_ACCEPT_INVALID
29530         with inverted sense.  All uses changed.
29531
29532         * lib/mbswidth.c: Don't include <limits.h>.
29533         Include <stdlib.h> and <string.h> unconditionally.
29534         (iswcntrl, mbsinit, ISCNTRL): New macros.
29535         (mbsnwidth): Use K&R style function declarations.
29536         Don't bother checking for MB_LEN_MAX == 1, since the compiler
29537         can optimize it when MB_CUR_MAX == 1.
29538         The width of control characters is zero, not 1.
29539
29540 2001-08-03  Paul Eggert  <eggert@twinsun.com>
29541
29542         The following changes are from gettext 0.10.39 as maintained by
29543         Bruno Haible, except that getline.m4 continues to use AC_LIBOBJ.
29544
29545         * m4/codeset.m4: Upgrade to serial AM1.
29546         (AM_LANGINFO_CODESET): Renamed from jm_LANGINFO_CODESET;
29547         all uses changed.  Quote first arg of AC_DEFUN.
29548         (am_cv_langinfo_codeset): Renamed from jm_cv_langinfo_codeset.
29549
29550         * m4/iconv.m4: Upgrade to serial AM2.
29551         (AM_ICONV): Renamed from jm_ICONV; all uses changed.
29552         Add --with-libconv-prefix.
29553         Quote first arg of AC_DEFUN.  Add description for ICONV_CONST.
29554         (am_cv_func_iconv): Renamed from jm_cv_func_iconv.
29555         (am_cv_lib_iconv): Renamed from jm_cv_lib_iconv.
29556         (am_cv_proto_iconv): Renamed from jm_cv_proto_iconv.
29557         * m4/jm-macros.m4 (jm_MACROS): Reflect s/jm_/AM_/ renamings.
29558
29559         * m4/c-bs-a.m4 (AC_C_BACKSLASH_A): Quote first arg of AC_DEFUN.
29560         * m4/getline.m4 (AM_FUNC_GETLINE): Likewise.
29561         * m4/glibc21.m4 (jm_GLIBC21): Likewise.
29562         * m4/inttypes_h.m4 (jm_AC_HEADER_INTTYPES_H): Likewise.
29563         * m4/isc-posix.m4 (AC_ISC_POSIX): Likewise.
29564         * m4/lcmessage.m4 (AM_LC_MESSAGES): Likewise.
29565         * m4/progtest.m4 (AM_PATH_PROG_WITH_TEST): Likewise.
29566         * m4/uintmax_t.m4 (jm_AC_TYPE_UINTMAX_T): Likewise.
29567         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Likewise.
29568
29569         * m4/getline.m4 (AM_FUNC_GETLINE): Don't bother checking for
29570         string.h any more.
29571
29572         * m4/progtest.m4 (AM_PATH_PROG_WITH_TEST): If not found, print "no",
29573         not the default value.
29574
29575         2001-06-25  Bruno Haible  <haible@clisp.cons.org>
29576         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Don't require AM_C_PROTOTYPES.
29577         Also check for mbsinit.  Needed for SCO 3.2v5.0.2.
29578         Also include <string.h>; this is where AIX 3.2.5 declares wcwidth.
29579         Also check for iswcntrl, used for wcwidth fallback.
29580         Use AC_TRY_COMPILE to emulate AC_CHECK_DECLS, for portability
29581         to Autoconf 2.13.
29582
29583 2001-08-03  Jim Meyering  <meyering@lucent.com>
29584
29585         * m4/mbrtowc.m4 (jm_FUNC_MBRTOWC): Use `#include', not `@%:@include',
29586         as it was in the original.  Reported by Paul Eggert.
29587
29588 2001-07-16  Jim Meyering  <meyering@lucent.com>
29589
29590         * m4/gettimeofday.m4: New file.
29591         Prompted by a report from Bernhard Baehr.
29592
29593 2001-07-15  Jim Meyering  <meyering@lucent.com>
29594
29595         * m4/Makefile.am.in (Makefile.am): Remove most of the unlocked-io.h
29596         stuff. Now it's in ../Makefile.cfg.
29597
29598 2001-07-15  Jim Meyering  <meyering@lucent.com>
29599
29600         * lib/Makefile.am (EXTRA_DIST): Add unlocked-io.hin.
29601         (BUILT_SOURCES): Add unlocked-io.h.
29602         (io_functions): Define.
29603         (unlocked-io.h): New rule.
29604         (DISTCLEANFILES): Add unlocked-io.h.
29605         (all-local): Depend on unlocked-io.h, to ensure it is created.
29606
29607         * lib/unlocked-io.hin: New file
29608
29609         * lib/regex.c: Update from glibc.
29610
29611 2001-07-05  Jim Meyering  <meyering@lucent.com>
29612
29613         * lib/Makefile.am (noinst_HEADERS): Remove definition, per new automake
29614         recommendation.
29615         (libfetish_a_SOURCES): Put all .h files here instead.
29616         Remove a thus-exposed (better checks in automake) duplicate and
29617         two unnecessary .h files.
29618
29619 2001-07-04  Jim Meyering  <meyering@lucent.com>
29620
29621         * m4/Makefile.am.in (glibc-io.struct): New target.  Rework the code
29622         that generates jm-glibc-io.m4 so that it doesn't trigger any make
29623         distcheck failure.
29624
29625 2001-07-02  Jim Meyering  <meyering@lucent.com>
29626
29627         The following changes were prompted by suggestions from Bruno Haible.
29628
29629         * m4/jm-glibc-io.m4n: New file, the template from which jm-glibc-io.m4
29630         is now generated.
29631         * m4/Makefile.am.in (Makefile.am): Include jm-glibc-io.m4n in emitted
29632         definition of EXTRA_DIST.
29633         (Makefile.am): Emit the dependency, `all-local: jm-glibc-io.m4' to
29634         ensure that the generated file is created/updated whenever the list
29635         of $(unlocked_functions) is changed.
29636         (jm-glibc-io.m4): New rule.
29637         (unlocked-io.h): New rule -- currently unused.
29638
29639 2001-06-24  Jim Meyering  <meyering@lucent.com>
29640
29641         * m4/regex.m4 (jm_INCLUDED_REGEX): Use a quadrigraph to represent an
29642         unmatched right bracket, rather than kludging it with an extra,
29643         falsely-matching quote in a comment.  Patch by Akim Demaille.
29644
29645 2001-06-11  Jim Meyering  <meyering@lucent.com>
29646
29647         * lib/regex.c: Update from GNU libc.
29648
29649 2001-05-27  Jim Meyering  <meyering@lucent.com>
29650
29651         * m4/prereq.m4 (jm_PREREQ_READUTMP): Check for ut_type in struct utmpx.
29652         Check for ut_type in struct utmp.
29653
29654 2001-05-27  Jim Meyering  <meyering@lucent.com>
29655
29656         * lib/readutmp.h (UT_TYPE): Define.
29657
29658 2001-05-24  Jim Meyering  <meyering@lucent.com>
29659
29660         * lib/argmatch.c: Include "quote.h".
29661         (argmatch_invalid): Remove explicit `' quotes.  Instead, use the
29662         quote function.  Reported by Göran Uddeborg.
29663
29664 2001-05-22  Jim Meyering  <meyering@lucent.com>
29665
29666         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't use AC_LIBOBJ(strftime),
29667         now that we use the package-supplied version unconditionally.
29668         (jm_FUNC_STRFTIME): Don't replace strftime, for the same reason.
29669
29670 2001-05-21  Jim Meyering  <meyering@lucent.com>
29671
29672         * m4/regex.m4: Change a couple backticks to single quotes to avoid
29673         shell syntax errors.
29674
29675 2001-05-21  Alexandre Duret-Lutz  <duret_g@epita.fr>
29676
29677         * m4/dos.m4 (jm_AC_DOS): Check for _WIN32, __WIN32__, and __MSDOS__.
29678
29679 2001-05-20  Paul Eggert  <eggert@twinsun.com>
29680
29681         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME):
29682         Don't bother to check library strftime, since
29683         we'll be using our own my_strftime function anyway.
29684         Define my_strftime instead of strftime.
29685
29686 2001-05-20  Alexandre Duret-Lutz  <duret_g@epita.fr>
29687
29688         * lib/dirname.c (dir_name): Compute append_dot using path, not newpath
29689         which is not yet declared.
29690
29691 2001-05-15  Jim Meyering  <meyering@lucent.com>
29692
29693         * m4/regex.m4: Use proper quoting so brackets appear in the test
29694         program.
29695         Reported by, and with help from, Bruno Haible.
29696
29697 2001-05-13  Jim Meyering  <meyering@lucent.com>
29698
29699         * m4/jm-macros.m4 (major_t, minor_t): Define to unsigned int if
29700         undefined.
29701
29702 2001-05-11  Paul Eggert  <eggert@twinsun.com>
29703
29704         dirname code cleanup.  base_name now behaves more compatibly
29705         with POSIX basename when given file names that have trailing
29706         slashes, and similarly for dir_name.  Add new primitives
29707         base_len and dir_len.  Put the directory-name-related decls
29708         into dirname.h.
29709
29710         * lib/addext.c (ISSLASH, base_name): Remove; now in dirname.h.
29711         * lib/backupfile.c (base_name): Likewise.
29712         * lib/basename.c (FILESYSTEM_PREFIX_LEN, PARAMS, ISSLASH): Likewise.
29713         * lib/dirname.c (FILESYSTEM_PREFIX_LEN, ISSLASH): Likewise.
29714         * lib/makepath.c (strip_trailing_slashes): Likewise.
29715         * lib/path-concat.c (DIRECTORY_SEPARATOR, FILESYSTEM_PREFIX_LEN,
29716         ISSLASH): Likewise.
29717         * lib/rename.c (strip_trailing_slashes): Likewise.
29718         * lib/same.c (base_name): Likewise.
29719         * lib/stripslash.c (ISSLASH): Likewise.
29720
29721         * lib/addext.c: Include <dirname.h> after size_t is defined.
29722         * lib/backupfile.c: Likewise.
29723
29724         * lib/addext.c (addext): Use base_len to trim redundant
29725         trailing slashes instead of doing it ourselves.
29726         But do not trim the last slash if it is not redundant.
29727
29728         * lib/backupfile.c (find_backup_file_name,
29729         max_backup_version): Use base_len instead of rolling it ourselves.
29730         Handle the case of "" and (on DOS) "C:" correctly.
29731
29732         * lib/basename.c: Do not include <stdio.h>, <assert.h>; no longer
29733         needed. Include <string.h>, <dirname.h>.
29734         (base_name): Allow file names ending in slashes, other than names
29735         that are all slashes.  In this case, return the basename followed
29736         by the slashes.  This is more general, and can be used in places
29737         where the original base_name purposely had an assertion failure.
29738         (base_len): New function.
29739
29740         * lib/dirname.c: Include <string.h> instead of <stdlib.h>.
29741         Do not include <assert.h>; no longer needed.
29742         Include xalloc.h.
29743         (memrchr): Remove decl.
29744         (dir_name_r): Remove.
29745         (dir_len): Renamed from dirlen.  All callers changed.
29746         Rewrite in terms of base_name, for simplicity and consistency.
29747         (dir_name): Never return NULL.  All callers changed.
29748         Do not include <stdlib.h> in test program; no longer needed.
29749         return 0; is fine for test program.
29750
29751         * lib/dirname.h (DIRECTORY_SEPARATOR, ISSLASH, FILESYSTEM_PREFIX_LEN):
29752         New macros.
29753         (base_name, base_len, dir_len, strip_trailing_slashes): New decls.
29754
29755         * lib/path-concat.c (path_concat): Use base_len to compute
29756         base length, not strlen; this means we cannot rely on memcpy
29757         to null-terminate.
29758
29759         * lib/same.c (STREQ): Remove.
29760         (same_name): Handle the case where the basename ends in trailing '/'.
29761
29762         * lib/stripslash.c (strip_trailing_slashes): Return nonzero if
29763         a slash was stripped.  Do not strip the last slash after a
29764         file system prefix.
29765
29766 2001-05-11  Paul Eggert  <eggert@twinsun.com>
29767
29768         * lib/Makefile.am (libfetish_a_SOURCES):
29769         Add strftime.c, since we now compile it on all hosts.
29770
29771         * lib/strftime.c (my_strftime):
29772         Define to nstrftime if emacs, but only if my_strftime is not defined.
29773         (extra_args, extra_args_spec, extra_args_spec_iso): Rename from
29774         ut_argument, ut_argument_spec, ut_argument_spec_iso, respectively.
29775         Add one more extra argument: a nanoseconds value.
29776         All uses changed.
29777         (ns): New macro.
29778         (my_strftime function): Add %N format.
29779         (emacs_strftimeu): Renamed from emacs_strftime,
29780         with extra ut argument.
29781
29782 2001-05-09  Paul Eggert  <eggert@twinsun.com>
29783
29784         * m4/jm-macros.m4 (jm_MACROS): Do not check for fseeko; no longer used.
29785
29786 2001-04-21  Jim Meyering  <meyering@lucent.com>
29787
29788         * m4/rmdir-errno.m4: Write to a new file, so that a restrictive umask
29789         doesn't interfere.
29790
29791 2001-04-21  Alexandre Duret-Lutz  <duret_g@epita.fr>
29792
29793         * m4/ftruncate.m4: Check for chsize.
29794         Link with ftruncate.o unconditionally if ftruncate is missing.
29795         This was required when cross-compiling to i586-mingw32msvc.
29796
29797 2001-04-08  Jim Meyering  <meyering@lucent.com>
29798
29799         * lib/getdate.y (get_date): Set tm_isdst to -1 to ensure that it is
29800         recomputed; that's necessary when the offset spans a DST transition.
29801         Patch by David J. MacKenzie.  Reported by Hon-Yin Kok.
29802
29803 2001-04-02  Jim Meyering  <meyering@lucent.com>
29804
29805         * lib/regex.h, regex.c: Update from GNU libc.
29806
29807 2001-03-24  Jim Meyering  <meyering@lucent.com>
29808
29809         * m4/jm-macros.m4: Require autoconf-2.49d.
29810
29811 2001-03-20  Bruno Haible  <haible@clisp.cons.org>
29812
29813         * m4/iconv.m4 (jm_ICONV): Recommend GNU libiconv.
29814
29815 2001-03-19  Paul Eggert  <eggert@twinsun.com>
29816
29817         * lib/version-etc.c (version_etc_copyright): Update to 2001.
29818
29819 2001-03-17  Jim Meyering  <meyering@lucent.com>
29820
29821         * m4/memcmp.m4 (jm_AC_FUNC_MEMCMP): Remove my copy of AC_FUNC_MEMCMP,
29822         now that the version in autoconf is equivalent.
29823         (jm_FUNC_MEMCMP): Adjust to use AC_FUNC_MEMCMP.
29824
29825         * m4/error.m4 (jm_PREREQ_ERROR): Invoke AC_FUNC_STRERROR_R.
29826         Suggestion from Akim Demaille.
29827
29828         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_TEMPNAME.
29829         (jm_PREREQ_TEMPNAME): New function.
29830
29831 2001-03-16  Paul Eggert  <eggert@twinsun.com>
29832
29833         * lib/tempname.c (uint64_t): Define to uintmax_t if
29834         not defined, and if UINT64_MAX is not defined.
29835         Required at least for Vax Ultrix4.3, which doesn't define uint64_t.
29836         Reported by John David Anglin.
29837
29838 2001-03-15  Bruno Haible  <haible@clisp.cons.org>
29839
29840         * lib/localcharset.c (locale_charset): Allow wildcard syntax. Also
29841         resolve alias if codeset is empty.
29842         * lib/config.charset (BeOS): Use wildcard syntax.
29843
29844 2001-03-13  Jim Meyering  <meyering@lucent.com>
29845
29846         * lib/path-concat.c (path_concat)
29847         [FILESYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX]: Don't insert a backslash when
29848         concatenating e.g., `C:' and `foo'.
29849         From Bruno Haible.
29850
29851 2001-03-06  Bruno Haible  <haible@clisp.cons.org>
29852
29853         * lib/localcharset.c (locale_charset): Don't use
29854         setlocale(LC_CTYPE,NULL). Don't return NULL.
29855         * lib/unicodeio.c (print_unicode_char): Simplify accordingly.
29856
29857 2001-03-06  Bruno Haible  <haible@clisp.cons.org>
29858
29859         * lib/config.charset: Update for FreeBSD 4.2 and OSF/1 5.1. Add
29860         support for DOS/DJGPP.
29861
29862 2001-03-01  Paul Eggert  <eggert@twinsun.com>
29863
29864         * m4/jm-macros.m4 (jm_MACROS): Use mkstemp replacement if the system
29865         lacks mkstemp.  Compile our own tempname.c if we compile our own
29866         mkstemp.c, as mkstemp relies on tempname.
29867
29868 2001-03-01  Jim Meyering  <meyering@lucent.com>
29869
29870         * m4/dos.m4 (jm_AC_DOS): Remove extra backslashes, now that
29871         AH_VERBATIM really does output its argument verbatim.
29872
29873 2001-02-28  Paul Eggert  <eggert@twinsun.com>
29874
29875         * lib/Makefile.am (libfetish_a_SOURCES):
29876         Add dup-safer.c, fopen-safer.c.
29877         (noinst_HEADERS): Add stdio-safer.h, unistd-safer.h.
29878
29879         * lib/dup-safer.c, lib/fopen-safer.c, lib/stdio-safer.h:
29880         * lib/unistd-safer.h: New files.
29881
29882 2001-02-25  Paul Eggert  <eggert@twinsun.com>
29883
29884         The mkstemp replacement is taken from glibc 2.2.2, with some
29885         portability fixes for use outside glibc, as follows:
29886
29887         * lib/tempname.c (struct_stat64): New macro.
29888         (direxists, __gen_tempname): Use it.
29889         This avoids a portability problem with Solaris 8.
29890
29891         * lib/tempname.c (<config.h>): Include if HAVE_CONFIG_H.
29892         (<stddef.h>, <stdint.h>, <string.h>):
29893         Include only if STDC_HEADERS || _LIBC.
29894         (<fcntl.h>): Include only if HAVE_FCNTL_H || _LIBC.
29895         (<unistd.h>): Include only if HAVE_UNISTD_H || _LIBC.
29896         (<sys/time.h>): Include only if HAVE_SYS_TIME_H || _LIBC.
29897         (__set_errno): Define this macro if <errno.h> doesn't.
29898         (P_tmpdir, TMP_MAX, __GT_FILE, __GT_BIGFILE, __GT_DIR, __GT_NOCREATE):
29899         Define these macros if <stdio.h> doesn't.
29900         (S_ISDIR, S_IRUSR, S_IWUSR, S_IXUSR):
29901         Define these macros if <sys/stat.h>
29902         doesn't.  Ignore <sys/stat.h> S_ISDIR if STAT_MACROS_BROKEN.
29903         (stat64, __getpid, __gettimeofday, __mkdir, __open, __open64, lxstat64,
29904         __xstat64): Define if not _LIBC.
29905         (__secure_getenv): Define if ! (HAVE___SECURE_GETENV || _LIBC).
29906         (__gen_tempname): Invoke gettimeofday only if
29907         HAVE_GETTIMEOFDAY || _LIBC;
29908         otherwise, fall back on plain "time".
29909         Use macros like S_IRUSR | S_IWUSR rather than octal values like 0600.
29910
29911         * lib/mkstemp.c (__GT_FILE): Define to zero if not defined.
29912
29913         * lib/mkstemp.c, lib/tempname.c: New files, taken from glibc 2.2.2.
29914
29915 2001-02-18  Paul Eggert  <eggert@twinsun.com>
29916
29917         * m4/jm-macros.m4 (jm_CHECK_ALL_HEADERS): Check for sys/resource.h.
29918
29919 2001-02-17  Paul Eggert  <eggert@twinsun.com>
29920
29921         * m4/mbrtowc.m4: New file, defining jm_FUNC_MBRTOWC.
29922         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH):
29923         Use jm_FUNC_MBRTOWC, not AC_CHECK_FUNCS(mbrtowc).
29924         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Likewise.
29925
29926 2001-02-17  Paul Eggert  <eggert@twinsun.com>
29927
29928         * lib/mbswidth.c, quotearg.c (mbrtowc, mbsinit):
29929         Remove workaround macros for hosts that have mbrtowc but not
29930         mbstate_t, as we now insist on proper declarations for both
29931         before using mbrtowc.
29932
29933 2001-02-17  Jim Meyering  <meyering@lucent.com>
29934
29935         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Don't check for
29936         getmntent via AC_CHECK_FUNCS, since that would get a `no' and disrupt
29937         further attempts by AC_FUNC_GETMNTENT to check with e.g., -lgen on
29938         UnixWare 7.1.1.
29939
29940         * m4/mbrtowc.m4 (jm_FUNC_MBRTOWC): Adapt to use AC_CACHE_CHECK etc.,
29941         rather than AC_CACHE_VAL.
29942
29943 2001-02-17  Jim Meyering  <meyering@lucent.com>
29944
29945         * lib/strtoul.c: Sync from GNU libc.  Use double quotes, not <...>
29946         around included file name.
29947
29948         * lib/strnlen.c (__strnlen): Merge in a change from GNU libc.
29949
29950         * lib/strftime.c: Update from GNU libc (the only changes were to
29951         comments).
29952
29953 2001-02-17  Jim Meyering  <meyering@lucent.com>
29954
29955         * lib/regex.c: Update from libc.
29956
29957 2001-02-17  Bruno Haible  <haible@clisp.cons.org>
29958
29959         * lib/mbswidth.h (mbswidth): Also define as macro, to avoid prototype
29960         clash.
29961
29962 2001-02-16  Paul Eggert  <eggert@twinsun.com>
29963
29964         * lib/alloca.c (malloc): Undef before defining, since stdlib.h
29965         may have defined it.  Needed for Encore Umax-3.0.9.16b systems.
29966         Reported by Mark Hounschell via Paul Eggert.
29967
29968 2001-02-07  Jim Meyering  <meyering@lucent.com>
29969
29970         * m4/regex.m4 (jm_INCLUDED_REGEX): Add a test for the latest bug.
29971
29972 2001-02-05  Jim Meyering  <meyering@lucent.com>
29973
29974         * m4/jm-macros.m4: Require autoconf-2.14d (not yet released), because
29975         it includes the patch required for `large file' support with at least
29976         HP-UX's 10.20 /bin/cc.
29977
29978 2001-02-03  Jim Meyering  <meyering@lucent.com>
29979
29980         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Restore prior use of
29981         AS_IF, now that it works once again (mysteriously).
29982         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Likewise.
29983
29984 2001-01-30  Jim Meyering  <meyering@lucent.com>
29985
29986         Don't use filenames that are 8.3-equivalent to "conftest" on DOS.
29987         * m4/chown.m4: Rename conftestchown to conftest.chown.
29988         * m4/rename.m4: s/conftestdir/conftest.d1/ and
29989         s/conftestdir2/conftest.d2/.
29990         * m4/utimes.m4: s/conftestdata/conftest.data/
29991         Inspired by Pavel Roskin's change in autoconf.
29992
29993 2001-01-30  Bruno Haible  <haible@clisp.cons.org>
29994
29995         * lib/config.charset: Update for FreeBSD 4.2.
29996
29997 2001-01-27  Jim Meyering  <meyering@lucent.com>
29998
29999         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Open-code what was
30000         a use of AS_IF.
30001         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Likewise.
30002
30003 2001-01-26  Jim Meyering  <meyering@lucent.com>
30004
30005         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Check for stddef.h, now that
30006         quotearg.c includes it.
30007
30008 2001-01-26  Jim Meyering  <meyering@lucent.com>
30009
30010         * lib/quotearg.c: Include stddef.h.
30011         * lib/quote.c: Include stddef.h.
30012         Reported by Axel Kittenberger.
30013
30014         * lib/xmalloc.c [HAVE_DONE_WORKING_MALLOC_CHECK]: Enclose error-evoking
30015         line in double quotes so that it evokes a better diagnostic.
30016         [HAVE_DONE_WORKING_REALLOC_CHECK]: Likewise.
30017         Reported by Axel Kittenberger.
30018
30019 2001-01-24  Stefan Monnier  <monnier@cs.yale.edu>
30020
30021         * regex.c (mutually_exclusive_p): Don't blindly handle `charset_not'
30022         as if it was a `charset'.
30023
30024 2001-01-21  Bruno Haible  <haible@clisp.cons.org>
30025
30026         * m4/iconv.m4 (jm_ICONV): Also check whether the iconv declaration
30027         has const.
30028
30029 2001-01-21  Bruno Haible  <haible@clisp.cons.org>
30030
30031         * lib/unicodeio.c (print_unicode_char): Cast the second iconv() arg,
30032         to avoid a warning.  Add back 'const' to inptr.
30033
30034 2001-01-20  Jim Meyering  <meyering@lucent.com>
30035
30036         Be sure that headers are checked before used in code compiled
30037         for the type checks.
30038         * m4/jm-macros.m4 (jm_MACROS): Remove all header checks.
30039         In place of that, invoke jm_CHECK_ALL_TYPES.
30040         (jm_CHECK_ALL_HEADERS): New functions with the above checks.
30041         (jm_CHECK_ALL_TYPES): Require jm_CHECK_ALL_HEADERS.
30042         Alan Iwi reported a build failure on an f300-fujitsu-uxpv4.1_ES;
30043         The check for ssize_t was mistakenly run before the test for unistd.h.
30044
30045         The configure-time check for stdbool.h was missing.
30046         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_HASH.
30047         (jm_PREREQ_HASH): New function.
30048
30049 2001-01-17  Jim Meyering  <meyering@lucent.com>
30050
30051         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Use AS_IF, not AS_IFELSE,
30052         for autoconf-2.49c.
30053         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Likewise.
30054
30055 2001-01-16  Jim Meyering  <meyering@lucent.com>
30056
30057         * lib/basename.c: Include <stdio.h>, needed by assert on SunOS 4.
30058         From Bruno Haible.
30059
30060 2001-01-14  Jim Meyering  <meyering@lucent.com>
30061
30062         * m4/rename.m4: Use temporary directories named conftestdir{,2}, not
30063         foo and bar.  Create conftestdir/ in the script, not in the C code.
30064         Remove directories in the script, not in the C code.
30065         Remove conftestdir{,2} before trying to create the directory.
30066         Make the entire configure script fail if the mkdir fails.
30067
30068 2001-01-14  Jim Meyering  <meyering@lucent.com>
30069
30070         * lib/rename.c: New file.  From Volker Borchert.
30071         Include stdlib.h, string.h or strings.h, and xalloc.h.
30072         Use strip_trailing_slashes rather than open-coding it.
30073
30074 2001-01-03  Paul Eggert  <eggert@twinsun.com>
30075
30076         * lib/strftime.c: Sync with glibc time/strftime.c 1.81.
30077
30078 2001-01-03  Jim Meyering  <meyering@lucent.com>
30079
30080         * lib/unicodeio.c (print_unicode_char): Remove `const' from declaration
30081         of local `inptr' to avoid warning with some system declarations of
30082         iconv.
30083
30084 2001-01-02  Volker Borchert  <bt@teknon.de>
30085
30086         * m4/rename.m4: New file.
30087         * m4/jm-macros.m4 (jm_MACROS): Require vb_FUNC_RENAME.
30088
30089 2001-01-01  Jim Meyering  <meyering@lucent.com>
30090
30091         * m4/prereq.m4 (jm_PREREQ_READUTMP): Include utmp.h (if available),
30092         even on systems with utmpx.h.  It's necessary for the declaration of
30093         utmp's ut_user member.  Reported by Andreas Jaeger.
30094
30095         * m4/check-decl.m4 (jm_CHECK_DECLS): Include grp.h and pwd.h if
30096         available. They are required for the declarations of getgrgid and
30097         getpwuid resp.
30098         (_jm_DECL_HEADERS): Check for grp.h and pwd.h.
30099         Reported by Andreas Jaeger.
30100
30101 2001-01-01  Alexandre Duret-Lutz  <duret_g@epita.fr>
30102
30103         * m4/libintl.m4 (AM_GNU_GETTEXT): Define MKINSTALLDIRS by
30104         expanding the value of $ac_aux_dir, as in AM_MISSING_HAS_RUN,
30105         so `make install' also works in VPATH builds.
30106
30107 2000-12-31  Alexandre Duret-Lutz  <duret_g@epita.fr>
30108
30109         * m4/libintl.m4 (AM_WITH_NLS): When using AC_CONFIG_AUX_DIR,
30110         prepend $(top_srcdir) to the value of MKINSTALLDIRS so that it
30111         can be used in subdirectories.
30112
30113 2000-12-29  Paul Eggert  <eggert@twinsun.com>
30114
30115         * lib/modechange.c: Do not assume that mode_t uses the
30116         traditional octal encoding.  E.g. "chmod 1 FOO" should set
30117         the other-execute bit of FOO even if S_IXOTH != 1.
30118
30119         (SUID, SGID, SVTX, RUSR, WUSR, XUSR, RGRP, WGRP, XGRP, ROTH,
30120         WOTH, XOTH, ALLM): New macros.
30121         (S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR,
30122          S_IRGRP, S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH):
30123         Use them.
30124         (S_ISGID): Fix typo; it was defaulting to the same value as S_ISUID.
30125         (S_IRWXU, S_IRWXG, S_IRWXO): Specify defaults in terms of the above.
30126         (mode_compile):
30127         No need to use uintmax_t; unsigned long is long enough.
30128         Don't bother to get suffix since we don't use it.
30129
30130 2000-12-26  Jim Meyering  <meyering@lucent.com>
30131
30132         * m4/dos.m4 (jm_AC_DOS): Rewrite (though it's still a stub) to work
30133         better with autoheader.
30134
30135 2000-12-24  Jim Meyering  <meyering@lucent.com>
30136
30137         * lib/hash.c (is_prime): Return explicit boolean values.
30138         (hash_get_first): Return NULL to appease Irix5.6's 89.
30139         Reported by Nelson Beebe.
30140
30141 2000-12-19  Bruno Haible  <haible@clisp.cons.org>
30142
30143         * lib/localcharset.c (locale_charset): Add support for Win32.
30144
30145 2000-12-18  Paul Eggert  <eggert@twinsun.com>
30146
30147         * lib/physmem.h, lib/physmem.c: New files.
30148
30149         * lib/Makefile.am (libfetish_a_SOURCES): Add physmem.c.
30150         (noinst_HEADERS): Add physmem.h.
30151
30152         * lib/xstrtol.c (__xstrtol): Add undocumented suffixes 'g' and
30153         't' for compatibility with Solaris 8 sort.
30154
30155 2000-12-18  Bruno Haible  <haible@clisp.cons.org>
30156
30157         * lib/config.charset: Add support for BeOS.
30158
30159 2000-12-17  Jim Meyering  <meyering@lucent.com>
30160
30161         * m4/dos.m4 (jm_AC_DOS): New file and macro.
30162         * m4/jm-macros.m4 (jm_MACROS): Require jm_AC_DOS.
30163
30164 2000-12-16  Jim Meyering  <meyering@lucent.com>
30165
30166         This bug had a serious impact on chown: `chown N:M FILE' (for integer
30167         N and M) would have treated it like `chown N:N FILE'.
30168
30169         * lib/userspec.c (parse_user_spec): Fix typo: s/u/g/.
30170
30171 2000-12-16  Jim Meyering  <meyering@lucent.com>
30172
30173         * lib/getusershell.c [!SHELLS_FILE && __DJGPP__]: Define
30174         SHELLS_FILE to a file name that's useful on djgpp systems.
30175         Include stdlib.h.
30176         (ADDITIONAL_DEFAULT_SHELLS): Define.
30177         (default_shells): Prepend ADDITIONAL_DEFAULT_SHELLS.
30178         Based mostly on a patch from Prashant TR.
30179
30180 2000-12-16  Bruno Haible  <haible@clisp.cons.org>
30181
30182         * lib/config.charset: Add ISO-8859-3, BIG5HKSCS, GB18030, JOHAB,
30183         VISCII, CP874, CP949, CP950, CP1250, CP1253, CP1254, CP1255, CP1256,
30184         CP1257 to the list of canonical encodings. Rename EUC-CN to GB2312.
30185
30186 2000-12-08  Andreas Schwab  <schwab@suse.de>
30187
30188         * lib/mbswidth.c (mbsnwidth): Don't loop endlessly when called with an
30189         invalid mulitbyte sequence and with the MBSW_ACCEPT_INVALID flag set.
30190
30191 2000-12-07  Jim Meyering  <meyering@lucent.com>
30192
30193         * lib/stripslash.c (ISSLASH): Define.
30194         (strip_trailing_slashes): Use ISSLASH rather than comparing against
30195         `/'.
30196         From Prashant TR.
30197
30198         * lib/dirname.c (FILESYSTEM_PREFIX_LEN): Define.
30199         (dir_name_r): Declare this function as static.
30200         [BACKSLASH_IS_PATH_SEPARATOR]: Fix a bug that'd
30201         manifest itself on a name containing a mix of slashes and
30202         backslashes.
30203         Make this function work with names starting with a DOS-style
30204         drive letter and colon prefix.
30205         (dir_name): Append `.' if necessary.
30206         Based mostly on patches from Prashant TR and Eli Zaretskii.
30207
30208         * lib/dirname.h (dir_name_r): Remove prototype.
30209
30210 2000-12-06  Paul Eggert  <eggert@twinsun.com>
30211
30212         * m4/off_t-format.m4: Remove this file.
30213         * m4/jm-macros.m4 (jm_MACROS): Remove jm_SYS_OFF_T_PRINTF_FORMAT.
30214
30215 2000-12-06  Jim Meyering  <meyering@lucent.com>
30216
30217         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): If we need the
30218         replacement strtoull, we may well need the replacement strtoul, too.
30219         Check for declarations of strtoul and strtoull.
30220         Check for strtol.  Mainly as a cue to cause automake to include
30221         strtol.c -- that file is included by each of strtoul.c and strtoull.c.
30222         Check for limits.h -- strtol.c needs it.
30223
30224 2000-12-05  Jim Meyering  <meyering@lucent.com>
30225
30226         * lib/dirname.c (dir_name_r): Add `const' in a few local declarations.
30227
30228 2000-12-04  Jim Meyering  <meyering@lucent.com>
30229
30230         * lib/path-concat.c: [!HAVE_DECL_MALLOC]: Declare malloc.
30231         Also include memory.h, stdlib.h, unistd.h if appropriate.
30232         Reported by Andreas Jaeger (conflicting declaration of malloc).
30233
30234 2000-12-02  Jim Meyering  <meyering@lucent.com>
30235
30236         * m4/off_t-format.m4 (OFF_T_PRINTF_FORMAT_STRING): New file/macro.
30237         * m4/jm-macros.m4 (jm_MACROS): require it.
30238
30239 2000-12-02  Jim Meyering  <meyering@lucent.com>
30240
30241         * lib/closeout.h: Make idempotent, to avoid some obscure warnings.
30242
30243 2000-12-01  Paul Eggert  <eggert@twinsun.com>
30244
30245         * lib/memrchr.c: Include <config.h> before any system include file.
30246
30247 2000-11-30  Jim Meyering  <meyering@lucent.com>
30248
30249         * m4/jm-macros.m4 (jm_MACROS): Check for stdint.h.
30250
30251 2000-11-30  Jim Meyering  <meyering@lucent.com>
30252
30253         * m4/getloadavg.m4: s/ifval/m4_ifval/ to accommodate new autoconf.
30254
30255 2000-11-29  Paul Eggert  <eggert@twinsun.com>
30256
30257         * lib/dirname.c (dir_name_r): Fix typo: int -> size_t.
30258
30259 2000-11-26  Jim Meyering  <meyering@lucent.com>
30260
30261         * lib/memcoll.c: Include sys/types.h.  From Werner Almesberger.
30262
30263 2000-11-22  Paul Eggert  <eggert@twinsun.com>
30264
30265         * lib/strftime.c (my_strftime): Do not invoke mbrlen with a
30266         size of (size_t) -1; it's not portable.
30267
30268 2000-11-17  Jim Meyering  <meyering@lucent.com>
30269
30270         * lib/strstr.c: Update from GNU libc.
30271
30272 2000-11-17  Akim Demaille  <akim@epita.fr>
30273
30274         * lib/obstack.h: Formatting changes.
30275         (obstack_grow, obstack_grow0): Don't cast WHERE at all: that would
30276         prevent type checking.
30277         (obstack_ptr_grow, obstack_ptr_grow_fast): When assigning, don't
30278         cast the value to (void *): assigning a `foo *' to a `void *'
30279         variable is valid.
30280         (obstack_int_grow, obstack_int_grow_fast): Don't cast AINT to int.
30281
30282 2000-11-16  Jim Meyering  <meyering@lucent.com>
30283
30284         * lib/strverscmp.c: Incorporate weak-alias-related changes from glibc.
30285
30286 2000-11-11  Jim Meyering  <meyering@lucent.com>
30287
30288         * lib/error.c: Add a couple #includes, merging from GNU libc version.
30289
30290 2000-11-10  Jim Meyering  <meyering@lucent.com>
30291
30292         * lib/obstack.h: Update from GNU libc.
30293         * lib/obstack.c: Likewise.
30294
30295 2000-11-08  Bruno Haible  <haible@clisp.cons.org>
30296
30297         * m4/jm-macros.m4 (jm_MACROS): Add test for wcrtomb.
30298
30299 2000-11-06  Paul Eggert  <eggert@twinsun.com>
30300
30301         * lib/getusershell.c (setusershell): Use rewind rather than
30302         fseek/fseeko, to avoid configuration hassles with fseeko.
30303         Don't bother opening SHELLS_FILE if shellstream is NULL;
30304         it's not necessary.
30305
30306 2000-11-05  Jim Meyering  <meyering@lucent.com>
30307
30308         * lib/makepath.h (make_dir): Declare.
30309         * lib/makepath.c (make_dir): Remove `static' attribute.
30310         Tweak a comment.
30311
30312 2000-11-04  Jim Meyering  <meyering@lucent.com>
30313
30314         * m4/regex.m4: Use the `m4_' prefix on `syscmd' and `m4_sysval'.
30315
30316 2000-11-04  Alexandre Duret-Lutz  <duret_g@epita.fr>
30317
30318         * lib/hash.c (hash_get_next): Fix a thinko:  when ENTRY is the
30319         last one in a bucket, advance to the next bucket.
30320
30321 2000-11-02  Vesselin Atanasov  <vesselin@bgnet.bg>
30322
30323         * lib/fnmatch.c: Do not comment out all the code if we are using
30324         the GNU C library, because in some cases we are replacing buggy
30325         code in the GNU C library itself.
30326
30327 2000-10-30  Stefan Monnier  <monnier@cs.yale.edu>
30328
30329         * regex.c (re_iswctype, re_wctype_to_bit): Fix braino.
30330         (regex_compile): Catch bogus \(\1\).
30331
30332 2000-10-30  Paul Eggert  <eggert@twinsun.com>
30333
30334         * lib/fnmatch.c (FOLD): Do not assume that characters are unsigned.
30335         (fnmatch): Fix some FNM_FILE_NAME and FNM_LEADING_DIR bugs,
30336         e.g. fnmatch("d*/*1", "d/s/1", FNM_FILE_NAME) incorrectly yielded zero.
30337
30338 2000-10-30  Paul Eggert  <eggert@twinsun.com>
30339
30340         * lib/error.h, getline.h, modechange.h:
30341         Remove "2000" from Copyright line, as the file hasn't been
30342         changed this year other than in the copyright notice.
30343
30344         * lib/xalloc.h: Add "2000" to Copyright line, as this file
30345         was changed this year.
30346
30347 2000-10-29  Jim Meyering  <meyering@lucent.com>
30348
30349         * m4/fsusage.m4: s/AC_SHELL_IFELSE/AS_IFELSE/ to match autoconf
30350         renaming.
30351         * m4/ls-mntd-fs.m4: Likewise
30352
30353 2000-10-29  Jim Meyering  <meyering@lucent.com>
30354
30355         * lib/xstat.in: Fix grammar in comment.
30356
30357 2000-10-29  Greg Louis  <glouis@dynamicro.on.ca>
30358
30359         * lib/regex.h (__restrict_arr): Move definition out of #ifndef block.
30360         Required because egcs-2.91.66 (aka 1.1.2) defines __restrict, but
30361         doesn't define __restrict_arr.
30362
30363 2000-10-28  Jim Meyering  <meyering@lucent.com>
30364
30365         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_MEMCHR.
30366         (jm_PREREQ_MEMCHR): New function.
30367
30368 2000-10-28  Jim Meyering  <meyering@lucent.com>
30369
30370         * lib/memchr.c: Update from libc.
30371         Adjust for portability:
30372         [HAVE_STDLIB_H]: Include stdlib.h.
30373         [HAVE_BP_SYM_H || _LIBC]: Guard inclusion of bp-sym.h.
30374         Undef __memchr, too.
30375         [!weak_alias]: Define __memchr to memchr.
30376
30377         * lib/regex.c: Update from libc.
30378         * lib/regex.h: Likewise.
30379         * lib/getopt1.c: Likewise.
30380         * lib/memcmp.c: Likewise.
30381
30382         * lib/getusershell.c (setusershell) [HAVE_FSEEKO]: Use fseeko.
30383         Avoid using fseek, when possible -- it's broken by design.
30384         Patch by Ulrich Drepper.
30385
30386 2000-10-27  Stefan Monnier  <monnier@cs.yale.edu>
30387
30388         * regex.c (POP_FAILURE_REG_OR_COUNT, re_match_2_internal)
30389         (re_match_2_internal, re_match_2_internal, re_match_2_internal):
30390         Giving in to popular pressure to shut up the compiler with casts.
30391
30392 2000-10-26  Jim Meyering  <meyering@lucent.com>
30393
30394         * lib/strftime.c: Update from libc.
30395
30396 2000-10-25  Stefan Monnier  <monnier@cs.yale.edu>
30397
30398         * regex.c: More `unsigned char' -> `re_char' changes.
30399         Also change several `int' into `re_wchar_t'.
30400         (PATTERN_STACK_EMPTY, PUSH_PATTERN_OP, POP_PATTERN_OP): Remove.
30401         (PUSH_FAILURE_POINTER): Don't cast any more.
30402         (POP_FAILURE_REG_OR_COUNT): Remove the cast that strips `const'.
30403         We want GCC to complain, since this piece of code makes
30404         re_match non-reentrant, which *should* be fixed.
30405         (GET_BUFFER_SPACE): Use size_t rather than unsigned long.
30406         (EXTEND_BUFFER): Use RETALLOC.
30407         (SET_LIST_BIT): Don't cast.
30408         (re_wchar_t): New type.
30409         (re_iswctype, re_wctype_to_bit): Make it crystal clear to GCC
30410         that those two functions will always properly return.
30411         (IMMEDIATE_QUIT_CHECK): Cast to void.
30412         (analyse_first): Use recursion rather than an explicit stack.
30413         (re_compile_fastmap): Can't fail anymore.
30414         (re_search_2): Don't check re_compile_fastmap for failure.
30415         (PUSH_NUMBER): Renamed from PUSH_FAILURE_COUNT.
30416         Now also sets the new value (passed in a new argument).
30417         (re_match_2_internal): Use it.
30418         Also, use a new var `reg' of type size_t when looping through regs
30419         rather than reuse the inappropriate `mcnt'.
30420
30421 2000-10-25  Jim Meyering  <meyering@lucent.com>
30422
30423         * lib/obstack.c: Update from libc.
30424
30425 2000-10-24  Kenichi Handa  <handa@etl.go.jp>
30426
30427         * regex.c (regex_compile): Change the way of handling a range from
30428         a char less than 256 to a char not less than 256.
30429
30430 2000-10-24  Andrew Innes  <andrewi@gnu.org>
30431
30432         * regex.c (IMMEDIATE_QUIT_CHECK): New macro, which does QUIT on
30433         NT-Emacs only.
30434         (re_match_2_internal): Use IMMEDIATE_QUIT_CHECK instead of QUIT,
30435         so that re_search functions only quit when callers expect them to.
30436
30437 2000-10-23  Jim Meyering  <meyering@lucent.com>
30438
30439         * lib/hard-locale.c (hard_locale): Revert last change -- it was simply
30440         wrong.  That set_locale call must not have any side effects.
30441         From Paul Eggert.
30442
30443 2000-10-22  Jim Meyering  <meyering@lucent.com>
30444
30445         * lib/md5.c (md5_process_block) [OP]: Use `rol', not CYCLIC.
30446         [CYCLIC]: Remove now-unused definition.
30447
30448         * lib/save-cwd.c (O_DIRECTORY): Define, if needed.
30449         (save_cwd) [HAVE_FCHDIR]: Use O_DIRECTORY when opening ".".
30450         Suggestion from Ulrich Drepper.
30451
30452 2000-10-21  Jim Meyering  <meyering@lucent.com>
30453
30454         * m4/check-decl.m4 (jm_CHECK_DECLS): Also check for memrchr.
30455         * m4/prereq.m4 (jm_PREREQ_DIRNAME): New macro.
30456         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memrchr.
30457
30458 2000-10-21  Jim Meyering  <meyering@lucent.com>
30459
30460         * lib/dirname.c (memrchr): Declare if necessary.
30461         (dir_name): Remove the restriction that there be no
30462         trailing slashes.  Now, this code skips past them, effectively
30463         ignoring them.
30464         [TEST_DIRNAME] (main): New unit tests.
30465
30466         * lib/memrchr.c: New file from GNU libc.
30467         Undef __memrchr, too.
30468         [!weak_alias]: Define __memrchr to memrchr.
30469         Guard weak_alias use with `#ifdef weak_alias'.
30470
30471 2000-10-21  Jim Meyering  <meyering@lucent.com>
30472
30473         * lib/dirname.c (dir_name_r): New function, factored out of dir_name.
30474         (dir_name): Use dir_name_r.
30475         * lib/dirname.h (dir_name_r): Declare it.
30476
30477 2000-10-17  Jim Meyering  <meyering@lucent.com>
30478
30479         * lib/quote.h (PARAMS): Define and use.
30480         Reported by Akim Demaille.
30481
30482         * lib/getopt.c: Update from libc.
30483
30484 2000-10-16  Jim Meyering  <meyering@lucent.com>
30485
30486         * lib/hard-locale.c (hard_locale): Use "", not 0 as 2nd arg to
30487         setlocale.
30488         From Jan Fedak.
30489
30490 2000-10-15  Stefan Monnier  <monnier@cs.yale.edu>
30491
30492         * regex.c (WIDE_CHAR_SUPPORT): Define if _LIBC as well.
30493
30494 2000-09-25  Jim Meyering  <meyering@lucent.com>
30495
30496         * lib/md5.h (rol): Define (from GnuPG).
30497
30498         * lib/sha.c: Give credit (GnuPG) where due.
30499         (M): Use rol rather than open-coding it.
30500         Add a FIXME comment.
30501
30502 2000-09-21  Jim Meyering  <meyering@lucent.com>
30503
30504         * lib/userspec.c (parse_user_spec): Remove debugging printf I'd added.
30505         Reported by Michael Stone.
30506
30507 2000-09-20  Jim Meyering  <meyering@lucent.com>
30508
30509         * lib/Makefile.am (libfetish_a_SOURCES): Add sha.c.
30510         (noinst_HEADERS): Add sha.h.
30511         Based on code from Scott G. Miller and from GnuPG.
30512
30513 2000-09-18  Jim Meyering  <meyering@lucent.com>
30514
30515         * m4/getloadavg.m4 (AC_FUNC_GETLOADAVG): Restore the initial value of
30516         LIBS. Otherwise, everyone ends up linking with -lelf for some
30517         configurations.
30518         Reported by Mike Stone.
30519
30520 2000-09-15  Jim Meyering  <meyering@lucent.com>
30521
30522         * lib/regex.c: Update from libc.
30523
30524 2000-09-10  Jim Meyering  <meyering@lucent.com>
30525
30526         * lib/getopt.c (_getopt_internal): Update from glibc.
30527
30528 2000-09-09  Jim Meyering  <meyering@lucent.com>
30529
30530         * lib/quotearg.c: Rename ISASCII to IN_CTYPE_DOMAIN, so people don't
30531         think it should be used as a general replacement for isascii.
30532         * lib/fnmatch.c: Likewise.
30533         * lib/mbswidth.c: Likewise
30534         * lib/regex.c: Likewise.
30535
30536         Don't use atoi.
30537         * lib/userspec.c: Include sys/param.h and limits.h.
30538         Include xstrtol.h.
30539         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Define.
30540         (UID_T_MAX, GID_T_MAX, MAXUID, MAXGID): Define.
30541         (parse_user_spec): Use xstrtoul, not atoi when converting numeric
30542         UID, GID.  Check range.
30543
30544 2000-09-06  Jim Meyering  <meyering@lucent.com>
30545
30546         * lib/getopt.c (_getopt_internal): Update from glibc.
30547
30548 2000-08-30  Jim Meyering  <meyering@lucent.com>
30549
30550         * lib/strftime.c: Merge in changes from GNU libc.
30551
30552 2000-08-26  Jim Meyering  <meyering@lucent.com>
30553
30554         * m4/jm-macros.m4: Use jm_FUNC_FPENDING.
30555         * m4/fpending.m4: New file.
30556
30557 2000-08-26  Jim Meyering  <meyering@lucent.com>
30558
30559         * lib/closeout.c: Include "__fpending.h".
30560         (close_stdout_status): Return right away if there's nothing to flush.
30561
30562         * lib/Makefile.am (noinst_HEADERS): Add __fpending.h.
30563         * lib/__fpending.c: New file.
30564         * lib/__fpending.h: New file.
30565
30566 2000-08-20  Jim Meyering  <meyering@lucent.com>
30567
30568         * m4/check-decl.m4: Include utmp.h `#if HAVE_UTMP_H', rather than
30569         `#if !HAVE_UTMPX_H'.  The latter would lose on systems with neither
30570         utmp.h nor utmpx.h.  Reported by Eli Zaretskii.
30571
30572 2000-08-11  J. David Anglin  <dave@hiauly1.hia.nrc.ca>
30573
30574         Improve fileutils installation on systems where running
30575         programs (like install) can't be unlinked.
30576         * m4/unlink-busy.m4 (jm_FUNC_UNLINK_BUSY_TEXT): New file/macro.
30577         * m4/jm-macros.m4: Use jm_FUNC_UNLINK_BUSY_TEXT.
30578
30579 2000-08-07  Paul Eggert  <eggert@twinsun.com>
30580
30581         Standardize on "memory exhausted" instead of "Memory exhausted"
30582         or "virtual memory exhausted".
30583         * lib/obstack.c (print_and_abort): Use "memory exhausted", not
30584         "virtual memory exhausted".
30585         * lib/same.c (same_name): Invoke xalloc_die instead of printing
30586         our own message.
30587         * lib/userspec.c (parse_user_spec): Likewise.
30588         * lib/bumpalloc.h: comment fix
30589         * lib/same.c, userspec.c: Include xalloc.h.
30590
30591         * lib/xalloc.h (xalloc_msg_memory_exhausted): Now char const[],
30592         not char *const and pointing to a constant array.
30593         * lib/xmalloc.c (xalloc_msg_memory_exhausted): Likewise.
30594         (xrealloc): Comment fix.
30595
30596         * lib/userspec.c (parse_user_spec):
30597         Don't translate a message until just before returning,
30598         to avoid unnecessary translation.
30599
30600 2000-08-07  Jim Meyering  <meyering@lucent.com>
30601
30602         * lib/addext.c, argmatch.c, argmatch.h, backupfile.h, bumpalloc.h,
30603         chown.c, diacrit.h, dirname.h, dup2.c, exclude.h, fileblocks.c,
30604         fnmatch.c, fnmatch.h, fsusage.c, fsusage.h, getdate.h,
30605         getgroups.c, gethostname.c, getopt.h, group-member.c,
30606         hard-locale.c, hash.h, isdir.c, lchown.c, linebuffer.c,
30607         linebuffer.h, long-options.h, malloc.c, md5.c, md5.h, memchr.c,
30608         memcmp.c, memcoll.c, memset.c, mktime.c, modechange.h, obstack.h,
30609         pathmax.h, realloc.c, rmdir.c, safe-read.c, save-cwd.c, stime.c,
30610         stpcpy.c, strcasecmp.c, strcspn.c, strdup.c, stripslash.c,
30611         strstr.c, strtod.c, strtol.c, strtoul.c, strtoull.c, strtoumax.c,
30612         utime.c, version-etc.h, xalloc.h, xstrdup.c, xstrtoumax.c,
30613         yesno.c: Back out Copyright date changes for each file with no change
30614         this year.  This eases coordination with other programs using the same
30615         source code modules.  From Paul Eggert.
30616
30617 2000-08-06  Paul Eggert  <eggert@twinsun.com>
30618
30619         * m4/mbstate_t.m4 (AC_MBSTATE_T): Define mbstate_t to be int,
30620         not char, for compatibility with glibc 2.1.3 strftime.c.
30621
30622 2000-08-03  Greg McGary  <greg@mcgary.org>
30623
30624         * lib/regex.c (SET_HIGH_BOUND, MOVE_BUFFER_POINTER,
30625         ELSE_EXTEND_BUFFER_HIGH_BOUND): New macros.
30626         (EXTEND_BUFFER): Use them.
30627
30628 2000-08-01  Jim Meyering  <meyering@lucent.com>
30629
30630         * lib/dirname.c (ISSLASH): Define.
30631         (BACKSLASH_IS_PATH_SEPARATOR): Define.
30632         (dir_name) [BACKSLASH_IS_PATH_SEPARATOR]: Handle the case in which
30633         both `\' and `/' may be use as path separators.
30634         Based on a patch from Prashant TR.
30635
30636 2000-07-31  Paul Eggert  <eggert@twinsun.com>
30637
30638         * lib/quotearg.c (quotearg_n_options): Don't make the initial
30639         slot vector a constant, since it might get modified.
30640
30641 2000-07-31  Jim Meyering  <meyering@lucent.com>
30642
30643         * lib/xmalloc.c: Use `virtual memory exhausted', not
30644         `Memory exhausted'.
30645         * lib/obstack.c (print_and_abort): Likewise.
30646
30647 2000-07-30  Paul Eggert  <eggert@twinsun.com>
30648
30649         * lib/quotearg.c (quotearg_n_options): Preallocate a slot 0
30650         buffer, so that the caller can always quote one small
30651         component of a "memory exhausted" message in slot 0.
30652         From a suggestion by Jim Meyering.
30653
30654 2000-07-30  Jim Meyering  <meyering@lucent.com>
30655
30656         * lib/makepath.c (make_path): Quote the other instance, too.
30657
30658         * lib/quotearg.c (N_STATIC_SLOTVECS): Define.
30659         (STATIC_BUF_SIZE): Define.
30660         (quotearg_n_options): Use only statically allocated storage when
30661         N < N_STATIC_SLOTVECS and the length of the quoted result is smaller
30662         than STATIC_BUF_SIZE.
30663
30664 2000-07-29  Jim Meyering  <meyering@lucent.com>
30665
30666         * lib/diacrit.c (diacrit_diac): Use __MSDOS__ in favor of MSDOS.
30667         * lib/dirname.c (dir_name): Likewise.
30668
30669         * lib/basename.c (base_name): Use ISSLASH rather than comparing against
30670         `/'.
30671
30672         * lib/dirname.c (dir_name) [MSDOS]: Declare `lim' to be const.
30673         (dir_name): Assert that there are no trailing slashes.
30674
30675 2000-07-29  Bruno Haible  <haible@clisp.cons.org>
30676
30677         * lib/mbswidth.h (mbswidth): Add a flags argument.
30678         (mbswidth): New declaration.
30679         (MBSW_ACCEPT_INVALID, MBSW_ACCEPT_UNPRINTABLE): New macros.
30680         * lib/mbswidth.c (mbswidth): Add a flags argument.
30681         (mbsnwidth): New function.
30682
30683 2000-07-24  Jim Meyering  <meyering@lucent.com>
30684
30685         * lib/mbswidth.c: Remove useless #else.  From Bruno Haible.
30686
30687 2000-07-23  Paul Eggert  <eggert@twinsun.com>
30688
30689         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Check for wcwidth declaration.
30690
30691 2000-07-23  Paul Eggert  <eggert@twinsun.com>
30692
30693         * lib/quotearg.c: Streamline by invoking multibyte code only if needed.
30694         <wchar.h>: Include only if HAVE_MBRTOWC && 1 < MB_LEN_MAX.
30695         (MB_CUR_MAX): Redefine to 1 if ! (HAVE_MBRTOWC && 1 < MB_LEN_MAX).
30696         (quotearg_buffer_restyled): If a unibyte locale, don't bother to
30697         invoke multibyte primitives.
30698
30699 2000-07-23  Paul Eggert  <eggert@twinsun.com>
30700
30701         * lib/quotearg.c:
30702         Include <wchar.h> even if ! (HAVE_MBRTOWC && 1 < MB_LEN_MAX),
30703         so that mbstate_t is always defined.
30704
30705         Do not inspect MB_LEN_MAX, since it's incorrectly defined to
30706         be 1 in at least one GCC installation, and this configuration
30707         error is likely to be common.  Ignoring MB_LEN_MAX hurts
30708         performance on hosts that have mbrtowc but have only unibyte
30709         locales, but I assume these hosts are rare.
30710
30711 2000-07-23  Paul Eggert  <eggert@twinsun.com>
30712
30713         * lib/mbswidth.c (_XOPEN_SOURCE):
30714         Don't define; this causes problems on Solaris 7.
30715         (wcwidth) [!HAVE_DECL_WCWIDTH]: Declare.
30716
30717 2000-07-23  Jim Meyering  <meyering@lucent.com>
30718
30719         * m4/check-decl.m4 (jm_CHECK_DECLS): Check for declarations of these,
30720         too: getgrgid, getpwuid, getuid.
30721
30722 2000-07-23  Jim Meyering  <meyering@lucent.com>
30723
30724         * lib/basename.c (base_name): Add an assertion.
30725
30726 2000-07-23  Bruno Haible  <haible@clisp.cons.org>
30727
30728         * lib/quotearg.c: When the system forces us to redefine mbstate_t,
30729         shadow its mbsinit function.
30730
30731 2000-07-17  Bruno Haible  <haible@clisp.cons.org>
30732
30733         * lib/mbswidth.h: New file.
30734         * lib/mbswidth.c: New file.
30735         * lib/Makefile.am (libfetish_a_SOURCES): Add mbswidth.c.
30736         (noinst_HEADERS): Add mbswidth.h.
30737
30738 2000-07-17  Bruno Haible  <haible@clisp.cons.org>
30739
30740         * lib/config.charset: Add support for FreeBSD. Improve support for
30741         HP-UX and IRIX 6.
30742
30743 2000-07-16  Bruno Haible  <haible@clisp.cons.org>
30744
30745         * m4/mbswidth.m4: New file.
30746         * m4/prereq.m4 (jm_PREREQ): Call jm_PREREQ_MBSWIDTH.
30747
30748 2000-07-15  Jim Meyering  <meyering@lucent.com>
30749
30750         * lib/makepath.c: Include quote.h.
30751         (make_path): Convert "`%s'" in format strings to "%s", and wrap each
30752         corresponding argument in a `quote (...)' call.
30753         Give better diagnostics.
30754
30755         * lib/Makefile.am (libfetish_a_SOURCES): Add quote.c.
30756         (noinst_HEADERS): Add quote.h.
30757
30758         * lib/quote.c (quote, quote_n): New file.  Two functions taken verbatim
30759         from tar's src/misc.c.
30760         * lib/quote.h: New file.  Prototypes for same.
30761
30762 2000-07-14  Paul Eggert  <eggert@twinsun.com>
30763
30764         From a suggestion by Bruno Haible.
30765         * lib/quotearg.c (mbrtowc): Do not use HAVE_WCHAR_H in the definition.
30766         Use defined mbstate_t, not HAVE_MBSTATE_T_OBJECT,
30767         to decide whether to define the BeOS workaround macro;
30768         this adjusts to the change to AC_MBSTATE_T.
30769
30770 2000-07-14  Jim Meyering  <meyering@lucent.com>
30771
30772         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Require
30773         jm_AC_TYPE_UINTMAX_T.
30774
30775 2000-07-13  Paul Eggert  <eggert@twinsun.com>
30776
30777         * lib/quotearg.h (enum quoting style): New enum clocale_quoting_style.
30778
30779         * lib/quotearg.c (quoting_style_args, quoting_style_vals,
30780         quotearg_buffer_restyled): Add support for
30781         clocale_quoting_style.  Undo previous change to
30782         locale_quoting_style behavior, and undo the "{LEFT QUOTATION MARK}"
30783         and "{RIGHT QUOTATION MARK}" msgids.
30784
30785 2000-07-10  Paul Eggert  <eggert@twinsun.com>
30786
30787         From a suggestion by Bruno Haible.
30788         * m4/mbstate_t.m4 (AC_MBSTATE_T):
30789         Renamed from AC_MBSTATE_T_OBJECT.  All uses changed.
30790         Change from a two-part test, which defines both HAVE_MBSTATE_T_OBJECT
30791         and mbstate_t, to a single-part test that simply defines mbstate_t.
30792         * m4/prereq.m4 (jm_PREREQ_QUOTEARG):
30793         s/AC_MBSTATE_T_OBJECT/AC_MBSTATE_T/.
30794
30795 2000-07-10  Jim Meyering  <meyering@lucent.com>
30796
30797         * m4/strerror_r.m4: Mirror the correction made in autoconf.
30798
30799         * m4/gnu-source.m4: Output to confdefs.h directly.
30800         Suggestion from Akim Demaille.
30801
30802 2000-07-09  Paul Eggert  <eggert@twinsun.com>
30803
30804         The old behavior of quoting `like this' doesn't look good with
30805         newer, ISO-style fonts.  See:
30806         http://www.cl.cam.ac.uk/~mgk25/ucs/quotes.html
30807
30808         Instead, quote "like this" by default.  Let the translator
30809         tailor the locale-specific quoting behavior by providing
30810         translations for {LEFT QUOTATION MARK} and {RIGHT QUOTATION MARK}.
30811
30812         * lib/quotearg.c (N_): New macro.
30813         (gettext_default): New function.
30814         (quotearg_buffer_restyled): Use
30815         gettext_default ("{LEFT QUOTATION MARK}", "\"") for left quote, and
30816         gettext_default ("{RIGHT QUOTATION MARK}", "\"") for right quote.
30817
30818 2000-07-09  Jim Meyering  <meyering@lucent.com>
30819
30820         * m4/jm-macros.m4 (jm_MACROS): Add a test to see if -lm is required
30821         to link seq.  If so, set SEQ_LIBM to -lm.  From Bruno Haible.
30822
30823         * m4/gnu-source.m4 (AC__GNU_SOURCE): New file/macro.
30824         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require it.
30825
30826 2000-07-09  Jim Meyering  <meyering@lucent.com>
30827
30828         * lib/Most files: Update copyright dates to include 2000.
30829
30830 2000-07-08  Jim Meyering  <meyering@lucent.com>
30831
30832         * lib/xgethostname.c (ENAMETOOLONG): Define to an unlikely value
30833         if not defined.
30834         (xgethostname): Remove now-unnecessary #ifdef.
30835         Move declaration of `err' into loop where it's used.
30836
30837 2000-07-05  Paul Eggert  <eggert@twinsun.com>
30838         and Bruno Haible  <haible@clisp.cons.org>
30839
30840         * m4/mbstate_t.m4 (AC_MBSTATE_T_OBJECT): Test for mbstate_t
30841         only if the test for an object-type mbstate_t fails.  This
30842         prevents us from mistakenly reporting that mbstate_t is a
30843         system object type after we "#define mbstate_t int" to work
30844         around its lack.
30845
30846 2000-07-05  Paul Eggert  <eggert@twinsun.com>
30847         and Bruno Haible  <haible@clisp.cons.org>
30848
30849         * lib/quotearg.c (mbrtowc): Declare returned type, since BeOS doesn't.
30850
30851 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
30852
30853         * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Pass a reasonably large buffer
30854         to strerror_r.
30855         Include <ctype.h> for use of isalpha.
30856
30857 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
30858
30859         * lib/xgethostname.c (xgethostname): Protect against the SunOS 5.5 bug
30860         by allocating a larger buffer. Test the gethostname return value for
30861         being >= 0, not == 0, for BeOS.  Don't exhaust memory if gethostname
30862         returns an error and ENAMETOOLONG isn't defined.
30863
30864 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
30865
30866         * lib/quotearg.c (struct quoting_options): Simplify quote_these_too
30867         dimension.
30868
30869 2000-07-04  Jim Meyering  <meyering@lucent.com>
30870
30871         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Use plain old `echo' instead
30872         of the deprecated AC_CHECKING.
30873
30874 2000-07-04  Jim Meyering  <meyering@lucent.com>
30875
30876         * lib/strndup.c: [!HAVE_DECL_STRNLEN]: Declare strnlen.
30877         Reported by Bruno Haible.
30878
30879 2000-07-04  Jim Meyering  <meyering@lucent.com>
30880
30881         * lib/quotearg.c: Make inclusion of <wchar.h> independent of whether
30882         HAVE_MBRTOWC is set.  Required at least for irix-5.6, which
30883         lacks mbrtowc.
30884
30885 2000-07-03  Paul Eggert  <eggert@twinsun.com>
30886
30887         * m4/mbstate_t.m4 (AC_MBSTATE_T_OBJECT): Port to autoconf 2.13.
30888         Add AC_CHECK_HEADERS(stdlib.h), since we use HAVE_STDLIB_H.
30889
30890 2000-07-03  Paul Eggert  <eggert@twinsun.com>
30891         and Bruno Haible  <haible@clisp.cons.org>
30892
30893         * lib/quotearg.c (mbrtowc):
30894         Assign to *pwc, and return 1 only if result is nonzero.
30895         (iswprint): Use ISPRINT when substituting our own mbrtowc.
30896
30897 2000-07-03  Jim Meyering  <meyering@lucent.com>
30898
30899         * m4/check-decl.m4 (AC_CHECK_DECLS): Add strnlen.
30900
30901 2000-07-03  Jim Meyering  <meyering@lucent.com>
30902
30903         * lib/readutmp.h: [HAVE_UTMPX_H]: Include <utmp.h> if HAVE_UTMP_H.
30904         This is necessary to get a definition of e.g., UTMP_FILE on
30905         HP-UX 10.20.
30906         From Bob Proulx.
30907
30908 2000-07-02  Jim Meyering  <meyering@lucent.com>
30909
30910         * m4/mbstate_t.m4: Also define mbstate_t, if necessary.
30911
30912         * m4/chown.m4: Replace each use of AC_SUBST(LIBOBJS)/LIBOBJS=... with
30913         AC_LIBOBJ(function_name).
30914         * m4/chown.m4: Likewise.
30915         * m4/fnmatch.m4: Likewise.
30916         * m4/ftruncate.m4: Likewise.
30917         * m4/getgroups.m4: Likewise.
30918         * m4/getline.m4: Likewise.
30919         * m4/group-member.m4: Likewise.
30920         * m4/jm-macros.m4: Likewise.
30921         * m4/lstat.m4: Likewise.
30922         * m4/malloc.m4: Likewise.
30923         * m4/memcmp.m4: Likewise.
30924         * m4/nanosleep.m4: Likewise.
30925         * m4/putenv.m4: Likewise.
30926         * m4/realloc.m4: Likewise.
30927         * m4/regex.m4: Likewise.
30928         * m4/stat.m4: Likewise.
30929         * m4/strftime.m4: Likewise.
30930
30931 2000-07-02  Jim Meyering  <meyering@lucent.com>
30932
30933         * lib/quotearg.c (mbstate_t): Don't define here.
30934
30935 2000-07-02  Jim Meyering  <meyering@lucent.com>
30936
30937         * lib/nanosleep.c (SIGCONT): Define if not already defined.
30938
30939 2000-07-01  Jim Meyering  <meyering@lucent.com>
30940
30941         * m4/uptime.m4: Put double quotes around use of $cross_compiling.
30942
30943 2000-07-01  Jim Meyering  <meyering@lucent.com>
30944
30945         * m4/ls-mntd-fs.m4: Remove a `FIXME' comment and fix the associated
30946         problem.
30947
30948 2000-07-01  Bruno Haible  <haible@clisp.cons.org>
30949
30950         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Rename BeOS specific
30951         macro from MOUNTED_NEXT_DEV to MOUNTED_FS_STAT_DEV.
30952
30953 2000-07-01  Bruno Haible  <haible@clisp.cons.org>
30954
30955         * lib/mountlist.c: Use MOUNTED_FS_STAT_DEV instead of MOUNTED_NEXT_DEV,
30956         per change in ../m4/ls-mntd-fs.m4.
30957         (read_filesystem_list): Ignore symbolic links.
30958
30959 2000-06-29  Jim Meyering  <meyering@lucent.com>
30960
30961         * lib/same.c: Include <string.h> or <strings.h>, as appropriate,
30962         for declaration of strcmp.
30963
30964         * lib/long-options.c: Include <stdlib.h>, for declaration of exit.
30965
30966         * lib/mountlist.c (fsp_to_string) [HAVE_F_FSTYPENAME_IN_STATFS]:
30967         Avoid warning by casting result to `char *' to remove `const'.
30968
30969 2000-06-28  Jim Meyering  <meyering@lucent.com>
30970
30971         * m4/mbstate_t.m4: Use stdlib.h, not stdio.h.  The latter is not
30972         included by quotearg.c, for which we perform this test.  From
30973         Bruno Haible.
30974
30975 2000-06-27  Bruno Haible  <haible@clisp.cons.org>
30976
30977         * m4/check-decl.m4 (_jm_DECL_HEADERS): Check for utmp.h as well.
30978         * m4/prereq.m4 (jm_PREREQ_READUTMP): Likewise. If either <utmp.h> or
30979         <utmpx.h> exists, put readutmp.o into LIBOBJS.
30980
30981 2000-06-27  Bruno Haible  <haible@clisp.cons.org>
30982
30983         * lib/Makefile.am (libfetish_a_SOURCES): Remove readutmp.c.
30984
30985 2000-06-26  Paul Eggert  <eggert@twinsun.com>
30986
30987         savedir now sets errno on failure and invokes xmalloc to get memory.
30988         Fix a couple of other minor bugs while we're at it.
30989
30990         * lib/savedir.c (<unistd.h>): Do not include; there's no need.
30991         (NAMLEN): Remove macro.
30992         (malloc, realloc): Remove decls.
30993         (stpcpy): Likewise.
30994         ("xalloc.h"): Include.
30995         (NAME_SIZE_DEFAULT): New macro.
30996         (savedir): Use xmalloc / xrealloc to allocate memory.
30997         Use NAME_SIZE_DEFAULT if name_size is negative or overflows to zero.
30998         Skip "" directory entries.
30999         Use strlen to calculate directory entry length, since the old method
31000         is rarely used these days and isn't worth supporting.
31001         Don't use a pointer after freeing it.
31002         Check for integer overflow when calculating allocation size.
31003         Use memcpy to copy entries, instead of stpcpy.
31004         Set errno properly when returning NULL.
31005         Check for readdir error.
31006
31007 2000-06-26  Jim Meyering  <meyering@lucent.com>
31008
31009         * lib/posixtm.c [HAVE_STDLIB_H]: Include stdlib.h, for decl of abort.
31010
31011 2000-06-25  Jim Meyering  <meyering@lucent.com>
31012
31013         * m4/mbstate_t.m4: Include stdio.h before wchar.h to work around
31014         Linux header bug when _XOPEN_SOURCE is defined to 500.
31015
31016 2000-06-25  Bruno Haible  <haible@clisp.cons.org>
31017
31018         * lib/unicodeio.c (print_unicode_char): Work around ansi2knr
31019         deficiency.
31020
31021 2000-06-25  Bruno Haible  <haible@clisp.cons.org>
31022
31023         * lib/getusershell.c (xmalloc, xrealloc): Remove functions.
31024         Include xalloc.h.
31025         Don't include <stdlib.h>.  Don't declare malloc, realloc.
31026
31027 2000-06-24  Jim Meyering  <meyering@lucent.com>
31028
31029         * m4/strerror_r.m4: Revive this file -- to try out an experimental
31030         version of AC_FUNC_STRERROR_R that may work even on BeOS, a system
31031         for which strerror does return char*, but which lacks a conveniently
31032         accessible declaration of the function.  If the compile-test says
31033         strerror_r doesn't work, then resort to a `run'-test that works on
31034         BeOS and segfaults on DEC Unix.
31035
31036 2000-06-24  Jim Meyering  <meyering@lucent.com>
31037
31038         * lib/error.c [!HAVE_DECL_STRERROR_R]: Declare strerror_r.
31039
31040 2000-06-23  Paul Eggert  <eggert@twinsun.com>
31041
31042         * m4/mbstate_t.m4: New file, defining AC_MBSTATE_T_OBJECT.
31043         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Use it.  Add check for iswprint.
31044
31045 2000-06-23  Paul Eggert  <eggert@twinsun.com>
31046
31047         * lib/quotearg.c: Include <wctype.h> after <wchar.h>, for Solaris 2.5.
31048         (mbrtowc, mbstate_t): Define substitutes if
31049         HAVE_MBRTOWC && HAVE_WCHAR_H && !HAVE_MBSTATE_T_OBJECT.
31050         (iswprint): Define to 1 if !defined iswprint && !HAVE_ISWPRINT,
31051         not if ! (HAVE_MBRTOWC && HAVE_WCHAR_H).
31052
31053 2000-06-23  Jim Meyering  <meyering@lucent.com>
31054
31055         * m4/afs.m4: Add missing AC_MSG_RESULT.
31056         Reported by Bruno Haible.
31057
31058         * m4/fsusage.m4: s/AC_MSG_CHECKING/AC_CHECKING/.
31059         Suggestion from Bruno Haible.
31060
31061 2000-06-23  Jim Meyering  <meyering@lucent.com>
31062
31063         * lib/getpass.c: New file, from Bruno Haible.  Required for BeOS.
31064
31065 2000-06-21  Jim Meyering  <meyering@lucent.com>
31066
31067         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add getpass.
31068
31069 2000-06-21  Jim Meyering  <meyering@lucent.com>
31070
31071         * lib/Makefile.am (libfetish_a_SOURCES): Add getstr.c.
31072         (noinst_HEADERS): Add getstr.h.
31073
31074         * lib/getline.c (getstr): Move into a separate file.
31075         * lib/getstr.c (getstr): New file, extracted from getline.c, with
31076         the following changes: new parameter, delim2; both delim[12]
31077         parameters have type `int', not `char'.  The latter would lose
31078         with 8-bit delimiters.
31079         * lib/getstr.h: New file.
31080
31081 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
31082
31083         * lib/xgetcwd.c (xgetcwd): If the required pathname length is smaller
31084         than 1024, return a memory chunk of least possible size, instead
31085         of size PATH_MAX + 2. In the loop, increment the size proportionally.
31086         Use free/xmalloc instead of xrealloc to avoid copying for very long
31087         paths.
31088
31089 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
31090
31091         * lib/path-concat.c (path_concat): Don't access dir[-1] if dir is
31092         the empty string.
31093
31094 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
31095
31096         * lib/canon-host.c (canon_host): Use malloc and memcpy to copy an
31097         address, not strdup.  Include <stdlib.h> and don't declare free().
31098
31099 2000-06-19  Jim Meyering  <meyering@lucent.com>
31100
31101         * lib/getloadavg.c [HAVE_NLIST_H] (NLIST_STRUCT): Define.
31102
31103 2000-06-18  Jim Meyering  <meyering@lucent.com>
31104
31105         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Remove mkdir.
31106
31107         * m4/link-follow.m4 (jm_AC_FUNC_LINK_FOLLOWS_SYMLINK): Change the
31108         `checking whether...' message to be consistent with that of the
31109         lstat test.
31110
31111 2000-06-18  Jim Meyering  <meyering@lucent.com>
31112
31113         * lib/mkdir.c: Remove file, due mainly to copyright incompatibility.
31114         Besides, these days every porting target provides a mkdir function.
31115
31116         * lib/strnlen.c: Include memory.h, string.h, and/or strings.h as
31117         needed. (this snippet comes from src/system.h).
31118
31119 2000-06-16  Bruno Haible  <haible@clisp.cons.org>
31120
31121         * m4/glibc21.m4 (jm_GLIBC21): Define GLIBC21 for Makefiles, not for C.
31122
31123 2000-06-15  Paul Eggert  <eggert@twinsun.com>
31124
31125         * lib/human.c (adjust_value): New function.
31126         (human_readable_inexact): Apply rounding style even when
31127         printing approximate values.
31128
31129 2000-06-14  Paul Eggert  <eggert@twinsun.com>
31130
31131         * lib/human.c (human_readable_inexact): Allow an input block
31132         size that is not a multiple of the output block size, and vice versa.
31133         Reported by Piergiorgio Sartor.
31134
31135 2000-06-14  Paul Eggert  <eggert@twinsun.com>
31136
31137         * lib/getdate.y (get_date): Apply relative times after time
31138         zone indicator, not before.  Reported by Todd A. Jacobs.
31139
31140 2000-06-13  Jim Meyering  <meyering@lucent.com>
31141
31142         * lib/Makefile.am (all-local): Depend on lstat.c and stat.c.
31143
31144         * lib/xstat.in [!HAVE_DECL_FREE]: Declare free in lstat.c.
31145
31146 2000-06-12  Paul Eggert  <eggert@twinsun.com>
31147
31148         * lib/xstat.in: Include <stdlib.h> in lstat, to declare "free".
31149
31150 2000-06-12  Jim Meyering  <meyering@lucent.com>
31151
31152         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Replace with
31153         AC_FUNC_GETLOADAVG from autoconf, and tweak the latter to accept an
31154         optional argument.
31155         * m4/jm-macros.m4: s/AM_FUNC_GETLOADAVG/AC_FUNC_GETLOADAVG/, and supply
31156         the optional argument, `lib'.
31157
31158 2000-06-08  Jim Meyering  <meyering@lucent.com>
31159
31160         * m4/largefile.m4: Remove file (now that it's part of autoconf).
31161
31162 2000-06-04  Paul Eggert  <eggert@twinsun.com>
31163
31164         Rewrite largefile configuration so that we don't need to run
31165         getconf and don't need AC_CANONICAL_HOST.  [I'm leaving the use of
31166         AC_CANONICAL_HOST in configure.in -- jmm]
31167
31168         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS,
31169         AC_SYS_LARGEFILE_SPACE_APPEND): Remove.
31170         (AC_SYS_LARGEFILE_TEST_INCLUDES): New macro.
31171         (AC_SYS_LARGEFILE_MACRO_VALUE): Change arguments from
31172         CODE-TO-SET-DEFAULT to VALUE, INCLUDES, FUNCTION-BODY.
31173         All uses changed.
31174         Instead of inspecting the output of getconf, try to compile the
31175         test program without and with the macro definition.
31176         (AC_SYS_LARGEFILE): Do not require AC_CANONICAL_HOST or check
31177         for getconf.  Instead, check for the needed flags by compiling
31178         test programs.
31179
31180 2000-06-04  Paul Eggert  <eggert@twinsun.com>
31181
31182         * lib/strnlen.c: Include <config.h> if HAVE_CONFIG_H.
31183
31184 2000-06-04  Jim Meyering  <meyering@lucent.com>
31185
31186         * lib/getugroups.c (getugroups): Cast -1 to gid_t, for systems like
31187         SunOS 4.1.4 for which gid_t is an unsigned type.
31188
31189 2000-06-03  Jim Meyering  <meyering@lucent.com>
31190
31191         * m4/prereq.m4 (jm_PREREQ_HUMAN): Use []-quoted list in AC_CHECK_DECLS,
31192         now that autoconf requires that.
31193
31194         * m4/jm-glibc-io.m4: Add a kludge to make autoheader emit the required
31195         #undefs.  E.g., #undef HAVE_DECL_FERROR_UNLOCKED.
31196         Use []-quoted list in AC_CHECK_DECLS, now that autoconf requires that.
31197
31198 2000-06-03  Jim Meyering  <meyering@lucent.com>
31199
31200         * lib/strnlen.c [!HAVE_DECL_MEMCHR]: Declare memchr.
31201
31202 2000-06-03  Bruno Haible  <haible@clisp.cons.org>
31203
31204         * m4/glibc21.m4: New file.
31205         * m4/jm-macros.m4 (jm_MACROS): Call jm_GLIBC21.
31206
31207 2000-06-03  Bruno Haible  <haible@clisp.cons.org>
31208
31209         * lib/Makefile.am (install-exec-local): On systems with glibc-2.1 or
31210         newer, don't install charset.alias.
31211         * lib/config.charset: Change the Linux/glibc rules so they become empty
31212         on glibc-2.1 or newer.
31213
31214 2000-06-02  Jim Meyering  <meyering@lucent.com>
31215
31216         * lib/mountlist.c: Back out last change.  Instead, do this...
31217         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Set the
31218         me_dummy member using the same `ignore'-testing code.
31219         * lib/mountlist.h (ME_DUMMY): Add `autofs' to the list of ignored
31220         fs_type strings.
31221         From Mark D. Roth.
31222
31223 2000-05-29  Jim Meyering  <meyering@lucent.com>
31224
31225         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Ignore
31226         mounts with the `ignore' attribute.  Based on a patch from
31227         Mark D. Roth.
31228
31229 2000-05-28  Jim Meyering  <meyering@lucent.com>
31230
31231         * m4/jm-macros.m4 (AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK): Rename from
31232         jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
31233         * m4/stat.m4: Likewise.
31234         * m4/lstat.m4: Likewise.
31235         * m4/lstat-slash.m4: Remove file (absorbed into autoconf).
31236
31237         * m4/jm-macros.m4 (AC_FUNC_STRERROR_R): Rename from jm_FUNC_STRERROR_R.
31238         * m4/strerror_r.m4: Remove file (absorbed into autoconf).
31239
31240 2000-05-26  Jim Meyering  <meyering@lucent.com>
31241
31242         * m4/uptime.m4: Use `$cross_compiling', not `$ac_cv_prog_cc_cross'.
31243
31244 2000-05-24  Jim Meyering  <meyering@lucent.com>
31245
31246         * m4/prereq.m4: Use []-quoted list in AC_CHECK_MEMBERS, now that
31247         autoconf requires that.
31248         * m4/lib-check.m4: Likewise.
31249         * m4/jm-macros.m4: Likewise.
31250         * m4/strftime.m4: Likewise.
31251
31252         * m4/check-decl.m4 (jm_CHECK_DECLS): Use []-quoted list in
31253         AC_CHECK_DECLS, now that autoconf requires that.
31254
31255 2000-05-22  Jim Meyering  <meyering@lucent.com>
31256
31257         * m4/stat.m4: Require jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
31258         * m4/lstat.m4: Likewise.
31259
31260 2000-05-22  Jim Meyering  <meyering@lucent.com>
31261
31262         * lib/makepath.c: Remove old, now-unnecessary `#ifdef __MSDOS__' block.
31263
31264 2000-05-20  Jim Meyering  <meyering@lucent.com>
31265
31266         * m4/prereq.m4 (jm_PREREQ_HUMAN): New macro.
31267         (jm_PREREQ): Use it.
31268
31269 2000-05-18  Jim Meyering  <meyering@lucent.com>
31270
31271         * lib/hash.c (hash_rehash): Fix a nasty bug: copy the free entry list
31272         back, too, since it may have been modified by allocate_entry.
31273         (hash_delete): Rewrite to use neither the assignment operator
31274         nor the comma operator in an if-expression.
31275
31276 2000-05-15  Paul Eggert  <eggert@twinsun.com>
31277
31278         * lib/closeout.c:
31279         <sys/stat.h>, <sys/types.h>, <unistd.h>, (STDOUT_FILENO):
31280         Remove; no longer needed.
31281         "quotearg.h": Add include.
31282         (file_name): Do not bother to explicitly initialize to NULL; it's less
31283         efficient on some hosts.
31284         (close_stdout_status): Remove test as to whether stdout was already
31285         closed; it breaks for the case "echo x | sort >&-".
31286         Quote file name colons.
31287         Do not assume that _("write error") lacks format strings.
31288
31289 2000-05-15  Jim Meyering  <meyering@lucent.com>
31290
31291         * lib/version-etc.c (version_etc_copyright): Update the copyright
31292         string used in all --version output.
31293
31294 2000-05-14  Jim Meyering  <meyering@lucent.com>
31295
31296         * lib/closeout.c (close_stdout_set_file_name): New function.
31297         (close_stdout_status): Use new file-scoped global.
31298         Return right away if fstat says the stdout file descriptor is invalid.
31299         * lib/closeout.h (close_stdout_set_file_name): Declare.
31300
31301 2000-05-10  Jim Meyering  <meyering@lucent.com>
31302
31303         * lib/closeout.c [default_exit_status]: New file-scoped variable.
31304         (close_stdout_set_status): New function.
31305         * lib/closeout.h (close_stdout_set_status): Declare.
31306
31307 2000-05-09  Jim Meyering  <meyering@lucent.com>
31308
31309         * m4/gettext.m4: Rename this...
31310         * m4/libintl.m4: ...to this.
31311
31312 2000-05-08  Jim Meyering  <meyering@lucent.com>
31313
31314         * lib/long-options.c: Don't include closeout.h.
31315         (parse_long_options): Don't call close_stdout for --version.
31316
31317 2000-05-06  Paul Eggert  <eggert@twinsun.com>
31318
31319         * m4/largefile.m4 (AC_SYS_LARGEFILE): Define _XOPEN_SOURCE to
31320         be 500, instead of _GNU_SOURCE to be 1, to work around glibc
31321         2.1.3 bug.  This avoids a clash when files like regex.c define
31322         _GNU_SOURCE.
31323
31324 2000-05-06  Jim Meyering  <meyering@lucent.com>
31325
31326         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add atexit.
31327         (AC_REPLACE_FUNCS): Add strnlen.
31328
31329         * m4/rmdir-errno.m4 (fetish_FUNC_RMDIR_NOTEMPTY): New macro and file.
31330         * m4/jm-macros.m4: Require fetish_FUNC_RMDIR_NOTEMPTY.
31331
31332         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Save and restore LIBS around
31333         AC_SEARCH_LIBS call for nanosleep.
31334         (LIB_NANOSLEEP): Set and AC_SUBST.
31335
31336 2000-05-06  Jim Meyering  <meyering@lucent.com>
31337
31338         * lib/strnlen.c: Undefine __strnlen and strnlen.
31339         [!weak_alias]: Define __strnlen to strnlen.
31340
31341         * lib/atexit.c: New file, from libiberty.
31342
31343 2000-05-06  Jim Meyering  <meyering@lucent.com>
31344
31345         * lib/closeout.c (close_stdout_status): Also check for errors on the
31346         stderr stream.
31347
31348 2000-05-05  Jim Meyering  <meyering@lucent.com>
31349
31350         * m4/jm-macros.m4 (jm_MACROS): Save and restore LIBS around
31351         AC_SEARCH_LIBS call for clock_gettime.
31352         (LIB_CLOCK_GETTIME): Set and AC_SUBST.
31353
31354         * m4/search-libs.m4: Update from autoconf.
31355
31356         su doesn't work on Solaris 2.6.
31357         * m4/lib-check.m4: When checking for struct spwd.sp_pwdp, also include
31358         <shadow.h>.  Reported by Dragos Harabor.
31359
31360 2000-05-05  Bruno Haible  <haible@clisp.cons.org>
31361
31362         * lib/localcharset.c (get_charset_aliases): Use malloc, realloc and
31363         memcpy instead of xmalloc, xrealloc, path_concat.
31364         (locale_charset): Treat empty environment variables as absent.
31365         (DIRECTORY_SEPARATOR, ISSLASH): New macros.
31366
31367 2000-05-04  Jim Meyering  <meyering@lucent.com>
31368
31369         * lib/getopt.c: Update from glibc.
31370         * lib/obstack.c: Likewise.
31371         * lib/obstack.h: Likewise.
31372         * lib/regex.c: Likewise.  NB: K&R compiler support is dropped for this
31373         file
31374
31375         * lib/regex.h: Likewise.
31376         * lib/strndup.c: Likewise.
31377         * lib/strnlen.c: New file, from glibc.
31378
31379 2000-05-03  Jim Meyering  <meyering@lucent.com>
31380
31381         * m4/check-decl.m4 (AC_CHECK_DECLS): Add strndup.
31382
31383 2000-05-02  Paul Eggert  <eggert@twinsun.com>
31384
31385         * m4/largefile.m4 (AC_SYS_LARGEFILE): Define _GNU_SOURCE if
31386         this is needed to make ftello visible (e.g. glibc 2.1.3).  Use
31387         compile-time test, rather than inspecting host and OS, to
31388         decide whether to define _LARGEFILE_SOURCE.
31389
31390 2000-05-01  Jim Meyering  <meyering@lucent.com>
31391
31392         * m4/fsusage.m4: Use AC_MSG_CHECKING instead of obsolete AC_CHECKING.
31393
31394         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Add BeOS support.
31395         Based on a patch from Bruno Haible.
31396
31397 2000-05-01  Jim Meyering  <meyering@lucent.com>
31398
31399         * lib/full-write.c (full_write): Remove `FIXME' part of comment.
31400
31401 2000-04-29  Jim Meyering  <meyering@lucent.com>
31402
31403         * lib/path-concat.c: Declare strdup only if it's not defined.
31404         * lib/canon-host.c: Likewise.
31405
31406 2000-04-28  Jim Meyering  <meyering@lucent.com>
31407
31408         * lib/rpmatch.c [HAVE_LIMITS_H]: Include limits.h before regex.h to
31409         avoid redefinition warning on some systems (HPUX).  Otherwise, regex.h
31410         is included first, then limits.h is included by locale.h by libintl.h.
31411         From John David Anglin.
31412
31413 2000-04-25  Jim Meyering  <meyering@lucent.com>
31414
31415         * lib/makepath.c (S_IRWXUGO): Define.
31416         (make_path): Always perform explicit chmod if MODE specifies any
31417         of the `special' permission bits.  Prompted by a bug report against
31418         install from Mate Wierdl and Joost van Baal.
31419
31420 2000-04-18  Jim Meyering  <meyering@lucent.com>
31421
31422         * m4/prereq.m4 (jm_PREREQ_GETPAGESIZE): New macro.
31423         (jm_PREREQ): Use it.
31424
31425 2000-04-18  Jim Meyering  <meyering@lucent.com>
31426
31427         * lib/README: New file.
31428
31429         * lib/getpagesize.h [!getpagesize && HAVE_OS_H && B_PAGE_SIZE]: Define
31430         getpagesize.  For BeOS.  Based on a patch from Bruno Haible.
31431
31432 2000-04-17  Jim Meyering  <meyering@lucent.com>
31433
31434         Get it right :-)
31435         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Emit the
31436         actual #define via AH_VERBATIM.  Don't need separate AC_DEFINE.
31437         Suggestion from Akim Demaille.
31438
31439 2000-04-17  Jim Meyering  <meyering@lucent.com>
31440
31441         * lib/strftime.c (my_strftime) [strftime]: Declare strftime here, since
31442         the definition of it to rpl_strftime also defined-away the system's
31443         declaration.
31444
31445 2000-04-15  Jim Meyering  <meyering@lucent.com>
31446
31447         Use `C' to denote so-called `contiguous' files, the same way
31448         that tar does.
31449         * lib/filemode.c (S_ISCTG) [!S_ISCTG && S_IFCTG]: Define.
31450         (ftypelet): Use S_ISCTG.
31451         From Michael Deutschmann.
31452
31453 2000-04-14  Jim Meyering  <meyering@lucent.com>
31454
31455         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Use the one-arg
31456         form of AC_DEFINE.  Otherwise, the #ifndef in AH_VERBATIM gets
31457         clobbered.
31458
31459 2000-04-14  Jim Meyering  <meyering@lucent.com>
31460
31461         * lib/strftime.c (my_strftime) [#ifdef strftime]: Declare strftime.
31462
31463 2000-04-13  Jim Meyering  <meyering@lucent.com>
31464
31465         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Use new
31466         AH_VERBATIM to insert required #ifndef into config.h.in.
31467         Suggestion from Akim Demaille.
31468
31469 2000-04-12  Jim Meyering  <meyering@lucent.com>
31470
31471         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Use AC_CHECK_HEADERS, not
31472         `AC_CHECK_HEADER' to check for locale.h.  Thanks to a report from
31473         Christian Krackowizer.
31474
31475         More code moved from ../configure.in into (jm_CHECK_ALL_TYPES).
31476         * m4/jm-macros.m4 (_GNU_SOURCE): Define.
31477         (AC_SYS_LARGEFILE): Require.
31478         (AM_C_PROTOTYPES): Require.
31479
31480 2000-04-08  Jim Meyering  <meyering@lucent.com>
31481
31482         * lib/Makefile.am (charset.alias): Use t-$@, not $@-t so the DOS 8.3
31483         names don't conflict.  Reported by Eli Zaretskii.
31484
31485 2000-04-07  Jim Meyering  <meyering@lucent.com>
31486
31487         * lib/putenv.c: Move inclusion of errno.h so it follows that of
31488         sys/types.h, to work around system header problems on AIX 3.2.5.
31489         From Bruno Haible.
31490
31491 2000-04-07  Bruno Haible  <haible@clisp.cons.org>
31492
31493         * lib/unicodeio.c (print_unicode_char): Avoid triggering Solaris iconv
31494         bug.  Deal with the different error behavior of Irix iconv.
31495
31496 2000-04-05  Paul Eggert  <eggert@twinsun.com>
31497
31498         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Don't use -n32 on
31499         IRIX if the installer said otherwise.
31500
31501 2000-04-05  Jim Meyering  <meyering@lucent.com>
31502
31503         Portability tweaks required for ultrix4.3.
31504         * m4/check-decl.m4 [!HAVE_UTMPX_H] (headers): Include <utmp.h>.
31505         (jm_CHECK_DECLS): Add getutent to the list of functions.
31506         (_jm_DECL_HEADERS): Add utmpx.h.
31507         From John David Anglin.
31508
31509         * m4/strftime.m4: Back out the 2000-04-02 change.
31510         Instead of that change, simply undefine putenv in the test program.
31511
31512 2000-04-05  Jim Meyering  <meyering@lucent.com>
31513
31514         Portability tweaks required for ultrix4.3.
31515         * lib/readutmp.h [HAVE_UTMPX_H && !HAVE_DECL_GETUTENT]: Declare
31516         getutent.
31517         * lib/readutmp.c: Include sys/types.h before sys/stat.h.
31518         * lib/canon-host.c: Declare strdup.
31519         * lib/path-concat.c: Likewise.
31520         From John David Anglin.
31521
31522 2000-04-04  Jim Meyering  <meyering@lucent.com>
31523
31524         Be more DOS 8.3-friendly.
31525         * lib/ref-add.sin: Renamed from ref-add.sed.in.
31526         * lib/ref-del.sin: Renamed from ref-del.sed.in.
31527         * lib/Makefile.am: Reflect renaming.
31528         Reported by Eli Zaretskii.
31529
31530         Use a temporary file name that won't clash with `charset.alias'
31531         in the DOS 8.3 name space.
31532         * lib/Makefile.am (charset_tmp): Define.
31533         (install-exec-local): Use $(charset_tmp) instead of $(charset_alias)-t.
31534         (uninstall-local): Likewise.
31535         Reported by Eli Zaretskii.
31536
31537 2000-04-03  Jim Meyering  <meyering@lucent.com>
31538
31539         * m4/gettext.m4: Fix typo in comment.
31540
31541         * m4/codeset.m4 (AC_CHECK_HEADERS): Add langinfo.h (moved here from
31542         textutils/configure.in).  Suggestion from Paul Eggert.
31543         (AC_CHECK_FUNCS): Add nl_langinfo.  (also from textutils/configure.in)
31544
31545 2000-04-02  Paul Eggert  <eggert@twinsun.com>
31546
31547         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME): Set TZ environment
31548         variable in the shell rather than using putenv, which isn't
31549         portable.  This avoids the configure-time inter-test dependency
31550         on the potentially-renamed putenv function.
31551
31552 2000-03-30  Paul Eggert  <eggert@twinsun.com>
31553
31554         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Include <sys/stat.h>
31555         before checking struct stat.st_blksize, so that
31556         HAVE_STRUCT_STAT_ST_BLKSIZE is defined correctly.
31557
31558 2000-03-29  Paul Eggert  <eggert@twinsun.com>
31559
31560         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Check for strftime,
31561         since strftime.c uses HAVE_STRFTIME to decide whether to use
31562         the underlying strftime.
31563
31564 2000-03-29  Paul Eggert  <eggert@twinsun.com>
31565
31566         * lib/time/strftime.c (my_strftime): Make sure we call the system
31567         strftime, not ourselves, when invoking the underlying strftime.
31568
31569 2000-03-24  Jim Meyering  <meyering@lucent.com>
31570
31571         * lib/Makefile.am (EXTRA_DIST): Add ref-add.sed.in and ref-del.sed.in.
31572         (charset_alias): Define.
31573         (install-exec-local): Factor out common code.
31574         (uninstall-local): Split lines longer than 80.
31575         (ref-add.sed, ref-del.sed): Remove rules... (do the following instead)
31576         (SUFFIXES): Define.
31577         (.sed.in.sed): New rule.  Don't redirect directly to $@.
31578         (CLEANFILES): Add ref-add.sed and ref-del.sed.
31579
31580 2000-03-19  Bruno Haible  <haible@clisp.cons.org>
31581
31582         * lib/config.charset: Output a line containing "Packages using this
31583         file".
31584         * lib/ref-add.sed.in, lib/ref-del.sed.in: New files.
31585         * lib/Makefile.am (install-exec-local, uninstall-local, ref-add.sed,
31586         ref-del.sed): New rules.
31587
31588 2000-03-17  Jim Meyering  <meyering@lucent.com>
31589
31590         * lib/unicodeio.c (<string.h>): Include only #if HAVE_STRING_H.
31591         Otherwise, include <strings.h>
31592
31593 2000-03-17  Bruno Haible  <haible@clisp.cons.org>
31594
31595         * lib/unicodeio.c (utf8_wctomb): New function.
31596         (print_unicode_char): Pass the Unicode character to iconv in UTF-8
31597         format instead of in UCS-4 with platform dependent endianness.
31598
31599 2000-03-10  Jim Meyering  <meyering@lucent.com>
31600
31601         * m4/lib-check.m4: Look for getspnam in -lgen, too.
31602         From Marco Franzen.
31603
31604 2000-03-07  Paul Eggert  <eggert@twinsun.com>
31605
31606         * lib/savedir.c (savedir): Work even if directory size is
31607         negative; this can happen with some screwy NFS configurations.
31608
31609 2000-03-06  Jim Meyering  <meyering@lucent.com>
31610
31611         * lib/localcharset.c (get_charset_aliases): Don't try to free file_name
31612         if it's NULL (because we ran out of memory).  From Bruno Haible.
31613
31614 2000-03-05  Jim Meyering  <meyering@lucent.com>
31615
31616         * lib/localcharset.c ("path-concat.h"): Include.
31617         (get_charset_aliases): Use path_concat instead of ANSI string
31618         concatenation.
31619
31620         * lib/unicodeio.h (PARAMS): Define.
31621         Use it to guard prototype.
31622
31623 2000-03-04  Jim Meyering  <meyering@lucent.com>
31624
31625         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require AC_C_VOLATILE,
31626         for lib/localcharset.c.
31627
31628 2000-03-04  Jim Meyering  <meyering@lucent.com>
31629
31630         * lib/Makefile.am (install-exec-local): Create $(libdir) before
31631         installing into it.
31632         (uninstall-local): Uncomment this rule so `make distcheck' works
31633         once again.
31634
31635         * lib/unicodeio.c (<errno.h>): Include it.
31636         (errno): Declare if not defined.
31637
31638         * lib/localcharset.c: Add Bruno's comment justifying use of volatile.
31639
31640         * lib/config.charset: New version, incorporating remarks from a linux
31641         i18n mailing list.  From Bruno Haible.
31642
31643 2000-03-04  Bruno Haible  <haible@clisp.cons.org>
31644
31645         * m4/codeset.m4: New file.
31646         * m4/iconv.m4: New file.
31647         * m4/jm-macros.m4 (jm_MACROS): Call jm_LANGINFO_CODESET and jm_ICONV.
31648
31649 2000-03-03  Jim Meyering  <meyering@lucent.com>
31650
31651         * m4/regex.m4: Make sure re_compile_pattern accepts patterns like `{1'.
31652
31653 2000-03-02  Jim Meyering  <meyering@lucent.com>
31654
31655         * m4/timespec.m4: Require AC_HEADER_TIME before the cache check so
31656         the messages come out on separate lines.
31657
31658         * m4/jm-glibc-io.m4 (jm_FUNC_GLIBC_UNLOCKED_IO): Use AC_CHECK_DECLS,
31659         rather than jm_CHECK_DECLARATIONS.
31660         * m4/decl.m4: Remove now-unused file.
31661
31662         * m4/check-decl.m4 (AC_CHECK_DECLS): Add getlogin, ttyname, and
31663         geteuid.
31664
31665 2000-03-02  Jim Meyering  <meyering@lucent.com>
31666
31667         * lib/Makefile.am (EXTRA_DIST): Add config.charset.
31668
31669 2000-03-01  Jim Meyering  <meyering@lucent.com>
31670
31671         * lib/localcharset.c: Guard some #includes with `#if HAVE_...'.
31672         * lib/unicodeio.c: Likewise.
31673
31674 2000-03-01  Bruno Haible  <haible@clisp.cons.org>
31675
31676         * lib/config.charset: New file.
31677         * lib/localcharset.c: New file.
31678         * lib/unicodeio.h, lib/unicodeio.c: New files.
31679         * lib/Makefile.am (DEFS): Add -DLIBDIR=...
31680         (libfetish_a_SOURCES): Add localcharset.c and unicodeio.c.
31681         (noinst_HEADERS): Add unicodeio.h.
31682         (all-local, install-exec-local, charset.alias): New targets.
31683
31684 2000-02-28  Paul Eggert  <eggert@twinsun.com>
31685
31686         * lib/quotearg.c (ALERT_CHAR): New macro.
31687         (quotearg_buffer_restyled): Use it.
31688
31689 2000-02-27  Jim Meyering  <meyering@lucent.com>
31690
31691         * m4/check-decl.m4: Add getenv to the list.
31692
31693 2000-02-27  Jim Meyering  <meyering@lucent.com>
31694
31695         * lib/strtoumax.c: Fix typo in decl of strtoul: s/long long/long/.
31696         Guard declaration of strtoull also with `&& HAVE_UNSIGNED_LONG_LONG'.
31697
31698         * lib/backupfile.c: Guard inclusion of stdlib.h with
31699         `#if HAVE_STDLIB_H', not `#if STDC_HEADERS'.
31700         Declare malloc if needed.
31701
31702         * lib/backupfile.c: Use `#if !HAVE_DECL...' instead of
31703         `#ifndef HAVE_DECL..'
31704         now that autoconf always defines the HAVE_DECL_ symbols.
31705         * lib/human.c: Likewise.
31706         * lib/same.c: Likewise.
31707         * lib/strtoumax.c: Likewise.
31708
31709         * lib/backupfile.c: Arrange for cpp to fail if the configure-time
31710         declaration check was not run.
31711         * lib/hash.c: Likewise.
31712         * lib/human.c: Likewise.
31713         * lib/same.c: Likewise.
31714         * lib/strtoumax.c: Likewise.
31715
31716         * lib/userspec.c (parse_user_spec): If there is no `:' but there is a
31717         `.', then first look up the entire `.'-containing string as a login
31718         name.
31719
31720 2000-02-23  Jim Meyering  <meyering@lucent.com>
31721
31722         * m4/check-decl.m4: Now that we have the new AC_CHECK_DECLS, use it
31723         in place of my hack.
31724
31725 2000-02-18  Paul Eggert  <eggert@twinsun.com>
31726
31727         * lib/getdate.y: Handle two-digit years with leading zeros correctly.
31728         (textint): New typedef.
31729         (parser_control): Member year changed from int to textint.
31730         All uses changed.
31731         (YYSTYPE): Removed; replaced by %union with int and textint members.
31732         (tDAY, tDAY_UNIT, tDAYZONE, tHOUR_UNIT, tID, tLOCAL_ZONE, tMERIDIAN,
31733         tMINUTE_UNIT, tMONTH, tMONTH_UNIT tSEC_UNIT, tSNUMBER, tUNUMBER,
31734         tYEAR_UNIT, tZONE, o_merid): Now of type <intval>.
31735         (tSNUMBER, tUNUMBER): Now of type <textintval>.
31736         (date, number, to_year): Use width of number in digits, not its value,
31737         to determine whether it's a 2-digit year, or a 2-digit time.
31738         (yylex): Store number of digits of numeric tokens.
31739         Reported by John Kendall.
31740
31741         (parser_control): Changed from struct parser_control to typedef (for
31742         consistency).  All uses changed.
31743
31744         (tID): Removed; not used.
31745         (yylex): Return '?' for unknown identifiers, rather than (unused) tID.
31746
31747 2000-02-14  Paul Eggert  <eggert@twinsun.com>
31748
31749         * lib/getpagesize.h (getpagesize): Port to VMS for Alpha;
31750         adapted from changes to grep getpagesize.h by Martin P.J. Zinser.
31751
31752 2000-02-12  Jim Meyering  <meyering@lucent.com>
31753
31754         * lib/userspec.c (ISDIGIT): Define it.
31755         (isdigit): Remove definition.
31756         (is_number): Use ISDIGIT, not isdigit.
31757         <libintl.h>: Include.
31758         (_ and N_): Define.
31759         (parse_user_spec): Mark translatable strings.
31760
31761 2000-02-10  Jim Meyering  <meyering@lucent.com>
31762
31763         With these changes, nanosleep.[ch] are finally enough like the other
31764         lib/* replacement files to compile on a few more losing systems.
31765
31766         * lib/nanosleep.h: Don't include config.h.
31767         Remove prototype from declaration of nanosleep.
31768         (PARAMS): Remove now-unneeded definition.
31769         * lib/nanosleep.c: #undef nanosleep.
31770         (rpl_nanosleep): Rename from nanosleep.
31771
31772 2000-02-10  Jim Meyering  <meyering@lucent.com>
31773
31774         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Rename replacement function from
31775         gnu_nanosleep to rpl_nanosleep.
31776
31777 2000-02-09  Jim Meyering  <meyering@lucent.com>
31778
31779         * m4/lib-check.m4 (jm_LIB_CHECK): Fix typo: check for sp_pwdp in
31780         struct spwd, rather than in struct passwd.  Reported by Gaël Quéri.
31781
31782 2000-02-08  Akim Demaille  <akim@epita.fr>
31783
31784         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Quote square brackets with
31785         `[' and `]' and remove uses of `changequote'.
31786         (AC_SYS_LARGEFILE_MACRO_VALUE): Likewise.
31787         (AC_SYS_LARGEFILE): Likewise.
31788         * m4/gettext.m4 (AM_GNU_GETTEXT): Likewise.
31789         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME): Remove now-unnecessary use
31790         of changequote.
31791         * m4/regex.m4 (jm_INCLUDED_REGEX): Likewise.
31792         * m4/readdir.m4 (jm_FUNC_READDIR): Likewise
31793         * m4/memcmp.m4 (jm_AC_FUNC_MEMCMP): Likewise, and add `int' for main.
31794         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Likewise.
31795
31796 2000-02-05  Jim Meyering  <meyering@lucent.com>
31797
31798         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require most macros.
31799         Remove explicit use of AC_HEADER_TIME.  It is required by
31800         jm_CHECK_TYPE_STRUCT_TIMESPEC.  Using AC_HEADER_TIME and
31801         `AC_REQUIRE'ing jm_CHECK_TYPE_STRUCT_TIMESPEC provoked a but
31802         in autoconf whereby the expansion of the latter ended up preceding
31803         the expansion of its prerequisite, AC_HEADER_TIME.
31804         Reported by Volker Borchert.
31805
31806 2000-02-03  Jim Meyering  <meyering@lucent.com>
31807
31808         * m4/prereq.m4 (jm_PREREQ_READUTMP): Check for utmpxname.
31809
31810 2000-02-03  Jim Meyering  <meyering@lucent.com>
31811
31812         * lib/readutmp.c (read_utmp): Guard with `#ifdef UTMP_NAME_FUNCTION',
31813         rather than with `#if HAVE_UTMPNAME'.
31814
31815 2000-02-02  Jim Meyering  <meyering@lucent.com>
31816
31817         * m4/prereq.m4 (jm_PREREQ_ADDEXT): Fix typo that resulted in no
31818         definition of HAVE_PATHCONF: s/AC_CHECK_FUNC/AC_CHECK_FUNCS/.
31819         Reported by Eli Zaretskii.
31820
31821 2000-02-01  Jim Meyering  <meyering@lucent.com>
31822
31823         * lib/readutmp.h (UT_USER): Add parens.  From Andreas Schwab.
31824
31825 2000-01-31  Jim Meyering  <meyering@lucent.com>
31826
31827         * m4/check-decl.m4 (jm_CHECK_DECLS): Add nanosleep to the list of
31828         functions.  Add the time.h and sys/time.h headers along with the
31829         AC_REQUIRE'ment of AC_HEADER_TIME.
31830
31831 2000-01-31  Jim Meyering  <meyering@lucent.com>
31832
31833         * lib/nanosleep.h (nanosleep): Guard declaration with
31834         `#if ! HAVE_DECL_NANOSLEEP'.
31835         Without this, OFS gets a redeclaration error for rpl_nanosleep, due to
31836         the declaration in that vendor's sys/timers.h.
31837         Reported by Christian Krackowizer.
31838
31839         * lib/quotearg.c (ISASCII): Add #undef and move definition to follow
31840         inclusion of wctype.h to work around Solaris 2.6 namespace pollution.
31841         (ISPRINT): Likewise.
31842         Reported by Tom Tromey.
31843
31844 2000-01-30  Jim Meyering  <meyering@lucent.com>
31845
31846         * m4/lib-check.m4: Clean up some kludgy old shadow password tests.
31847
31848         * m4/prereq.m4 (utmp_includes): Define.
31849         Check for ut_user and ut_name members in both struct utmpx
31850         and struct utmp.
31851
31852 2000-01-30  Jim Meyering  <meyering@lucent.com>
31853
31854         * lib/readutmp.c (extract_trimmed_name): Use UT_USER instead of
31855         hard-coding uses of ->ut_name.  The latter doesn't work with new Linux
31856         header files where only utmpx.ut_user is declared.
31857
31858         * lib/readutmp.h (UT_USER): Define.
31859
31860 2000-01-29  Jim Meyering  <meyering@lucent.com>
31861
31862         * m4/lib-check.m4: New file containing library-related checks from
31863         fileutils and sh-utils (textutils had none).
31864
31865 2000-01-28  Jim Meyering  <meyering@lucent.com>
31866
31867         * m4/perl.m4: Change format of warning message to look more like that
31868         from the missing script.  Suggestion from François Pinard.
31869
31870 2000-01-25  Jim Meyering  <meyering@lucent.com>
31871
31872         * m4/timespec.m4: Require AC_HEADER_TIME, and include sys/time.h as
31873         well as time.h in the compile check.
31874         * m4/nanosleep.m4: Require AC_HEADER_TIME rather than simply using it.
31875         Fix typo in cross-compiling case: s/yes/no/.
31876
31877 2000-01-23  Jim Meyering  <meyering@lucent.com>
31878
31879         * m4/jm-macros.m4: Move df-related tests here from
31880         fileutils/configure.in
31881
31882         * m4/ls-mntd-fs.m4: s/list_mounted_fs/ac_list_mounted_fs/
31883         (jm_LIST_MOUNTED_FILESYSTEMS): Take two parameters.
31884
31885         * m4/fsusage.m4: New file.  Extracted from fileutils/configure.in.
31886         s/space/ac_fsusage_space/.
31887         (jm_FILE_SYSTEM_USAGE): Take two parameters.
31888
31889         * m4/ftruncate.m4: New file (derived from part of
31890         fileutils/configure.in).
31891         * m4/jm-macros.m4 (jm_FUNC_FTRUNCATE): AC_REQUIRE it.
31892         (jm_CHECK_ALL_TYPES): Require AC_HEADER_MAJOR and AC_HEADER_DIRENT.
31893
31894         * m4/jm-macros.m4 (OPTIONAL_BIN_PROGS, OPTIONAL_BIN_ZCRIPTS, MAN):
31895         AC_SUBST these here, rather than just in sh-util/configure.in, so
31896         that the now-shared-by-fileutils-and-textutils lib/Makefile.am are
31897         all the same.
31898         (AM_FUNC_OBSTACK): Add (from fileutils/configure.in).
31899         (AC_CHECK_FUNCS): Merge all checks from fileutils, textutils, sh-utils.
31900         (AM_FUNC_STRTOD): Added (from textutils', sh-utils' configure.in).
31901         (AC_SUBST(POW_LIBM)): Likewise.
31902         (AC_SUBST(DF_PROG)): Moved from fileutils/configure.in.
31903
31904 2000-01-23  Jim Meyering  <meyering@lucent.com>
31905
31906         * lib/Makefile.am (libfetish_a_SOURCES): Remove explicit mention of
31907         obstack.c.
31908
31909 2000-01-22  Jim Meyering  <meyering@lucent.com>
31910
31911         * m4/jm-macros.m4: Call AC_PROG_CC_STDC just before AC_C_CONST.
31912
31913         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Add wctype.h.
31914
31915         * m4/jm-macros.m4 (AC_CHECK_HEADERS): Add checks from fileutils'
31916         configure.in
31917         (AC_CHECK_HEADERS): Likewise for sh-utils.
31918         (AC_CHECK_HEADERS): Likewise for textutils.
31919         Merge the three lists of headers.
31920
31921         * m4/prereq.m4 (jm_PREREQ_ADDEXT): New macro.  Parts moved here
31922         from fileutils' configure.in.
31923
31924         * m4/decl.m4: Remove kludgy `test -z $ac_...AC_CHECK_HEADERS(...)'
31925         code. Moved tests into their own function (_jm_DECL_HEADERS) in
31926         check-decl.m4.
31927
31928         * m4/check-decl.m4: Use #if rather than #ifdef.
31929         Add HAVE_DECL_STRTOUL and HAVE_DECL_STRTOULL.
31930         (jm_CHECK_DECLARATIONS): Add strtoul strtoull.
31931         (_jm_DECL_HEADERS): Define new function.
31932         (jm_CHECK_DECLARATIONS): Require it.
31933
31934 2000-01-22  Jim Meyering  <meyering@lucent.com>
31935
31936         * lib/strtoumax.c: [! HAVE_DECL_STRTOUL]: Declare strtoul.
31937         [! HAVE_DECL_STRTOULL]: Declare strtoull.
31938         Required for some AIX systems.  Reported by Christian Krackowizer.
31939         [TESTING] (main): New function.
31940
31941         1997-10-17  Eli Zaretskii  <eliz@is.elta.co.il>
31942         * lib/dirname.c (dir_name): Support for DOS-style file names with drive
31943         letters.
31944
31945         * lib/quotearg.c [HAVE_WCTYPE_H]: Include <wctype.h> for decl of
31946         iswprint.
31947
31948         * lib/strverscmp.c (ISDIGIT): Define.
31949         (strverscmp): Use ISDIGIT, not isdigit.
31950
31951 2000-01-19  Jim Meyering  <meyering@lucent.com>
31952
31953         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Include <sys/time.h>, too.
31954         Use AC_HEADER_TIME.  Volker Borchert reported that OpenBSD-2.3/sparc
31955         defines `struct timespec' in <sys/time.h>
31956
31957         * m4/c-bs-a.m4: Remove uses of changequote altogether.
31958         Thanks to Akim for explaining.
31959
31960 2000-01-17  Paul Eggert  <eggert@twinsun.com>
31961
31962         * lib/nanosleep.c (nanosleep):
31963         Don't use SA_INTERRUPT to decide whether to call sigaction, as
31964         POSIX.1 doesn't require SA_INTERRUPT and some systems
31965         (e.g. Solaris 7) don't define it.  Use SA_NOCLDSTOP instead;
31966         it's been part of POSIX.1 since day 1 (in 1988).
31967
31968 2000-01-17  Jim Meyering  <meyering@lucent.com>
31969
31970         * lib/interlock: Remove unused file.  Reported by François Pinard.
31971
31972 2000-01-16  Paul Eggert  <eggert@twinsun.com>
31973
31974         * lib/quotearg.c (quotearg_buffer_restyled): Do not quote
31975         alert, backslash, formfeed, and vertical tab unnecessarily in
31976         shell quoting style.
31977
31978 2000-01-16  Jim Meyering  <meyering@lucent.com>
31979
31980         * m4/jm-macros.m4: Require jm_FUNC_GROUP_MEMBER, jm_FUNC_PUTENV,
31981         AM_FUNC_ERROR_AT_LINE, jm_FUNC_GNU_STRFTIME, jm_FUNC_MKTIME,
31982         jm_FUNC_GETGROUPS AC_FUNC_VPRINTF, AC_FUNC_ALLOCA,
31983         AM_FUNC_GETLOADAVG, and jm_SYS_PROC_UPTIME.
31984
31985 2000-01-16  Jim Meyering  <meyering@lucent.com>
31986
31987         * m4/c-bs-a.m4: Use `changequote(<<,>>)', rather than `changequote(, )'
31988         because the latter didn't work.
31989
31990 2000-01-15  Jim Meyering  <meyering@lucent.com>
31991
31992         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add gethostname and getusershell.
31993         (AC_REPLACE_FUNCS): Add memcpy and memset.
31994         Add these, too: stime strcspn stpcpy strstr strtol strtoul.
31995         Add strpbrk.
31996         Add these: euidaccess memcmp mkdir rmdir rpmatch strndup strverscmp.
31997
31998 2000-01-12  Jim Meyering  <meyering@lucent.com>
31999
32000         * m4/prereq.m4 (jm_PREREQ_CANON_HOST): New macro.
32001         (jm_PREREQ): Use it.
32002         (jm_PREREQ_READUTMP): New macro.
32003         (jm_PREREQ): Use it.
32004
32005 2000-01-11  Paul Eggert  <eggert@twinsun.com>
32006
32007         Quote multibyte characters correctly.
32008         * m4/c-bs-a.m4: New file.
32009         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): New macro.
32010         (jm_PREREQ): Use it.
32011
32012 2000-01-11  Paul Eggert  <eggert@twinsun.com>
32013
32014         * m4/uintmax_t.m4: Port to autoconf 2.13.
32015
32016 2000-01-08  Jim Meyering  <meyering@ascend.com>
32017
32018         * m4/strerror_r.m4 (jm_FUNC_STRERROR_R): New file/macro.
32019         * m4/jm-macros.m4 (jm_FUNC_STRERROR_R): Require it.
32020
32021 2000-01-04  Jim Meyering  <meyering@ascend.com>
32022
32023         * m4/d-type.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Rename from
32024         jm_STRUCT_DIRENT_D_TYPE.
32025         * m4/d-ino.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_INO): Rename from
32026         jm_STRUCT_DIRENT_D_INO.
32027         * m4/utimbuf.m4 (jm_CHECK_TYPE_STRUCT_UTIMBUF): Rename from
32028         jm_STRUCT_UTIMBUF.
32029         * m4/jm-macros.m4: Reflect s/jm_STRUCT_/jm_CHECK_TYPE_STRUCT_/
32030         renamings.
32031         * m4/utime.m4: Likewise.
32032
32033         * m4/timespec.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC): New file, macro.
32034         * m4/jm-macros.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC): Require it.
32035
32036 2000-01-03  Paul Eggert  <eggert@twinsun.com>
32037
32038         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Search for nanosleep in -lrt
32039         (for Solaris 7) and in -lposix4 (for Solaris 2.5.1).
32040
32041 2000-01-02  Jim Meyering  <meyering@ascend.com>
32042
32043         * m4/search-libs.m4: Escape `$' in $3 of dnl comment.  I no longer
32044         remember if this is necessary.
32045
32046 1999-12-26  Jim Meyering  <meyering@ascend.com>
32047
32048         * m4/jm-macros.m4: Use it here.
32049         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): New file/macro.
32050
32051 1999-12-23  Jim Meyering  <meyering@ascend.com>
32052
32053         * m4/jm-macros.m4: Check for clock_gettime (moved from
32054         fileutils/configure.in)
32055         Check for gettimeofday.
32056
32057 1999-12-20  Jim Meyering  <meyering@ascend.com>
32058
32059         * m4/strftime.m4: Remove kludge, now that I'm using the fixed
32060         autoconf-2.14a-1999-12-20.
32061
32062 1999-12-19  Jim Meyering  <meyering@ascend.com>
32063
32064         * m4/lstat-slash.m4: New file.
32065         * m4/jm-macros.m4: Use the new macro:
32066         jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
32067
32068 1999-12-07  Jim Meyering  <meyering@ascend.com>
32069
32070         * m4/perl.m4: Require that File::Compare be available, too.
32071         Too many systems seem to lack it.
32072
32073         * m4/strftime.m4: Add checks for most of the cpp macros tested in
32074         GNU's strftime.c.  Prompted by a patch from Paul Eggert.
32075
32076 1999-11-18  Paul Eggert  <eggert@twinsun.com>
32077
32078         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Work around a
32079         problem with the QNX 4.25 shell, which doesn't propagate exit
32080         status of failed commands inside shell assignments.
32081
32082 1999-11-17  Jim Meyering  <meyering@ascend.com>
32083
32084         * m4/gettext.m4: Use new AC_CONFIG_LINKS in place of AC_LINK_FILES.
32085
32086 1999-11-07  Jim Meyering  <meyering@ascend.com>
32087
32088         * m4/getloadavg.m4: Add `, 1, [FIXME]' to each use of AC_DEFINE.
32089
32090 1999-11-06  Jim Meyering  <meyering@ascend.com>
32091
32092         * m4/link-follow.m4 (jm_AC_FUNC_LINK_FOLLOWS_SYMLINK): New file/macro.
32093         * m4/jm-macros.m4 (jm_MACROS): Use it here.
32094
32095 1999-11-05  Jim Meyering  <meyering@ascend.com>
32096
32097         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Move some tests from
32098         configure.in of textutils, fileutils, and sh-utils into this one
32099         (shared between those packages) file.
32100         Use `AC_CHECK_MEMBERS((struct stat.st_blksize))' instead of deprecated
32101         AC_STRUCT_ST_BLKSIZE.
32102
32103 1999-11-03  Jim Meyering  <meyering@ascend.com>
32104
32105         * m4/ssize_t.m4: Remove file.  No longer needed since the new version
32106         of AC_CHECK_TYPE checks includes unistd.h.
32107         * m4/jm-macros.m4: Use straight `AC_CHECK_TYPE(ssize_t, int)'.
32108         Suggestion from Akim Demaille.
32109
32110 1999-10-30  Jim Meyering  <meyering@ascend.com>
32111
32112         * m4/uintmax_t.m4: Require 2.14a.  Remove backslash before backtick in
32113         m4-quoted string.
32114         * m4/ls-mntd-fs.m4: Likewise.
32115         * m4/jm-macros.m4: Likewise.  Also, use AC_TYPE_SSIZE_T instead
32116         * m4/jm-winsz1.m4: Likewise.
32117
32118         * m4/const.m4: Remove file, since the fix made it into the experimental
32119         version of autoconf.
32120         * m4/mktime.m4: Likewise.
32121
32122         * m4/check-type.m4: Remove file, now that the latest version of
32123         AC_CHECK_TYPE takes a third arg to specify additional #includes.
32124
32125         * m4/ssize_t.m4: New file, requires experimental version of autoconf.
32126         * m4/jm-macros.m4: Use new AC_TYPE_SSIZE_T instead of my hacked
32127         AC_CHECK_TYPE.
32128
32129 1999-10-04  Jim Meyering  <meyering@ascend.com>
32130
32131         * m4/jm-macros.m4: Don't require autoconf-2.14.1.
32132
32133 1999-09-22  Paul Eggert  <eggert@twinsun.com>
32134
32135         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Work around GCC
32136         2.95.1 bug with HP-UX 10.20.
32137
32138 1999-09-17  Jim Meyering  <meyering@ascend.com>
32139
32140         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add strdup.
32141         Paul Nevai reported a link failure on a NeXT CUBE with NeXTSTEP 3.3
32142         due to missing strdup (against sh-utils-2.0).
32143
32144 1999-08-29  Jim Meyering  <meyering@ascend.com>
32145
32146         * m4/jm-macros.m4: Require jm_BISON.
32147         * m4/bison.m4: New file.
32148
32149 1999-08-17  Paul Eggert  <eggert@twinsun.com>
32150
32151         * m4/largefile.m4 (AC_SYS_LARGEFILE): Fix typo: missing comma
32152         in value for _FILE_OFFSET_BITS, which broke ports to HP-UX 10.20.
32153
32154 1999-08-05  Jim Meyering  <meyering@ascend.com>
32155
32156         * m4/getline.m4: Rename test file from conftestdata to conftest.data
32157         to avoid conflicts with `conftest' on 8+3 filesystems.
32158         Suggestion from Eli Zaretskii.
32159
32160 1999-08-04  Jim Meyering  <meyering@ascend.com>
32161
32162         * m4/jm-macros.m4: Move a 4-line block of code from the configure.in of
32163         fileutils and sh-utils (textutils's getline test was inadequate).
32164         (AM_FUNC_GETLINE): Run this test.
32165         (AC_CHECK_FUNCS): Check for getdelim.
32166         Reported by Bob Proulx.
32167
32168 1999-08-02  Jim Meyering  <meyering@ascend.com>
32169
32170         * m4/jm-macros.m4: Add a comment.
32171
32172 1999-08-01  Paul Eggert  <eggert@twinsun.com>
32173
32174         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Check whether
32175         <inttypes.h> defines strtoumax as a macro (and not as a
32176         function).
32177
32178 1999-08-01  Paul Eggert  <eggert@twinsun.com>
32179
32180         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Make sure
32181         that we can shift, multiply and divide unsigned long long
32182         values; Ultrix cc can't do it.
32183
32184 1999-08-01  Paul Eggert  <eggert@twinsun.com>
32185
32186         * m4/mktime.m4: New file, which is a preview of what should appear
32187         in the next public autoconf release.
32188
32189 1999-08-01  Paul Eggert  <eggert@twinsun.com>
32190
32191         * m4/lfs.m4: Remove this file.
32192         * m4/largefile.m4: New file.  It contains the old contents of
32193         lfs.m4, except that all names with prefix AC_LFS have been
32194         changed to use the prefix AC_SYS_LARGEFILE instead, to be
32195         compatible with future autoconf versions.  Also, some minor m4
32196         quoting problems have been fixed.
32197
32198 1999-08-01  Paul Eggert  <eggert@twinsun.com>
32199
32200         * m4/gettext.m4 (AM_WITH_NLS): Remove unnecessary lines.
32201         Fix typo: $nls_cv_header_intl was misspelled as $nsl_cv_header_intl.
32202         (AM_GNU_GETTEXT): Fix problem with brackets and m4 quoting,
32203         and simplify the shell code.
32204
32205 1999-08-01  Jim Meyering  <meyering@ascend.com>
32206
32207         * m4/mktime.m4 (AC_FUNC_MKTIME): Undefine to avoid syntax errors from
32208         m4.
32209
32210 1999-07-20  Jim Meyering  <meyering@ascend.com>
32211
32212         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memmove.
32213
32214 1999-07-15  Jim Meyering  <meyering@ascend.com>
32215
32216         * m4/jm-macros.m4 (AC_CHECK_FUNCS): Check for getpagesize.
32217
32218 1999-05-22  Jim Meyering  <meyering@ascend.com>
32219
32220         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memchr.
32221
32222 1999-05-20  Jim Meyering  <meyering@ascend.com>
32223
32224         * m4/search-libs.m4 [AC_SEARCH_LIBS]: Quote name in undefine.
32225         Add a colon after each `then' in case $4 is empty.
32226
32227 1999-05-16  Jim Meyering  <meyering@ascend.com>
32228
32229         * m4/search-libs.m4: New file to override autoconf's AC_SEARCH_LIBS.
32230
32231 1999-05-10  Jim Meyering  <meyering@ascend.com>
32232
32233         * m4/jm-mktime.m4: Reflect renaming: AM_FUNC_MKTIME -> AC_FUNC_MKTIME.
32234
32235         * m4/jm-macros.m4: Require 2.14.1, since we use newly-renamed
32236         AC_FUNC_MKTIME.
32237
32238 1999-05-10  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
32239
32240         * m4/jm-mktime.m4, putenv.m4: Fix typos in config.h comments.
32241
32242 1999-05-04  Paul Eggert  <eggert@twinsun.com>
32243
32244         * m4/lfs.m4 (AC_LFS): -n32, -o32, and -n64 should be in CFLAGS,
32245         not CPPFLAGS, so that linking works correctly in IRIX.
32246
32247 1999-04-30  Paul Eggert  <eggert@twinsun.com>
32248
32249         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add dup2.
32250
32251 1999-04-20  Paul Eggert  <eggert@twinsun.com>
32252
32253         * m4/uintmax_t.m4 (jm_AC_TYPE_UINTMAX_T): Move unsigned long
32254         long check into new jm_AC_TYPE_UNSIGNED_LONG_LONG macro.
32255         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require
32256         jm_AC_TYPE_UNSIGNED_LONG_LONG.
32257         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): New file/macro.
32258
32259         * m4/lfs.m4: Port to AIX and HP-UX.  Support cross-compilation.
32260
32261 1999-04-20  Jim Meyering  <meyering@ascend.com>
32262
32263         * m4/xstrtoumax.m4: Require jm_AC_TYPE_UNSIGNED_LONG_LONG.
32264         AC_REPLACE xstroull if necessary.  From Paul Eggert.
32265         (AC_CHECK_FUNCS): Remove strtoull, strtoumax, strtouq.
32266
32267 1999-04-18  Jim Meyering  <meyering@ascend.com>
32268
32269         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): New file/macro.
32270         * m4/jm-macros.m4: Use it.
32271
32272 1999-04-06  Jim Meyering  <meyering@ascend.com>
32273
32274         * m4/strftime.m4: Remove test for %f.
32275
32276 1999-03-29  Jim Meyering  <meyering@ascend.com>
32277
32278         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): New macro, contains the
32279         superset of the AC_TYPE_* checks in the textutils, fileutils,
32280         and sh-utils, plus AC_TYPE_PID_T.  Paul Eggert suggested adding
32281         AC_TYPE_PID_T.
32282
32283 1999-03-28  Jim Meyering  <meyering@ascend.com>
32284
32285         * m4/jm-macros.m4: Define GNU_PACKAGE here.
32286         Be sure to AC_SUBST it, once again, so that @GNU_PACKAGE@ is
32287         replaced e.g., in the *.sh files of the sh-utils.
32288
32289 1999-03-20  Jim Meyering  <meyering@ascend.com>
32290
32291         * m4/jm-macros.m4: s/jm_WITH_REGEX/jm_INCLUDED_REGEX/.
32292         * m4/regex.m4 (jm_INCLUDED_REGEX): Rename from jm_WITH_REGEX.
32293         Don't depend on AM_GLIBC.  Suggestions from Alain Magloire.
32294
32295 1999-03-19  Jim Meyering  <meyering@ascend.com>
32296
32297         * m4/jm-winsz1.m4 (jm_WINSIZE_IN_PTEM): New macro.
32298
32299 1999-03-12  Jim Meyering  <meyering@ascend.com>
32300
32301         * m4/jm-macros.m4: Use AC_FUNC_SETVBUF_REVERSED.
32302
32303 1999-03-07  Jim Meyering  <meyering@ascend.com>
32304
32305         * m4/jm-glibc-io.m4: Use only those *_unlocked macros that are
32306         declared.
32307
32308 1999-02-17  Jim Meyering  <meyering@ascend.com>
32309
32310         * m4/gettext.m4 (AM_GNU_GETTEXT): Do `changequote' around use of
32311         brackets in macro definition.  From Eli Zaretskii and Alain Magloire.
32312
32313 1999-02-07  Jim Meyering  <meyering@ascend.com>
32314
32315         * m4/group-member.m4: New file -- extracted from sh-utils'
32316         configure.in.
32317
32318         1999-02-05  Eli Zaretskii  <eliz@is.elta.co.il>
32319         * m4/gettext.m4: Support DOS-style d:/foo/bar absolute file names.
32320
32321 1999-02-06  Jim Meyering  <meyering@ascend.com>
32322
32323         * m4/chown.m4: Use `AC_SUBST(LIBOBJS)' since we set LIBOBJS.
32324         * m4/fnmatch.m4: Likewise.
32325         * m4/getgroups.m4: Likewise.
32326         * m4/lstat.m4: Likewise.
32327         * m4/malloc.m4: Likewise.
32328         * m4/putenv.m4: Likewise.
32329         * m4/realloc.m4: Likewise.
32330         * m4/regex.m4: Likewise.
32331         * m4/stat.m4: Likewise.
32332         * m4/strftime.m4: Likewise.
32333         Suggestion from Alain Magloire.
32334
32335         * m4/chown.m4: Use `.$ac_objext', not `.o'.
32336         * m4/fnmatch.m4: Likewise.
32337         * m4/getgroups.m4: Likewise.
32338         * m4/getline.m4: Likewise.
32339         * m4/lstat.m4: Likewise.
32340         * m4/malloc.m4: Likewise.
32341         * m4/memcmp.m4: Likewise.
32342         * m4/putenv.m4: Likewise.
32343         * m4/realloc.m4: Likewise.
32344         * m4/regex.m4: Likewise.
32345         * m4/stat.m4: Likewise.
32346         * m4/strftime.m4: Likewise.
32347         Suggestion from Alain Magloire.
32348
32349         * m4/jm-macros.m4: Actually invoke jm_WITH_REGEX now that it requires
32350         an argument.
32351
32352         * m4/regex.m4: Add a run-time Test for proper operation of
32353         re_compile_pattern.
32354
32355 1999-01-31  Jim Meyering  <meyering@ascend.com>
32356
32357         * m4/getloadavg.m4: Check for locale.h and the function, setlocale.
32358
32359 1999-01-30  Jim Meyering  <meyering@ascend.com>
32360
32361         * m4/check-type.m4: Use 3-arg form of AC_DEFINE.
32362
32363         * m4/jm-mktime.m4: Make this a wrapper around the official
32364         AM_FUNC_MKTIME rather than my private copy, now that the official one
32365         is up to date.
32366         * m4/mktime.m4: Remove file.
32367
32368         * m4/getloadavg.m4: Use 3-arg form of AC_DEFINE.
32369         * m4/uptime.m4: Likewise.
32370         * m4/uintmax_t.m4: Likewise.
32371
32372 1999-01-28  Jim Meyering  <meyering@ascend.com>
32373
32374         * m4/jm-macros.m4: Use jm_AFS.
32375         * m4/afs.m4: New file (from fileutils' configure.in).
32376
32377         * m4/assert.m4: Use the 3-argument forms of AC_DEFINE* macros.
32378         * m4/chown.m4: Likewise.
32379         * m4/d-ino.m4: Likewise.
32380         * m4/d-type.m4: Likewise.
32381         * m4/fnmatch.m4: Likewise.
32382         * m4/getgroups.m4: Likewise.
32383         * m4/gettext.m4: Likewise.
32384         * m4/jm-mktime.m4: Likewise.
32385         * m4/jm-winsz2.m4: Likewise.
32386         * m4/lcmessage.m4: Likewise.
32387         * m4/ls-mntd-fs.m4: Likewise.
32388         * m4/malloc.m4: Likewise.
32389         * m4/memcmp.m4: Likewise.
32390         * m4/putenv.m4: Likewise.
32391         * m4/realloc.m4: Likewise.
32392         * m4/st_mtim.m4: Likewise.
32393         * m4/strftime.m4: Likewise.
32394
32395 1999-01-16  Jim Meyering  <meyering@ascend.com>
32396
32397         * m4/jm-macros.m4 (ARGMATCH_DIE): Define.
32398         (ARGMATCH_DIE_DECL): Define.
32399
32400 1999-01-12  Jim Meyering  <meyering@ascend.com>
32401
32402         * m4/Makefile.am.in: Rewrite to avoid using fmt.
32403         Reported by Lars Hecking.
32404
32405 1999-01-10  Jim Meyering  <meyering@ascend.com>
32406
32407         * m4/fstypename.m4: Use the new 3-arg form of AC_DEFINE instead of my
32408         gross kludge.
32409         * m4/inttypes_h.m4: Likewise.
32410         * m4/lstat.m4: Likewise.
32411         * m4/malloc.m4: Likewise.
32412         * m4/readdir.m4: Likewise.
32413         * m4/realloc.m4: Likewise.
32414         * m4/st_dm_mode.m4: Likewise.
32415         * m4/stat.m4: Likewise.
32416         * m4/utimbuf.m4: Likewise.
32417         * m4/utimes.m4: Likewise.
32418
32419         * m4/check-decl.m4: Use the new 3-arg form of AC_DEFINE instead of the
32420         AC_CHECK_FUNCS hack.  Now, it's still a hack, but at least the
32421         comments in config.h.in are meaningful.
32422
32423         * m4/jm-macros.m4: Require autoconf-2.13 here.
32424
32425         * m4/regex.m4: By default, don't use the included regex.c on systems
32426         with glibc 2.  Suggestion from Uli Drepper.
32427
32428 1999-01-02  Jim Meyering  <meyering@ascend.com>
32429
32430         * m4/jm-macros.m4: Replace strcasecmp and strncasecmp.
32431
32432 1998-12-18  Jim Meyering  <meyering@ascend.com>
32433
32434         * m4/Makefile.am.in (Makefile.am): Simplify rule.
32435         Based on a suggestion from Lars Hecking.
32436
32437 1998-11-16  Paul Eggert  <eggert@twinsun.com>
32438
32439         * m4/lfs.m4 (AC_LFS): Add support for HP-UX 10.20 and HP-UX 11.
32440
32441 1998-11-16  Jim Meyering  <meyering@ascend.com>
32442
32443         * m4/lfs.m4: Double-quote the `uname...` expression.
32444
32445 1998-11-14  Jim Meyering  <meyering@ascend.com>
32446
32447         * m4/lstat.m4: Correct comment.  POSIX does not permit it to succeed.
32448         * m4/stat.m4: Likewise.
32449
32450 1998-11-03  Jim Meyering  <meyering@ascend.com>
32451
32452         * m4/stat.m4: Rewrite to set HAVE_STAT_EMPTY_STRING_BUG.
32453         * m4/lstat.m4: Rewrite to set HAVE_LSTAT_EMPTY_STRING_BUG.
32454
32455 1998-10-18  Jim Meyering  <meyering@ascend.com>
32456
32457         * m4/check-decl.m4 (jm_CHECK_DECL_LOCALTIME_R): Remove macro.
32458
32459 1998-10-17  Jim Meyering  <meyering@ascend.com>
32460
32461         * m4/decl.m4 (jm_CHECK_DECLARATION): Don't hard-code which headers to
32462         include, though we still hard-code the `require'-like AC_CHECK_HEADERS
32463         calls for those previously hard-coded headers.  Instead, take a new
32464         parameter.
32465         (jm_CHECK_DECLARATIONS): Reflect interface change.
32466         * m4/check-decl.m4 (jm_CHECK_DECLS): Likewise.
32467         (jm_CHECK_DECL_LOCALTIME_R): New macro.
32468
32469         * m4/mktime.m4: Test for spring-forward gap before long-running test.
32470
32471 1998-10-14  Jim Meyering  <meyering@ascend.com>
32472
32473         * m4/mktime.m4: Use the more portable "TZ=PST8PDT,M4.1.0,M10.5.0"
32474         instead of "TZ=America/Vancouver".  From Paul Eggert.
32475
32476 1998-10-11  Jim Meyering  <meyering@ascend.com>
32477
32478         * m4/mktime.m4 (jm_AM_FUNC_MKTIME): New file and macro.
32479         This adds a test for a recently added compatibility fix for mktime.c.
32480         * m4/jm-mktime.m4: Require jm_AM_FUNC_MKTIME, not AM_FUNC_MKTIME.
32481
32482 1998-09-27  Jim Meyering  <meyering@ascend.com>
32483
32484         * m4/jm-macros.m4 (jm_MACROS): Require jm_FUNC_FNMATCH.
32485
32486         * m4/fnmatch.m4 (jm_FUNC_FNMATCH): New file/macro.  Extracted from
32487         ../configure.in, including a change from Gordon Matzigkeit to allow
32488         cross-compiling for the Hurd.
32489
32490         * m4/glibc.m4: New file/macro to test for the GNU C Library
32491         versions 1 and 2.  From Gordon Matzigkeit.
32492         Indent.
32493
32494 1998-09-21  Jim Meyering  <meyering@ascend.com>
32495
32496         * m4/chown.m4: Declare locals: before, after.  From Andries Brouwer.
32497
32498 1998-08-18  Paul Eggert  <eggert@twinsun.com>
32499
32500         Port nanosecond-resolution times to UnixWare 2.1.2 and
32501         pedantic Solaris 2.6.
32502
32503         * m4/st_mtim.m4 (AC_STRUCT_ST_MTIM_NSEC): Renamed from
32504         AC_STRUCT_ST_MTIM.
32505         * m4/st_mtim.m4 (AC_STRUCT_ST_MTIM_NSEC):
32506         Generate name of ns member, instead of just 1 or undef.
32507         Allow for UnixWare 2.1.2 and Solaris 2.6 if in pedantic mode.
32508
32509 1998-08-15  Jim Meyering  <meyering@ascend.com>
32510
32511         * m4/ssize_t.m4 (jm_TYPE_SSIZE_T): Remove file.
32512         * m4/check-type.m4: New file.  Replacement for AC_CHECK_TYPE.
32513         * m4/jm-macros.m4: Use the new AC_CHECK_TYPE(ssize_t, int)
32514         instead of jm_TYPE_SSIZE_T.
32515
32516 1998-08-12  Jim Meyering  <meyering@ascend.com>
32517
32518         * m4/st_dm_mode.m4: New file.  From Johan Danielsson.
32519
32520 1998-08-02  Jim Meyering  <meyering@ascend.com>
32521
32522         * m4/st_mtim.m4: Use hack to avoid having to put #undef HAVE_ST_MTIM
32523         in acconfig.h manually.
32524
32525 1998-07-31  Paul Eggert  <eggert@twinsun.com>
32526
32527         * m4/st_mtim.m4: New file.
32528
32529 1998-07-28  Jim Meyering  <meyering@ascend.com>
32530
32531         * m4/utimes.m4: Undef stat.
32532
32533 1998-07-25  Jim Meyering  <meyering@ascend.com>
32534
32535         * m4/utime.m4 (jm_FUNC_UTIME): New file and macro.
32536         * m4/utimes.m4 (jm_FUNC_UTIMES_NULL): New file and macro.
32537
32538 1998-07-09  Manfred Hollstein  <manfred@s-direktnet.de>
32539
32540         * m4/chown.m4 (jm_FUNC_CHOWN): Add a check to verify that the
32541         uid and gid actually remain unchanged.
32542
32543 1998-07-07  Jim Meyering  <meyering@ascend.com>
32544
32545         * m4/jm-glibc-io.m4: Remove fclose_unlocked.
32546
32547 1998-07-04  Jim Meyering  <meyering@ascend.com>
32548
32549         * m4/regex.m4: Use syscmd, ifelse, and sysval.  Mainly as an exercise
32550         to prove that this macro can be used in packages without regex.c.
32551
32552 1998-07-04  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
32553
32554         * m4/gettext.m4 (AM_WITH_NLS): Remove intl/libintl.h if <libintl.h>
32555         is to be used.
32556
32557 1998-07-03  Jim Meyering  <meyering@ascend.com>
32558
32559         * m4/gettext.m4: Add -lintl if it's found to be necessary.
32560
32561         * m4/gettext.m4: New file -- from gettext-0.10.35.
32562         * m4/lcmessage.m4: Likewise.
32563         * m4/progtest.m4: Likewise.
32564
32565         * m4/regex.m4 (jm_WITH_REGEX): New file and macro.
32566         * m4/jm-macros.m4: Require the new macro.
32567
32568 1998-06-29  Jim Meyering  <meyering@ascend.com>
32569
32570         * m4/fstypename.m4: Include sys/param.h.  NetBSD 1.3.1 requires this
32571         for the definition of NGROUPS (used in a system header included
32572         by sys/mount.h).
32573
32574 1998-06-28  Jim Meyering  <meyering@ascend.com>
32575
32576         * m4/ls-mntd-fs.m4: New file.
32577         * m4/fstypename.m4: New file.
32578
32579         * m4/jm-macros.m4: Require the new macro.
32580         * m4/jm-glibc-io.m4: New file.
32581
32582 1998-05-19  Jim Meyering  <meyering@ascend.com>
32583
32584         * m4/jm-macros.m4: Add jm_FUNC_LCHOWN.
32585         * m4/lchown.m4: New file.
32586
32587         * m4/Makefile.am.in: New file.
32588         * m4/Makefile.am (Makefile.am): Depend on Makefile.am.in.
32589
32590 1998-05-14  Jim Meyering  <meyering@ascend.com>
32591
32592         * m4/Makefile.am (EXTRA_DIST): Add them.
32593         * m4/jm-macros.m4: New file.
32594         * m4/utimbuf.m4: New file.
32595
32596 1998-05-12  Jim Meyering  <meyering@ascend.com>
32597
32598         * m4/Makefile.am (EXTRA_DIST): Add isc-posix.m4.
32599
32600 1998-05-11  Jim Meyering  <meyering@ascend.com>
32601
32602         * m4/isc-posix.m4: New file.
32603
32604 1998-05-10  Jim Meyering  <meyering@ascend.com>