911eaaacf5af77bbf27970955100bf445896c1be
[gnulib.git] / ChangeLog
1 2008-02-10  Jim Meyering  <meyering@redhat.com>
2
3         * build-aux/gitlog-to-changelog: Use committer date, not author date.
4
5         xstrtol_error: Fix typo.
6         * lib/xstrtol-error.c (xstrtol_error): The parameter was unused:
7         s/exit_failure/exit_status/.
8
9 2008-02-08  Jim Meyering  <meyering@redhat.com>
10
11         Avoid two "parameter unused" warnings.
12         * lib/stat-time.h (get_stat_birthtime_ns, get_stat_birthtime):
13         Mark "st" as used.
14
15         Use "git COMMAND", not "git-COMMAND".
16         * build-aux/bootstrap (version_controlled_file): s/git-rm/git-rm/.
17         * build-aux/announce-gen (get_tool_versions): Correct a diagnostic.
18         * build-aux/git-version-gen: Use "git status", not "git-status".
19
20 2008-02-07  Bruno Haible  <bruno@clisp.org>
21
22         * lib/vasnprintf.c (VASNPRINTF): Don't use %n on native Woe32 systems.
23         Avoids a crash on Windows Vista.
24         Reported by Simon Josefsson <simon@josefsson.org>.
25
26 2008-02-06  Bruno Haible  <bruno@clisp.org>
27
28         Fix *printf behaviour regarding the left-adjust flag on HP-UX 10.20.
29         * m4/printf.m4 (gl_PRINTF_FLAG_LEFTADJUST): New macro.
30         * lib/vasnprintf.c (VASNPRINTF): Handle NEED_PRINTF_FLAG_LEFTADJUST.
31         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_FLAG_LEFTADJUST): New macro.
32         (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): Invoke it.
33         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
34         gl_PRINTF_FLAG_LEFTADJUST and test its result. Invoke
35         gl_PREREQ_VASNPRINTF_FLAG_LEFTADJUST.
36         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
37         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
38         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
39         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
40         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
41         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
42         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
43         * tests/test-vasnprintf-posix.c (test_function): Add testcases for the
44         left-adjust flag.
45         * tests/test-snprintf-posix.h (test_function): Likewise.
46         * tests/test-sprintf-posix.h (test_function): Likewise.
47         * tests/test-vasprintf-posix.c (test_function): Likewise.
48         * doc/posix-functions/fprintf.texi: Update.
49         * doc/posix-functions/printf.texi: Update.
50         * doc/posix-functions/snprintf.texi: Update.
51         * doc/posix-functions/sprintf.texi: Update.
52         * doc/posix-functions/vfprintf.texi: Update.
53         * doc/posix-functions/vprintf.texi: Update.
54         * doc/posix-functions/vsnprintf.texi: Update.
55         * doc/posix-functions/vsprintf.texi: Update.
56         Reported by Peter Fales <psfales@alcatel-lucent.com>.
57
58 2008-02-06  Bruno Haible  <bruno@clisp.org>
59
60         Fix bug introduced on 2008-01-26.
61         * lib/isnan.c (FUNC): Set to rpl_isnand, not rpl_isnan.
62
63 2008-02-06  Bruno Haible  <bruno@clisp.org>
64
65         Fix bug introduced on 2007-06-10.
66         * lib/vasnprintf.c (VASNPRINTF): Perform zero-padding also if
67         !NEED_PRINTF_FLAG_ZERO.
68
69 2008-02-05  Peter O'Gorman <pogma@thewrittenword.com>
70
71         getloadavg: use libperfstat on AIX5
72         * lib/getloadavg.c, m4/getloadavg.m4 [aix]: Use libperfstat
73
74 2008-02-03  Bruno Haible  <bruno@clisp.org>
75
76         * lib/diffseq.h: Add comments about required #includes.
77         Reported by Michael Biggs <gnulib@doubleplum.net>.
78
79 2008-02-01  Bruno Haible  <bruno@clisp.org>
80
81         * users.txt: Add gnuit.
82
83 2008-01-31  Bruno Haible  <bruno@clisp.org>
84
85         * lib/md4.c (set_uint32): Mark as inline.
86         * lib/md5.c (set_uint32): Likewise.
87         * lib/sha1.c (set_uint32): Likewise.
88         * m4/md4.m4 (gl_MD4): Require AC_C_INLINE.
89         * m4/md5.m4 (gl_MD5): Likewise.
90         * m4/sha1.m4 (gl_SHA1): Likewise.
91
92 2008-01-31  Jim Meyering  <meyering@redhat.com>
93
94         Use "sizeof VAR", rather than a literal "4".
95         * lib/md5.c (md5_read_ctx): Use sizeof ctx->A, not 4.
96         * lib/md4.c (md4_read_ctx): Likewise.
97         * lib/sha1.c (sha1_read_ctx): Likewise.
98
99 2008-01-31  Simon Josefsson  <simon@josefsson.org>
100
101         * tests/test-sha1.c: New file, based on test-md5.c.
102
103         * modules/crypto/sha1-tests: New file.
104
105 2008-01-31  Simon Josefsson  <simon@josefsson.org>
106
107         * lib/sha1.h (SHA1_DIGEST_SIZE): Define.
108
109 2008-01-31  Jim Meyering  <meyering@redhat.com>
110
111         Prefer "sizeof v" over the equivalent "4".
112         * lib/md4.c (set_uint32): Use "sizeof v" as memcpy length, not 4.
113         * lib/md5.c (set_uint32): Likewise.
114         * lib/sha1.c (set_uint32): Likewise.
115
116 2008-01-31  Simon Josefsson  <simon@josefsson.org>
117
118         * lib/sha1.c (set_uint32): Mark function as static.
119
120 2008-01-31  Simon Josefsson  <simon@josefsson.org>
121
122         md2: clarify comments to say that alignment is not required.
123         * lib/md2.h: Remove warning about alignment in comment.
124         * lib/md2.c (md2_read_ctx, md2_finish_ctx): Doc fix, alignment has
125         never been required.
126
127 2008-01-31  Simon Josefsson  <simon@josefsson.org>
128
129         md4: adapt alignment constraint fix from sha1.
130         * lib/md4.c (set_uint32): New function, from sha1.c
131         (md4_read_ctx): Use it.
132         (md4_finish_ctx): Doc fix.
133         * lib/md4.h: Doc fix.
134
135 2008-01-31  Simon Josefsson  <simon@josefsson.org>
136
137         md5: adapt alignment constraint fix from sha1.
138         * lib/md5.c (set_uint32): New function, from sha1.c
139         (md5_read_ctx): Use it.
140         (md5_finish_ctx): Doc fix.
141         * lib/md5.h: Doc fix.
142
143 2008-01-30  Peter Palfrader  <weasel@debian.org>
144
145         sha1: remove the result buffer alignment constraint
146         * lib/sha1.c (set_uint32): New function.
147         (sha1_read_ctx): Rewrite to remove the result buffer alignment
148         constraint.
149         (sha1_finish_ctx): Remove comment warning about alignment constraint.
150         * lib/sha1.h: Likewise.
151
152 2008-01-30  Andreas Schwab  <schwab@suse.de>
153             Bruno Haible  <bruno@clisp.org>
154
155         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Include <float.h> and ensure a
156         correct definition of LDBL_MIN_EXP.
157
158 2008-01-30  Karl Berry  <karl@gnu.org>
159
160         * config/srclist-update: try to preserve x bit on updates.
161         * config/srclistvars.sh: update for karl.
162
163 2008-01-29  Jim Meyering  <meyering@redhat.com>
164
165         vasnprintf.c: Avoid warning about unused label
166         * lib/vasnprintf.c (VASNPRINTF) [!USE_SNPRINTF]: Guard the
167         "overflow" label definition and associated code with the
168         same cpp condition that guards the sole use of that label.
169
170 2008-01-26  Bruno Haible  <bruno@clisp.org>
171
172         * m4/isnanl.m4 (gl_HAVE_ISNANL_NO_LIBM, gl_HAVE_ISNANL_IN_LIBM,
173         gl_FUNC_ISNANL_WORKS): Test the GCC >= 4.0 built-in.
174         * lib/isnanl.h (isnanl): Use the GCC >= 4.0 built-in.
175         * lib/isnanl-nolibm.h (isnanl): Likewise.
176         Reported by Paul Eggert <eggert@cs.ucla.edu>.
177
178 2008-01-26  Bruno Haible  <bruno@clisp.org>
179
180         * m4/isnand.m4 (gl_FUNC_ISNAND_NO_LIBM): Test the GCC >= 4.0 built-in.
181         * lib/isnand.h (isnand): Use the GCC >= 4.0 built-in.
182
183 2008-01-26  Bruno Haible  <bruno@clisp.org>
184
185         * m4/isnanf.m4 (gl_HAVE_ISNANF_NO_LIBM, gl_ISNANF_WORKS): Test the
186         GCC >= 4.0 built-in.
187         * lib/isnanf.h (isnanf): Use the GCC >= 4.0 built-in.
188
189 2008-01-26  Bruno Haible  <bruno@clisp.org>
190
191         Rename isnan, applicable to 'double' only, to isnand.
192         * modules/isnand-nolibm: Renamed from modules/isnan-nolibm.
193         (Files): Add lib/isnand.h, lib/isnand.c. Remove lib/isnan.h.
194         (configure.ac): Update.
195         (Include): Replace "isnan.h" with "isnand.h".
196         * m4/isnand.m4: Renamed from m4/isnan.m4.
197         (gl_FUNC_ISNAND_NO_LIBM): Renamed from gl_FUNC_ISNAN_NO_LIBM. Set
198         HAVE_ISNAND_IN_LIBC instead of HAVE_ISNAN_IN_LIBC. Build isnand.c
199         instead of isnan.c.
200         * lib/isnand.h: Renamed from lib/isnan.h. Test HAVE_ISNAND_IN_LIBC
201         instead of HAVE_ISNAN_IN_LIBC.
202         (isnand): Renamed from isnan.
203         * lib/isnand.c: New file.
204         * modules/isnand-nolibm-tests: Renamed from modules/isnan-nolibm-tests.
205         (Files): Add tests/test-isnand.c. Remove tests/test-isnan.c.
206         (Makefile.am): Update.
207         * tests/test-isnand.c: Renamed from tests/test-isnan.c.
208         Include isnand.h instead of isnan.h.
209         (main): Test isnand instead of isnan.
210         * modules/fprintf-posix (Depends-on): Add isnand-nolibm, remove
211         isnan-nolibm.
212         * modules/frexp (Depends-on): Likewise.
213         * modules/frexp-tests (Depends-on): Likewise.
214         * modules/frexp-nolibm (Depends-on): Likewise.
215         * modules/frexp-nolibm-tests (Depends-on): Likewise.
216         * modules/isfinite (Depends-on): Likewise.
217         * modules/round-tests (Depends-on): Likewise.
218         * modules/signbit (Depends-on): Likewise.
219         * modules/signbit-tests (Depends-on): Likewise.
220         * modules/snprintf-posix (Depends-on): Likewise.
221         * modules/sprintf-posix (Depends-on): Likewise.
222         * modules/trunc-tests (Depends-on): Likewise.
223         * modules/unistdio/u8-vasnprintf (Depends-on): Likewise.
224         * modules/unistdio/u8-u8-vasnprintf (Depends-on): Likewise.
225         * modules/unistdio/u16-vasnprintf (Depends-on): Likewise.
226         * modules/unistdio/u16-u16-vasnprintf (Depends-on): Likewise.
227         * modules/unistdio/u32-vasnprintf (Depends-on): Likewise.
228         * modules/unistdio/u32-u32-vasnprintf (Depends-on): Likewise.
229         * modules/unistdio/ulc-vasnprintf (Depends-on): Likewise.
230         * modules/vasnprintf-posix (Depends-on): Likewise.
231         * modules/vasprintf-posix (Depends-on): Likewise.
232         * modules/vfprintf-posix (Depends-on): Likewise.
233         * modules/vsnprintf-posix (Depends-on): Likewise.
234         * modules/vsprintf-posix (Depends-on): Likewise.
235         * lib/frexp.c: Include isnand.h instead of isnan.h.
236         (ISNAN): Set to isnand instead of isnan.
237         * lib/isfinite.c: Include isnand.h instead of isnan.h.
238         (gl_isfinited): Use isnand instead of isnan.
239         * lib/signbitd.c: Include isnand.h instead of isnan.h.
240         (gl_signbitd): Use isnand instead of isnan.
241         * lib/vasnprintf.c: Include isnand.h instead of isnan.h.
242         (is_infinite_or_zero, VASNPRINTF): Use isnand instead of isnan.
243         * tests/test-frexp.c: Include isnand.h instead of isnan.h.
244         (main): Use isnand instead of isnan.
245         * tests/test-round1.c: Include isnand.h.
246         (main): Use isnand instead of isnan.
247         * tests/test-round2.c: Include isnand.h instead of isnan.h.
248         (ISNAN): Set to isnand instead of isnan.
249         * tests/test-trunc1.c: Include isnand.h.
250         (main): Use isnand instead of isnan.
251         * tests/test-trunc2.c: Include isnand.h instead of isnan.h.
252         (equal): Use isnand instead of isnan.
253         * MODULES.html.sh (Mathematics <math.h>): Replace isnan-nolibm with
254         isnand-nolibm.
255         * NEWS: Mention the change.
256
257 2008-01-25  Paul Eggert  <eggert@cs.ucla.edu>
258             Bruno Haible  <bruno@clisp.org>
259
260         * m4/signbit.m4 (gl_SIGNBIT): Require a macro definition. Test whether
261         the GCC builtins for signbits are present and set
262         REPLACE_SIGNBIT_USING_GCC if so.
263         * lib/math.in.h (signbit): Define using GCC builtins if
264         REPLACE_SIGNBIT_USING_GCC is set.
265         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize
266         REPLACE_SIGNBIT_USING_GCC.
267         * modules/math (Makefile.am): Substitute REPLACE_SIGNBIT_USING_GCC.
268
269 2008-01-25  Jim Meyering  <meyering@redhat.com>
270
271         Prefer <config.h> over "config.h".  See autoconf doc for explanation.
272         * lib/poll.c: Include <config.h>, not "config.h".
273         * tests/test-getaddrinfo.c: Likewise.
274
275 2008-01-25  Simon Josefsson  <simon@josefsson.org>
276
277         * modules/sockets-tests: New file.
278
279 2008-01-24  Simon Josefsson  <simon@josefsson.org>
280
281         * modules/sockets: New module, can be used to call WSA_Startup and
282         WSA_Cleanup when needed.
283
284         * lib/sockets.h, lib/sockets.c: New files.
285
286         * m4/sockets.m4: New file.
287
288         * tests/test-sockets.c: New file.
289
290 2008-01-19  Bruno Haible  <bruno@clisp.org>
291
292         * doc/posix-headers: Renamed from doc/headers.
293         * doc/posix-functions: Renamed from doc/functions.
294         * doc/gnulib.texi: Update.
295
296 2008-01-19  Bruno Haible  <bruno@clisp.org>
297
298         * doc/glibc-functions/strcasestr.texi: Include contents of
299         doc/functions/strcasestr.texi, fixing the list of platforms.
300         * doc/functions/strcasestr.texi: Remove file.
301
302 2008-01-19  Bruno Haible  <bruno@clisp.org>
303
304         * doc/glibc-functions/memmem.texi: Include contents of
305         doc/functions/memmem.texi.
306         * doc/functions/memmem.texi: Remove file.
307
308 2008-01-18  Bruno Haible  <bruno@clisp.org>
309
310         * doc/glibc-functions/*.texi: New files.
311         * doc/gnulib.texi (Glibc Function Substitutes): Completely rewritten
312         to use the new files.
313
314 2008-01-17  Bruno Haible  <bruno@clisp.org>
315
316         * tests/test-gethostname.c (main): Fix printf statement.
317
318 2008-01-17  Simon Josefsson  <simon@josefsson.org>
319
320         * modules/gethostname-tests: New file.
321
322         * tests/test-gethostname.c: New file.
323
324 2008-01-17  Simon Josefsson  <simon@josefsson.org>
325
326         * lib/gethostname.c: Include string.h unconditionally, strncpy is
327         used by the UNAME case.  Reported by Bruno Haible
328         <bruno@clisp.org>.
329
330 2008-01-17  Eric Blake  <ebb9@byu.net>
331
332         Convert c-strcasestr to be more efficient.
333         * modules/c-strcasestr (Files): Use Two-Way, not KMP.
334         (Depends-on): Add c-strcase, remove malloca, strnlen.
335         * tests/test-c-strcasestr.c (main): Enhance test.
336         * lib/c-strcasestr.c (c_strcasestr): Rewrite to new algorithm.
337
338 2007-01-16  Paolo Bonzini  <bonzini@gnu.org>
339
340         * build-aux/bootstrap (MSGID_BUGS_ADDRESS): New overridable variable.
341         Use it in creating po/Makevars.
342
343 2008-01-15  Simon Josefsson  <simon@josefsson.org>
344
345         * lib/gc-libgcrypt.c (gc_init): Disable secure memory by default.
346         Applications that requires it should initialize libgcrypt
347         manually.
348
349 2008-01-16  Simon Josefsson  <simon@josefsson.org>
350
351         * lib/gethostname.c [!HAVE_UNAME]: Need string.h for strcpy.
352
353 2008-01-15  Paul Eggert  <eggert@cs.ucla.edu>
354
355         Fix problem with getdate on mingw32 reported by Simon Josefsson
356         in <http://lists.gnu.org/archive/html/bug-gnulib/2008-01/msg00192.html>.
357         * lib/getdate.y (get_date): Check "HAVE_DECL_TZNAME", not "defined
358         tzname", when deciding whether to declare tzname.
359         * lib/strftime.c (tzname): Likewise.
360
361 2008-01-15  Bruno Haible  <bruno@clisp.org>
362
363         Work around a MacOS X 10.5 bug in frexpl().
364         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Also check denormalized numbers.
365         * doc/functions/frexpl.texi: Document the bug.
366         Reported by Elias Pipping <pipping@gentoo.org>.
367
368 2008-01-14  Eric Blake  <ebb9@byu.net>
369
370         Touch up previous patch.
371         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR_SIMPLE): Fix typo.
372         * doc/functions/strcasestr.texi (strcasestr): Document OpenBSD bug.
373
374         Convert strcasestr module to use Two-Way algorithm.
375         * modules/strcasestr-simple: New module, based on the old
376         strcasestr, but with Two-Way rather than KMP.
377         * modules/strcasestr (Depends-on): Change to strcasestr-simple.
378         * lib/string.in.h (rpl_strcasestr): Declare.
379         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Check for linear
380         performance.
381         * lib/strcasestr.c (strcasestr): Simplify, and avoid malloc.
382         * modules/string (Makefile.am): Support strcasestr.
383         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Likewise.
384         * modules/strcasestr-tests (Depends-on): Check for alarm.
385         * tests/test-strcasestr.c: Augment test.
386         * lib/str-two-way.h: Clean up stray macro.
387         * NEWS: Document new module.
388         * MODULES.html.sh (string handling): Likewise.
389         * doc/functions/strcasestr.texi: New file.
390         * doc/gnulib.texi (Function Substitutes): New node.  Move memmem
391         here, since it is not a POSIX function.
392
393 2008-01-14  Colin Watson  <cjwatson@debian.org>
394             Bruno Haible  <bruno@clisp.org>
395
396         * m4/strsignal.m4 (gl_FUNC_STRSIGNAL): Also check whether strsignal
397         works fine; if not, set REPLACE_STRSIGNAL.
398         (gl_PREREQ_STRSIGNAL): Require AC_DECL_SYS_SIGLIST.
399         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
400         REPLACE_STRSIGNAL.
401         * lib/string.in.h (strsignal): Consider REPLACE_STRSIGNAL.
402         * modules/string (Makefile.am): Substitute REPLACE_STRSIGNAL.
403         * tests/test-strsignal.c (main): Check out-of-range signal numbers.
404
405 2008-01-14  Bruno Haible  <bruno@clisp.org>
406
407         * modules/strsignal (Include): Change to <string.h>.
408
409 2008-01-14  Colin Watson  <cjwatson@debian.org>
410
411         * modules/argp (Notice): Add a notice recommending to change
412         XGETTEXT_OPTIONS.
413         (configure.ac): Invoke AM_XGETTEXT_OPTION if it exists.
414
415 2008-01-13  Colin Watson  <cjwatson@debian.org>
416
417         * modules/strsignal-tests: New file.
418         * tests/test-strsignal.c: New file.
419
420         * lib/strsignal.c: New file, from glibc with modifications.
421         * lib/siglist.h: New file, from glibc with modifications.
422         * lib/string.in.h (strsignal): New declaration.
423         * m4/strsignal.m4: New file.
424         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
425         GNULIB_STRSIGNAL and HAVE_DECL_STRSIGNAL.
426         * modules/strsignal: New file.
427         * modules/string (Makefile.am): Substitute GNULIB_STRSIGNAL and
428         HAVE_DECL_STRSIGNAL.
429
430 2008-01-13  Bruno Haible  <bruno@clisp.org>
431
432         * m4/locale-fr.m4 (gt_LOCALE_FR, gt_LOCALE_FR_UTF8): Check that the
433         locale encoding is not ASCII. Needed for OpenBSD 4.0.
434         * m4/locale-tr.m4 (gt_LOCALE_TR_UTF8): Likewise.
435         * m4/locale-zh.m4 (gt_LOCALE_ZH_CN): Likewise.
436
437 2008-01-13  Bruno Haible  <bruno@clisp.org>
438
439         * lib/argp-fmtstream.h (__attribute__): Don't redefine if
440         __STRICT_ANSI__ is set: it's not needed by any version of gcc.
441         * lib/argp.h (__attribute__): Likewise.
442         * lib/c-stack.c (__attribute__): Likewise.
443         * lib/error.h (__attribute__): Likewise.
444         * lib/fts.c (__attribute__): Likewise.
445         * lib/openat.h (__attribute__): Likewise.
446         * lib/stdio.in.h (__attribute__): Likewise.
447         * lib/string.in.h (__attribute__): Likewise.
448         * lib/utimens.c (__attribute__): Likewise.
449         * lib/vasnprintf.h (__attribute__): Likewise.
450         * lib/xalloc.h (__attribute__): Likewise.
451         * lib/xprintf.h (__attribute__): Likewise.
452         * lib/xstrtol.h (__attribute__): Likewise.
453         * lib/xvasprintf.h (__attribute__): Likewise.
454
455 2008-01-12  Bruno Haible  <bruno@clisp.org>
456
457         * doc/gnulib.texi (Glibc Header File Substitutes): New chapter.
458         * doc/glibc-headers/a.out.texi: New file.
459         * doc/glibc-headers/aliases.texi: New file.
460         * doc/glibc-headers/alloca.texi: New file.
461         * doc/glibc-headers/ar.texi: New file.
462         * doc/glibc-headers/argp.texi: New file.
463         * doc/glibc-headers/argz.texi: New file.
464         * doc/glibc-headers/byteswap.texi: New file.
465         * doc/glibc-headers/crypt.texi: New file.
466         * doc/glibc-headers/endian.texi: New file.
467         * doc/glibc-headers/envz.texi: New file.
468         * doc/glibc-headers/err.texi: New file.
469         * doc/glibc-headers/error.texi: New file.
470         * doc/glibc-headers/execinfo.texi: New file.
471         * doc/glibc-headers/fpu_control.texi: New file.
472         * doc/glibc-headers/fstab.texi: New file.
473         * doc/glibc-headers/fts.texi: New file.
474         * doc/glibc-headers/getopt.texi: New file.
475         * doc/glibc-headers/ieee754.texi: New file.
476         * doc/glibc-headers/ifaddrs.texi: New file.
477         * doc/glibc-headers/libintl.texi: New file.
478         * doc/glibc-headers/mcheck.texi: New file.
479         * doc/glibc-headers/mntent.texi: New file.
480         * doc/glibc-headers/obstack.texi: New file.
481         * doc/glibc-headers/paths.texi: New file.
482         * doc/glibc-headers/printf.texi: New file.
483         * doc/glibc-headers/pty.texi: New file.
484         * doc/glibc-headers/resolv.texi: New file.
485         * doc/glibc-headers/shadow.texi: New file.
486         * doc/glibc-headers/sysexits.texi: New file.
487         * doc/glibc-headers/ttyent.texi: New file.
488
489 2008-01-12  Jim Meyering  <meyering@redhat.com>
490
491         announce-gen: emit Gnulib's git-based version string.
492         * build-aux/announce-gen: Remove option: --gnulib-snapshot-time-stamp=S.
493         New option --gnulib-version=V, where V is expected to be
494         the output of running git describe in the gnulib directory.
495         (get_tool_versions): Request feedback on xdelta.  I suspect it's
496         not useful, and plan to stop publishing an xdelta file with each
497         coreutils release.
498
499         * build-aux/announce-gen: Also check for lzma-compressed files.
500
501 2008-01-11  Bruno Haible  <bruno@clisp.org>
502
503         * tests/test-memmem.c (main): Increase maximum allowed time.
504         * tests/test-strstr.c (main): Likewise.
505
506 2008-01-11  Bruno Haible  <bruno@clisp.org>
507
508         * doc/functions/memmem.texi: Add more precisions about platforms.
509         * doc/functions/strstr.texi: Likewise.
510
511 2008-01-10  Eric Blake  <ebb9@byu.net>
512
513         * m4/strstr.m4: Delete cruft from copy-n-paste.
514         Reported by Bruno Haible.
515
516 2008-01-10  Bruno Haible  <bruno@clisp.org>
517
518         Make c-strstr rely on strstr.
519         * lib/c-strstr.c: Don't include str-kmp.h.
520         (c_strstr): Define in terms of strstr.
521         * modules/c-strstr (Files): Remove lib/str-kmp.h.
522         (Depends-on): Remove stdbool, malloca, strnlen. Add strstr.
523
524 2008-01-10  Bruno Haible  <bruno@clisp.org>
525
526         * doc/gnulib.texi (String Functions in C Locale): New section.
527         * doc/c-ctype.texi: New file.
528         * doc/c-strcase.texi: New file.
529         * doc/c-strcaseeq.texi: New file.
530         * doc/c-strcasestr.texi: New file.
531         * doc/c-strstr.texi: New file.
532         * doc/c-strtod.texi: New file.
533         * doc/c-strtold.texi: New file.
534
535 2008-01-10  Eric Blake  <ebb9@byu.net>
536
537         * lib/relocatable.h: Fix a comment.
538
539 2008-01-10  Eric Blake  <ebb9@byu.net>
540
541         Share two-way algorithm.
542         * lib/str-two-way.h: New file, merged from...
543         * lib/memmem.c: ...here...
544         * lib/strstr.c: ...and here.
545         * modules/memmem (Files): Use it.
546         * modules/strstr (Files): Likewise.
547
548         Avoid quadratic strstr implementations.
549         * lib/strstr.c: New file.
550         * m4/strstr.m4: Likewise.
551         * modules/strstr: Likewise.
552         * modules/strstr-tests: Likewise.
553         * tests/test-strstr.c: Likewise.
554         * lib/string.in.h (rpl_strstr): Declare.
555         (memmem) [GNULIB_POSIXCHECK]: Document speed issue.
556         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Support strstr.
557         * modules/string (Makefile.am): Likewise.
558         * MODULES.html.sh (string handling): Mention new module.
559         * doc/functions/strstr.texi (strstr): Document the bug.
560
561 2008-01-10  Bruno Haible  <bruno@clisp.org>
562
563         * lib/relocatable.h (relocate): State whether result is freshly
564         allocated or not.
565         * lib/relocatable.c (relocate): Return a freshly allocated string
566         instead of a pointer to a privately held string.
567         Reported by Sylvain Beucler <beuc@gnu.org>.
568
569 2008-01-10  Colin Watson  <cjwatson@debian.org>
570
571         * lib/canonicalize-lgpl.c [!_LIBC]: Fix typo in #if directive:
572         s/S_ISNLK/S_ISLNK/.
573
574 2008-01-09  Bruno Haible  <bruno@clisp.org>
575
576         * doc/functions/memmem.texi: Use the same structure as snprintf.texi
577         and other files.
578         * m4/memmem.m4 (gl_FUNC_MEMMEM): Say "guessing no" instead of "no"
579         if it's only a guess.
580         * modules/memmem: Simplify by depending on memmem-simple.
581
582 2008-01-09  Bruno Haible  <bruno@clisp.org>
583
584         Work around OpenBSD 4.0 tdelete() bug.
585         * m4/tsearch.m4 (gl_FUNC_TSEARCH): Also check tdelete's return value.
586         * lib/search.in.h: If REPLACE_TSEARCH is 1, define tsearch etc. as
587         macros and don't redefine the enum values.
588         * m4/search_h.m4 (gl_SEARCH_H_DEFAULTS): Initialize REPLACE_TSEARCH.
589         * modules/search (Makefile.am): Also substitute REPLACE_TSEARCH.
590         * doc/functions/tdelete.texi: Document the OpenBSD 4.0 bug.
591
592 2008-01-09  Bruno Haible  <bruno@clisp.org>
593
594         * tests/test-wcwidth.c: Include <string.h> and localcharset.h.
595         (main): Don't perform the tests if setlocale did not install a UTF-8
596         locale. Needed on OpenBSD 4.0.
597         * modules/wcwidth-tests (Depends-on): Add localcharset.
598
599 2008-01-09  Paul Eggert  <eggert@cs.ucla.edu>
600
601         gl_FUNC_ALLOCA no longer defines HAVE_ALLOCA_H unconditionally.
602         See <http://lists.gnu.org/archive/html/bug-gnulib/2007-12/msg00149.html>.
603         * NEWS: announce this.
604         * m4/alloca.m4 (gl_FUNC_ALLOCA): Don't define HAVE_ALLOCA_H.
605
606 2008-01-09  Simon Josefsson  <simon@josefsson.org>
607         and Eric Blake  <ebb9@byu.net>
608
609         Add memmem-simple module.
610         * m4/memmem.m4 (gl_FUNC_MEMMEM_SIMPLE): New macro.
611         (gl_FUNC_MEMMEM): Separate performance from presence checks.
612         * modules/memmem-simple: New file.
613         * modules/memmem (Description): Tweak.
614         * MODULES.html.sh (string handling): Mention new module.
615         * doc/functions/memmem.texi (memmem): Distinguish which flaws are
616         addressed by memmem-simple.
617         * NEWS: Document the difference.
618
619 2008-01-09  Eric Blake  <ebb9@byu.net>
620
621         Give gcc some memmem optimization hints.
622         * lib/string.in.h (memmem, memrchr, strchrnul, strnlen, strpbrk)
623         (strcasestr): Declare as pure.
624         * modules/memmem (Maintainer): Claim my implementation.
625
626 2008-01-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
627
628         Support AIX 6.1 and higher.
629         * build-aux/config.libpath: Likewise.
630         * build-aux/config.rpath: Likewise.
631
632 2008-01-08  Jim Meyering  <meyering@redhat.com>
633             Bruno Haible  <bruno@clisp.org>
634
635         * lib/printf-parse.c (PRINTF_PARSE): Handle a size specifier "q"
636         on MacOS X and a size specifier "I64" on mingw. Needed for PRIdMAX.
637         Reported by Peter Fales in
638         <http://lists.gnu.org/archive/html/bug-coreutils/2007-12/msg00148.html>.
639
640 2008-01-08  Bruno Haible  <bruno@clisp.org>
641
642         * modules/unictype/category-of (Depends-on): Add
643         unictype/category-none.
644         * modules/unictype/category-and-tests (Depends-on): Add
645         unictype/category-{L,N,Lu,Nd}.
646         * modules/unictype/category-and-not-tests (Depends-on): Likewise.
647         * modules/unictype/category-or-tests (Depends-on): Add
648         unictype/category-{L,N}.
649         * modules/unictype/category-name-tests (Depends-on): Add
650         unictype/category-{Z,Nl}.
651         Reported by Simon Josefsson.
652
653 2008-01-08  Bruno Haible  <bruno@clisp.org>
654
655         * lib/str-kmp.h (knuth_morris_pratt_unibyte): Document the calling
656         convention better.
657         * lib/mbsstr.c (knuth_morris_pratt_multibyte): Likewise.
658         * lib/mbscasestr.c (knuth_morris_pratt_multibyte): Likewise.
659         Reported by Peter Miller <millerp@canb.auug.org.au>.
660
661 2008-01-08  Eric Blake  <ebb9@byu.net>
662
663         Rewrite memmem to guarantee linear complexity without malloc.
664         * lib/memmem.c (memmem): Use Two-Way rather than
665         Knuth-Morris-Pratt, to allow O(1) space usage.
666         (critical_factorization, two_way_short_needle)
667         (two_way_long_needle): New functions.
668         (knuth_morris_pratt): Delete.
669         * modules/memmem (Depends-on): No longer need malloca or stdbool.
670         Add stdint.
671         * tests/test-memmem.c (main): Add tests for periodic needle and
672         sublinear performance.
673         * doc/functions/memmem.texi (memmem): Document other deficiencies
674         in cygwin and older glibc.
675
676 2008-01-08  Bruno Haible  <bruno@clisp.org>
677
678         * modules/memmem-tests (Makefile.am): Remove TESTS_ENVIRONMENT
679         augmentation.
680
681 2008-01-08  Mike Frysinger  <vapier@gentoo.org>
682
683         Add a configure time option: --disable-acl.
684         * m4/acl.m4 (gl_FUNC_ACL): Wrap all ACL logic in a call to
685         AC_ARG_ENABLE(acl).
686
687 2008-01-06  Simon Josefsson  <simon@josefsson.org>
688
689         * tests/test-localename.c: Don't include obsolete "setenv.h".
690
691         * modules/localename-tests (Depends-on): Need unsetenv.
692
693 2008-01-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
694
695         * DEPENDENCIES: Require Texinfo version 4.6 or newer.
696
697 2008-01-06  Colin Watson  <cjwatson@debian.org>
698
699         * users.txt: Add man-db.
700
701 2008-01-07  Bruno Haible  <bruno@clisp.org>
702
703         * doc/gnulib-intro.texi (Library vs Reusable Code): Restore the
704         previous section name.
705
706 2008-01-07  Bruno Haible  <bruno@clisp.org>
707
708         * lib/progname.c (set_program_name): Don't strip off a leading
709         "lt-" prefix outside a .libs directory.
710         Suggested by Paul Eggert.
711
712 2008-01-01  Sylvain Beucler  <beuc@gnu.org>
713             Bruno Haible  <bruno@clisp.org>
714
715         Improve memory cleanup in 'relocatable' module.
716         * lib/relocatable.h (compute_curr_prefix): Change return type to
717         'char *'.
718         * lib/relocatable.c (compute_curr_prefix): Change return type to
719         'char *'. Free curr_installdir after use.
720         (relocate): Free curr_prefix_better after use.
721         * lib/progreloc.c (prepare_relocate): Free curr_prefix after use.
722
723 2008-01-01  Bruno Haible  <bruno@clisp.org>
724
725         * tests/test-wcwidth.c (main): Relax test of U+2060. Avoids a test
726         failure on older glibc systems.
727         Reported by Peter Fales <psfales@alcatel-lucent.com>.
728
729 2008-01-05  Eric Blake  <ebb9@byu.net>
730
731         Avoid quadratic system memmem.
732         * m4/memmem.m4 (gl_FUNC_MEMMEM): Check for quadratic memmem.
733         Reported by Ralf Wildenhues.
734
735         Fix memmem test for mingw.
736         * modules/memmem-tests (configure.ac): Check for alarm.
737         * tests/test-memmem.c (main): Avoid alarm on platforms that lack
738         it.
739         * doc/functions/memmem.texi: New file.
740         * doc/gnulib.texi (Function Substitutes): Add memmem.
741         Reported by Bruno Haible.
742
743 2008-01-04  Bruno Haible  <bruno@clisp.org>
744
745         * m4/strcase.m4 (gl_FUNC_STRCASECMP, gl_FUNC_STRNCASECMP):
746         Require gl_HEADER_STRINGS_H_DEFAULTS, not
747         gl_HEADER_STRING_H_DEFAULTS.
748
749 2008-01-04  Eric Blake  <ebb9@byu.net>
750
751         Shorten duration of memmem test.
752         * tests/test-memmem.c (main): Use alarm to declare failure if test
753         is taking too long.
754         Reported by Ralf Wildenhues.
755
756 2007-12-21  Simon Josefsson  <simon@josefsson.org>
757
758         * modules/relocatable-prog-wrapper (Depends-on): Add intprops and
759         string, needed by strerror.
760
761 2008-01-03  Colin Watson  <cjwatson@debian.org>
762             Bruno Haible  <bruno@clisp.org>
763
764         * doc/gnulib-tool.texi (Localization): New section.
765
766 2008-01-02  Bruno Haible  <bruno@clisp.org>
767
768         * lib/memmem.c (knuth_morris_pratt, memmem): Change all 'char *'
769         variables to 'unsigned char *' type.
770         Reported by Paul Eggert.
771
772 2008-01-02  Jim Meyering  <jim@meyering.net>
773
774         * lib/version-etc.c (COPYRIGHT_YEAR): Increase for new year.
775
776 2007-12-31  Jim Meyering  <jim@meyering.net>
777
778         Avoid use of private FTS type name.
779         * lib/fts.c (fts_sort): Use FTSENT rather than "struct _ftsent".
780
781 2007-12-30  Karl Berry  <karl@gnu.org>
782
783         * doc/gnulib.texi (Library vs. Reusable Code): remove period, to
784         work around defect in Texinfo and/or the standalone Info browser.
785
786 2007-12-30  Bruno Haible  <bruno@clisp.org>
787
788         Unify 5 copies of the KMP code.
789         * lib/str-kmp.h: New file.
790         * lib/c-strcasestr.c: Include str-kmp.h.
791         (knuth_morris_pratt): Remove function.
792         (c_strcasestr): Update.
793         * lib/c-strstr.c: Include str-kmp.h.
794         (knuth_morris_pratt): Remove function.
795         (c_strcasestr): Update.
796         * lib/mbscasestr.c: Include str-kmp.h.
797         (knuth_morris_pratt_unibyte): Remove function.
798         * lib/mbsstr.c: Include str-kmp.h.
799         (knuth_morris_pratt_unibyte): Remove function.
800         * lib/strcasestr.c: Include str-kmp.h.
801         (knuth_morris_pratt): Remove function.
802         (strcasestr): Update.
803         * modules/c-strcasestr (Files): Add lib/str-kmp.h.
804         * modules/c-strstr (Files): Likewise.
805         * modules/mbscasestr (Files): Likewise.
806         * modules/mbsstr (Files): Likewise.
807         * modules/strcasestr (Files): Likewise.
808         Suggested by Paul Eggert.
809
810 2007-12-30  Bruno Haible  <bruno@clisp.org>
811
812         * lib/xmalloca.c (xmmalloca): Don't define if HAVE_ALLOCA is not
813         defined.
814
815 2007-12-30  Bruno Haible  <bruno@clisp.org>
816
817         * lib/xmalloca.h: Include xalloc.h.
818         (xnmalloca): New macro.
819
820 2007-12-30  Bruno Haible  <bruno@clisp.org>
821
822         * lib/malloca.h (nmalloca): New macro.
823         * lib/c-strcasestr.c (knuth_morris_pratt): Use it.
824         * lib/c-strstr.c (knuth_morris_pratt): Likewise.
825         * lib/mbscasestr.c (knuth_morris_pratt_unibyte,
826         knuth_morris_pratt_multibyte): Likewise.
827         * lib/mbsstr.c (knuth_morris_pratt_unibyte,
828         knuth_morris_pratt_multibyte): Likewise.
829         * lib/memmem.c (knuth_morris_pratt): Likewise.
830         * lib/strcasestr.c (knuth_morris_pratt): Likewise.
831
832 2007-12-25  Bruno Haible  <bruno@clisp.org>
833
834         Fixup after 2007-10-17 commit. Ensure that 'glob' stays under LGPLv2+.
835         * lib/glob.c: Don't include openat.h.
836         (link_exists2_p): Add back the code that deals with the
837         !GLOB_ALTDIRFUNC case.
838         (link_exists_p) [!_LIBC && !HAVE_FSTATAT]: Just call link_exists2_p and
839         let it do the filename concatenation.
840         * m4/glob.m4 (gl_PREREQ_GLOB): Add check for fstatat.
841         * modules/glob (Depends-on): Remove openat.
842
843 2007-12-31  Bruno Haible  <bruno@clisp.org>
844
845         * modules/dirfd (License): Change to LGPLv2+.
846         Approved by Jim Meyering.
847
848 2007-12-29  Paul Eggert  <eggert@cs.ucla.edu>
849
850         * lib/memmem.c (knuth_morris_pratt): Check for size_t overflow
851         when multiplying M by sizeof (size_t).
852
853 2007-12-10  Martin Lambers  <marlam@marlam.de>
854
855         Override getpagesize on mingw.
856         * lib/getpagesize.c: New file.
857         * m4/getpagesize.m4 (gl_FUNC_GETPAGESIZE): Enable replacement on mingw.
858         * modules/getpagesize (Files): Add lib/getpagesize.c.
859         * lib/unistd.in.h (getpagesize): Declare if we are using a replacement.
860         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
861         REPLACE_GETPAGESIZE.
862         * modules/unistd (Makefile.am): Substitute REPLACE_GETPAGESIZE.
863
864 2007-12-25  Bruno Haible  <bruno@clisp.org>
865
866         * modules/localcharset (Notice): New field.
867         (configure.ac): Define LOCALCHARSET_TESTS_ENVIRONMENT.
868         Suggested by Ben Pfaff <blp@cs.stanford.edu>.
869
870 2007-12-25  Paul Eggert  <eggert@cs.ucla.edu>
871             Bruno Haible  <bruno@clisp.org>
872
873         Avoid using the syntax symbol() in formatted documentation.
874         * MODULES.html.sh (func_module): When replacing symbol() with a
875         hyperlink, remove the parentheses. Show an error if some remain.
876         Recognize and render the '...' syntax.
877         * doc/alloca-opt.texi: Remove parentheses from symbol reference.
878         Rework. Add paragraph about GCC's inlining.
879         * doc/alloca.texi: Likewise.
880         * doc/error.texi: Remove parentheses from symbol reference.
881         * doc/gnulib-intro.texi: Likewise.
882         * doc/gnulib.texi (alloca, alloca-opt): New nodes.
883         * modules/fnmatch (Description): Reword to say "the ... function".
884         * modules/full-read (Description): Likewise.
885         * modules/full-write (Description): Likewise.
886         * modules/safe-read (Description): Likewise.
887         * modules/safe-write (Description): Likewise.
888         * modules/strchrnul (Description): Likewise.
889         * modules/trim (Description): Likewise.
890         * modules/error (Description): Remove parentheses from symbol
891         references.
892         * modules/verror (Description): Likewise.
893         Reported by Karl Berry.
894
895 2007-12-25  Bruno Haible  <bruno@clisp.org>
896
897         Fixup after 2007-10-16 commit.
898         * lib/glob.c (glob_in_dir): Don't use ISO C99 syntax.
899
900 2007-12-24  Bruno Haible  <bruno@clisp.org>
901
902         Make --enable-relocatable work with DESTDIR.
903         * build-aux/install-reloc: Accept another argument 'destdir'. Use it
904         to compute installdir from destprog.
905         * m4/relocatable.m4 (gl_RELOCATABLE_BODY): In INSTALL_PROGRAM_ENV,
906         also set the RELOC_DESTDIR variable.
907         Reported by Ð›ÐµÐ²Ð°ÑˆÐµÐ² Ð˜Ð²Ð°Ð½ <octagram@bluebottle.com>.
908
909 2007-12-24  Bruno Haible  <bruno@clisp.org>
910
911         Fix link error due to xalloc_die().
912         * lib/progreloc.c: When NO_XMALLOC is defined, use areadlink instead
913         of xreadlink.
914         * lib/relocwrapper.c: Update comments.
915         * build-aux/install-reloc: Remove xreadlink.c from file list.
916         * modules/relocatable-prog-wrapper (Files): Remove xreadlink.h and
917         xreadlink.c.
918         Reported by Ð›ÐµÐ²Ð°ÑˆÐµÐ² Ð˜Ð²Ð°Ð½ <octagram@bluebottle.com>.
919
920 2007-12-24  Bruno Haible  <bruno@clisp.org>
921
922         Split setenv module into setenv and unsetenv. Get rid of setenv.h.
923         * lib/setenv.h: Remove file.
924         * lib/stdlib.in.h (setenv, unsetenv): New declarations, moved here from
925         lib/setenv.h.
926         * modules/setenv (Files): Remove lib/setenv.h, lib/unsetenv.c.
927         (Depends-on): Add stdlib.
928         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR. Don't invoke
929         gl_FUNC_UNSETENV.
930         (Include): Replace setenv.h with <stdlib.h>.
931         * modules/unsetenv: New file.
932         * lib/setenv.c: Include <stdlib.h> first, after alloca.h.
933         * lib/unsetenv.c: Include <stdlib.h> first.
934         * m4/setenv.m4 (gl_FUNC_SETENV, gl_FUNC_SETENV_SEPARATE): Require
935         gl_STDLIB_H_DEFAULTS. Conditionally set HAVE_SETENV to 0.
936         (gl_FUNC_UNSETENV): Require gl_STDLIB_H_DEFAULTS. Conditionally set
937         HAVE_UNSETENV to 0. Set VOID_UNSETENV as an AC_SUBSTed variable.
938         * modules/stdlib (Makefile.am): Substitute also GNULIB_SETENV,
939         HAVE_SETENV, GNULIB_UNSETENV, HAVE_UNSETENV, VOID_UNSETENV.
940         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_SETENV,
941         HAVE_SETENV, GNULIB_UNSETENV, HAVE_UNSETENV, VOID_UNSETENV.
942         * doc/functions/unsetenv.texi: Update.
943         * modules/xsetenv (Depends-on): Add unsetenv.
944         * modules/getdate (Depends-on): Likewise.
945         * lib/xsetenv.h: Include <stdlib.h> instead of setenv.h.
946         * lib/xsetenv.c: Don't include setenv.h.
947         * lib/getdate.y: Likewise.
948         * lib/relocwrapper.c: Likewise.
949         * modules/relocatable-prog-wrapper (Files): Remove lib/setenv.h.
950         (Depends-on): Add stdlib.
951         * NEWS: Mention the changes.
952         Reported by Ð›ÐµÐ²Ð°ÑˆÐµÐ² Ð˜Ð²Ð°Ð½ <octagram@bluebottle.com>.
953
954 2007-12-23  Bruno Haible  <bruno@clisp.org>
955
956         * lib/memmem.c (memmem): Use lowercase variable names. Tab
957         indentation.
958
959 2007-12-23  Bruno Haible  <bruno@clisp.org>
960
961         * lib/c-strcasestr.c: Add more comments.
962         * lib/c-strstr.c: Likewise.
963         * lib/mbscasestr.c: Likewise.
964         * lib/mbsstr.c: Likewise.
965         * lib/strcasestr.c: Likewise.
966         * lib/memmem.c: Likewise.
967
968 2007-12-23  Bruno Haible  <bruno@clisp.org>
969
970         * tests/test-memmem.c: Include <string.h> first.
971
972 2007-12-22  Bruno Haible  <bruno@clisp.org>
973
974         * gnulib-tool (func_create_testdir): Change $auxdir while generating
975         the contents of $testsbase.
976         Reported by Ralf Wildenhues.
977
978 2007-12-22  Bruno Haible  <bruno@clisp.org>
979
980         * gnulib-tool (func_emit_tests_Makefile_am): Replace local_ldadd with
981         two variables local_ldadd_before, local_ldadd_last.
982
983 2007-12-20  Eric Blake  <ebb9@byu.net>
984
985         Work around circular library issue when cross-compiling.
986         * lib/progname.c (set_program_name): Use strncmp, not memcmp, so
987         that progname.o does not need to pull in rpl_memcmp.
988
989 2007-12-19  Eric Blake  <ebb9@byu.net>
990
991         Fix memmem to avoid O(n^2) worst-case complexity.
992         * lib/memmem.c (knuth_morris_pratt): New function.
993         (memmem): Use it if first few naive iterations fail.
994         * m4/memmem.m4 (gl_FUNC_MEMMEM): Detect cygwin bug.
995         * modules/memcmp (License): Set to LGPLv2+, not LGPL.
996         * modules/memchr (License): Likewise.
997         * modules/memmem (Depends-on): Add memcmp, memchr, stdbool, and
998         malloca.
999         * tests/test-memmem.c: Rewrite, borrowing ideas from
1000         test-mbsstr1.c; the old version wouldn't even compile!
1001         * modules/memmem-tests: New file.
1002         * lib/string.in.h (rpl_memmem): Add declaration.
1003         * modules/string (Makefile.am): Substitute REPLACE_MEMMEM.
1004         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Default for
1005         REPLACE_MEMMEM.
1006
1007 2007-12-18  Paul Eggert  <eggert@cs.ucla.edu>
1008
1009         Fix problem with _GL_JUST_INCLUDE_SYSTEM_INTTYPES_H on VMS.
1010         * lib/stdint.in.h (_GL_JUST_INCLUDE_SYSTEM_INTTYPES_H): Define
1011         before any system include files, and undef after them all.  This
1012         should fix a problem on VMS reported by John E. Malmberg in
1013         <http://lists.gnu.org/archive/html/bug-gnulib/2007-12/msg00118.html>.
1014
1015 2007-12-17  Eric Blake  <ebb9@byu.net>
1016
1017         Revert addition of verify, for BSD/OS.
1018         * lib/fseeko.c [!HAVE_FSEEKO]: Allow off_t > long, even though it
1019         can't handle large files, for the sake of obsolete platforms.
1020         * modules/fseeko (Depends-on): Remove verify.
1021         * doc/functions/fseeko.texi (fseeko): Document BSD/OS limitation.
1022         * doc/functions/ftello.texi (ftello): Likewise.
1023         * doc/functions/fgetpos.texi (fgetpos): Likewise.
1024         Reported by Larry Jones.
1025
1026 2007-12-17  Petr Salinger  <Petr.Salinger@seznam.cz>
1027
1028         getcwd.c: Use a more readable witness: HAVE_OPENAT_SUPPORT
1029         * lib/getcwd.c: Define and use HAVE_OPENAT_SUPPORT, in place of AT_FDCWD.
1030
1031 2007-12-17  Jim Meyering  <meyering@redhat.com>
1032
1033         Port to GNU/kFreeBSD - FreeBSD kernel + GNU libc,
1034         which has no openat syscall, yet <fcntl.h> does define AT_FDCWD.
1035         * lib/getcwd.c: Undef AT_FDCWD if there is no openat function.
1036         * modules/getcwd (Depends-on): Add openat.
1037         Reported by Petr Salinger.
1038
1039 2007-12-17  Bruno Haible  <bruno@clisp.org>
1040
1041         * m4/printf.m4 (gl_PRINTF_INFINITE_LONG_DOUBLE): Use GL_NOCRASH to
1042         avoid a segmentation fault of the configure test on x86_64 systems.
1043
1044 2007-12-15  Jim Meyering  <meyering@redhat.com>
1045
1046         * build-aux/gnupload (GPG): Don't hard-code absolute name of gpg binary.
1047
1048 2007-12-13  Eric Blake  <ebb9@byu.net>
1049
1050         Another fseek test.
1051         * tests/test-fseek.c (main): Also test ungetc handling.
1052         * tests/test-fseeko.c (main): Likewise.
1053         * modules/fseeko (Depends-on): Add verify.
1054         * lib/fseeko.c [!HAVE_FSEEKO]: Verify that off_t is not too
1055         large.
1056         Reported by Larry Jones.
1057
1058         Fix fseeko on mingw.
1059         * lib/fseeko.c (rpl_fseeko) [_IOERR]: Reset EOF flag on successful
1060         seek.
1061
1062         Beef up fseek tests.
1063         * tests/test-fseek.c (main): Also test eof handling.
1064         * tests/test-fseeko.c (main): Likewise.
1065         Reported by Larry Jones.
1066
1067 2007-12-13  Larry Jones  <lawrence.jones@siemens.com>  (tiny change)
1068
1069         Fix fseeko on BSD-based platforms.
1070         * lib/fseeko.c (rpl_fseeko) [__sferror]: Reset EOF flag on
1071         successful seek.
1072
1073 2007-12-12  Eric Blake  <ebb9@byu.net>
1074
1075         Allow circular dependency of separate libtests.a
1076         * gnulib-tool (func_emit_tests_Makefile_am): Add AM_LIBTOOLFLAGS
1077         when use_libtests.
1078
1079 2007-12-11  Eric Blake  <ebb9@byu.net>
1080
1081         Fix bug with -0.0L in previous patch.
1082         * lib/isnan.c (rpl_isnanl): Make robust to -0.0L and pad bits.
1083         * tests/test-isnan.c (main): Also test on zeroes.
1084         * tests/test-isnanf.c (main): Likewise.
1085         * tests/test-isnanl.h (main): Likewise.
1086
1087         Detect pseudo-denormals on x86 even when cross-compiling.
1088         * lib/isnan.c (rpl_isnanl) [!KNOWN_EXPBIT0_LOCATION
1089         && USE_LONG_DOUBLE && x86]: Add one more check to filter out
1090         invalid bit patterns that happen to satisfy ==.
1091
1092         Avoid link failures with separate libtests.a.
1093         * gnulib-tool (func_emit_tests_Makefile_am): Also list local_ldadd
1094         last, to satisfy circular dependencies.
1095
1096 2007-12-11  Eric Blake  <ebb9@byu.net>
1097         and Bruno Haible  <bruno@clisp.org>
1098
1099         Fix OpenBSD 4.0 <float.h> handling of long double.
1100         * m4/float_h.m4 (gl_FLOAT_H): Also claim OpenBSD is broken.
1101         * lib/float.in.h [__OpenBSD__]: Add fixes for OpenBSD.
1102         * doc/headers/float.texi (float.h): Document OpenBSD bug.
1103
1104 2007-12-11  Jim Meyering  <meyering@redhat.com>
1105
1106         * users.txt: Add libvirt.
1107
1108         Support versions of autoconf prior to 2.59c.
1109         * gnulib-tool (func_emit_initmacro_done): Define m4_foreach_w
1110         if it is not already defined.
1111
1112 2007-12-09  Bruno Haible  <bruno@clisp.org>
1113
1114         Let 'gnulib-tool --import' collect sources needed for the tests in
1115         tests/ rather than in lib/.
1116         * gnulib-tool (func_emit_tests_Makefile_am): Accept use_libtests
1117         argument. If true, add rules to generate libtests.a, and put libtests.a
1118         into $(LDADD). Consider source files in subdirectories and set
1119         uses_subdirs.
1120         (func_emit_initmacro_start, func_emit_initmacro_end,
1121         func_emit_initmacro_done): Pass all arguments explicitly.
1122         (func_import): Determine two module lists main_modules,
1123         testsrelated_modules. Determine use_libtests. Determine two variables
1124         sed_transform_main_lib_file, sed_transform_testsrelated_lib_file
1125         instead of just sed_transform_lib_file. Determine two variables
1126         main_files and testsrelated_files. Compute 'files' as the union of
1127         both. Adjust sed_rewrite_old_files, sed_rewrite_new_files,
1128         func_add_or_update. In the generated gnulib-comp.m4, collect the
1129         object files for tests/ in different variables than those for lib/.
1130         Substitute LIBTESTS_LIBDEPS.
1131         (func_create_testdir): Combine the uses_subdirs results from
1132         func_emit_lib_Makefile_am and from func_emit_tests_Makefile_am.
1133
1134 2007-12-09  Bruno Haible  <bruno@clisp.org>
1135
1136         * gnulib-tool (func_emit_tests_Makefile_am): Expand references to
1137         the build-aux directory.
1138
1139 2007-12-09  Bruno Haible  <bruno@clisp.org>
1140
1141         * gnulib-tool (func_emit_tests_Makefile_am): Remove redundant code
1142         introduced on 2006-09-09.
1143
1144 2007-12-07  Jim Meyering  <meyering@redhat.com>
1145
1146         Let these macros work also with autoconf-2.59.
1147         * m4/getline.m4 (gl_FUNC_GETLINE): Require only autoconf-2.59.  2.60
1148         is not needed, since gnulib now permits use of AC_CHECK_DECLS_ONCE.
1149         * m4/getdelim.m4 (gl_FUNC_GETDELIM): Likewise.
1150
1151 2007-12-06  Jim Meyering  <meyering@redhat.com>
1152
1153         Avoid a configure-time syntax error in gl_FUNC_ACL.
1154         * m4/acl.m4 (gl_FUNC_ACL): Be careful to check for the acl_trivial
1155         function in each branch, before testing the cache variable.
1156
1157 2007-12-04  Eric Blake  <ebb9@byu.net>
1158
1159         Make scripts executable.
1160         * build-aux/config.guess: Add execute permissions.
1161         * build-aux/config.sub: Likewise.
1162         * build-aux/gendocs.sh: Likewise.
1163
1164         Fix frexp on mingw.
1165         * m4/frexp.m4 (gl_FUNC_FREXP_WORKS): Detect mingw bug when
1166         cross-compiling.
1167         * doc/functions/frexp.texi (frexp): Document the bug.
1168
1169         Make cygwin fseeko check more reliable.
1170         * m4/stdio_h.m4 (gl_STDIN_LARGE_OFFSET) [__CYGWIN__]: Use cygwin
1171         version numbers, rather than unrelated feature check.
1172         * doc/functions/fseeko.texi (fseeko): Tweak failure report.
1173         * doc/functions/ftello.texi (ftello): Likewise.
1174         Reported by Bruno Haible.
1175
1176         * m4/strerror.m4: Bump version number.
1177
1178 2007-12-03  Bruno Haible  <bruno@clisp.org>
1179
1180         * doc/functions/mprotect.texi: Mention the mingw problem.
1181
1182 2007-12-03  Eric Blake  <ebb9@byu.net>
1183
1184         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE): Ensure
1185         REPLACE_STRERROR is initialized before this macro.
1186
1187 2007-12-03  Paul Eggert  <eggert@cs.ucla.edu>
1188
1189         Add support for Solaris 10 ACLs.  Also, ACLs are Gnulib, not Autoconf.
1190         * modules/acl (configure.ac): Rename AC_FUNC_ACL to gl_FUNC_ACL.
1191         * m4/acl.m4 (gl_FUNC_ACL): Renamed from AC_FUNC_ACL.  On Solaris,
1192         put -lsec in even for programs other than 'ls'.  This fixes a problem
1193         for gettext reported by Bruno Haible in
1194         <http://lists.gnu.org/archive/html/bug-gnulib/2007-12/msg00007.html>.
1195         * lib/acl.c (copy_acl, qset_acl) [USE_ACL && defined ACL_NO_TRIVIAL]:
1196         Add support for Solaris 10.  This isn't efficient, but should get the
1197         job done for now.
1198
1199 2007-12-03  James Youngman  <jay@gnu.org>
1200
1201         * doc/regexprops-generic.texi: change "an close-group" to "a
1202         close-group" and "illegal" to "not allowed".
1203
1204 2007-11-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1205
1206         * lib/unictype/pr_byname.c: Include unictype/pr_byname.h instead of
1207         pr_byname.h. Needed for the rare case when the maintainer has done
1208         "make maintainer-clean" in the source directory and then attempts a
1209         build outside the source directory.
1210         * lib/unictype/scripts.c: Include unictype/scripts_byname.h instead of
1211         scripts_byname.h.
1212
1213 2007-12-02  Martin Lambers <marlam@marlam.de>
1214             Bruno Haible  <bruno@clisp.org>
1215
1216         * lib/getpagesize.h: Remove file.
1217         * lib/unistd.in.h: Include declaration of getpagesize here.
1218         * m4/getpagesize.m4 (gl_FUNC_GETPAGESIZE): Renamed from gl_GETPAGESIZE.
1219         Invoke gl_UNISTD_H_DEFAULTS. Set HAVE_GETPAGESIZE, HAVE_OS_H,
1220         HAVE_SYS_PARAM_H.
1221         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_GETPAGESIZE,
1222         HAVE_GETPAGESIZE, HAVE_OS_H, HAVE_SYS_PARAM_H.
1223         * modules/getpagesize (Files): Remove lib/getpagesize.h.
1224         (Depends-on): Add unistd.
1225         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
1226         (Include): Use <unistd.h> instead of getpagesize.h.
1227         * modules/unistd (Makefile.am): Substitute also GNULIB_GETPAGESIZE,
1228         HAVE_GETPAGESIZE, HAVE_OS_H, HAVE_SYS_PARAM_H.
1229         * m4/pagealign_alloc.m4 (gl_PREREQ_PAGEALIGN_ALLOC): Remove
1230         gl_GETPAGESIZE invocation, already handled by module dependency.
1231         * lib/pagealign_alloc.c: Don't include getpagesize.h.
1232
1233 2007-12-02  Bruno Haible  <bruno@clisp.org>
1234
1235         * modules/strings-tests: New file.
1236         * tests/test-strings.c: New file.
1237
1238         Move declarations of str{,n}casecmp from <string.h> to <strings.h>.
1239         * lib/strings.in.h: New file.
1240         * lib/string.in.h (strcasecmp, strncasecmp): Remove declarations.
1241         * m4/strings_h.m4: New file.
1242         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Remove initialization
1243         of HAVE_STRCASECMP, HAVE_DECL_STRNCASECMP.
1244         * modules/strings: New file.
1245         * modules/string (Makefile.am): Update.
1246         * modules/strcase (Include): Mention <strings.h>, not <string.h>.
1247         Reported by Karl Berry.
1248
1249 2007-12-01  Eric Blake  <ebb9@byu.net>
1250
1251         * m4/stdio_h.m4 (gl_STDIN_LARGE_OFFSET) [__CYGWIN__]: Rewrite to
1252         accomodate fix in cygwin 1.5.25.
1253
1254 2007-12-01  Jim Meyering  <meyering@redhat.com>
1255
1256         Fix a bug that inhibited much of the utf8-optimization in regcomp.c.
1257         * lib/regcomp.c (optimize_utf8): Fix a typo, s/idx/ctx_type/,
1258         that would inhibit utf8-optimization of a regexp containing line-
1259         or buffer-anchors, e.g., `^', `$'.
1260
1261 2007-11-30  Bruno Haible  <bruno@clisp.org>
1262
1263         * lib/lock.h (gl_recursive_lock_init) [PTHREAD &&
1264         PTHREAD_RECURSIVE_MUTEX_INITIALIZER]: Call
1265         glthread_recursive_lock_init.
1266         * lib/lock.c (glthread_recursive_lock_init)
1267         [PTHREAD_RECURSIVE_MUTEX_INITIALIZER]: New function.
1268         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
1269
1270 2007-11-28  Paul Eggert  <eggert@cs.ucla.edu>
1271
1272         New function qset_acl, like set_acl but with syscall semantics.
1273         * lib/acl.h (qset_acl): New decl.
1274         * lib/acl.c (qset_acl): New function.
1275         (set_acl): Use new function.  Use more-consistent diagnostics.
1276
1277 2007-11-28  Jim Meyering  <meyering@redhat.com>
1278
1279         * modules/physmem (License): Change from GPL to LGPLv2+.
1280
1281 2007-11-26  Bruno Haible  <bruno@clisp.org>
1282
1283         * lib/vasnprintf.c (decode_long_double): Don't abort if the
1284         'long double' type has excess precision.
1285         Reported by Jim Meyering in
1286         <http://lists.gnu.org/archive/html/bug-gnulib/2007-11/msg00120.html>.
1287
1288 2007-11-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1289
1290         * doc/fdl.texi, doc/gpl-3.0.texi, doc/lgpl-3.0.texi:
1291         Sync from <http://gnu.org/licenses>.
1292         * modules/agpl-3.0, doc/agpl-3.0.texi: New module,
1293         with license text from same location.
1294         * doc/maintain.texi, doc/standards.texi:  Sync from
1295         <http://savannah.gnu.org/projects/gnustandards>.
1296
1297 2007-11-22  OndÅ™ej Vašík  <ovasik@redhat.com>
1298         and Jim Meyering  <meyering@redhat.com>
1299
1300         Adjust getdate' grammar to accept a slightly more regular language.
1301         E.g., accept "YYYYMMDD +N days" as well as "YYYYMMDD N days".
1302         Before, the former was rejected.
1303         * lib/getdate.y (digits_to_date_time): New function, factored
1304         out of ...
1305         (number): ...here.  Just call digits_to_date_time.
1306         (hybrid): New non-terminal to handle an <unsigned number,
1307         signed relative offset> sequence consistently.
1308
1309 2007-11-18  Jim Meyering  <meyering@redhat.com>
1310
1311         Pull my changes from coreutils:
1312         bootstrap: fix typo to enable use of $gnulib_tool_option_extras.
1313         * build-aux/bootstrap (gnulib_tool_options): Add a space before the
1314         use of $gnulib_tool_option_extras, so that it's separated from the
1315         preceding argument.
1316
1317         Fix bootstrap failure to handle files like lib/uniwidth/cjk.h.
1318         * build-aux/bootstrap (cp_mark_as_generated): Create any required
1319         parent destination directories before copying a file into place.
1320
1321 2007-11-18  Sergey Poznyakoff  <gray@gnu.org.ua>
1322
1323         bootstrap: work also with 4-argument variant of AC_INIT
1324         * build-aux/bootstrap (gnulib_extra_files): Adjust sed command.
1325
1326 2007-11-16  Paul Eggert  <eggert@cs.ucla.edu>
1327
1328         Port test-getaddrinfo to Solaris.
1329         Problem reported by Bruno Haible in
1330         <http://lists.gnu.org/archive/html/bug-gnulib/2007-03/msg00171.html>.
1331         * tests/test-getaddrinfo.c (simple): Add a comment asking for an
1332         explanation of setting 'hints'.
1333         Don't reject an implementation merely because it returns EAI_SERVICE.
1334         (EAI_SERVICE): Define to 0 if not defined.
1335
1336 2007-11-15  Paul Eggert  <eggert@cs.ucla.edu>
1337
1338         The license of gnu-make and posix-shell is now "GPLed build tool".
1339         * modules/gnu-make (License): Likewise.
1340         * modules/posix-shell (License): Likewise.
1341
1342         New module posix-shell, for determining a POSIX shell
1343         or perhaps something that is close enough to a POSIX shell.
1344         * m4/posix-shell.m4: New file.
1345         * modules/posix-shell: New file.
1346
1347         * MODULES.html.sh: Mention new module.
1348
1349         New module gnu-make, for determining whether we're using GNU Make.
1350         * m4/gnu-make.m4: New file.
1351         * modules/gnu-make: New file.
1352         * MODULES.html.sh: Mention new module.
1353
1354 2007-11-14  Jim Meyering  <meyering@redhat.com>
1355
1356         Define a sometimes-link-required function using ARGMATCH_DIE_DECL.
1357         * tests/test-argmatch.c (ARGMATCH_DIE_DECL): When defined,
1358         use this macro to create a function _definition_.
1359         Remove useless "#undef ARGMATCH_DIE".
1360
1361 2007-11-14  Bruno Haible  <bruno@clisp.org>
1362
1363         * lib/config.charset: Update for OpenBSD 4.1.
1364         Reported and helped by Ben Pfaff <blp@cs.stanford.edu>.
1365
1366 2007-11-12  Paul Eggert  <eggert@cs.ucla.edu>
1367
1368         Document 64-bit #if problems in stdint.texi.
1369         * doc/headers/stdint.texi (stdint.h): Mention problems with
1370         64-bit-#if, and how to work around them.
1371
1372         Don't insist on 'long long int' support in the preprocessor.  It
1373         breaks too many things.  For example, PRIdMAX still uses a 'long
1374         long int' format with the latest Sun compiler, even though
1375         HAVE_LONG_LONG_INT isn't defined due to that compiler's
1376         preprocessor problem.  This causes the latest coreutils to dump
1377         core on Solaris 10 sparc with the Sun C compiler.
1378         Instead, fix the 2007-10-16 problem in a different way, by evaluating
1379         the troublesome expressions at configure-time, not at #if-time.
1380         * m4/longlong.m4 (_AC_TYPE_LONG_LONG_SNIPPET): Don't test the
1381         preprocessor.
1382         * m4/inttypes.m4 (gl_INTTYPES_H): Move the #if checks into
1383         compile-time C checks, done at 'configure'-time.
1384         (gl_INTTYPES_CHECK_LONG_LONG_INT_CONDITION): New macro.
1385         * modules/inttypes (Makefile): Substitute the new symbols that
1386         gl_INTTYPES_H now generates.
1387         * lib/inttypes.in.h: Don't use constants wider than 'long' in #if.
1388
1389 2007-11-12  Bruno Haible  <bruno@clisp.org>
1390
1391         Tests for Unicode character classification functions.
1392
1393         * modules/unictype/bidicategory-byname-tests: New file.
1394         * modules/unictype/bidicategory-name-tests: New file.
1395         * modules/unictype/bidicategory-of-tests: New file.
1396         * modules/unictype/bidicategory-test-tests: New file.
1397         * modules/unictype/block-list-tests: New file.
1398         * modules/unictype/block-of-tests: New file.
1399         * modules/unictype/block-test-tests: New file.
1400         * modules/unictype/category-C-tests: New file.
1401         * modules/unictype/category-Cc-tests: New file.
1402         * modules/unictype/category-Cf-tests: New file.
1403         * modules/unictype/category-Cn-tests: New file.
1404         * modules/unictype/category-Co-tests: New file.
1405         * modules/unictype/category-Cs-tests: New file.
1406         * modules/unictype/category-L-tests: New file.
1407         * modules/unictype/category-Ll-tests: New file.
1408         * modules/unictype/category-Lm-tests: New file.
1409         * modules/unictype/category-Lo-tests: New file.
1410         * modules/unictype/category-Lt-tests: New file.
1411         * modules/unictype/category-Lu-tests: New file.
1412         * modules/unictype/category-M-tests: New file.
1413         * modules/unictype/category-Mc-tests: New file.
1414         * modules/unictype/category-Me-tests: New file.
1415         * modules/unictype/category-Mn-tests: New file.
1416         * modules/unictype/category-N-tests: New file.
1417         * modules/unictype/category-Nd-tests: New file.
1418         * modules/unictype/category-Nl-tests: New file.
1419         * modules/unictype/category-No-tests: New file.
1420         * modules/unictype/category-P-tests: New file.
1421         * modules/unictype/category-Pc-tests: New file.
1422         * modules/unictype/category-Pd-tests: New file.
1423         * modules/unictype/category-Pe-tests: New file.
1424         * modules/unictype/category-Pf-tests: New file.
1425         * modules/unictype/category-Pi-tests: New file.
1426         * modules/unictype/category-Po-tests: New file.
1427         * modules/unictype/category-Ps-tests: New file.
1428         * modules/unictype/category-S-tests: New file.
1429         * modules/unictype/category-Sc-tests: New file.
1430         * modules/unictype/category-Sk-tests: New file.
1431         * modules/unictype/category-Sm-tests: New file.
1432         * modules/unictype/category-So-tests: New file.
1433         * modules/unictype/category-Z-tests: New file.
1434         * modules/unictype/category-Zl-tests: New file.
1435         * modules/unictype/category-Zp-tests: New file.
1436         * modules/unictype/category-Zs-tests: New file.
1437         * modules/unictype/category-and-not-tests: New file.
1438         * modules/unictype/category-and-tests: New file.
1439         * modules/unictype/category-byname-tests: New file.
1440         * modules/unictype/category-name-tests: New file.
1441         * modules/unictype/category-none-tests: New file.
1442         * modules/unictype/category-of-tests: New file.
1443         * modules/unictype/category-or-tests: New file.
1444         * modules/unictype/category-test-withtable-tests: New file.
1445         * modules/unictype/combining-class-tests: New file.
1446         * modules/unictype/ctype-alnum-tests: New file.
1447         * modules/unictype/ctype-alpha-tests: New file.
1448         * modules/unictype/ctype-blank-tests: New file.
1449         * modules/unictype/ctype-cntrl-tests: New file.
1450         * modules/unictype/ctype-digit-tests: New file.
1451         * modules/unictype/ctype-graph-tests: New file.
1452         * modules/unictype/ctype-lower-tests: New file.
1453         * modules/unictype/ctype-print-tests: New file.
1454         * modules/unictype/ctype-punct-tests: New file.
1455         * modules/unictype/ctype-space-tests: New file.
1456         * modules/unictype/ctype-upper-tests: New file.
1457         * modules/unictype/ctype-xdigit-tests: New file.
1458         * modules/unictype/decimal-digit-tests: New file.
1459         * modules/unictype/digit-tests: New file.
1460         * modules/unictype/mirror-tests: New file.
1461         * modules/unictype/numeric-tests: New file.
1462         * modules/unictype/property-alphabetic-tests: New file.
1463         * modules/unictype/property-ascii-hex-digit-tests: New file.
1464         * modules/unictype/property-bidi-arabic-digit-tests: New file.
1465         * modules/unictype/property-bidi-arabic-right-to-left-tests: New file.
1466         * modules/unictype/property-bidi-block-separator-tests: New file.
1467         * modules/unictype/property-bidi-boundary-neutral-tests: New file.
1468         * modules/unictype/property-bidi-common-separator-tests: New file.
1469         * modules/unictype/property-bidi-control-tests: New file.
1470         * modules/unictype/property-bidi-embedding-or-override-tests: New file.
1471         * modules/unictype/property-bidi-eur-num-separator-tests: New file.
1472         * modules/unictype/property-bidi-eur-num-terminator-tests: New file.
1473         * modules/unictype/property-bidi-european-digit-tests: New file.
1474         * modules/unictype/property-bidi-hebrew-right-to-left-tests: New file.
1475         * modules/unictype/property-bidi-left-to-right-tests: New file.
1476         * modules/unictype/property-bidi-non-spacing-mark-tests: New file.
1477         * modules/unictype/property-bidi-other-neutral-tests: New file.
1478         * modules/unictype/property-bidi-pdf-tests: New file.
1479         * modules/unictype/property-bidi-segment-separator-tests: New file.
1480         * modules/unictype/property-bidi-whitespace-tests: New file.
1481         * modules/unictype/property-byname-tests: New file.
1482         * modules/unictype/property-combining-tests: New file.
1483         * modules/unictype/property-composite-tests: New file.
1484         * modules/unictype/property-currency-symbol-tests: New file.
1485         * modules/unictype/property-dash-tests: New file.
1486         * modules/unictype/property-decimal-digit-tests: New file.
1487         * modules/unictype/property-default-ignorable-code-point-tests: New file.
1488         * modules/unictype/property-deprecated-tests: New file.
1489         * modules/unictype/property-diacritic-tests: New file.
1490         * modules/unictype/property-extender-tests: New file.
1491         * modules/unictype/property-format-control-tests: New file.
1492         * modules/unictype/property-grapheme-base-tests: New file.
1493         * modules/unictype/property-grapheme-extend-tests: New file.
1494         * modules/unictype/property-grapheme-link-tests: New file.
1495         * modules/unictype/property-hex-digit-tests: New file.
1496         * modules/unictype/property-hyphen-tests: New file.
1497         * modules/unictype/property-id-continue-tests: New file.
1498         * modules/unictype/property-id-start-tests: New file.
1499         * modules/unictype/property-ideographic-tests: New file.
1500         * modules/unictype/property-ids-binary-operator-tests: New file.
1501         * modules/unictype/property-ids-trinary-operator-tests: New file.
1502         * modules/unictype/property-ignorable-control-tests: New file.
1503         * modules/unictype/property-iso-control-tests: New file.
1504         * modules/unictype/property-join-control-tests: New file.
1505         * modules/unictype/property-left-of-pair-tests: New file.
1506         * modules/unictype/property-line-separator-tests: New file.
1507         * modules/unictype/property-logical-order-exception-tests: New file.
1508         * modules/unictype/property-lowercase-tests: New file.
1509         * modules/unictype/property-math-tests: New file.
1510         * modules/unictype/property-non-break-tests: New file.
1511         * modules/unictype/property-not-a-character-tests: New file.
1512         * modules/unictype/property-numeric-tests: New file.
1513         * modules/unictype/property-other-alphabetic-tests: New file.
1514         * modules/unictype/property-other-default-ignorable-code-point-tests: New file.
1515         * modules/unictype/property-other-grapheme-extend-tests: New file.
1516         * modules/unictype/property-other-id-continue-tests: New file.
1517         * modules/unictype/property-other-id-start-tests: New file.
1518         * modules/unictype/property-other-lowercase-tests: New file.
1519         * modules/unictype/property-other-math-tests: New file.
1520         * modules/unictype/property-other-uppercase-tests: New file.
1521         * modules/unictype/property-paired-punctuation-tests: New file.
1522         * modules/unictype/property-paragraph-separator-tests: New file.
1523         * modules/unictype/property-pattern-syntax-tests: New file.
1524         * modules/unictype/property-pattern-white-space-tests: New file.
1525         * modules/unictype/property-private-use-tests: New file.
1526         * modules/unictype/property-punctuation-tests: New file.
1527         * modules/unictype/property-quotation-mark-tests: New file.
1528         * modules/unictype/property-radical-tests: New file.
1529         * modules/unictype/property-sentence-terminal-tests: New file.
1530         * modules/unictype/property-soft-dotted-tests: New file.
1531         * modules/unictype/property-space-tests: New file.
1532         * modules/unictype/property-terminal-punctuation-tests: New file.
1533         * modules/unictype/property-test-tests: New file.
1534         * modules/unictype/property-titlecase-tests: New file.
1535         * modules/unictype/property-unassigned-code-value-tests: New file.
1536         * modules/unictype/property-unified-ideograph-tests: New file.
1537         * modules/unictype/property-uppercase-tests: New file.
1538         * modules/unictype/property-variation-selector-tests: New file.
1539         * modules/unictype/property-white-space-tests: New file.
1540         * modules/unictype/property-xid-continue-tests: New file.
1541         * modules/unictype/property-xid-start-tests: New file.
1542         * modules/unictype/property-zero-width-tests: New file.
1543         * modules/unictype/scripts-tests: New file.
1544         * modules/unictype/syntax-c-ident-tests: New file.
1545         * modules/unictype/syntax-c-whitespace-tests: New file.
1546         * modules/unictype/syntax-java-ident-tests: New file.
1547         * modules/unictype/syntax-java-whitespace-tests: New file.
1548         * tests/unictype/test-bidi_byname.c: New file.
1549         * tests/unictype/test-bidi_name.c: New file.
1550         * tests/unictype/test-bidi_of.c: New file.
1551         * tests/unictype/test-bidi_test.c: New file.
1552         * tests/unictype/test-block_list.c: New file.
1553         * tests/unictype/test-block_of.c: New file.
1554         * tests/unictype/test-block_test.c: New file.
1555         * tests/unictype/test-categ_and.c: New file.
1556         * tests/unictype/test-categ_and_not.c: New file.
1557         * tests/unictype/test-categ_byname.c: New file.
1558         * tests/unictype/test-categ_name.c: New file.
1559         * tests/unictype/test-categ_none.c: New file.
1560         * tests/unictype/test-categ_of.c: New file.
1561         * tests/unictype/test-categ_or.c: New file.
1562         * tests/unictype/test-categ_test_withtable.c: New file.
1563         * tests/unictype/test-combining.c: New file.
1564         * tests/unictype/test-decdigit.c: New file.
1565         * tests/unictype/test-digit.c: New file.
1566         * tests/unictype/test-mirror.c: New file.
1567         * tests/unictype/test-numeric.c: New file.
1568         * tests/unictype/test-pr_byname.c: New file.
1569         * tests/unictype/test-pr_test.c: New file.
1570         * tests/unictype/test-predicate-part1.h: New file.
1571         * tests/unictype/test-predicate-part2.h: New file.
1572         * tests/unictype/test-scripts.c: New file.
1573         * tests/unictype/test-sy_c_ident.c: New file.
1574         * tests/unictype/test-sy_java_ident.c: New file.
1575
1576         * tests/unictype/test-categ_C.c: New file, generated by gen-ctype.c
1577         for Unicode 5.0.0.
1578         * tests/unictype/test-categ_Cc.c: Likewise.
1579         * tests/unictype/test-categ_Cf.c: Likewise.
1580         * tests/unictype/test-categ_Cn.c: Likewise.
1581         * tests/unictype/test-categ_Co.c: Likewise.
1582         * tests/unictype/test-categ_Cs.c: Likewise.
1583         * tests/unictype/test-categ_L.c: Likewise.
1584         * tests/unictype/test-categ_Ll.c: Likewise.
1585         * tests/unictype/test-categ_Lm.c: Likewise.
1586         * tests/unictype/test-categ_Lo.c: Likewise.
1587         * tests/unictype/test-categ_Lt.c: Likewise.
1588         * tests/unictype/test-categ_Lu.c: Likewise.
1589         * tests/unictype/test-categ_M.c: Likewise.
1590         * tests/unictype/test-categ_Mc.c: Likewise.
1591         * tests/unictype/test-categ_Me.c: Likewise.
1592         * tests/unictype/test-categ_Mn.c: Likewise.
1593         * tests/unictype/test-categ_N.c: Likewise.
1594         * tests/unictype/test-categ_Nd.c: Likewise.
1595         * tests/unictype/test-categ_Nl.c: Likewise.
1596         * tests/unictype/test-categ_No.c: Likewise.
1597         * tests/unictype/test-categ_P.c: Likewise.
1598         * tests/unictype/test-categ_Pc.c: Likewise.
1599         * tests/unictype/test-categ_Pd.c: Likewise.
1600         * tests/unictype/test-categ_Pe.c: Likewise.
1601         * tests/unictype/test-categ_Pf.c: Likewise.
1602         * tests/unictype/test-categ_Pi.c: Likewise.
1603         * tests/unictype/test-categ_Po.c: Likewise.
1604         * tests/unictype/test-categ_Ps.c: Likewise.
1605         * tests/unictype/test-categ_S.c: Likewise.
1606         * tests/unictype/test-categ_Sc.c: Likewise.
1607         * tests/unictype/test-categ_Sk.c: Likewise.
1608         * tests/unictype/test-categ_Sm.c: Likewise.
1609         * tests/unictype/test-categ_So.c: Likewise.
1610         * tests/unictype/test-categ_Z.c: Likewise.
1611         * tests/unictype/test-categ_Zl.c: Likewise.
1612         * tests/unictype/test-categ_Zp.c: Likewise.
1613         * tests/unictype/test-categ_Zs.c: Likewise.
1614         * tests/unictype/test-ctype_alnum.c: Likewise.
1615         * tests/unictype/test-ctype_alpha.c: Likewise.
1616         * tests/unictype/test-ctype_blank.c: Likewise.
1617         * tests/unictype/test-ctype_cntrl.c: Likewise.
1618         * tests/unictype/test-ctype_digit.c: Likewise.
1619         * tests/unictype/test-ctype_graph.c: Likewise.
1620         * tests/unictype/test-ctype_lower.c: Likewise.
1621         * tests/unictype/test-ctype_print.c: Likewise.
1622         * tests/unictype/test-ctype_punct.c: Likewise.
1623         * tests/unictype/test-ctype_space.c: Likewise.
1624         * tests/unictype/test-ctype_upper.c: Likewise.
1625         * tests/unictype/test-ctype_xdigit.c: Likewise.
1626         * tests/unictype/test-decdigit.h: Likewise.
1627         * tests/unictype/test-digit.h: Likewise.
1628         * tests/unictype/test-numeric.h: Likewise.
1629         * tests/unictype/test-pr_alphabetic.c: Likewise.
1630         * tests/unictype/test-pr_ascii_hex_digit.c: Likewise.
1631         * tests/unictype/test-pr_bidi_arabic_digit.c: Likewise.
1632         * tests/unictype/test-pr_bidi_arabic_right_to_left.c: Likewise.
1633         * tests/unictype/test-pr_bidi_block_separator.c: Likewise.
1634         * tests/unictype/test-pr_bidi_boundary_neutral.c: Likewise.
1635         * tests/unictype/test-pr_bidi_common_separator.c: Likewise.
1636         * tests/unictype/test-pr_bidi_control.c: Likewise.
1637         * tests/unictype/test-pr_bidi_embedding_or_override.c: Likewise.
1638         * tests/unictype/test-pr_bidi_eur_num_separator.c: Likewise.
1639         * tests/unictype/test-pr_bidi_eur_num_terminator.c: Likewise.
1640         * tests/unictype/test-pr_bidi_european_digit.c: Likewise.
1641         * tests/unictype/test-pr_bidi_hebrew_right_to_left.c: Likewise.
1642         * tests/unictype/test-pr_bidi_left_to_right.c: Likewise.
1643         * tests/unictype/test-pr_bidi_non_spacing_mark.c: Likewise.
1644         * tests/unictype/test-pr_bidi_other_neutral.c: Likewise.
1645         * tests/unictype/test-pr_bidi_pdf.c: Likewise.
1646         * tests/unictype/test-pr_bidi_segment_separator.c: Likewise.
1647         * tests/unictype/test-pr_bidi_whitespace.c: Likewise.
1648         * tests/unictype/test-pr_combining.c: Likewise.
1649         * tests/unictype/test-pr_composite.c: Likewise.
1650         * tests/unictype/test-pr_currency_symbol.c: Likewise.
1651         * tests/unictype/test-pr_dash.c: Likewise.
1652         * tests/unictype/test-pr_decimal_digit.c: Likewise.
1653         * tests/unictype/test-pr_default_ignorable_code_point.c: Likewise.
1654         * tests/unictype/test-pr_deprecated.c: Likewise.
1655         * tests/unictype/test-pr_diacritic.c: Likewise.
1656         * tests/unictype/test-pr_extender.c: Likewise.
1657         * tests/unictype/test-pr_format_control.c: Likewise.
1658         * tests/unictype/test-pr_grapheme_base.c: Likewise.
1659         * tests/unictype/test-pr_grapheme_extend.c: Likewise.
1660         * tests/unictype/test-pr_grapheme_link.c: Likewise.
1661         * tests/unictype/test-pr_hex_digit.c: Likewise.
1662         * tests/unictype/test-pr_hyphen.c: Likewise.
1663         * tests/unictype/test-pr_id_continue.c: Likewise.
1664         * tests/unictype/test-pr_id_start.c: Likewise.
1665         * tests/unictype/test-pr_ideographic.c: Likewise.
1666         * tests/unictype/test-pr_ids_binary_operator.c: Likewise.
1667         * tests/unictype/test-pr_ids_trinary_operator.c: Likewise.
1668         * tests/unictype/test-pr_ignorable_control.c: Likewise.
1669         * tests/unictype/test-pr_iso_control.c: Likewise.
1670         * tests/unictype/test-pr_join_control.c: Likewise.
1671         * tests/unictype/test-pr_left_of_pair.c: Likewise.
1672         * tests/unictype/test-pr_line_separator.c: Likewise.
1673         * tests/unictype/test-pr_logical_order_exception.c: Likewise.
1674         * tests/unictype/test-pr_lowercase.c: Likewise.
1675         * tests/unictype/test-pr_math.c: Likewise.
1676         * tests/unictype/test-pr_non_break.c: Likewise.
1677         * tests/unictype/test-pr_not_a_character.c: Likewise.
1678         * tests/unictype/test-pr_numeric.c: Likewise.
1679         * tests/unictype/test-pr_other_alphabetic.c: Likewise.
1680         * tests/unictype/test-pr_other_default_ignorable_code_point.c: Likewise.
1681         * tests/unictype/test-pr_other_grapheme_extend.c: Likewise.
1682         * tests/unictype/test-pr_other_id_continue.c: Likewise.
1683         * tests/unictype/test-pr_other_id_start.c: Likewise.
1684         * tests/unictype/test-pr_other_lowercase.c: Likewise.
1685         * tests/unictype/test-pr_other_math.c: Likewise.
1686         * tests/unictype/test-pr_other_uppercase.c: Likewise.
1687         * tests/unictype/test-pr_paired_punctuation.c: Likewise.
1688         * tests/unictype/test-pr_paragraph_separator.c: Likewise.
1689         * tests/unictype/test-pr_pattern_syntax.c: Likewise.
1690         * tests/unictype/test-pr_pattern_white_space.c: Likewise.
1691         * tests/unictype/test-pr_private_use.c: Likewise.
1692         * tests/unictype/test-pr_punctuation.c: Likewise.
1693         * tests/unictype/test-pr_quotation_mark.c: Likewise.
1694         * tests/unictype/test-pr_radical.c: Likewise.
1695         * tests/unictype/test-pr_sentence_terminal.c: Likewise.
1696         * tests/unictype/test-pr_soft_dotted.c: Likewise.
1697         * tests/unictype/test-pr_space.c: Likewise.
1698         * tests/unictype/test-pr_terminal_punctuation.c: Likewise.
1699         * tests/unictype/test-pr_titlecase.c: Likewise.
1700         * tests/unictype/test-pr_unassigned_code_value.c: Likewise.
1701         * tests/unictype/test-pr_unified_ideograph.c: Likewise.
1702         * tests/unictype/test-pr_uppercase.c: Likewise.
1703         * tests/unictype/test-pr_variation_selector.c: Likewise.
1704         * tests/unictype/test-pr_white_space.c: Likewise.
1705         * tests/unictype/test-pr_xid_continue.c: Likewise.
1706         * tests/unictype/test-pr_xid_start.c: Likewise.
1707         * tests/unictype/test-pr_zero_width.c: Likewise.
1708         * tests/unictype/test-sy_c_whitespace.c: Likewise.
1709         * tests/unictype/test-sy_java_whitespace.c: Likewise.
1710
1711 2007-11-12  Bruno Haible  <bruno@clisp.org>
1712
1713         Unicode character classification functions.
1714         * lib/unictype.h: New file.
1715         * modules/unictype/base: New file.
1716         * modules/unictype/category-L: New file.
1717         * modules/unictype/category-Lu: New file.
1718         * modules/unictype/category-Ll: New file.
1719         * modules/unictype/category-Lt: New file.
1720         * modules/unictype/category-Lm: New file.
1721         * modules/unictype/category-Lo: New file.
1722         * modules/unictype/category-M: New file.
1723         * modules/unictype/category-Mn: New file.
1724         * modules/unictype/category-Mc: New file.
1725         * modules/unictype/category-Me: New file.
1726         * modules/unictype/category-N: New file.
1727         * modules/unictype/category-Nd: New file.
1728         * modules/unictype/category-Nl: New file.
1729         * modules/unictype/category-No: New file.
1730         * modules/unictype/category-P: New file.
1731         * modules/unictype/category-Pc: New file.
1732         * modules/unictype/category-Pd: New file.
1733         * modules/unictype/category-Ps: New file.
1734         * modules/unictype/category-Pe: New file.
1735         * modules/unictype/category-Pi: New file.
1736         * modules/unictype/category-Pf: New file.
1737         * modules/unictype/category-Po: New file.
1738         * modules/unictype/category-S: New file.
1739         * modules/unictype/category-Sm: New file.
1740         * modules/unictype/category-Sc: New file.
1741         * modules/unictype/category-Sk: New file.
1742         * modules/unictype/category-So: New file.
1743         * modules/unictype/category-Z: New file.
1744         * modules/unictype/category-Zs: New file.
1745         * modules/unictype/category-Zl: New file.
1746         * modules/unictype/category-Zp: New file.
1747         * modules/unictype/category-C: New file.
1748         * modules/unictype/category-Cc: New file.
1749         * modules/unictype/category-Cf: New file.
1750         * modules/unictype/category-Cs: New file.
1751         * modules/unictype/category-Co: New file.
1752         * modules/unictype/category-Cn: New file.
1753         * modules/unictype/category-or: New file.
1754         * modules/unictype/category-of: New file.
1755         * modules/unictype/category-test: New file.
1756         * modules/unictype/category-test-withtable: New file.
1757         * modules/unictype/category-byname: New file.
1758         * modules/unictype/category-none: New file.
1759         * modules/unictype/category-and: New file.
1760         * modules/unictype/category-and-not: New file.
1761         * modules/unictype/category-name: New file.
1762         * modules/unictype/combining-class: New file.
1763         * modules/unictype/category-all: New file.
1764         * modules/unictype/bidicategory-all: New file.
1765         * modules/unictype/bidicategory-byname: New file.
1766         * modules/unictype/bidicategory-name: New file.
1767         * modules/unictype/bidicategory-of: New file.
1768         * modules/unictype/bidicategory-test: New file.
1769         * modules/unictype/decimal-digit: New file.
1770         * modules/unictype/digit: New file.
1771         * modules/unictype/numeric: New file.
1772         * modules/unictype/mirror: New file.
1773         * modules/unictype/property-white-space: New file.
1774         * modules/unictype/property-alphabetic: New file.
1775         * modules/unictype/property-other-alphabetic: New file.
1776         * modules/unictype/property-not-a-character: New file.
1777         * modules/unictype/property-default-ignorable-code-point: New file.
1778         * modules/unictype/property-other-default-ignorable-code-point: New
1779         file.
1780         * modules/unictype/property-deprecated: New file.
1781         * modules/unictype/property-logical-order-exception: New file.
1782         * modules/unictype/property-variation-selector: New file.
1783         * modules/unictype/property-private-use: New file.
1784         * modules/unictype/property-unassigned-code-value: New file.
1785         * modules/unictype/property-uppercase: New file.
1786         * modules/unictype/property-other-uppercase: New file.
1787         * modules/unictype/property-lowercase: New file.
1788         * modules/unictype/property-other-lowercase: New file.
1789         * modules/unictype/property-titlecase: New file.
1790         * modules/unictype/property-soft-dotted: New file.
1791         * modules/unictype/property-id-start: New file.
1792         * modules/unictype/property-other-id-start: New file.
1793         * modules/unictype/property-id-continue: New file.
1794         * modules/unictype/property-other-id-continue: New file.
1795         * modules/unictype/property-xid-start: New file.
1796         * modules/unictype/property-xid-continue: New file.
1797         * modules/unictype/property-pattern-white-space: New file.
1798         * modules/unictype/property-pattern-syntax: New file.
1799         * modules/unictype/property-join-control: New file.
1800         * modules/unictype/property-grapheme-base: New file.
1801         * modules/unictype/property-grapheme-extend: New file.
1802         * modules/unictype/property-other-grapheme-extend: New file.
1803         * modules/unictype/property-grapheme-link: New file.
1804         * modules/unictype/property-bidi-control: New file.
1805         * modules/unictype/property-bidi-left-to-right: New file.
1806         * modules/unictype/property-bidi-hebrew-right-to-left: New file.
1807         * modules/unictype/property-bidi-arabic-right-to-left: New file.
1808         * modules/unictype/property-bidi-european-digit: New file.
1809         * modules/unictype/property-bidi-eur-num-separator: New file.
1810         * modules/unictype/property-bidi-eur-num-terminator: New file.
1811         * modules/unictype/property-bidi-arabic-digit: New file.
1812         * modules/unictype/property-bidi-common-separator: New file.
1813         * modules/unictype/property-bidi-block-separator: New file.
1814         * modules/unictype/property-bidi-segment-separator: New file.
1815         * modules/unictype/property-bidi-whitespace: New file.
1816         * modules/unictype/property-bidi-non-spacing-mark: New file.
1817         * modules/unictype/property-bidi-boundary-neutral: New file.
1818         * modules/unictype/property-bidi-pdf: New file.
1819         * modules/unictype/property-bidi-embedding-or-override: New file.
1820         * modules/unictype/property-bidi-other-neutral: New file.
1821         * modules/unictype/property-hex-digit: New file.
1822         * modules/unictype/property-ascii-hex-digit: New file.
1823         * modules/unictype/property-ideographic: New file.
1824         * modules/unictype/property-unified-ideograph: New file.
1825         * modules/unictype/property-radical: New file.
1826         * modules/unictype/property-ids-binary-operator: New file.
1827         * modules/unictype/property-ids-trinary-operator: New file.
1828         * modules/unictype/property-zero-width: New file.
1829         * modules/unictype/property-space: New file.
1830         * modules/unictype/property-non-break: New file.
1831         * modules/unictype/property-iso-control: New file.
1832         * modules/unictype/property-format-control: New file.
1833         * modules/unictype/property-dash: New file.
1834         * modules/unictype/property-hyphen: New file.
1835         * modules/unictype/property-punctuation: New file.
1836         * modules/unictype/property-line-separator: New file.
1837         * modules/unictype/property-paragraph-separator: New file.
1838         * modules/unictype/property-quotation-mark: New file.
1839         * modules/unictype/property-sentence-terminal: New file.
1840         * modules/unictype/property-terminal-punctuation: New file.
1841         * modules/unictype/property-currency-symbol: New file.
1842         * modules/unictype/property-math: New file.
1843         * modules/unictype/property-other-math: New file.
1844         * modules/unictype/property-paired-punctuation: New file.
1845         * modules/unictype/property-left-of-pair: New file.
1846         * modules/unictype/property-combining: New file.
1847         * modules/unictype/property-composite: New file.
1848         * modules/unictype/property-decimal-digit: New file.
1849         * modules/unictype/property-numeric: New file.
1850         * modules/unictype/property-diacritic: New file.
1851         * modules/unictype/property-extender: New file.
1852         * modules/unictype/property-ignorable-control: New file.
1853         * modules/unictype/property-test: New file.
1854         * modules/unictype/property-byname: New file.
1855         * modules/unictype/property-all: New file.
1856         * modules/unictype/scripts: New file.
1857         * modules/unictype/scripts-all: New file.
1858         * modules/unictype/block-of: New file.
1859         * modules/unictype/block-test: New file.
1860         * modules/unictype/block-list: New file.
1861         * modules/unictype/block-all: New file.
1862         * modules/unictype/syntax-c-whitespace: New file.
1863         * modules/unictype/syntax-java-whitespace: New file.
1864         * modules/unictype/syntax-c-ident: New file.
1865         * modules/unictype/syntax-java-ident: New file.
1866         * modules/unictype/ctype-alnum: New file.
1867         * modules/unictype/ctype-alpha: New file.
1868         * modules/unictype/ctype-cntrl: New file.
1869         * modules/unictype/ctype-digit: New file.
1870         * modules/unictype/ctype-graph: New file.
1871         * modules/unictype/ctype-lower: New file.
1872         * modules/unictype/ctype-print: New file.
1873         * modules/unictype/ctype-punct: New file.
1874         * modules/unictype/ctype-space: New file.
1875         * modules/unictype/ctype-upper: New file.
1876         * modules/unictype/ctype-xdigit: New file.
1877         * modules/unictype/ctype-blank: New file.
1878         * lib/unictype/bidi_byname.c: New file.
1879         * lib/unictype/bidi_name.c: New file.
1880         * lib/unictype/bidi_of.c: New file.
1881         * lib/unictype/bidi_test.c: New file.
1882         * lib/unictype/bitmap.h: New file.
1883         * lib/unictype/block_test.c: New file.
1884         * lib/unictype/blocks.c: New file.
1885         * lib/unictype/categ_C.c: New file.
1886         * lib/unictype/categ_Cc.c: New file.
1887         * lib/unictype/categ_Cf.c: New file.
1888         * lib/unictype/categ_Cn.c: New file.
1889         * lib/unictype/categ_Co.c: New file.
1890         * lib/unictype/categ_Cs.c: New file.
1891         * lib/unictype/categ_L.c: New file.
1892         * lib/unictype/categ_Ll.c: New file.
1893         * lib/unictype/categ_Lm.c: New file.
1894         * lib/unictype/categ_Lo.c: New file.
1895         * lib/unictype/categ_Lt.c: New file.
1896         * lib/unictype/categ_Lu.c: New file.
1897         * lib/unictype/categ_M.c: New file.
1898         * lib/unictype/categ_Mc.c: New file.
1899         * lib/unictype/categ_Me.c: New file.
1900         * lib/unictype/categ_Mn.c: New file.
1901         * lib/unictype/categ_N.c: New file.
1902         * lib/unictype/categ_Nd.c: New file.
1903         * lib/unictype/categ_Nl.c: New file.
1904         * lib/unictype/categ_No.c: New file.
1905         * lib/unictype/categ_P.c: New file.
1906         * lib/unictype/categ_Pc.c: New file.
1907         * lib/unictype/categ_Pd.c: New file.
1908         * lib/unictype/categ_Pe.c: New file.
1909         * lib/unictype/categ_Pf.c: New file.
1910         * lib/unictype/categ_Pi.c: New file.
1911         * lib/unictype/categ_Po.c: New file.
1912         * lib/unictype/categ_Ps.c: New file.
1913         * lib/unictype/categ_S.c: New file.
1914         * lib/unictype/categ_Sc.c: New file.
1915         * lib/unictype/categ_Sk.c: New file.
1916         * lib/unictype/categ_Sm.c: New file.
1917         * lib/unictype/categ_So.c: New file.
1918         * lib/unictype/categ_Z.c: New file.
1919         * lib/unictype/categ_Zl.c: New file.
1920         * lib/unictype/categ_Zp.c: New file.
1921         * lib/unictype/categ_Zs.c: New file.
1922         * lib/unictype/categ_and.c: New file.
1923         * lib/unictype/categ_and_not.c: New file.
1924         * lib/unictype/categ_byname.c: New file.
1925         * lib/unictype/categ_name.c: New file.
1926         * lib/unictype/categ_none.c: New file.
1927         * lib/unictype/categ_of.c: New file.
1928         * lib/unictype/categ_or.c: New file.
1929         * lib/unictype/categ_test.c: New file.
1930         * lib/unictype/combining.c: New file.
1931         * lib/unictype/ctype_alnum.c: New file.
1932         * lib/unictype/ctype_alpha.c: New file.
1933         * lib/unictype/ctype_blank.c: New file.
1934         * lib/unictype/ctype_cntrl.c: New file.
1935         * lib/unictype/ctype_digit.c: New file.
1936         * lib/unictype/ctype_graph.c: New file.
1937         * lib/unictype/ctype_lower.c: New file.
1938         * lib/unictype/ctype_print.c: New file.
1939         * lib/unictype/ctype_punct.c: New file.
1940         * lib/unictype/ctype_space.c: New file.
1941         * lib/unictype/ctype_upper.c: New file.
1942         * lib/unictype/ctype_xdigit.c: New file.
1943         * lib/unictype/decdigit.c: New file.
1944         * lib/unictype/digit.c: New file.
1945         * lib/unictype/identsyntaxmap.h: New file.
1946         * lib/unictype/mirror.c: New file.
1947         * lib/unictype/numeric.c: New file.
1948         * lib/unictype/pr_alphabetic.c: New file.
1949         * lib/unictype/pr_ascii_hex_digit.c: New file.
1950         * lib/unictype/pr_bidi_arabic_digit.c: New file.
1951         * lib/unictype/pr_bidi_arabic_right_to_left.c: New file.
1952         * lib/unictype/pr_bidi_block_separator.c: New file.
1953         * lib/unictype/pr_bidi_boundary_neutral.c: New file.
1954         * lib/unictype/pr_bidi_common_separator.c: New file.
1955         * lib/unictype/pr_bidi_control.c: New file.
1956         * lib/unictype/pr_bidi_embedding_or_override.c: New file.
1957         * lib/unictype/pr_bidi_eur_num_separator.c: New file.
1958         * lib/unictype/pr_bidi_eur_num_terminator.c: New file.
1959         * lib/unictype/pr_bidi_european_digit.c: New file.
1960         * lib/unictype/pr_bidi_hebrew_right_to_left.c: New file.
1961         * lib/unictype/pr_bidi_left_to_right.c: New file.
1962         * lib/unictype/pr_bidi_non_spacing_mark.c: New file.
1963         * lib/unictype/pr_bidi_other_neutral.c: New file.
1964         * lib/unictype/pr_bidi_pdf.c: New file.
1965         * lib/unictype/pr_bidi_segment_separator.c: New file.
1966         * lib/unictype/pr_bidi_whitespace.c: New file.
1967         * lib/unictype/pr_byname.c: New file.
1968         * lib/unictype/pr_byname.gperf: New file.
1969         * lib/unictype/pr_combining.c: New file.
1970         * lib/unictype/pr_composite.c: New file.
1971         * lib/unictype/pr_currency_symbol.c: New file.
1972         * lib/unictype/pr_dash.c: New file.
1973         * lib/unictype/pr_decimal_digit.c: New file.
1974         * lib/unictype/pr_default_ignorable_code_point.c: New file.
1975         * lib/unictype/pr_deprecated.c: New file.
1976         * lib/unictype/pr_diacritic.c: New file.
1977         * lib/unictype/pr_extender.c: New file.
1978         * lib/unictype/pr_format_control.c: New file.
1979         * lib/unictype/pr_grapheme_base.c: New file.
1980         * lib/unictype/pr_grapheme_extend.c: New file.
1981         * lib/unictype/pr_grapheme_link.c: New file.
1982         * lib/unictype/pr_hex_digit.c: New file.
1983         * lib/unictype/pr_hyphen.c: New file.
1984         * lib/unictype/pr_id_continue.c: New file.
1985         * lib/unictype/pr_id_start.c: New file.
1986         * lib/unictype/pr_ideographic.c: New file.
1987         * lib/unictype/pr_ids_binary_operator.c: New file.
1988         * lib/unictype/pr_ids_trinary_operator.c: New file.
1989         * lib/unictype/pr_ignorable_control.c: New file.
1990         * lib/unictype/pr_iso_control.c: New file.
1991         * lib/unictype/pr_join_control.c: New file.
1992         * lib/unictype/pr_left_of_pair.c: New file.
1993         * lib/unictype/pr_line_separator.c: New file.
1994         * lib/unictype/pr_logical_order_exception.c: New file.
1995         * lib/unictype/pr_lowercase.c: New file.
1996         * lib/unictype/pr_math.c: New file.
1997         * lib/unictype/pr_non_break.c: New file.
1998         * lib/unictype/pr_not_a_character.c: New file.
1999         * lib/unictype/pr_numeric.c: New file.
2000         * lib/unictype/pr_other_alphabetic.c: New file.
2001         * lib/unictype/pr_other_default_ignorable_code_point.c: New file.
2002         * lib/unictype/pr_other_grapheme_extend.c: New file.
2003         * lib/unictype/pr_other_id_continue.c: New file.
2004         * lib/unictype/pr_other_id_start.c: New file.
2005         * lib/unictype/pr_other_lowercase.c: New file.
2006         * lib/unictype/pr_other_math.c: New file.
2007         * lib/unictype/pr_other_uppercase.c: New file.
2008         * lib/unictype/pr_paired_punctuation.c: New file.
2009         * lib/unictype/pr_paragraph_separator.c: New file.
2010         * lib/unictype/pr_pattern_syntax.c: New file.
2011         * lib/unictype/pr_pattern_white_space.c: New file.
2012         * lib/unictype/pr_private_use.c: New file.
2013         * lib/unictype/pr_punctuation.c: New file.
2014         * lib/unictype/pr_quotation_mark.c: New file.
2015         * lib/unictype/pr_radical.c: New file.
2016         * lib/unictype/pr_sentence_terminal.c: New file.
2017         * lib/unictype/pr_soft_dotted.c: New file.
2018         * lib/unictype/pr_space.c: New file.
2019         * lib/unictype/pr_terminal_punctuation.c: New file.
2020         * lib/unictype/pr_test.c: New file.
2021         * lib/unictype/pr_titlecase.c: New file.
2022         * lib/unictype/pr_unassigned_code_value.c: New file.
2023         * lib/unictype/pr_unified_ideograph.c: New file.
2024         * lib/unictype/pr_uppercase.c: New file.
2025         * lib/unictype/pr_variation_selector.c: New file.
2026         * lib/unictype/pr_white_space.c: New file.
2027         * lib/unictype/pr_xid_continue.c: New file.
2028         * lib/unictype/pr_xid_start.c: New file.
2029         * lib/unictype/pr_zero_width.c: New file.
2030         * lib/unictype/scripts.c: New file.
2031         * lib/unictype/sy_c_ident.c: New file.
2032         * lib/unictype/sy_c_whitespace.c: New file.
2033         * lib/unictype/sy_java_ident.c: New file.
2034         * lib/unictype/sy_java_whitespace.c: New file.
2035
2036         * lib/unictype/bidi_of.h: New file, generated by gen-ctype.c for
2037         Unicode 5.0.0.
2038         * lib/unictype/blocks.h: Likewise.
2039         * lib/unictype/categ_C.h: Likewise.
2040         * lib/unictype/categ_Cc.h: Likewise.
2041         * lib/unictype/categ_Cf.h: Likewise.
2042         * lib/unictype/categ_Cn.h: Likewise.
2043         * lib/unictype/categ_Co.h: Likewise.
2044         * lib/unictype/categ_Cs.h: Likewise.
2045         * lib/unictype/categ_L.h: Likewise.
2046         * lib/unictype/categ_Ll.h: Likewise.
2047         * lib/unictype/categ_Lm.h: Likewise.
2048         * lib/unictype/categ_Lo.h: Likewise.
2049         * lib/unictype/categ_Lt.h: Likewise.
2050         * lib/unictype/categ_Lu.h: Likewise.
2051         * lib/unictype/categ_M.h: Likewise.
2052         * lib/unictype/categ_Mc.h: Likewise.
2053         * lib/unictype/categ_Me.h: Likewise.
2054         * lib/unictype/categ_Mn.h: Likewise.
2055         * lib/unictype/categ_N.h: Likewise.
2056         * lib/unictype/categ_Nd.h: Likewise.
2057         * lib/unictype/categ_Nl.h: Likewise.
2058         * lib/unictype/categ_No.h: Likewise.
2059         * lib/unictype/categ_P.h: Likewise.
2060         * lib/unictype/categ_Pc.h: Likewise.
2061         * lib/unictype/categ_Pd.h: Likewise.
2062         * lib/unictype/categ_Pe.h: Likewise.
2063         * lib/unictype/categ_Pf.h: Likewise.
2064         * lib/unictype/categ_Pi.h: Likewise.
2065         * lib/unictype/categ_Po.h: Likewise.
2066         * lib/unictype/categ_Ps.h: Likewise.
2067         * lib/unictype/categ_S.h: Likewise.
2068         * lib/unictype/categ_Sc.h: Likewise.
2069         * lib/unictype/categ_Sk.h: Likewise.
2070         * lib/unictype/categ_Sm.h: Likewise.
2071         * lib/unictype/categ_So.h: Likewise.
2072         * lib/unictype/categ_Z.h: Likewise.
2073         * lib/unictype/categ_Zl.h: Likewise.
2074         * lib/unictype/categ_Zp.h: Likewise.
2075         * lib/unictype/categ_Zs.h: Likewise.
2076         * lib/unictype/categ_of.h: Likewise.
2077         * lib/unictype/combining.h: Likewise.
2078         * lib/unictype/ctype_alnum.h: Likewise.
2079         * lib/unictype/ctype_alpha.h: Likewise.
2080         * lib/unictype/ctype_blank.h: Likewise.
2081         * lib/unictype/ctype_cntrl.h: Likewise.
2082         * lib/unictype/ctype_digit.h: Likewise.
2083         * lib/unictype/ctype_graph.h: Likewise.
2084         * lib/unictype/ctype_lower.h: Likewise.
2085         * lib/unictype/ctype_print.h: Likewise.
2086         * lib/unictype/ctype_punct.h: Likewise.
2087         * lib/unictype/ctype_space.h: Likewise.
2088         * lib/unictype/ctype_upper.h: Likewise.
2089         * lib/unictype/ctype_xdigit.h: Likewise.
2090         * lib/unictype/decdigit.h: Likewise.
2091         * lib/unictype/digit.h: Likewise.
2092         * lib/unictype/mirror.h: Likewise.
2093         * lib/unictype/numeric.h: Likewise.
2094         * lib/unictype/pr_alphabetic.h: Likewise.
2095         * lib/unictype/pr_ascii_hex_digit.h: Likewise.
2096         * lib/unictype/pr_bidi_arabic_digit.h: Likewise.
2097         * lib/unictype/pr_bidi_arabic_right_to_left.h: Likewise.
2098         * lib/unictype/pr_bidi_block_separator.h: Likewise.
2099         * lib/unictype/pr_bidi_boundary_neutral.h: Likewise.
2100         * lib/unictype/pr_bidi_common_separator.h: Likewise.
2101         * lib/unictype/pr_bidi_control.h: Likewise.
2102         * lib/unictype/pr_bidi_embedding_or_override.h: Likewise.
2103         * lib/unictype/pr_bidi_eur_num_separator.h: Likewise.
2104         * lib/unictype/pr_bidi_eur_num_terminator.h: Likewise.
2105         * lib/unictype/pr_bidi_european_digit.h: Likewise.
2106         * lib/unictype/pr_bidi_hebrew_right_to_left.h: Likewise.
2107         * lib/unictype/pr_bidi_left_to_right.h: Likewise.
2108         * lib/unictype/pr_bidi_non_spacing_mark.h: Likewise.
2109         * lib/unictype/pr_bidi_other_neutral.h: Likewise.
2110         * lib/unictype/pr_bidi_pdf.h: Likewise.
2111         * lib/unictype/pr_bidi_segment_separator.h: Likewise.
2112         * lib/unictype/pr_bidi_whitespace.h: Likewise.
2113         * lib/unictype/pr_combining.h: Likewise.
2114         * lib/unictype/pr_composite.h: Likewise.
2115         * lib/unictype/pr_currency_symbol.h: Likewise.
2116         * lib/unictype/pr_dash.h: Likewise.
2117         * lib/unictype/pr_decimal_digit.h: Likewise.
2118         * lib/unictype/pr_default_ignorable_code_point.h: Likewise.
2119         * lib/unictype/pr_deprecated.h: Likewise.
2120         * lib/unictype/pr_diacritic.h: Likewise.
2121         * lib/unictype/pr_extender.h: Likewise.
2122         * lib/unictype/pr_format_control.h: Likewise.
2123         * lib/unictype/pr_grapheme_base.h: Likewise.
2124         * lib/unictype/pr_grapheme_extend.h: Likewise.
2125         * lib/unictype/pr_grapheme_link.h: Likewise.
2126         * lib/unictype/pr_hex_digit.h: Likewise.
2127         * lib/unictype/pr_hyphen.h: Likewise.
2128         * lib/unictype/pr_id_continue.h: Likewise.
2129         * lib/unictype/pr_id_start.h: Likewise.
2130         * lib/unictype/pr_ideographic.h: Likewise.
2131         * lib/unictype/pr_ids_binary_operator.h: Likewise.
2132         * lib/unictype/pr_ids_trinary_operator.h: Likewise.
2133         * lib/unictype/pr_ignorable_control.h: Likewise.
2134         * lib/unictype/pr_iso_control.h: Likewise.
2135         * lib/unictype/pr_join_control.h: Likewise.
2136         * lib/unictype/pr_left_of_pair.h: Likewise.
2137         * lib/unictype/pr_line_separator.h: Likewise.
2138         * lib/unictype/pr_logical_order_exception.h: Likewise.
2139         * lib/unictype/pr_lowercase.h: Likewise.
2140         * lib/unictype/pr_math.h: Likewise.
2141         * lib/unictype/pr_non_break.h: Likewise.
2142         * lib/unictype/pr_not_a_character.h: Likewise.
2143         * lib/unictype/pr_numeric.h: Likewise.
2144         * lib/unictype/pr_other_alphabetic.h: Likewise.
2145         * lib/unictype/pr_other_default_ignorable_code_point.h: Likewise.
2146         * lib/unictype/pr_other_grapheme_extend.h: Likewise.
2147         * lib/unictype/pr_other_id_continue.h: Likewise.
2148         * lib/unictype/pr_other_id_start.h: Likewise.
2149         * lib/unictype/pr_other_lowercase.h: Likewise.
2150         * lib/unictype/pr_other_math.h: Likewise.
2151         * lib/unictype/pr_other_uppercase.h: Likewise.
2152         * lib/unictype/pr_paired_punctuation.h: Likewise.
2153         * lib/unictype/pr_paragraph_separator.h: Likewise.
2154         * lib/unictype/pr_pattern_syntax.h: Likewise.
2155         * lib/unictype/pr_pattern_white_space.h: Likewise.
2156         * lib/unictype/pr_private_use.h: Likewise.
2157         * lib/unictype/pr_punctuation.h: Likewise.
2158         * lib/unictype/pr_quotation_mark.h: Likewise.
2159         * lib/unictype/pr_radical.h: Likewise.
2160         * lib/unictype/pr_sentence_terminal.h: Likewise.
2161         * lib/unictype/pr_soft_dotted.h: Likewise.
2162         * lib/unictype/pr_space.h: Likewise.
2163         * lib/unictype/pr_terminal_punctuation.h: Likewise.
2164         * lib/unictype/pr_titlecase.h: Likewise.
2165         * lib/unictype/pr_unassigned_code_value.h: Likewise.
2166         * lib/unictype/pr_unified_ideograph.h: Likewise.
2167         * lib/unictype/pr_uppercase.h: Likewise.
2168         * lib/unictype/pr_variation_selector.h: Likewise.
2169         * lib/unictype/pr_white_space.h: Likewise.
2170         * lib/unictype/pr_xid_continue.h: Likewise.
2171         * lib/unictype/pr_xid_start.h: Likewise.
2172         * lib/unictype/pr_zero_width.h: Likewise.
2173         * lib/unictype/scripts.h: Likewise.
2174         * lib/unictype/scripts_byname.gperf: Likewise.
2175         * lib/unictype/sy_c_ident.h: Likewise.
2176         * lib/unictype/sy_c_whitespace.h: Likewise.
2177         * lib/unictype/sy_java_ident.h: Likewise.
2178         * lib/unictype/sy_java_whitespace.h: Likewise.
2179
2180         * lib/unictype/Makefile: New file.
2181         * lib/unictype/gen-ctype.c: New file, based on gen-unicode-ctype.c in
2182         glibc.
2183         * lib/unictype/3level.h: New file, copied from glibc.
2184         * lib/unictype/3levelbit.h: New file.
2185
2186 2007-11-11  Bruno Haible  <bruno@clisp.org>
2187
2188         * modules/gperf: New file.
2189         * modules/iconv_open (Depends-on): Add it.
2190         (Makefile.am): Remove the GPERF definition.
2191
2192 2007-11-11  Bruno Haible  <bruno@clisp.org>
2193
2194         * m4/round.m4 (gl_FUNC_ROUND): Test against NetBSD 3.0 bug.
2195         * doc/functions/round.texi: Mention the NetBSD 3.0 bug.
2196
2197 2007-11-11  Bruno Haible  <bruno@clisp.org>
2198
2199         * tests/test-argmatch.c (ARGMATCH_DIE): Undefine.
2200         (usage): Remove function.
2201
2202 2007-11-11  Bruno Haible  <bruno@clisp.org>
2203
2204         * m4/roundf.m4 (gl_FUNC_ROUNDF): Use gl_FUNC_FLOORF_LIBS and
2205         gl_FUNC_CEILF_LIBS.
2206         * m4/round.m4 (gl_FUNC_ROUND): Use gl_FUNC_FLOOR_LIBS and
2207         gl_FUNC_CEIL_LIBS.
2208         * m4/roundl.m4 (gl_FUNC_ROUNDL): Use gl_FUNC_FLOORL_LIBS and
2209         gl_FUNC_CEILL_LIBS.
2210         * modules/roundf (Files): Add m4/floorf.m4, m4/ceilf.m4.
2211         * modules/round (Files): Add m4/floor.m4, m4/ceil.m4.
2212         * modules/roundl (Files): Add m4/floorl.m4, m4/ceill.m4.
2213
2214 2007-11-11  Bruno Haible  <bruno@clisp.org>
2215
2216         * m4/roundf.m4 (gl_FUNC_ROUNDF): Handle the case that floorf and
2217         roundf were declared but do not exist on functions.
2218         * m4/roundl.m4 (gl_FUNC_ROUNDL): Handle the case that floorl and
2219         roundl were declared but do not exist on functions.
2220         * lib/round.c (HAVE_FLOOR_AND_CEIL): Use HAVE_FLOORF_AND_CEILF and
2221         HAVE_FLOORL_AND_CEILL, respectively.
2222         Needed for Sun C on Solaris 10.
2223
2224 2007-11-11  Bruno Haible  <bruno@clisp.org>
2225
2226         * m4/roundf.m4 (gl_FUNC_ROUNDF): Set REPLACE_ROUNDF instead of
2227         HAVE_DECL_ROUNDF. Remove redundant AC_SUBST.
2228         * m4/round.m4 (gl_FUNC_ROUND): Set REPLACE_ROUND instead of
2229         HAVE_DECL_ROUND. Remove redundant AC_SUBST.
2230         * m4/roundl.m4 (gl_FUNC_ROUNDL): Set REPLACE_ROUNDL instead of
2231         HAVE_DECL_ROUNDL. Remove redundant AC_SUBST.
2232         * lib/math.in.h (roundf): Use REPLACE_ROUNDF instead of
2233         HAVE_DECL_ROUNDF.
2234         (round): Use REPLACE_ROUND instead of HAVE_DECL_ROUND.
2235         (roundl): Use REPLACE_ROUNDL instead of HAVE_DECL_ROUNDL.
2236         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize REPLACE_ROUND* instead
2237         of HAVE_DECL_ROUND*.
2238         * modules/math (Makefile.am): Update.
2239
2240 2007-11-10  Bruno Haible  <bruno@clisp.org>
2241
2242         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_PARSE): Use same check for
2243         ptrdiff_t as m4/intl.m4.
2244
2245 2007-11-10  Jim Meyering  <meyering@redhat.com>
2246
2247         Avoid link failure for the argmatch test.
2248         * tests/test-argmatch.c (usage): Define function to avoid a link
2249         failure: argmatch_die requires a usage function.
2250
2251 2007-11-09  Bruno Haible  <bruno@clisp.org>
2252
2253         * doc/functions/snprintf.texi: Mention BeOS deficiency.
2254         * doc/functions/vsnprintf.texi: Likewise.
2255         * lib/vasnprintf.c (VASNPRINTF): Ensure that we never call snprintf
2256         with a size argument < 2.
2257
2258 2007-11-09  Bruno Haible  <bruno@clisp.org>
2259
2260         * lib/vasnprintf.c (VASNPRINTF): Increase reallocation of snprintf
2261         buffer. Fixes an inefficiency introduced on 2007-11-03.
2262
2263 2007-11-09  Bruno Haible  <bruno@clisp.org>
2264
2265         * m4/locale-tr.m4 (gt_LOCALE_TR_UTF8) [BeOS]: Make this test return
2266         none instead of tr_TR. Fixes a failure of test-c-strcasecmp.c.
2267
2268 2007-11-08  Jim Meyering  <meyering@redhat.com>
2269
2270         Change cache variable name prefix "jm_" to "gl_" everywhere.
2271         * m4/d-type.m4, m4/jm-winsz1.m4, m4/jm-winsz2.m4, m4/link-follow.m4:
2272         * m4/putenv.m4, m4/strtoimax.m4, m4/strtoumax.m4, m4/unlink-busy.m4:
2273         * m4/uptime.m4: s/gl_/jm_/
2274
2275 2007-11-07  Bruno Haible  <bruno@clisp.org>
2276
2277         Update to GNU gettext 0.17.
2278         * m4/intl.m4: Update to GNU gettext 0.17.
2279         * m4/po.m4: Likewise.
2280         * modules/gettext (Files): Remove m4/ulonglong.m4.
2281         (configure.ac): Require gettext infrastructure from version 0.17.
2282
2283 2007-11-06  Bruno Haible  <bruno@clisp.org>
2284
2285         * lib/fbufmode.c (fbufmode) [QNX]: Use numerical values for flags; the
2286         symbolic values are not defined in a public header.
2287         * lib/freadable.c (freadable) [QNX]: Likewise.
2288         * lib/freadahead.c (freadahead) [QNX]: Likewise.
2289         * lib/freading.c (freading) [QNX]: Likewise.
2290         * lib/fseterr.c (fseterr) [QNX]: Likewise.
2291         * lib/fwritable.c (fwritable) [QNX]: Likewise.
2292         * lib/fwriting.c (fwriting) [QNX]: Likewise.
2293         * lib/fpurge.c (fpurge) [QNX]: Likewise. Add a return statement.
2294         Reported by Alain Magloire.
2295
2296         * m4/fpending.m4 (gl_FUNC_FPENDING): Add a variant for QNX.
2297
2298 2007-11-05  Bruno Haible  <bruno@clisp.org>
2299
2300         * lib/vasnprintf.c (VASNPRINTF): Expand the NEED_PRINTF_DIRECTIVE_A
2301         code when NEED_PRINTF_LONG_DOUBLE or NEED_PRINTF_DOUBLE is set.
2302         Needed on Cygwin, where !NEED_PRINTF_DIRECTIVE_A && NEED_PRINTF_DOUBLE.
2303         Reported by Eric Blake.
2304
2305 2007-10-27  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2306             Bruno Haible  <bruno@clisp.org>
2307
2308         * modules/malloc (configure.ac): Define GNULIB_MALLOC_GNU always.
2309         * modules/realloc (configure.ac): Define GNULIB_REALLOC_GNU always.
2310         * lib/realloc.c (SYSTEM_MALLOC_GLIBC_COMPATIBLE): New macro.
2311         (malloc): Undefine also before including <stdlib.h>.
2312         (rpl_realloc): Turn malloc(0) into malloc(1) if necessary.
2313         Needed on OSF/1 4.0.
2314
2315 2007-11-05  Jim Meyering  <meyering@redhat.com>
2316
2317         git-version-gen: sync from coreutils.
2318         * build-aux/git-version-gen: Add comments.
2319         Change the first '-' to '.' in the snapshot version string,
2320         e.g., 6.9-377-08144 -> 6.9.377-08144
2321         Remove first parameter.
2322         Don't declare a version "-dirty" merely because a time
2323         stamp has changed.
2324
2325 2007-11-04  Bruno Haible  <bruno@clisp.org>
2326
2327         * lib/lock.h: Protect all macro definitions containing an 'if'
2328         statement through a "do { ... } while (0)".
2329         * lib/tls.h: Likewise.
2330
2331 2007-11-04  Bruno Haible  <bruno@clisp.org>
2332
2333         * lib/vasnprintf.c (DCHAR_IS_TCHAR, DCHAR_CPY): Undefine at the end.
2334
2335 2007-11-04  Bruno Haible  <bruno@clisp.org>
2336
2337         * m4/printf.m4 (gl_PRINTF_ENOMEM): Use GL_NOCRASH.
2338         * modules/fprintf-posix (Depends-on): Add nocrash.
2339         * modules/snprintf-posix (Depends-on): Likewise.
2340         * modules/sprintf-posix (Depends-on): Likewise.
2341         * modules/vasnprintf-posix (Depends-on): Likewise.
2342         * modules/vasprintf-posix (Depends-on): Likewise.
2343         * modules/vfprintf-posix (Depends-on): Likewise.
2344         * modules/vsnprintf-posix (Depends-on): Likewise.
2345         * modules/vsprintf-posix (Depends-on): Likewise.
2346         * modules/unistdio/u8-vasnprintf (Depends-on): Likewise.
2347         * modules/unistdio/u8-u8-vasnprintf (Depends-on): Likewise.
2348         * modules/unistdio/u16-vasnprintf (Depends-on): Likewise.
2349         * modules/unistdio/u16-u16-vasnprintf (Depends-on): Likewise.
2350         * modules/unistdio/u32-vasnprintf (Depends-on): Likewise.
2351         * modules/unistdio/u32-u32-vasnprintf (Depends-on): Likewise.
2352         * modules/unistdio/ulc-vasnprintf (Depends-on): Likewise.
2353
2354 2007-11-04  Bruno Haible  <bruno@clisp.org>
2355
2356         * modules/nocrash: New file.
2357         * m4/nocrash.m4: New file, taken from GNU clisp. Code taken from
2358         GNU libsigsegv, with permission of GNU libsigsegv's copyright holders.
2359
2360 2007-11-04  Bruno Haible  <bruno@clisp.org>
2361
2362         * tests/test-vasnprintf-posix.c (test_function): Add some tests of
2363         precision handling.
2364         * tests/test-vasprintf-posix.c (test_function): Likewise.
2365         * tests/test-snprintf-posix.h (test_function): Likewise.
2366         * tests/test-sprintf-posix.h (test_function): Likewise.
2367
2368         Fix *printf behaviour for large precisions on mingw and BeOS.
2369         * m4/printf.m4 (gl_PRINTF_PRECISION): New macro.
2370         * lib/vasnprintf.c (VASNPRINTF): Handle NEED_PRINTF_UNBOUNDED_PRECISION.
2371         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_PRECISION): New macro.
2372         (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): Invoke it.
2373         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
2374         gl_PRINTF_PRECISION and test its result. Invoke
2375         gl_PREREQ_VASNPRINTF_PRECISION.
2376         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
2377         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
2378         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
2379         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
2380         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
2381         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
2382         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
2383         * doc/functions/fprintf.texi: Update.
2384         * doc/functions/printf.texi: Update.
2385         * doc/functions/snprintf.texi: Update.
2386         * doc/functions/sprintf.texi: Update.
2387         * doc/functions/vfprintf.texi: Update.
2388         * doc/functions/vprintf.texi: Update.
2389         * doc/functions/vsnprintf.texi: Update.
2390         * doc/functions/vsprintf.texi: Update.
2391
2392 2007-11-04  Bruno Haible  <bruno@clisp.org>
2393
2394         * lib/vasnprintf.c (scale10_round_decimal_decoded): Fix shift loop.
2395
2396 2007-11-04  Bruno Haible  <bruno@clisp.org>
2397
2398         * modules/relocatable-prog (Files): Add m4/lib-ld.m4.
2399         Reported by Sylvain Beucler <beuc@gnu.org>.
2400
2401 2007-11-03  Bruno Haible  <bruno@clisp.org>
2402
2403         * tests/test-fprintf-posix2.sh: New file.
2404         * tests/test-fprintf-posix2.c: New file.
2405         * modules/fprintf-posix-tests (Files): Add them.
2406         (TESTS): Add test-fprintf-posix2.sh.
2407         (configure.ac): Check for getrlimit and setrlimit.
2408         (check_PROGRAMS): Add test-fprintf-posix2.
2409
2410         * tests/test-printf-posix2.sh: New file.
2411         * tests/test-printf-posix2.c: New file.
2412         * modules/printf-posix-tests (Files): Add them.
2413         (TESTS): Add test-printf-posix2.sh.
2414         (configure.ac): Check for getrlimit and setrlimit.
2415         (check_PROGRAMS): Add test-printf-posix2.
2416
2417         Fix *printf behaviour in out-of-memory situations on MacOS X and *BSD.
2418         * m4/printf.m4 (gl_PRINTF_ENOMEM): New macro.
2419         * lib/vasnprintf.c: Implement NEED_PRINTF_DOUBLE.
2420         (decode_double): New function, copied from decode_long_double.
2421         (scale10_round_decimal_decoded): New function, extracted from
2422         scale10_round_decimal_long_double.
2423         (scale10_round_decimal_long_double): Use it.
2424         (scale10_round_decimal_double): New function.
2425         (floorlog10): New function.
2426         (VASNPRINTF): Handle NEED_PRINTF_DOUBLE case.
2427         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_ENOMEM): New macro.
2428         (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): Invoke it.
2429         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
2430         gl_PRINTF_ENOMEM and test its result. Invoke
2431         gl_PREREQ_VASNPRINTF_ENOMEM.
2432         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
2433         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
2434         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
2435         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
2436         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
2437         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
2438         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
2439         * modules/fprintf-posix (Depends-on): Add frexp-nolibm.
2440         * modules/snprintf-posix (Depends-on): Likewise.
2441         * modules/sprintf-posix (Depends-on): Likewise.
2442         * modules/vasnprintf-posix (Depends-on): Likewise.
2443         * modules/vasprintf-posix (Depends-on): Likewise.
2444         * modules/vfprintf-posix (Depends-on): Likewise.
2445         * modules/vsnprintf-posix (Depends-on): Likewise.
2446         * modules/vsprintf-posix (Depends-on): Likewise.
2447         * doc/functions/fprintf.texi: Update.
2448         * doc/functions/printf.texi: Update.
2449         * doc/functions/snprintf.texi: Update.
2450         * doc/functions/sprintf.texi: Update.
2451         * doc/functions/vfprintf.texi: Update.
2452         * doc/functions/vprintf.texi: Update.
2453         * doc/functions/vsnprintf.texi: Update.
2454         * doc/functions/vsprintf.texi: Update.
2455
2456 2007-11-03  Bruno Haible  <bruno@clisp.org>
2457
2458         * modules/frexp-nolibm-tests: New file.
2459
2460         * modules/frexp-nolibm: New file.
2461         * m4/frexp.m4 (gl_FUNC_FREXP_NO_LIBM): New macro.
2462
2463 2007-11-03  Bruno Haible  <bruno@clisp.org>
2464
2465         * lib/vasnprintf.c (VASNPRINTF): Don't assume that snprintf's return
2466         value is C99 compliant.
2467         Needed for OSF/1 5.1.
2468
2469 2007-11-03  Bruno Haible  <bruno@clisp.org>
2470
2471         Fix out-of-memory handling of vasnprintf.
2472         * lib/printf-parse.c: Include <errno.h>.
2473         (PRINTF_PARSE): When failing, set errno to EINVAL or ENOMEM.
2474         * lib/vasnprintf.c (VASNPRINTF): When PRINTF_PARSE fails, assume errno
2475         is already set.
2476
2477 2007-11-02  Eric Blake  <ebb9@byu.net>
2478
2479         Fix tests on cygwin.
2480         * modules/xprintf-posix-tests (Makefile.am): Link against -lintl.
2481
2482 2007-11-01  Bruno Haible  <bruno@clisp.org>
2483
2484         * lib/stdlib.in.h (putenv): Remove the "not POSIX compliant everywhere"
2485         warning.
2486         * doc/functions/putenv.texi: Clarify that the 'putenv' module is not
2487         needed for POSIX compatibility.
2488
2489 2007-11-01  Paul Eggert  <eggert@cs.ucla.edu>
2490
2491         * m4/putenv.m4 (gl_FUNC_PUTENV): Also mention that we're checking
2492         for compatibility with GNU.
2493
2494 2007-11-01  Bruno Haible  <bruno@clisp.org>
2495
2496         * lib/putenv.c: Include <stdlib.h>. Remove rpl_putenv declaration.
2497         (putenv): Renamed from rpl_putenv. Change argument type from
2498         'const char *' to 'char *'.
2499         * m4/putenv.m4 (gl_FUNC_PUTENV): Require gl_STDLIB_H_DEFAULTS. Instead
2500         of defining putenv in config.h, just set REPLACE_PUTENV.
2501         * modules/putenv (Depends-on): Add stdlib.
2502         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
2503         (Include): Use <stdlib.h>.
2504         * lib/stdlib.in.h (putenv): New declaration.
2505         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_PUTENV and
2506         REPLACE_PUTENV.
2507         * modules/stdlib (Makefile.am): Substitute GNULIB_PUTENV and
2508         REPLACE_PUTENV.
2509         Needed for MacOS X 10.5.0.
2510         Reported by Peter O'Gorman <peter@pogma.com>.
2511
2512 2007-11-01  Jim Meyering  <meyering@redhat.com>
2513
2514         Treat an empty date string exactly like "0".
2515         * lib/getdate.y (get_date): Once any isspace or TZ= prefix is consumed,
2516         if the remaining date string (to be parsed) is empty, use "0".
2517         Reported by Mischa Molhoek and discussed in this thread:
2518         <http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/11726>.
2519
2520 2007-10-31  Bruno Haible  <bruno@clisp.org>
2521
2522         * m4/intmax_t.m4 (gl_AC_TYPE_INTMAX_T, gt_AC_TYPE_INTMAX_T): Use
2523         AC_TYPE_LONG_LONG_INT instead of gl_AC_TYPE_LONG_LONG.
2524         * m4/uintmax_t.m4 (gl_AC_TYPE_UINTMAX_T): Use
2525         AC_TYPE_UNSIGNED_LONG_LONG_INT instead of gl_AC_TYPE_UNSIGNED_LONG_LONG.
2526         * m4/longlong.m4 (gl_AC_TYPE_LONG_LONG): Remove macro.
2527         * m4/ulonglong.m4 (gl_AC_TYPE_UNSIGNED_LONG_LONG): Remove macro.
2528
2529 2007-10-31  Bruno Haible  <bruno@clisp.org>
2530
2531         * m4/longlong.m4 (_AC_TYPE_LONG_LONG_SNIPPET): New macro, extracted
2532         from AC_TYPE_LONG_LONG_INT and AC_TYPE_UNSIGNED_LONG_LONG_INT.
2533         (AC_TYPE_LONG_LONG_INT): Use it.
2534         (AC_TYPE_UNSIGNED_LONG_LONG_INT): Moved here from m4/ulonglong.m4. Use
2535         it as well.
2536         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Remove macro; moved
2537         to m4/longlong.m4.
2538         * modules/stdint (Files): Remove m4/ulonglong.m4.
2539         * modules/strtoull (Files): Use m4/longlong.m4 instead of
2540         m4/ulonglong.m4.
2541         * modules/strtoumax (Files): Likewise.
2542
2543 2007-10-30  Bruno Haible  <bruno@clisp.org>
2544
2545         * modules/xvasprintf-posix: New file.
2546         Suggested by Eric Blake.
2547
2548 2007-10-30  Bruno Haible  <bruno@clisp.org>
2549
2550         * modules/xprintf-posix-tests: New file.
2551         * tests/test-xprintf-posix.sh: New file.
2552         * tests/test-xprintf-posix.c: New file.
2553         * tests/test-xfprintf-posix.c: New file.
2554
2555         * modules/xprintf-posix: New file.
2556
2557 2007-10-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2558
2559         * modules/fbufmode-tests (MOSTLYCLEANFILES): Remove temp files.
2560         * modules/freadable-tests (MOSTLYCLEANFILES): Likewise.
2561         * modules/fwritable-tests (MOSTLYCLEANFILES): Likewise.
2562
2563 2007-10-29  Bruno Haible  <bruno@clisp.org>
2564
2565         * m4/floorf.m4 (gl_FUNC_FLOORF_LIBS): Rename the cache variable to
2566         contain the special marker '_cv_'.
2567         * m4/floor.m4 (gl_FUNC_FLOOR_LIBS): Likewise.
2568         * m4/floorl.m4 (gl_FUNC_FLOORL_LIBS): Likewise.
2569         * m4/ceilf.m4 (gl_FUNC_CEILF_LIBS): Likewise.
2570         * m4/ceil.m4 (gl_FUNC_CEIL_LIBS): Likewise.
2571         * m4/ceill.m4 (gl_FUNC_CEILL_LIBS): Likewise.
2572         Reported by Ralf Wildenhues.
2573
2574 2007-10-29  Bruno Haible  <bruno@clisp.org>
2575
2576         * gnulib-tool (func_import): When --lgpl is not specified, set
2577         sed_transform_lib_file to convert LGPL and GPLv2+ copyright headers to
2578         GPLv3.
2579         Reported by Simon Josefsson.
2580
2581 2007-10-28  Bruno Haible  <bruno@clisp.org>
2582
2583         * lib/math.in.h: Test REPLACE_ISFINITE instead of HAVE_DECL_ISFINITE.
2584         * m4/isfinite.m4 (gl_ISFINITE): Initialize REPLACE_ISFINITE instead of
2585         HAVE_DECL_ISFINITE.
2586         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Update.
2587         * modules/math (Makefile.am): Substitute REPLACE_ISFINITE instead of
2588         HAVE_DECL_ISFINITE.
2589
2590 2007-10-28  Bruno Haible  <bruno@clisp.org>
2591
2592         * lib/stdint.in.h (_STDINT_MAX): Subtract 1 from an unused signed
2593         integer shift in the signed case. Fixes warnings with OSF/1 5.1 cc.
2594
2595 2007-10-28  Bruno Haible  <bruno@clisp.org>
2596
2597         Fix link errors with Sun C 5.0 on Solaris 10.
2598         * m4/floorf.m4 (gl_FUNC_FLOORF): Consider also the case that the
2599         function is declared but not present in the compiler's libm.
2600         * m4/floorl.m4 (gl_FUNC_FLOORL): Likewise.
2601         * m4/ceilf.m4 (gl_FUNC_CEILF): Likewise.
2602         * m4/ceill.m4 (gl_FUNC_CEILL: Likewise.
2603         * lib/math.in.h: Test REPLACE_CEILF instead of HAVE_DECL_CEILF.
2604         Test REPLACE_CEILL instead of HAVE_DECL_CEILL.
2605         Test REPLACE_FLOORF instead of HAVE_DECL_FLOORF.
2606         Test REPLACE_FLOORL instead of HAVE_DECL_FLOORL.
2607         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Update.
2608         * modules/math (Makefile.am): Substitute REPLACE_CEILF instead of
2609         HAVE_DECL_CEILF, REPLACE_CEILL instead of HAVE_DECL_CEILL,
2610         REPLACE_FLOORF instead of HAVE_DECL_FLOORF, REPLACE_FLOORL instead of
2611         HAVE_DECL_FLOORL.
2612
2613 2007-10-28  Bruno Haible  <bruno@clisp.org>
2614
2615         * m4/floorl.m4 (gl_FUNC_FLOORL_LIBS): New macro, extracted from
2616         gl_FUNC_FLOORL. Cache the result.
2617         (gl_FUNC_FLOORL): Use it.
2618         * m4/ceill.m4 (gl_FUNC_CEILL_LIBS): New macro, extracted from
2619         gl_FUNC_CEILL. Cache the result.
2620         (gl_FUNC_CEILL): Use it.
2621
2622         * m4/floor.m4 (gl_FUNC_FLOOR_LIBS): New macro, extracted from
2623         gl_FUNC_FLOOR. Cache the result.
2624         (gl_FUNC_FLOOR): Use it.
2625         * m4/ceil.m4 (gl_FUNC_CEIL_LIBS): New macro, extracted from
2626         gl_FUNC_CEIL. Cache the result.
2627         (gl_FUNC_CEIL): Use it.
2628
2629         * m4/floorf.m4 (gl_FUNC_FLOORF_LIBS): New macro, extracted from
2630         gl_FUNC_FLOORF. Cache the result.
2631         (gl_FUNC_FLOORF): Use it.
2632         * m4/ceilf.m4 (gl_FUNC_CEILF_LIBS): New macro, extracted from
2633         gl_FUNC_CEILF. Cache the result.
2634         (gl_FUNC_CEILF): Use it.
2635
2636 2007-10-28  Bruno Haible  <bruno@clisp.org>
2637
2638         * gnulib-tool: Allow specifying the LGPL version number through
2639         --lgpl=2 or --lgpl=3.
2640         (func_usage): Document --lgpl with argument.
2641         Handle --lgpl=... arguments.
2642         (func_import): Recognize also gl_LGPL calls with an argument. When
2643         --lgpl=2 is used and the module's license is just LGPL, report an
2644         error. Set sed_transform_lib_file according to the lgpl variable. In
2645         the generated files, use --lgpl or gl_LGPL invocations with argument,
2646         if necessary.
2647         * doc/gnulib-intro.texi (Copyright): Explain how to get modules under
2648         an LGPv2+ license.
2649         * doc/gnulib-tool.texi (Modified imports): Update explanation of
2650         gl_LGPL macro.
2651
2652 2007-10-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2653             Bruno Haible  <bruno@clisp.org>
2654
2655         * lib/unistr.h (u8_uctomb_aux): Declare also if !HAVE_INLINE.
2656         (u16_uctomb_aux): Likewise.
2657         * lib/unistr/u8-uctomb-aux.c (u8_uctomb_aux): Define also if
2658         !HAVE_INLINE.
2659         * lib/unistr/u16-uctomb-aux.c (u16_uctomb_aux): Likewise
2660
2661 2007-10-28  Bruno Haible  <bruno@clisp.org>
2662
2663         * modules/error: Add a notice recommending to change XGETTEXT_OPTIONS.
2664         Invoke AM_GETTEXT_OPTION if it exists.
2665         * modules/vasprintf: Likewise.
2666         * modules/verror: Likewise.
2667         * modules/xprintf: Likewise.
2668         * modules/xvasprintf: Likewise.
2669
2670 2007-10-27  Ben Pfaff  <blp@gnu.org>
2671
2672         * lib/math.in.h: Define isfinite macro and prototypes for
2673         gl_isfinitef, gl_isfinited, gl_isfinitel if we are providing
2674         implementations.
2675         * m4/math_h.m4: New substitutions for isfinite module.
2676         * lib/isfinite.c: New file.
2677         * m4/isfinite.m4: New file.
2678         * modules/math: Replace isfinite-related @VARS@ in math.in.h.
2679         * modules/isfinite: New file.
2680         * modules/isfinite-tests: New file.
2681         * tests/tests-isfinite.c: New file.
2682         * doc/functions/isfinite.texi: Mention isfinite module.
2683         * MODULES.html.sh: Mention new module.
2684
2685 2007-10-27  Ben Pfaff  <blp@gnu.org>
2686
2687         Ralf Wildenhues reported that Tru64 4.0D declares the round
2688         functions but does not have definitions.
2689         * m4/check-math-lib.m4 (gl_CHECK_MATH_LIB): If the target function
2690         cannot be found in any library, set the output variable to
2691         "missing" instead of "".
2692         * m4/round.m4: Also use our substitute if we cannot find round in
2693         any library, even if it is declared.
2694         * m4/roundf.m4: Likewise for roundf.
2695         * m4/roundl.m4: Likewise for roundl.
2696         * lib/math.in.h: Undefine roundf, round, roundl before defining
2697         their replacements, to allow for hypothetical systems where these
2698         may be defined as macros but not available in libraries.
2699
2700 2007-10-27  Bruno Haible  <bruno@clisp.org>
2701
2702         * doc/gnulib.texi: Invoke @firstparagraphindent.
2703         * doc/gnulib-tool.texi (Simple update): Mention possible incompatible
2704         changes in gnulib.
2705         (Source changes): New section.
2706
2707 2007-10-26  Bruno Haible  <bruno@clisp.org>
2708
2709         * m4/gnulib-common.m4 (AC_C_RESTRICT): New overriding definition,
2710         borrowed from autoconf.
2711
2712 2007-10-26  Bruno Haible  <bruno@clisp.org>
2713
2714         * lib/strerror.c (rpl_strerror): Return "Unknown error ..." also if
2715         strerror returned the empty string. Needed on HP-UX 11.00.
2716
2717 2007-10-24  Micah Cowan  <micah@cowan.name>
2718
2719         Remove vestiges of cvs-gnulib-checkout process.  Now we use git.
2720         * build-aux/bootstrap: Remove support for now-unnecessary option,
2721         --cvs-user, and envvars CVS_USER, CVS_RSH.
2722
2723 2007-10-24  Jim Meyering  <meyering@redhat.com>
2724
2725         Avoid diagnostics from sha1sum when there is no cached checksum.
2726         * build-aux/bootstrap (update_po_files): Skip the sha1sum check
2727         if the po.s1 file hasn't been created yet.
2728
2729         * build-aux/bootstrap: Sync from coreutils:
2730         2007-10-24  Jim Meyering  <meyering@redhat.com>
2731         Get gnulib from the git repository, not from an obsolete cvs one.
2732         * build-aux/bootstrap: Suggestion from Micah Cowan.
2733         2007-10-04  Jim Meyering  <jim@meyering.net>
2734         * build-aux/bootstrap (slurp): Adapt to _.h -> .in.h name change.
2735         (update_po_files): Work also when there are no .po files in po/.
2736
2737 2007-10-24  Paul Eggert  <eggert@cs.ucla.edu>
2738
2739         * README: Append ".git" to git and cg examples.
2740         Problem reported by Benoit Sigoure.
2741
2742 2007-10-23  Micah Cowan  <micah@cowan.name>
2743
2744         * users.txt: Add wget.
2745
2746 2007-10-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2747
2748         Fix linking of some unistdio tests on FreeBSD.
2749         * modules/unistdio/u16-vsnprintf-tests
2750         (test_u16_vsprintf1_LDADD): Add @LIBINTL@.
2751         * modules/unistdio/u16-vsprintf-tests
2752         (test_u16_vsnprintf1_LDADD): Likewise.
2753         * modules/unistdio/u32-vsnprintf-tests
2754         (test_u32_vsnprintf1_LDADD): Likewise.
2755         * modules/unistdio/u32-vsprintf-tests
2756         (test_u32_vsprintf1_LDADD): Likewise.
2757         * modules/unistdio/u8-vsnprintf-tests
2758         (test_u8_vsnprintf1_LDADD): Likewise.
2759         * modules/unistdio/u8-vsprintf-tests
2760         (test_u8_vsprintf1_LDADD): Likewise.
2761         * modules/unistdio/ulc-vsnprintf-tests
2762         (test_ulc_vsnprintf1_LDADD): Likewise.
2763         * modules/unistdio/ulc-vsprintf-tests
2764         (test_ulc_vsprintf1_LDADD): Likewise.
2765
2766         Fix linking of some uniconv tests on FreeBSD.
2767         * modules/uniconv/u16-conv-from-enc-tests
2768         (test_u16_conv_from_enc_LDADD): Link $(LDADD) before @LIBICONV@.
2769         * modules/uniconv/u16-conv-to-enc-tests
2770         (test_u16_conv_to_enc_LDADD): Likewise.
2771         * modules/uniconv/u16-strconv-from-enc-tests
2772         (test_u16_strconv_from_enc_LDADD): Likewise.
2773         * modules/uniconv/u16-strconv-to-enc-tests
2774         (test_u16_strconv_to_enc_LDADD): Likewise.
2775         * modules/uniconv/u32-conv-from-enc-tests
2776         (test_u32_conv_from_enc_LDADD): Likewise.
2777         * modules/uniconv/u32-conv-to-enc-tests
2778         (test_u32_conv_to_enc_LDADD): Likewise.
2779         * modules/uniconv/u32-strconv-from-enc-tests
2780         (test_u32_strconv_from_enc_LDADD): Likewise.
2781         * modules/uniconv/u32-strconv-to-enc-tests
2782         (test_u32_strconv_to_enc_LDADD): Likewise.
2783         * modules/uniconv/u8-conv-from-enc-tests
2784         (test_u8_conv_from_enc_LDADD): Likewise.
2785         * modules/uniconv/u8-conv-to-enc-tests
2786         (test_u8_conv_to_enc_LDADD): Likewise.
2787         * modules/uniconv/u8-strconv-from-enc-tests
2788         (test_u8_strconv_from_enc_LDADD): Likewise.
2789         * modules/uniconv/u8-strconv-to-enc-tests
2790         (test_u8_strconv_to_enc_LDADD): Likewise.
2791
2792 2007-10-22  Bruno Haible  <bruno@clisp.org>
2793
2794         * lib/stdint.in.h: Add check that intmax_t and uintmax_t have the same
2795         size.
2796
2797 2007-10-22  Eric Blake  <ebb9@byu.net>
2798
2799         Tweak x*printf documentation.
2800         * lib/xprintf.c (xprintf, xvprintf, xfprintf, xvfprintf): Adjust
2801         variable name and comments.
2802         Suggested by Bruno Haible.
2803
2804 2007-10-22  Bruno Haible  <bruno@clisp.org>
2805
2806         * lib/acl.c (copy_acl): Fix file name in comment.
2807
2808 2007-10-22  Paul Eggert  <eggert@cs.ucla.edu>
2809
2810         Fix Tru64 problem with stdbool.h.
2811         * lib/stdbool.in.h (false, true):
2812         [! (defined __cplusplus || defined __BEOS__) && !defined __GNUC__]:
2813         Don't declare as an enum in this situation; it runs afoul of Tru64.
2814         Problem reported by Steven M. Schweda in
2815         <http://lists.gnu.org/archive/html/bug-autoconf/2007-10/msg00019.html>.
2816
2817 2007-10-22  Eric Blake  <ebb9@byu.net>
2818
2819         Also wrap vf?printf.
2820         * lib/xprintf.h (xvprintf, xvfprintf): New declarations.
2821         * lib/xprintf.c (xprintf, xfprintf): Work for C89.
2822         (xvprintf, xvfprintf): New functions.
2823
2824 2007-10-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2825
2826         * modules/fstrcmp-tests (test_fstrcmp_LDADD): New, add
2827         @LIBINTL@ for FreeBSD 6.2, $(LIBTHREAD) for AIX 4.3.3.
2828
2829         * lib/uniconv/u16-conv-to-enc.c (U_MBLEN): Define.
2830         * lib/uniconv/u32-conv-to-enc.c (U_MBLEN): Likewise.
2831
2832 2007-10-22  Paul Eggert  <eggert@cs.ucla.edu>
2833
2834         * lib/acl.c (copy_acl): Adjust to IRIX 6.5.  Problem reported
2835         by Bruno Haible.
2836
2837 2007-10-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2838
2839         * lib/getloadavg.c
2840         [defined (__osf__) && (defined (__alpha) || defined (__alpha__)]:
2841         Undef `sys' after including sys/table.h, for Tru64 4.0D.
2842
2843         * tests/test-i-ring.c: Work for C89.
2844
2845 2007-10-22  Bruno Haible  <bruno@clisp.org>
2846
2847         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Use -1ull, not
2848         -1u, in preprocessor expression, so that we don't test for the bug
2849         in HP-UX 11.00 cpp.  Testing for this bug caused problems; see
2850         <http://lists.gnu.org/archive/html/bug-gnulib/2007-10/msg00329.html>.
2851
2852 2007-10-22  Eric Blake  <ebb9@byu.net>
2853
2854         * tests/test-yesno.sh: Silence stderr during test.
2855
2856 2007-10-22  Simon Josefsson  <simon@josefsson.org>
2857
2858         * modules/crypto/gc-camellia: New file.
2859
2860         * m4/gc-camellia.m4: New file.
2861
2862         * lib/gc-libgcrypt.c (gc_cipher_open): Support Camellia.
2863
2864         * lib/gc.h (enum Gc_cipher): Add GC_CAMELLIA128, GC_CAMELLIA256.
2865
2866 2007-10-22  Simon Josefsson  <simon@josefsson.org>
2867
2868         * build-aux/maint.mk (gzip_rsyncable): Don't fail if gzip sends
2869         --help to stdout.  Reported by sms@antinode.org (Steven
2870         M. Schweda).
2871
2872 2007-10-22  Simon Josefsson  <simon@josefsson.org>
2873
2874         * users.txt: Fix link to libksba.
2875
2876 2007-10-21  Ben Pfaff  <blp@gnu.org>
2877
2878         * modules/roundf-tests: Add dependency on floorf, ceilf to allow
2879         round.c roundf implementation that depends on floorf and ceilf to
2880         be tested unconditionally.
2881
2882 2007-10-21  Ben Pfaff  <blp@gnu.org>
2883
2884         * m4/check-libm-func.m4: Removed.
2885         * m4/check-math-lib.m4: New file.
2886         * m4/round.m4: Rewrite to use gl_CHECK_MATH_LIB.
2887         * m4/roundf.m4: Ditto, and fix lack of HAVE_DECL_ROUNDF
2888         definition and lack of AC_LIBOBJ([roundf]).
2889         * m4/roundl.m4: Ditto, and similarly for roundl.
2890         * modules/round: Reference new m4 file.
2891         * modules/roundf: Ditto.
2892         * modules/roundl: Ditto.
2893         * tests/test-round2.c (main): Use ROUND instead of round.
2894         Bug report from Bruno Haible.
2895
2896 2007-10-21  Bruno Haible  <bruno@clisp.org>
2897
2898         * lib/printf-parse.c: Don't assume <stdint.h> exists in IN_LIBASPRINTF
2899         context.
2900
2901 2007-10-21  Bruno Haible  <bruno@clisp.org>
2902
2903         * tests/test-wcwidth.c (main): Allow negative result for some control
2904         characters.
2905
2906         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Check also the width of U+200B.
2907         Needed on OSF/1 5.1.
2908
2909 2007-10-21  Bruno Haible  <bruno@clisp.org>
2910
2911         * tests/test-floorf1.c: Include isnanf.h.
2912         (main): Use isnanf() instead of isnan().
2913         * tests/test-ceilf1.c: Include isnanf.h.
2914         (main): Use isnanf() instead of isnan().
2915         * tests/test-truncf1.c: Include isnanf.h.
2916         (main): Use isnanf() instead of isnan().
2917         * tests/test-roundf1.c: Include isnanf.h.
2918         (main): Use isnanf() instead of isnan().
2919
2920 2007-10-21  Eric Blake  <ebb9@byu.net>
2921
2922         * users.txt: Update URL for m4.
2923
2924 2007-10-21  Bruno Haible  <bruno@clisp.org>
2925
2926         * users.txt: Add clisp. Update URLs to Simon Josefsson's projects.
2927
2928 2007-10-21  Bruno Haible  <bruno@clisp.org>
2929
2930         * gnulib-tool (func_create_megatestdir): Determine the cvsdate from
2931         Git's management files if the CVS files are not present.
2932
2933 2007-10-20  Bruno Haible  <bruno@clisp.org>
2934
2935         * lib/count-one-bits.h (COUNT_ONE_BITS): Use the builtin also for
2936         gcc-3.4.x.
2937
2938 2007-10-20  Ben Pfaff  <blp@gnu.org>
2939
2940         * lib/math.in.h: Declare round, roundf, roundl if we are providing
2941         implementations.
2942         * m4/math_h.m4: New substitutions for round, roundf, roundl modules.
2943         * lib/round.c: New file.
2944         * lib/roundf.c: New file.
2945         * lib/roundl.c: New file.
2946         * m4/round.m4: New file.
2947         * m4/roundf.m4: New file.
2948         * m4/roundl.m4: New file.
2949         * m4/check-libm-func-m4: New file.
2950         * modules/math: Replace round, roundf, roundl related @VARS@ in
2951         math.in.h.
2952         * modules/round: New file.
2953         * modules/round-tests: New file.
2954         * modules/roundf: New file.
2955         * modules/roundf-tests: New file.
2956         * modules/roundl: New file.
2957         * modules/roundl-tests: New file.
2958         * tests/test-round1.c: New file.
2959         * tests/test-round2.c: New file.
2960         * tests/test-roundf1.c: New file.
2961         * tests/test-roundf2.c: New file.
2962         * tests/test-roundl.c: New file.
2963         * doc/functions/round.texi: Mention round module.
2964         * doc/functions/roundf.texi: Mention roundf module.
2965         * doc/functions/roundl.texi: Mention roundl module.
2966         * MODULES.html.sh: Mention new modules.
2967         Thanks to Bruno Haible for suggestions.
2968
2969 2007-10-20  Jim Meyering  <meyering@redhat.com>
2970
2971         * lib/xprintf.c: Include <config.h> unconditionally.
2972
2973         Change xprintf's license to GPL.
2974         * modules/xprintf (License): s/LGPL/GPL/, since this module
2975         depends on modules (exit and exitfail) which are GPL.
2976         Suggestion from Bruno Haible.
2977
2978         xprintf fixes.
2979         * lib/xprintf.c (xprintf, xfprintf): Use va_end.
2980         Use a clearer diagnostic.
2981         Patch from Bruno Haible.
2982
2983 2007-10-20  Bruno Haible  <bruno@clisp.org>
2984
2985         * lib/vasnprintf.c (VASNPRINTF): Don't report overflow if the available
2986         length is INT_MAX and sizeof (DCHAR_T) > sizeof (TCHAR_T).
2987         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
2988
2989 2007-10-20  Bruno Haible  <bruno@clisp.org>
2990
2991         * tests/test-floorf2.c (correct_result_p): Don't rely on excess
2992         precision in the comparison result > x - 1 or similar.
2993         * tests/test-ceilf2.c (correct_result_p): Likewise.
2994         * tests/test-truncf2.c (correct_result_p): Likewise.
2995         * tests/test-trunc2.c (correct_result_p): Likewise.
2996         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
2997
2998 2007-10-20  Bruno Haible  <bruno@clisp.org>
2999
3000         * modules/ceil: New file.
3001         * m4/ceil.m4: New file.
3002         * doc/functions/ceil.texi: Mention the 'ceil' module.
3003
3004 2007-10-20  Bruno Haible  <bruno@clisp.org>
3005
3006         * modules/floor: New file.
3007         * m4/floor.m4: New file.
3008         * doc/functions/floor.texi: Mention the 'floor' module.
3009
3010 2007-10-20  Bruno Haible  <bruno@clisp.org>
3011
3012         * modules/ceilf-tests (Depends-on): Add fprintf-posix. Needed for use
3013         of %a.
3014         * modules/floorf-tests (Depends-on): Likewise.
3015         * modules/truncf-tests (Depends-on): Likewise.
3016         * modules/trunc-tests (Depends-on): Likewise.
3017         Reported by Ben Pfaff.
3018
3019 2007-10-19  Jim Meyering  <meyering@redhat.com>
3020
3021         * lib/xprintf.c (xprintf, xfprintf): Test err < 0, not just "err".
3022         Don't bother testing specific errno values.  Just test ferror.
3023
3024         New module: xprintf
3025         * modules/xprintf, lib/xprintf.c, lib/xprintf.h: New files.
3026
3027 2007-10-19  Bruno Haible  <bruno@clisp.org>
3028
3029         * modules/csharpexec (Makefile.am): Use @FOO@ syntax instead of $(FOO)
3030         syntax.
3031         * modules/javaexec (Makefile.am): Likewise.
3032         * modules/relocatable-prog (Makefile.am): Likewise.
3033         Suggested by Jim Meyering.
3034
3035 2007-10-18  Bruno Haible  <bruno@clisp.org>
3036
3037         * lib/vasnprintf.c (VASNPRINTF): Don't use %n on glibc >= 2.3 systems.
3038         Reported by Jim Meyering.
3039
3040 2007-10-18  Eric Blake  <ebb9@byu.net>
3041
3042         * modules/filenamecat-tests (Makefile.am): Link against -lintl.
3043
3044 2007-10-18  Bruno Haible  <bruno@clisp.org>
3045
3046         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_N, gl_SNPRINTF_DIRECTIVE_N): Put
3047         the format string into writable memory. Needed in Fortify conditions.
3048
3049 2007-10-18  Colin Watson <cjwatson@debian.org>  (tiny change)
3050             Bruno Haible  <bruno@clisp.org>
3051
3052         * lib/trim.c: Include config.h unconditionally. Include trim.h always.
3053         Include ctype.h always. Include stdlib.h, not mbuiter.h, for MB_CUR_MAX.
3054         * modules/trim (Depends-on): Add mbchar.
3055         (configure.ac): Add gl_FUNC_MBRTOWC.
3056         (Makefile.am): Augment lib_SOURCES.
3057
3058 2007-10-17  Paul Eggert  <eggert@cs.ucla.edu>
3059
3060         Modify glob.c to use fstatat and dirfd, to simplify it.
3061         Suggested by Eric Blake.
3062         * lib/glob.c (__fxstatat64) [!_LIBC]: New macro.
3063         Don't include <stdbool.h>; not used.
3064         (link_exists2_p, glob_in_dir) [!_LIBC]: No longer a special case.
3065         (link_exists_p): Simplify implementation, since we can now assume
3066         dirfd and fstatat.
3067         * modules/glob (Depends-on): Add dirfd, openat.  Remove stdbool.
3068
3069 2007-10-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3070
3071         * gnulib-tool (func_get_dependencies): Fix sed script to
3072         match only tests.
3073
3074 2007-10-17  Bruno Haible  <bruno@clisp.org>
3075
3076         * m4/locale-fr.m4 (gt_LOCALE_FR, gt_LOCALE_FR_UTF8): On Cygwin, don't
3077         allow locale names without encoding suffix.
3078         * m4/locale-tr.m4 (gt_LOCALE_TR_UTF8): Likewise.
3079         * m4/locale-zh.m4 (gt_LOCALE_ZH_CN): Likewise.
3080
3081 2007-10-16  Bruno Haible  <bruno@clisp.org>
3082
3083         * lib/getcwd.c (__getcwd): Define with explicit rpl_ prefix.
3084         * lib/getgroups.c (getgroups): Likewise.
3085         * lib/gettimeofday.c (localtime, gmtime, tzset): Likewise.
3086
3087 2007-10-16  Bruno Haible  <bruno@clisp.org>
3088
3089         * modules/absolute-header (License): Change from LGPL to LGPLv2+.
3090         * modules/malloc-posix (License): Likewise.
3091         * modules/realloc-posix (License): Likewise.
3092         * modules/calloc-posix (License): Likewise.
3093         * modules/intprops (License): Change from GPL to LGPL, with
3094         Paul Eggert's approval.
3095
3096 2007-10-16  Paul Eggert  <eggert@cs.ucla.edu>
3097
3098         Merge glibc changes into lib/glob.c.
3099
3100         * lib/glob.c (glob_in_dir): Sync with glibc/posix/glob.c, dated
3101         2007-10-15 04:59:03 UTC.  Here are the changes:
3102
3103         2007-10-14  Ulrich Drepper  <drepper@redhat.com>
3104
3105         * lib/glob.c: Reimplement link_exists_p to use fstatat64.
3106
3107         * lib/glob.c: Add some branch prediction throughout.
3108
3109         2007-10-07  Ulrich Drepper  <drepper@redhat.com>
3110
3111         [BZ #5103]
3112         * lib/glob.c (glob): Recognize patterns starting \/.
3113
3114         2007-02-14  Jakub Jelinek  <jakub@redhat.com>
3115
3116         [BZ #3996]
3117         * lib/glob.c (attribute_hidden): Define if not defined.
3118         (glob): Unescape dirname, filename or username when needed and not
3119         GLOB_NOESCAPE.  Handle \/ correctly.  Handle GLOB_MARK if filename
3120         is NULL.  Handle unescaped [ in pattern without closing ].
3121         Don't pass GLOB_CHECK down to recursive glob for directories.
3122         (__glob_pattern_type): New function.
3123         (__glob_pattern_p): Implement using __glob_pattern_type.
3124         (glob_in_dir): Handle GLOB_NOCHECK patterns containing no meta
3125         characters and backslashes if not GLOB_NOESCAPE or unterminated [.
3126         Remove unreachable code.
3127
3128         2006-09-30  Ulrich Drepper  <drepper@redhat.com>
3129
3130         * lib/glob.c (glob_in_dir): Add some comments and asserts to
3131         explain why there are no leaks.
3132
3133         2006-09-25  Jakub Jelinek  <jakub@redhat.com>
3134
3135         [BZ #3253]
3136         * lib/glob.c (glob_in_dir): Don't alloca one struct globlink at a
3137         time, rather allocate increasingly bigger arrays of pointers, if
3138         possible with alloca, if too large with malloc.
3139
3140 2007-10-16  Paul Eggert  <eggert@cs.ucla.edu>
3141
3142         Check for 64-bit int errors in HP-UX 10.20 preprocessor.
3143         Problem reported by H.Merijn Brand in
3144         <http://lists.gnu.org/archive/html/bug-tar/2007-10/msg00018.html>.
3145         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Check preprocessor too.
3146         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Likewise.
3147
3148 2007-10-15  Bruno Haible  <bruno@clisp.org>
3149
3150         * lib/fchdir.c (close, open, closedir, opendir, dup, dup2): Define
3151         with explicit rpl_ prefix.
3152         * lib/fopen.c (fopen): Likewise.
3153         * lib/freopen.c (freopen): Likewise.
3154         * lib/iconv.c (iconv): Likewise.
3155         * lib/iconv_close.c (iconv_close): Likewise.
3156
3157 2007-10-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3158
3159         * m4/iconv_open (gl_FUNC_ICONV_OPEN_UTF): Fix cache variable name.
3160
3161 2007-10-15  Bruno Haible  <bruno@clisp.org>
3162
3163         * m4/getaddrinfo.m4 (gl_GETADDRINFO, gl_PREREQ_GETADDRINFO): Use
3164         <stddef.h> instead of <stdlib.h> since we only need NULL.
3165         Reported by Ben Pfaff <blp@cs.stanford.edu>.
3166
3167 2007-10-15  Bruno Haible  <bruno@clisp.org>
3168
3169         * doc/gnulib-tool.texi (Initial import): Swap order of -I directives.
3170         Replace paragraph talking about LIBOBJS.
3171         Reported by Colin Watson <cjwatson@debian.org>.
3172
3173 2007-10-15  Bruno Haible  <bruno@clisp.org>
3174
3175         * m4/getaddrinfo.m4 (gl_GETADDRINFO, gl_PREREQ_GETADDRINFO): Include
3176         <stdlib.h> before using NULL.
3177
3178 2007-10-15  Simon Josefsson  <simon@josefsson.org>
3179
3180         * m4/getaddrinfo.m4: Use NULL rather than 0 for pointers.
3181         Reported by Albert Chin <china@thewrittenword.com>.
3182
3183 2007-10-14  Bruno Haible  <bruno@clisp.org>
3184
3185         * modules/iconv_open-utf-tests: New file.
3186         * tests/test-iconv-utf.c: New file.
3187
3188         Enhance iconv_open to support UTF-16BE, UTF-16LE, UTF-32BE, UTF-32LE.
3189         * modules/iconv_open-utf: New file.
3190         * lib/iconv.in.h (_ICONV_UTF8_UTF*, _ICONV_UTF*_UTF8): New macros.
3191         (iconv, iconv_close): New declarations.
3192         * lib/iconv_open.c: Include c-strcase.h. Don't require ICONV_FLAVOR to
3193         be defined.
3194         (iconv_open): Add special handling of conversion between UTF-8 and
3195         UTF-{16,32}{BE,LE}.
3196         * lib/iconv.c: New file, incorporating code from GNU libiconv 1.11.
3197         * lib/iconv_close.c: New file.
3198         * m4/iconv_open.m4 (gl_REPLACE_ICONV_OPEN): New macro, extracted from
3199         gl_FUNC_ICONV_OPEN.
3200         (gl_FUNC_ICONV_OPEN): Use it.
3201         (gl_FUNC_ICONV_OPEN_UTF): New macro.
3202         * m4/iconv_h.m4 (gl_ICONV_H_DEFAULTS): Initialize also REPLACE_ICONV
3203         and REPLACE_ICONV_UTF.
3204         * modules/iconv_open (Depends-on): Add c-strcase.
3205         (Makefile.am): Substitute also REPLACE_ICONV, REPLACE_ICONV_UTF,
3206         ICONV_CONST.
3207         * doc/functions/iconv_open.texi: Mention the iconv_open-utf module.
3208
3209 2007-10-13  Albert Chin  <china@thewrittenword.com>
3210             Bruno Haible  <bruno@clisp.org>
3211
3212         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Perform the test for getaddrinfo
3213         through a link check that includes <netdb.h>. Needed for OSF/1 5.1.
3214
3215 2007-10-13  Bruno Haible  <bruno@clisp.org>
3216
3217         * lib/argp-fmtstream.h (ARGP_FS_EI): If __GNUC_STDC_INLINE__ is
3218         defined, use the ISO C99 inline semantics.
3219         * lib/argp.h (ARGP_EI): Likewise.
3220
3221 2007-10-13  Bruno Haible  <bruno@clisp.org>
3222
3223         Handle 'inline' change in gcc 4.3.0.
3224         * lib/argp-fmtstream.h (argp_fmtstream_putc, argp_fmtstream_puts,
3225         argp_fmtstream_write, argp_fmtstream_set_lmargin,
3226         argp_fmtstream_set_rmargin, argp_fmtstream_set_wmargin,
3227         argp_fmtstream_point): Disable 'extern' declaration if the function
3228         definition is going to be provided inline.
3229         (ARGP_FS_EI): If __GNUC_STDC_INLINE__ is defined, use the GNU C inline
3230         semantics, not the ISO C99 inline semantics.
3231         * lib/argp.h (argp_usage, _option_is_short, _option_is_end): Disable
3232         'extern' declaration if the function definition is going to be provided
3233         inline.
3234         (ARGP_EI): Don't assume GNU C. If __GNUC_STDC_INLINE__ is defined, use
3235         the GNU C inline semantics, not the ISO C99 inline semantics. With
3236         GCC 4.2, avoid a warning.
3237
3238 2007-10-13  Bruno Haible  <bruno@clisp.org>
3239
3240         * lib/freading.h (freading): Enable the use of __freading for
3241         glibc >= 2.7.
3242         * lib/freading.c (freading): Likewise.
3243
3244 2007-10-12  Paul Eggert  <eggert@cs.ucla.edu>
3245
3246         * lib/argp-fmtstream.h (ARGP_FS_EI): Work around GCC 4.2.1 diagnostic
3247         "warning: C99 inline functions are not supported; using GNU89".
3248
3249 2007-10-12  Bruno Haible  <bruno@clisp.org>
3250
3251         * lib/ceil.c (FUNC): Avoid rounding errors for values near a power
3252         of 2.
3253         * tests/test-ceilf2.c: New file.
3254         * modules/ceilf-tests: (Files, Depends-on, Makefile.am): Add new test.
3255
3256         * tests/test-ceilf1.c: Renamed from tests/test-ceilf.c.
3257         * modules/ceilf-tests: Update.
3258
3259 2007-10-12  Bruno Haible  <bruno@clisp.org>
3260
3261         * lib/floor.c (FUNC): Avoid rounding errors for values near a power
3262         of 2.
3263         * tests/test-floorf2.c: New file.
3264         * modules/floorf-tests: (Files, Depends-on, Makefile.am): Add new test.
3265
3266         * tests/test-floorf1.c: Renamed from tests/test-floorf.c.
3267         * modules/floorf-tests: Update.
3268
3269 2007-10-12  Bruno Haible  <bruno@clisp.org>
3270
3271         * tests/test-trunc2.c: New file.
3272         * modules/trunc-tests: (Files, Depends-on, Makefile.am): Add new test.
3273
3274         * tests/test-trunc1.c: Renamed from tests/test-trunc.c.
3275         * modules/trunc-tests: Update.
3276
3277 2007-10-12  Bruno Haible  <bruno@clisp.org>
3278
3279         * lib/trunc.c (FUNC): Avoid rounding errors for values near a power
3280         of 2.
3281         * tests/test-truncf2.c: New file.
3282         * modules/truncf-tests: (Files, Depends-on, Makefile.am): Add new test.
3283
3284         * tests/test-truncf1.c: Renamed from tests/test-truncf.c.
3285         * modules/truncf-tests: Update.
3286
3287 2007-10-11  Eric Blake  <ebb9@byu.net>
3288
3289         Don't claim strerror is broken on Interix.
3290         * doc/functions/strerror.texi (strerror): Known broken systems are
3291         now Solaris 8, and not Interix.
3292         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE): No longer filter out
3293         Interix on cross-compile.
3294         Reported by Martin Koeppe in
3295         http://lists.gnu.org/archive/html/bug-gnulib/2007-10/msg00005.html.
3296
3297 2007-10-11  Bruno Haible  <bruno@clisp.org>
3298
3299         * modules/i-ring-tests: New file.
3300         * tests/test-i-ring.c: Renamed from lib/i-ring-test.c. Use ASSERT
3301         instead of assert.
3302
3303 2007-10-11  Bruno Haible  <bruno@clisp.org>
3304
3305         * modules/filenamecat-tests: New file.
3306         * tests/test-filenamecat.c: New file, extracted from lib/filenamecat.c.
3307         * lib/filenamecat.c: Remove test code.
3308
3309 2007-10-11  Paul Eggert  <eggert@cs.ucla.edu>
3310
3311         Simplify and modernize strerror substitute, partly to fix Solaris 8 bug.
3312
3313         * lib/strerror.c: Include <string.h> always, to test interface,
3314         and to remove the need for the dummy.
3315         Include intprops.h to compute width instead of doing it ourselves
3316         and missing a CHAR_BIT declaration, which broke tar 1.19 on Solaris 8.
3317         (strerror): Define it to return NULL if there's no system strerror.
3318         (rpl_strerror): Use INT_STRLEN_BOUND to compute bound.
3319         Omit !HAVE_STRERROR code.  We don't need to worry about supporting
3320         ancient pre-strerror Unix systems well any more.  Saying "unknown
3321         system error" is enough.
3322         * lib/string.in.h (strerror): Simplify the ifdef to reflect the
3323         simpler strerror.c implementation.
3324         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE, gl_PREREQ_STDERROR):
3325         Simplify the tests to reflect the simpler strerror implementation.
3326         * modules/strerror (Depends-on): Add intprops.
3327
3328 2007-10-09  Eric Blake  <ebb9@byu.net>
3329
3330         Silence test-fpending.
3331         * modules/fpending-tests (Files): Add wrapper script.
3332         * tests/test-fpending.sh: New file.
3333
3334 2007-10-09  Bruno Haible  <bruno@clisp.org>
3335
3336         * MODULES.html.sh (func_module): Don't create a hyperlink for
3337         function names like 'printf_frexp'.
3338         (Misc): Add crc, memxor.
3339         (Characteristics of floating types): New section.
3340         (Mathematics): Add ceilf, ceill, floorf, floorl, frexpl-nolibm,
3341         isnanf-nolibm, signbit, trunc, truncf, truncl.
3342         (Enhancements for ISO C 99 functions): New subsection Input/output.
3343         (Support for systems lacking POSIX:2001): Add arpa_inet, calloc-posix,
3344         fcntl, fopen, freopen, fseek, fseeko, ftell, ftello, iconv_open,
3345         locale, malloc-posix, netinet_in, open, realloc-posix, signal, sleep.
3346         (Compatibility checks for POSIX:2001 functions): Add clock-time.
3347         (Enhancements for POSIX:2001 functions): Add chdir-long.
3348         (File system functions): Add areadlink, chdir-safer, read-file.
3349         Remove cycle-check.
3350         (File system as inode set): New section.
3351         (Date and time): Add gethrxtime.
3352         (Multithreading): Add openmp.
3353         (Internationalization functions): Add localename.
3354         (Unicode string functions): Add unistr/u*-mbsnlen.
3355         (Support for maintaining and releasing projects): Add git-version-gen.
3356         (Lone files): Remove directories.
3357
3358 2007-10-08  Ben Pfaff  <blp@gnu.org>
3359
3360         * lib/xmalloca.h: Fix typo in comment.
3361
3362 2007-10-08  Paul Eggert  <eggert@cs.ucla.edu>
3363
3364         * lib/xnanosleep.c (xnanosleep): Don't assume GCC 4.3.0 behavior
3365         when avoiding problems with integer overflow.  Use a portable test
3366         instead.
3367
3368 2007-10-08  Simon Josefsson  <simon@josefsson.org>
3369
3370         * modules/dummy (License): Change to LGPLv2+.
3371         * modules/float (License): Likewise
3372         * modules/realloc (License): Likewise
3373         * modules/stdlib (License): Likewise
3374
3375 2007-10-07  Bruno Haible  <bruno@clisp.org>
3376
3377         * trunc.c (TWO_MANT_DIG): Change type to DOUBLE.
3378         * floor.c (TWO_MANT_DIG): Likewise.
3379         * ceil.c (TWO_MANT_DIG): Likewise.
3380         Reported by Ben Pfaff.
3381
3382 2007-10-07  Bruno Haible  <bruno@clisp.org>
3383
3384         Avoid gcc warnings "declaration of 'exp' shadows a global declaration".
3385         * lib/math.in.h (frexp, frexpl): Change parameter name to 'expptr'.
3386         * lib/frexp.c (FUNC): Likewise.
3387         * lib/printf-frexp.h (printf_frexp): Likewise.
3388         * lib/printf-frexpl.h (printf_frexpl): Likewise.
3389         * lib/printf-frexp.c (FUNC): Likewise.
3390         Suggested by Jim Meyering.
3391
3392 2007-10-07  Jim Meyering  <meyering@redhat.com>
3393
3394         Make xnanosleep's integer overflow test more robust.
3395         * lib/xnanosleep.c (xnanosleep): Declare a temporary to be "volatile",
3396         so that gcc-4.3.0 doesn't optimize away this test for overflow.
3397
3398 2007-10-07  Bruno Haible  <bruno@clisp.org>
3399
3400         * NEWS: Mention the license change.
3401
3402         * doc/gnulib-intro.texi (Copyright): Update the meaning of the license
3403         abbreviations in the modules files.
3404
3405         Change copyright notice from GPLv2+ to GPLv3+.
3406         * README: Change copyright notice.
3407         * MODULES.html.sh: Likewise.
3408         * build-aux/bootstrap.conf: Likewise.
3409         * build-aux/config.libpath: Likewise.
3410         * build-aux/csharpcomp.sh.in: Likewise.
3411         * build-aux/csharpexec.sh.in: Likewise.
3412         * build-aux/install-reloc: Likewise.
3413         * build-aux/javacomp.sh.in: Likewise.
3414         * build-aux/javaexec.sh.in: Likewise.
3415         * build-aux/ldd.sh.in: Likewise.
3416         * build-aux/reloc-ldflags: Likewise.
3417         * build-aux/relocatable.sh.in: Likewise.
3418         * build-aux/x-to-1.in: Likewise.
3419         * check-module: Likewise.
3420         * config/srclistvars.sh: Likewise.
3421         * gnulib-tool: Likewise.
3422         * lib/acl-internal.h: Likewise.
3423         * lib/acl.c: Likewise.
3424         * lib/acl.h: Likewise.
3425         * lib/acl_entries.c: Likewise.
3426         * lib/areadlink-with-size.c: Likewise.
3427         * lib/areadlink.c: Likewise.
3428         * lib/areadlink.h: Likewise.
3429         * lib/argmatch.c: Likewise.
3430         * lib/argmatch.h: Likewise.
3431         * lib/argp-ba.c: Likewise.
3432         * lib/argp-eexst.c: Likewise.
3433         * lib/argp-fmtstream.c: Likewise.
3434         * lib/argp-fmtstream.h: Likewise.
3435         * lib/argp-fs-xinl.c: Likewise.
3436         * lib/argp-help.c: Likewise.
3437         * lib/argp-namefrob.h: Likewise.
3438         * lib/argp-parse.c: Likewise.
3439         * lib/argp-pin.c: Likewise.
3440         * lib/argp-pv.c: Likewise.
3441         * lib/argp-pvh.c: Likewise.
3442         * lib/argp-xinl.c: Likewise.
3443         * lib/argp.h: Likewise.
3444         * lib/at-func.c: Likewise.
3445         * lib/atanl.c: Likewise.
3446         * lib/backupfile.c: Likewise.
3447         * lib/backupfile.h: Likewise.
3448         * lib/basename.c: Likewise.
3449         * lib/binary-io.h: Likewise.
3450         * lib/byteswap.in.h: Likewise.
3451         * lib/c-stack.c: Likewise.
3452         * lib/c-stack.h: Likewise.
3453         * lib/c-strcasestr.c: Likewise.
3454         * lib/c-strcasestr.h: Likewise.
3455         * lib/c-strstr.c: Likewise.
3456         * lib/c-strstr.h: Likewise.
3457         * lib/c-strtod.c: Likewise.
3458         * lib/calloc.c: Likewise.
3459         * lib/canon-host.c: Likewise.
3460         * lib/canon-host.h: Likewise.
3461         * lib/canonicalize-lgpl.c: Likewise.
3462         * lib/canonicalize.c: Likewise.
3463         * lib/canonicalize.h: Likewise.
3464         * lib/ceil.c: Likewise.
3465         * lib/ceilf.c: Likewise.
3466         * lib/ceill.c: Likewise.
3467         * lib/chdir-long.c: Likewise.
3468         * lib/chdir-long.h: Likewise.
3469         * lib/chdir-safer.c: Likewise.
3470         * lib/chdir-safer.h: Likewise.
3471         * lib/chown.c: Likewise.
3472         * lib/classpath.c: Likewise.
3473         * lib/classpath.h: Likewise.
3474         * lib/clean-temp.c: Likewise.
3475         * lib/clean-temp.h: Likewise.
3476         * lib/cloexec.c: Likewise.
3477         * lib/close-stream.c: Likewise.
3478         * lib/closein.c: Likewise.
3479         * lib/closein.h: Likewise.
3480         * lib/closeout.c: Likewise.
3481         * lib/closeout.h: Likewise.
3482         * lib/concat-filename.c: Likewise.
3483         * lib/copy-file.c: Likewise.
3484         * lib/copy-file.h: Likewise.
3485         * lib/count-one-bits.h: Likewise.
3486         * lib/crc.c: Likewise.
3487         * lib/crc.h: Likewise.
3488         * lib/creat-safer.c: Likewise.
3489         * lib/csharpcomp.c: Likewise.
3490         * lib/csharpcomp.h: Likewise.
3491         * lib/csharpexec.c: Likewise.
3492         * lib/csharpexec.h: Likewise.
3493         * lib/cycle-check.c: Likewise.
3494         * lib/cycle-check.h: Likewise.
3495         * lib/diacrit.c: Likewise.
3496         * lib/diacrit.h: Likewise.
3497         * lib/diffseq.h: Likewise.
3498         * lib/dirchownmod.c: Likewise.
3499         * lib/dirent.in.h: Likewise.
3500         * lib/dirfd.c: Likewise.
3501         * lib/dirfd.h: Likewise.
3502         * lib/dirname.c: Likewise.
3503         * lib/dirname.h: Likewise.
3504         * lib/dummy.c: Likewise.
3505         * lib/dup-safer.c: Likewise.
3506         * lib/dup2.c: Likewise.
3507         * lib/eealloc.h: Likewise.
3508         * lib/error.c: Likewise.
3509         * lib/error.h: Likewise.
3510         * lib/euidaccess.c: Likewise.
3511         * lib/exclude.c: Likewise.
3512         * lib/exclude.h: Likewise.
3513         * lib/execute.c: Likewise.
3514         * lib/execute.h: Likewise.
3515         * lib/exitfail.c: Likewise.
3516         * lib/exitfail.h: Likewise.
3517         * lib/expl.c: Likewise.
3518         * lib/fatal-signal.c: Likewise.
3519         * lib/fatal-signal.h: Likewise.
3520         * lib/fbufmode.c: Likewise.
3521         * lib/fbufmode.h: Likewise.
3522         * lib/fchdir.c: Likewise.
3523         * lib/fchmodat.c: Likewise.
3524         * lib/fchownat.c: Likewise.
3525         * lib/fcntl--.h: Likewise.
3526         * lib/fcntl-safer.h: Likewise.
3527         * lib/fcntl.in.h: Likewise.
3528         * lib/fd-safer.c: Likewise.
3529         * lib/fflush.c: Likewise.
3530         * lib/file-has-acl.c: Likewise.
3531         * lib/file-set.c: Likewise.
3532         * lib/file-type.c: Likewise.
3533         * lib/file-type.h: Likewise.
3534         * lib/fileblocks.c: Likewise.
3535         * lib/filemode.c: Likewise.
3536         * lib/filemode.h: Likewise.
3537         * lib/filename.h: Likewise.
3538         * lib/filenamecat.c: Likewise.
3539         * lib/filenamecat.h: Likewise.
3540         * lib/findprog.c: Likewise.
3541         * lib/findprog.h: Likewise.
3542         * lib/float.in.h: Likewise.
3543         * lib/floor.c: Likewise.
3544         * lib/floorf.c: Likewise.
3545         * lib/floorl.c: Likewise.
3546         * lib/fopen-safer.c: Likewise.
3547         * lib/fopen.c: Likewise.
3548         * lib/fpending.c: Likewise.
3549         * lib/fpending.h: Likewise.
3550         * lib/fprintf.c: Likewise.
3551         * lib/fprintftime.h: Likewise.
3552         * lib/fpucw.h: Likewise.
3553         * lib/fpurge.c: Likewise.
3554         * lib/fpurge.h: Likewise.
3555         * lib/freadable.c: Likewise.
3556         * lib/freadable.h: Likewise.
3557         * lib/freadahead.c: Likewise.
3558         * lib/freadahead.h: Likewise.
3559         * lib/freading.c: Likewise.
3560         * lib/freading.h: Likewise.
3561         * lib/free.c: Likewise.
3562         * lib/freopen.c: Likewise.
3563         * lib/frexp.c: Likewise.
3564         * lib/frexpl.c: Likewise.
3565         * lib/fseek.c: Likewise.
3566         * lib/fseterr.c: Likewise.
3567         * lib/fseterr.h: Likewise.
3568         * lib/fstatat.c: Likewise.
3569         * lib/fstrcmp.c: Likewise.
3570         * lib/fstrcmp.h: Likewise.
3571         * lib/fsusage.c: Likewise.
3572         * lib/fsusage.h: Likewise.
3573         * lib/ftell.c: Likewise.
3574         * lib/ftello.c: Likewise.
3575         * lib/fts-cycle.c: Likewise.
3576         * lib/fts.c: Likewise.
3577         * lib/fts_.h: Likewise.
3578         * lib/full-read.c: Likewise.
3579         * lib/full-read.h: Likewise.
3580         * lib/full-write.c: Likewise.
3581         * lib/full-write.h: Likewise.
3582         * lib/fwritable.c: Likewise.
3583         * lib/fwritable.h: Likewise.
3584         * lib/fwriteerror.c: Likewise.
3585         * lib/fwriteerror.h: Likewise.
3586         * lib/fwriting.c: Likewise.
3587         * lib/fwriting.h: Likewise.
3588         * lib/gcd.c: Likewise.
3589         * lib/gcd.h: Likewise.
3590         * lib/getcwd.c: Likewise.
3591         * lib/getdate.h: Likewise.
3592         * lib/getdate.y: Likewise.
3593         * lib/getdomainname.c: Likewise.
3594         * lib/getdomainname.h: Likewise.
3595         * lib/getgroups.c: Likewise.
3596         * lib/gethostname.c: Likewise.
3597         * lib/gethrxtime.c: Likewise.
3598         * lib/gethrxtime.h: Likewise.
3599         * lib/getloadavg.c: Likewise.
3600         * lib/getndelim2.c: Likewise.
3601         * lib/getndelim2.h: Likewise.
3602         * lib/getnline.c: Likewise.
3603         * lib/getnline.h: Likewise.
3604         * lib/getopt.c: Likewise.
3605         * lib/getopt.in.h: Likewise.
3606         * lib/getopt1.c: Likewise.
3607         * lib/getopt_int.h: Likewise.
3608         * lib/getpagesize.h: Likewise.
3609         * lib/getsubopt.c: Likewise.
3610         * lib/gettime.c: Likewise.
3611         * lib/getugroups.c: Likewise.
3612         * lib/getugroups.h: Likewise.
3613         * lib/getusershell.c: Likewise.
3614         * lib/gl_anyavltree_list1.h: Likewise.
3615         * lib/gl_anyavltree_list2.h: Likewise.
3616         * lib/gl_anyhash_list1.h: Likewise.
3617         * lib/gl_anyhash_list2.h: Likewise.
3618         * lib/gl_anylinked_list1.h: Likewise.
3619         * lib/gl_anylinked_list2.h: Likewise.
3620         * lib/gl_anyrbtree_list1.h: Likewise.
3621         * lib/gl_anyrbtree_list2.h: Likewise.
3622         * lib/gl_anytree_list1.h: Likewise.
3623         * lib/gl_anytree_list2.h: Likewise.
3624         * lib/gl_anytree_oset.h: Likewise.
3625         * lib/gl_anytreehash_list1.h: Likewise.
3626         * lib/gl_anytreehash_list2.h: Likewise.
3627         * lib/gl_array_list.c: Likewise.
3628         * lib/gl_array_list.h: Likewise.
3629         * lib/gl_array_oset.c: Likewise.
3630         * lib/gl_array_oset.h: Likewise.
3631         * lib/gl_avltree_list.c: Likewise.
3632         * lib/gl_avltree_list.h: Likewise.
3633         * lib/gl_avltree_oset.c: Likewise.
3634         * lib/gl_avltree_oset.h: Likewise.
3635         * lib/gl_avltreehash_list.c: Likewise.
3636         * lib/gl_avltreehash_list.h: Likewise.
3637         * lib/gl_carray_list.c: Likewise.
3638         * lib/gl_carray_list.h: Likewise.
3639         * lib/gl_linked_list.c: Likewise.
3640         * lib/gl_linked_list.h: Likewise.
3641         * lib/gl_linkedhash_list.c: Likewise.
3642         * lib/gl_linkedhash_list.h: Likewise.
3643         * lib/gl_list.c: Likewise.
3644         * lib/gl_list.h: Likewise.
3645         * lib/gl_oset.c: Likewise.
3646         * lib/gl_oset.h: Likewise.
3647         * lib/gl_rbtree_list.c: Likewise.
3648         * lib/gl_rbtree_list.h: Likewise.
3649         * lib/gl_rbtree_oset.c: Likewise.
3650         * lib/gl_rbtree_oset.h: Likewise.
3651         * lib/gl_rbtreehash_list.c: Likewise.
3652         * lib/gl_rbtreehash_list.h: Likewise.
3653         * lib/gl_sublist.c: Likewise.
3654         * lib/gl_sublist.h: Likewise.
3655         * lib/group-member.c: Likewise.
3656         * lib/group-member.h: Likewise.
3657         * lib/hard-locale.c: Likewise.
3658         * lib/hard-locale.h: Likewise.
3659         * lib/hash-pjw.c: Likewise.
3660         * lib/hash-pjw.h: Likewise.
3661         * lib/hash-triple.c: Likewise.
3662         * lib/hash.c: Likewise.
3663         * lib/hash.h: Likewise.
3664         * lib/human.c: Likewise.
3665         * lib/human.h: Likewise.
3666         * lib/i-ring.c: Likewise.
3667         * lib/i-ring.h: Likewise.
3668         * lib/idcache.c: Likewise.
3669         * lib/imaxabs.c: Likewise.
3670         * lib/imaxdiv.c: Likewise.
3671         * lib/inet_pton.c: Likewise.
3672         * lib/inet_pton.h: Likewise.
3673         * lib/intprops.h: Likewise.
3674         * lib/inttostr.c: Likewise.
3675         * lib/inttostr.h: Likewise.
3676         * lib/inttypes.in.h: Likewise.
3677         * lib/isapipe.c: Likewise.
3678         * lib/isdir.c: Likewise.
3679         * lib/isnan.c: Likewise.
3680         * lib/isnan.h: Likewise.
3681         * lib/isnanf.c: Likewise.
3682         * lib/isnanf.h: Likewise.
3683         * lib/isnanl-nolibm.h: Likewise.
3684         * lib/isnanl.c: Likewise.
3685         * lib/isnanl.h: Likewise.
3686         * lib/javacomp.c: Likewise.
3687         * lib/javacomp.h: Likewise.
3688         * lib/javaexec.c: Likewise.
3689         * lib/javaexec.h: Likewise.
3690         * lib/javaversion.c: Likewise.
3691         * lib/javaversion.h: Likewise.
3692         * lib/javaversion.java: Likewise.
3693         * lib/lbrkprop.h: Likewise.
3694         * lib/lchmod.h: Likewise.
3695         * lib/lchown.c: Likewise.
3696         * lib/ldexpl.c: Likewise.
3697         * lib/linebreak.c: Likewise.
3698         * lib/linebreak.h: Likewise.
3699         * lib/linebuffer.c: Likewise.
3700         * lib/linebuffer.h: Likewise.
3701         * lib/locale.in.h: Likewise.
3702         * lib/logl.c: Likewise.
3703         * lib/long-options.c: Likewise.
3704         * lib/long-options.h: Likewise.
3705         * lib/lstat.c: Likewise.
3706         * lib/lstat.h: Likewise.
3707         * lib/math.in.h: Likewise.
3708         * lib/mbchar.c: Likewise.
3709         * lib/mbchar.h: Likewise.
3710         * lib/mbfile.h: Likewise.
3711         * lib/mbiter.h: Likewise.
3712         * lib/mbscasecmp.c: Likewise.
3713         * lib/mbscasestr.c: Likewise.
3714         * lib/mbschr.c: Likewise.
3715         * lib/mbscspn.c: Likewise.
3716         * lib/mbslen.c: Likewise.
3717         * lib/mbsncasecmp.c: Likewise.
3718         * lib/mbsnlen.c: Likewise.
3719         * lib/mbspbrk.c: Likewise.
3720         * lib/mbspcasecmp.c: Likewise.
3721         * lib/mbsrchr.c: Likewise.
3722         * lib/mbssep.c: Likewise.
3723         * lib/mbsspn.c: Likewise.
3724         * lib/mbsstr.c: Likewise.
3725         * lib/mbstok_r.c: Likewise.
3726         * lib/mbswidth.c: Likewise.
3727         * lib/mbswidth.h: Likewise.
3728         * lib/mbuiter.h: Likewise.
3729         * lib/memcasecmp.c: Likewise.
3730         * lib/memcasecmp.h: Likewise.
3731         * lib/memchr.c: Likewise.
3732         * lib/memcmp.c: Likewise.
3733         * lib/memcoll.c: Likewise.
3734         * lib/memcoll.h: Likewise.
3735         * lib/memcpy.c: Likewise.
3736         * lib/memrchr.c: Likewise.
3737         * lib/mkancesdirs.c: Likewise.
3738         * lib/mkdir-p.c: Likewise.
3739         * lib/mkdir-p.h: Likewise.
3740         * lib/mkdir.c: Likewise.
3741         * lib/mkdirat.c: Likewise.
3742         * lib/mkdtemp.c: Likewise.
3743         * lib/mkstemp-safer.c: Likewise.
3744         * lib/mkstemp.c: Likewise.
3745         * lib/modechange.c: Likewise.
3746         * lib/modechange.h: Likewise.
3747         * lib/mountlist.c: Likewise.
3748         * lib/mountlist.h: Likewise.
3749         * lib/mpsort.c: Likewise.
3750         * lib/nanosleep.c: Likewise.
3751         * lib/obstack.c: Likewise.
3752         * lib/obstack.h: Likewise.
3753         * lib/open-safer.c: Likewise.
3754         * lib/open.c: Likewise.
3755         * lib/openat-die.c: Likewise.
3756         * lib/openat-priv.h: Likewise.
3757         * lib/openat-proc.c: Likewise.
3758         * lib/openat.c: Likewise.
3759         * lib/openat.h: Likewise.
3760         * lib/pagealign_alloc.c: Likewise.
3761         * lib/pagealign_alloc.h: Likewise.
3762         * lib/physmem.c: Likewise.
3763         * lib/physmem.h: Likewise.
3764         * lib/pipe-safer.c: Likewise.
3765         * lib/pipe.c: Likewise.
3766         * lib/pipe.h: Likewise.
3767         * lib/posixtm.c: Likewise.
3768         * lib/posixtm.h: Likewise.
3769         * lib/posixver.c: Likewise.
3770         * lib/printf-frexp.c: Likewise.
3771         * lib/printf-frexp.h: Likewise.
3772         * lib/printf-frexpl.c: Likewise.
3773         * lib/printf-frexpl.h: Likewise.
3774         * lib/printf.c: Likewise.
3775         * lib/progname.c: Likewise.
3776         * lib/progname.h: Likewise.
3777         * lib/progreloc.c: Likewise.
3778         * lib/putenv.c: Likewise.
3779         * lib/quote.c: Likewise.
3780         * lib/quote.h: Likewise.
3781         * lib/quotearg.c: Likewise.
3782         * lib/quotearg.h: Likewise.
3783         * lib/raise.c: Likewise.
3784         * lib/readline.c: Likewise.
3785         * lib/readline.h: Likewise.
3786         * lib/readlink.c: Likewise.
3787         * lib/readtokens.c: Likewise.
3788         * lib/readtokens.h: Likewise.
3789         * lib/readtokens0.c: Likewise.
3790         * lib/readtokens0.h: Likewise.
3791         * lib/readutmp.c: Likewise.
3792         * lib/readutmp.h: Likewise.
3793         * lib/realloc.c: Likewise.
3794         * lib/relocwrapper.c: Likewise.
3795         * lib/rename-dest-slash.c: Likewise.
3796         * lib/rename.c: Likewise.
3797         * lib/rmdir.c: Likewise.
3798         * lib/rpmatch.c: Likewise.
3799         * lib/safe-read.c: Likewise.
3800         * lib/safe-read.h: Likewise.
3801         * lib/safe-write.c: Likewise.
3802         * lib/safe-write.h: Likewise.
3803         * lib/same-inode.h: Likewise.
3804         * lib/same.c: Likewise.
3805         * lib/same.h: Likewise.
3806         * lib/save-cwd.c: Likewise.
3807         * lib/save-cwd.h: Likewise.
3808         * lib/savedir.c: Likewise.
3809         * lib/savedir.h: Likewise.
3810         * lib/savewd.c: Likewise.
3811         * lib/savewd.h: Likewise.
3812         * lib/search.in.h: Likewise.
3813         * lib/setenv.c: Likewise.
3814         * lib/setenv.h: Likewise.
3815         * lib/settime.c: Likewise.
3816         * lib/sh-quote.c: Likewise.
3817         * lib/sh-quote.h: Likewise.
3818         * lib/sig2str.c: Likewise.
3819         * lib/sig2str.h: Likewise.
3820         * lib/signal.in.h: Likewise.
3821         * lib/signbitd.c: Likewise.
3822         * lib/signbitf.c: Likewise.
3823         * lib/signbitl.c: Likewise.
3824         * lib/sigprocmask.c: Likewise.
3825         * lib/sincosl.c: Likewise.
3826         * lib/sleep.c: Likewise.
3827         * lib/sprintf.c: Likewise.
3828         * lib/sqrtl.c: Likewise.
3829         * lib/stat-time.h: Likewise.
3830         * lib/stdio--.h: Likewise.
3831         * lib/stdio-safer.h: Likewise.
3832         * lib/stdlib--.h: Likewise.
3833         * lib/stdlib-safer.h: Likewise.
3834         * lib/stdlib.in.h: Likewise.
3835         * lib/stpcpy.c: Likewise.
3836         * lib/stpncpy.c: Likewise.
3837         * lib/strchrnul.c: Likewise.
3838         * lib/strcspn.c: Likewise.
3839         * lib/strerror.c: Likewise.
3840         * lib/strftime.c: Likewise.
3841         * lib/strftime.h: Likewise.
3842         * lib/striconveh.c: Likewise.
3843         * lib/striconveh.h: Likewise.
3844         * lib/striconveha.c: Likewise.
3845         * lib/striconveha.h: Likewise.
3846         * lib/stripslash.c: Likewise.
3847         * lib/strnlen1.c: Likewise.
3848         * lib/strnlen1.h: Likewise.
3849         * lib/strtod.c: Likewise.
3850         * lib/strtoimax.c: Likewise.
3851         * lib/strtok_r.c: Likewise.
3852         * lib/strtol.c: Likewise.
3853         * lib/strtoll.c: Likewise.
3854         * lib/strtoul.c: Likewise.
3855         * lib/strtoull.c: Likewise.
3856         * lib/sysexits.in.h: Likewise.
3857         * lib/tempname.c: Likewise.
3858         * lib/tempname.h: Likewise.
3859         * lib/timespec.h: Likewise.
3860         * lib/tls.c: Likewise.
3861         * lib/tls.h: Likewise.
3862         * lib/tmpdir.c: Likewise.
3863         * lib/tmpdir.h: Likewise.
3864         * lib/tmpfile-safer.c: Likewise.
3865         * lib/tmpfile.c: Likewise.
3866         * lib/trigl.c: Likewise.
3867         * lib/trigl.h: Likewise.
3868         * lib/trim.c: Likewise.
3869         * lib/trim.h: Likewise.
3870         * lib/trunc.c: Likewise.
3871         * lib/truncf.c: Likewise.
3872         * lib/truncl.c: Likewise.
3873         * lib/tsearch.c: Likewise.
3874         * lib/unicodeio.c: Likewise.
3875         * lib/unicodeio.h: Likewise.
3876         * lib/unistd--.h: Likewise.
3877         * lib/unistd-safer.h: Likewise.
3878         * lib/unistdio/ulc-fprintf.c: Likewise.
3879         * lib/unistdio/ulc-vfprintf.c: Likewise.
3880         * lib/unlinkdir.c: Likewise.
3881         * lib/unlinkdir.h: Likewise.
3882         * lib/unlocked-io.h: Likewise.
3883         * lib/unsetenv.c: Likewise.
3884         * lib/userspec.c: Likewise.
3885         * lib/utime.c: Likewise.
3886         * lib/utimecmp.c: Likewise.
3887         * lib/utimecmp.h: Likewise.
3888         * lib/utimens.c: Likewise.
3889         * lib/verify.h: Likewise.
3890         * lib/verror.c: Likewise.
3891         * lib/verror.h: Likewise.
3892         * lib/version-etc-fsf.c: Likewise.
3893         * lib/version-etc.c: Likewise.
3894         * lib/version-etc.h: Likewise.
3895         * lib/vfprintf.c: Likewise.
3896         * lib/vprintf.c: Likewise.
3897         * lib/vsprintf.c: Likewise.
3898         * lib/w32spawn.h: Likewise.
3899         * lib/wait-process.c: Likewise.
3900         * lib/wait-process.h: Likewise.
3901         * lib/wcwidth.c: Likewise.
3902         * lib/write-any-file.c: Likewise.
3903         * lib/xalloc-die.c: Likewise.
3904         * lib/xalloc.h: Likewise.
3905         * lib/xasprintf.c: Likewise.
3906         * lib/xgetcwd.c: Likewise.
3907         * lib/xgetcwd.h: Likewise.
3908         * lib/xgetdomainname.c: Likewise.
3909         * lib/xgetdomainname.h: Likewise.
3910         * lib/xgethostname.c: Likewise.
3911         * lib/xmalloc.c: Likewise.
3912         * lib/xmalloca.c: Likewise.
3913         * lib/xmalloca.h: Likewise.
3914         * lib/xmemcoll.c: Likewise.
3915         * lib/xnanosleep.c: Likewise.
3916         * lib/xreadlink.c: Likewise.
3917         * lib/xreadlink.h: Likewise.
3918         * lib/xsetenv.c: Likewise.
3919         * lib/xsetenv.h: Likewise.
3920         * lib/xstriconv.c: Likewise.
3921         * lib/xstriconv.h: Likewise.
3922         * lib/xstrndup.c: Likewise.
3923         * lib/xstrndup.h: Likewise.
3924         * lib/xstrtod.c: Likewise.
3925         * lib/xstrtod.h: Likewise.
3926         * lib/xstrtol-error.c: Likewise.
3927         * lib/xstrtol.c: Likewise.
3928         * lib/xstrtol.h: Likewise.
3929         * lib/xtime.h: Likewise.
3930         * lib/xvasprintf.c: Likewise.
3931         * lib/xvasprintf.h: Likewise.
3932         * lib/yesno.c: Likewise.
3933         * lib/yesno.h: Likewise.
3934         * posix-modules: Likewise.
3935         * tests/test-alloca-opt.c: Likewise.
3936         * tests/test-arcfour.c: Likewise.
3937         * tests/test-arctwo.c: Likewise.
3938         * tests/test-argmatch.c: Likewise.
3939         * tests/test-argp-2.sh: Likewise.
3940         * tests/test-argp.c: Likewise.
3941         * tests/test-arpa_inet.c: Likewise.
3942         * tests/test-array_list.c: Likewise.
3943         * tests/test-array_oset.c: Likewise.
3944         * tests/test-atexit.c: Likewise.
3945         * tests/test-avltree_list.c: Likewise.
3946         * tests/test-avltree_oset.c: Likewise.
3947         * tests/test-avltreehash_list.c: Likewise.
3948         * tests/test-base64.c: Likewise.
3949         * tests/test-binary-io.c: Likewise.
3950         * tests/test-byteswap.c: Likewise.
3951         * tests/test-c-ctype.c: Likewise.
3952         * tests/test-c-strcasecmp.c: Likewise.
3953         * tests/test-c-strcasestr.c: Likewise.
3954         * tests/test-c-strncasecmp.c: Likewise.
3955         * tests/test-c-strstr.c: Likewise.
3956         * tests/test-canonicalize-lgpl.c: Likewise.
3957         * tests/test-canonicalize.c: Likewise.
3958         * tests/test-carray_list.c: Likewise.
3959         * tests/test-ceilf.c: Likewise.
3960         * tests/test-ceill.c: Likewise.
3961         * tests/test-count-one-bits.c: Likewise.
3962         * tests/test-crc.c: Likewise.
3963         * tests/test-dirname.c: Likewise.
3964         * tests/test-fbufmode.c: Likewise.
3965         * tests/test-fcntl.c: Likewise.
3966         * tests/test-fflush.c: Likewise.
3967         * tests/test-floorf.c: Likewise.
3968         * tests/test-floorl.c: Likewise.
3969         * tests/test-fopen.c: Likewise.
3970         * tests/test-fprintf-posix.c: Likewise.
3971         * tests/test-fprintf-posix.h: Likewise.
3972         * tests/test-fpurge.c: Likewise.
3973         * tests/test-freadable.c: Likewise.
3974         * tests/test-freadahead.c: Likewise.
3975         * tests/test-freading.c: Likewise.
3976         * tests/test-freopen.c: Likewise.
3977         * tests/test-frexp.c: Likewise.
3978         * tests/test-frexpl.c: Likewise.
3979         * tests/test-fseek.c: Likewise.
3980         * tests/test-fseeko.c: Likewise.
3981         * tests/test-fseterr.c: Likewise.
3982         * tests/test-fstrcmp.c: Likewise.
3983         * tests/test-ftell.c: Likewise.
3984         * tests/test-ftello.c: Likewise.
3985         * tests/test-fwritable.c: Likewise.
3986         * tests/test-fwriting.c: Likewise.
3987         * tests/test-getaddrinfo.c: Likewise.
3988         * tests/test-getpass.c: Likewise.
3989         * tests/test-gettimeofday.c: Likewise.
3990         * tests/test-hmac-md5.c: Likewise.
3991         * tests/test-hmac-sha1.c: Likewise.
3992         * tests/test-iconv.c: Likewise.
3993         * tests/test-iconvme.c: Likewise.
3994         * tests/test-inttypes.c: Likewise.
3995         * tests/test-isnan.c: Likewise.
3996         * tests/test-isnanf.c: Likewise.
3997         * tests/test-isnanl-nolibm.c: Likewise.
3998         * tests/test-isnanl.c: Likewise.
3999         * tests/test-isnanl.h: Likewise.
4000         * tests/test-ldexpl.c: Likewise.
4001         * tests/test-linked_list.c: Likewise.
4002         * tests/test-linkedhash_list.c: Likewise.
4003         * tests/test-locale.c: Likewise.
4004         * tests/test-localename.c: Likewise.
4005         * tests/test-lock.c: Likewise.
4006         * tests/test-lseek.c: Likewise.
4007         * tests/test-malloca.c: Likewise.
4008         * tests/test-math.c: Likewise.
4009         * tests/test-mbscasecmp.c: Likewise.
4010         * tests/test-mbscasestr1.c: Likewise.
4011         * tests/test-mbscasestr2.c: Likewise.
4012         * tests/test-mbscasestr3.c: Likewise.
4013         * tests/test-mbscasestr4.c: Likewise.
4014         * tests/test-mbschr.c: Likewise.
4015         * tests/test-mbscspn.c: Likewise.
4016         * tests/test-mbsncasecmp.c: Likewise.
4017         * tests/test-mbspbrk.c: Likewise.
4018         * tests/test-mbspcasecmp.c: Likewise.
4019         * tests/test-mbsrchr.c: Likewise.
4020         * tests/test-mbsspn.c: Likewise.
4021         * tests/test-mbsstr1.c: Likewise.
4022         * tests/test-mbsstr2.c: Likewise.
4023         * tests/test-mbsstr3.c: Likewise.
4024         * tests/test-md5.c: Likewise.
4025         * tests/test-memmem.c: Likewise.
4026         * tests/test-netinet_in.c: Likewise.
4027         * tests/test-open.c: Likewise.
4028         * tests/test-printf-frexp.c: Likewise.
4029         * tests/test-printf-frexpl.c: Likewise.
4030         * tests/test-printf-posix.c: Likewise.
4031         * tests/test-printf-posix.h: Likewise.
4032         * tests/test-rbtree_list.c: Likewise.
4033         * tests/test-rbtree_oset.c: Likewise.
4034         * tests/test-rbtreehash_list.c: Likewise.
4035         * tests/test-read-file.c: Likewise.
4036         * tests/test-rijndael.c: Likewise.
4037         * tests/test-search.c: Likewise.
4038         * tests/test-signbit.c: Likewise.
4039         * tests/test-sleep.c: Likewise.
4040         * tests/test-snprintf-posix.c: Likewise.
4041         * tests/test-snprintf-posix.h: Likewise.
4042         * tests/test-snprintf.c: Likewise.
4043         * tests/test-sprintf-posix.c: Likewise.
4044         * tests/test-sprintf-posix.h: Likewise.
4045         * tests/test-stat-time.c: Likewise.
4046         * tests/test-stdbool.c: Likewise.
4047         * tests/test-stdint.c: Likewise.
4048         * tests/test-stdio.c: Likewise.
4049         * tests/test-stdlib.c: Likewise.
4050         * tests/test-stpncpy.c: Likewise.
4051         * tests/test-strcasestr.c: Likewise.
4052         * tests/test-striconv.c: Likewise.
4053         * tests/test-striconveh.c: Likewise.
4054         * tests/test-striconveha.c: Likewise.
4055         * tests/test-string.c: Likewise.
4056         * tests/test-sys_select.c: Likewise.
4057         * tests/test-sys_socket.c: Likewise.
4058         * tests/test-sys_stat.c: Likewise.
4059         * tests/test-sys_time.c: Likewise.
4060         * tests/test-sysexits.c: Likewise.
4061         * tests/test-time.c: Likewise.
4062         * tests/test-tls.c: Likewise.
4063         * tests/test-trunc.c: Likewise.
4064         * tests/test-truncf.c: Likewise.
4065         * tests/test-truncl.c: Likewise.
4066         * tests/test-unistd.c: Likewise.
4067         * tests/test-vasnprintf-posix.c: Likewise.
4068         * tests/test-vasnprintf-posix2.c: Likewise.
4069         * tests/test-vasnprintf.c: Likewise.
4070         * tests/test-vasprintf-posix.c: Likewise.
4071         * tests/test-vasprintf.c: Likewise.
4072         * tests/test-verify.c: Likewise.
4073         * tests/test-vfprintf-posix.c: Likewise.
4074         * tests/test-vprintf-posix.c: Likewise.
4075         * tests/test-vsnprintf-posix.c: Likewise.
4076         * tests/test-vsnprintf.c: Likewise.
4077         * tests/test-vsprintf-posix.c: Likewise.
4078         * tests/test-wchar.c: Likewise.
4079         * tests/test-wctype.c: Likewise.
4080         * tests/test-wcwidth.c: Likewise.
4081         * tests/test-xstrtol.c: Likewise.
4082         * tests/test-xvasprintf.c: Likewise.
4083         * tests/uniconv/test-u16-conv-from-enc.c: Likewise.
4084         * tests/uniconv/test-u16-conv-to-enc.c: Likewise.
4085         * tests/uniconv/test-u16-strconv-from-enc.c: Likewise.
4086         * tests/uniconv/test-u16-strconv-to-enc.c: Likewise.
4087         * tests/uniconv/test-u32-conv-from-enc.c: Likewise.
4088         * tests/uniconv/test-u32-conv-to-enc.c: Likewise.
4089         * tests/uniconv/test-u32-strconv-from-enc.c: Likewise.
4090         * tests/uniconv/test-u32-strconv-to-enc.c: Likewise.
4091         * tests/uniconv/test-u8-conv-from-enc.c: Likewise.
4092         * tests/uniconv/test-u8-conv-to-enc.c: Likewise.
4093         * tests/uniconv/test-u8-strconv-from-enc.c: Likewise.
4094         * tests/uniconv/test-u8-strconv-to-enc.c: Likewise.
4095         * tests/uniname/test-uninames.c: Likewise.
4096         * tests/unistdio/test-u16-asnprintf1.c: Likewise.
4097         * tests/unistdio/test-u16-asnprintf1.h: Likewise.
4098         * tests/unistdio/test-u16-printf1.h: Likewise.
4099         * tests/unistdio/test-u16-vasnprintf1.c: Likewise.
4100         * tests/unistdio/test-u16-vasnprintf2.c: Likewise.
4101         * tests/unistdio/test-u16-vasnprintf3.c: Likewise.
4102         * tests/unistdio/test-u16-vasprintf1.c: Likewise.
4103         * tests/unistdio/test-u16-vsnprintf1.c: Likewise.
4104         * tests/unistdio/test-u16-vsprintf1.c: Likewise.
4105         * tests/unistdio/test-u32-asnprintf1.c: Likewise.
4106         * tests/unistdio/test-u32-asnprintf1.h: Likewise.
4107         * tests/unistdio/test-u32-printf1.h: Likewise.
4108         * tests/unistdio/test-u32-vasnprintf1.c: Likewise.
4109         * tests/unistdio/test-u32-vasnprintf2.c: Likewise.
4110         * tests/unistdio/test-u32-vasnprintf3.c: Likewise.
4111         * tests/unistdio/test-u32-vasprintf1.c: Likewise.
4112         * tests/unistdio/test-u32-vsnprintf1.c: Likewise.
4113         * tests/unistdio/test-u32-vsprintf1.c: Likewise.
4114         * tests/unistdio/test-u8-asnprintf1.c: Likewise.
4115         * tests/unistdio/test-u8-asnprintf1.h: Likewise.
4116         * tests/unistdio/test-u8-printf1.h: Likewise.
4117         * tests/unistdio/test-u8-vasnprintf1.c: Likewise.
4118         * tests/unistdio/test-u8-vasnprintf2.c: Likewise.
4119         * tests/unistdio/test-u8-vasnprintf3.c: Likewise.
4120         * tests/unistdio/test-u8-vasprintf1.c: Likewise.
4121         * tests/unistdio/test-u8-vsnprintf1.c: Likewise.
4122         * tests/unistdio/test-u8-vsprintf1.c: Likewise.
4123         * tests/unistdio/test-ulc-asnprintf1.c: Likewise.
4124         * tests/unistdio/test-ulc-asnprintf1.h: Likewise.
4125         * tests/unistdio/test-ulc-printf1.h: Likewise.
4126         * tests/unistdio/test-ulc-vasnprintf1.c: Likewise.
4127         * tests/unistdio/test-ulc-vasnprintf2.c: Likewise.
4128         * tests/unistdio/test-ulc-vasnprintf3.c: Likewise.
4129         * tests/unistdio/test-ulc-vasprintf1.c: Likewise.
4130         * tests/unistdio/test-ulc-vsnprintf1.c: Likewise.
4131         * tests/unistdio/test-ulc-vsprintf1.c: Likewise.
4132         * tests/uniwidth/test-u16-strwidth.c: Likewise.
4133         * tests/uniwidth/test-u16-width.c: Likewise.
4134         * tests/uniwidth/test-u32-strwidth.c: Likewise.
4135         * tests/uniwidth/test-u32-width.c: Likewise.
4136         * tests/uniwidth/test-u8-strwidth.c: Likewise.
4137         * tests/uniwidth/test-u8-width.c: Likewise.
4138         * tests/uniwidth/test-uc_width.c: Likewise.
4139         * config/srclist-update: Likewise.
4140         (fixlicense): Update to GPLv3+.
4141
4142         Change copyright notice from LGPLv2.1+ to LGPLv3+.
4143         * tests/test-tsearch.c: Change copyright notice.
4144
4145         Change copyright notice from LGPLv2.0+ to LGPLv3+.
4146         * lib/c-strcaseeq.h: Change copyright notice.
4147         * lib/streq.h: Likewise.
4148         * lib/uniconv.h: Likewise.
4149         * lib/uniconv/u-conv-from-enc.h: Likewise.
4150         * lib/uniconv/u-conv-to-enc.h: Likewise.
4151         * lib/uniconv/u-strconv-from-enc.h: Likewise.
4152         * lib/uniconv/u-strconv-to-enc.h: Likewise.
4153         * lib/uniconv/u16-conv-from-enc.c: Likewise.
4154         * lib/uniconv/u16-conv-to-enc.c: Likewise.
4155         * lib/uniconv/u16-strconv-from-enc.c: Likewise.
4156         * lib/uniconv/u16-strconv-from-locale.c: Likewise.
4157         * lib/uniconv/u16-strconv-to-enc.c: Likewise.
4158         * lib/uniconv/u16-strconv-to-locale.c: Likewise.
4159         * lib/uniconv/u32-conv-from-enc.c: Likewise.
4160         * lib/uniconv/u32-conv-to-enc.c: Likewise.
4161         * lib/uniconv/u32-strconv-from-enc.c: Likewise.
4162         * lib/uniconv/u32-strconv-from-locale.c: Likewise.
4163         * lib/uniconv/u32-strconv-to-enc.c: Likewise.
4164         * lib/uniconv/u32-strconv-to-locale.c: Likewise.
4165         * lib/uniconv/u8-conv-from-enc.c: Likewise.
4166         * lib/uniconv/u8-conv-to-enc.c: Likewise.
4167         * lib/uniconv/u8-strconv-from-enc.c: Likewise.
4168         * lib/uniconv/u8-strconv-from-locale.c: Likewise.
4169         * lib/uniconv/u8-strconv-to-enc.c: Likewise.
4170         * lib/uniconv/u8-strconv-to-locale.c: Likewise.
4171         * lib/uniname.h: Likewise.
4172         * lib/uniname/uniname.c: Likewise.
4173         * lib/unistdio.h: Likewise.
4174         * lib/unistdio/u-asnprintf.h: Likewise.
4175         * lib/unistdio/u-asprintf.h: Likewise.
4176         * lib/unistdio/u-printf-args.c: Likewise.
4177         * lib/unistdio/u-printf-args.h: Likewise.
4178         * lib/unistdio/u-printf-parse.h: Likewise.
4179         * lib/unistdio/u-snprintf.h: Likewise.
4180         * lib/unistdio/u-sprintf.h: Likewise.
4181         * lib/unistdio/u-vasprintf.h: Likewise.
4182         * lib/unistdio/u-vsnprintf.h: Likewise.
4183         * lib/unistdio/u-vsprintf.h: Likewise.
4184         * lib/unistdio/u16-asnprintf.c: Likewise.
4185         * lib/unistdio/u16-asprintf.c: Likewise.
4186         * lib/unistdio/u16-printf-parse.c: Likewise.
4187         * lib/unistdio/u16-snprintf.c: Likewise.
4188         * lib/unistdio/u16-sprintf.c: Likewise.
4189         * lib/unistdio/u16-u16-asnprintf.c: Likewise.
4190         * lib/unistdio/u16-u16-asprintf.c: Likewise.
4191         * lib/unistdio/u16-u16-snprintf.c: Likewise.
4192         * lib/unistdio/u16-u16-sprintf.c: Likewise.
4193         * lib/unistdio/u16-u16-vasnprintf.c: Likewise.
4194         * lib/unistdio/u16-u16-vasprintf.c: Likewise.
4195         * lib/unistdio/u16-u16-vsnprintf.c: Likewise.
4196         * lib/unistdio/u16-u16-vsprintf.c: Likewise.
4197         * lib/unistdio/u16-vasnprintf.c: Likewise.
4198         * lib/unistdio/u16-vasprintf.c: Likewise.
4199         * lib/unistdio/u16-vsnprintf.c: Likewise.
4200         * lib/unistdio/u16-vsprintf.c: Likewise.
4201         * lib/unistdio/u32-asnprintf.c: Likewise.
4202         * lib/unistdio/u32-asprintf.c: Likewise.
4203         * lib/unistdio/u32-printf-parse.c: Likewise.
4204         * lib/unistdio/u32-snprintf.c: Likewise.
4205         * lib/unistdio/u32-sprintf.c: Likewise.
4206         * lib/unistdio/u32-u32-asnprintf.c: Likewise.
4207         * lib/unistdio/u32-u32-asprintf.c: Likewise.
4208         * lib/unistdio/u32-u32-snprintf.c: Likewise.
4209         * lib/unistdio/u32-u32-sprintf.c: Likewise.
4210         * lib/unistdio/u32-u32-vasnprintf.c: Likewise.
4211         * lib/unistdio/u32-u32-vasprintf.c: Likewise.
4212         * lib/unistdio/u32-u32-vsnprintf.c: Likewise.
4213         * lib/unistdio/u32-u32-vsprintf.c: Likewise.
4214         * lib/unistdio/u32-vasnprintf.c: Likewise.
4215         * lib/unistdio/u32-vasprintf.c: Likewise.
4216         * lib/unistdio/u32-vsnprintf.c: Likewise.
4217         * lib/unistdio/u32-vsprintf.c: Likewise.
4218         * lib/unistdio/u8-asnprintf.c: Likewise.
4219         * lib/unistdio/u8-asprintf.c: Likewise.
4220         * lib/unistdio/u8-printf-parse.c: Likewise.
4221         * lib/unistdio/u8-snprintf.c: Likewise.
4222         * lib/unistdio/u8-sprintf.c: Likewise.
4223         * lib/unistdio/u8-u8-asnprintf.c: Likewise.
4224         * lib/unistdio/u8-u8-asprintf.c: Likewise.
4225         * lib/unistdio/u8-u8-snprintf.c: Likewise.
4226         * lib/unistdio/u8-u8-sprintf.c: Likewise.
4227         * lib/unistdio/u8-u8-vasnprintf.c: Likewise.
4228         * lib/unistdio/u8-u8-vasprintf.c: Likewise.
4229         * lib/unistdio/u8-u8-vsnprintf.c: Likewise.
4230         * lib/unistdio/u8-u8-vsprintf.c: Likewise.
4231         * lib/unistdio/u8-vasnprintf.c: Likewise.
4232         * lib/unistdio/u8-vasprintf.c: Likewise.
4233         * lib/unistdio/u8-vsnprintf.c: Likewise.
4234         * lib/unistdio/u8-vsprintf.c: Likewise.
4235         * lib/unistdio/ulc-asnprintf.c: Likewise.
4236         * lib/unistdio/ulc-asprintf.c: Likewise.
4237         * lib/unistdio/ulc-printf-parse.c: Likewise.
4238         * lib/unistdio/ulc-snprintf.c: Likewise.
4239         * lib/unistdio/ulc-sprintf.c: Likewise.
4240         * lib/unistdio/ulc-vasnprintf.c: Likewise.
4241         * lib/unistdio/ulc-vasprintf.c: Likewise.
4242         * lib/unistdio/ulc-vsnprintf.c: Likewise.
4243         * lib/unistdio/ulc-vsprintf.c: Likewise.
4244         * lib/unistr.h: Likewise.
4245         * lib/unistr/u-cpy-alloc.h: Likewise.
4246         * lib/unistr/u-cpy.h: Likewise.
4247         * lib/unistr/u-endswith.h: Likewise.
4248         * lib/unistr/u-move.h: Likewise.
4249         * lib/unistr/u-set.h: Likewise.
4250         * lib/unistr/u-startswith.h: Likewise.
4251         * lib/unistr/u-stpcpy.h: Likewise.
4252         * lib/unistr/u-stpncpy.h: Likewise.
4253         * lib/unistr/u-strcat.h: Likewise.
4254         * lib/unistr/u-strcpy.h: Likewise.
4255         * lib/unistr/u-strcspn.h: Likewise.
4256         * lib/unistr/u-strdup.h: Likewise.
4257         * lib/unistr/u-strlen.h: Likewise.
4258         * lib/unistr/u-strncat.h: Likewise.
4259         * lib/unistr/u-strncpy.h: Likewise.
4260         * lib/unistr/u-strnlen.h: Likewise.
4261         * lib/unistr/u-strpbrk.h: Likewise.
4262         * lib/unistr/u-strspn.h: Likewise.
4263         * lib/unistr/u-strstr.h: Likewise.
4264         * lib/unistr/u-strtok.h: Likewise.
4265         * lib/unistr/u16-check.c: Likewise.
4266         * lib/unistr/u16-chr.c: Likewise.
4267         * lib/unistr/u16-cmp.c: Likewise.
4268         * lib/unistr/u16-cpy-alloc.c: Likewise.
4269         * lib/unistr/u16-cpy.c: Likewise.
4270         * lib/unistr/u16-endswith.c: Likewise.
4271         * lib/unistr/u16-mblen.c: Likewise.
4272         * lib/unistr/u16-mbsnlen.c: Likewise.
4273         * lib/unistr/u16-mbtouc-aux.c: Likewise.
4274         * lib/unistr/u16-mbtouc-unsafe-aux.c: Likewise.
4275         * lib/unistr/u16-mbtouc-unsafe.c: Likewise.
4276         * lib/unistr/u16-mbtouc.c: Likewise.
4277         * lib/unistr/u16-mbtoucr.c: Likewise.
4278         * lib/unistr/u16-move.c: Likewise.
4279         * lib/unistr/u16-next.c: Likewise.
4280         * lib/unistr/u16-prev.c: Likewise.
4281         * lib/unistr/u16-set.c: Likewise.
4282         * lib/unistr/u16-startswith.c: Likewise.
4283         * lib/unistr/u16-stpcpy.c: Likewise.
4284         * lib/unistr/u16-stpncpy.c: Likewise.
4285         * lib/unistr/u16-strcat.c: Likewise.
4286         * lib/unistr/u16-strchr.c: Likewise.
4287         * lib/unistr/u16-strcmp.c: Likewise.
4288         * lib/unistr/u16-strcpy.c: Likewise.
4289         * lib/unistr/u16-strcspn.c: Likewise.
4290         * lib/unistr/u16-strdup.c: Likewise.
4291         * lib/unistr/u16-strlen.c: Likewise.
4292         * lib/unistr/u16-strmblen.c: Likewise.
4293         * lib/unistr/u16-strmbtouc.c: Likewise.
4294         * lib/unistr/u16-strncat.c: Likewise.
4295         * lib/unistr/u16-strncmp.c: Likewise.
4296         * lib/unistr/u16-strncpy.c: Likewise.
4297         * lib/unistr/u16-strnlen.c: Likewise.
4298         * lib/unistr/u16-strpbrk.c: Likewise.
4299         * lib/unistr/u16-strrchr.c: Likewise.
4300         * lib/unistr/u16-strspn.c: Likewise.
4301         * lib/unistr/u16-strstr.c: Likewise.
4302         * lib/unistr/u16-strtok.c: Likewise.
4303         * lib/unistr/u16-to-u32.c: Likewise.
4304         * lib/unistr/u16-to-u8.c: Likewise.
4305         * lib/unistr/u16-uctomb-aux.c: Likewise.
4306         * lib/unistr/u16-uctomb.c: Likewise.
4307         * lib/unistr/u32-check.c: Likewise.
4308         * lib/unistr/u32-chr.c: Likewise.
4309         * lib/unistr/u32-cmp.c: Likewise.
4310         * lib/unistr/u32-cpy-alloc.c: Likewise.
4311         * lib/unistr/u32-cpy.c: Likewise.
4312         * lib/unistr/u32-endswith.c: Likewise.
4313         * lib/unistr/u32-mblen.c: Likewise.
4314         * lib/unistr/u32-mbsnlen.c: Likewise.
4315         * lib/unistr/u32-mbtouc-unsafe.c: Likewise.
4316         * lib/unistr/u32-mbtouc.c: Likewise.
4317         * lib/unistr/u32-mbtoucr.c: Likewise.
4318         * lib/unistr/u32-move.c: Likewise.
4319         * lib/unistr/u32-next.c: Likewise.
4320         * lib/unistr/u32-prev.c: Likewise.
4321         * lib/unistr/u32-set.c: Likewise.
4322         * lib/unistr/u32-startswith.c: Likewise.
4323         * lib/unistr/u32-stpcpy.c: Likewise.
4324         * lib/unistr/u32-stpncpy.c: Likewise.
4325         * lib/unistr/u32-strcat.c: Likewise.
4326         * lib/unistr/u32-strchr.c: Likewise.
4327         * lib/unistr/u32-strcmp.c: Likewise.
4328         * lib/unistr/u32-strcpy.c: Likewise.
4329         * lib/unistr/u32-strcspn.c: Likewise.
4330         * lib/unistr/u32-strdup.c: Likewise.
4331         * lib/unistr/u32-strlen.c: Likewise.
4332         * lib/unistr/u32-strmblen.c: Likewise.
4333         * lib/unistr/u32-strmbtouc.c: Likewise.
4334         * lib/unistr/u32-strncat.c: Likewise.
4335         * lib/unistr/u32-strncmp.c: Likewise.
4336         * lib/unistr/u32-strncpy.c: Likewise.
4337         * lib/unistr/u32-strnlen.c: Likewise.
4338         * lib/unistr/u32-strpbrk.c: Likewise.
4339         * lib/unistr/u32-strrchr.c: Likewise.
4340         * lib/unistr/u32-strspn.c: Likewise.
4341         * lib/unistr/u32-strstr.c: Likewise.
4342         * lib/unistr/u32-strtok.c: Likewise.
4343         * lib/unistr/u32-to-u16.c: Likewise.
4344         * lib/unistr/u32-to-u8.c: Likewise.
4345         * lib/unistr/u32-uctomb.c: Likewise.
4346         * lib/unistr/u8-check.c: Likewise.
4347         * lib/unistr/u8-chr.c: Likewise.
4348         * lib/unistr/u8-cmp.c: Likewise.
4349         * lib/unistr/u8-cpy-alloc.c: Likewise.
4350         * lib/unistr/u8-cpy.c: Likewise.
4351         * lib/unistr/u8-endswith.c: Likewise.
4352         * lib/unistr/u8-mblen.c: Likewise.
4353         * lib/unistr/u8-mbsnlen.c: Likewise.
4354         * lib/unistr/u8-mbtouc-aux.c: Likewise.
4355         * lib/unistr/u8-mbtouc-unsafe-aux.c: Likewise.
4356         * lib/unistr/u8-mbtouc-unsafe.c: Likewise.
4357         * lib/unistr/u8-mbtouc.c: Likewise.
4358         * lib/unistr/u8-mbtoucr.c: Likewise.
4359         * lib/unistr/u8-move.c: Likewise.
4360         * lib/unistr/u8-next.c: Likewise.
4361         * lib/unistr/u8-prev.c: Likewise.
4362         * lib/unistr/u8-set.c: Likewise.
4363         * lib/unistr/u8-startswith.c: Likewise.
4364         * lib/unistr/u8-stpcpy.c: Likewise.
4365         * lib/unistr/u8-stpncpy.c: Likewise.
4366         * lib/unistr/u8-strcat.c: Likewise.
4367         * lib/unistr/u8-strchr.c: Likewise.
4368         * lib/unistr/u8-strcmp.c: Likewise.
4369         * lib/unistr/u8-strcpy.c: Likewise.
4370         * lib/unistr/u8-strcspn.c: Likewise.
4371         * lib/unistr/u8-strdup.c: Likewise.
4372         * lib/unistr/u8-strlen.c: Likewise.
4373         * lib/unistr/u8-strmblen.c: Likewise.
4374         * lib/unistr/u8-strmbtouc.c: Likewise.
4375         * lib/unistr/u8-strncat.c: Likewise.
4376         * lib/unistr/u8-strncmp.c: Likewise.
4377         * lib/unistr/u8-strncpy.c: Likewise.
4378         * lib/unistr/u8-strnlen.c: Likewise.
4379         * lib/unistr/u8-strpbrk.c: Likewise.
4380         * lib/unistr/u8-strrchr.c: Likewise.
4381         * lib/unistr/u8-strspn.c: Likewise.
4382         * lib/unistr/u8-strstr.c: Likewise.
4383         * lib/unistr/u8-strtok.c: Likewise.
4384         * lib/unistr/u8-to-u16.c: Likewise.
4385         * lib/unistr/u8-to-u32.c: Likewise.
4386         * lib/unistr/u8-uctomb-aux.c: Likewise.
4387         * lib/unistr/u8-uctomb.c: Likewise.
4388         * lib/unitypes.h: Likewise.
4389         * lib/uniwidth.h: Likewise.
4390         * lib/uniwidth/cjk.h: Likewise.
4391         * lib/uniwidth/u16-strwidth.c: Likewise.
4392         * lib/uniwidth/u16-width.c: Likewise.
4393         * lib/uniwidth/u32-strwidth.c: Likewise.
4394         * lib/uniwidth/u32-width.c: Likewise.
4395         * lib/uniwidth/u8-strwidth.c: Likewise.
4396         * lib/uniwidth/u8-width.c: Likewise.
4397         * lib/uniwidth/width.c: Likewise.
4398
4399 2007-10-07  Bruno Haible  <bruno@clisp.org>
4400
4401         * lib/inttypes.in.h: Change copyright notice from LGPL to GPL.
4402         The file is still under LGPL (see modules/inttypes).
4403
4404 2007-10-06  Bruno Haible  <bruno@clisp.org>
4405
4406         * modules/trunc (Dependencies): Add 'extensions'.
4407         * m4/trunc.m4 (gl_FUNC_TRUNC): Require gl_USE_SYSTEM_EXTENSIONS.
4408         Reported by Ben Pfaff <blp@gnu.org>.
4409
4410 2007-10-06  Bruno Haible  <bruno@clisp.org>
4411
4412         * modules/freopen-tests: New file.
4413         * tests/test-freopen.c: New file.
4414
4415         * modules/fopen-tests: New file.
4416         * tests/test-fopen.c: New file.
4417
4418         * modules/fopen: New file.
4419         * lib/fopen.c: New file.
4420         * m4/fopen.m4: New file.
4421         * modules/freopen: New file.
4422         * lib/freopen.c: New file.
4423         * m4/freopen.m4: New file.
4424         * lib/stdio.in.h (fopen, freopen): New declarations.
4425         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Initialize also GNULIB_FOPEN,
4426         GNULIB_FREOPEN, REPLACE_FOPEN, REPLACE_FREOPEN.
4427         * modules/stdio (Makefile.am): Substitute also GNULIB_FOPEN,
4428         GNULIB_FREOPEN, REPLACE_FOPEN, REPLACE_FREOPEN.
4429         * doc/functions/fopen.texi: Mention the 'fopen' module.
4430         * doc/functions/freopen.texi: Mention the 'freopen' module.
4431
4432 2007-10-06  Bruno Haible  <bruno@clisp.org>
4433
4434         * modules/open-tests: New file.
4435         * tests/test-open.c: New file.
4436
4437         * modules/open: New file.
4438         * lib/open.c: New file.
4439         * m4/open.m4: New file.
4440         * lib/fchdir.c (open): If the gnulib module 'open' is used, do what
4441         lib/open.c does.
4442         * lib/fcntl.in.h (open): Declare also if replaced by the 'open' module.
4443         * m4/fcntl_h.m4 (gl_FCNTL_MODULE_INDICATOR, gl_FCNTL_H_DEFAULTS): New
4444         macros.
4445         (gl_FCNTL_H): Require gl_FCNTL_H_DEFAULTS.
4446         * modules/fcntl (Makefile.am): Also substitute GNULIB_OPEN and
4447         REPLACE_OPEN.
4448         * doc/functions/open.texi: Mention the 'open' module.
4449
4450 2007-10-04  Bruno Haible  <bruno@clisp.org>
4451
4452         * modules/ceill-tests: New file.
4453         * tests/test-ceill.c: New file.
4454
4455         * modules/ceill: New file.
4456         * lib/ceill.c: Replace entire file.
4457         * m4/ceill.m4: New file.
4458         * lib/math.in.h (ceill): Replace declaration.
4459         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_CEILL.
4460         * modules/math (Makefile.am): Substitute also GNULIB_CEILL.
4461         * doc/functions/ceill.texi: Mention the 'ceill' module.
4462         * modules/mathl (Files): Remove lib/ceill.c.
4463         (Depends-on): Add ceill.
4464
4465 2007-10-04  Bruno Haible  <bruno@clisp.org>
4466
4467         * modules/ceilf-tests: New file.
4468         * tests/test-ceilf.c: New file.
4469
4470         * modules/ceilf: New file.
4471         * lib/ceil.c: New file.
4472         * lib/ceilf.c: New file.
4473         * m4/ceilf.m4: New file.
4474         * lib/math.in.h (ceilf): New declaration.
4475         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_CEILF and
4476         HAVE_DECL_CEILF.
4477         * modules/math (Makefile.am): Substitute also GNULIB_CEILF and
4478         HAVE_DECL_CEILF.
4479         * doc/functions/ceilf.texi: Mention the 'ceilf' module.
4480
4481 2007-10-04  Bruno Haible  <bruno@clisp.org>
4482
4483         * modules/floorl-tests: New file.
4484         * tests/test-floorl.c: New file.
4485
4486         * modules/floorl: New file.
4487         * lib/floorl.c: Replace entire file.
4488         * m4/floorl.m4: New file.
4489         * lib/math.in.h (floorl): Replace declaration.
4490         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_FLOORL.
4491         * modules/math (Makefile.am): Substitute also GNULIB_FLOORL.
4492         * doc/functions/floorl.texi: Mention the 'floorl' module.
4493         * modules/mathl (Files): Remove lib/floorl.c.
4494         (Depends-on): Add floorl.
4495
4496 2007-10-04  Bruno Haible  <bruno@clisp.org>
4497
4498         * modules/floorf-tests: New file.
4499         * tests/test-floorf.c: New file.
4500
4501         * modules/floorf: New file.
4502         * lib/floor.c: New file.
4503         * lib/floorf.c: New file.
4504         * m4/floorf.m4: New file.
4505         * lib/math.in.h (floorf): New declaration.
4506         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_FLOORF and
4507         HAVE_DECL_FLOORF.
4508         * modules/math (Makefile.am): Substitute also GNULIB_FLOORF and
4509         HAVE_DECL_FLOORF.
4510         * doc/functions/floorf.texi: Mention the 'floorf' module.
4511
4512 2007-10-04  Benoit Sigoure  <tsuna@lrde.epita.fr>
4513             Bruno Haible  <bruno@clisp.org>
4514
4515         Advertise for the Git server instead of the CVS server.
4516         * doc/gnulib-intro.texi (Steady Development): Mention the Git
4517         repository instead of the CVS one.
4518         * doc/gnulib-tool.texi (VCS Issues): Renamed from "CVS Issues". Talk
4519         about all VCS systems generically.
4520         * doc/gnulib.texi (Introduction): Capitalize `Git'.
4521
4522 2007-10-04  Bruno Haible  <bruno@clisp.org>
4523
4524         * doc/gnulib.texi (Function Substitutes): Explain what an absent module
4525         means.
4526         Reported by Benoît Sigoure <tsuna@lrde.epita.fr>.
4527
4528 2007-10-04  Bruno Haible  <bruno@clisp.org>
4529
4530         * modules/truncl-tests: New file.
4531         * tests/test-truncl.c: New file.
4532
4533         * modules/truncl: New file.
4534         * lib/truncl.c: New file.
4535         * m4/truncl.m4: New file.
4536         * lib/math.in.h (truncl): New declaration.
4537         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_TRUNCL and
4538         HAVE_DECL_TRUNCL.
4539         * modules/math (Makefile.am): Substitute also GNULIB_TRUNCL and
4540         HAVE_DECL_TRUNCL.
4541         * doc/functions/truncl.texi: Mention the 'truncl' module.
4542
4543 2007-10-04  Bruno Haible  <bruno@clisp.org>
4544
4545         * modules/truncf-tests: New file.
4546         * tests/test-truncf.c: New file.
4547
4548         * modules/truncf: New file.
4549         * lib/trunc.c: Make paramerizable through USE_* macros.
4550         * lib/truncf.c: New file.
4551         * m4/truncf.m4: New file.
4552         * lib/math.in.h (truncf): New declaration.
4553         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_TRUNCF and
4554         HAVE_DECL_TRUNCF.
4555         * modules/math (Makefile.am): Substitute also GNULIB_TRUNCF and
4556         HAVE_DECL_TRUNCF.
4557         * doc/functions/truncf.texi: Mention the 'truncf' module.
4558
4559 2007-10-03  Bruno Haible  <bruno@clisp.org>
4560
4561         * gnulib-tool (func_get_automake_snippet): Synthesize an EXTRA_DIST
4562         augmentation also for tests modules.
4563         * modules/argp-tests (Makefile.am): Remove EXTRA_DIST augmentation.
4564         * modules/atexit-tests (Makefile.am): Likewise.
4565         * modules/binary-io-tests (Makefile.am): Likewise.
4566         * modules/c-strcase-tests (Makefile.am): Likewise.
4567         * modules/canonicalize-lgpl-tests (Makefile.am): Likewise.
4568         * modules/canonicalize-tests (Makefile.am): Likewise.
4569         * modules/closein-tests (Makefile.am): Likewise.
4570         * modules/fprintf-posix-tests (Makefile.am): Likewise.
4571         * modules/freadahead-tests (Makefile.am): Likewise.
4572         * modules/fseek-tests (Makefile.am): Likewise.
4573         * modules/fseeko-tests (Makefile.am): Likewise.
4574         * modules/ftell-tests (Makefile.am): Likewise.
4575         * modules/ftello-tests (Makefile.am): Likewise.
4576         * modules/isnanl-nolibm-tests (Makefile.am): Likewise.
4577         * modules/isnanl-tests (Makefile.am): Likewise.
4578         * modules/lseek-tests (Makefile.am): Likewise.
4579         * modules/mbscasecmp-tests (Makefile.am): Likewise.
4580         * modules/mbscasestr-tests (Makefile.am): Likewise.
4581         * modules/mbschr-tests (Makefile.am): Likewise.
4582         * modules/mbscspn-tests (Makefile.am): Likewise.
4583         * modules/mbsncasecmp-tests (Makefile.am): Likewise.
4584         * modules/mbspbrk-tests (Makefile.am): Likewise.
4585         * modules/mbspcasecmp-tests (Makefile.am): Likewise.
4586         * modules/mbsrchr-tests (Makefile.am): Likewise.
4587         * modules/mbsspn-tests (Makefile.am): Likewise.
4588         * modules/mbsstr-tests (Makefile.am): Likewise.
4589         * modules/printf-posix-tests (Makefile.am): Likewise.
4590         * modules/snprintf-posix-tests (Makefile.am): Likewise.
4591         * modules/sprintf-posix-tests (Makefile.am): Likewise.
4592         * modules/tsearch-tests (Makefile.am): Likewise.
4593         * modules/uniname/uniname-tests (Makefile.am): Likewise.
4594         * modules/unistdio/u16-vasnprintf-tests (Makefile.am): Likewise.
4595         * modules/unistdio/u32-vasnprintf-tests (Makefile.am): Likewise.
4596         * modules/unistdio/u8-vasnprintf-tests (Makefile.am): Likewise.
4597         * modules/unistdio/ulc-vasnprintf-tests (Makefile.am): Likewise.
4598         * modules/vasnprintf-posix-tests (Makefile.am): Likewise.
4599         * modules/vfprintf-posix-tests (Makefile.am): Likewise.
4600         * modules/vprintf-posix-tests (Makefile.am): Likewise.
4601         * modules/vsnprintf-posix-tests (Makefile.am): Likewise.
4602         * modules/vsprintf-posix-tests (Makefile.am): Likewise.
4603         * modules/xstrtoimax-tests (Makefile.am): Likewise.
4604         * modules/xstrtol-tests (Makefile.am): Likewise.
4605         * modules/xstrtoumax-tests (Makefile.am): Likewise.
4606         * modules/yesno-tests (Makefile.am): Likewise.
4607
4608 2007-10-03  Bruno Haible  <bruno@clisp.org>
4609
4610         * modules/trunc-tests: New file.
4611         * tests/test-trunc.c: New file.
4612
4613         * modules/trunc: New file.
4614         * lib/trunc.c: New file.
4615         * m4/trunc.m4: New file.
4616         * lib/math.in.h (trunc): New declaration.
4617         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_TRUNC and
4618         HAVE_DECL_TRUNC.
4619         * modules/math (Makefile.am): Substitute also GNULIB_TRUNC and
4620         HAVE_DECL_TRUNC.
4621         * doc/functions/trunc.texi: Mention the 'trunc' module.
4622
4623 2007-10-03  Bruno Haible  <bruno@clisp.org>
4624
4625         * tests/test-fpending.c: New file, mostly copied
4626         from coreutils/lib/t-fpending.c.
4627         * modules/fpending-tests: New file.
4628
4629 2007-10-03  Bruno Haible  <bruno@clisp.org>
4630
4631         Port the stdio extensions to QNX (untested).
4632         * lib/fseterr.c (fseterr): Add support for QNX.
4633         * lib/fbufmode.c (fbufmode): Likewise.
4634         * lib/freadable.c (freadable): Likewise.
4635         * lib/fwritable.c (fwritable): Likewise.
4636         * lib/freading.c (freading): Likewise.
4637         * lib/fwriting.c (fwriting): Likewise.
4638         * lib/freadahead.c (freadahed): Likewise.
4639         * lib/fpurge.c (fpurge): Likewise.
4640         * lib/fseeko.c (rpl_fseeko): Likewise.
4641
4642 2007-10-03  Bruno Haible  <bruno@clisp.org>
4643             Jim Meyering  <jim@meyering.net>
4644             Eric Blake  <ebb9@byu.net>
4645
4646         * doc/relocatable.texi: Use @command instead of @program.
4647
4648 2007-10-02  Jim Meyering  <jim@meyering.net>
4649
4650         Perform one more "_.h" -> ".in.h" substitution.
4651         * modules/unistd (Makefile.am) [unistd.h]: Use unistd.h.in
4652         instead of unistd_.h here, too.
4653
4654 2007-10-01  Bruno Haible  <bruno@clisp.org>
4655
4656         * gnulib-tool (func_emit_initmacro_done): Special case for alloca.c.
4657         Needed for the alloca-opt module.
4658
4659 2007-09-30  Bruno Haible  <bruno@clisp.org>
4660
4661         * lib/alloca.in.h: Renamed from lib/alloca_.h.
4662         * modules/alloca-opt (Files, Makefile.am): Use alloca.in.h instead of
4663         alloca_.h.
4664         * lib/argz.in.h: Renamed from lib/argz_.h.
4665         * modules/argz (Files, Makefile.am): Use argz.in.h instead of argz_.h.
4666         * lib/byteswap.in.h: Renamed from lib/byteswap_.h.
4667         * modules/byteswap (Files, Makefile.am): Use byteswap.in.h instead of
4668         byteswap_.h.
4669         * lib/dirent.in.h: Renamed from lib/dirent_.h.
4670         * modules/fchdir (Files, Makefile.am): Use dirent.in.h instead of
4671         dirent_.h.
4672         * lib/fcntl.in.h: Renamed from lib/fcntl_.h.
4673         * modules/fcntl (Files, Makefile.am): Use fcntl.in.h instead of
4674         fcntl_.h.
4675         * lib/float.in.h: Renamed from lib/float_.h.
4676         * modules/float (Files, Makefile.am): Use float.in.h instead of
4677         float_.h.
4678         * lib/fnmatch.in.h: Renamed from lib/fnmatch_.h.
4679         * modules/fnmatch (Files, Makefile.am): Use fnmatch.in.h instead of
4680         fnmatch_.h.
4681         * lib/getopt.in.h: Renamed from lib/getopt_.h.
4682         * modules/getopt (Files, Makefile.am): Use getopt.in.h instead of
4683         getopt_.h.
4684         * lib/glob.in.h: Renamed from lib/glob_.h.
4685         * modules/glob (Files, Makefile.am): Use glob.in.h instead of glob_.h.
4686         * lib/iconv.in.h: Renamed from lib/iconv_.h.
4687         * modules/iconv_open (Files, Makefile.am): Use iconv.in.h instead of
4688         iconv_.h.
4689         * lib/inttypes.in.h: Renamed from lib/inttypes_.h.
4690         * modules/inttypes (Files, Makefile.am): Use inttypes.in.h instead of
4691         inttypes_.h.
4692         * lib/locale.in.h: Renamed from lib/locale_.h.
4693         * modules/locale (Files, Makefile.am): Use locale.in.h instead of
4694         locale_.h.
4695         * lib/math.in.h: Renamed from lib/math_.h.
4696         * modules/math (Files, Makefile.am): Use math.in.h instead of math_.h.
4697         * lib/netinet_in.in.h: Renamed from lib/netinet_in_.h.
4698         * modules/netinet_in (Files, Makefile.am): Use netinet_in.in.h instead
4699         of netinet_in_.h. Add dependency.
4700         * lib/poll.in.h: Renamed from lib/poll_.h.
4701         * modules/poll (Files, Makefile.am): Use poll.in.h instead of poll_.h.
4702         * lib/search.in.h: Renamed from lib/search_.h.
4703         * modules/search (Files, Makefile.am): Use search.in.h instead of
4704         search_.h.
4705         * lib/signal.in.h: Renamed from lib/signal_.h.
4706         * modules/signal (Files, Makefile.am): Use signal.in.h instead of
4707         _signal.h.
4708         * lib/stdbool.in.h: Renamed from lib/stdbool_.h.
4709         * modules/stdbool (Files, Makefile.am): Use stdbool.in.h instead of
4710         stdbool_.h.
4711         * lib/stdint.in.h: Renamed from lib/stdint_.h.
4712         * modules/stdint (Files, Makefile.am): Use stdint.in.h instead of
4713         stdint_.h.
4714         * lib/stdio.in.h: Renamed from lib/stdio_.h.
4715         * modules/stdio (Files, Makefile.am): Use stdio.in.h instead of
4716         stdio_.h.
4717         * lib/stdlib.in.h: Renamed from lib/stdlib_.h.
4718         * modules/stdlib (Files, Makefile.am): Use stdlib.in.h instead of
4719         stdlib_.h.
4720         * lib/string.in.h: Renamed from lib/string_.h.
4721         * modules/string (Files, Makefile.am): Use string.in.h instead of
4722         string_.h.
4723         * doc/gnulib-tool.texi (Initial import): Update.
4724         * lib/sys_select.in.h: Renamed from lib/sys_select_.h.
4725         * modules/sys_select (Files, Makefile.am): Use sys_select.in.h instead
4726         of sys_select_.h. Add dependency.
4727         * lib/sys_socket.in.h: Renamed from lib/sys_socket_.h.
4728         * modules/sys_socket (Files, Makefile.am): Use sys_socket.in.h instead
4729         of sys_socket_.h.
4730         * lib/sys_stat.in.h: Renamed from lib/sys_stat_.h.
4731         * modules/sys_stat (Files, Makefile.am): Use sys_stat.in.h instead of
4732         sys_stat_.h.
4733         * lib/sys_time.in.h: Renamed from lib/sys_time_.h.
4734         * modules/sys_time (Files, Makefile.am): Use sys_time.in.h instead of
4735         sys_time_.h.
4736         * lib/sysexits.in.h: Renamed from lib/sysexits_.h.
4737         * modules/sysexits (Files, Makefile.am): Use sysexits.in.h instead of
4738         sysexits_.h.
4739         * lib/time.in.h: Renamed from lib/time_.h.
4740         * modules/time (Files, Makefile.am): Use time.in.h instead of time_.h.
4741         * lib/unistd.in.h: Renamed from lib/unistd_.h.
4742         * modules/unistd (Files, Makefile.am): Use unistd.in.h instead of
4743         unistd_.h.
4744         * lib/wchar.in.h: Renamed from lib/wchar_.h.
4745         * modules/wchar (Files, Makefile.am): Use wchar.in.h instead of
4746         wchar_.h.
4747         * lib/wctype.in.h: Renamed from lib/wctype_.h.
4748         * modules/wctype (Files, Makefile.am): Use wctype.in.h instead of
4749         wctype_.h.
4750         * build-aux/bootstrap (slurp): Update.
4751         * lib/.cppi-disable: Update.
4752
4753 2007-09-30  Bruno Haible  <bruno@clisp.org>
4754
4755         * tests/test-getaddrinfo.c (AF_UNSPEC): Provide a fallback definition.
4756         Needed on BeOS.
4757
4758 2007-09-30  Bruno Haible  <bruno@clisp.org>
4759
4760         * modules/dirname-tests (check_PROGRAMS): Renamed from noinst_PROGRAMS.
4761
4762 2007-09-29  Bruno Haible  <bruno@clisp.org>
4763
4764         * lib/stdio_.h (getdelim, getline): Add identifiers. Doc tweak.
4765
4766 2007-09-29  Bruno Haible  <bruno@clisp.org>
4767
4768         * lib/xreadlink.c (xreadlink): Simplify to a wrapper around areadlink.
4769         * modules/xreadlink (Depends-on): Add areadlink, remove readlink etc.
4770         * build-aux/install-reloc: Compile also areadlink.c.
4771         * modules/relocatable-prog-wrapper (Files): Add lib/areadlink.[hc].
4772
4773 2007-09-29  Bruno Haible  <bruno@clisp.org>
4774
4775         * gnulib-tool (func_emit_initmacro_done): Indentation.
4776
4777 2007-09-29  Bruno Haible  <bruno@clisp.org>
4778
4779         * README: Add CVS checkout update instructions.
4780         Info from Bob Proulx <bob@proulx.com>.
4781
4782 2007-09-28  Eric Blake  <ebb9@byu.net>
4783
4784         Provide move-if-change.
4785         * build-aux/move-if-change: New file, based on best practice
4786         rather than any canonical upstream location.
4787
4788 2007-09-28  Jim Meyering  <jim@meyering.net>
4789
4790         Fix canonicalize loop-detection corner case.
4791         Do not attempt to stat the symlink values stored via seen_triple.
4792         Without this, coreutils' tests/misc/readlink-fp-loop test would fail
4793         on linux-2.6.18, (but not 2.6.22).
4794         * lib/canonicalize.c (seen_triple): Use triple_compare_ino_str, not
4795         triple_compare.  The former compares dev,ino,filename, while the latter
4796         would actually stat dirname(filename) when dev and ino were equal.
4797         * lib/hash-triple.c: Install <string.h>.
4798         (STREQ): Define.
4799         (triple_compare_ino_str): New function.
4800         * lib/hash-triple.h (triple_compare_ino_str): Declare it.
4801
4802 2007-09-28  Eric Blake  <ebb9@byu.net>
4803
4804         Enforce that AC_REPLACE_FUNCS files exist.
4805         * gnulib-tool (func_emit_initmacro_done): Make AC_LIBSOURCES
4806         override check for typos.
4807
4808         Fix test-closein on Solaris 10.
4809         * tests/test-closein.c (main): Don't assume stdin can be inherited
4810         closed on all systems.
4811         * tests/test-closein.sh: Likewise.
4812         Reported by Piotr Tarnowski.
4813
4814 2007-09-28  Jim Meyering  <jim@meyering.net>
4815
4816         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Fix typo in comment.
4817
4818 2007-09-27  Jim Meyering  <jim@meyering.net>
4819
4820         canonicalize: Avoid a false-positive cycle failure.
4821         * modules/canonicalize (Depends-on): Add file-set and hash-triple.
4822         Sort.  Remove cycle-check.
4823         * lib/canonicalize.c: Include file-set.h and hash-triple.h,
4824         not cycle-check.h.
4825         (seen_triple): New function.
4826         (canonicalize_filename_mode): Use it instead of cycle-check.
4827         * tests/test-canonicalize.c: Add a test for this bug.
4828         * tests/test-canonicalize.sh: Set up and run the test.
4829
4830         New module, file-set, from coreutils.
4831         * modules/file-set: Define it.
4832         * lib/file-set.c, lib/file-set.h: Implement.
4833
4834         New module, hash-triple, from coreutils.
4835         * modules/hash-triple: Define it.
4836         * lib/hash-triple.c, lib/hash-triple.h: Implement.
4837
4838 2007-09-25  Eric Blake  <ebb9@byu.net>
4839
4840         Fix strerror on Interix.
4841         * lib/string_.h (strerror): Declare replacement.
4842         * doc/functions/strerror.texi (strerror): Document the Interix
4843         shortcoming.
4844         * modules/string (Makefile.am): Support new hooks.
4845         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Add new hooks.
4846         * m4/strerror.m4 (gl_FUNC_STRERROR): Defer to
4847         gl_FUNC_STRERROR_SEPARATE.
4848         (gl_FUNC_STRERROR_SEPARATE): Check for Interix bug.
4849         * lib/strerror.c (rpl_strerror): Provide replacement.
4850         * modules/strerror (Depends-on): Add string.
4851         (configure.ac): Detect use of module.
4852         * tests/test-strerror.c: New file.
4853         * modules/strerror-tests: New test module.
4854         * modules/argp (Depends-on): Add strerror.
4855         * modules/error (Depends-on): Likewise.
4856         Reported by Martin Koeppe.
4857
4858 2007-09-24  Bruno Haible  <bruno@clisp.org>
4859
4860         * README: Update git instructions.
4861
4862 2007-09-24  Eric Blake  <ebb9@byu.net>
4863
4864         Revert fpending breakage from 2007-09-08.
4865         * m4/fpending.m4 (gl_FUNC_FPENDING): Don't require existence of
4866         __fpending.c.
4867
4868 2007-09-24  Jim Meyering  <jim@meyering.net>
4869
4870         filenamecat.c: Add a test.
4871         * lib/filenamecat.c (main) [TEST_FILE_NAME_CONCAT]: Add a test
4872         showing how the function works when DIR is the empty string.
4873
4874 2007-09-21  Simon Josefsson  <simon@josefsson.org>
4875
4876         * tests/test-canonicalize.sh: Turn on executable bit.
4877
4878 2007-09-19  Eric Blake  <ebb9@byu.net>
4879
4880         * README: Update CVS instructions.
4881
4882 2007-09-18  Bruno Haible  <bruno@clisp.org>
4883
4884         * modules/areadlink: New file.
4885         * lib/areadlink.h (areadlink): New declaration.
4886         * lib/areadlink.c: New file, based on lib/xreadlink.c.
4887
4888 2007-09-17  Jim Meyering  <jim@meyering.net>
4889
4890         * lib/savewd.c (ESTALE) [!defined]: Define.
4891         Reported to be required on Interix by Martin Koeppe.
4892
4893 2007-09-17  Bruno Haible  <bruno@clisp.org>
4894
4895         * gnulib-tool (func_version): Use $version.
4896
4897 2007-09-16  Bruno Haible  <bruno@clisp.org>
4898
4899         * m4/printf.m4 (gl_PRINTF_LONG_DOUBLE, gl_PRINTF_INFINITE,
4900         gl_PRINTF_INFINITE_LONG_DOUBLE): Increase buf's size from 100 to 10000.
4901         Needed on glibc-2.6.1 with -fstack-protector -D_FORTIFY_SOURCE=2.
4902         Reported by Greg Schafer <gschafer@zip.com.au>.
4903
4904 2007-09-15  Bruno Haible  <bruno@clisp.org>
4905
4906         * gnulib-tool (sed): Try a little harder to make bash understand the
4907         alias.
4908         Reported by Bruce Korb <bruce.korb@gmail.com>.
4909
4910 2007-09-13  Eric Blake  <ebb9@byu.net>
4911
4912         * ChangeLog: Remove conflict markers.
4913
4914 2007-09-13  Simon Josefsson  <simon@josefsson.org>
4915
4916         * lib/gc-gnulib.c (gc_hash_open): Catch NULL calloc return value.
4917         Reported by Bruno Haible <bruno@clisp.org>.
4918
4919 2007-09-12  Bruno Haible  <bruno@clisp.org>
4920
4921         * m4/lock.m4: Don't provide an AC_USE_SYSTEM_EXTENSIONS definition.
4922         (gl_LOCK_EARLY_BODY): Use AC_GNU_SOURCE when AC_USE_SYSTEM_EXTENSIONS
4923         is not defined.
4924
4925 2007-09-12  Eric Blake  <ebb9@byu.net>
4926
4927         Track CVS Autoconf on AC_USE_SYSTEM_EXTENSIONS.
4928         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS): Update to CVS
4929         Autoconf definition.
4930         * modules/euidaccess (Depends-on): Add extensions, for
4931         AC_USE_SYSTEM_EXTENSIONS with autoconf <= 2.59.
4932         * modules/fnmatch (Depends-on): Likewise.
4933         * modules/getaddrinfo (Depends-on): Likewise.
4934         * modules/getdelim (Depends-on): Likewise.
4935         * modules/getline (Depends-on): Likewise.
4936         * modules/getsubopt (Depends-on): Likewise.
4937         * modules/gettext (Depends-on): Likewise.
4938         * modules/group-member (Depends-on): Likewise.
4939         * modules/mbchar (Depends-on): Likewise.
4940         * modules/memmem (Depends-on): Likewise.
4941         * modules/mempcpy (Depends-on): Likewise.
4942         * modules/memrchr (Depends-on): Likewise.
4943         * modules/pagealign_alloc (Depends-on): Likewise.
4944         * modules/readutmp (Depends-on): Likewise.
4945         * modules/stpcpy (Depends-on): Likewise.
4946         * modules/stpncpy (Depends-on): Likewise.
4947         * modules/strchrnul (Depends-on): Likewise.
4948         * modules/strndup (Depends-on): Likewise.
4949         * modules/strsep (Depends-on): Likewise.
4950         * modules/strverscmp (Depends-on): Likewise.
4951         * modules/vasprintf (Depends-on): Likewise.
4952         * modules/wcwidth (Depends-on): Likewise.
4953         * m4/euidaccess.m4 (gl_FUNC_EUIDACCESS): AC_GNU_SOURCE will be
4954         obsolete in Autoconf 2.62; use AC_USE_SYSTEM_EXTENSIONS instead.
4955         * m4/fnmatch.m4 (gl_FUNC_FNMATCH_GNU): Likewise.
4956         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDR_INFO): Likewise.
4957         * m4/getdelim.m4 (gl_FUNC_GETDELIM): Likewise.
4958         * m4/getline.m4 (gl_FUNC_GETLINE): Likewise.
4959         * m4/getsubopt.m4 (gl_FUNC_GETSUBOPT): Likewise.
4960         * m4/glob.m4 (gl_PREREQ_GLOB): Likewise.
4961         * m4/group-member.m4 (gl_FUNC_GROUP_MEMBER): Likewise.
4962         * m4/mbchar.m4 (gl_MBCHAR): Likewise.
4963         * m4/memmem.m4 (gl_FUNC_MEMMEM): Likewise.
4964         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Likewise.
4965         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Likewise.
4966         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Likewise.
4967         * m4/pagealign_alloc.m4 (gl_PAGEALIGN_ALLOC): Likewise.
4968         * m4/readutmp.m4 (gl_READUTMP): Likewise.
4969         * m4/regex.m4 (gl_PREREQ_REGEX): Likewise.
4970         * m4/stpcpy.m4 (gl_FUNC_STPCPY): Likewise.
4971         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Likewise.
4972         * m4/strchrnul.m4 (gl_FUNC_STRCHRNUL): Likewise.
4973         * m4/strndup.m4 (gl_FUNC_STRNDUP): Likewise.
4974         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Likewise.
4975         * m4/strsep.m4 (gl_FUNC_STRSEP): Likewise.
4976         * m4/strverscmp.m4 (gl_FUNC_STRVERSCMP): Likewise.
4977         * m4/vasprintf.m4 (gl_PREREQ_VASPRINTF_H): Likewise.
4978         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Likewise.
4979         * m4/lock.m4 (gl_LOCK_EARLY_BODY): Likewise, but provide fallback,
4980         so that lock.m4 can be used in gettext without extensions module.
4981
4982 2007-09-11  Bruno Haible  <bruno@clisp.org>
4983
4984         * m4/isc-posix.m4: Remove file.
4985         Suggested by Eric Blake.
4986
4987 2007-09-11  Eric Blake  <ebb9@byu.net>
4988
4989         * ChangeLog: Restore lines accidentally truncated 2007-04-06.
4990
4991 2007-09-10  Bruno Haible  <bruno@clisp.org>
4992
4993         * posix-modules: Fix typo in error message.
4994         Reported by Matt <mkraai@beckman.com>.
4995
4996 2007-09-09  Bruno Haible  <bruno@clisp.org>
4997
4998         * doc/functions/getdelim.texi: Update list of platforms lacking the
4999         function.
5000         * doc/functions/getline.texi: Likewise.
5001
5002 2007-09-09  Jim Meyering  <jim@meyering.net>
5003
5004         * lib/hash.c (hash_initialize): Detect calloc failure.
5005         Reported by Bruno Haible.
5006
5007 2007-09-09  Bruno Haible  <bruno@clisp.org>
5008
5009         * lib/canonicalize-lgpl.c (__realpath): Set errno to ENOMEM when
5010         malloc or realloc fails.
5011
5012 2007-09-09  Bruno Haible  <bruno@clisp.org>
5013
5014         * modules/getcwd (Depends-on): Add malloc-posix.
5015         * modules/glob (Depends-on): Likewise.
5016         * modules/putenv (Depends-on): Likewise.
5017         * modules/strdup (Depends-on): Likewise.
5018         * modules/getdelim (Depends-on): Add realloc-posix.
5019         * modules/read-file (Depends-on): Likewise.
5020
5021 2007-09-09  Bruno Haible  <bruno@clisp.org>
5022
5023         * m4/malloc.m4 (gl_CHECK_MALLOC_POSIX): New macro.
5024         (gl_FUNC_MALLOC_POSIX): Require it.
5025         * m4/realloc.m4 (gl_FUNC_REALLOC_POSIX): Likewise.
5026         * m4/calloc.m4 (gl_FUNC_CALLOC_POSIX): Likewise.
5027         * modules/realloc (Files): Add m4/malloc.m4.
5028         * modules/calloc (Files): Likewise.
5029
5030 2007-09-09  Bruno Haible  <bruno@clisp.org>
5031
5032         * modules/malloc-posix: New file.
5033         * modules/malloc (Depends-on): Add malloc-posix.
5034         * lib/malloc.c: Include errno.h.
5035         (rpl_malloc): Merge the requirements of a glibc-compatible malloc
5036         and a POSIX-compatible malloc into a single function. Set ENOMEM
5037         when returning NULL.
5038         * m4/malloc.m4: New file.
5039         * doc/functions/malloc.texi: Mention the malloc-posix module.
5040         * lib/stdlib_.h (malloc): New declaration.
5041         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize
5042         GNULIB_MALLOC_POSIX and HAVE_MALLOC_POSIX.
5043         * modules/stdlib (stdlib.h): Substitute also GNULIB_MALLOC_POSIX
5044         and HAVE_MALLOC_POSIX.
5045
5046 2007-09-09  Bruno Haible  <bruno@clisp.org>
5047
5048         * modules/realloc-posix: New file.
5049         * modules/realloc (Depends-on): Add realloc-posix.
5050         * lib/realloc.c: Include errno.h.
5051         (rpl_realloc): Merge the requirements of a glibc-compatible realloc
5052         and a POSIX-compatible realloc into a single function. Set ENOMEM
5053         when returning NULL.
5054         * m4/realloc.m4: New file.
5055         * doc/functions/realloc.texi: Mention the realloc-posix module.
5056         * lib/stdlib_.h (realloc): New declaration.
5057         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize
5058         GNULIB_REALLOC_POSIX and HAVE_REALLOC_POSIX.
5059         * modules/stdlib (stdlib.h): Substitute also GNULIB_REALLOC_POSIX
5060         and HAVE_REALLOC_POSIX.
5061
5062 2007-09-09  Bruno Haible  <bruno@clisp.org>
5063
5064         * modules/calloc-posix: New file.
5065         * modules/calloc (Depends-on): Add calloc-posix.
5066         * lib/calloc.c: Include errno.h.
5067         (rpl_calloc): Merge the requirements of a glibc-compatible calloc
5068         and a POSIX-compatible calloc into a single function. Set ENOMEM
5069         when returning NULL.
5070         * m4/calloc.m4 (gl_FUNC_CALLOC_POSIX): New macro.
5071         * doc/functions/calloc.texi: Mention the calloc-posix module.
5072         * lib/stdlib_.h (calloc): New declaration.
5073         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize
5074         GNULIB_CALLOC_POSIX and HAVE_CALLOC_POSIX.
5075         * modules/stdlib (stdlib.h): Substitute also GNULIB_CALLOC_POSIX
5076         and HAVE_CALLOC_POSIX.
5077
5078 2007-09-09  Bruno Haible  <bruno@clisp.org>
5079
5080         Allow for modules to show an arbitrary notice.
5081         * modules/TEMPLATE-EXTENDED: Add 'Notice' field.
5082         * gnulib-tool: New option --extract-notice.
5083         (func_usage): Document it.
5084         (sed_extract_prog): Update.
5085         (func_get_notice): New function.
5086         (func_modules_notice): New function.
5087         (func_import, func_create_testdir): Invoke it.
5088         Suggested by Jim Meyering.
5089
5090 2007-09-09  Bruno Haible  <bruno@clisp.org>
5091
5092         * gnulib-tool: New options --verbose, --quiet.
5093         (func_usage): Document them.
5094         (verbose): New variable.
5095         (func_execute_command): New function.
5096         (func_import): Don't show the module list and the file list if
5097         $verbose < 0.
5098         (func_create_testdir): Likewise. Use func_execute_command.
5099         (func_create_megatestdir): Use func_execute_command.
5100
5101 2007-09-08  Bruno Haible  <bruno@clisp.org>
5102
5103         * gnulib-tool (func_import): Prefer rsync over wget when available,
5104         for fetching the PO files.
5105
5106 2007-09-08  Bruno Haible  <bruno@clisp.org>
5107
5108         * posix-modules: New file. Portions copied from gnulib-tool.
5109         * doc/gnulib.texi (POSIX Substitutes Library): New chapter.
5110
5111 2007-09-08  Jim Meyering  <jim@meyering.net>
5112
5113         Rename __fpending.c -> fpending.c and __fpending.h -> fpending.h
5114         * lib/fpending.h: Rename from __fpending.h.
5115         * lib/fpending.c: Rename from __fpending.c.
5116         Include "fpending.h", not "__fpending.h".
5117         * lib/__fpending.h, lib/__fpending.c: Remove files.
5118         * modules/fpending (Files): Reflect new file names.
5119         * lib/close-stream.c: Include "fpending.h", not "__fpending.h".
5120
5121 2007-09-08  Bruno Haible  <bruno@clisp.org>
5122
5123         * m4/inttypes-h.m4: Remove stub file.
5124
5125 2007-09-07  Simon Josefsson  <simon@josefsson.org>
5126
5127         * doc/headers/stdint.texi: Discuss #include_next issue.
5128
5129 2007-09-06  Paul Eggert  <eggert@cs.ucla.edu>
5130
5131         * build-aux/bootstrap: Remove obsolete comment about wget --help.
5132
5133 2007-09-06  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
5134
5135         * m4/time_h.m4 (gl_CHECK_TYPE_STRUCT_TIMESPEC): Fix misspelling
5136         in variable name.
5137
5138 2007-09-03  Jim Meyering  <jim@meyering.net>
5139
5140         New module: git-version-gen.
5141         * modules/git-version-gen: New file.
5142
5143         Import changes from coreutils for bootstrap script.
5144
5145         * build-aux/bootstrap (WGET_COMMAND): Remove code to set this variable.
5146
5147         bootstrap: uses rsync to download the .po files
5148         * build-aux/bootstrap (po_download_command_format): New global.
5149         (download_po_files): Use rsync.
5150         (update_po_files): Don't remove .po files after download,
5151         so future rsync runs can take advantage of the copies.
5152
5153         * build-aux/bootstrap (gnulib_tool): Make sha1sum check quietly.
5154
5155         Solve the unnecessary-.po-file-regeneration problem once and for all.
5156         * build-aux/bootstrap (download_po_files): New function, renamed from
5157         get_translations.  Now, downloads, but doesn't update LINGUAS.
5158         (update_po_files): New function.
5159
5160         bootstrap: Ignore more.
5161         * build-aux/bootstrap (symlink_to_dir): Add a directory name like
5162         uniwidth to e.g., lib/.gitignore.
5163         (slurp): Handle the sys_stat_.h -> sys mapping, too.
5164
5165         * build-aux/bootstrap: New setting: vc_ignore.
5166         (insert_sorted_if_absent): Create $file if absent.
5167         Adapt to new, possibly empty, list: $vc_ignore.
5168
5169         bootstrap: generate more ignorable names
5170         * build-aux/bootstrap (slurp): When generating ignorable names,
5171         also map .sin to .sed, .gperf to .c, and .y to .c.
5172
5173 2007-09-03  Jim Meyering  <jim@meyering.net>
5174
5175         * build-aux/git-version-gen: New file, from coreutils.  For details, see
5176         http://git.sv.gnu.org/gitweb/?p=coreutils.git;a=commitdiff;h=bfe49f506
5177
5178 2007-09-02  Bruno Haible  <bruno@clisp.org>
5179
5180         Fix mis-recognition of 'mcs' on QNX 6.
5181         * m4/csharpcomp.m4 (gt_CSHARPCOMP): Test whether the "mcs --version"
5182         output contains the string "Mono".
5183         * lib/csharpcomp.c (compile_csharp_using_mono): Likewise.
5184         Reported by <kraai@ftbfs.org> at <https://savannah.gnu.org/bugs/?18337>.
5185
5186 2007-09-01  Bruno Haible  <bruno@clisp.org>
5187
5188         Fix collision between uniwidth/* and linebreak modules.
5189         * lib/linebreak.h (locale_charset, uc_width, u8_width, u16_width,
5190         u32_width): Remove declarations.
5191         * lib/linebreak.c: Include uniwidth.h, uniwidth/cjk.h, streq.h.
5192         (u32_mbtouc_unsafe, streq9, streq8, streq7, streq6, streq5, streq4,
5193         streq3, streq2, streq1, streq0): Remove functions.
5194         (STREQ): Remove macro.
5195         (is_cjk_encoding): Remove function.
5196         (nonspacing_table_data, nonspacing_table_ind): Remove constants.
5197         (uc_width, u8_width, u16_width, u32_width): Remove functions.
5198         * modules/linebreak (Depends-on): Add streq, uniwidth/width.
5199         * NEWS: Document the change.
5200
5201 2007-09-01  Bruno Haible  <bruno@clisp.org>
5202
5203         * lib/streq.h: Add double-inclusion guard.
5204
5205 2007-09-01  Karl Berry  <karl@gnu.org>
5206
5207         * MODULES.html.sh: Rename mreadlink_with_size to areadlink_with_size.
5208
5209 2007-08-28  Jim Meyering  <jim@meyering.net>
5210
5211         Rename mreadlink_with_size to areadlink_with_size.
5212         * NEWS: Document the change.
5213         * lib/mreadlink-with-size.c (mreadlink_with_size): Rename this to...
5214         * lib/areadlink-with-size.c (areadlink_with_size): ...this.
5215         * lib/mreadlink.h: Rename this to...
5216         * lib/areadlink.h: ...this.
5217         * modules/mreadlink-with-size: Rename this to...
5218         * modules/areadlink-with-size: ...this.
5219         * lib/canonicalize.c: Reflect the renaming.
5220         * modules/canonicalize: Likewise.
5221
5222 2007-08-26  Bruno Haible  <bruno@clisp.org>
5223
5224         * gnulib-tool (func_import): When deciding which files to remove,
5225         consider also dangling symbolic links.
5226         Reported by Eric Blake.
5227
5228 2007-08-26  Bruno Haible  <bruno@clisp.org>
5229
5230         * gnulib-tool (func_ln_if_changed): Use "test -h", not "test -L".
5231
5232 2007-08-23  Simon Josefsson  <simon@josefsson.org>
5233
5234         * lib/readline.c: Don't include getline.h, the prototype is now
5235         found in stdio.h.
5236
5237 2007-08-23  Jim Meyering  <jim@meyering.net>
5238
5239         Getdelim touchup.
5240         * lib/getdelim.c (getdelim): Don't bother to save/restore errno
5241         around the funlockfile call, since funlockfile never sets errno.
5242         Don't set errno upon failed realloc.
5243
5244 2007-08-22  Eric Blake  <ebb9@byu.net>
5245
5246         Getline touchups.
5247         * lib/getdelim.c (getdelim): Revert regression that required *n to
5248         be 0 when *lineptr is NULL.  Preserve errno across funlockfile.
5249         * m4/getdelim.m4 (gl_FUNC_GETDELIM): Check for declaration of
5250         getdelim, rather than whether implementation is missing.
5251         * m4/getline.m4 (gl_FUNC_GETLINE): Likewise for getline.
5252         * lib/stdio_.h (getline): Also declare if replacement is
5253         required.
5254         * doc/functions/getdelim.texi: New file.
5255         * doc/functions/getline.texi: Likewise.
5256         * doc/gnulib.texi (Function Substitutes): Add new files.
5257         Reported by Bruno Haible.
5258
5259 2007-08-22  Ludovic Courtès  <ludo@gnu.org>
5260
5261         * users.txt: Add Guile.
5262
5263 2007-08-22  Eric Blake  <ebb9@byu.net>
5264
5265         * tests/test-getdelim.c (main): Use remove, not unlink.
5266         * tests/test-getline.c (main): Likewise.
5267
5268         Move getline and getdelim into stdio.h, per POSIX 200x.
5269         * modules/getline (Files): Remove getline.h.
5270         (Depends-on): Add stdio.
5271         (configure.ac): Add module indicator.
5272         * modules/getdelim (Files): Remove getdelim.h.
5273         (Depends-on): Add stdio.
5274         (configure.ac): Add module indicator.
5275         * modules/stdio (Makefile.am): Work with new indicators.
5276         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Add new defaults.
5277         * m4/getdelim.m4 (gl_FUNC_GETDELIM): Work with stdio needs.
5278         * m4/getline.m4 (gl_FUNC_GETLINE): Likewise.
5279         * lib/getdelim.h: Delete.
5280         * lib/getline.h: Delete.
5281         * lib/stdio_.h (getdelim, getline): Declare.
5282         * modules/getdelim-tests: New module.
5283         * modules/getline-tests: Likewise.
5284         * tests/test-getdelim.c: New file.
5285         * tests/test-getline.c: Likewise.
5286         * NEWS: Document the change.
5287         * lib/getline.c: Update choice of header.
5288         * lib/csharpcomp.c: Likewise.
5289         * lib/getpass.c: Likewise.
5290         * lib/javacomp.c: Likewise.
5291         * lib/javaversion.c: Likewise.
5292         * lib/yesno.c: Likewise.
5293         * lib/getdelim.c: Likewise.
5294         (getdelim): Set errno on failure, and avoid memory leak.
5295
5296 2007-08-19  Bruno Haible  <bruno@clisp.org>
5297
5298         * modules/closein (Depends-on): Add freadahead.
5299         * lib/closein.c: Include freadahead.h.
5300         (close_stdin): Skip the fseeko and fflush calls if freadahead(stdin)
5301         is zero.
5302
5303 2007-08-19  Bruno Haible  <bruno@clisp.org>
5304
5305         * modules/freadahead-tests: New file.
5306         * tests/test-freadahead.sh: New file.
5307         * tests/test-freadahead.c: New file.
5308
5309         * modules/freadahead: New file.
5310         * lib/freadahead.h: New file.
5311         * lib/freadahead.c: New file.
5312         * MODULES.html.sh (File stream based Input/Output): Add freadahead,
5313         fbufmode, fpurge, freadable, fwritable.
5314
5315 2007-08-19  Eric Blake  <ebb9@byu.net>
5316
5317         Test yesno in combination with closein.
5318         * lib/yesno.c (yesno): Document use of stdin.
5319         * modules/yesno-tests (Files): New module.
5320         * tests/test-yesno.c (main): New file.
5321         * tests/test-yesno.sh: Likewise.
5322
5323 2007-08-19  Bruno Haible  <bruno@clisp.org>
5324
5325         * lib/fbufmode.c (fbufmode): Add tentative support for Solaris/AMD64.
5326         * lib/fseeko.c (rpl_fseeko): Likewise.
5327         * lib/fseterr.c (fseterr): Likewise.
5328
5329 2007-08-19  Bruno Haible  <bruno@clisp.org>
5330
5331         * tests/test-lseek.c (main): Disable a test for BeOS.
5332         * doc/functions/lseek.texi: Document the BeOS bug.
5333
5334 2007-08-19  Bruno Haible  <bruno@clisp.org>
5335             Eric Blake  <ebb9@byu.net>
5336
5337         * lib/lseek.c: Include <sys/stat.h>.
5338         (rpl_lseek): Add workaround code also for Unix platforms.
5339         Needed for BeOS.
5340         * m4/lseek.m4 (gl_FUNC_LSEEK): When cross-compiling, fail on BeOS.
5341         * doc/functions/lseek.texi: Document BeOS definiency.
5342
5343 2007-08-18  Bruno Haible  <bruno@clisp.org>
5344
5345         * modules/fstrcmp-tests: New file.
5346         * tests/test-fstrcmp.c: New file.
5347
5348 2007-08-18  Bruno Haible  <bruno@clisp.org>
5349
5350         * modules/fstrcmp: New file, from GNU gettext with modifications.
5351         * lib/fstrcmp.h: New file, from GNU gettext.
5352         * lib/fstrcmp.c: New file, from GNU gettext.
5353         * MODULES.html.sh (String handling): Add fstrcmp.
5354
5355 2007-08-18  Bruno Haible  <bruno@clisp.org>
5356
5357         * lib/diffseq.h (struct context): Change type of 'heuristic' field to
5358         'bool'.
5359         (diag, compareseq): Remove const from the ctxt argument.
5360         (USE_HEURISTIC): Undefine at the end.
5361
5362 2007-08-18  Jim Meyering  <jim@meyering.net>
5363
5364         New file: lib/idcache.h
5365         * NEWS: Mention the addition.
5366         * modules/idcache (Files): Add lib/idcache.h
5367         * lib/idcache.c: Include "idcache.h".
5368         Don't include <sys/types.h>.
5369         Add a FIXME comment.
5370         Move file-scoped "static" declarations to the top.
5371         * lib/idcache.h: New file.  Include <sys/types.h> here, instead.
5372
5373 2007-08-17  Bruno Haible  <bruno@clisp.org>
5374         and Paul Eggert  <eggert@cs.ucla.edu>
5375
5376         * MODULES.html.sh: Add diffseq.
5377         * modules/diffseq: New file.
5378         * lib/diffseq.h: New file, from GNU gettext with a few minor changes,
5379         extracted from GNU gettext's fstrcmp.c and GNU diff's analyze.c.
5380
5381 2007-08-15  Paul Eggert  <eggert@cs.ucla.edu>
5382
5383         Import changes from coreutils for bootstrap script.
5384
5385         2007-07-21  Paul Eggert  <eggert@cs.ucla.edu>
5386
5387         * build-aux/bootstrap (slurp): Work even in environments where
5388         "ls" defaults to "ls -A".  Put in a FIXME, though, since the
5389         current code does not slurp files whose names start with ".", and
5390         this looks like it might be a troublesome area.
5391
5392         2007-07-11  Jim Meyering  <jim@meyering.net>
5393
5394         If there's a GPL vN copyright comment, require that N == 3.
5395
5396         2007-07-08  Jim Meyering  <jim@meyering.net>
5397
5398         Run the coreutils-specific code only if tests/Makefile.am.in exists.
5399         * build-aux/bootstrap (mam_template): Move definition out of loop.
5400
5401         Create symlinks for gl/{lib,m4}/*, just as for gnulib/{lib,m4}/*.
5402
5403         * build-aux/bootstrap (symlink_to_dir): Rename function from
5404         symlink_to_gnulib.  Add a directory parameter.  Update all
5405         callers.
5406         (cp_mark_as_generated): Also check for -- and link to -- files in
5407         gl/.
5408
5409         2007-07-08  Jim Meyering  <jim@meyering.net>
5410
5411         Adapt to deeper hierarchy in gnulib.
5412         * build-aux/bootstrap (symlink_to_dir): If the destination
5413         directory doesn't exist, create it. This is required at least for
5414         "lib/uniwidth/cjk.h".
5415
5416         2007-05-15  Jim Meyering  <jim@meyering.net>
5417
5418         * build-aux/bootstrap: Now that generated Makefile.am files
5419         are no longer under version control, they must be created at
5420         bootstrap time.
5421
5422 2007-08-14  Ben Pfaff  <blp@gnu.org>
5423
5424         * lib/count-one-bits.h: Add comments.  From Bruno Haible.
5425
5426 2007-08-14  Paul Eggert  <eggert@cs.ucla.edu>
5427
5428         * lib/count-one-bits.h: Don't include <limits.h>; no longer needed
5429         given the changes below.
5430         (COUNT_ONE_BITS): Use 'verify' rather than 'verify_true'.  Work
5431         even on hosts that have padding bits beyond the supported 64.
5432
5433 2007-08-10  Paul Eggert  <eggert@cs.ucla.edu>
5434
5435         * NEWS: In xstrtol, remove STRTOL_FATAL_ERROR and add xstrtol_fatal.
5436         * lib/xstrtol.h: Don't include exitfail.h; that's now internal to
5437         xstrtol.c.  Include getopt.h, since xstrtol_fatal's signature
5438         depends on it.
5439         (xstrtol_error): Remove.
5440         (xstrtol_fatal): New decl, replacing the functionality of xstrtol_error
5441         but with a different signature.
5442         (ATTRIBUTE_NORETURN, __attribute__): New macros.
5443         * lib/xstrtol-error.c: Include exitfail.h.
5444         (xstrtol_fatal): New function, with a different signature from the
5445         old xstrtol_error, so that the caller need not worry about passing
5446         in an exit status, or about storage management of the option argument.
5447         (xstrtol_error): Now a static function.  Redo signature to
5448         implement xstrtol_fatal.  Output the correct number of hyphens in
5449         front of the option so that the caller need not worry about
5450         storage management.
5451         (N_): New macro.
5452         (_): Remove; not used now.
5453         * modules/xstrtol: Depend on getopt.
5454         * tests/test-xstrtol.c (main): Use new xstrtol_error function instead
5455         of old STRTOL_FATAL_ERROR macro.
5456         * tests/test-xstrtol.sh (t-xstrtol.xo): Adjust to match new behavior
5457         of test program.
5458         * tests/test-xstrtoimax.sh (t-xstrtoimax.xo): Likewise.
5459         * tests/test-xstrtoumax.sh (t-xstrtoumax.xo): Likewise.
5460
5461 2007-08-08  Eric Blake  <ebb9@byu.net>
5462
5463         * lib/xstrtol-error.c: Add missing include.
5464
5465         Move xstrtol messages into gnulib domain, when --pobase is used.
5466         * lib/xstrtol.h (_STRTOL_ERROR): Move messages out of macro...
5467         * lib/xstrtol-error.c (xstrtol_error): ...into new file.
5468         * modules/xstrtol (Files): Distribute new file.
5469         * m4/xstrtol.m4 (gl_XSTRTOL): Build new file.
5470         * lib/xstrtol.c (TESTING_XSTRTO): Move tests...
5471         * tests/test-xstrtol.c: ...into new file.
5472         * tests/test-xstrtoul.c: Also test xstrtoul.
5473         * tests/test-xstrtoimax.c: Also test xstrtoimax.
5474         * tests/test-xstrtoumax.c: Also test xstrtoumax.
5475         * tests/test-xstrtol.sh: Drive the tests.
5476         * tests/test-xstrtoimax.sh: Likewise.
5477         * tests/test-xstrtoumax.sh: Likewise.
5478         * modules/xstrtol-tests: New module.
5479         * modules/xstrtoimax-tests: Likewise.
5480         * modules/xstrtoumax-tests: Likewise.
5481
5482 2007-08-08  Jim Meyering  <jim@meyering.net>
5483
5484         New function: mfile_name_concat.
5485         * lib/filenamecat.c (mfile_name_concat): New function, just like
5486         file_name_concat, but return NULL upon failure rather than exiting
5487         with a diagnostic.
5488         * lib/filenamecat.h: Declare it.
5489
5490 2007-08-07  Bruno Haible  <bruno@clisp.org>
5491
5492         * m4/inttypes.m4 (gl_INTTYPES_H): Use GL_TRIGGER_STDC_LIMIT_MACROS
5493         instead of __STDC_LIMIT_MACROS_TRIGGER. This avoids a redefinition
5494         warning from gcc.
5495         Reported by Eric Blake.
5496
5497 2007-08-07  Simon Josefsson  <simon@josefsson.org>
5498
5499         * modules/crypto/arctwo (License): Use the synonymous term "LGPLv2+".
5500         * modules/crypto/arcfour (License): Likewise.
5501         * modules/crypto/des-tests (License): Likewise.
5502         * modules/crypto/gc-arctwo-tests (License): Likewise.
5503         * modules/crypto/gc-des-tests (License): Likewise.
5504         * modules/crypto/gc-hmac-md5-tests (License): Likewise.
5505         * modules/crypto/gc-hmac-sha1-tests (License): Likewise.
5506         * modules/crypto/gc-md2-tests (License): Likewise.
5507         * modules/crypto/gc-md4-tests (License): Likewise.
5508         * modules/crypto/gc-md5-tests (License): Likewise.
5509         * modules/crypto/gc-pbkdf2-sha1-tests (License): Likewise.
5510         * modules/crypto/gc-rijndael-tests (License): Likewise.
5511         * modules/crypto/gc-sha1-tests (License): Likewise.
5512         * modules/crypto/gc-tests (License): Likewise.
5513         * modules/crypto/hmac-md5 (License): Likewise.
5514         * modules/crypto/hmac-sha1 (License): Likewise.
5515         * modules/crypto/md2-tests (License): Likewise.
5516         * modules/crypto/md4-tests (License): Likewise.
5517         * modules/crypto/md5 (License): Likewise.
5518         * modules/crypto/rijndael (License): Likewise.
5519         * modules/crypto/sha1 (License): Likewise.
5520         * modules/memxor (License): Likewise.
5521
5522 2007-08-06  Paul Eggert  <eggert@cs.ucla.edu>
5523         and Bruno Haible  <bruno@clisp.org>
5524
5525         * NEWS: Describe interface changes to human, xstrtol.
5526         * lib/human.h: Include <xstrtol.h>.
5527         (human_options): Return enum strtol_error, not int.  Remove
5528         bool arg; take int * instead.
5529         * lib/human.c: Don't include "gettext.h".
5530         (_): Remove; no longer used.
5531         Don't include <xstrtol.h>, since human.h does it.
5532         (human_options): Adjust to abovementioned interface changes.
5533         Do not report error to stderr; that's now the caller's
5534         responsibility.
5535         * lib/xstrtol.c (main) [defined TESTING_XSTRTO]: Adjust to
5536         interface change.
5537         * lib/xstrtol.h (_STRTOL_ERROR): Take Option, Arg rather than
5538         Str, Argument_type_string.  All uses changed.  Put " argument"
5539         in diagnostics to make them clearer.  Change wording of suffix
5540         message for clarity.
5541         (STRTOL_FATAL_ERROR): Take Option, Arg rather than Str,
5542         Argument_type_string.
5543         (STRTOL_FATAL_WARN): Remove; no longer used.
5544         * modules/human (Depends-on): Remove gettext-h.
5545
5546 2007-08-06  Simon Josefsson  <simon@josefsson.org>
5547
5548         * build-aux/maint.mk, build-aux/GNUmakefile: Relicense to GPLv3+.
5549
5550 2007-07-31  Bruno Haible  <bruno@clisp.org>
5551
5552         * m4/stdint.m4 (gl_STDINT_H): Test whether WCHAR_MIN and WCHAR_MAX
5553         are defined by <stdint.h> (as opposed to <wchar.h>, as on Dragonfly).
5554         Reported by Joerg Sonnenberger <joerg@britannica.bec.de>.
5555
5556 2007-07-31  Bruno Haible  <bruno@clisp.org>
5557
5558         * lib/fflush.c (rpl_fflush): On BSD systems, use the __SNPT flag.
5559         Suggested by Joerg Sonnenberger <joerg@britannica.bec.de>.
5560
5561 2007-07-30  Bruno Haible  <bruno@clisp.org>
5562
5563         * modules/base64 (License): Use the synonymous term "LGPLv2+".
5564         * modules/c-ctype (License): Likewise.
5565         * modules/c-strcase (License): Likewise.
5566         * modules/check-version (License): Likewise.
5567         * modules/iconv (License): Likewise.
5568         * modules/iconv_open (License): Likewise.
5569         * modules/read-file (License): Likewise.
5570         * modules/striconv (License): Likewise.
5571         * modules/strverscmp (License): Likewise.
5572         * modules/vasprintf (License): Likewise.
5573         * modules/crypto/des (License): Likewise.
5574         * modules/crypto/gc (License): Likewise.
5575         * modules/crypto/gc-arcfour (License): Likewise.
5576         * modules/crypto/gc-arctwo (License): Likewise.
5577         * modules/crypto/gc-des (License): Likewise.
5578         * modules/crypto/gc-hmac-md5 (License): Likewise.
5579         * modules/crypto/gc-hmac-sha1 (License): Likewise.
5580         * modules/crypto/gc-md2 (License): Likewise.
5581         * modules/crypto/gc-md4 (License): Likewise.
5582         * modules/crypto/gc-md5 (License): Likewise.
5583         * modules/crypto/gc-pbkdf2-sha1 (License): Likewise.
5584         * modules/crypto/gc-random (License): Likewise.
5585         * modules/crypto/gc-rijndael (License): Likewise.
5586         * modules/crypto/gc-sha1 (License): Likewise.
5587         * modules/crypto/md2 (License): Likewise.
5588         * modules/crypto/md4 (License): Likewise.
5589
5590 2007-07-30  Jim Meyering  <jim@meyering.net>
5591
5592         * lib/fts.c (fts_read): Upon failure to chdir into a subdirectory,
5593         set fts_info to FTS_DNR, not to FTS_ERR, so that the caller knows
5594         it has valid stat data.  This bug would cause du not to count the
5595         sizes of inaccessible directories.
5596         Patch by Bryan Mason <bmason@redhat.com>, via Jose Maria Plans
5597         in <http://bugzilla.redhat.com/250077>.
5598
5599 2007-07-25  Peter O'Gorman  <peter@pogma.com>
5600             Bruno Haible  <bruno@clisp.org>
5601
5602         * m4/include_next.m4 (gl_INCLUDE_NEXT): Test whether #include_next
5603         really works. Needed because AIX 4.3 "xlc -E" doesn't understand
5604         #include_next, gives a diagnostic about it, but reports no error in
5605         the exit code.
5606         Reported by Gary V. Vaughan <gary@thewrittenword.com>.
5607
5608 2007-07-24  Ben Pfaff  <blp@gnu.org>
5609
5610         Improve name: "count-one-bits" is better than "popcount".
5611         * MODULES.html.sh: Update name.
5612         * lib/popcount.h: Renamed lib/count-one-bits.h.
5613         (popcount): Renamed count_one_bits.
5614         (popcountl): Renamed count_one_bits_l.
5615         (popcountll): Renamed count_one_bits_ll.
5616         * m4/popcount.m4: Renamed m4/count-one-bits.m4.
5617         * modules/popcount: Renamed module/count-one-bits.
5618         * modules/popcount-tests: Renamed module/count-one-bits-tests.
5619         * tests/test-popcount.c: Renamed tests/test-count-one-bits.c.
5620
5621 2007-07-23  Ben Pfaff  <blp@gnu.org>
5622
5623         * lib/popcount.h (popcount32): Reduce size of constants, to allow
5624         better code generation, and add U to large constants to avoid
5625         warnings, in non-GCC case.
5626         Suggested by Bruno Haible.
5627
5628 2007-07-23  Ben Pfaff  <blp@gnu.org>
5629
5630         * lib/popcount.h: Use verify_true instead of if...abort.
5631         * modules/popcount: Depend on verify module.
5632         Suggested by Jim Meyering.
5633
5634 2007-07-23  Bruno Haible  <bruno@clisp.org>
5635
5636         * gnulib-tool (func_import): Create a .cvsignore file also when the
5637         directory is not yet in CVS but the toplevel directory is. When
5638         creating a .cvsignore file, add ".deps" and ".dirstamp" to it.
5639         Reported by Karl Berry.
5640
5641 2007-07-22  Ben Pfaff  <blp@gnu.org>
5642
5643         * lib/popcount.h: Use faster, branchless algorithm for non-GCC
5644         case.
5645         Suggested by Eric Blake.
5646
5647 2007-07-22  Ben Pfaff  <blp@gnu.org>
5648
5649         New module: popcount.
5650         * MODULES.html.sh: Add popcount.
5651         * modules/popcount: New file.
5652         * modules/popcount-tests: New file.
5653         * tests/test-popcount.c: New file.
5654         * lib/popcount.h: New file.
5655         * m4/popcount.m4: New file.
5656
5657 2007-07-22  Paul Eggert  <eggert@cs.ucla.edu>
5658
5659         * build-aux/announce-gen: Update to GPLv3.
5660
5661         * build-aux/config.guess: Update from config.
5662
5663 2007-07-21  Bruno Haible  <bruno@clisp.org>
5664
5665         * lib/error.c (_) [ENABLE_NLS]: Define to gettext.
5666         * lib/verror.c (_) [ENABLE_NLS]: Likewise.
5667
5668 2007-07-20  Jim Meyering  <jim@meyering.net>
5669
5670         * check-module: Diagnose a self-dependency.
5671
5672 2007-07-19  Bruno Haible  <bruno@clisp.org>
5673
5674         * gnulib-tool (func_import): Don't abort if pobase or po_domain is
5675         empty.
5676         Reported by Eric Blake.
5677
5678 2007-07-18  Bruno Haible  <bruno@clisp.org>
5679
5680         * gnulib-tool: New options --po-base, --po-domain.
5681         (func_usage): Document them.
5682         (pobase, po_domain): New variables.
5683         (func_emit_lib_Makefile_am): Augment AM_CPPFLAGS, defining
5684         DEFAULT_TEXT_DOMAIN.
5685         (func_emit_po_Makevars, func_emit_po_POTFILES_in): New functions.
5686         (func_import): Consider pobase and po_domain. Create a po/ directory.
5687         (func_create_testdir): Set pobase and po_domain to empty.
5688         * build-aux/po/Makefile.in.in: New file, from GNU gettext 0.16.1.
5689         * build-aux/po/remove-potcdate.sin: New file, from GNU gettext 0.16.1.
5690
5691 2007-07-18  Bruno Haible  <bruno@clisp.org>
5692
5693         * gnulib-tool (func_get_automake_snippet): Synthesize also an
5694         EXTRA_DIST augmentation for files in build-aux/.
5695
5696 2007-07-16  Bruno Haible  <bruno@clisp.org>
5697
5698         * modules/lseek (License): Use the synonymous term "LGPLv2+".
5699         * modules/getdelim (License): Likewise.
5700
5701 2007-07-16  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
5702
5703         * modules/arpa_inet (License): Use the synonymous term LGPLv2+.
5704         * modules/d-type (License): Likewise.
5705         * modules/extensions (License): Likewise.
5706         * modules/fnmatch (License): Likewise.
5707         * modules/fseeko (License): Likewise.
5708         * modules/getaddrinfo (License): Likewise.
5709         * modules/getline (License): Likewise.
5710         * modules/getlogin_r (License): Likewise.
5711         * modules/getpass (License): Likewise.
5712         * modules/gettimeofday (License): Likewise.
5713         * modules/glob (License): Likewise.
5714         * modules/inet_ntop (License): Likewise.
5715         * modules/malloc (License): Likewise.
5716         * modules/malloca (License): Likewise.
5717         * modules/memmem (License): Likewise.
5718         * modules/mempcpy (License): Likewise.
5719         * modules/memset (License): Likewise.
5720         * modules/minmax (License): Likewise.
5721         * modules/mktime (License): Likewise.
5722         * modules/netinet_in (License): Likewise.
5723         * modules/pathmax (License): Likewise.
5724         * modules/poll (License): Likewise.
5725         * modules/regex (License): Likewise.
5726         * modules/snprintf (License): Likewise.
5727         * modules/stdbool (License): Likewise.
5728         * modules/stdint (License): Likewise.
5729         * modules/stdio (License): Likewise.
5730         * modules/strcase (License): Likewise.
5731         * modules/strcasestr (License): Likewise.
5732         * modules/strdup (License): Likewise.
5733         * modules/string (License): Likewise.
5734         * modules/strndup (License): Likewise.
5735         * modules/strnlen (License): Likewise.
5736         * modules/strpbrk (License): Likewise.
5737         * modules/strptime (License): Likewise.
5738         * modules/strsep (License): Likewise.
5739         * modules/sys_select (License): Likewise.
5740         * modules/sys_socket (License): Likewise.
5741         * modules/sys_stat (License): Likewise.
5742         * modules/sys_time (License): Likewise.
5743         * modules/time (License): Likewise.
5744         * modules/time_r (License): Likewise.
5745         * modules/timegm (License): Likewise.
5746         * modules/unistd (License): Likewise.
5747         * modules/vsnprintf (License): Likewise.
5748         * modules/wctype (License): Likewise.
5749
5750 2007-07-16  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5751
5752         * modules/argz (License): LGPLv2+.
5753
5754 2007-07-15  Karl Berry  <karl@gnu.org>
5755
5756         * doc/gnulib.texi: revise node structure per new fdl.texi.
5757
5758 2007-07-14  Bruno Haible  <bruno@clisp.org>
5759
5760         * lib/uniname/gen-uninames.lisp (main): Emit a "do not edit" line to
5761         the output file.
5762         * lib/uniname/uninames.h: Regenerated.
5763
5764 2007-07-14  Karl Berry  <karl@gnu.org>
5765
5766         * doc/*gpl*.texi, doc/fdl.texi: new versions, consistently
5767         omitting sectioning and index commands.
5768
5769 2007-07-13  Bruno Haible  <bruno@clisp.org>
5770
5771         New gnulib-tool option --more-symlinks.
5772         * gnulib-tool (func_usage): Document --more-symlinks.
5773         (do_copyrights): New variable.
5774         Recognize option --more-symlinks.
5775         (func_import): Don't add a copyright notice transform to
5776         sed_transform_lib_file if do_copyrights is empty.
5777
5778 2007-07-13  Bruno Haible  <bruno@clisp.org>
5779
5780         * lib/vasnprintf.c (decimal_point_char): Define also if
5781         (NEED_PRINTF_LONG_DOUBLE || NEED_PRINTF_INFINITE_DOUBLE)
5782         && !NEED_PRINTF_DIRECTIVE_A.
5783         Reported by Clemens Koller <clemens.koller@anagramm.de> via
5784         Gary V. Vaughan <gary@gnu.org>.
5785
5786 2007-07-13  Paul Eggert  <eggert@cs.ucla.edu>
5787
5788         * lib/inttypes_.h: Undo previous change, since it was fixed
5789         in a different way in the 2007-07-02 fix to m4/inttypes.m4.
5790
5791 2007-07-13  Bruno Haible  <bruno@clisp.org>
5792
5793         * lib/stdint_.h: Fix typo: _GL_JUST_INCLUDE_SYSTEM_INTTYPES_H was
5794         misspelled as _GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H.
5795
5796 2007-07-13  Jim Meyering  <jim@meyering.net>
5797
5798         df: Don't fail for Tru64's "file-on-file mount".
5799         * m4/fsusage.m4 (gl_FSUSAGE): Reject Tru64's buggy statvfs,
5800         so we fall through and use statfs instead.  Details here:
5801         <http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/10878>
5802         Reported by Albert Chin.
5803
5804 2007-07-13  Bruno Haible  <bruno@clisp.org>
5805
5806         * modules/alloca-opt (License): Use the synonymous term "LGPLv2+".
5807         * modules/configmake (License): Likewise.
5808         * modules/gettext (License): Likewise.
5809         * modules/gettext-h (License): Likewise.
5810         * modules/include_next (License): Likewise.
5811         * modules/link-warning (License): Likewise.
5812         * modules/localcharset (License): Likewise.
5813         * modules/localename (License): Likewise.
5814         * modules/lock (License): Likewise.
5815         * modules/relocatable-lib-lgpl (License): Likewise.
5816         * modules/size_max (License): Likewise.
5817         * modules/vasnprintf (License): Likewise.
5818         * modules/wchar (License): Likewise.
5819         * modules/xsize (License): Likewise.
5820
5821 2007-07-13  Bruno Haible  <bruno@clisp.org>
5822
5823         * gnulib-tool (func_import): Treat LGPLv2 as synonymous to LGPL.
5824         (func_create_testdir): Handle copying terms "GPLv2+" and "LGPLv2+".
5825
5826 2007-07-12  Bruno Haible  <bruno@clisp.org>
5827
5828         * doc/gnulib-intro.texi (Copyright): Clarify the license abbreviations
5829         in the modules files.
5830
5831 2007-07-11  Karl Berry  <karl@gnu.org>
5832
5833         * MODULES.html.sh (func_module): use
5834          sed -e '\|^'"${includefile}"'$|d'
5835          instead of /.../d, to avoid errors on $includefile's containing /.
5836
5837 2007-07-10  Sergey Poznyakoff  <gray@gnu.org.ua>
5838
5839         * gnulib-tool (func_import): Avoid duplication of --avoid
5840         statements
5841         (func_dest_tmpfilename,func_create_testdir): Translate `-' in file
5842         names to `_' in variable names.
5843
5844 2007-07-10  Eric Blake  <ebb9@byu.net>
5845
5846         * lib/version-etc.c (version_etc_va): Default to GPLv3+.
5847         * NEWS: Document this change.
5848
5849 2007-07-08  Bruno Haible  <bruno@clisp.org>
5850
5851         Update to Unicode 5.0.
5852         * lib/uniwidth/width.c (nonspacing_table_data): Add U+00AD,
5853         U+0350..U+035F, U+05A2, U+05BA, U+05C5, U+05C7, U+0600..U+0603,
5854         U+0610..U+0615, U+0656..U+065E, U+07EB..U+07F3, U+0A01, U+0AE2..U+0AE3,
5855         U+0CBC. Remove U+0CBF, U+0CC6. Add U+0CE2..U+0CE3, U+135F,
5856         U+17B4..U+17B5, U+17DD. Remove U+180E. Add U+1920..U+1922,
5857         U+1927..U+192B, U+1932, U+1939..U+193B, U+1A17..U+1A18, U+1B00..U+1B03,
5858         U+1B34, U+1B36..U+1B3A, U+1B3C, U+1B42, U+1B6B..U+1B73, U+1DC0..U+1DCA,
5859         U+1DFE..U+1DFF, U+20EB..U+20EF, U+A802, U+A806, U+A80B, U+A825..U+A826,
5860         U+10A01..U+10A03, U+10A05..U+10A06, U+10A0C..U+10A0F, U+10A38..U+10A3A,
5861         U+10A3F, U+1D242..U+1D244.
5862         (nonspacing_table_ind): Update.
5863         (uc_width): Assign width 0 to U+E0100..U+E01EF. Assign width 1 to
5864         U+4DC0..U+4DFF. Assign width 2 to U+2329..U+232A, U+FE10..U+FE1F.
5865
5866 2007-07-08  Bruno Haible  <bruno@clisp.org>
5867
5868         Update to Unicode 5.0.
5869         * lib/uniname/gen-uninames.lisp (main): Add the range 0x12xxx to the
5870         code transform. Extend the name index field of unicode_name_to_code and
5871         unicode_code_to_name from 16 to 24 bits.
5872         * lib/uniname/uniname.c (unicode_character_name,
5873         unicode_name_character): Add the range 0x12xxx to the code transform.
5874         * lib/uniname/uninames.h: Regenerated.
5875         * tests/uniname/UnicodeDataNames.txt: Update to Unicode 5.0.
5876
5877 2007-07-07  Bruno Haible  <bruno@clisp.org>
5878
5879         * modules/wcwidth-tests: New file.
5880         * tests/test-wcwidth.c: New file.
5881
5882         Work around MacOS X wcwidth() bug.
5883         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Test against MacOS X 10.3 bug.
5884         * lib/wcwidth.c: Include localcharset.h, streq.h, uniwidth.h.
5885         (rpl_wcwidth): Special-case the UTF-8 locales. Fall back to the
5886         original wcwidth in non-UTF-8 locales.
5887         * modules/wcwidth (Depends-on): Add localcharset, streq,
5888         uniwidth/width.
5889         * doc/functions/wcwidth.texi: Update.
5890
5891 2007-07-07  Bruno Haible  <bruno@clisp.org>
5892
5893         * lib/wchar_.h: Include the GL_LINK_WARNING macro.
5894         (wcwidth): New declaration.
5895         * m4/wchar.m4 (gl_WCHAR_MODULE_INDICATOR, gl_WCHAR_H_DEFAULTS): New
5896         macros.
5897         (gl_WCHAR_H): Require gl_WCHAR_H_DEFAULTS. Don't set WCHAR_H to empty
5898         here. Prepare for creating <wchar.h> unconditionally.
5899         * modules/wchar (Depends-on): Add link-warning.
5900         (Makefile.am): Substitute also GNULIB_WCWIDTH, HAVE_DECL_WCWIDTH,
5901         REPLACE_WCWIDTH, and GL_LINK_WARNING.
5902         * lib/wcwidth.h: Remove file.
5903         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Require gl_WCHAR_H_DEFAULTS. Set
5904         HAVE_DECL_WCWIDTH, REPLACE_WCWIDTH, WCHAR_H.
5905         * modules/wcwidth (Files): Remove lib/wcwidth.h.
5906         (configure.ac): Invoke gl_WCHAR_MODULE_INDICATOR.
5907         (Include): Replace wcwidth.h with <wchar.h>.
5908         * lib/wcwidth.c: Include <wchar.h> instead of wcwidth.h.
5909         * lib/mbchar.h: Don't include wcwidth.h.
5910         * lib/mbswidth.c: Likewise.
5911         * NEWS: Mention the change.
5912
5913 2007-07-07  Bruno Haible  <bruno@clisp.org>
5914
5915         * lib/wcwidth.c: New file, extracted from lib/wcwidth.h.
5916         * lib/wcwidth.h: Don't include wctype.h. Replace inline function
5917         definition with an external declaration.
5918         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Use wcwidth.c when wcwidth is not
5919         defined as a function. Remove AC_C_INLINE requirement.
5920         * modules/wcwidth (Files): Add lib/wcwidth.c.
5921         (Makefile.am): Remove redundant statement.
5922
5923 2007-07-07  Bruno Haible  <bruno@clisp.org>
5924
5925         * MODULES.html.sh (Unicode string functions): Add the new modules.
5926
5927         * tests/uniwidth/test-u32-strwidth.c: New file.
5928         * modules/uniwidth/u32-strwidth-tests: New file.
5929
5930         * lib/uniwidth/u32-strwidth.c: New file.
5931         * modules/uniwidth/u32-strwidth: New file.
5932
5933         * tests/uniwidth/test-u16-strwidth.c: New file.
5934         * modules/uniwidth/u16-strwidth-tests: New file.
5935
5936         * lib/uniwidth/u16-strwidth.c: New file.
5937         * modules/uniwidth/u16-strwidth: New file.
5938
5939         * tests/uniwidth/test-u8-strwidth.c: New file.
5940         * modules/uniwidth/u8-strwidth-tests: New file.
5941
5942         * lib/uniwidth/u8-strwidth.c: New file.
5943         * modules/uniwidth/u8-strwidth: New file.
5944
5945         * tests/uniwidth/test-u32-width.c: New file.
5946         * modules/uniwidth/u32-width-tests: New file.
5947
5948         * lib/uniwidth/u32-width.c: New file.
5949         * modules/uniwidth/u32-width: New file.
5950
5951         * tests/uniwidth/test-u16-width.c: New file.
5952         * modules/uniwidth/u16-width-tests: New file.
5953
5954         * lib/uniwidth/u16-width.c: New file.
5955         * modules/uniwidth/u16-width: New file.
5956
5957         * tests/uniwidth/test-u8-width.c: New file.
5958         * modules/uniwidth/u8-width-tests: New file.
5959
5960         * lib/uniwidth/u8-width.c: New file.
5961         * modules/uniwidth/u8-width: New file.
5962
5963         * tests/uniwidth/test-uc_width.c: New file.
5964         * modules/uniwidth/width-tests: New file.
5965
5966         * lib/uniwidth/width.c: New file, from GNU libiconv.
5967         * lib/uniwidth/cjk.h: New file, from GNU libiconv.
5968         * modules/uniwidth/width: New file.
5969
5970         * lib/uniwidth.h: New file, from GNU libiconv.
5971         * modules/uniwidth/base: New file.
5972
5973 2007-07-07  Bruno Haible  <bruno@clisp.org>
5974
5975         * lib/uniname.h: New file, from GNU gettext.
5976         * lib/uniname/gen-uninames.lisp: New file, from GNU gettext.
5977         * lib/uniname/uninames.h: New file, from GNU gettext.
5978         * lib/uniname/uniname.c: New file, from GNU gettext.
5979         * tests/uniname/test-uninames.sh: New file.
5980         * tests/uniname/test-uninames.c: New file, from GNU gettext.
5981         * tests/uniname/UnicodeDataNames.txt: New file, from GNU gettext.
5982         * modules/uniname/base: New file.
5983         * modules/uniname/uniname: New file.
5984         * modules/uniname/uniname-tests: New file.
5985         * MODULES.html.sh (Unicode string functions): Add the new modules.
5986
5987 2007-07-06  Bruno Haible  <bruno@clisp.org>
5988
5989         * doc/Makefile (TEXI2HTML): Specify a --reference-limit.
5990
5991 2007-07-06  Bruno Haible  <bruno@clisp.org>
5992
5993         * lib/sys_time_.h: Use a recursion-safe inclusion guard rather than
5994         a split double-inclusion guard. Needed for cygwin, where <sys/time.h>
5995         includes <cygwin/sys_time.h> which includes <sys/select.h> which
5996         include <sys/time.h>.
5997         Reported by Eric Blake.
5998
5999 2007-07-06  Eric Blake  <ebb9@byu.net>
6000
6001         Fix testing canonicalize on cygwin.
6002         * modules/canonicalize-lgpl-tests (test_canonicalize_lgpl_LDADD):
6003         Revert patch from 2007-06-19.
6004         * tests/test-canonicalize-lgpl.c (main): Instead, skip test when
6005         canonicalize module is also in use.
6006         * tests/test-canonicalize.c: New file.
6007         * tests/test-canonicalize.sh: Likewise.
6008         * modules/canonicalize-tests: Likewise.
6009
6010 2007-07-06  Jim Meyering  <jim@meyering.net>
6011
6012         * lib/getugroups.c (getugroups): Detect getgrent failure.
6013         Adjust comment to reflect reality: this function may return -1.
6014
6015 2007-07-05  Sergey Poznyakoff  <gray@gnu.org.ua>
6016
6017         * build-aux/bootstrap (TP_URL,get_translations): Update to use
6018         the new TP address.
6019         (usage): Fix typo
6020         (gnulib_mk): New variable.
6021
6022 2007-07-05  Jim Meyering  <jim@meyering.net>
6023
6024         Don't let endgrent clobber errno, no matter how improbable.
6025         * lib/getugroups.c (getugroups): Save and restore errno around
6026         endgrent call.
6027
6028         Close the group DB even when failing with 2^31 or more members.
6029         * lib/getugroups.c (getugroups): Don't return without calling endgrent.
6030
6031 2007-07-04  Jim Meyering  <jim@meyering.net>
6032
6033         * lib/getugroups.h: New file.
6034         * lib/getugroups.c: Include "getugroups.h".
6035         Remove uses of "register" keyword.
6036         Move local variable, "cp", down into scope where used.
6037         Give "username" parameter the "const" attribute.
6038         * modules/getugroups (Files): Add lib/getugroups.h
6039
6040 2007-07-04  Karl Berry  <karl@gnu.org>
6041
6042         * MODULES.html.sh (func_all_modules): Complete rename of
6043         gpl/lgpl to gpl-2.0 and lgpl-2.1, and add gpl-3.0.
6044
6045 2007-07-02  Bruno Haible  <bruno@clisp.org>
6046
6047         * m4/inttypes.m4 (gl_INTTYPES_H): Define __STDC_LIMIT_MACROS in C++
6048         mode, when inttypes.h comes from gnulib.
6049         Reported by Joel E. Denny <jdenny@ces.clemson.edu>.
6050
6051 2007-07-02  Simon Josefsson  <simon@josefsson.org>
6052
6053         * NEWS: Mention lgpl module name change.
6054
6055         * modules/lgpl-2.1: Renamed from lgpl.
6056
6057         * NEWS: Mention gpl module name change.
6058
6059         * modules/gpl-3.0: New file, based on gpl-2.0.
6060
6061         * modules/gpl-2.0: Renamed from gpl.
6062
6063         * modules/gpl: Fix filename, doc/gpl.texi is now found at
6064         doc/gpl-2.0.texi.
6065
6066 2007-07-02  Paul Eggert  <eggert@cs.ucla.edu>
6067
6068         * lib/inttypes_.h [defined __cplusplus&&!defined __STDC_LIMIT_MACROS]:
6069         #define __STDC_LIMIT_MACROS temporarily while including
6070         <stdint.h>, so that __STDC_LIMIT_MACROS is defined.
6071         Problem reported by Joel E. Denny in
6072         <http://lists.gnu.org/archive/html/bug-gnulib/2007-07/msg00008.html>.
6073
6074 2007-07-01  Bruno Haible  <bruno@clisp.org>
6075
6076         * lib/unistdio.h: New file.
6077         * lib/unistdio/u-asnprintf.h: New file.
6078         * lib/unistdio/u-asprintf.h: New file.
6079         * lib/unistdio/u-printf-args.c: New file.
6080         * lib/unistdio/u-printf-args.h: New file.
6081         * lib/unistdio/u-printf-parse.h: New file.
6082         * lib/unistdio/u-snprintf.h: New file.
6083         * lib/unistdio/u-sprintf.h: New file.
6084         * lib/unistdio/u-vasprintf.h: New file.
6085         * lib/unistdio/u-vsnprintf.h: New file.
6086         * lib/unistdio/u-vsprintf.h: New file.
6087         * lib/unistdio/ulc-asnprintf.c: New file.
6088         * lib/unistdio/ulc-asprintf.c: New file.
6089         * lib/unistdio/ulc-fprintf.c: New file, based on lib/fprintf.c.
6090         * lib/unistdio/ulc-printf-parse.c: New file.
6091         * lib/unistdio/ulc-snprintf.c: New file.
6092         * lib/unistdio/ulc-sprintf.c: New file.
6093         * lib/unistdio/ulc-vasnprintf.c: New file.
6094         * lib/unistdio/ulc-vasprintf.c: New file.
6095         * lib/unistdio/ulc-vfprintf.c: New file, based on lib/vfprintf.c.
6096         * lib/unistdio/ulc-vsnprintf.c: New file.
6097         * lib/unistdio/ulc-vsprintf.c: New file.
6098         * lib/unistdio/u8-asnprintf.c: New file.
6099         * lib/unistdio/u8-asprintf.c: New file.
6100         * lib/unistdio/u8-printf-parse.c: New file.
6101         * lib/unistdio/u8-snprintf.c: New file.
6102         * lib/unistdio/u8-sprintf.c: New file.
6103         * lib/unistdio/u8-vasnprintf.c: New file.
6104         * lib/unistdio/u8-vasprintf.c: New file.
6105         * lib/unistdio/u8-vsnprintf.c: New file.
6106         * lib/unistdio/u8-vsprintf.c: New file.
6107         * lib/unistdio/u8-u8-asnprintf.c: New file.
6108         * lib/unistdio/u8-u8-asprintf.c: New file.
6109         * lib/unistdio/u8-u8-snprintf.c: New file.
6110         * lib/unistdio/u8-u8-sprintf.c: New file.
6111         * lib/unistdio/u8-u8-vasnprintf.c: New file.
6112         * lib/unistdio/u8-u8-vasprintf.c: New file.
6113         * lib/unistdio/u8-u8-vsnprintf.c: New file.
6114         * lib/unistdio/u8-u8-vsprintf.c: New file.
6115         * lib/unistdio/u16-asnprintf.c: New file.
6116         * lib/unistdio/u16-asprintf.c: New file.
6117         * lib/unistdio/u16-printf-parse.c: New file.
6118         * lib/unistdio/u16-snprintf.c: New file.
6119         * lib/unistdio/u16-sprintf.c: New file.
6120         * lib/unistdio/u16-vasnprintf.c: New file.
6121         * lib/unistdio/u16-vasprintf.c: New file.
6122         * lib/unistdio/u16-vsnprintf.c: New file.
6123         * lib/unistdio/u16-vsprintf.c: New file.
6124         * lib/unistdio/u16-u16-asnprintf.c: New file.
6125         * lib/unistdio/u16-u16-asprintf.c: New file.
6126         * lib/unistdio/u16-u16-snprintf.c: New file.
6127         * lib/unistdio/u16-u16-sprintf.c: New file.
6128         * lib/unistdio/u16-u16-vasnprintf.c: New file.
6129         * lib/unistdio/u16-u16-vasprintf.c: New file.
6130         * lib/unistdio/u16-u16-vsnprintf.c: New file.
6131         * lib/unistdio/u16-u16-vsprintf.c: New file.
6132         * lib/unistdio/u32-asnprintf.c: New file.
6133         * lib/unistdio/u32-asprintf.c: New file.
6134         * lib/unistdio/u32-printf-parse.c: New file.
6135         * lib/unistdio/u32-snprintf.c: New file.
6136         * lib/unistdio/u32-sprintf.c: New file.
6137         * lib/unistdio/u32-vasnprintf.c: New file.
6138         * lib/unistdio/u32-vasprintf.c: New file.
6139         * lib/unistdio/u32-vsnprintf.c: New file.
6140         * lib/unistdio/u32-vsprintf.c: New file.
6141         * lib/unistdio/u32-u32-asnprintf.c: New file.
6142         * lib/unistdio/u32-u32-asprintf.c: New file.
6143         * lib/unistdio/u32-u32-snprintf.c: New file.
6144         * lib/unistdio/u32-u32-sprintf.c: New file.
6145         * lib/unistdio/u32-u32-vasnprintf.c: New file.
6146         * lib/unistdio/u32-u32-vasprintf.c: New file.
6147         * lib/unistdio/u32-u32-vsnprintf.c: New file.
6148         * lib/unistdio/u32-u32-vsprintf.c: New file.
6149         * tests/unistdio/test-ulc-asnprintf1.c: New file.
6150         * tests/unistdio/test-ulc-asnprintf1.h: New file.
6151         * tests/unistdio/test-ulc-printf1.h: New file.
6152         * tests/unistdio/test-ulc-vasnprintf1.c: New file.
6153         * tests/unistdio/test-ulc-vasnprintf2.c: New file.
6154         * tests/unistdio/test-ulc-vasnprintf2.sh: New file.
6155         * tests/unistdio/test-ulc-vasnprintf3.c: New file.
6156         * tests/unistdio/test-ulc-vasnprintf3.sh: New file.
6157         * tests/unistdio/test-ulc-vasprintf1.c: New file.
6158         * tests/unistdio/test-ulc-vsnprintf1.c: New file.
6159         * tests/unistdio/test-ulc-vsprintf1.c: New file.
6160         * tests/unistdio/test-u8-asnprintf1.c: New file.
6161         * tests/unistdio/test-u8-asnprintf1.h: New file.
6162         * tests/unistdio/test-u8-printf1.h: New file.
6163         * tests/unistdio/test-u8-vasnprintf1.c: New file.
6164         * tests/unistdio/test-u8-vasnprintf2.c: New file.
6165         * tests/unistdio/test-u8-vasnprintf2.sh: New file.
6166         * tests/unistdio/test-u8-vasnprintf3.c: New file.
6167         * tests/unistdio/test-u8-vasnprintf3.sh: New file.
6168         * tests/unistdio/test-u8-vasprintf1.c: New file.
6169         * tests/unistdio/test-u8-vsnprintf1.c: New file.
6170         * tests/unistdio/test-u8-vsprintf1.c: New file.
6171         * tests/unistdio/test-u16-asnprintf1.c: New file.
6172         * tests/unistdio/test-u16-asnprintf1.h: New file.
6173         * tests/unistdio/test-u16-printf1.h: New file.
6174         * tests/unistdio/test-u16-vasnprintf1.c: New file.
6175         * tests/unistdio/test-u16-vasnprintf2.c: New file.
6176         * tests/unistdio/test-u16-vasnprintf2.sh: New file.
6177         * tests/unistdio/test-u16-vasnprintf3.c: New file.
6178         * tests/unistdio/test-u16-vasnprintf3.sh: New file.
6179         * tests/unistdio/test-u16-vasprintf1.c: New file.
6180         * tests/unistdio/test-u16-vsnprintf1.c: New file.
6181         * tests/unistdio/test-u16-vsprintf1.c: New file.
6182         * tests/unistdio/test-u32-asnprintf1.c: New file.
6183         * tests/unistdio/test-u32-asnprintf1.h: New file.
6184         * tests/unistdio/test-u32-printf1.h: New file.
6185         * tests/unistdio/test-u32-vasnprintf1.c: New file.
6186         * tests/unistdio/test-u32-vasnprintf2.c: New file.
6187         * tests/unistdio/test-u32-vasnprintf2.sh: New file.
6188         * tests/unistdio/test-u32-vasnprintf3.c: New file.
6189         * tests/unistdio/test-u32-vasnprintf3.sh: New file.
6190         * tests/unistdio/test-u32-vasprintf1.c: New file.
6191         * tests/unistdio/test-u32-vsnprintf1.c: New file.
6192         * tests/unistdio/test-u32-vsprintf1.c: New file.
6193         * modules/unistdio/base: New file.
6194         * modules/unistdio/u-printf-args: New file.
6195         * modules/unistdio/ulc-asnprintf: New file.
6196         * modules/unistdio/ulc-asprintf: New file.
6197         * modules/unistdio/ulc-fprintf: New file.
6198         * modules/unistdio/ulc-printf-parse: New file.
6199         * modules/unistdio/ulc-snprintf: New file.
6200         * modules/unistdio/ulc-sprintf: New file.
6201         * modules/unistdio/ulc-vasnprintf: New file.
6202         * modules/unistdio/ulc-vasprintf: New file.
6203         * modules/unistdio/ulc-vfprintf: New file.
6204         * modules/unistdio/ulc-vsnprintf: New file.
6205         * modules/unistdio/ulc-vsprintf: New file.
6206         * modules/unistdio/u8-asnprintf: New file.
6207         * modules/unistdio/u8-asprintf: New file.
6208         * modules/unistdio/u8-printf-parse: New file.
6209         * modules/unistdio/u8-snprintf: New file.
6210         * modules/unistdio/u8-sprintf: New file.
6211         * modules/unistdio/u8-vasnprintf: New file.
6212         * modules/unistdio/u8-vasprintf: New file.
6213         * modules/unistdio/u8-vsnprintf: New file.
6214         * modules/unistdio/u8-vsprintf: New file.
6215         * modules/unistdio/u8-u8-asnprintf: New file.
6216         * modules/unistdio/u8-u8-asprintf: New file.
6217         * modules/unistdio/u8-u8-snprintf: New file.
6218         * modules/unistdio/u8-u8-sprintf: New file.
6219         * modules/unistdio/u8-u8-vasnprintf: New file.
6220         * modules/unistdio/u8-u8-vasprintf: New file.
6221         * modules/unistdio/u8-u8-vsnprintf: New file.
6222         * modules/unistdio/u8-u8-vsprintf: New file.
6223         * modules/unistdio/u16-asnprintf: New file.
6224         * modules/unistdio/u16-asprintf: New file.
6225         * modules/unistdio/u16-printf-parse: New file.
6226         * modules/unistdio/u16-snprintf: New file.
6227         * modules/unistdio/u16-sprintf: New file.
6228         * modules/unistdio/u16-vasnprintf: New file.
6229         * modules/unistdio/u16-vasprintf: New file.
6230         * modules/unistdio/u16-vsnprintf: New file.
6231         * modules/unistdio/u16-vsprintf: New file.
6232         * modules/unistdio/u16-u16-asnprintf: New file.
6233         * modules/unistdio/u16-u16-asprintf: New file.
6234         * modules/unistdio/u16-u16-snprintf: New file.
6235         * modules/unistdio/u16-u16-sprintf: New file.
6236         * modules/unistdio/u16-u16-vasnprintf: New file.
6237         * modules/unistdio/u16-u16-vasprintf: New file.
6238         * modules/unistdio/u16-u16-vsnprintf: New file.
6239         * modules/unistdio/u16-u16-vsprintf: New file.
6240         * modules/unistdio/u32-asnprintf: New file.
6241         * modules/unistdio/u32-asprintf: New file.
6242         * modules/unistdio/u32-printf-parse: New file.
6243         * modules/unistdio/u32-snprintf: New file.
6244         * modules/unistdio/u32-sprintf: New file.
6245         * modules/unistdio/u32-vasnprintf: New file.
6246         * modules/unistdio/u32-vasprintf: New file.
6247         * modules/unistdio/u32-vsnprintf: New file.
6248         * modules/unistdio/u32-vsprintf: New file.
6249         * modules/unistdio/u32-u32-asnprintf: New file.
6250         * modules/unistdio/u32-u32-asprintf: New file.
6251         * modules/unistdio/u32-u32-snprintf: New file.
6252         * modules/unistdio/u32-u32-sprintf: New file.
6253         * modules/unistdio/u32-u32-vasnprintf: New file.
6254         * modules/unistdio/u32-u32-vasprintf: New file.
6255         * modules/unistdio/u32-u32-vsnprintf: New file.
6256         * modules/unistdio/u32-u32-vsprintf: New file.
6257         * modules/unistdio/ulc-asnprintf-tests: New file.
6258         * modules/unistdio/ulc-vasnprintf-tests: New file.
6259         * modules/unistdio/ulc-vasprintf-tests: New file.
6260         * modules/unistdio/ulc-vsnprintf-tests: New file.
6261         * modules/unistdio/ulc-vsprintf-tests: New file.
6262         * modules/unistdio/u8-asnprintf-tests: New file.
6263         * modules/unistdio/u8-vasnprintf-tests: New file.
6264         * modules/unistdio/u8-vasprintf-tests: New file.
6265         * modules/unistdio/u8-vsnprintf-tests: New file.
6266         * modules/unistdio/u8-vsprintf-tests: New file.
6267         * modules/unistdio/u16-asnprintf-tests: New file.
6268         * modules/unistdio/u16-vasnprintf-tests: New file.
6269         * modules/unistdio/u16-vasprintf-tests: New file.
6270         * modules/unistdio/u16-vsnprintf-tests: New file.
6271         * modules/unistdio/u16-vsprintf-tests: New file.
6272         * modules/unistdio/u32-asnprintf-tests: New file.
6273         * modules/unistdio/u32-vasnprintf-tests: New file.
6274         * modules/unistdio/u32-vasprintf-tests: New file.
6275         * modules/unistdio/u32-vsnprintf-tests: New file.
6276         * modules/unistdio/u32-vsprintf-tests: New file.
6277         * MODULES.html.sh (Unicode string functions): Add the new modules.
6278
6279 2007-07-01  Bruno Haible  <bruno@clisp.org>
6280
6281         * lib/sprintf.c (sprintf): Limit the available length estimation,
6282         to avoid address wraparound.
6283         * lib/vsprintf.c (vsprintf): Likewise.
6284         * modules/sprintf-posix (Dependencies): Add stdint.
6285         * modules/vsprintf-posix (Dependencies): Likewise.
6286
6287 2007-07-01  Bruno Haible  <bruno@clisp.org>
6288
6289         * gnulib-tool (self_abspathname): Determine PATH_SEPARATOR and handle
6290         Windows PATH as well. Conservative double-quoting. Comments.
6291
6292 2007-07-01  Bruno Haible  <bruno@clisp.org>
6293             Eric Blake  <ebb9@byu.net>
6294             Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6295
6296         * gnulib-tool (self_abspathname): Fix algorithm to cope with
6297         empty components in $PATH, denoting '.'.
6298
6299 2007-07-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6300
6301         * gnulib-tool: Fix indentation.
6302         (func_create_megatestdir): Likewise.
6303         Report by Bruno Haible.
6304
6305 2007-06-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6306
6307         Sync from Automake.
6308         * build-aux/gnupload: Fix shell portability issues with for loops.
6309         Report by Karl Berry.
6310
6311 2007-06-29  Simon Josefsson  <simon@josefsson.org>
6312
6313         * build-aux/maint.mk (POURL): Use translationproject.org.
6314
6315 2007-06-27  Simon Josefsson  <simon@josefsson.org>
6316             Bruno Haible  <bruno@clisp.org>
6317
6318         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Require gl_HEADER_SYS_SOCKET
6319         before using HAVE_WS2TCPIP_H. Check for gai_strerror through an
6320         explicit link test, rather than AC_REPLACE_FUNCS - for mingw.
6321         (gl_PREREQ_GETADDRINFO): Require gl_HEADER_SYS_SOCKET before using
6322         HAVE_SYS_SOCKET_H and HAVE_WS2TCPIP_H.
6323
6324 2007-06-27  Bruno Haible  <bruno@clisp.org>
6325
6326         * build-aux/config.rpath: Upgrade to libtool-1.5.24.
6327         * build-aux/config.libpath: Upgrade to libtool-1.5.24.
6328
6329 2007-06-26  Karl Berry  <karl@gnu.org>
6330
6331         * MODULES.html.sh: remove xreadlink-with-size.
6332
6333 2007-06-23  Paul Eggert  <eggert@cs.ucla.edu>
6334
6335         * lib/time_.h: Port to Solaris 8 with Sun Studio 11, using a
6336         method that I hope also handles the double-include problem noted
6337         by Bruno Haible in
6338         <http://lists.gnu.org/archive/html/bug-gnulib/2007-05/msg00186.html>.
6339
6340 2007-06-23  Bruno Haible  <bruno@clisp.org>
6341
6342         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
6343         Don't let the 'mostlyclean' target fail if the last subdirectory could
6344         not be removed.
6345         Reported by Karl Berry.
6346
6347 2007-06-23  Bruno Haible  <bruno@clisp.org>
6348
6349         * gnulib-tool (echo): Add a speedier workaround for ksh.
6350         * tests/test-echo.sh: Likewise.
6351
6352 2007-06-23  Bruno Haible  <bruno@clisp.org>
6353
6354         * gnulib-tool (echo): Add workarounds also for bash versions < 2.04.
6355         * tests/test-echo.sh: Likewise.
6356
6357 2007-06-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6358
6359         * gnulib-tool (IFS): Initialize early, so we don't set it to
6360         empty later.
6361         (self_abspathname): Rewrite algorithm to set it, reindent.
6362         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am)
6363         (func_create_megatestdir): Merge some sed scripts.
6364
6365 2007-06-23  Paul Eggert  <eggert@cs.ucla.edu>
6366
6367         * m4/include_next.m4 (gl_CHECK_NEXT_HEADERS): Check some typos
6368         exposed by Sun Studio 11 cc on Solaris 8.
6369
6370 2007-06-22  Bruno Haible  <bruno@clisp.org>
6371
6372         * gnulib-tool (echo): Ensure the echo primitive does not interpret
6373         backslashes.
6374         * tests/test-echo.sh: New file.
6375
6376 2007-06-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6377
6378         * gnulib-tool (func_add_or_update, func_create_testdir): Do not
6379         simplify `sed_replace_build_aux' scripts, they are portable but
6380         echoing them with `echo' is not.
6381         Report and analysis by Fernando Ferreira <fernando.prog@netcabo.pt>.
6382
6383 2007-06-21  Karl Berry  <karl@gnu.org>
6384
6385         * config/srclist.txt: guess we can't handle the licenses via
6386         srclist at the moment.
6387
6388 2007-06-21  Paul Eggert  <eggert@cs.ucla.edu>
6389
6390         * MODULES.html.sh: Add include_next.
6391         * modules/include_next: New file.
6392
6393 2007-06-20  Paul Eggert  <eggert@cs.ucla.edu>
6394
6395         * m4/include_next.m4 (gl_INCLUDE_NEXT): Define and AC_SUBST
6396         INCLUDE_NEXT.
6397         (gl_CHECK_NEXT_HEADERS): New macro.
6398         * m4/fcntl_h.m4 (gl_FCNTL_H): use gl_CHECK_NEXT_HEADERS instead of
6399         the obsolescent gl_ABSOLUTE_HEADER.
6400         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Likewise.
6401         * m4/float_h.m4 (gl_FLOAT_H): Likewise.
6402         * m4/iconv_h.m4 (gl_ICONV_H): Likewise.
6403         * m4/inttypes.m4 (gl_INTTYPES_H): Likewise.
6404         * m4/locale_h.m4 (gl_LOCALE_H): Likewise.
6405         * m4/math_h.m4 (gl_MATH_H): Likewise.
6406         * m4/netinet_in_h.m4 (gl_HEADER_NETINET_IN): Likewise.
6407         * m4/search_h.m4 (gl_SEARCH_H): Likewise.
6408         * m4/signal_h.m4 (gl_SIGNAL_H): Likewise.
6409         * m4/stdint.m4 (gl_STDINT_H): Likewise.
6410         * m4/stdio_h.m4 (gl_STDIO_H): Likewise.
6411         * m4/stdlib_h.m4 (gl_STDLIB_H): Likewise.
6412         * m4/string_h.m4 (gl_HEADER_STRING_H_BODY): Likewise.
6413         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Likewise.
6414         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Likewise.
6415         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Likewise.
6416         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Likewise.
6417         * m4/sysexits.m4 (gl_SYSEXITS): Likewise.
6418         * m4/time_h.m4 (gl_HEADER_TIME_H_BODY): Likewise.
6419         * m4/unistd_h.m4 (gl_UNISTD_H): Likewise.
6420         * m4/wchar.m4 (gl_WCHAR_H): Likewise.
6421         * m4/wctype.m4 (gl_WCTYPE_H): Likewise.
6422         * m4/inttypes.m4 (gl_INTTYPES_H): Define
6423         _GL_JUST_INCLUDE_SYSTEM_INTTYPES_H to avoid the problem of unclean
6424         builds, since ABSOLUTE_INTTYPES_H is no longer being defined.
6425         * m4/stdint.m4 (gl_STDINT_H): Likewise, for
6426         _GL_JUST_INCLUDE_SYSTEM_STDINT_H.
6427         * lib/fcntl_.h: Use @INCLUDE_NEXT@ @NEXT_foo_H@
6428         rather than @HAVE_INCLUDE_NEXT@ and @ABSOLUTE_foo_H@.
6429         * lib/float_.h: Likewise.
6430         * lib/inttypes_.h: Likewise.
6431         * lib/math_.h: Likewise.
6432         * lib/search_.h: Likewise.
6433         * lib/signal_.h: Likewise.
6434         * lib/stdint_.h: Likewise.
6435         * lib/stdio_.h: Likewise.
6436         * lib/stdlib_.h: Likewise.
6437         * lib/string_.h: Likewise.
6438         * lib/sys_stat_.h: Likewise.
6439         * lib/sys_time_.h: Likewise.
6440         * lib/time_.h: Likewise.
6441         * lib/unistd_.h: Likewise.
6442         * lib/wchar_.h: Likewise.
6443         * lib/wctype_.h: Likewise.
6444         * lib/dirent_.h: Likewise.
6445         * lib/iconv_.h: Likewise.
6446         * lib/locale_.h: Likewise.
6447         * lib/netinet_in_.h: Likewise.
6448         * lib/sys_select_.h: Likewise.
6449         * lib/sys_socket_.h: Likewise.
6450         * lib/sysexits_.h: Likewise.
6451         * modules/fcntl (Depends-on): Depend on include_next, not
6452         absolute_header.
6453         (Makefile): Substitute INCLUDE_NEXT and NEXT_foo_H, not
6454         HAVE_INCLUDE_NEXT and ABSOLUTE_foo_H.
6455         * modules/fchdir: Likewise.
6456         * modules/float: Likewise.
6457         * modules/iconv_open: Likewise.
6458         * modules/inttypes: Likewise.
6459         * modules/locale: Likewise.
6460         * modules/math: Likewise.
6461         * modules/netinet_in: Likewise.
6462         * modules/search: Likewise.
6463         * modules/signal: Likewise.
6464         * modules/stdint: Likewise.
6465         * modules/stdio: Likewise.
6466         * modules/stdlib: Likewise.
6467         * modules/string: Likewise.
6468         * modules/sys_select: Likewise.
6469         * modules/sys_socket: Likewise.
6470         * modules/sys_stat: Likewise.
6471         * modules/sys_time: Likewise.
6472         * modules/sysexits: Likewise.
6473         * modules/time: Likewise.
6474         * modules/unistd: Likewise.
6475         * modules/wchar: Likewise.
6476         * modules/wctype: Likewise.
6477         * modules/sys_stat: Change maintainer to "all".
6478         * modules/unistd: Likewise.
6479
6480 2007-06-20  Karl Berry  <karl@gnu.org>
6481
6482         * config/srclist.txt: track www changes in license files.
6483
6484 2007-06-20  Sergey Poznyakoff  <gray@gnu.org.ua>
6485
6486         * build-aux/bootstrap: Remove stray dot.
6487         Make sure build_aux settings are honored when linking
6488         gnulib_extra_files.
6489
6490 2007-06-19  Eric Blake  <ebb9@byu.net>
6491
6492         * modules/canonicalize-lgpl-tests (test_canonicalize_lgpl_LDADD):
6493         Allow compilation on cygwin.
6494
6495 2007-06-19  Jim Meyering  <jim@meyering.net>
6496
6497         xreadlink-with-size: Remove module.  No longer used.
6498         Ex-callers now use xreadlink or mreadlink-with-size.
6499         * modules/xreadlink-with-size: Remove module.
6500         * lib/xreadlink-with-size.c: Remove file.
6501         * lib/xreadlink.h (xreadlink_with_size): Remove prototype.
6502         (xreadlink): Remove inaccurate comment.  The one in xreadlink.c,
6503         just before the function definition *is* accurate.
6504
6505         Eliminate one way canonicalize_filename_mode could exit.
6506         * lib/canonicalize.c (canonicalize_filename_mode):
6507         Use mreadlink_with_size, not xreadlink_with_size.
6508
6509 2007-06-18  Paul Eggert  <eggert@cs.ucla.edu>
6510
6511         Detect porting problems to FreeBSD/arm, which has time_t wider than
6512         long int.  Original problem reported for GNU diff by Xin Li in
6513         <http://lists.gnu.org/archive/html/bug-gnu-utils/2007-06/msg00091.html>.
6514         * modules/getdate (Depends-on): Add intprops, verify.
6515         * lib/getdate.y: Include intprops.h, verify.h.  Verify that time_t
6516         is an integer type no wider than long int.
6517
6518 2007-06-18  Jim Meyering  <jim@meyering.net>
6519
6520         New module: mreadlink-with-size.
6521         * MODULES.html.sh: Add mreadlink-with-size.
6522         * modules/mreadlink-with-size: New module
6523         * modules/canonicalize (Depends-on): Depend on mreadlink-with-size,
6524         not xreadlink-with-size.
6525         * lib/mreadlink-with-size.c, lib/mreadlink.h: New files.
6526
6527 2007-06-16  Bruno Haible  <bruno@clisp.org>
6528
6529         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Catch the MacOS X 10.4 bug.
6530         * doc/functions/frexpl.texi: Document the MacOS X 10.4 bug.
6531         Reported by Gary V. Vaughan <gary@gnu.org>.
6532
6533 2007-06-15  Paul Eggert  <eggert@cs.ucla.edu>
6534
6535         Revamp lchown so that it lives in unistd.h where it belongs.
6536         * lib/lchown.h: Remove.
6537         * lib/dirchownmod.c: Don't include lib/lchown.h.
6538         * lib/fchownat.c: Likewise.
6539         * lib/openat.c: Likewise.
6540         * lib/lchown.c (REPLACE_CHOWN): Define to 0 if the system chown
6541         does not follow symlinks.
6542         (EOPNOTSUPP): Define if not defined.
6543         * lib/unistd_.h (chown): Do not replace if REPLADE_CHOWN
6544         is defined to 0.
6545         (lchown): New decl.
6546         * m4/lchown.m4 (gl_FUNC_LCHOWN): Require gl_UNISTD_H_DEFAULTS.
6547         Do not check for lchown decl.
6548         Set REPLACE_LCHOWN.
6549         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Set GNULIB_LCHOWN,
6550         REPLACE_LCHOWN.
6551         * modules/chown: Make it clear it follows symlinks.
6552         * modules/lchown: Make it clear it doesn't follow symlinks.
6553         (Files): Remove lib/lchown.h
6554         (Depends-on): Add unistd.
6555         (configure.ac): Add gl_UNISTD_MODULE_INDICATOR([lchown]).
6556         (Include): Include <unistd.h>, not "lchown.h".
6557         * modules/unistd (unistd.h): Substitude GNULIB_LCHOWN and
6558         REPLACE_LCHOWN.
6559
6560 2007-06-15  Jim Meyering  <jim@meyering.net>
6561
6562         Change license (GPL to LGPL) of fsusage and dependents.
6563         * modules/fsusage (License): Change to LGPL.
6564         * modules/full-read (License): Likewise.
6565         * modules/full-write (License): Likewise.
6566         * modules/safe-read (License): Likewise.
6567         * modules/safe-write (License): Likewise.
6568
6569 2007-06-14  Ben Pfaff  <blp@gnu.org>
6570
6571         Missing part of allocsa -> malloca transition.
6572         * modules/relocatable-prog-wrapper: gl_ALLOCSA should be
6573         gl_MALLOCA.
6574
6575 2007-06-12  Bruno Haible  <bruno@clisp.org>
6576
6577         * m4/isnanl.m4 (gl_FUNC_ISNANL_WORKS): Guess no when cross-compiling
6578         to ia64, x86_64, i386.
6579         Reported by Eric Blake.
6580
6581 2007-06-12  Bruno Haible  <bruno@clisp.org>
6582
6583         * m4/printf.m4 (gl_PRINTF_INFINITE_LONG_DOUBLE): Guess no also when
6584         cross-compiling to x86_64.
6585
6586 2007-06-12  Paul Eggert  <eggert@cs.ucla.edu>
6587
6588         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Fix POSIX sed portability
6589         glitch reported by Ralf Wildenhues in
6590         <http://lists.gnu.org/archive/html/bug-gnulib/2007-06/msg00114.html>.
6591
6592         * m4/regex.m4 (gl_REGEX): Catch a bug with [[:alnum:]_-] reported by
6593         Vin Shelton.
6594
6595 2007-06-11  Bruno Haible  <bruno@clisp.org>
6596
6597         * lib/printf-args.c (PRINTF_FETCHARGS) [ENABLE_UNISTDIO]: Fix NULL
6598         replacement string.
6599         Reported by Eric Blake.
6600
6601 2007-06-10  Bruno Haible  <bruno@clisp.org>
6602
6603         Prepare vasnprintf code for use with Unicode strings.
6604         * lib/printf-args.h (PRINTF_FETCHARGS): New macro.
6605         (arg_type) [ENABLE_UNISTDIO]: Define TYPE_U8_STRING, TYPE_U16_STRING,
6606         TYPE_U32_STRING.
6607         (argument) [ENABLE_UNISTDIO]: Add a_u8_string, a_u16_string,
6608         a_u32_string variants.
6609         (PRINTF_FETCHARGS): Renamed from printf_fetchargs.
6610         * lib/printf-args.c: Don't include config.h and the specification
6611         header if PRINTF_FETCHARGS is already defined.
6612         (PRINTF_FETCHARGS): Renamed from printf_fetchargs.
6613         (PRINTF_FETCHARGS) [ENABLE_UNISTDIO]: Add code for TYPE_U8_STRING,
6614         TYPE_U16_STRING, TYPE_U32_STRING.
6615         * lib/printf-parse.h [ENABLE_UNISTDIO] (u8_directive, u8_directives,
6616         u16_directive, u16_directives, u32_directive, u32_directives): New
6617         types.
6618         (ulc_printf_parse, u8_printf_parse, u16_printf_parse, u32_printf_parse):
6619         New declarations.
6620         * lib/printf-parse.c: Don't include config.h and the specification
6621         header if PRINTF_PARSE is already defined. Eliminate the set of
6622         parameters for WIDE_CHAR_VERSION; the user of this file must provide
6623         them now. Include c-ctype.h.
6624         (PRINTF_PARSE) [ENABLE_UNISTDIO]: Add code implementing the 'U'
6625         directive and CHAR_T_ONLY_ASCII.
6626         * lib/vasnprintf.c: Don't include config.h and the specification header
6627         if VASNPRINTF is already defined.
6628         (DCHAR_IS_TCHAR, DCHAR_CPY): New macros.
6629         (VASNPRINTF): Use PRINTF_FETCHARGS instead of printf_fetchargs. Use
6630         DCHAR_CPY. Handle the case that DCHAR_T and FCHAR_T are not the same
6631         type. Handle the case that TCHAR_T and FCHAR_T are not of the same
6632         size. Handle the case that DCHAR_T and TCHAR_T are not the same type,
6633         add a conversion from TCHAR_T[] to DCHAR_T[], and rework the padding
6634         code accordingly.
6635         (VASNPRINTF) [ENABLE_UNISTDIO]: Implement the 'U' directive. Enable
6636         pad_ourselves also in this case, with the 'c' and 's' directives, and
6637         with a different notion of "width".
6638         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): New macros.
6639
6640 2007-06-10  Bruno Haible  <bruno@clisp.org>
6641
6642         * modules/unistr/u32-mbsnlen: New file.
6643         * lib/unistr/u32-mbsnlen.c: New file.
6644
6645         * modules/unistr/u16-mbsnlen: New file.
6646         * lib/unistr/u16-mbsnlen.c: New file.
6647
6648         * modules/unistr/u8-mbsnlen: New file.
6649         * lib/unistr/u8-mbsnlen.c: New file.
6650
6651         * lib/unistr.h (u8_mbsnlen, u16_mbsnlen, u32_mbsnlen): New
6652         declarations.
6653
6654 2007-06-10  Bruno Haible  <bruno@clisp.org>
6655
6656         * lib/string_.h (mbsnlen): New declaration.
6657         * lib/mbsnlen.c: New file.
6658         * m4/mbsnlen.m4: New file.
6659         * modules/mbsnlen: New file.
6660         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Set GNULIB_MBSNLEN.
6661         * modules/string (string.h): Substitute GNULIB_MBSNLEN.
6662         * MODULES.html.sh (Internationalization functions): Add mbsnlen.
6663
6664 2007-06-10  Bruno Haible  <bruno@clisp.org>
6665
6666         * lib/mbslen.c: Include <stdlib.h>, needed for MB_CUR_MAX.
6667
6668 2007-06-10  Bruno Haible  <bruno@clisp.org>
6669
6670         * lib/mbiter.h: Include <stddef.h>, needed for ptrdiff_t.
6671         * lib/mbuiter.h: Likewise.
6672
6673 2007-06-10  Bruno Haible  <bruno@clisp.org>
6674
6675         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF): Check for _snprintf
6676         declaration.
6677
6678 2007-06-10  Karl Berry  <karl@gnu.org>
6679
6680         * config/srclist.txt: remove gettext entries, Bruno prefers
6681         to update individually.
6682
6683 2007-06-10  Bruno Haible  <bruno@clisp.org>
6684
6685         * lib/vasnprintf.c (VASNPRINTF) [!USE_SNPRINTF]: Remove variable
6686         'maxlen'. Ensure only length + width bytes are allocated, not
6687         length + 1 + width.
6688
6689 2007-06-09  Bruno Haible  <bruno@clisp.org>
6690
6691         * lib/vasnprintf.c (FCHAR_T, DCHAR_T, TCHAR_T): New macros.
6692         (CHAR_T): Remove macro.
6693         (VASNPRINTF): Update.
6694
6695 2007-06-09  Bruno Haible  <bruno@clisp.org>
6696
6697         * MODULES.html.sh (Unicode string functions): Add the new modules.
6698
6699         * modules/uniconv/u32-conv-to-enc: New file.
6700         * lib/uniconv/u32-conv-to-enc.c: New file.
6701         * modules/uniconv/u32-conv-to-enc-tests: New file.
6702         * tests/uniconv/test-u32-conv-to-enc.c: New file.
6703
6704         * modules/uniconv/u16-conv-to-enc: New file.
6705         * lib/uniconv/u16-conv-to-enc.c: New file.
6706         * lib/uniconv/u-conv-to-enc.h: New file.
6707         * modules/uniconv/u16-conv-to-enc-tests: New file.
6708         * tests/uniconv/test-u16-conv-to-enc.c: New file.
6709
6710         * modules/uniconv/u8-conv-to-enc: New file.
6711         * lib/uniconv/u8-conv-to-enc.c: New file.
6712         * modules/uniconv/u8-conv-to-enc-tests: New file.
6713         * tests/uniconv/test-u8-conv-to-enc.c: New file.
6714
6715         * lib/uniconv.h (u8_conv_to_encoding, u16_conv_to_encoding,
6716         u32_conv_to_encoding): New declarations.
6717
6718 2007-06-09  Bruno Haible  <bruno@clisp.org>
6719
6720         * tests/uniconv/test-u32-strconv-to-enc.c (main): Remove unused code.
6721
6722 2007-06-09  Bruno Haible  <bruno@clisp.org>
6723
6724         Rename 'allocsa' -> 'malloca', 'freesa' -> 'freea'.
6725         * modules/malloca: Renamed from modules/allocsa, updated.
6726         * lib/malloca.h: Renamed from lib/allocsa.h, updated.
6727         * lib/malloca.c: Renamed from lib/allocsa.c, updated.
6728         * lib/malloca.valgrind: Renamed from lib/allocsa.valgrind, updated.
6729         * m4/malloca.m4: Renamed from m4/allocsa.m4, updated.
6730         * modules/malloca-tests: Renamed from modules/allocsa-tests, updated.
6731         * tests/test-malloca.c: Renamed from tests/test-allocsa.c, updated.
6732         * modules/xmalloca: Renamed from modules/xallocsa, updated.
6733         * lib/xmalloca.h: Renamed from lib/xallocsa.h, updated.
6734         * lib/xmalloca.c: Renamed from lib/xallocsa.c, updated.
6735         * modules/c-strcasestr (Depends-on): Update.
6736         * lib/c-strcasestr.c: Update.
6737         * modules/c-strstr (Depends-on): Update.
6738         * lib/c-strstr.c: Update.
6739         * modules/canonicalize-lgpl (Depends-on): Update.
6740         * lib/canonicalize-lgpl.c: Update.
6741         * modules/clean-temp (Depends-on): Update.
6742         * lib/clean-temp.c: Update.
6743         * modules/csharpcomp (Depends-on): Update.
6744         * lib/csharpcomp.c: Update.
6745         * modules/csharpexec (Depends-on): Update.
6746         * lib/csharpexec.c: Update.
6747         * modules/javacomp (Depends-on): Update.
6748         * lib/javacomp.c: Update.
6749         * modules/javaexec (Depends-on): Update.
6750         * lib/javaexec.c: Update.
6751         * modules/mbscasestr (Depends-on): Update.
6752         * lib/mbscasestr.c: Update.
6753         * modules/mbsstr (Depends-on): Update.
6754         * lib/mbsstr.c: Update.
6755         * modules/setenv (Depends-on): Update.
6756         * lib/setenv.c: Update.
6757         * modules/strcasestr (Depends-on): Update.
6758         * lib/strcasestr.c: Update.
6759         * modules/striconveha (Depends-on): Update.
6760         * lib/striconveha.c: Update.
6761         * modules/relocatable-prog-wrapper (Files): Update.
6762         * lib/relocwrapper.c: Update.
6763         * build-aux/install-reloc: Update.
6764         * MODULES.html.sh (Memory management functions <stdlib.h>): Update.
6765
6766 2007-06-08  Bruno Haible  <bruno@clisp.org>
6767
6768         Port to uClibc.
6769         * lib/fbufmode.c (fbufmode): Add special code for uClibc.
6770         * lib/fpurge.c (fpurge): Likewise.
6771         * lib/freading.c (freading): Likewise.
6772         * lib/fseeko.c (rpl_fseeko): Likewise.
6773         * lib/fseterr.c (fseterr): Likewise.
6774         * lib/fwriting.c (fwriting): Likewise.
6775         * tests/test-fflush.c (main): Avoid a failure on uClibc.
6776
6777 2007-06-08  Bruno Haible  <bruno@clisp.org>
6778
6779         * m4/intlmacosx.m4: New file, extracted from gettext.m4.
6780         * m4/gettext.m4 (gt_INTL_MACOSX): Remove macro, moved to intlmacosx.m4.
6781         * modules/gettext (Files): Add m4/intlmacosx.m4.
6782
6783 2007-06-07  Bruno Haible  <bruno@clisp.org>
6784
6785         * modules/localename-tests: New file.
6786         * tests/test-localename.c: New file.
6787
6788         New module 'localename'.
6789         * lib/localename.h: New file.
6790         * lib/localename.c: New file, from GNU gettext.
6791         * m4/localename.m4: New file.
6792         * modules/localename: New file.
6793
6794 2007-06-07  Bruno Haible  <bruno@clisp.org>
6795
6796         Work around the lack of <wchar.h> on some builds of uClibc.
6797         * doc/headers/wchar.texi: Update.
6798         * lib/wchar_.h: Include <wchar.h> only if it exists.
6799         * m4/wchar.m4 (gl_WCHAR_H): Check for <wchar.h>. Set HAVE_WCHAR_H.
6800         * m4/stdint.m4 (gl_STDINT_H): Check for <wchar.h>.
6801         (gl_STDINT_TYPE_PROPERTIES): Don't try to include <wchar.h> if it
6802         doesn't exist.
6803         * modules/wchar (wchar.h): Substitute HAVE_WCHAR_H.
6804         * modules/mbfile (Depends-on): Add wchar.
6805         * modules/mbiter (Depends-on): Likewise.
6806         * modules/mbuiter (Depends-on): Likewise.
6807         Reported by Simon Josefsson.
6808
6809 2007-06-06  Paul Eggert  <eggert@cs.ucla.edu>
6810
6811         Work around problem reported by Steven M. Schweda in
6812         <http://lists.gnu.org/archive/html/bug-tar/2007-06/msg00002.html>:
6813         Tru64 5.1B with the Compaq compiler environment installed declares
6814         an 'isblank' function but does not define it in the C library.
6815         * lib/fnmatch.c (isblank): Check for HAVE_ISBLANK, too.
6816         * lib/regex_internal.h (isblank): Likewise.
6817         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for isblank existence.
6818         * m4/regex.m4 (gl_PREREQ_REGEX): Likewise.
6819
6820 2007-06-05  Bruno Haible  <bruno@clisp.org>
6821
6822         Fix *printf so that it recognizes non-IEEE numbers on i386, x86_64,
6823         ia64.
6824         * modules/printf-safe: New file.
6825         * modules/fprintf-posix (Depends-on): Add printf-safe.
6826         * modules/printf-posix (Depends-on): Likewise.
6827         * modules/snprintf-posix (Depends-on): Likewise.
6828         * modules/sprintf-posix (Depends-on): Likewise.
6829         * modules/vasnprintf-posix (Depends-on): Likewise.
6830         * modules/vasprintf-posix (Depends-on): Likewise.
6831         * modules/vfprintf-posix (Depends-on): Likewise.
6832         * modules/vprintf-posix (Depends-on): Likewise.
6833         * modules/vsnprintf-posix (Depends-on): Likewise.
6834         * modules/vsprintf-posix (Depends-on): Likewise.
6835         * m4/printf.m4 (gl_PRINTF_INFINITE_LONG_DOUBLE): Require
6836         AC_C_BIGENDIAN. Define CHECK_PRINTF_SAFE if printf-safe is used. Test
6837         non-IEEE numbers on i386, x86_64, ia64. When cross-compiling, guess
6838         "no" on i386, x86_64, ia64.
6839         * tests/test-snprintf-posix.h (LDBL80_WORDS): New macro.
6840         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
6841         on i386, x86_64, ia64.
6842         * tests/test-sprintf-posix.h (LDBL80_WORDS): New macro.
6843         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
6844         on i386, x86_64, ia64.
6845         * tests/test-vasnprintf-posix.c: Include float.h.
6846         (LDBL80_WORDS): New macro.
6847         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
6848         on i386, x86_64, ia64.
6849         * tests/test-vasprintf-posix.c: Include float.h.
6850         (LDBL80_WORDS): New macro.
6851         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
6852         on i386, x86_64, ia64.
6853         * tests/test-snprintf-posix.c: Include float.h.
6854         * tests/test-sprintf-posix.c: Likewise.
6855         * tests/test-vsnprintf-posix.c: Likewise.
6856         * tests/test-vsprintf-posix.c: Likewise.
6857
6858 2007-06-05  Bruno Haible  <bruno@clisp.org>
6859
6860         Fix isnanl so that it recognizes non-IEEE numbers on i386, x86_64, ia64.
6861         * m4/isnanl.m4 (gl_FUNC_ISNANL_WORKS): Require AC_C_BIGENDIAN. Test
6862         non-IEEE numbers on i386, x86_64, ia64.
6863         (gl_LONG_DOUBLE_EXPONENT_LOCATION): Require AC_C_BIGENDIAN.
6864         * lib/isnan.c (FUNC): Add special code for i386, x86_64, ia64.
6865         * tests/test-isnanl.h: Include float.h.
6866         (main): Check also non-IEEE numbers on i386, x86_64, ia64.
6867
6868 2007-06-05  Bruno Haible  <bruno@clisp.org>
6869
6870         * lib/vasnprintf.c (VASNPRINTF): Do the extra handling of NaN and Inf
6871         also the %a / %A. Handle the %a / %A code before this extra handling.
6872
6873 2007-06-05  Bruno Haible  <bruno@clisp.org>
6874
6875         * lib/vasnprintf.c [NEED_PRINTF_LONG_DOUBLE ||
6876         NEED_PRINTF_INFINITE_LONG_DOUBLE]: Include fpucw.h.
6877
6878 2007-06-05  Bruno Haible  <bruno@clisp.org>
6879
6880         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_INFINITE_LONG_DOUBLE): Fix
6881         typo in variable name.
6882
6883 2007-06-05  Eric Blake  <ebb9@byu.net>
6884
6885         * m4/lseek.m4 (gl_FUNC_LSEEK): Work when cross-compiling.
6886         Reported by Simon Josefsson.
6887
6888 2007-06-04  Bruno Haible  <bruno@clisp.org>
6889
6890         Avoid test failures on some PowerPC platforms.
6891         * tests/test-printf-frexpl.c (MIN_NORMAL_EXP, MIN_SUBNORMAL_EXP):
6892         Define differently for PowerPC.
6893         * tests/test-frexpl.c (MIN_NORMAL_EXP): Likewise.
6894         Reported by Gary V. Vaughan <gary@gnu.org>.
6895
6896 2007-06-02  Bruno Haible  <bruno@clisp.org>
6897
6898         Fix test-stdint failure on FreeBSD/ia64.
6899         * m4/stdint.m4 (gl_STDINT_H): Check the values of PTRDIFF_MIN,
6900         PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX, SIZE_MAX, WCHAR_MIN,
6901         WCHAR_MAX, WINT_MIN, WINT_MAX entirely, not only for plausibility.
6902         * doc/headers/stdint.texi: Update.
6903
6904 2007-06-01  Bruno Haible  <bruno@clisp.org>
6905
6906         * tests/test-binary-io.c (main): Pass a third argument to open().
6907         Reported by Gary V. Vaughan <gary@gnu.org>.
6908
6909 2007-06-01  Bruno Haible  <bruno@clisp.org>
6910
6911         * doc/functions/frexpl.texi: Update for mingw.
6912
6913 2007-06-01  Bruno Haible  <bruno@clisp.org>
6914
6915         * tests/test-lseek.c (main): Disable test of errno for invalid third
6916         argument.
6917         * doc/functions/lseek.texi: Update.
6918         Reported by Gary V. Vaughan <gary@gnu.org>.
6919
6920 2007-05-28  Bruno Haible  <bruno@clisp.org>
6921
6922         * m4/intl.m4 (AM_INTL_SUBDIR): Substitute variables WOE32, WINDRES.
6923
6924 2007-05-31  Eric Blake  <ebb9@byu.net>
6925
6926         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Guess no on mingw when
6927         cross compiling.
6928
6929 2007-05-30  Eric Blake  <ebb9@byu.net>
6930         and Bruno Haible  <bruno@clisp.org>
6931
6932         Work around mingw test failures exposed by m4-1.4.9b.
6933         * m4/stdint.m4 (gl_STDINT_H): Detect mingw bug.
6934         * tests/test-unistd.c: Disable uid_t and git_t tests for the
6935         moment.
6936
6937 2007-05-30  Bruno Haible  <bruno@clisp.org>
6938
6939         * tests/test-lseek.c: Explicitly close file descriptors 0 and 1 before
6940         assuming that they are closed. Needed on HP-UX 11.
6941
6942 2007-05-29  Bruno Haible  <bruno@clisp.org>
6943
6944         Fix a problem with #include_next.
6945         * lib/dirent_.h: Split the double-inclusion guard.
6946         * lib/fcntl_.h: Likewise.
6947         * lib/float_.h: Likewise.
6948         * lib/iconv_.h: Likewise.
6949         * lib/inttypes_.h: Likewise.
6950         * lib/locale_.h: Likewise.
6951         * lib/math_.h: Likewise.
6952         * lib/netinet_in_.h: Likewise.
6953         * lib/search_.h: Likewise.
6954         * lib/signal_.h: Likewise.
6955         * lib/stdint_.h: Likewise.
6956         * lib/stdio_.h: Likewise.
6957         * lib/stdlib_.h: Likewise.
6958         * lib/string_.h: Likewise.
6959         * lib/sys_select_.h: Likewise.
6960         * lib/sys_socket_.h: Likewise.
6961         * lib/sys_stat_.h: Likewise.
6962         * lib/sys_time_.h: Likewise.
6963         * lib/sysexits_.h: Likewise.
6964         * lib/time_.h: Likewise.
6965         * lib/unistd_.h: Likewise.
6966         * lib/wchar_.h: Likewise.
6967         * lib/wctype_.h: Likewise.
6968
6969 2007-05-29  Bruno Haible  <bruno@clisp.org>
6970
6971         * tests/test-unistd.c: Disable the tests for useconds_t and intptr_t
6972         for the moment.
6973
6974 2007-05-29  Bruno Haible  <bruno@clisp.org>
6975
6976         * m4/isnan.m4 (gl_DOUBLE_EXPONENT_LOCATION): Silence the AC_C_BIGENDIAN
6977         invocation.
6978         Reported by Eric Blake.
6979
6980 2007-05-29  Bruno Haible  <bruno@clisp.org>
6981
6982         * m4/isnanf.m4 (gl_FLOAT_EXPONENT_LOCATION): Fix typo in cross-
6983         compiling case.
6984
6985 2007-05-29  Eric Blake  <ebb9@byu.net>
6986             Bruno Haible  <bruno@clisp.org>
6987
6988         * m4/isnanf.m4 (gl_FUNC_ISNANF_NO_LIBM): Avoid syntax error on
6989         cross compiles.
6990
6991 2007-05-28  Eric Blake  <ebb9@byu.net>
6992
6993         * modules/closein-tests (test_closein_LDADD): Support test on
6994         cygwin with libtool.
6995
6996 2007-05-28  Bruno Haible  <bruno@clisp.org>
6997
6998         * tests/uniconv/test-u16-conv-from-enc.c: Remove #ifdef HAVE_CONFIG_H.
6999         * tests/uniconv/test-u16-strconv-from-enc.c: Likewise.
7000         * tests/uniconv/test-u16-strconv-to-enc.c: Likewise.
7001         * tests/uniconv/test-u32-conv-from-enc.c: Likewise.
7002         * tests/uniconv/test-u32-strconv-from-enc.c: Likewise.
7003         * tests/uniconv/test-u32-strconv-to-enc.c: Likewise.
7004         * tests/uniconv/test-u8-conv-from-enc.c: Likewise.
7005         * tests/uniconv/test-u8-strconv-from-enc.c: Likewise.
7006         * tests/uniconv/test-u8-strconv-to-enc.c: Likewise.
7007
7008 2007-05-28  Eric Blake  <ebb9@byu.net>
7009
7010         Unconditionally include <config.h> in unit tests.
7011         * tests/test-alloca-opt.c: Remove #ifdef HAVE_CONFIG_H.
7012         * tests/test-allocsa.c, tests/test-arcfour.c,
7013         tests/test-arctwo.c, tests/test-argmatch.c, tests/test-argp.c,
7014         tests/test-array_list.c, tests/test-array_oset.c,
7015         tests/test-atexit.c, test-avltree_list.c, test-avltree_oset.c,
7016         test-avltreehash_list.c, test-base64.c, test-binary-io.c,
7017         test-c-ctype.c, test-c-strcasecmp.c, test-c-strcasestr.c,
7018         test-c-strncasecmp.c, test-c-strstr.c, test-canonicalize-lgpl.c,
7019         test-carray_list.c, test-crc.c, test-des.c, test-dirname.c,
7020         test-fflush.c, test-fprintf-posix.c, test-gc-arcfour.c,
7021         test-gc-arctwo.c, test-gc-des.c, test-gc-hmac-md5.c,
7022         test-gc-hmac-sha1.c, test-gc-md2.c, test-gc-md4.c, test-gc-md5.c,
7023         test-gc-pbkdf2-sha1.c, test-gc-rijndael.c, test-gc-sha1.c,
7024         test-gc.c, test-getpass.c, test-hmac-md5.c, test-hmac-sha1.c,
7025         test-iconv.c, test-linked_list.c, test-linkedhash_list.c,
7026         test-lock.c, test-mbscasecmp.c, test-mbscasestr1.c,
7027         test-mbscasestr2.c, test-mbscasestr3.c, test-mbscasestr4.c,
7028         test-mbschr.c, test-mbscspn.c, test-mbsncasecmp.c, test-mbspbrk.c,
7029         test-mbspcasecmp.c, test-mbsrchr.c, test-mbsspn.c, test-mbsstr1.c,
7030         test-mbsstr2.c, test-mbsstr3.c, test-md2.c, test-md4.c,
7031         test-md5.c, test-memmem.c, test-printf-posix.c,
7032         test-rbtree_list.c, test-rbtree_oset.c, test-rbtreehash_list.c,
7033         test-read-file.c, test-rijndael.c, test-snprintf-posix.c,
7034         test-snprintf.c, test-sprintf-posix.c, test-stdint.c,
7035         test-strcasestr.c, test-striconv.c, test-striconveh.c,
7036         test-striconveha.c, test-tls.c, test-vasnprintf-posix.c,
7037         test-vasnprintf-posix2.c, test-vasnprintf.c,
7038         test-vasprintf-posix.c, test-vasprintf.c, test-verify.c,
7039         test-vfprintf-posix.c, test-vprintf-posix.c,
7040         test-vsnprintf-posix.c, test-vsnprintf.c, test-vsprintf-posix.c,
7041         test-xvasprintf.c: Likewise.
7042
7043 2007-05-28  Bruno Haible  <bruno@clisp.org>
7044
7045         * gnulib-tool (func_import): Remember the --with-tests command-line
7046         option through the macro gl_WITH_TESTS in the gnulib-cache.m4.
7047         Reported by Eric Blake.
7048
7049 2007-05-28  Bruno Haible  <bruno@clisp.org>
7050
7051         * modules/ftell-tests: New file.
7052         * tests/test-ftell.c: New file, based on tests/test-ftello.c.
7053         * tests/test-ftell.sh: New file, based on tests/test-ftello.sh.
7054
7055         * lib/ftell.c: New file.
7056         * modules/ftell: New file.
7057         * m4/ftell.m4: New file.
7058         * doc/functions/ftell.texi: Update.
7059         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FTELL,
7060         REPLACE_FTELL.
7061         * lib/stdio_.h (rpl_ftell): New declaration.
7062         * modules/stdio (Makefile.am): Substitute also GNULIB_FTELL,
7063         REPLACE_FTELL.
7064
7065 2007-05-28  Eric Blake  <ebb9@byu.net>
7066
7067         * lib/allocsa.h (safe_alloca): Avoid compiler warning.
7068
7069 2007-05-28  Bruno Haible  <bruno@clisp.org>
7070
7071         * modules/fseek-tests: New file.
7072         * tests/test-fseek.c: New file, based on tests/test-fseeko.c.
7073         * tests/test-fseek.sh: New file, based on tests/test-fseeko.sh.
7074
7075         * lib/fseek.c: New file.
7076         * modules/fseek: New file.
7077         * m4/fseek.m4: New file.
7078         * doc/functions/fseek.texi: Update.
7079         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FSEEK,
7080         REPLACE_FSEEK.
7081         * lib/stdio_.h (rpl_fseek): New declaration.
7082         * modules/stdio (Makefile.am): Substitute also GNULIB_FSEEK,
7083         REPLACE_FSEEK.
7084
7085 2007-05-28  Bruno Haible  <bruno@clisp.org>
7086
7087         * lib/stdio_.h (fflush): More comments.
7088
7089 2007-05-28  Bruno Haible  <bruno@clisp.org>
7090
7091         * m4/lseek.m4 (gl_FUNC_LSEEK): When not cross-compiling, perform a real
7092         runtime test.
7093
7094 2007-05-28  Eric Blake  <ebb9@byu.net>
7095
7096         Improve lseek module.
7097         * lib/lseek.c (rpl_lseek): Detect EBADF on mingw.
7098         * lib/unistd_.h (lseek): Scale back link warning message.
7099         * tests/test-lseek.c: Beef up test.
7100         * tests/test-lseek.sh: Exercise more facets of lseek.
7101         Reported by Bruno Haible.
7102
7103 2007-05-28  Bruno Haible  <bruno@clisp.org>
7104
7105         * tests/test-unistd.c: Test all the types that <unistd.h> is expected
7106         to define.
7107
7108 2007-05-27  Bruno Haible  <bruno@clisp.org>
7109
7110         * m4/iconv.m4 (AM_ICONV_LINK): Fix 2007-03-31 patch.
7111
7112 2007-05-27  Bruno Haible  <bruno@clisp.org>
7113
7114         * modules/openmp: New file.
7115         * m4/openmp.m4: New file, taken from autoconf's CVS with changes by
7116         Noah Misch.
7117
7118 2007-05-26  Bruno Haible  <bruno@clisp.org>
7119
7120         * modules/chdir-long (Depends-on): Add fchdir.
7121         * modules/chdir-safer (Depends-on): Likewise.
7122         * modules/fts (Depends-on): Likewise.
7123         * modules/fts-lgpl (Depends-on): Likewise.
7124         * modules/openat (Depends-on): Likewise.
7125         * modules/savewd (Depends-on): Likewise.
7126
7127 2007-05-24  Eric Blake  <ebb9@byu.net>
7128
7129         Fix lseek on mingw.
7130         * modules/lseek: New module.
7131         * m4/lseek.m4: New file.
7132         * lib/lseek.c: New file.
7133         * modules/lseek-tests: New file.
7134         * tests/test-lseek.c: New file.
7135         * tests/test-lseek.sh: New file.
7136         * MODULES.html.sh: Document lseek module.
7137         * modules/fflush (Depends-on): Add lseek, fseeko.
7138         * modules/fseeko (Depends-on): Likewise.
7139         * modules/ftello (Depends-on): Likewise.
7140         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Replace fseek[o] if lseek is
7141         broken.
7142         * m4/ftello.m4 (gl_FUNC_FTELLO): Replace ftell[o] if lseek is
7143         broken.
7144         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Trigger fseeko module.
7145         * lib/fseeko.c (rpl_fseeko): Quit early on non-seekable files.
7146         * lib/ftello.c (rpl_ftello): Likewise.
7147         * tests/test-fseeko.c (main): Test this.
7148         * tests/test-fseeko.sh: Likewise.
7149         * tests/test-ftello.c (main): Likewise.
7150         * tests/test-ftello.sh: Likewise.
7151         * lib/stdio_.h (fseek, ftell): Simplify, since missing fseeko now
7152         implies replacing fseek.
7153         * modules/stdio (Makefile.am): No longer need HAVE_FSEEKO,
7154         HAVE_FTELLO.
7155         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add lseek info.
7156         * modules/unistd (Makefile.am): Likewise.
7157         * lib/unistd_.h (lseek): Declare a replacement.
7158         * doc/functions/lseek.texi (lseek): Document this fix.
7159         * doc/functions/fseek.texi (fseek): Likewise.
7160         * doc/functions/ftell.texi (ftell): Likewise.
7161
7162 2007-05-24  Bruno Haible  <bruno@clisp.org>
7163
7164         * tests/test-vasnprintf-posix.c (test_function): Allow up to 50 bytes
7165         in the printed representation of a NaN.
7166         * tests/test-vasprintf-posix.c (test_function): Likewise.
7167         * tests/test-snprintf-posix.h (test_function): Likewise.
7168         * tests/test-sprintf-posix.h (test_function): Likewise.
7169         Reported by Eric Blake.
7170
7171 2007-05-23  Eric Blake  <ebb9@byu.net>
7172
7173         Fix fseeko/ftello on cygwin 1.5.24.
7174         * doc/functions/fseeko.texi (fseeko): Document the fix.
7175         * doc/functions/ftello.texi (ftello): Document the fix.
7176         * doc/functions/stdin.texi (stdin): Document the cygwin bug.
7177         * doc/functions/stdout.text (stdout): New file.
7178         * doc/functions/stderr.text (stderr): New file.
7179         * doc/gnulib.texi (Function Substitutes): Use new files.
7180         * tests/test-fseeko.c (main): Check for broken fseeko on cygwin
7181         prior to 1.7.0.
7182         * tests/test-ftello.c (main): Likewise for ftello.
7183         * tests/test-fseeko.sh: New file.
7184         * tests/test-ftello.sh: New file.
7185         * modules/fseeko-tests (Makefile.am): Ensure test-fseeko is run
7186         with seekable stdin.
7187         * modules/ftello-tests (Makefile.am): Likewise for test-ftello.
7188         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Detect the cygwin bug.
7189         (gl_REPLACE_FSEEKO): New macro.
7190         * m4/ftello.m4 (gl_FUNC_FTELLO, gl_REPLACE_FTELLO): Likewise.
7191         * modules/fseeko (Files): Distribute fseeko.c.
7192         * modules/ftello (Files): Distribute ftello.c.
7193         * lib/fseeko.c (rpl_fseeko) [__CYGWIN__]: Convert stdin to 64-bit
7194         mode.
7195         * lib/ftello.c (rpl_ftello): New file.
7196         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Allow replacement of
7197         fseeko, ftello.
7198         (gl_STDIN_LARGE_OFFSET): New macro.
7199         * modules/stdio (Makefile.am): Perform the replacement.
7200         * lib/stdio_.h (rpl_fseeko, rpl_ftello): Define when needed.
7201
7202 2007-05-23  Bruno Haible  <bruno@clisp.org>
7203
7204         * lib/stdio_.h (fseeko, ftello): Provide a link warning only if
7205         GNULIB_POSIXCHECK is defined.
7206
7207 2007-05-21  Bruno Haible  <bruno@clisp.org>
7208
7209         * m4/printf.m4 (gl_PRINTF_INFINITE, gl_PRINTF_INFINITE_LONG_DOUBLE):
7210         Check also the output for NaN arguments. When cross-compiling, guess
7211         no on IRIX.
7212         * lib/vasnprintf.c: Update comments.
7213         * tests/test-vasnprintf-posix.c (strisnan): New function.
7214         (test_function): Use it.
7215         * tests/test-vasprintf-posix.c (strisnan): New function.
7216         (test_function): Use it.
7217         * tests/test-snprintf-posix.h (strisnan): New function.
7218         (test_function): Use it.
7219         * tests/test-sprintf-posix.h (strisnan): New function.
7220         (test_function): Use it.
7221         Reported by Eric Blake.
7222
7223 2007-05-20  Bruno Haible  <bruno@clisp.org>
7224
7225         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Add test for large finite
7226         numbers that fails on BeOS.
7227         * doc/functions/frexpl.texi: Update.
7228
7229 2007-05-20  Jim Meyering  <jim@meyering.net>
7230
7231         * NEWS: Mention the incompatible change (s/futimens/gl_futimens/)
7232         forced upon us by glibc-2.6.
7233
7234 2007-05-20  Bruno Haible  <bruno@clisp.org>
7235
7236         Fix *printf result for NaN, Inf on AIX, Solaris, OSF/1.
7237         * m4/printf.m4 (gl_PRINTF_INFINITE): Update cross-compiling guesses.
7238         (gl_PRINTF_INFINITE_LONG_DOUBLE): New macro.
7239         * lib/vasnprintf.c: Use NEED_PRINTF_INFINITE_DOUBLE instead of
7240         NEED_PRINTF_INFINITE.
7241         (is_infinitel): New function.
7242         (VASNPRINTF): Handle NEED_PRINTF_INFINITE_LONG_DOUBLE case.
7243         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_INFINITE_DOUBLE): Renamed from
7244         gl_PREREQ_VASNPRINTF_INFINITE.
7245         (gl_PREREQ_VASNPRINTF_INFINITE_LONG_DOUBLE): New macro.
7246         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
7247         gl_PRINTF_INFINITE_LONG_DOUBLE and test its result. Invoke
7248         gl_PREREQ_VASNPRINTF_INFINITE_DOUBLE and
7249         gl_PREREQ_VASNPRINTF_INFINITE_LONG_DOUBLE instead of
7250         gl_PREREQ_VASNPRINTF_INFINITE.
7251         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
7252         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
7253         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
7254         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
7255         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
7256         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
7257         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
7258         * doc/functions/fprintf.texi: Update.
7259         * doc/functions/printf.texi: Update.
7260         * doc/functions/snprintf.texi: Update.
7261         * doc/functions/sprintf.texi: Update.
7262         * doc/functions/vfprintf.texi: Update.
7263         * doc/functions/vprintf.texi: Update.
7264         * doc/functions/vsnprintf.texi: Update.
7265         * doc/functions/vsprintf.texi: Update.
7266
7267 2007-05-20  Bruno Haible  <bruno@clisp.org>
7268
7269         * m4/frexpl.m4 (gl_FUNC_FREXPL_NO_LIBM): Set REPLACE_FREXPL if frexpl
7270         was not found in libc.
7271         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Likewise.
7272
7273 2007-05-20  Bruno Haible  <bruno@clisp.org>
7274
7275         * tests/test-vasnprintf-posix.c (test_function): Allow NaN to be
7276         printed as "-nan" instead of "nan".
7277         * tests/test-vasprintf-posix.c (test_function): Likewise.
7278         * tests/test-snprintf-posix.h (test_function): Likewise.
7279         * tests/test-sprintf-posix.h (test_function): Likewise.
7280         Needed for HP-UX 11.
7281
7282 2007-05-20  Jim Meyering  <jim@meyering.net>
7283
7284         Fix buggy test for the fchownat-deref bug.
7285         * m4/openat.m4 (gl_FUNC_FCHOWNAT_DEREF_BUG): Create the dangling
7286         symlink required for the run-test.  Without it, this test would
7287         always declare that fchownat doesn't work, and client code would
7288         unnecessarily use the replacement function with fixed libc.
7289         (gl_FUNC_FCHOWNAT): Eliminate a variable that wasn't initialized.
7290         Reported by Greg Schafer.
7291
7292 2007-05-19  Bruno Haible  <bruno@clisp.org>
7293
7294         * m4/isnanf.m4 (gl_ISNANF_WORKS): New macro.
7295         (gl_FUNC_ISNANF_NO_LIBM): Invoke it.
7296         * lib/isnan.c (FUNC): Use run-time expressions for SGI compiler.
7297         Needed for IRIX 6.5 and Solaris 2.5.1.
7298
7299 2007-05-19  Bruno Haible  <bruno@clisp.org>
7300
7301         * tests/test-vasnprintf-posix.c (have_minus_zero): New function.
7302         (test_function): Skip tests involving -0.0 on platforms where
7303         -0.0 = 0.0.
7304         * tests/test-vasprintf-posix.c (have_minus_zero): New function.
7305         (test_function): Skip tests involving -0.0 on platforms where
7306         -0.0 = 0.0.
7307         * tests/test-snprintf-posix.h (have_minus_zero): New function.
7308         (test_function): Skip tests involving -0.0 on platforms where
7309         -0.0 = 0.0.
7310         * tests/test-sprintf-posix.h (have_minus_zero): New function.
7311         (test_function): Skip tests involving -0.0 on platforms where
7312         -0.0 = 0.0.
7313         * tests/test-fprintf-posix.h (test_function): Remove all -0.0 related
7314         tests.
7315         * tests/test-printf-posix.h (test_function): Likewise.
7316         * tests/test-printf-posix.output: Remove all -0.0 related results.
7317         Needed for IRIX 6.5.
7318
7319 2007-05-19  Bruno Haible  <bruno@clisp.org>
7320
7321         * tests/test-vasnprintf-posix.c (test_function): Allow NaN to be
7322         printed as "nan0x7fffffff" instead of "nan".
7323         * tests/test-vasprintf-posix.c (test_function): Likewise.
7324         * tests/test-snprintf-posix.h (test_function): Likewise.
7325         * tests/test-sprintf-posix.h (test_function): Likewise.
7326         * tests/test-fprintf-posix.h (NaN): Remove macro.
7327         (test_function): Remove all NaN related tests.
7328         * tests/test-printf-posix.h (NaN): Remove macro.
7329         (test_function): Remove all NaN related tests.
7330         * tests/test-printf-posix.output: Remove all NaN related results.
7331         Needed for IRIX 6.5.
7332
7333 2007-05-19  Bruno Haible  <bruno@clisp.org>
7334
7335         * m4/frexp.m4 (gl_FUNC_FREXP_WORKS): Fix C89 syntax error in test code.
7336         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Likewise.
7337
7338 2007-05-19  Bruno Haible  <bruno@clisp.org>
7339
7340         * lib/float_.h: New file.
7341         * m4/float_h.m4: New file.
7342         * modules/float: New file.
7343         * modules/isnanl (Dependencies): Add float.
7344         * modules/isnanl-nolibm (Dependencies): Likewise.
7345         * modules/mathl (Dependencies): Likewise.
7346         * modules/printf-frexpl (Dependencies): Likewise.
7347         * modules/signbit (Dependencies): Likewise.
7348         * modules/vasnprintf (Dependencies): Likewise.
7349         * doc/headers/float.texi: Update.
7350
7351 2007-05-19  Jim Meyering  <jim@meyering.net>
7352
7353         * lib/utimens.c (gl_futimens): Rename from futimens,
7354         now that glibc-2.6 declares futimens.
7355         * lib/utimens.h: Likewise.
7356
7357 2007-05-19  Bruno Haible  <bruno@clisp.org>
7358
7359         Avoid test failures on mingw.
7360         * tests/test-fprintf-posix.sh: Convert CR/LF to LF in output.
7361         * tests/test-printf-posix.sh: Likewise.
7362         * tests/test-vfprintf-posix.sh: Likewise.
7363         * tests/test-vprintf-posix.sh: Likewise.
7364
7365 2007-05-19  Bruno Haible  <bruno@clisp.org>
7366
7367         Fix *printf result for NaN, Inf, -0.0 on mingw.
7368         * m4/printf.m4 (gl_PRINTF_INFINITE): New macro.
7369         * lib/vasnprintf.c: Include math.h and isnan.h.
7370         (is_infinite_or_zero): New function.
7371         (VASNPRINTF): Fix also the handling of infinite or zero 'double'
7372         values in the %f, %F, %e, %E, %g, %G directives.
7373         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_INFINITE): New macro.
7374         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
7375         gl_PRINTF_INFINITE and test its result. Invoke
7376         gl_PREREQ_VASNPRINTF_INFINITE.
7377         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
7378         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
7379         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
7380         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
7381         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
7382         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
7383         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
7384         * doc/functions/fprintf.texi: Update.
7385         * doc/functions/printf.texi: Update.
7386         * doc/functions/snprintf.texi: Update.
7387         * doc/functions/sprintf.texi: Update.
7388         * doc/functions/vfprintf.texi: Update.
7389         * doc/functions/vprintf.texi: Update.
7390         * doc/functions/vsnprintf.texi: Update.
7391         * doc/functions/vsprintf.texi: Update.
7392
7393 2007-05-19  Bruno Haible  <bruno@clisp.org>
7394
7395         * lib/vasnprintf.c (convert_to_decimal): Add an extra_zeroes argument.
7396         (scale10_round_decimal_long_double): Inline scale10_round_long_double.
7397         Instead of multiplying with 10^k, set extra_zeroes to k.
7398         (scale10_round_long_double): Remove function.
7399
7400 2007-05-18  Bruno Haible  <bruno@clisp.org>
7401
7402         * lib/vasnprintf.c (VASNPRINTF) [NEED_PRINTF_FLAG_ZERO]: Fix logic bug
7403         introduced on 2007-05-06.
7404
7405 2007-05-18  Bruno Haible  <bruno@clisp.org>
7406
7407         * tests/test-vasnprintf-posix.c (test_function): Also test the %e and
7408         %g directives.
7409         * tests/test-vasprintf-posix.c (test_function): Likewise.
7410         * tests/test-snprintf-posix.h (test_function): Likewise.
7411         * tests/test-sprintf-posix.h (test_function): Likewise.
7412
7413 2007-05-18  Bruno Haible  <bruno@clisp.org>
7414
7415         * tests/test-vasnprintf-posix.c (SIZEOF): New macro.
7416         (strmatch): New function.
7417         (test_function): Test the %f directive on numbers of various exponents.
7418         * tests/test-vasprintf-posix.c (SIZEOF): New macro.
7419         (strmatch): New function.
7420         (test_function): Test the %f directive on numbers of various exponents.
7421         * tests/test-snprintf-posix.h (strmatch): New function.
7422         (test_function): Test the %f directive on numbers of various exponents.
7423         * tests/test-sprintf-posix.h (strmatch): New function.
7424         (test_function): Test the %f directive on numbers of various exponents.
7425         * tests/test-snprintf-posix.c (SIZEOF): New macro.
7426         * tests/test-sprintf-posix.c (SIZEOF): New macro.
7427         * tests/test-vsnprintf-posix.c (SIZEOF): New macro.
7428         * tests/test-vsprintf-posix.c (SIZEOF): New macro.
7429
7430 2007-05-18  Bruno Haible  <bruno@clisp.org>
7431
7432         Add support for 'long double' number output.
7433         * m4/printf.m4 (gl_PRINTF_LONG_DOUBLE): New macro.
7434         * lib/vasnprintf.c: Include math.h and float+.h.
7435         (mp_limb_t): New type.
7436         (GMP_LIMB_BITS): New macro.
7437         (mp_twolimb_t): New type.
7438         (GMP_TWOLIMB_BITS): New macro.
7439         (mpn_t): New type.
7440         (multiply, divide, convert_to_decimal, decode_long_double,
7441         scale10_round_long_double, scale10_round_decimal_long_double,
7442         floorlog10l): New functions.
7443         (VASNPRINTF) [NEED_PRINTF_LONG_DOUBLE]: Implement 'long double' support
7444         for the %f, %F, %e, %E, %g, %G directives.
7445         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_LONG_DOUBLE): New macro.
7446         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
7447         gl_PRINTF_LONG_DOUBLE and test its result. Invoke
7448         gl_PREREQ_VASNPRINTF_LONG_DOUBLE.
7449         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
7450         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
7451         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
7452         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
7453         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
7454         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
7455         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
7456         * modules/fprintf-posix (Depends-on): Add frexpl-nolibm.
7457         * modules/snprintf-posix (Depends-on): Likewise.
7458         * modules/sprintf-posix (Depends-on): Likewise.
7459         * modules/vasnprintf-posix (Depends-on): Likewise.
7460         * modules/vasprintf-posix (Depends-on): Likewise.
7461         * modules/vfprintf-posix (Depends-on): Likewise.
7462         * modules/vsnprintf-posix (Depends-on): Likewise.
7463         * modules/vsprintf-posix (Depends-on): Likewise.
7464         * modules/vasnprintf (Files): Add lib/float+.h.
7465         * doc/functions/fprintf.texi: Update.
7466         * doc/functions/printf.texi: Update.
7467         * doc/functions/snprintf.texi: Update.
7468         * doc/functions/sprintf.texi: Update.
7469         * doc/functions/vfprintf.texi: Update.
7470         * doc/functions/vprintf.texi: Update.
7471         * doc/functions/vsnprintf.texi: Update.
7472         * doc/functions/vsprintf.texi: Update.
7473
7474 2007-05-18  Bruno Haible  <bruno@clisp.org>
7475
7476         * lib/vasnprintf.c (USE_SNPRINTF): Define to 0 on BeOS.
7477
7478 2007-05-18  Bruno Haible  <bruno@clisp.org>
7479
7480         * lib/vasnprintf.c (VASNPRINTF) [WIN32]: Use %I64d instead of %lld
7481         for printing 64-bit integers. Needed for mingw.
7482
7483 2007-05-18  Bruno Haible  <bruno@clisp.org>
7484
7485         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Invoke
7486         gl_FUNC_FREXPL_WORKS.
7487         * modules/printf-frexpl (Files): Add m4/frexpl.m4.
7488
7489 2007-05-18  Bruno Haible  <bruno@clisp.org>
7490
7491         * modules/frexpl-nolibm-tests: New file.
7492
7493         * modules/frexpl-nolibm: New file.
7494         * m4/frexpl.m4 (gl_FUNC_FREXPL_NO_LIBM): New macro.
7495
7496 2007-05-17  Paul Eggert  <eggert@cs.ucla.edu>
7497
7498         * lib/dirent_.h: Prefer #include_next <foo.h> to #include
7499         @ABSOLUTE_FOO_H@ if @HAVE_INCLUDE_NEXT@.  This works better with
7500         GCC 4.2, which otherwise issues a lot of warnings.
7501         * lib/iconv_.h, lib/locale_.h, lib/netinet_in_.h, lib/sys_select_.h:
7502         * lib/sys_socket_.h, lib/sys_stat_.h, lib/sysexits_.h, lib/unistd_.h:
7503         Likewise.
7504         * modules/fchdir (dirent.h): Substitute @HAVE_INCLUDE_NEXT@.
7505         * modules/iconv_open (iconv.h): Likewise.
7506         * modules/locale (locale.h): Likewise.
7507         * modules/netinet_in (netinet/in.h): Likewise.
7508         * modules/sys_select (sys_select.h): Likewise.
7509         * modules/sys_socket (sys/socket.h): Likewise.
7510         * modules/sys_stat (sys/stat.h): Likewise.
7511         * modules/sysexits (sysexits.h): Likewise.
7512         * modules/unistd (unistd.h): Likewise.
7513
7514 2007-05-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
7515
7516         * modules/closein-tests (Makefile.am): Distribute
7517         `test-closein.sh'.
7518
7519 2007-05-17  Bruno Haible  <bruno@clisp.org>
7520
7521         * tests/test-printf-posix.output: Renamed from
7522         tests/test-fprintf-posix.out.
7523         * modules/fprintf-posix-tests: Update.
7524         * modules/printf-posix-tests: Update.
7525         * modules/vfprintf-posix-tests: Update.
7526         * modules/vprintf-posix-tests: Update.
7527         * tests/test-fprintf-posix.sh: Update.
7528         * tests/test-printf-posix.sh: Update.
7529         * tests/test-vfprintf-posix.sh: Update.
7530         * tests/test-vprintf-posix.sh: Update.
7531         Reported by Ralf Wildenhues.
7532
7533 2007-05-16  Paul Eggert  <eggert@cs.ucla.edu>
7534
7535         * lib/fcntl_.h: Prefer #include_next <foo.h> to #include
7536         @ABSOLUTE_FOO_H@ if @HAVE_INCLUDE_NEXT@.  This works better with
7537         GCC 4.2, which otherwise issues a lot of warnings.
7538         * lib/inttypes_.h, lib/math_.h, lib/search_.h, lib/signal_.h:
7539         * lib/stdint_.h, lib/stdio_.h, lib/stdlib_.h, lib/string_.h:
7540         * lib/sys_time_.h, lib/time_.h, lib/wchar_.h, lib/wctype_.h: Likewise.
7541         * lib/stdlib_.h: Don't bother with #pragma GCC system_header, as
7542         it should no longer be needed.
7543         * lib/string_.h: Likewise.
7544         * modules/absolute-header (HAVE_INCLUDE_NEXT): New 'make' define.
7545         * modules/fcntl (fcntl.h): Substitute @HAVE_INCLUDE_NEXT@.
7546         * modules/inttypes (inttypes.h): Likewise.
7547         * modules/math (math.h): Likewise.
7548         * modules/search (search.h): Likewise.
7549         * modules/signal (signal.h): Likewise.
7550         * modules/stdint (stdint.h): Likewise.
7551         * modules/stdio (stdio.h): Likewise.
7552         * modules/stdlib (stdlib.h): Likewise.
7553         * modules/string (string.h): Likewise.
7554         * modules/sys_time (sys/time.h): Likewise.
7555         * modules/time (time.h): Likewise.
7556         * modules/wchar (wchar.h): Likewise.
7557         * modules/wctype (wtype.h): Likewise.
7558
7559 2007-05-16  Thien-Thi Nguyen  <ttn@gnuvola.org>  (tiny change)
7560
7561         * doc/gnulib-tool.texi (CVS Issues): Fix typo.
7562
7563 2007-05-13  Bruno Haible  <bruno@clisp.org>
7564
7565         * stpcpy.m4 (gl_FUNC_STPCPY): Require AC_C_RESTRICT.
7566         * stpncpy.m4 (gl_FUNC_STPNCPY): Likewise.
7567         * strsep.m4 (gl_FUNC_STRSEP): Likewise.
7568         * strtok_r.m4 (gl_FUNC_STRTOK_R): Likewise.
7569         (gl_PREREQ_STRTOK_R): Don't require it here.
7570
7571 2007-05-13  Bruno Haible  <bruno@clisp.org>
7572
7573         * lib/stdlib_.h (mkdtemp, mkstemp): Comment out argument name. Needed
7574         when used in C++ mode.
7575
7576 2007-05-12  Bruno Haible  <bruno@clisp.org>
7577
7578         * lib/linebuffer.h: Tweak doc.
7579         * lib/linebuffer.c: Likewise.
7580
7581 2007-05-12  James Youngman  <jay@gnu.org>
7582
7583         * lib/linebuffer.c (readlinebuffer_delim): New function,
7584         like readlinebuffer, but use a caller-specified delimiter.
7585         (readlinebuffer): Just call readlinebuffer_delim with '\n'
7586         as the delimiter.
7587         * lib/linebuffer.h (readlinebuffer_delim): Declare it.
7588
7589 2007-05-12  Sergey Poznyakoff  <gray@gnu.org.ua>
7590
7591         * m4/openat.m4 (gl_FUNC_OPENAT): Do not require openat-die.
7592         * modules/openat (Files): Remove openat-die.c.
7593         (Depends-on): Add openat-die.
7594         * modules/openat-die: New module.
7595
7596 2007-05-06  Bruno Haible  <bruno@clisp.org>
7597
7598         * m4/printf.m4 (gl_PRINTF_FLAG_GROUPING, gl_VSNPRINTF_ZEROSIZE_C99):
7599         Update with info about Cygwin.
7600         * doc/functions/fprintf.texi: Update.
7601         * doc/functions/printf.texi: Update.
7602         * doc/functions/snprintf.texi: Update.
7603         * doc/functions/sprintf.texi: Update.
7604         * doc/functions/vfprintf.texi: Update.
7605         * doc/functions/vprintf.texi: Update.
7606         * doc/functions/vsnprintf.texi: Update.
7607         * doc/functions/vsprintf.texi: Update.
7608         Reported by Eric Blake.
7609
7610 2007-05-06  Bruno Haible  <bruno@clisp.org>
7611
7612         * lib/vasnprintf.c (VASNPRINTF) [NEED_PRINTF_FLAG_ZERO]: Perform the
7613         padding ourselves for the floating-point directives.
7614         * m4/printf.m4 (gl_PRINTF_FLAG_ZERO): New macro.
7615         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_FLAG_ZERO): New macro.
7616         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
7617         gl_PRINTF_FLAG_ZERO and test its result. Invoke
7618         gl_PREREQ_VASNPRINTF_FLAG_ZERO.
7619         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
7620         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Likewise.
7621         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
7622         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
7623         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
7624         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
7625         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
7626         * tests/test-snprintf-posix.h (test_function): Also check the width
7627         and some flags in the %f directive.
7628         * tests/test-sprintf-posix.h (test_function): Likewise.
7629         * tests/test-vasnprintf-posix.c (test_function): Likewise.
7630         * tests/test-vasprintf-posix.c (test_function): Likewise.
7631         * doc/functions/fprintf.texi: Update.
7632         * doc/functions/printf.texi: Update.
7633         * doc/functions/snprintf.texi: Update.
7634         * doc/functions/sprintf.texi: Update.
7635         * doc/functions/vfprintf.texi: Update.
7636         * doc/functions/vprintf.texi: Update.
7637         * doc/functions/vsnprintf.texi: Update.
7638         * doc/functions/vsprintf.texi: Update.
7639
7640 2007-05-06  Bruno Haible  <bruno@clisp.org>
7641
7642         * lib/vasnprintf.c (VASNPRINTF) [NEED_PRINTF_FLAG_GROUPING]: Don't
7643         pass the ' flag character to sprintf or snprintf.
7644         * m4/printf.m4 (gl_PRINTF_FLAG_GROUPING): New macro.
7645         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_FLAG_GROUPING): New macro.
7646         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
7647         gl_PRINTF_FLAG_GROUPING and test its result. Invoke
7648         gl_PREREQ_VASNPRINTF_FLAG_GROUPING.
7649         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
7650         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Likewise.
7651         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
7652         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
7653         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
7654         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
7655         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
7656         * tests/test-snprintf-posix.h (test_function): Also check the grouping
7657         flag.
7658         * tests/test-sprintf-posix.h (test_function): Likewise.
7659         * tests/test-vasnprintf-posix.c (test_function): Likewise.
7660         * tests/test-vasprintf-posix.c (test_function): Likewise.
7661         * doc/functions/fprintf.texi: Update.
7662         * doc/functions/printf.texi: Update.
7663         * doc/functions/snprintf.texi: Update.
7664         * doc/functions/sprintf.texi: Update.
7665         * doc/functions/vfprintf.texi: Update.
7666         * doc/functions/vprintf.texi: Update.
7667         * doc/functions/vsnprintf.texi: Update.
7668         * doc/functions/vsprintf.texi: Update.
7669
7670 2007-05-01  Bruno Haible  <bruno@clisp.org>
7671
7672         * tests/test-argp-2.sh (func_compare): Drop .exe suffix.
7673
7674 2007-05-03  Paul Eggert  <eggert@cs.ucla.edu>
7675
7676         * m4/d-ino.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_INO): Use better
7677         comment for D_INO_IN_DIRENT.  Problem reported by James Youngman.
7678
7679 2007-05-02  Paul Eggert  <eggert@cs.ucla.edu>
7680
7681         * m4/d-ino.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_INO): Test whether
7682         readdir returns garbage in d_ino.  Problem reported by Kaz Sasayama in
7683         <http://lists.gnu.org/archive/html/bug-gnulib/2007-05/msg00021.html>.
7684
7685 2007-05-02  Sergey Poznyakoff  <gray@gnu.org.ua>
7686
7687         * lib/argp-help.c (struct hol_entry): New member `ord'.
7688         (HOL_ENTRY_PTRCMP): Use ord for comparison
7689         (hol_sort): Initialize ord.
7690
7691 2007-05-01  Bruno Haible  <bruno@clisp.org>
7692
7693         * doc/functions/_Exit_C99.texi: Renamed from doc/functions/_Exit.texi.
7694         Reported by Eric Blake.
7695         * doc/gnulib.texi (Function Substitutes): Update.
7696
7697 2007-05-01  Bruno Haible  <bruno@clisp.org>
7698
7699         * doc/functions.texi: Remove file, now redundant through
7700         doc/functions/*.texi.
7701
7702 2007-05-01  Bruno Haible  <bruno@clisp.org>
7703
7704         * modules/argp (Depends-on): Add sleep.
7705
7706 2007-05-01  Bruno Haible  <bruno@clisp.org>
7707
7708         * modules/sleep-tests: New file.
7709         * tests/test-sleep.c: New file.
7710
7711         * modules/sleep: New file.
7712         * lib/sleep.c: New file.
7713         * m4/sleep.m4: New file.
7714         * lib/unistd_.h (sleep): New declaration.
7715         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_SLEEP,
7716         HAVE_SLEEP.
7717         * modules/unistd (Makefile.am): Substitute GNULIB_SLEEP, HAVE_SLEEP.
7718         * doc/functions/sleep.texi: Document the sleep module.
7719
7720 2007-05-01  Bruno Haible  <bruno@clisp.org>
7721
7722         * lib/sigprocmask.h: Remove file.
7723         * lib/signal_.h: Incorporate the previous contents of sigprocmask.h.
7724         * lib/sigprocmask.c: Include <signal.h> instead of sigprocmask.h.
7725         * m4/signal_h.m4 (gl_SIGNAL_H_DEFAULTS): Substitute GNULIB_SIGPROCMASK,
7726         HAVE_POSIX_SIGNALBLOCKING, HAVE_SIGSET_T.
7727         * m4/signalblocking.m4 (gl_SIGNALBLOCKING): Require
7728         gl_SIGNAL_H_DEFAULTS. Set HAVE_POSIX_SIGNALBLOCKING as a shell variable.
7729         (gl_PREREQ_SIGPROCMASK): Require gl_SIGNAL_H_DEFAULTS. Set
7730         HAVE_SIGSET_T as a shell variable.
7731         * modules/signal (Makefile.am): Substitute GNULIB_SIGPROCMASK,
7732         HAVE_POSIX_SIGNALBLOCKING, HAVE_SIGSET_T into signal.h.
7733         * modules/sigprocmask (Files): Remove lib/sigprocmask.h.
7734         (Depends-on): Add signal. Remove verify.
7735         (configure.ac): Invoke gl_SIGNAL_MODULE_INDICATOR.
7736         (Include): Mention <signal.h> instead of sigprocmask.h.
7737         * NEWS: Mention the change.
7738         * lib/fatal-signal.c: Don't include sigprocmask.h.
7739
7740 2007-05-01  Bruno Haible  <bruno@clisp.org>
7741
7742         * modules/signal: New file.
7743         * lib/signal_.h: New file.
7744         * m4/signal_h.m4: New file.
7745
7746 2007-05-01  Bruno Haible  <bruno@clisp.org>
7747
7748         * lib/wctype_.h: Test HAVE_ISWCNTRL at configure time.
7749         * m4/wctype.m4 (gl_WCTYPE_H): Substitute HAVE_ISWCNTRL.
7750         * modules/wctype (Makefile.am): Substitute HAVE_ISWCNTRL instead of
7751         HAVE_WCTYPE_CTMP_BUG into wctype.h.
7752
7753 2007-05-01  Bruno Haible  <bruno@clisp.org>
7754
7755         * lib/sys_stat_.h: Test HAVE_LSTAT, HAVE_DECL_MKDIR, HAVE_IO_H at
7756         configure time.
7757         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Substitute HAVE_LSTAT,
7758         HAVE_DECL_MKDIR, HAVE_IO_H via AC_SUBST.
7759         * modules/sys_stat (Makefile.am): Substitute their values into
7760         sys/stat.h.
7761
7762 2007-05-01  Bruno Haible  <bruno@clisp.org>
7763
7764         * lib/glob_.h: Test HAVE_SYS_CDEFS_H at configure time.
7765         * m4/glob.m4 (gl_PREREQ_GLOB): Substitute HAVE_SYS_CDEFS_H via AC_SUBST.
7766         * modules/glob (Makefile.am): Put HAVE_SYS_CDEFS_H value into glob.h.
7767
7768 2007-05-01  Bruno Haible  <bruno@clisp.org>
7769
7770         * doc/header/assert.texi: Undo last change: don't mention the gnulib
7771         'assert' module here.
7772
7773 2007-05-01  Bruno Haible  <bruno@clisp.org>
7774
7775         * doc/functions/*.texi: New files.
7776         * doc/functions/google-ranking.txt: New file.
7777         * doc/gnulib.texi (Function Substitutes): New chapter.
7778         (ctime, inet_ntoa): Remove sections.
7779         * doc/ctime.texi: Remove file.
7780         * doc/inet_ntoa.texi: Remove file.
7781         * doc/Makefile (gnulib.info, gnulib.html, gnulib.dvi): Update
7782         dependencies.
7783         (%.info): New rule, specifying a --reference-limit.
7784
7785 2007-05-01  Bruno Haible  <bruno@clisp.org>
7786
7787         * MODULES.html.sh (posix_functions): Remove 'exec', 'toc'.
7788
7789 2007-05-01  Bruno Haible  <bruno@clisp.org>
7790
7791         * modules/mkdir (Depends-on): Add sys_stat, because sys_stat provides
7792         the portability of 'mkdir' to mingw systems.
7793
7794 2007-05-01  Bruno Haible  <bruno@clisp.org>
7795
7796         * doc/headers/google-ranking.txt: New file.
7797
7798 2007-04-30  Eric Blake  <ebb9@byu.net>
7799
7800         Prefer fseeko to fseek.
7801         * modules/getpass (Depends-on): Add fseeko.
7802         * lib/getpass.c (getpass): Use fseeko, not fseek.
7803
7804 2007-04-30  Sergey Poznyakoff  <gray@gnu.org.ua>
7805
7806         * lib/argp-help.c (hol_entry_cmp): Option sorting algorithm
7807         assumes the sorting is stable, while most qsort implementations
7808         are not.  Use argument addresses to ensure they never compare as
7809         equal.
7810
7811         * tests/test-argp-2.sh (usage-indent test): Fix output
7812         (func_compare): Restore diff options
7813         * tests/test-argp.c: Restore #include "progname.h"
7814
7815 2007-04-29  Bruno Haible  <bruno@clisp.org>
7816
7817         * m4/printf.m4 (gl_VSNPRINTF_ZEROSIZE_C99): New macro.
7818         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
7819         gl_VSNPRINTF_ZEROSIZE_C99. Test gl_cv_func_vsnprintf_zerosize_c99.
7820         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
7821         * modules/snprintf-posix-tests (Files): Add tests/test-snprintf.c.
7822         (configure.ac): Define CHECK_SNPRINTF_POSIX.
7823         (TESTS, check_PROGRAMS): Add test-snprintf.
7824         * modules/vsnprintf-posix-tests (Files): Add tests/test-vsnprintf.c.
7825         (configure.ac): Define CHECK_VSNPRINTF_POSIX.
7826         (TESTS, check_PROGRAMS): Add test-vsnprintf.
7827         * tests/test-snprintf.c (main) [!CHECK_SNPRINTF_POSIX]: Disable
7828         assertions that fail on HP-UX, OSF/1, or IRIX.
7829         * tests/test-vsnprintf.c (main) [!CHECK_VSNPRINTF_POSIX]: Likewise.
7830
7831 2007-04-29  Bruno Haible  <bruno@clisp.org>
7832
7833         * MODULES.html.sh (posix_functions): Remove 'contents'.
7834
7835 2007-04-29  Karl Berry  <karl@gnu.org>
7836
7837         * config/srclist.txt (gendocs_template_min): new entry.
7838
7839 2007-04-29  Bruno Haible  <bruno@clisp.org>
7840
7841         Work around fpurge bug on BSD systems.
7842         * modules/fpurge (Makefile.am): Compile fpurge.c unconditionally.
7843         * m4/fpurge.m4 (gl_FUNC_FPURGE): Don't invoke AC_LIBOBJ.
7844         * lib/fpurge.h (fpurge): Don't handle __fpurge wrapper here. Define
7845         fpurge to rpl_fpurge if the system already has this function.
7846         * lib/fpurge.c (fpurge): Handle also the __fpurge wrapper case and
7847         the case where the system already has this function. Correct invariants
7848         on BSD systems.
7849         * lib/fseeko.c (rpl_fseeko): Update recognition of preceding fflush on
7850         BSD systems.
7851
7852 2007-04-29  Sergey Poznyakoff  <gray@gnu.org.ua>
7853
7854         * lib/argp-help.c (hol_cluster_cmp): Reverse comparison.  Change
7855         proposed by Sven Verdoolaege.
7856
7857         * tests/test-argp.c: Fix option ordering.  Test deeply clustered
7858         options.
7859         * tests/test-argp-2.sh (func_compare): Use diff instead of cmp.
7860         (usage and help tests): Update
7861
7862 2007-04-29  Bruno Haible  <bruno@clisp.org>
7863
7864         * tests/test-fflush.c (main): Use a file of size 17, not 10.
7865         Print more information in case of failure. Disable a test on BeOS.
7866
7867 2007-04-29  Bruno Haible  <bruno@clisp.org>
7868
7869         * tests/**/test-*.[hc] (ASSERT): Use fprintf to show the line number.
7870         This helps debugging on systems on which no gdb is available.
7871
7872 2007-04-29  Bruno Haible  <bruno@clisp.org>
7873
7874         * lib/freading.h: Improve comments.
7875         * lib/fwriting.h: Likewise.
7876         * tests/test-freading.c (main): Don't check freading immediately after
7877         repositioning. Needed for glibc.
7878
7879 2007-04-29  Bruno Haible  <bruno@clisp.org>
7880
7881         * lib/freading.c (freading): Trivial simplification.
7882
7883 2007-04-28  Bruno Haible  <bruno@clisp.org>
7884
7885         * tests/test-fwriting.c (main): Also test the interaction between
7886         fflush and fwriting.
7887         * modules/fwriting-tests (Depends-on): Add fflush.
7888
7889         * tests/test-freading.c (main): Also test the interaction between
7890         fflush and freading.
7891         * modules/freading-tests (Depends-on): Add fflush.
7892
7893 2007-04-28  Bruno Haible  <bruno@clisp.org>
7894
7895         * lib/stdio_.h (fseek, ftell): Provide link warnings suggesting to use
7896         fseeko and ftello.
7897         Suggested by Eric Blake.
7898
7899 2007-04-28  Jim Meyering  <jim@meyering.net>
7900
7901         Avoid false-negative in gl_STDINT_H's C99 conformance test.
7902         * m4/stdint.m4 (gl_STDINT_H): When checking whether stdint.h conforms
7903         to C99, include all of gl_STDINT_INCLUDES, not just <stddef.h>.
7904
7905 2007-04-27  Eric Blake  <ebb9@byu.net>
7906
7907         * doc/headers/assert.texi (assert.h): Document assert module use.
7908
7909 2007-04-27  Bruno Haible  <bruno@clisp.org>
7910
7911         * doc/headers/*.texi: New files.
7912         * doc/gnulib.texi (Header File Substitutes): New chapter.
7913         * doc/Makefile (gnulib.info, gnulib.html, gnulib.dvi): Specify
7914         dependencies.
7915         (standards.info ,standards.html, standards.dvi): Update dependencies.
7916         (mostlyclean, clean): New targets.
7917
7918 2007-04-27  Bruno Haible  <bruno@clisp.org>
7919
7920         * lib/sysexits_.h: Renamed from lib/sysexit_.h.
7921         * modules/sysexits (Files, Makefile.am): Update.
7922
7923         * lib/sys_socket_.h: Renamed from lib/socket_.h.
7924         * modules/sys_socket (Files, Makefile.am): Update.
7925
7926         * lib/sys_stat_.h: Renamed from lib/stat_.h.
7927         * modules/sys_stat (Files, Makefile.am): Update.
7928
7929 2007-04-27  Eric Blake  <ebb9@byu.net>
7930
7931         * lib/freading.h: Improve comments.
7932         * lib/fwriting.h: Likewise.
7933         * lib/fflush.c: Likewise.
7934
7935         Fix closein for mingw.
7936         * modules/closein-tests: Add tests for closein.
7937         * tests/test-closein.c: New file.
7938         * tests/test-closein.sh: Likewise.
7939         * lib/unistd_.h [!SEEK_CUR]: Mingw also needs stdlib.h for _exit.
7940         * lib/closein.c (close_stdin): Don't fflush non-seekable streams.
7941
7942 2007-04-27  Bruno Haible  <bruno@clisp.org>
7943
7944         * lib/inttypes_.h [_DECC]: Don't use #include_next if the compiler
7945         version is < 6.
7946         * lib/math_.h [__DECC]: Likewise.
7947         * lib/stdio_.h [__DECC]: Likewise.
7948         * lib/stdlib_.h [__DECC]: Likewise.
7949         * lib/string_.h [__DECC]: Likewise.
7950         * lib/time_.h [__DECC]: Likewise.
7951         * lib/wchar_.h [__DECC]: Likewise.
7952         * lib/wctype_.h [__DECC]: Likewise.
7953
7954 2007-04-27  Bruno Haible  <bruno@clisp.org>
7955
7956         * tests/test-fbufmode.c (main): Relax test, to avoid failure on mingw.
7957
7958 2007-04-27  Bruno Haible  <bruno@clisp.org>
7959
7960         * lib/fflush.c: Add comments.
7961         * modules/fpurge-tests (Depends-on): Add fflush.
7962         * modules/freadable-tests (Depends-on): Likewise.
7963         * modules/fwritable-tests (Depends-on): Likewise.
7964
7965 2007-04-27  Charles Wilson  <libtool@cwilson.fastmail.fm>
7966
7967         * m4/argz.m4 (gl_FUNC_ARGZ): Use !HAVE_WORKING_ARGZ instead of
7968         SYSTEM_ARGZ_IS_BROKEN.  Also, minor stylistic improvements.
7969         Report by Bruno Haible <bruno@clisp.org>.
7970
7971 2007-04-26  Eric Blake  <ebb9@byu.net>
7972
7973         Fix fflush on mingw.
7974         * modules/fflush (Depends-on): Add freading.
7975         * lib/fflush.c (rpl_fflush): Use freading to avoid losing buffered
7976         but unread data.
7977
7978 2007-04-26  Eric Blake  <ebb9@byu.net>
7979         and Bruno Haible  <bruno@clisp.org>
7980
7981         Implement freading and fwriting.
7982         * lib/freading.c: New file.
7983         * lib/freading.h: Likewise.
7984         * m4/freading.m4: Likewise.
7985         * modules/freading: Likewise.
7986         * modules/freading-tests: Likewise.
7987         * tests/test-freading.c: Likewise.
7988         * lib/fwriting.c: New file.
7989         * lib/fwriting.h: Likewise.
7990         * m4/fwriting.m4: Likewise.
7991         * modules/fwriting: Likewise.
7992         * modules/fwriting-tests: Likewise.
7993         * tests/test-fwriting.c: Likewise.
7994         * MODULES.html.sh (File stream based Input/Output): Mention them.
7995
7996 2007-04-26  Bruno Haible  <bruno@clisp.org>
7997
7998         * lib/stdio_.h (fseeko, ftello): Check that off_t has the same size as
7999         'long' when we assume it.
8000         Suggested by Eric Blake.
8001
8002 2007-04-26  Bruno Haible  <bruno@clisp.org>
8003
8004         Ensure fseeko, ftello are declared on glibc systems.
8005         * modules/fflush (configure.ac-early): Require AC_FUNC_FSEEKO.
8006         * modules/fseeko (configure.ac-early): Likewise.
8007         * modules/ftello (configure.ac-early): Likewise.
8008         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Don't define HAVE_FSEEKO, rely on
8009         AC_FUNC_FSEEKO for this.
8010         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Inline gl_CHECK_FSEEKO.
8011         (gl_CHECK_FSEEKO): Remove macro.
8012
8013 2007-04-26  Bruno Haible  <bruno@clisp.org>
8014
8015         * tests/test-fflush.c (main): Also check the ftell result after
8016         fflush and fseek/fseeko.
8017         * lib/fflush.c (rpl_fflush): For BSD implementations, update the
8018         file descriptor position cache in the stream.
8019         * lib/fseeko.c (rpl_fseeko): Likewise.
8020
8021 2007-04-26  Bruno Haible  <bruno@clisp.org>
8022
8023         * modules/fflush-tests (Depends-on): Add fseeko.
8024
8025 2007-04-25  Charles Wilson  <libtool@cwilson.fastmail.fm>
8026             Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8027
8028         * lib/argz_.h: ensure error_t definition is obtained in same
8029         mechanism system argz.h would have.
8030         * m4/argz.m4 (gl_FUNC_ARGZ): add new test to check if $host's
8031         argz facilities are known bad.  Err on the side of caution if
8032         cross-compiling.
8033
8034 2007-04-25  Eric Blake  <ebb9@byu.net>
8035
8036         * lib/fpurge.c (includes): Use stdlib.h for free.
8037         * tests/test-fflush.c (main): Also test fflush-fseeko.
8038
8039 2007-04-25  Bruno Haible  <bruno@clisp.org>
8040
8041         Make fflush+fseek POSIX-compliant on FreeBSD and MacOS X.
8042         * lib/fseeko.c: New file.
8043         * lib/stdio_.h: Include <sys/types.h> when off_t is needed.
8044         (fseeko, fseek): Define to replacements if REPLACE_FFLUSH.
8045         * m4/fseeko.m4 (gl_CHECK_FSEEKO): New macro, extracted from
8046         gl_FUNC_FSEEKO.
8047         (gl_FUNC_FSEEKO): Invoke it.
8048         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Arrange to compile fseeko.c. Invoke
8049         gl_CHECK_FSEEKO. Define HAVE_FSEEKO.
8050         * modules/fflush (Files): Add lib/fseeko.c, m4/fseeko.m4.
8051
8052 2007-04-25  Bruno Haible  <bruno@clisp.org>
8053
8054         * modules/fflush (Depends-on): Add ftello.
8055
8056 2007-04-25  Bruno Haible  <bruno@clisp.org>
8057
8058         * modules/ftello-tests: New file.
8059         * tests/test-ftello.c: New file.
8060
8061         * modules/ftello: New file.
8062         * m4/ftello.m4: New file.
8063         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FTELLO,
8064         HAVE_FTELLO.
8065         * lib/stdio_.h (ftello): New declaration.
8066         * modules/stdio (Makefile.am): Substitute also GNULIB_FTELLO,
8067         HAVE_FTELLO.
8068
8069 2007-04-25  Bruno Haible  <bruno@clisp.org>
8070
8071         * modules/fseeko-tests: New file.
8072         * tests/test-fseeko.c: New file.
8073
8074         * modules/fseeko: New file.
8075         * m4/fseeko.m4: New file.
8076         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FSEEKO,
8077         HAVE_FSEEKO.
8078         * lib/stdio_.h (fseeko): New declaration.
8079         * modules/stdio (Makefile.am): Substitute also GNULIB_FSEEKO,
8080         HAVE_FSEEKO.
8081
8082 2007-04-25  Bruno Haible  <bruno@clisp.org>
8083
8084         * lib/stdio_.h (fflush): Add support for GNULIB_POSIXCHECK.
8085
8086 2007-04-25  Bruno Haible  <bruno@clisp.org>
8087
8088         * lib/unistd_.h: Include <stdio.h> if needed to get the SEEK_* macros.
8089         * tests/test-stdio.c: Check that the various SEEK_* macros are defined.
8090         * tests/test-unistd.c: Likewise.
8091         * tests/test-fcntl.c: Likewise.
8092
8093 2007-04-23  Eric Blake  <ebb9@byu.net>
8094
8095         * lib/fflush.c: Fix missing include.
8096         Reported by Bruno Haible.
8097
8098 2007-04-23  Bruno Haible  <bruno@clisp.org>
8099
8100         * lib/fpurge.c (fpurge) [glibc, BSD]: Free a malloc()ed ungetc buffer.
8101         Reported by Eric Blake.
8102
8103 2007-04-23  Bruno Haible  <bruno@clisp.org>
8104
8105         * lib/fbufmode.c (fbufmode): Port to Solaris/SPARC64.
8106
8107 2007-04-23  Bruno Haible  <bruno@clisp.org>
8108
8109         * lib/fseterr.c (fseterr): Don't hardcode the value of _IOERR.
8110
8111 2007-04-23  Bruno Haible  <bruno@clisp.org>
8112
8113         * tests/test-fbufmode.c (main): Be prepared to a failure of setvbuf.
8114         Needed on HP-UX 11.
8115
8116 2007-04-16  Eric Blake  <ebb9@byu.net>
8117
8118         Make fflush rely on fpurge.
8119         * lib/fflush.c (rpl_fflush): Rely on fpurge module, rather than
8120         open coding all variants.
8121         * modules/fflush (Depends-on): Add fpurge and unistd.
8122         * modules/fflush-tests (Depends-on): Unistd is no longer extra.
8123         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Simplify.
8124
8125         Fix --with-tests compilation on cygwin.
8126         * modules/argmatch-tests (Makefile.am): List gnulib library first
8127         in LDADD.
8128         * modules/argp-tests (Makefile.am): Likewise.
8129         * modules/array-list-tests (Makefile.am): Likewise.
8130         * modules/array-oset-tests (Makefile.am): Likewise.
8131         * modules/avltree-list-tests (Makefile.am): Likewise.
8132         * modules/avltree-oset-tests (Makefile.am): Likewise.
8133         * modules/avltreehash-list-tests (Makefile.am): Likewise.
8134         * modules/carray-list-tests (Makefile.am): Likewise.
8135         * modules/dirname-tests (Makefile.am): Likewise.
8136         * modules/frexp-tests (Makefile.am): Likewise.
8137         * modules/isnanl-tests (Makefile.am): Likewise.
8138         * modules/linked-list-tests (Makefile.am): Likewise.
8139         * modules/linkedhash-list-tests (Makefile.am): Likewise.
8140         * modules/lock-tests (Makefile.am): Likewise.
8141         * modules/rbtree-list-tests (Makefile.am): Likewise.
8142         * modules/rbtree-oset-tests (Makefile.am): Likewise.
8143         * modules/rbtreehash-list-tests (Makefile.am): Likewise.
8144         * modules/tls-tests (Makefile.am): Likewise.
8145         * modules/tsearch-tests (Makefile.am): Likewise.
8146         * modules/xvasprintf-tests (Makefile.am): Likewise.
8147
8148         Fix fpurge for cygwin.
8149         * lib/fpurge.c (fpurge): Fix order of operation flub, and return a
8150         value.
8151         * modules/fpurge-tests (Depends-on): Clean up trash.
8152
8153 2007-04-16  Simon Josefsson  <simon@josefsson.org>
8154
8155         * lib/gc-libgcrypt.c (gc_hash_open): Shut up compiler warnings.
8156
8157         * m4/autobuild.m4: Re-indent.
8158
8159 2007-04-13  Bruno Haible  <bruno@clisp.org>
8160
8161         * modules/fpurge-tests: New file.
8162         * tests/test-fpurge.c: New file.
8163
8164         * modules/fpurge: New file.
8165         * lib/fpurge.h: New file.
8166         * lib/fpurge.c: New file.
8167         * m4/fpurge.m4: New file.
8168
8169 2007-04-13  Bruno Haible  <bruno@clisp.org>
8170
8171         * modules/fbufmode-tests: New file.
8172         * tests/test-fbufmode.c: New file.
8173
8174         * modules/fbufmode: New file.
8175         * lib/fbufmode.h: New file.
8176         * lib/fbufmode.c: New file.
8177         * m4/fbufmode.m4: New file.
8178
8179 2007-04-13  Bruno Haible  <bruno@clisp.org>
8180
8181         * modules/fwritable-tests: New file.
8182         * tests/test-fwritable.c: New file.
8183
8184         * modules/fwritable: New file.
8185         * lib/fwritable.h: New file.
8186         * lib/fwritable.c: New file.
8187         * m4/fwritable.m4: New file.
8188
8189 2007-04-13  Bruno Haible  <bruno@clisp.org>
8190
8191         * modules/freadable-tests: New file.
8192         * tests/test-freadable.c: New file.
8193
8194         * modules/freadable: New file.
8195         * lib/freadable.h: New file.
8196         * lib/freadable.c: New file.
8197         * m4/freadable.m4: New file.
8198
8199 2007-04-13  Bruno Haible  <bruno@clisp.org>
8200
8201         * modules/fflush-tests (Makefile.am): Remove EXTRA_DIST. Augment
8202         MOSTLYCLEANFILES.
8203
8204 2007-04-13  Paul Eggert  <eggert@cs.ucla.edu>
8205
8206         * build-aux/bootstrap (gnulib_tool_option_extras): New var, used by
8207         gzip bootstrap.conf to avoid dragging in i18n machinery.
8208         (gnulib_tool_option): Use it.
8209
8210 2007-04-13  Bruno Haible  <bruno@clisp.org>
8211
8212         * tests/test-vasnprintf-posix.c (test_function): Add tests for %f and
8213         %F directives.
8214         * tests/test-vasprintf-posix.c (test_function): Likewise.
8215         * tests/test-snprintf-posix.h (test_function): Likewise.
8216         * tests/test-sprintf-posix.h (test_function): Likewise.
8217         * tests/test-fprintf-posix.h (test_function): Likewise.
8218         * tests/test-printf-posix.h (test_function): Likewise.
8219         * tests/test-fprintf-posix.out: Likewise.
8220
8221 2007-04-13  Bruno Haible  <bruno@clisp.org>
8222
8223         * modules/lock-tests (configure.ac): For LIBSCHED, try also -lposix4.
8224         * modules/tls-tests (configure.ac): Likewise.
8225         Reported by Arto C. Nirkko <anirkko@insel.ch>.
8226
8227 2007-04-13  Bruno Haible  <bruno@clisp.org>
8228
8229         * lib/tls.c (glthread_tls_get): Fix return type.
8230         Patch by Arto C. Nirkko <anirkko@insel.ch>.
8231
8232 2007-04-12  Eric Blake  <ebb9@byu.net>
8233
8234         * modules/gettime (Depends-on): Remove gettime.
8235         Reported by Dmitry V. Levin.
8236
8237 2007-04-12  Bruno Haible  <bruno@clisp.org>
8238
8239         * modules/fflush (Include): Mention <stdio.h>.
8240         * modules/strtoimax (Include): Mention <inttypes.h>.
8241         * modules/strtoumax (Include): Likewise.
8242
8243 2007-04-12  Eric Blake  <ebb9@byu.net>
8244
8245         * .cvsignore: New file.
8246         * .gitignore: Likewise.
8247
8248 2007-04-12  Bruno Haible  <bruno@clisp.org>
8249
8250         * modules/iconv-tests (test_iconv_LDADD): Mention -liconv after LDADD,
8251         not before, since $(LDADD) often contains libgnu.a.
8252         * modules/striconv-tests (test_striconv_LDADD): Likewise.
8253         * modules/striconveh-tests (test_striconveh_LDADD): Likewise.
8254         * modules/striconveha-tests (test_striconveha_LDADD): Likewise.
8255         Needed on Cygwin.
8256
8257 2007-04-12  Eric Blake  <ebb9@byu.net>
8258
8259         Work around glibc's failure to flush stdin on fclose.
8260         * lib/closein.c (close_stdin): Flush stdin before closing.
8261
8262         Work around glibc's failure to reset seekable stdin on exit.
8263         * modules/closein: New module.
8264         * lib/closein.c: New file.
8265         * lib/closein.h: Likewise.
8266         * m4/closein.m4: Likewise.
8267         * MODULES.html.sh (File stream based Input/Output): Document it.
8268
8269 2007-04-12  Simon Josefsson  <simon@josefsson.org>
8270
8271         * gnulib-tool: Rename generated 'autobuild' script to
8272         'do-autobuild' in --create-megatestdir output.
8273
8274         * doc/gnulib.texi (Build robot for gnulib): Fix.
8275
8276 2007-04-12  Simon Josefsson  <simon@josefsson.org>
8277
8278         * modules/sysexits (Depends-on): Add absolute-header.
8279
8280 2007-04-12  Eric Blake  <ebb9@byu.net>
8281
8282         No need to preserve errno on success.
8283         * lib/fflush.c (rpl_fflush): Simplify errno tracking.
8284         Reported by Bruno Haible.
8285
8286 2007-04-12  Simon Josefsson  <simon@josefsson.org>
8287
8288         * MODULES.html.sh (Support for maintaining and releasing
8289         projects): Add autobuild.  Suggested by Eric Blake <ebb9@byu.net>.
8290
8291 2007-04-12  Simon Josefsson  <simon@josefsson.org>
8292
8293         * gnulib-tool (func_modules_add_dummy): Respect --avoid=dummy.
8294
8295 2007-04-12  Simon Josefsson  <simon@josefsson.org>
8296
8297         * modules/autobuild: New module.
8298
8299         * m4/autobuild.m4: New file.
8300
8301 2007-04-11  Bruno Haible  <bruno@clisp.org>
8302
8303         * lib/vasnprintf.c (VASNPRINTF): Implement the %F directive using the
8304         %f directive, if NEED_PRINTF_DIRECTIVE_F is defined.
8305         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_F): New macro.
8306         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_F): New macro.
8307         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
8308         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
8309         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
8310         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
8311         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
8312         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
8313         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Invoke
8314         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
8315         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
8316         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Invoke
8317         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
8318         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
8319         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Invoke
8320         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
8321         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
8322         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Invoke
8323         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
8324         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
8325         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Invoke
8326         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
8327         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
8328         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Invoke
8329         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
8330         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
8331         Reported by Eric Blake.
8332
8333 2007-04-11  Bruno Haible  <bruno@clisp.org>
8334
8335         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Fix test. It always failed.
8336
8337 2007-04-10  Bruno Haible  <bruno@clisp.org>
8338
8339         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Add a test for correct result
8340         for NaN and Infinity. Needed on FreeBSD 6.1.
8341         * tests/test-vasnprintf-posix.c (test_function): Undo last change
8342         regarding results for "%010a" of Infinity and NaN.
8343         * tests/test-vasprintf-posix.c (test_function): Likewise.
8344         * tests/test-snprintf-posix.h (test_function): Likewise.
8345         * tests/test-sprintf-posix.h (test_function): Likewise.
8346         * tests/test-fprintf-posix.h (test_function): Likewise.
8347         * tests/test-printf-posix.h (test_function): Likewise.
8348         * tests/test-fprintf-posix.out: Likewise.
8349
8350 2007-04-10  Bruno Haible  <bruno@clisp.org>
8351
8352         * modules/locale-tests: New file.
8353         * tests/test-locale.c: New file.
8354
8355         * modules/locale: New file.
8356         * lib/locale_.h: New file.
8357         * m4/locale_h.m4: New file.
8358
8359 2007-04-10  Paul Eggert  <eggert@cs.ucla.edu>
8360             Bruno Haible  <bruno@clisp.org>
8361
8362         * m4/signbit.m4 (gl_SIGNBIT): When the sign bit position could not
8363         be determined, test for availability of the copysignf, copysign,
8364         copysignl functions.
8365         * lib/signbitf.c (gl_signbitf): Use copysignf if available in libc.
8366         * lib/signbitd.c (gl_signbitd): Use copysign if available in libc.
8367         * lib/signbitl.c (gl_signbitl): Use copysignl if available in libc.
8368
8369 2007-04-09  Eric Blake  <ebb9@byu.net>
8370
8371         * lib/stdio_.h [REPLACE_FFLUSH]: Declare rpl_fflush.
8372         * modules/stdio (Makefile.am): Support fflush.
8373         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Likewise.
8374         * modules/fflush: New file.
8375         * lib/fflush.c: Likewise.
8376         * m4/fflush.m4: Likewise.
8377         * modules/fflush-tests: New test.
8378         * tests/test-fflush.c: Likewise.
8379         * MODULES.html.sh (Input/output <stdio.h>): Document new module.
8380
8381 2007-04-06  Bruno Haible  <bruno@clisp.org>
8382
8383         * lib/vasnprintf.c: Include <math.h>. Don't include float+.h.
8384         (VASNPRINTF): Use signbit for faster determination whether to print a
8385         minus sign.
8386         * modules/vasnprintf (Files): Remove lib/float+.h.
8387         * modules/fprintf-posix (Depends-on): Add signbit.
8388         * modules/snprintf-posix (Depends-on): Likewise.
8389         * modules/sprintf-posix (Depends-on): Likewise.
8390         * modules/vasnprintf-posix (Depends-on): Likewise.
8391         * modules/vasprintf-posix (Depends-on): Likewise.
8392         * modules/vfprintf-posix (Depends-on): Likewise.
8393         * modules/vsnprintf-posix (Depends-on): Likewise.
8394         * modules/vsprintf-posix (Depends-on): Likewise.
8395
8396 2007-04-06  Bruno Haible  <bruno@clisp.org>
8397
8398         * tests/test-frexp.c (main): Test also the sign bit of zero results.
8399         * tests/test-frexpl.c (main): Likewise.
8400         * tests/test-ldexpl.c (main): Likewise.
8401         * modules/frexp-tests (Depends-on): Add signbit.
8402         * modules/frexpl-tests (Depdends-on): Likewise.
8403         * modules/ldexpl-tests (Depdends-on): Likewise.
8404
8405 2007-04-06  Bruno Haible  <bruno@clisp.org>
8406
8407         * modules/signbit-tests: New file.
8408         * tests/test-signbit.c: New file.
8409
8410         * modules/signbit: New file.
8411         * lib/signbitf.c: New file.
8412         * lib/signbitd.c: New file.
8413         * lib/signbitl.c: New file.
8414         * m4/signbit.m4: New file.
8415         * lib/math_.h (gl_signbitf, gl_signbitd, gl_signbitl): New declarations.
8416         (signbit): New macro.
8417         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_SIGNBIT and
8418         REPLACE_SIGNBIT.
8419         * modules/math (Makefile.am) Substibute also GNULIB_SIGNBIT and
8420         REPLACE_FREXPL into math.h.
8421
8422 2007-04-06  Bruno Haible  <bruno@clisp.org>
8423
8424         * modules/isnanf-nolibm-tests: New file.
8425         * tests/test-isnanf.c: New file.
8426
8427         * modules/isnanf-nolibm: New file.
8428         * lib/isnanf.h: New file.
8429         * lib/isnanf.c: New file.
8430         * lib/isnan.c: Consider the USE_FLOAT macro.
8431         * m4/isnanf.m4: New file.
8432
8433 2007-04-06  Bruno Haible  <bruno@clisp.org>
8434
8435         * modules/gettext-h (configure.ac): AC_SUBST LIBINTL and LTLIBINTL.
8436         (Link): New section.
8437
8438         * modules/canonicalize-lgpl-tests (Makefile.am): Undo last change.
8439
8440 2007-04-06  Bruno Haible  <bruno@clisp.org>
8441
8442         Assume the 'long double' type.
8443         * m4/longdouble.m4: Remove file.
8444         * config/srclist.txt: Don't mention longdouble.m4.
8445         * lib/allocsa.h: Assume HAVE_LONG_DOUBLE to be true.
8446         * lib/float+.h: Likewise.
8447         * lib/frexp.c: Likewise.
8448         * lib/printf-args.h: Likewise.
8449         * lib/printf-args.c: Likewise.
8450         * lib/printf-frexp.c: Likewise.
8451         * lib/printf-parse.c: Likewise.
8452         * lib/vasnprintf.c: Likewise.
8453         * m4/allocsa.m4: Remove gt_TYPE_LONGDOUBLE invocation.
8454         * m4/intl.m4: Likewise.
8455         * m4/isnanl.m4: Likewise.
8456         * m4/printf.m4: Likewise.
8457         * m4/printf-frexpl.m4: Likewise.
8458         * m4/vasnprintf.m4: Likewise.
8459         * modules/allocsa (Files): Remove m4/longdouble.m4.
8460         * modules/gettext (Files): Likewise.
8461         * modules/relocatable-prog-wrapper (Files): Likewise.
8462         * modules/vasnprintf (Files): Likewise.
8463         * modules/isnanl (Files): Likewise.
8464         (Include): Simplify.
8465         * modules/isnanl-nolibm (Files): Remove m4/longdouble.m4.
8466         (Include): Simplify.
8467         * modules/printf-frexpl (Files): Remove m4/longdouble.m4.
8468         (Include): Simplify.
8469         * modules/snprintf-posix-tests (Files): Remove m4/longdouble.m4.
8470         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
8471         * modules/sprintf-posix-tests (Files): Remove m4/longdouble.m4.
8472         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
8473         * modules/vasnprintf-posix-tests (Files): Remove m4/longdouble.m4.
8474         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
8475         * modules/vasprintf-posix-tests (Files): Remove m4/longdouble.m4.
8476         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
8477         * modules/vsnprintf-posix-tests (Files): Remove m4/longdouble.m4.
8478         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
8479         * modules/vsprintf-posix-tests (Files): Remove m4/longdouble.m4.
8480         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
8481         * tests/test-isnanl-nolibm.c: Assume HAVE_LONG_DOUBLE to be true.
8482         * tests/test-isnanl.c: Likewise.
8483         * tests/test-snprintf-posix.h: Likewise.
8484         * tests/test-sprintf-posix.h: Likewise.
8485         * tests/test-vasnprintf-posix.c: Likewise.
8486         * tests/test-vasnprintf-posix2.c: Likewise.
8487         * tests/test-vasprintf-posix.c: Likewise.
8488
8489 2007-04-06  Bruno Haible  <bruno@clisp.org>
8490
8491         Fix problem with Compaq (ex-DEC) Desktop C compiler on Tru64.
8492         * lib/math_.h [__DECC]: Include the overridden include file through
8493         #include_next, outside the double-inclusion guard.
8494         * lib/stdio_.h [__DECC]: Likewise.
8495         * lib/stdlib_.h [__DECC]: Likewise.
8496         * lib/string_.h [__DECC]: Likewise.
8497         * lib/time_.h [__DECC]: Likewise.
8498         * lib/wchar_.h [__DECC]: Likewise.
8499         * lib/wctype_.h [__DECC]: Likewise.
8500         * lib/inttypes_.h [__DECC]: Likewise.
8501         Reported by Albert Chin <china@thewrittenword.com> in
8502         <http://lists.gnu.org/archive/html/bug-gnulib/2007-04/msg00088.html>.
8503
8504 2007-04-04  Eric Blake  <ebb9@byu.net>
8505
8506         * m4/stdint.m4 (gl_STDINT_H): Detect WINT_MAX bug in cygwin
8507         1.5.x.
8508
8509 2007-04-04  Bruno Haible  <bruno@clisp.org>
8510
8511         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Add a test for correct
8512         rounding. Don't assume that FreeBSD 6 and NetBSD 4 pass this test.
8513
8514 2007-04-04  Bruno Haible  <bruno@clisp.org>
8515
8516         * tests/test-vasnprintf-posix.c (test_function): Allow two possible
8517         results for "%010a" of Infinity and NaN.
8518         * tests/test-vasprintf-posix.c (test_function): Likewise.
8519         * tests/test-snprintf-posix.h (test_function): Likewise.
8520         * tests/test-sprintf-posix.h (test_function): Likewise.
8521         * tests/test-fprintf-posix.h (test_function): Remove these tests.
8522         * tests/test-printf-posix.h (test_function): Likewise.
8523         * tests/test-fprintf-posix.out: Update.
8524         Needed for FreeBSD 6.1.
8525
8526 2007-04-04  Bruno Haible  <bruno@clisp.org>
8527
8528         * DEPENDENCIES: Remove mentions of tar and gzip, since they are not
8529         directly used by the gnulib modules nor by gnulib-tool.
8530
8531 2007-04-04  Paul Eggert  <eggert@cs.ucla.edu>
8532
8533         * DEPENDENCIES: Give overall description of version dependency
8534         desirability.  Use more-typical names for apps.
8535         Add shell, coreutils, diffutils, grep, tar, gzip.
8536
8537 2007-04-04  Simon Josefsson  <simon@josefsson.org>
8538
8539         * MODULES.html.sh: Rename crypto modules.  Remove iconvme.
8540
8541 2007-04-04  Karl Berry  <karl@gnu.org>
8542
8543         * MODULES.html.sh (func_module): missing '.
8544
8545 2007-04-03  Bruno Haible  <bruno@clisp.org>
8546
8547         * modules/argmatch-tests (Makefile.am): New variable
8548         test_argmatch_LDADD.
8549         * modules/argp-tests (Makefile.am): New variable test_argp_LDADD.
8550         * modules/array-list-tests (Makefile.am): New variable
8551         test_array_list_LDADD.
8552         * modules/array-oset-tests (Makefile.am): New variable
8553         test_array_oset_LDADD.
8554         * modules/avltree-list-tests (Makefile.am): New variable
8555         test_avltree_list_LDADD.
8556         * modules/avltree-oset-tests (Makefile.am): New variable
8557         test_avltree_oset_LDADD.
8558         * modules/avltreehash-list-tests (Makefile.am): New variable
8559         test_avltreehash_list_LDADD.
8560         * modules/canonicalize-lgpl-tests (Makefile.am): New variable
8561         test_canonicalize_lgpl_LDADD.
8562         * modules/carray-list-tests (Makefile.am): New variable
8563         test_carray_list_LDADD.
8564         * modules/dirname-tests (Makefile.am): New variable
8565         test_dirname_LDADD.
8566         * modules/linked-list-tests (Makefile.am): New variable
8567         test_linked_list_LDADD.
8568         * modules/linkedhash-list-tests (Makefile.am): New variable
8569         test_linkedhash_list_LDADD.
8570         * modules/rbtree-list-tests (Makefile.am): New variable
8571         test_rbtree_list_LDADD.
8572         * modules/rbtree-oset-tests (Makefile.am): New variable
8573         test_rbtree_oset_LDADD.
8574         * modules/rbtreehash-list-tests (Makefile.am): New variable
8575         test_rbtreehash_list_LDADD.
8576         * modules/xvasprintf-tests (Makefile.am): New variable
8577         test_xvasprintf_LDADD.
8578         Reported by Eric Blake.
8579
8580 2007-04-03  Eric Blake  <ebb9@byu.net>
8581
8582         * DEPENDENCIES: Weaken m4 requirements.
8583
8584 2007-04-03  Bruno Haible  <bruno@clisp.org>
8585
8586         * modules/frexp-tests (configure.ac): Remove AC_SUBST.
8587         * modules/isnanl-tests (configure.ac): Likewise.
8588
8589 2007-04-03  Ben Pfaff  <blp@gnu.org>
8590
8591         * modules/iconv_open: Add $(srcdir)/ to source directory
8592         references in Makefile fragments that call gperf, to fix VPATH
8593         builds.
8594
8595 2007-04-03  Bruno Haible  <bruno@clisp.org>
8596
8597         * modules/ldexpl (Depends-on): Add isnanl, remove isnanl-nolibm.
8598         * lib/ldexpl.c: Undo last change.
8599
8600 2007-04-03  Bruno Haible  <bruno@clisp.org>
8601
8602         * modules/printf-frexpl (Depends-on): Undo last change.
8603         (Files): Add m4/ldexpl.m4.
8604
8605 2007-04-03  Bruno Haible  <bruno@clisp.org>
8606
8607         * m4/isnanl.m4 (gl_FUNC_ISNANL): Substitute ISNANL_LIBM.
8608         * modules/isnanl (Link): New section.
8609
8610         * m4/frexp.m4 (gl_FUNC_FREXP): Substitute FREXP_LIBM.
8611         * modules/frexp (Link): New section.
8612
8613         * m4/frexpl.m4 (gl_FUNC_FREXPL): Substitute FREXPL_LIBM.
8614         * modules/frexpl (Link): New section.
8615
8616         * m4/ldexpl.m4 (gl_FUNC_LDEXPL): Substitute LDEXPL_LIBM.
8617         * modules/ldexpl (Link): New section.
8618
8619 2007-04-03  Bruno Haible  <bruno@clisp.org>
8620
8621         * modules/TEMPLATE-EXTENDED: New file.
8622         * gnulib-tool (func_all_modules, func_verify_module): Exclude it.
8623
8624 2007-04-03  Bruno Haible  <bruno@clisp.org>
8625
8626         * DEPENDENCIES: New file.
8627         Suggested by Simon Josefsson.
8628
8629 2007-04-03  Bruno Haible  <bruno@clisp.org>
8630
8631         * doc/gnulib.texi: Escape @.
8632
8633 2007-04-03  James Youngman  <jay@gnu.org>
8634         and Paul Eggert  <eggert@cs.ucla.edu>
8635
8636         * lib/stat-time.h (get_stat_birthtime): Check for zero-valued
8637         birthtime on all systems that have birthtime, not just those which
8638         use st_birthtimensec rather than st_birthtim.  Putting zero in
8639         st_birthtim.tv_sec is how (for example) FreeBSD/x86 6.1 indicates
8640         that the birth time is not available for files on an NFS mount.
8641
8642 2007-04-03  Simon Josefsson  <simon@josefsson.org>
8643
8644         * modules/memxor: Move back from crypto/, suggested by Bruno.
8645         * modules/crypto/hmac-sha1: Fix memxor dependency.
8646
8647         * modules/crypto/gc: Moved from ../.
8648
8649 2007-04-02  Eric Blake  <ebb9@byu.net>
8650
8651         * lib/ldexpl.c (includes): Avoid libm.
8652
8653         * modules/printf-frexpl (Depends-on): Depend on ldexpl.
8654
8655 2007-04-02  Bruno Haible  <bruno@clisp.org>
8656
8657         * lib/sysexit_.h (EX_OK): Disable the EX_OK definition from <unistd.h>
8658         on IRIX.
8659
8660 2007-04-02  Bruno Haible  <bruno@clisp.org>
8661
8662         * m4/intdiv0.m4 (gt_INTDIV0): Avoid performing the test for real on
8663         x86 or x86_64 platforms running MacOS X.
8664         Reported by Ryan Schmidt <@ryandesign.com>.
8665
8666 2007-04-02  Bruno Haible  <bruno@clisp.org>
8667
8668         * m4/intdiv0.m4 (gt_INTDIV0): When cross-compiling, treat x86_64 like
8669         i386.
8670
8671 2007-04-01  Simon Josefsson  <simon@josefsson.org>
8672
8673         * modules/crypto/arcfour: Moved from ../.
8674         * modules/crypto/arcfour-tests: Moved from ../.
8675         * modules/crypto/arctwo: Moved from ../.
8676         * modules/crypto/arctwo-tests: Moved from ../.
8677         * modules/crypto/des: Moved from ../.
8678         * modules/crypto/des-tests: Moved from ../.
8679         * modules/crypto/gc-arcfour: Moved from ../.
8680         * modules/crypto/gc-arcfour-tests: Moved from ../.
8681         * modules/crypto/gc-arctwo: Moved from ../.
8682         * modules/crypto/gc-arctwo-tests: Moved from ../.
8683         * modules/crypto/gc-des: Moved from ../.
8684         * modules/crypto/gc-des-tests: Moved from ../.
8685         * modules/crypto/gc-hmac-md5: Moved from ../.
8686         * modules/crypto/gc-hmac-md5-tests: Moved from ../.
8687         * modules/crypto/gc-hmac-sha1: Moved from ../.
8688         * modules/crypto/gc-hmac-sha1-tests: Moved from ../.
8689         * modules/crypto/gc-md2: Moved from ../.
8690         * modules/crypto/gc-md2-tests: Moved from ../.
8691         * modules/crypto/gc-md4: Moved from ../.
8692         * modules/crypto/gc-md4-tests: Moved from ../.
8693         * modules/crypto/gc-md5: Moved from ../.
8694         * modules/crypto/gc-md5-tests: Moved from ../.
8695         * modules/crypto/gc-pbkdf2-sha1: Moved from ../.
8696         * modules/crypto/gc-pbkdf2-sha1-tests: Moved from ../.
8697         * modules/crypto/gc-random: Moved from ../.
8698         * modules/crypto/gc-rijndael: Moved from ../.
8699         * modules/crypto/gc-rijndael-tests: Moved from ../.
8700         * modules/crypto/gc-sha1: Moved from ../.
8701         * modules/crypto/gc-sha1-tests: Moved from ../.
8702         * modules/crypto/gc-tests: Moved from ../.
8703         * modules/crypto/hmac-md5: Moved from ../.
8704         * modules/crypto/hmac-md5-tests: Moved from ../.
8705         * modules/crypto/hmac-sha1: Moved from ../.
8706         * modules/crypto/hmac-sha1-tests: Moved from ../.
8707         * modules/crypto/md2: Moved from ../.
8708         * modules/crypto/md2-tests: Moved from ../.
8709         * modules/crypto/md4: Moved from ../.
8710         * modules/crypto/md4-tests: Moved from ../.
8711         * modules/crypto/md5: Moved from ../.
8712         * modules/crypto/md5-tests: Moved from ../.
8713         * modules/crypto/memxor: Moved from ../.
8714         * modules/crypto/rijndael: Moved from ../.
8715         * modules/crypto/rijndael-tests: Moved from ../.
8716         * modules/crypto/sha1: Moved from ../.
8717
8718 2007-03-30  James Youngman  <jay@gnu.org>
8719
8720         * tests/test-stat-time.c (prepare_test): use chmod() rather than
8721         rename() to change the ctime of a file (because ctime is unaffected
8722         by rename on jfs2 on AIX 5.1).
8723         (main): Start by doing cleanup, in case a previous run failed leaving
8724         test files behind.
8725
8726 2007-03-31  Bruno Haible  <bruno@clisp.org>
8727
8728         Support old proprietary implementations of iconv.
8729         * modules/iconv_open: New file.
8730         * lib/iconv_.h: New file.
8731         * m4/iconv_h.m4: New file.
8732         * lib/iconv_open.c: New file.
8733         * lib/iconv_open-aix.gperf: New file.
8734         * lib/iconv_open-hpux.gperf: New file.
8735         * lib/iconv_open-irix.gperf: New file.
8736         * lib/iconv_open-osf.gperf: New file.
8737         * m4/iconv_open.m4: New file.
8738         * modules/linebreak (Depends-on): Add iconv_open.
8739         * modules/striconv (Depends-on): Likewise.
8740         * modules/striconveh (Depends-on): Likewise.
8741         * modules/unicodeio (Depends-on): Likewise.
8742         * lib/striconveh.h (mem_cd_iconveh, str_cd_iconveh): Allow cd to be
8743         (iconv_t)(-1).
8744         * lib/striconveh.c (mem_cd_iconveh_internal): Use an indirect
8745         conversion if cd is (iconv_t)(-1).
8746         (mem_iconveh, str_iconveh): Don't fail just because a direct conversion
8747         is not possible.
8748
8749 2007-03-31  Bruno Haible  <bruno@clisp.org>
8750
8751         * tests/test-striconveha.c (main): Don't expect "autodetect_jp" to
8752         work on Solaris either. Protect also second use of "autodetect_jp".
8753
8754 2007-03-31  Bruno Haible  <bruno@clisp.org>
8755
8756         * m4/frexpl.m4 (gl_FUNC_FREXPL): Set HAVE_DECL_FREXPL to 0 when
8757         the function is not present.
8758
8759 2007-03-31  Bruno Haible  <bruno@clisp.org>
8760
8761         * m4/ldexpl.m4 (gl_FUNC_LDEXPL): Set HAVE_DECL_LDEXPL to 0 when
8762         the function is not present.
8763
8764 2007-03-31  Bruno Haible  <bruno@clisp.org>
8765
8766         * m4/iconv.m4 (AM_ICONV_LINK): Fix 2007-03-29 patch. Test also against
8767         a bug in HP-UX iconv_open().
8768
8769 2007-03-31  Bruno Haible  <bruno@clisp.org>
8770
8771         * MODULES.html.sh (func_module): Don't show gnulib-common.m4.
8772         (Mathematics <math.h>): New section, add fpieee.
8773         (Input/output <stdio.h>): Add fseterr.
8774         (Mathematics <math.h>): New section, add printf-frexp.
8775         (Container data structures): Add sublist.
8776         (Core language properties): Add fpucw, inline.
8777         (Functions for greatest-width integer types <inttypes.h>): Add
8778         imaxabs, imaxdiv, inttypes.
8779         (Mathematics <math.h>): Add frexp, frexpl, isnan-nolibm, isnanl,
8780         isnanl-nolibm, ldexp.
8781         (Mathematics <math.h>): New section, add printf-frexpl.
8782         (Support for systems lacking POSIX:2001): Add fprintf-posix,
8783         printf-posix, snprintf-posix, sprintf-posix, string, search, socklen,
8784         sys_select, sys_socket, vasnprintf-posix, vasprintf-posix,
8785         vfprintf-posix, vprintf-posix, vsnprintf-posix, vsprintf-posix.
8786         (Unicode string functions): Add unistr/u*-mbtoucr.
8787         (Java): Add javacomp-script, javaexec-script.
8788         (C#): Add csharpcomp-script, csharpexec-script.
8789         (Support for building libraries and executables): Add havelib,
8790         relocatable-*.
8791         (Support for maintaining and releasing projects): Renamed from
8792         'Support for maintaining and release projects'. Add announce-gen.
8793
8794 2007-03-31  Bruno Haible  <bruno@clisp.org>
8795
8796         * README: Talk primarily about git.
8797         (git and CVS): Renamed from CVS.
8798         * doc/gnulib.texi (Introduction, Build robot for gnulib): Mention that
8799         gnulib is available through git.
8800         * doc/gnulib-tool.texi (CVS Issues): Mention git and svn as well.
8801
8802 2007-03-30  Bruno Haible  <bruno@clisp.org>
8803
8804         * lib/alloca_.h: Change prefix of double-inclusion guard macro to _GL_.
8805         * lib/poll_.h: Likewise.
8806         * lib/stat_.h: Likewise.
8807         * lib/sys_time_.h: Likewise.
8808         * lib/sysexit_.h: Likewise.
8809         * lib/glob_.h: Prefix double-inclusion guard macro with _GL_.
8810         * lib/stdbool_.h: Likewise.
8811         * lib/byteswap_.h: Add double-inclusion guard.
8812
8813 2007-03-30  Sergey Poznyakoff  <gray@mirddin.farlep.net>
8814
8815         * lib/sysexit_.h: Prefix double-inclusion guard macro with _GNULIB.
8816
8817 2007-03-30  Karl Berry  <karl@gnu.org>
8818
8819         * config/srclist-update: double space after USA in the license
8820         substitution, since that's how it's usually (?) written.
8821
8822 2007-03-30  Paul Eggert  <eggert@cs.ucla.edu>
8823
8824         * lib/write-any-file.c (can_write_any_file): Fix else-else bug
8825         reported by Bruno Haible.
8826
8827 2007-03-29  Bruno Haible  <bruno@clisp.org>
8828
8829         * m4/iconv.m4 (AM_ICONV_LINK): Require AC_CANONICAL_HOST. Test against
8830         a bug in AIX iconv().
8831
8832 2007-03-29  Bruno Haible  <bruno@clisp.org>
8833
8834         * modules/ldexpl-tests: New file.
8835         * tests/test-ldexpl.c: New file.
8836
8837 2007-03-29  Bruno Haible  <bruno@clisp.org>
8838
8839         * lib/ldexpl.c: Include fpucw.h.
8840         (ldexpl): Use BEGIN/END_LONG_DOUBLE_ROUNDING. Skip the last unneeded
8841         multiplication.
8842         * modules/ldexpl (Depends-on): Add fpucw.
8843
8844 2007-03-29  Bruno Haible  <bruno@clisp.org>
8845
8846         * modules/ldexpl: New file.
8847         * m4/ldexpl.m4: New file.
8848         * lib/math_.h (ldexpl): Define to a replacement if REPLACE_LDEXPL is
8849         set.
8850         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize also GNULIB_LDEXPL,
8851         REPLACE_LDEXPL.
8852         * modules/math (Makefile.am): Substitute also GNULIB_LDEXPL,
8853         REPLACE_LDEXPL.
8854         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Invoke
8855         gl_FUNC_LDEXPL_WORKS.
8856         * m4/mathl.m4 (gl_FUNC_LONG_DOUBLE_MATH): Remove test for ldexpl.
8857         * modules/mathl (Files): Remove lib/ldexpl.c.
8858         (Depends-on): Add ldexpl.
8859
8860 2007-03-29  Bruno Haible  <bruno@clisp.org>
8861
8862         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Declare frexpl.
8863
8864 2007-03-29  Bruno Haible  <bruno@clisp.org>
8865
8866         * tests/test-striconveh.c (main): Don't assume that a direct conversion
8867         between ISO-8859-1 and ISO-8859-2 is possible. Needed for OSF/1, IRIX
8868         and possibly also HP-UX.
8869         * tests/test-striconveha.c (main): Don't expect "autodetect_jp" to
8870         work on AIX, IRIX, HP-UX, OSF/1.
8871         * tests/uniconv/test-u16-conv-from-enc.c (main): Likewise.
8872         * tests/uniconv/test-u16-strconv-from-enc.c (main): Likewise.
8873         * tests/uniconv/test-u32-conv-from-enc.c (main): Likewise.
8874         * tests/uniconv/test-u32-strconv-from-enc.c (main): Likewise.
8875         * tests/uniconv/test-u8-conv-from-enc.c (main): Likewise.
8876         * tests/uniconv/test-u8-strconv-from-enc.c (main): Likewise.
8877
8878 2007-03-29  Bruno Haible  <bruno@clisp.org>
8879
8880         * tests/test-stat-time.c: Include <fcntl.h>, not <sys/fcntl.h>.
8881
8882 2007-03-29  Paul Eggert  <eggert@cs.ucla.edu>
8883
8884         * lib/acl-internal.h (acl_get_fd, acl_set_fd): undef before defining,
8885         to work around a problem on OSF/1 5.1 reported by Bruno Haible.
8886
8887 2007-03-29  Eric Blake  <ebb9@byu.net>
8888
8889         * lib/acl-internal.h: Remove redundant include.
8890         (ACL_NOT_WELL_SUPPORTED): Also filter on EBUSY, returned by
8891         Cygwin when a file is locked.
8892
8893 2007-03-29  Bruno Haible  <bruno@clisp.org>
8894
8895         * lib/vasprintf.c [IN_LIBASPRINTF]: Include different specification
8896         file.
8897         * lib/asprintf.c [IN_LIBASPRINTF]: Likewise.
8898
8899 2007-03-29  Paul Eggert  <eggert@cs.ucla.edu>
8900
8901         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Don't bother to
8902         try to remove a parent directory if the child couldn't be removed
8903         (except for the first rmdir, which could fail because the child
8904         doesn't exist).  Problem reported by Jeff Blaine in
8905         <http://lists.gnu.org/archive/html/bug-tar/2007-03/msg00014.html>.
8906
8907 2007-03-28  Bruno Haible  <bruno@clisp.org>
8908
8909         * lib/striconveh.c (utf8conv_carefully): New function.
8910         (mem_cd_iconveh_internal): Invoke it.
8911
8912 2007-03-28  Bruno Haible  <bruno@clisp.org>
8913
8914         * lib/striconveh.c (mem_cd_iconveh_internal): Use u8_mbtoucr instead
8915         of u8_mbtouc in order to distinguish invalid and incomplete UTF-8
8916         input.
8917         * modules/striconveh (Depends-on): Add unistr/u8-mbtoucr. Replace
8918         utf8-ucs4 with unistr/u8-mbtouc. Replace ucs4-utf8 with
8919         unistr/u8-uctomb.
8920
8921 2007-03-28  Bruno Haible  <bruno@clisp.org>
8922
8923         * modules/unistr/u8-mbtoucr: New file.
8924         * lib/unistr/u8-mbtoucr.c: New file.
8925         * modules/unistr/u16-mbtoucr: New file.
8926         * lib/unistr/u16-mbtoucr.c: New file.
8927         * modules/unistr/u16-mbtoucr: New file.
8928         * lib/unistr/u16-mbtoucr.c: New file.
8929         * lib/unistr.h (u8_mbtoucr, u16_mbtoucr, u32_mbtoucr): New declarations.
8930
8931 2007-03-27  Simon Josefsson  <simon@josefsson.org>
8932             Bruno Haible  <bruno@clisp.org>
8933
8934         * m4/vasprintf.m4: Convert AC_SUBST into shell variable for
8935         REPLACE_VASPRINTF.  Set HAVE_VASPRINTF.  Add
8936         AC_REQUIRE([gl_STDIO_H_DEFAULTS]).
8937
8938         * m4/stdio_h.m4: Add stubs for vasprintf too.
8939
8940         * modules/stdio: Support vasprintf in sed command.
8941
8942         * modules/vasprintf: Depend on stdio for prototypes.  Remove
8943         vasprintf.h.  Add stdio module indicator.
8944
8945         * lib/stdio_.h: Declare asprintf and vasprintf, based on
8946         vasprintf.h.
8947
8948         * lib/vasprintf.h: File removed.
8949
8950         * lib/asprintf.c: Use stdio.h instead of vasprintf.h.
8951         * lib/vasprintf.c: Ditto.
8952         * lib/xvasprintf.c: Ditto.
8953         * tests/test-vasprintf-posix.c: Ditto.
8954         * tests/test-vasprintf.c: Ditto.
8955
8956 2007-03-27  Bruno Haible  <bruno@clisp.org>
8957
8958         Make vasnprintf multithread-safe.
8959         * lib/vasnprintf.c (decimal_point_char): New function.
8960         (VASNPRINTF): Use it.
8961         Suggested by Simon Josefsson.
8962
8963 2007-03-27  Eric Blake  <ebb9@byu.net>
8964
8965         Support sub-second birthtime on cygwin.
8966         * m4/stat-time.m4 (gl_STAT_BIRTHTIME): Also check for st_birthtim.
8967         * lib/stat-time.h (STAT_TIMESPEC): Adjust comments.
8968         (get_stat_birthtime): Also work with st_birthtim.
8969
8970 2007-03-27  Paul Eggert  <eggert@cs.ucla.edu>
8971
8972         * lib/stat-time.h (USE_BIRTHTIME): Remove.
8973         (get_stat_atime_ns, get_stat_ctime_ns, get_stat_mtime_ns):
8974         (get_stat_birthtime_ns): Do not try to use "spare" fields.
8975         (get_stat_birthtime_ns): Simplify compile-time tests.
8976         (get_stat_birthtime): Change the API to look like
8977         get_stat_mtime etc., except return a negative tv_nsec on error.
8978         * m4/stat-time.m4 (gl_STAT_TIME, gl_STAT_BIRTHTIME):
8979         Don't check for "spare" fields.
8980         (gl_STAT_BIRTHTIME): Don't check for struct stat.st_birthtimespec.tv_sec
8981         or for struct stat.st_birthtime, as these tests aren't used.
8982         * tests/test-stat-time.c (test_birthtime): Adjust to new API.
8983
8984 2007-03-27  Bruno Haible  <bruno@clisp.org>
8985
8986         * lib/stat-time.h: Include <sys/stat.h>.
8987
8988 2007-03-27  James Youngman  <jay@gnu.org>
8989
8990         * lib/stat-time.h (get_stat_birthtime): New function for
8991           retrieving st_birthtime as provided by UFS2 (hence *BSD).
8992         * m4/stat-time.m4 (gl_STAT_BIRTHTIME): Probe for st_birthtime
8993           and its variants.
8994         * modules/stat-time (configure.ac): call gl_STAT_BIRTHTIME.
8995         * modules/stat-time-test: New file.
8996         * tests/test-stat-time.c: New test, devised by Bruno Haible.
8997
8998 2007-03-26  Bruno Haible  <bruno@clisp.org>
8999
9000         Better support of signalling NaNs.
9001         * lib/atanl.c: Include isnanl.h.
9002         (atanl): Perform test for NaN at the beginning of the function and
9003         through a call to isnanl.
9004         * lib/cosl.c: Include isnanl.h.
9005         (cosl): Perform test for NaN at the beginning of the function and
9006         through a call to isnanl.
9007         * lib/ldexpl.c: Include isnanl.h.
9008         (ldexpl): Perform test for NaN through a call to isnanl.
9009         * lib/logl.c: Include isnanl.h.
9010         (logl): Perform test for NaN at the beginning of the function and
9011         through a call to isnanl.
9012         * lib/sinl.c: Include isnanl.h.
9013         (sinl): Perform test for NaN at the beginning of the function and
9014         through a call to isnanl.
9015         * lib/sqrtl.c: Include isnanl.h.
9016         (sqrtl): Perform test for NaN at the beginning of the function and
9017         through a call to isnanl.
9018         * lib/tanl.c: Include isnanl.h.
9019         (tanl): Perform test for NaN at the beginning of the function and
9020         through a call to isnanl.
9021         * lib/trigl.c (ieee754_rem_pio2l): Remove test for NaN.
9022         * modules/mathl (Depends-on): Add isnanl.
9023
9024 2007-03-26  Eric Blake  <ebb9@byu.net>
9025
9026         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_A): Fix
9027         regression in logic sense of previous patch.
9028
9029 2007-03-26  Bruno Haible  <bruno@clisp.org>
9030
9031         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_A): Don't use
9032         unportable shell command "if ! ...".
9033         Reported by Ralf Wildenhues.
9034
9035 2007-03-25  Bruno Haible  <bruno@clisp.org>
9036
9037         * lib/sysexit_,h: If HAVE_SYSEXITS_H is defined, include the original
9038         <sysexits.h> file, and only add EX_CONFIG.
9039         * m4/sysexits.m4 (gl_SYSEXITS): If <sysexits.h> exists, check its
9040         absolute file name and whether it is sufficient. Substitute also
9041         HAVE_SYSEXITS_H and ABSOLUTE_SYSEXITS_H.
9042         * modules/sysexits (Makefile.am): Substitute HAVE_SYSEXITS_H and
9043         ABSOLUTE_SYSEXITS_H into sysexits.h.
9044
9045 2007-03-25  Bruno Haible  <bruno@clisp.org>
9046
9047         * lib/getaddrinfo.c (getaddrinfo): Don't access hints->ai_flags when
9048         hints is NULL.
9049
9050 2007-03-25  Bruno Haible  <bruno@clisp.org>
9051
9052         * lib/uniconv/u8-conv-from-enc.c (u8_conv_from_encoding): Add a cast.
9053         * lib/uniconv/u8-strconv-to-enc.c (u8_strconv_to_encoding): Likewise.
9054
9055 2007-03-25  Bruno Haible  <bruno@clisp.org>
9056
9057         * lib/vasnprintf.c: Include langinfo.h.
9058         (VASNPRINTF): Prefer nl_langinfo over localeconv, since it's more
9059         multithread-safe.
9060         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_A): New macro.
9061         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke it.
9062         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
9063         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
9064         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
9065         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
9066         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
9067         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX: Likewise.
9068         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
9069         Reported by Simon Josefsson.
9070
9071 2007-03-25  Bruno Haible  <bruno@clisp.org>
9072
9073         * lib/printf-parse.c [!IN_LIBINTL]: Include <stdint.h>, for intmax_t.
9074         (PRINTF_PARSE): Make the support for size specifier 'j' unconditional.
9075         * modules/vasnprintf (Depends-on): Add stdint.
9076
9077 2007-03-25  Bruno Haible  <bruno@clisp.org>
9078
9079         * modules/fpieee: New file.
9080         * m4/fpieee.m4: New file.
9081         * modules/isnan-nolibm (Depends-on): Add fpieee.
9082         * modules/isnanl-nolibm (Depends-on): Add fpieee.
9083         * modules/isnanl (Depends-on): Add fpieee.
9084
9085 2007-03-25  Bruno Haible  <bruno@clisp.org>
9086
9087         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Test also finite numbers.
9088
9089 2007-03-25  Bruno Haible  <bruno@clisp.org>
9090
9091         Avoid test failures on IRIX 6.5.
9092         * tests/test-frexpl.c (MIN_NORMAL_EXP): New macro.
9093         (main): Use it.
9094         * tests/test-printf-frexpl.c (MIN_NORMAL_EXP, MIN_SUBNORMAL_EXP): New
9095         macros.
9096         (main): Use them.
9097
9098 2007-03-25  Bruno Haible  <bruno@clisp.org>
9099
9100         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): New macro.
9101         (gl_FUNC_FREXPL): Invoke it. Set REPLACE_FREXPL to 1 if it frexpl
9102         exists but doesn't work.
9103         * lib/math_.h (frexpl): Define as a replacement macro if REPLACE_FREXPL
9104         is set. Don't provide a prototype if REPLACE_FREXPL is not set.
9105         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize REPLACE_FREXPL.
9106         * modules/math (Makefile.am) Substibute also REPLACE_FREXPL into math.h.
9107
9108 2007-03-25  Bruno Haible  <bruno@clisp.org>
9109
9110         * m4/frexp.m4 (gl_FUNC_FREXP_WORKS): Add check whether frexp(inf)
9111         returns inf. Needed on IRIX 6.5.
9112
9113 2007-03-25  Bruno Haible  <bruno@clisp.org>
9114
9115         * tests/test-frexpl.c: Include isnanl-nolibm.h.
9116         (main): Use isnanl instead of x != x idiom.
9117         * modules/frexpl-tests (Depends-on): Add isnanl-nolibm.
9118
9119         * tests/test-frexp.c: Include isnan.h.
9120         (main): Use isnan instead of x != x idiom.
9121         * modules/frexp-tests (Depends-on): Add isnan-nolibm.
9122
9123 2007-03-25  Bruno Haible  <bruno@clisp.org>
9124
9125         * tests/test-frexp.c (NaN): New function/macro.
9126         (main): Use it instead of 0.0 / 0.0.
9127         * tests/test-isnan.c (NaN): New function/macro.
9128         (main): Use it instead of 0.0 / 0.0.
9129         * tests/test-vasnprintf-posix.c (NaN): New function/macro.
9130         (test_function): Use it instead of 0.0 / 0.0.
9131         * tests/test-vasprintf-posix.c (NaN): New function/macro.
9132         (test_function): Use it instead of 0.0 / 0.0.
9133         * tests/test-snprintf-posix.h (NaN): New function/macro.
9134         (test_function): Use it instead of 0.0 / 0.0.
9135         * tests/test-sprintf-posix.h (NaN): New function/macro.
9136         (test_function): Use it instead of 0.0 / 0.0.
9137         * tests/test-fprintf-posix.h (NaN): New function/macro.
9138         (test_function): Use it instead of 0.0 / 0.0.
9139         * tests/test-printf-posix.h (NaN): New function/macro.
9140         (test_function): Use it instead of 0.0 / 0.0.
9141
9142         * lib/isnan.c (FUNC): Work around a DEC C compiler bug.
9143
9144 2007-03-25  Bruno Haible  <bruno@clisp.org>
9145
9146         * lib/glob_.h: Include <sys/stat.h>. Avoids warnings on AIX 5.1.
9147
9148 2007-03-25  Bruno Haible  <bruno@clisp.org>
9149
9150         * lib/regexec.c (merge_state_with_log): Make static.
9151
9152 2007-03-25  Bruno Haible  <bruno@clisp.org>
9153
9154         * lib/trigl.c (kernel_rem_pio2): Make static.
9155
9156 2007-03-25  Bruno Haible  <bruno@clisp.org>
9157
9158         * lib/sincosl.c (sincosl_table): Make static.
9159
9160 2007-03-25  Bruno Haible  <bruno@clisp.org>
9161
9162         * lib/argp.h (__restrict): Define to empty, rather than to 'restrict',
9163         if the compiler does not support C99.
9164
9165 2007-03-25  Bruno Haible  <bruno@clisp.org>
9166
9167         * modules/time (Makefile.am): Ensure all rule action lines start with a
9168         tab.
9169
9170 2007-03-24  Bruno Haible  <bruno@clisp.org>
9171
9172         * modules/tsearch-tests: New file.
9173         * tests/test-tsearch.sh: New file.
9174         * tests/test-tsearch.c: New file, mostly copied from glibc.
9175
9176         * modules/search-tests: New file.
9177         * tests/test-search.c: New file.
9178
9179         * modules/search: New file.
9180         * lib/search_.h: New file, incorporating lib/tsearch.h.
9181         * m4/search_h.m4: New file.
9182         * lib/tsearch.h: Remove file.
9183         * lib/tsearch.c: Include search.h instead of tsearch.h.
9184         * m4/tsearch.m4 (gl_FUNC_TSEARCH): Require gl_SEARCH_H_DEFAULTS. Set
9185         HAVE_TSEARCH.
9186         * modules/tsearch (Files): Remove lib/tsearch.h.
9187         (Depends-on): Add search.
9188         (configure.ac): Invoke gl_SEARCH_MODULE_INDICATOR.
9189         (Include): Change tsearch.h into search.h.
9190
9191 2007-03-24  Bruno Haible  <bruno@clisp.org>
9192
9193         * modules/fpucw: New file.
9194         * lib/fpucw.h: New file.
9195         * lib/frexp.c: Include fpucw.h.
9196         (DECL_ROUNDING, BEGIN_ROUNDING, END_ROUNDING): New macros.
9197         (FUNC): Use them.
9198         * lib/printf-frexp.c: Include fpucw.h.
9199         (DECL_ROUNDING, BEGIN_ROUNDING, END_ROUNDING): New macros.
9200         (FUNC): Use them.
9201         * lib/vasnprintf.c: Include fpucw.h.
9202         (VASNPRINTF): Invoke BEGIN/END_LONG_DOUBLE_ROUNDING around the
9203         'long double' calculations.
9204         * tests/test-frexpl.c: Include fpucw.h.
9205         (main): Invoke BEGIN_LONG_DOUBLE_ROUNDING.
9206         * tests/test-printf-frexpl.c: Include fpucw.h.
9207         (main): Invoke BEGIN_LONG_DOUBLE_ROUNDING.
9208         * modules/frexpl (Depends-on): Add fpucw.
9209         * modules/printf-frexpl (Depends-on): Likewise.
9210         * modules/fprintf-posix (Depends-on): Likewise.
9211         * modules/snprintf-posix (Depends-on): Likewise.
9212         * modules/sprintf-posix (Depends-on): Likewise.
9213         * modules/vasnprintf-posix (Depends-on): Likewise.
9214         * modules/vasprintf-posix (Depends-on): Likewise.
9215         * modules/vfprintf-posix (Depends-on): Likewise.
9216         * modules/vsnprintf-posix (Depends-on): Likewise.
9217         * modules/vsprintf-posix (Depends-on): Likewise.
9218         * modules/frexpl-tests (Depends-on): Likewise.
9219         * modules/printf-frexpl-tests (Depends-on): Likewise.
9220
9221 2007-03-24  Bruno Haible  <bruno@clisp.org>
9222
9223         * lib/float+.h: New file.
9224         * lib/isnan.c: Include float+.h.
9225         (SIZE): New macro.
9226         (FUNC): Compare only SIZE bytes of the value.
9227         * lib/vasnprintf.c: Include float+.h.
9228         (VASNPRINTF): When comparing agains +0.0L or +0.0, compare only
9229         SIZEOF_LDBL or SIZEOF_DBL bytes.
9230         * modules/isnan-nolibm (Files): Add lib/float+.h.
9231         * modules/isnanl-nolibm (Files): Add lib/float+.h.
9232         * modules/isnanl (Files): Add lib/float+.h.
9233         * modules/vasnprintf (Files): Add lib/float+.h.
9234
9235 2007-03-24  Bruno Haible  <bruno@clisp.org>
9236
9237         * lib/vasnprintf.c [!HAVE_LONG_DOUBLE]: Include printf-frexp.h. Don't
9238         include isnanl-nolibm.h.
9239
9240 2007-03-24  Bruno Haible  <bruno@clisp.org>
9241
9242         * tests/test-read-file.c (main): Don't produce spurious output for
9243         expected situations. Make the test fail if it encountered unexpected
9244         results.
9245
9246 2007-03-24  Bruno Haible  <bruno@clisp.org>
9247
9248         * m4/locale-fr.m4 (gt_LOCALE_FR): Remove the special-casing of NetBSD,
9249         since its fr_FR.ISO8859-1 locale wouldn't pass the tests.
9250
9251 2007-03-24  Bruno Haible  <bruno@clisp.org>
9252
9253         * m4/locale-fr.m4 (gt_LOCALE_FR, gt_LOCALE_FR_UTF8): Fix last change.
9254
9255 2007-03-24  Bruno Haible  <bruno@clisp.org>
9256
9257         * modules/unistr/base (Depends-on): Remove utf8-ucs4-unsafe,
9258         utf16-ucs4-unsafe, utf8-ucs4, utf16-ucs4, ucs4-utf8, ucs4-utf16.
9259
9260         * modules/unistr/u8-mbtouc: Add source files from module utf8-ucs4.
9261         * modules/utf8-ucs4: Turn into a symbolic link to module
9262         unistr/u8-mbtouc.
9263
9264         * modules/unistr/u8-mbtouc-unsafe: Add source files from module
9265         utf8-ucs4-unsafe.
9266         * modules/utf8-ucs4-unsafe: Turn into a symbolic link to module
9267         unistr/u8-mbtouc-unsafe.
9268
9269         * modules/unistr/u16-mbtouc: Add source files from module utf16-ucs4.
9270         * modules/utf16-ucs4: Turn into a symbolic link to module
9271         unistr/u16-mbtouc.
9272
9273         * modules/unistr/u16-mbtouc-unsafe: Add source files from module
9274         utf16-ucs4-unsafe.
9275         * modules/utf16-ucs4-unsafe: Turn into a symbolic link to module
9276         unistr/u16-mbtouc-unsafe.
9277
9278         * modules/unistr/u8-uctomb: Add source files from module utf4-utf8.
9279         * modules/ucs4-utf8: Turn into a symbolic link to module
9280         unistr/u8-ubtomb.
9281
9282         * modules/unistr/u16-uctomb: Add source files from module utf4-utf16.
9283         * modules/ucs4-utf16: Turn into a symbolic link to module
9284         unistr/u16-ubtomb.
9285
9286 2007-03-24  Bruno Haible  <bruno@clisp.org>
9287
9288         * lib/unistr/u8-mbtouc-aux.c: Renamed from lib/unistr/utf8-ucs4.c.
9289         Enable the function only if HAVE_INLINE.
9290         * lib/unistr/u8-mbtouc-unsafe-aux.c: Renamed from
9291         lib/unistr/utf8-ucs4-unsafe.c. Enable the function only if HAVE_INLINE.
9292         * lib/unistr/u16-mbtouc-aux.c: Renamed from lib/unistr/utf16-ucs4.c.
9293         Enable the function only if HAVE_INLINE.
9294         * lib/unistr/u16-mbtouc-unsafe-aux.c: Renamed from
9295         lib/unistr/utf16-ucs4-unsafe.c. Enable the function only if HAVE_INLINE.
9296         * lib/unistr/u8-uctomb-aux.c: Renamed from lib/unistr/ucs4-utf8.c.
9297         Enable the function only if HAVE_INLINE.
9298         * lib/unistr/u16-uctomb-aux.c: Renamed from lib/unistr/ucs4-utf16.c.
9299         Enable the function only if HAVE_INLINE.
9300         * modules/utf8-ucs4: Update.
9301         * modules/utf8-ucs4-unsafe: Update.
9302         * modules/utf16-ucs4: Update.
9303         * modules/utf16-ucs4-unsafe: Update.
9304         * modules/ucs4-utf8: Update.
9305         * modules/ucs4-utf16: Update.
9306
9307 2007-03-24  Bruno Haible  <bruno@clisp.org>
9308
9309         * lib/utf8-ucs4.h: Remove file.
9310         * lib/utf8-ucs4-unsafe.h: Remove file.
9311         * lib/utf16-ucs4.h: Remove file.
9312         * lib/utf16-ucs4-unsafe.h: Remove file.
9313         * lib/ucs4-utf8.h: Remove file.
9314         * lib/ucs4-utf16.h: Remove file.
9315         * lib/unistr.h: Include their previous contents.
9316         * m4/utf-ucs4.m4: Remove file.
9317         * m4/ucs4-utf.m4: Remove file.
9318         * modules/utf8-ucs4 (Files): Remove lib/utf8-ucs4.h.
9319         (Depends-on): Add unistr/base.
9320         (configure.ac): Remove gl_UTF_UCS4.
9321         (Makefile.am): Update.
9322         (Include): Change to unistr.h.
9323         * modules/utf8-ucs4-unsafe (Files): Remove lib/utf8-ucs4-unsafe.h.
9324         (Depends-on): Add unistr/base.
9325         (configure.ac): Remove gl_UTF_UCS4.
9326         (Makefile.am): Update.
9327         (Include): Change to unistr.h.
9328         * modules/utf16-ucs4 (Files): Remove lib/utf16-ucs4.h.
9329         (Depends-on): Add unistr/base.
9330         (configure.ac): Remove gl_UTF_UCS4.
9331         (Makefile.am): Update.
9332         (Include): Change to unistr.h.
9333         * modules/utf16-ucs4-unsafe (Files): Remove lib/utf16-ucs4-unsafe.h.
9334         (Depends-on): Add unistr/base.
9335         (configure.ac): Remove gl_UTF_UCS4.
9336         (Makefile.am): Update.
9337         (Include): Change to unistr.h.
9338         * modules/ucs4-utf8 (Files): Remove lib/ucs4-utf8.h.
9339         (Depends-on): Add unistr/base.
9340         (configure.ac): Remove gl_UCS4_UTF.
9341         (Makefile.am): Update.
9342         (Include): Change to unistr.h.
9343         * modules/ucs4-utf16 (Files): Remove lib/ucs4-utf16.h.
9344         (Depends-on): Add unistr/base.
9345         (configure.ac): Remove gl_UCS4_UTF.
9346         (Makefile.am): Update.
9347         (Include): Change to unistr.h.
9348         * lib/unistr/utf8-ucs4.c: Include unistr.h instead of utf8-ucs4.h.
9349         * lib/unistr/utf8-ucs4-unsafe.c: Include unistr.h instead of
9350         utf8-ucs4-unsafe.h.
9351         * lib/unistr/utf16-ucs4.c: Include unistr.h instead of utf16-ucs4.h.
9352         * lib/unistr/utf16-ucs4-unsafe.c: Include unistr.h instead of
9353         utf16-ucs4-unsafe.h.
9354         * lib/unistr/ucs4-utf8.c: Include unistr.h instead of ucs4-utf8.h.
9355         * lib/unistr/ucs4-utf16.c: Include unistr.h instead of ucs4-utf16.h.
9356         * lib/unistr/u8-chr.c: Don't include ucs4-utf8.h.
9357         * lib/unistr/u8-strchr.c: Likewise.
9358         * lib/unistr/u8-strrchr.c: Likewise.
9359         * lib/unistr/u16-chr.c: Don't include ucs4-utf16.h.
9360         * lib/unistr/u16-strchr.c: Likewise.
9361         * lib/unistr/u16-strrchr.c: Likewise.
9362         * lib/striconveh.c: Update.
9363         * lib/linebreak.c: Update.
9364
9365 2007-03-24  Bruno Haible  <bruno@clisp.org>
9366
9367         * lib/argp-help.c (fill_in_uparams, canon_doc_option): Cast the
9368         arguments of isspace, isalpha, isalnum, isdigit to 'unsigned char'.
9369
9370 2007-03-22  Bruno Haible  <bruno@clisp.org>
9371
9372         * lib/strptime.c (__strptime_internal): Use ANSI C syntax.
9373
9374 2007-03-23  Paul Eggert  <eggert@cs.ucla.edu>
9375
9376         * MODULES.html.sh (File system functions): New module write-any-file.
9377         * modules/write-any-file, lib/write-any-file.c, lib/write-any-file.h:
9378         * m4/write-any-file.m4: New files.
9379
9380 2007-03-23  Eric Blake  <ebb9@byu.net>
9381
9382         * gnulib-tool: Rearrange space-tab sequences, since some editors
9383         like to eat them.
9384
9385 2007-03-23  Eric Blake  <ebb9@byu.net>
9386
9387         * lib/version-etc.c (version_etc_va): Update license wording to
9388         be more concise.  Recommended by Richard Stallman.
9389
9390 2007-03-22  Bruno Haible  <bruno@clisp.org>
9391
9392         * lib/poll.c (MSG_PEEK): New fallback definition.
9393
9394 2007-03-22  Bruno Haible  <bruno@clisp.org>
9395
9396         * modules/sys_socket-tests (configure.ac): Check for shutdown function.
9397         * tests/test-sys_socket.c (a): Test only if shutdown() exists.
9398         (main): Update.
9399         Fixes a compilation error on BeOS.
9400
9401 2007-03-22  Bruno Haible  <bruno@clisp.org>
9402
9403         * modules/frexpl-tests: New file.
9404         * tests/test-frexpl.c: New file.
9405
9406         * modules/frexpl: New file.
9407         * m4/frexpl.m4: New file.
9408         * modules/math (Makefile.am): Also substitute GNULIB_FREXPL into math.h.
9409         * lib/math_.h (frexpl): Test GNULIB_FREXPL instead of GNULIB_MATHL.
9410         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_FREXPL.
9411         * modules/mathl (Files): Remove lib/frexpl.c, lib/frexp.c.
9412         (Depends-on): Add frexpl. Remove isnanl-nolibm.
9413         * m4/mathl.m4 (gl_FUNC_LONG_DOUBLE_MATH): Don't test for frexpl.
9414
9415 2007-03-22  Bruno Haible  <bruno@clisp.org>
9416
9417         * lib/frexpl.c: Share code with lib/frexp.c.
9418         * modules/mathl (Files): Add lib/frexp.c.
9419         (Depends-on): Add isnanl-nolibm.
9420
9421 2007-03-22  Bruno Haible  <bruno@clisp.org>
9422
9423         * modules/printf-frexp (Files): Add m4/frexp.m4.
9424         * m4/printf-frexp.m4 (gl_FUNC_PRINTF_FREXP): Define HAVE_FREXP_IN_LIBC
9425         only if the found frexp function actually works.
9426
9427 2007-03-22  Bruno Haible  <bruno@clisp.org>
9428
9429         * lib/frexp.c: Remove older implementation that uses divisions.
9430
9431 2007-03-21  Bruno Haible  <bruno@clisp.org>
9432
9433         * modules/frexp-tests: New file.
9434         * tests/test-frexp.c: New file.
9435
9436         * modules/frexp: New file.
9437         * lib/frexp.c: New file.
9438         * m4/frexp.m4: New file.
9439         * lib/math_.h (frexp): New declaration.
9440         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Also initialize GNULIB_FREXP and
9441         REPLACE_FREXP.
9442         * modules/math (math.h): Also substitute GNULIB_FREXP, REPLACE_FREXP.
9443
9444 2007-03-21  Bruno Haible  <bruno@clisp.org>
9445
9446         * modules/isnanl-tests: New file.
9447         * tests/test-isnanl.c: New file.
9448
9449         * modules/isnanl: New file.
9450         * lib/isnanl.h: New file.
9451         * m4/isnanl.m4 (gl_FUNC_ISNANL): New macro.
9452         (gl_FUNC_ISNANL_NO_LIBM): Invoke gl_HAVE_ISNANL_NO_LIBM,
9453         gl_FUNC_ISNANL_WORKS.
9454         (gl_HAVE_ISNANL_NO_LIBM, gl_HAVE_ISNANL_IN_LIBM, gl_FUNC_ISNANL_WORKS):
9455         New macros.
9456
9457 2007-03-21  Bruno Haible  <bruno@clisp.org>
9458
9459         * modules/isnanl-nolibm (Files): Add lib/isnanl-nolibm.h, remove
9460         lib/isnanl.h.
9461         (Include): Update.
9462         * lib/isnanl-nolibm.h: Renamed from lib/isnanl.h.
9463         * lib/vasnprintf.c: Update.
9464         * modules/isnanl-nolibm-tests (Files): Add tests/test-isnanl-nolibm.c,
9465         tests/test-isnanl.h, remove tests/test-isnanl.c.
9466         (Makefile.am): Update.
9467         * tests/test-isnanl-nolibm.c: New file.
9468         * tests/test-isnanl.h: New file.
9469         * tests/test-isnanl.c: Remove file.
9470
9471 2007-03-21  Jim Meyering  <jim@meyering.net>
9472
9473         When trying to open ".", treat ESTALE like EACCES.
9474         * lib/savewd.c (savewd_save): Resort to forking not just upon
9475         failure with EACCES, but also when errno is ESTALE.
9476
9477 2007-03-20  Bruno Haible  <bruno@clisp.org>
9478
9479         * lib/string_.h (strndup): Enable declaration also if HAVE_STRNDUP.
9480         Needed on AIX 5.1. Reported by Matthew Woehlke.
9481
9482 2007-03-19  Paul Eggert  <eggert@cs.ucla.edu>
9483
9484         Suggestions by Bruno Haible:
9485         * lib/acl-internal.h: Include "gettext.h" rather than rolling
9486         our own.
9487         (ACL_NOT_WELL_SUPPORTED): Parenthesize arg when used.
9488         * modules/acl (Depends-on): Add gettext.
9489
9490 2007-03-19  Bruno Haible  <bruno@clisp.org>
9491
9492         * modules/iconvme: Remove file.
9493         * lib/iconvme.h: Remove file.
9494         * lib/iconvme.c: Remove file.
9495         * m4/iconvme.m4: Remove file.
9496
9497 2007-03-19  Bruno Haible  <bruno@clisp.org>
9498
9499         * doc/relocatable-maint.texi: Break long shell script line.
9500         Suggested by Thien-Thi Nguyen <ttn@gnuvola.org>.
9501
9502 2007-03-19  Paul Eggert  <eggert@cs.ucla.edu>
9503
9504         Add limited support for Solaris 10 ZFS-style ACLs: just enough to
9505         handle file_has_acl.
9506         * lib/acl-internal.h, lib/acl_entries.c, lib/file-has-acl.c: New files.
9507         * lib/acl.c: Move header inclusions and related macro defns into
9508         lib/acl-internal.h.
9509         (S_ISLNK): Remove defn, since that's now done for us.
9510         (file_has_acl): Move to lib/file-has-acl.c.
9511         Call acl_trivial if available.  This is the crucial part of the fix.
9512         (acl_entries): Move to lib/acl_entries.c.  Now extern, since it's
9513         shared within the library.  Rewrite a bit, partly to make it compatible
9514         with the GNU coding style.
9515         * m4/acl.m4 (AC_FUNC_ACL): Add AC_LIBOBJ([file-has-acl]).
9516         Remove unnecessary double-quotes.
9517         Don't test for acl_to_text; the build will catch that.
9518         Replace acl_entries if it doesn't exist and it is needed.
9519         Check for -lsec and acl_trivial (as used on Solaris 10).
9520         * modules/acl (Files): Add lib/acl-internal.h, lib/acl_entries.c,
9521         lib/file-has-acl.c.
9522         (Depends-on): Add sys_stat, for S_ISLNK.
9523
9524 2007-03-19  Ben Pfaff  <blp@gnu.org>
9525
9526         * doc/gnulib.texi: Fix typos.
9527         Suggested by Thien-Thi Nguyen <ttn@gnuvola.org>.
9528
9529 2007-03-19  Paul Eggert  <eggert@cs.ucla.edu>
9530
9531         * lib/getcwd.c (__getcwd): Remove redundant comparison of buf to NULL.
9532         If size is zero here, buf must be zero.
9533
9534 2007-03-19  Simon Josefsson  <simon@josefsson.org>
9535
9536         * des.c: Remove weak_keys_chksum.  Reported by Bruno Haible
9537         <bruno@clisp.org>.
9538
9539 2007-03-18  Bruno Haible  <bruno@clisp.org>
9540
9541         * lib/vasnprintf.c (VASNPRINTF): Undo first part of last patch.
9542         Suggested by Eric Blake.
9543
9544 2007-03-18  Ben Pfaff  <blp@gnu.org>
9545
9546         * doc/relocatable.texi: Recommend using as prefix a directory
9547         that does not exist and will never be created.  Based on
9548         discussion with Bruno Haible, Ralf Wildenhues, Matthew Woehlke,
9549         and others.
9550
9551 2007-03-17  Bruno Haible  <bruno@clisp.org>
9552
9553         * lib/fchownat.c: Include lchown.h.
9554
9555 2007-03-17  Bruno Haible  <bruno@clisp.org>
9556
9557         Fix endless loop when the given allocated size was > INT_MAX.
9558         * lib/vasnprintf.c (EOVERFLOW): New fallback definition.
9559         (VASNPRINTF): Fail with EOVERFLOW when the given allocated size is
9560         larger than INT_MAX, or when it grow to a value larger than INT_MAX.
9561         * lib/vsprintf.c (vsprintf): Don't pass a size > INT_MAX to vasnprintf.
9562         * lib/sprintf.c (sprintf): Likewise.
9563
9564 2007-03-17  Bruno Haible  <bruno@clisp.org>
9565
9566         * tests/test-argp-2.sh (func_compare): Output a context diff.
9567
9568 2007-03-17  Bruno Haible  <bruno@clisp.org>
9569
9570         * m4/locale-fr.m4 (gt_LOCALE_FR, gt_LOCALE_FR_UTF8): Check also the
9571         locale's decimal-point character.
9572
9573 2007-03-17  Bruno Haible  <bruno@clisp.org>
9574
9575         * lib/vasnprintf.c (VASNPRINTF): Clear out the memory used for arg_mem
9576         before comparing it. Needed because on some platforms (e.g. x86) a
9577         'long double' occupies less bytes than sizeof (long double).
9578
9579 2007-03-17  Bruno Haible  <bruno@clisp.org>
9580
9581         * tests/test-crc.c (main): Make printf statements 64-bit clean.
9582         * tests/test-gc-pbkdf2-sha1.c (main): Likewise.
9583         * tests/test-getaddrinfo.c (simple): Likewise.
9584         * tests/test-read-file.c (main): Likewise.
9585
9586 2007-03-17  Bruno Haible  <bruno@clisp.org>
9587
9588         * tests/test-dirname.c (main): Make printf statements 64-bit clean.
9589
9590 2007-03-17  Bruno Haible  <bruno@clisp.org>
9591
9592         * tests/test-xvasprintf.c (test_xvasprintf, test_xasprintf): Remove
9593         unused variable.
9594
9595 2007-03-17  Bruno Haible  <bruno@clisp.org>
9596
9597         * tests/test-c-strcasecmp.c: Include c-strcase.h.
9598         * tests/test-c-strncasecmp.c: Likewise.
9599
9600 2007-03-17  Bruno Haible  <bruno@clisp.org>
9601
9602         * modules/stdlib (Depends-on): Add unistd.
9603         * lib/stdlib_.h: Include <unistd.h> if mkstemp is desired.
9604         Needed for MacOS X 10.3.
9605
9606 2007-03-17  Bruno Haible  <bruno@clisp.org>
9607
9608         * lib/unistr/u-strdup.h: Include <stdlib.h>.
9609
9610 2007-03-17  Bruno Haible  <bruno@clisp.org>
9611
9612         * lib/unistr/u-cpy-alloc.h: Include <stdlib.h>.
9613
9614 2007-03-17  Bruno Haible  <bruno@clisp.org>
9615
9616         * gnulib-tool (func_import): Update .cvsignore and .gitignore files
9617         to reflect files copied from gnulib (with or without modifications).
9618         Suggested by Jim Meyering.
9619
9620 2007-03-17  Eric Blake  <ebb9@byu.net>
9621
9622         * NEWS: Document stdlib change from 2007-02-18.
9623
9624 2007-03-17  Jim Meyering  <jim@meyering.net>
9625
9626         Detect use of AC_CONFIG_AUX_DIR also when its argument is quoted.
9627         * build-aux/bootstrap: Put ""s around use of $build_aux, in case
9628         someone uses a name containing shell meta-characters.
9629         Reported by Alfred M. Szmidt.
9630
9631         * build-aux/bootstrap: Don't use \> in grep regexp.  For HP-UX.
9632
9633 2007-03-16  Alfred M. Szmidt  <ams@gnu.org>
9634
9635         * build-aux/bootstrap (with_gettext): New variable.  Run autopoint
9636         and copy gettext configuration files only if configure.ac contains
9637         a use of AM_GNU_GETTEXT_VERSION.
9638
9639 2007-03-16  Alfred M. Szmidt  <ams@gnu.org>
9640
9641         * build-aux/bootstrap (gnulib_name): New variable.
9642         (gnulib_tool_options): Use it.
9643
9644 2007-03-13  Simon Josefsson  <simon@josefsson.org>
9645
9646         * tests/test-des.c: Use new namespace.
9647
9648 2007-03-15  Bruno Haible  <bruno@clisp.org>
9649
9650         * lib/dummy.c (gl_dummy_symbol): Renamed from 'dummy'.
9651         Reported by James Youngman <jay@gnu.org>.
9652
9653 2007-03-15  Bruno Haible  <bruno@clisp.org>
9654
9655         * lib/glob.c (glob): Add 'restrict' so that prototype matches the
9656         declared prototype. Needed with cc on OSF/1 5.1.
9657
9658 2007-03-15  Bruno Haible  <bruno@clisp.org>
9659
9660         * lib/gl_list.h (gl_listelement_dispose_fn): New type.
9661         (gl_list_create_empty, gl_list_create): Add dispose_fn argument.
9662         (struct gl_list_implementation): Add dispose_fn argument to the
9663         'create_empty', 'create' methods.
9664         (struct gl_list_impl_base): Add field 'dispose_fn'.
9665         * lib/gl_list.c (gl_list_create_empty, gl_list_create): Add dispose_fn
9666         argument.
9667         * lib/gl_array_list.c (gl_array_create_empty, gl_array_create): Add
9668         dispose_fn argument.
9669         (gl_array_remove_node, gl_array_remove_at, gl_array_list_free): Call
9670         dispose_fn on the dropped values.
9671         * lib/gl_carray_list.c (gl_carray_create_empty, gl_carray_create): Add
9672         dispose_fn argument.
9673         (gl_carray_remove_at, gl_carray_list_free): Call dispose_fn on the
9674         dropped values.
9675         * lib/gl_anyavltree_list2.h (gl_tree_create): Add dispose_fn argument.
9676         (gl_tree_remove_node): Call dispose_fn on the dropped value.
9677         * lib/gl_anyrbtree_list2.h (gl_tree_create): Add dispose_fn argument.
9678         (gl_tree_remove_node): Call dispose_fn on the dropped value.
9679         * lib/gl_anytree_list2.h (gl_tree_create_empty): Add dispose_fn
9680         argument.
9681         (gl_tree_list_free): Call dispose_fn on the dropped values.
9682         * lib/gl_anytreehash_list2.h (gl_tree_list_free): Call dispose_fn on
9683         the dropped values.
9684         * lib/gl_anylinked_list2.h (gl_linked_create_empty, gl_linked_create):
9685         Add dispose_fn argument.
9686         (gl_linked_remove_node, gl_linked_remove_at, gl_linked_list_free):
9687         Call dispose_fn on the dropped values.
9688         * lib/gl_sublist.c (gl_sublist_create_empty, gl_sublist_create_fill):
9689         Add dispose_fn argument.
9690         (gl_sublist_create): Initialize the 'dispose_fn' field.
9691         * lib/clean-temp.c (create_temp_dir, register_fd): Update.
9692         * tests/test-array_list.c (main): Update.
9693         * tests/test-carray_list.c (main): Update.
9694         * tests/test-avltree_list.c (main): Update.
9695         * tests/test-rbtree_list.c (main): Update.
9696         * tests/test-avltreehash_list.c (main): Update.
9697         * tests/test-rbtreehash_list.c (main): Update.
9698         * tests/test-linked_list.c (main): Update.
9699         * tests/test-linkedhash_list.c (main): Update.
9700         * tests/test-array_oset.c (main): Update.
9701
9702 2007-03-15  Bruno Haible  <bruno@clisp.org>
9703
9704         * lib/gl_oset.h (gl_setelement_dispose_fn): New type.
9705         (gl_oset_create_empty): Add dispose_fn argument.
9706         (struct gl_oset_implementation): Add dispose_fn argument to
9707         'create_empty' method.
9708         (struct gl_oset_impl_base): Add dispose_fn field.
9709         * lib/gl_oset.c (gl_oset_create_empty): Add dispose_fn argument.
9710         * lib/gl_array_oset.c (gl_array_create_empty): Add dispose_fn argument.
9711         (gl_array_remove_at, gl_array_free): Call dispose_fn on the dropped
9712         values.
9713         * lib/gl_anytree_oset.h (gl_tree_create_empty): Add dispose_fn argument.
9714         (gl_tree_oset_free): Call dispose_fn on the dropped values.
9715         * lib/gl_avltree_oset.c (gl_tree_remove_node): Call dispose_fn on the
9716         dropped value.
9717         * lib/gl_rbtree_oset.c (gl_tree_remove_node): Call dispose_fn on the
9718         dropped value.
9719         * tests/test-array_oset.c (main): Update.
9720         * tests/test-avltree_oset.c (main): Update.
9721         * tests/test-rbtree_oset.c (main): Update.
9722         * lib/gl_anytreehash_list1.h (add_to_bucket): Update.
9723
9724 2007-03-13  Bruno Haible  <bruno@clisp.org>
9725
9726         * tests/test-stdbool.c (i): Update after last patch.
9727
9728 2007-03-12  Bruno Haible  <bruno@clisp.org>
9729
9730         * lib/quotearg.c: Include <wctype.h> early, before the definition of
9731         the iswprint macro. Needed on Solaris 2.5.1.
9732
9733 2007-03-12  Bruno Haible  <bruno@clisp.org>
9734
9735         * tests/test-printf-frexp.c (main): Declare x as volatile.
9736
9737 2007-03-12  Simon Josefsson  <simon@josefsson.org>
9738
9739         * doc/gnulib.texi (Build robot for gnulib): New section.
9740
9741 2007-03-12  Jim Meyering  <jim@meyering.net>
9742
9743         * build-aux/bootstrap: New file.
9744         * build-aux/bootstrap.conf: New file, from coreutils.
9745
9746 2007-03-11  Bruno Haible  <bruno@clisp.org>
9747
9748         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Require AC_C_INLINE.
9749
9750 2007-03-12  Simon Josefsson  <simon@josefsson.org>
9751
9752         * lib/des.h, lib/des.c, lib/gc-gnulib.c: Use gl_ namespace, to
9753         avoid collisions with 'des_setkey'.  Reported by Bruno Haible
9754         <bruno@clisp.org>.  Also change 'tripledes_' to '3des_'.
9755
9756 2007-03-11  Bruno Haible  <bruno@clisp.org>
9757
9758         * m4/locale-tr.m4 (gt_LOCALE_TR_UTF8): If the test program fails to
9759         compile, set LOCALE_TR_UTF8 to 'none' instead of empty.
9760
9761 2007-03-11  Bruno Haible  <bruno@clisp.org>
9762
9763         * lib/stdint_.h (INT64_MIN, INTMAX_MIN): Avoid using the ~INT..._MAX
9764         formula. Needed for SunPRO C 5.0.
9765
9766 2007-03-11  Bruno Haible  <bruno@clisp.org>
9767
9768         * modules/long-options (Depends-on): Add getopt.
9769
9770 2007-03-11  Bruno Haible  <bruno@clisp.org>
9771
9772         * modules/modechange (Depends-on): Add stdbool.
9773
9774 2007-03-11  Bruno Haible  <bruno@clisp.org>
9775
9776         * modules/i-ring (Depends-on): Add stdbool.
9777
9778 2007-03-11  Bruno Haible  <bruno@clisp.org>
9779
9780         * modules/gc-des (Depends-on): Add stdbool.
9781
9782 2007-03-11  Bruno Haible  <bruno@clisp.org>
9783
9784         * m4/mktime.m4 (gl_PREREQ_MKTIME): Require AC_C_INLINE.
9785
9786 2007-03-11  Bruno Haible  <bruno@clisp.org>
9787
9788         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Require AC_C_RESTRICT.
9789
9790 2007-03-11  Bruno Haible  <bruno@clisp.org>
9791
9792         * lib/unistr/u32-mbtouc-unsafe.c (u32_mbtouc_unsafe): Fix syntax error.
9793
9794 2007-03-11  Bruno Haible  <bruno@clisp.org>
9795
9796         * lib/vasnprintf.c (sprintf): Undefine.
9797
9798 2007-03-11  Bruno Haible  <bruno@clisp.org>
9799
9800         * lib/isnan.c (rpl_isnan, rpl_isnanl): Work around bug regarding
9801         initializers in SunPRO C and Compaq C compilers.
9802
9803 2007-03-11  Bruno Haible  <bruno@clisp.org>
9804
9805         * lib/gl_array_oset.c (gl_array_iterator_next): Make pointer
9806         decrementing code ANSI C compliant.
9807
9808 2007-03-11  Bruno Haible  <bruno@clisp.org>
9809
9810         * lib/dummy.c [__sun]: Define a dummy variable, not just a typedef.
9811         Needed for Solaris 2.5.1 ranlib and SunPRO C 5.0.
9812
9813 2007-03-11  Bruno Haible  <bruno@clisp.org>
9814
9815         * tests/test-stdbool.c (s, d, e, xlcbug): Disable checks that gnulib's
9816         <stdbool.h> substitute doesn't pass.
9817
9818 2007-03-11  Bruno Haible  <bruno@clisp.org>
9819
9820         * lib/vasnprintf.c (snprintf): Undefine. Avoids an endless recursion.
9821
9822 2007-03-11  Bruno Haible  <bruno@clisp.org>
9823
9824         * gnulib-tool (func_create_megatestdir): Create also an autobuild
9825         script, for submission to autobuild.josefsson.org.
9826
9827 2007-03-10  Bruno Haible  <bruno@clisp.org>
9828
9829         * modules/canonicalize-lgpl-tests: New file.
9830         * tests/test-canonicalize-lgpl.sh: New file.
9831         * tests/test-canonicalize-lgpl.c: New file.
9832
9833         * modules/c-strcase-tests: New file.
9834         * tests/test-c-strcase.sh: New file.
9835         * tests/test-c-strcasecmp.c: New file.
9836         * tests/test-c-strncasecmp.c: New file.
9837
9838         * modules/atexit-tests: New file.
9839         * tests/test-atexit.sh: New file.
9840         * tests/test-atexit.c: New file.
9841
9842 2007-03-10  Bruno Haible  <bruno@clisp.org>
9843
9844         * tests/test-binary-io.sh: Use temporary filenames that are not so
9845         likely to clash with those of other tests (in a parallel make).
9846         * tests/test-binary-io.c: Likewise.
9847
9848 2007-03-10  Bruno Haible  <bruno@clisp.org>
9849
9850         * lib/fseterr.c (fseterr): Port to Solaris/SPARC64. Deactivate the
9851         fallback; use #error instead.
9852         Suggested by Simon Josefsson.
9853
9854 2007-03-10  Bruno Haible  <bruno@clisp.org>
9855
9856         * gnulib-tool (func_create_testdir): Treat MOSTLYCLEANFILES like
9857         CLEANFILES. Put spaces in each line of $cleaned_files, not only the
9858         first and the last.
9859
9860 2007-03-10  Bruno Haible  <bruno@clisp.org>
9861
9862         * lib/stdint_.h (uint_least64_t): Fix typo in last patch.
9863
9864 2007-03-10  Bruno Haible  <bruno@clisp.org>
9865
9866         * modules/snprintf-posix-tests (EXTRA_DIST): New variable. Needed for
9867         "make distcheck".
9868         * modules/sprintf-posix-tests (EXTRA_DIST): Likewise.
9869         * modules/vsnprintf-posix-tests (EXTRA_DIST): Likewise.
9870         * modules/vsprintf-posix-tests (EXTRA_DIST): Likewise.
9871
9872 2007-03-10  Bruno Haible  <bruno@clisp.org>
9873
9874         * modules/allocsa-tests (test_allocsa_SOURCES): Remove redundant
9875         variable.
9876         * modules/dirname-tests (test_dirname_SOURCES): Remove redundant
9877         variable.
9878
9879 2007-03-09  Eric Blake  <ebb9@byu.net>
9880         and Matthew Woehlke  <mw_triad@users.sourceforge.net>  (tiny change)
9881
9882         * lib/stdint_.h (int64_t, uint64_t): Don't undefine if 64-bit
9883         types are not being provided by gnulib.
9884         (GL_INT64_T, GL_UINT64_T): New witnesses of whether gnulib 64-bit
9885         types are supported.
9886
9887 2007-03-10  Bruno Haible  <bruno@clisp.org>
9888
9889         * lib/stdio_.h (__attribute__): New macro.
9890         (fprintf, vfprintf, printf, vprintf, snprintf, vsnprintf, sprintf,
9891         vsprintf): Specify __attribute__ __format__ for GCC.
9892         Suggested by Eric Blake.
9893
9894 2007-03-09  Bruno Haible  <bruno@clisp.org>
9895
9896         * modules/printf-posix-tests: New file.
9897         * tests/test-printf-posix.sh: New file.
9898         * tests/test-printf-posix.c: New file.
9899
9900         * modules/printf-posix: New file.
9901         * lib/printf.c: New file.
9902         * m4/printf-posix-rpl.m4: New file.
9903         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_PRINTF_POSIX,
9904         REPLACE_PRINTF.
9905         * lib/stdio_.h (printf): New declaration.
9906         (format, __format__, ____printf____, ____scanf____, ____strftime____,
9907         ____strfmon____): New macros.
9908         * modules/stdio (Makefile.am): Substitute also GNULIB_PRINTF_POSIX,
9909         REPLACE_PRINTF.
9910
9911 2007-03-09  Bruno Haible  <bruno@clisp.org>
9912
9913         * tests/test-vasnprintf-posix2.sh: New file.
9914         * tests/test-vasnprintf-posix2.c: New file.
9915         * modules/vasnprintf-posix-tests (Files): Add them and m4/locale-fr.m4.
9916         (configure.ac): Invoke gt_LOCALE_FR and gt_LOCALE_FR_UTF8.
9917         (Makefile.am): Activate test-vasnprintf-posix2.sh.
9918
9919         * lib/vasnprintf.c (VASNPRINTF): For the 'a' and 'A' directives, use
9920         a locale dependent decimal point, rather than always '.'.
9921
9922 2007-03-09  Eric Blake  <ebb9@byu.net>
9923
9924         * lib/stdlib_.h (EXIT_FAILURE): GNU code expects this to be 1, in
9925         spite of platforms like Tandem/NSK that define it to -1.
9926
9927 2007-03-08  Bruno Haible  <bruno@clisp.org>
9928
9929         * modules/vprintf-posix-tests: New file.
9930         * tests/test-vprintf-posix.sh: New file.
9931         * tests/test-vprintf-posix.c: New file.
9932         * tests/test-printf-posix.h: New file.
9933
9934         * modules/vprintf-posix: New file.
9935         * lib/vprintf.c: New file.
9936         * m4/vprintf-posix.m4: New file.
9937         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_VPRINTF_POSIX,
9938         REPLACE_VPRINTF.
9939         * lib/stdio_.h (vprintf): New declaration.
9940         * modules/stdio (Makefile.am): Substitute also GNULIB_VPRINTF_POSIX,
9941         REPLACE_VPRINTF.
9942
9943 2007-03-08  Bruno Haible  <bruno@clisp.org>
9944
9945         * modules/fprintf-posix-tests: New file.
9946         * tests/test-fprintf-posix.sh: New file.
9947         * tests/test-fprintf-posix.c: New file.
9948
9949         * modules/fprintf-posix: New file.
9950         * lib/fprintf.c: New file.
9951         * m4/fprintf-posix.m4: New file.
9952         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FPRINTF_POSIX,
9953         REPLACE_FPRINTF.
9954         * lib/stdio_.h (fprintf): New declaration.
9955         * modules/stdio (Makefile.am): Substitute also GNULIB_FPRINTF_POSIX,
9956         REPLACE_FPRINTF.
9957
9958 2007-03-08  Bruno Haible  <bruno@clisp.org>
9959
9960         * modules/vfprintf-posix-tests: New file.
9961         * tests/test-vfprintf-posix.sh: New file.
9962         * tests/test-vfprintf-posix.c: New file.
9963         * tests/test-fprintf-posix.h: New file.
9964         * tests/test-fprintf-posix.out: New file.
9965
9966         * modules/vfprintf-posix: New file.
9967         * lib/vfprintf.c: New file.
9968         * m4/vfprintf-posix.m4: New file.
9969         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_VFPRINTF_POSIX,
9970         REPLACE_VFPRINTF.
9971         * lib/stdio_.h (vfprintf): New declaration.
9972         * modules/stdio (Makefile.am): Substitute also GNULIB_VFPRINTF_POSIX,
9973         REPLACE_VFPRINTF.
9974
9975 2007-03-08  Bruno Haible  <bruno@clisp.org>
9976
9977         * lib/stdio_.h: Treat __need___FILE like __need_FILE.
9978
9979 2007-03-08  Bruno Haible  <bruno@clisp.org>
9980
9981         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Use 'case' statements
9982         instead of 'expr' invocations.
9983         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
9984         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
9985         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
9986         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
9987         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
9988         Suggested by Paul Eggert.
9989
9990 2007-03-08  Bruno Haible  <bruno@clisp.org>
9991
9992         * modules/fseterr-tests: New file.
9993         * tests/test-fseterr.c: New file.
9994
9995         * modules/fseterr: New file.
9996         * lib/fseterr.h: New file.
9997         * lib/fseterr.c: New file.
9998
9999 2007-03-08  Bruno Haible  <bruno@clisp.org>
10000
10001         * lib/fnmatch_.h: Convert tabs in the middle of lines to spaces.
10002         * lib/getopt_.h: Likewise.
10003         * lib/mbswidth.h: Likewise.
10004         * lib/setenv.h: Likewise.
10005         * lib/vasnprintf.h: Likewise.
10006         * lib/vasprintf.h: Likewise.
10007         * lib/verror.h: Likewise.
10008         * lib/xsetenv.h: Likewise.
10009         * lib/xvasprintf.h: Likewise.
10010
10011 2007-03-08  Jim Meyering  <jim@meyering.net>
10012
10013         * users.txt: Add parted.
10014
10015         * ChangeLog: Restore 1500 lines mistakenly removed from the end.
10016
10017 2007-03-07  Bruno Haible  <bruno@clisp.org>
10018
10019         * m4/printf.m4: Make the shell script snippets copy&pastable.
10020
10021 2007-03-02  Bruno Haible  <bruno@clisp.org>
10022
10023         * lib/netinet_in_.h: New file.
10024         * m4/netinet_in_h.m4 (gl_HEADER_NETINET_IN): Test whether netinet/in.h
10025         is self-contained. Set ABSOLUTE_NETINET_IN_H, HAVE_NETINET_IN_H.
10026         * modules/netinet_in (Files): Add lib/netinet_in_.h.
10027         (Depends-on): Add absolute-header.
10028         (Makefile.am): Substitute ABSOLUTE_NETINET_IN_H, HAVE_NETINET_IN_H
10029         into netinet/in.h.
10030
10031 2007-03-03  Bruno Haible  <bruno@clisp.org>
10032
10033         * lib/sys_select_.h: New file.
10034         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SELECT): Test whether sys/select.h
10035         is self-contained. Set ABSOLUTE_SYS_SELECT_H, HAVE_SYS_SELECT_H.
10036         * modules/sys_select (Files): Add lib/sys_select_.h.
10037         (Depends-on): Add absolute-header.
10038         (Makefile.am): Substitute ABSOLUTE_SYS_SELECT_H, HAVE_SYS_SELECT_H
10039         into sys/select.h.
10040
10041 2007-03-02  Bruno Haible  <bruno@clisp.org>
10042
10043         * lib/socket_.h: If sys/socket.h exists, include that and <sys/types.h>
10044         before it. Turn HAVE_WINSOCK2_H and HAVE_WS2TCPIP_H into configute-time
10045         values.
10046         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Test also whether
10047         <sys/socket.h> is self-contained. Set ABSOLUTE_SYS_SOCKET_H,
10048         HAVE_SYS_SOCKET_H, HAVE_WINSOCK2_H, HAVE_WS2TCPIP_H.
10049         * modules/sys_socket (Depends-on): Add absolute-header.
10050         (Makefile.am): Substitute ABSOLUTE_SYS_SOCKET_H, HAVE_SYS_SOCKET_H,
10051         HAVE_WINSOCK2_H, HAVE_WS2TCPIP_H into sys/socket.h.
10052         (Include): Remove requirement of inclusion of <sys/types.h>.
10053
10054 2007-03-02  Bruno Haible  <bruno@clisp.org>
10055
10056         * lib/byteswap_.h (bswap_32): Fix formula.
10057
10058 2007-03-06  Bruno Haible  <bruno@clisp.org>
10059
10060         * modules/sprintf-posix-tests: New file.
10061         * tests/test-sprintf-posix.c: New file.
10062
10063         * modules/sprintf-posix: New file.
10064         * lib/sprintf.c: New file.
10065         * m4/sprintf-posix.m4: New file.
10066         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_SPRINTF_POSIX,
10067         REPLACE_SPRINTF.
10068         * lib/stdio_.h (sprintf): New declaration.
10069         * modules/stdio (Makefile.am): Substitute also GNULIB_SPRINTF_POSIX,
10070         REPLACE_SPRINTF.
10071
10072 2007-03-06  Bruno Haible  <bruno@clisp.org>
10073
10074         * modules/vsprintf-posix-tests: New file.
10075         * tests/test-vsprintf-posix.c: New file.
10076         * tests/test-sprintf-posix.h: New file.
10077
10078         * modules/vsprintf-posix: New file.
10079         * lib/vsprintf.c: New file.
10080         * m4/vsprintf-posix.m4: New file.
10081         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_VSPRINTF_POSIX,
10082         REPLACE_VSPRINTF.
10083         * lib/stdio_.h (vsprintf): New declaration.
10084         * modules/stdio (Makefile.am): Substitute also GNULIB_VSPRINTF_POSIX,
10085         REPLACE_VSPRINTF.
10086
10087 2007-03-06  Bruno Haible  <bruno@clisp.org>
10088
10089         * modules/vsnprintf (Depend-on): Remove minmax.
10090
10091 2007-03-06  Bruno Haible  <bruno@clisp.org>
10092
10093         * modules/snprintf-posix-tests: New file.
10094         * tests/test-snprintf-posix.c: New file.
10095
10096         * modules/snprintf-posix: New file.
10097         * m4/snprintf-posix.m4: New file.
10098         * m4/snprintf.m4 (gl_REPLACE_SNPRINTF): New macro, extracted from
10099         gl_FUNC_SNPRINTF.
10100         (gl_FUNC_SNPRINTF): Invoke it.
10101         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also REPLACE_SNPRINTF.
10102         * lib/stdio_.h (snprintf): Define as a replacement if REPLACE_SNPRINTF
10103         is set.
10104         * modules/stdio (Makefile.am): Substitute also REPLACE_SNPRINTF.
10105
10106 2007-03-06  Bruno Haible  <bruno@clisp.org>
10107
10108         * modules/vsnprintf-posix-tests: New file.
10109         * tests/test-vsnprintf-posix.c: New file.
10110         * tests/test-snprintf-posix.h: New file.
10111
10112         * modules/vsnprintf-posix: New file.
10113         * m4/vsnprintf-posix.m4: New file.
10114         * m4/vsnprintf.m4 (gl_REPLACE_VSNPRINTF): New macro, extracted from
10115         gl_FUNC_VSNPRINTF.
10116         (gl_FUNC_VSNPRINTF): Invoke it.
10117         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also REPLACE_VSNPRINTF.
10118         * lib/stdio_.h (vsnprintf): Define as a replacement if
10119         REPLACE_VSNPRINTF is set.
10120         * modules/stdio (Makefile.am): Substitute also REPLACE_VSNPRINTF.
10121
10122 2007-03-06  Bruno Haible  <bruno@clisp.org>
10123
10124         * m4/vasnprintf.m4 (gl_REPLACE_VASNPRINTF): Test for vasnprintf here.
10125         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): ... not here.
10126
10127 2007-03-06  Bruno Haible  <bruno@clisp.org>
10128
10129         * lib/math_.h (acosl): Declare also if HAVE_DECL_ACOSL is set.
10130         (asinl): Declare also if HAVE_DECL_ASINL is set.
10131         (atanl): Declare also if HAVE_DECL_ATANL is set.
10132         (ceill): Declare also if HAVE_DECL_CEILL is set.
10133         (cosl): Declare also if HAVE_DECL_COSL is set.
10134         (expl): Declare also if HAVE_DECL_EXPL is set.
10135         (floorl): Declare also if HAVE_DECL_FLOORL is set.
10136         (frexpl): Declare also if HAVE_DECL_FREXPL is set.
10137         (ldexpl): Declare also if HAVE_DECL_LDEXPL is set.
10138         (logl): Declare also if HAVE_DECL_LOGL is set.
10139         (sinl): Declare also if HAVE_DECL_SINL is set.
10140         (sqrtl): Declare also if HAVE_DECL_SQRTL is set.
10141         (tanl): Declare also if HAVE_DECL_TANL is set.
10142         * modules/math (Makefile.am): Substitute the values of HAVE_DECL_*.
10143         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Set HAVE_DECL_* to 1.
10144         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Fix tests for the
10145         declaration of frexpl, ldexpl.
10146         * modules/printf-frexpl (Depends-on): Add math.
10147         * lib/printf-frexp.c (frexpl, ldexpl): Undo last change.
10148
10149 2007-03-05  Bruno Haible  <bruno@clisp.org>
10150
10151         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Also test whether
10152         frexpl and ldexpl are declared.
10153         * lib/printf-frexp.c (frexpl, ldexpl): Provide fallback declarations.
10154
10155 2007-03-05  Bruno Haible  <bruno@clisp.org>
10156
10157         * gnulib-tool (func_get_automake_snippet): Don't synthesize an
10158         EXTRA_lib_SOURCES augmentation for the relocatable-prog-wrapper module.
10159
10160 2007-03-05  Bruno Haible  <bruno@clisp.org>
10161
10162         * lib/stdio_.h: Include <stddef.h>.
10163
10164 2007-03-05  Bruno Haible  <bruno@clisp.org>
10165
10166         * m4/printf.m4 (gl_SNPRINTF_DIRECTIVE_N): New macro.
10167
10168 2007-03-05  Bruno Haible  <bruno@clisp.org>
10169
10170         * m4/printf.m4: Update with info about OpenBSD 3.9, HP-UX 10.20,
10171         NetBSD 4, from Ralf Wildenhues.
10172
10173 2007-03-04  Bruno Haible  <bruno@clisp.org>
10174
10175         * lib/vasprintf.h: Update #if logic for the case when the functions
10176         exist but are overridden.
10177
10178 2007-03-04  Bruno Haible  <bruno@clisp.org>
10179
10180         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Exclude two buggy
10181         implementations: glibc-2.4 and MacOS X 10.3.
10182         * tests/test-vasnprintf-posix.c (test_function): Test also the case
10183         that exhibits the bugs in glibc-2.4 and MacOS X 10.3.
10184         * tests/test-vasprintf-posix.c (test_function): Likewise.
10185
10186 2007-03-04  Bruno Haible  <bruno@clisp.org>
10187
10188         * modules/vasprintf-posix-tests: New file.
10189         * tests/test-vasprintf-posix.c: New file.
10190
10191         * modules/vasprintf-posix: New file.
10192         * lib/vasprintf.h (asprintf, vasprintf): Rename if REPLACE_VASPRINTF is
10193         defined.
10194         * m4/vasprintf-posix.m4: New file.
10195         * m4/vasprintf.m4 (gl_REPLACE_VASPRINTF): New macro, extracted from
10196         gl_FUNC_VASPRINTF.
10197         (gl_FUNC_VASPRINTF): Invoke it.
10198         * m4/vasnprintf.m4 (gl_REPLACE_VASNPRINTF): Define REPLACE_VASNPRINTF
10199         here.
10200         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Not here.
10201
10202 2007-03-04  Bruno Haible  <bruno@clisp.org>
10203
10204         * lib/sys_time_.h: Rename GETTIMEOFDAY_REPLACEMENT to
10205         REPLACE_GETTIMEOFDAY.
10206         * modules/sys_time (Makefile.am): Likewise.
10207         * m4/sys_time_h.m4: Likewise.
10208         * m4/gettimeofday.m4: Likewise.
10209
10210 2007-03-04  Bruno Haible  <bruno@clisp.org>
10211
10212         * modules/vasnprintf-posix-tests: New file.
10213         * tests/test-vasnprintf-posix.c: New file.
10214
10215         * modules/vasnprintf-posix: New file.
10216         * lib/vasnprintf.c: Include isnan.h, isnanl.h, printf-frexp.h,
10217         printf-frexpl.h.
10218         (VASNPRINTF): Handle the 'a' and 'A' directives here, if needed.
10219         * lib/vasnprintf.h (asnprintf, vasnprintf): Rename if
10220         REPLACE_VASNPRINTF is defined.
10221         * m4/vasnprintf.m4 (gl_REPLACE_VASNPRINTF): New macro, extracted from
10222         gl_FUNC_VASNPRINTF.
10223         (gl_FUNC_VASNPRINTF): Invoke it.
10224         * m4/vasnprintf-posix.m4: New file.
10225         * m4/printf.m4: New file.
10226
10227 2007-03-04  Bruno Haible  <bruno@clisp.org>
10228
10229         Compile progreloc.c only if --enable-relocatable is specified.
10230         * m4/relocatable.m4 (gl_RELOCATABLE): Arrange to compile progreloc.c
10231         if --enable-relocatable was specified.
10232         * modules/relocatable-prog (Makefile.am): Remove progreloc.c from
10233         lib_SOURCES.
10234
10235 2007-03-04  Jim Meyering  <jim@meyering.net>
10236
10237         * lib/acl.c (ACL_NOT_WELL_SUPPORTED): New macro.
10238         Use it consistently, rather than enumerating errno constants.
10239
10240 2007-03-04  Bruno Haible  <bruno@clisp.org>
10241
10242         * modules/xvasprintf-tests: New file.
10243         * tests/test-xvasprintf.c: New file.
10244
10245         * modules/vasprintf-tests: New file.
10246         * tests/test-vasprintf.c: New file.
10247
10248         * modules/vasnprintf-tests: New file.
10249         * tests/test-vasnprintf.c: New file.
10250
10251         * modules/vsnprintf-tests: New file.
10252         * tests/test-vsnprintf.c: New file.
10253
10254         * modules/snprintf-tests: New file.
10255         * tests/test-snprintf.c: New file.
10256
10257 2007-03-04  Bruno Haible  <bruno@clisp.org>
10258
10259         Compile relocatable.c only if --enable-relocatable is specified.
10260         * m4/relocatable-lib.m4 (gl_RELOCATABLE_LIBRARY_BODY): Renamed from
10261         gl_RELOCATABLE_LIBRARY.
10262         (gl_RELOCATABLE_LIBRARY, gl_RELOCATABLE_LIBRARY_SEPARATE): New macros.
10263         * m4/relocatable.m4 (gl_RELOCATABLE): Invoke gl_RELOCATABLE_LIBRARY.
10264         (gl_RELOCATABLE_BODY): Require gl_RELOCATABLE_LIBRARY_BODY instead of
10265         gl_RELOCATABLE_LIBRARY.
10266         * modules/relocatable-lib (configure.ac): Invoke gl_RELOCATABLE_LIBRARY.
10267         (Makefile.am): Remove lib_SOURCES.
10268         * modules/relocatable-lib-lgpl (configure.ac): Invoke
10269         gl_RELOCATABLE_LIBRARY.
10270         (Makefile.am): Remove lib_SOURCES.
10271         * modules/relocatable-prog (Makefile.am): Don't compile relocatable.c
10272         always.
10273         * modules/relocatable-prog-wrapper (configure.ac): Invoke
10274         gl_RELOCATABLE_LIBRARY_SEPARATE instead of gl_RELOCATABLE_LIBRARY.
10275
10276 2007-03-04  Bruno Haible  <bruno@clisp.org>
10277
10278         * modules/argmatch-tests: New file.
10279         * tests/test-argmatch.c: New file.
10280
10281         * tests/test-allocsa.c (main): Halve the number of loop runs.
10282
10283         * modules/alloca-opt-tests: New file.
10284         * tests/test-alloca-opt.c: New file.
10285
10286 2007-03-04  Jim Meyering  <jim@meyering.net>
10287
10288         Work around difference between Linux ACLs and Solaris 10 ZFS.
10289         * lib/acl.c (set_acl): Revert to using chmod_or_fchmod also
10290         for EINVAL.
10291
10292 2007-03-03  Bruno Haible  <bruno@clisp.org>
10293
10294         * modules/relocatable-prog (Depends-on): Add back progreloc's
10295         dependencies: canonicalize-lgpl, xalloc, xreadlink, stdbool, unistd.
10296
10297 2007-03-03  Bruno Haible  <bruno@clisp.org>
10298
10299         * modules/relocatable-lib-lgpl: Renamed from modules/relocatable-lib.
10300         * modules/relocatable-lib: New file.
10301
10302 2007-03-03  Bruno Haible  <bruno@clisp.org>
10303
10304         * modules/relocatable-prog: Renamed from modules/relocatable.
10305         * doc/relocatable-maint.texi: Talk about module 'relocatable-prog'.
10306
10307 2007-03-03  Bruno Haible  <bruno@clisp.org>
10308
10309         * modules/relocatable-script (Files): Add doc/relocatable.texi,
10310         m4/relocatable-lib.m4.
10311         (Depends-on): Remove 'relocatable'.
10312         (configure.ac): Add gl_RELOCATABLE_NOP.
10313
10314 2007-03-03  Bruno Haible  <bruno@clisp.org>
10315
10316         * modules/relocatable-prog-wrapper: New file.
10317         * modules/relocatable (Depends-on): Add it. Remove all other
10318         dependencies except progname.
10319         (Files): Remove build-aux/install-reloc, lib/relocwrapper.c.
10320
10321         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE): New macro.
10322         (gl_FUNC_STRERROR): Nop.
10323         * lib/strerror.c: Compile the file only if !HAVE_STRERROR.
10324
10325         * m4/setenv.m4 (gl_FUNC_SETENV_SEPARATE): New macro.
10326         * lib/setenv.c: Compile the file only if _LIBC || !HAVE_SETENV.
10327
10328         * m4/readlink.m4 (gl_FUNC_READLINK_SEPARATE): New macro.
10329         (gl_FUNC_READLINK): Update.
10330
10331         * m4/canonicalize-lgpl.m4 (gl_CANONICALIZE_LGPL_SEPARATE): New macro.
10332
10333 2007-03-03  Bruno Haible  <bruno@clisp.org>
10334
10335         * lib/xreadlink.c: Include <unistd.h> unconditionally.
10336         * modules/xreadlink (Depends-on): Add unistd.
10337         * modules/xreadlink-with-size (Depends-on): Likewise.
10338
10339 2007-03-03  Bruno Haible  <bruno@clisp.org>
10340
10341         * m4/setenv.m4 (gl_FUNC_SETENV, gl_FUNC_UNSETENV): New macros,
10342         extracted from gt_FUNC_SETENV.
10343         (gt_FUNC_SETENV): Remove macro.
10344         * modules/setenv (configure.ac): Add gl_FUNC_SETENV, gl_FUNC_UNSETENV,
10345         remove gt_FUNC_SETENV.
10346
10347 2007-03-03  Bruno Haible  <bruno@clisp.org>
10348
10349         * m4/relocatable-lib.m4 (gl_RELOCATABLE_LIBRARY): Define
10350         ENABLE_RELOCATABLE here.
10351         * m4/relocatable.m4 (gl_RELOCATABLE_BODY): Don't define it here.
10352
10353 2007-03-03  Bruno Haible  <bruno@clisp.org>
10354
10355         * modules/rbtreehash-list-tests (Depends-on): Add progname.
10356         * tests/test-rbtreehash_list.c: Include progname.h.
10357         (main): Call set_program_name.
10358
10359         * modules/rbtree-oset-tests (Depends-on): Add progname.
10360         * tests/test-rbtree_oset.c: Include progname.h.
10361         (main): Call set_program_name.
10362
10363         * modules/rbtree-list-tests (Depends-on): Add progname.
10364         * tests/test-rbtree_list.c: Include progname.h.
10365         (main): Call set_program_name.
10366
10367         * modules/linked-list-tests (Depends-on): Add progname.
10368         * tests/test-linked_list.c: Include progname.h.
10369         (main): Call set_program_name.
10370
10371 2007-03-03  Bruno Haible  <bruno@clisp.org>
10372
10373         * lib/glob-libc.h (_Restrict_): New macro, copied from lib/regex.h.
10374         All uses of __restrict changed to _Restrict_.
10375         * lib/glob_.h (__restrict): Remove macro.
10376
10377 2007-03-02  Bruno Haible  <bruno@clisp.org>
10378
10379         * modules/gettext (configure.ac): Require gettext infrastructure
10380         from version 0.16.1.
10381
10382 2007-03-02  Bruno Haible  <bruno@clisp.org>
10383
10384         * modules/linkedhash-list-tests (Depends-on): Add progname.
10385         * tests/test-linkedhash_list.c: Include progname.h.
10386         (main): Call set_program_name.
10387
10388         * modules/carray-list-tests (Depends-on): Add progname.
10389         * tests/test-carray_list.c: Include progname.h.
10390         (main): Call set_program_name.
10391
10392         * modules/avltreehash-list-tests (Depends-on): Add progname.
10393         * tests/test-avltreehash_list.c: Include progname.h.
10394         (main): Call set_program_name.
10395
10396         * modules/avltree-oset-tests (Depends-on): Add progname.
10397         * tests/test-avltree_oset.c: Include progname.h.
10398         (main): Call set_program_name.
10399
10400         * modules/avltree-list-tests (Depends-on): Add progname.
10401         * tests/test-avltree_list.c: Include progname.h.
10402         (main): Call set_program_name.
10403
10404         * modules/array-oset-tests (Depends-on): Add progname.
10405         * tests/test-array_oset.c: Include progname.h.
10406         (main): Call set_program_name.
10407
10408         * modules/array-list-tests (Depends-on): Add progname.
10409         * tests/test-array_list.c: Include progname.h.
10410         (main): Call set_program_name.
10411
10412         * modules/argp-tests (Depends-on): Add progname.
10413         * tests/test-argp.c: Include argp.h first. Include progname.h.
10414         (main): Call set_program_name.
10415
10416 2007-03-02  Paul Eggert  <eggert@cs.ucla.edu>
10417
10418         * doc/gnulib-tool.texi (Initial import): Reword description of
10419         _FILE_OFFSET_BITS and _GNU_SOURCE, since they sometimes have a
10420         limited effect even if defined after the first system include.
10421
10422 2007-03-01  Bruno Haible  <bruno@clisp.org>
10423
10424         * build-aux/config.libpath: Update to libtool-1.5.22.
10425         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
10426
10427 2007-03-01  Bruno Haible  <bruno@clisp.org>
10428
10429         * doc/relocatable-maint.texi: Recommend to set foo_CPPFLAGS, not
10430         foo_CFLAGS.
10431         Reported by Ralf Wildenhues.
10432
10433 2007-03-01  Bruno Haible  <bruno@clisp.org>
10434
10435         * build-aux/install-reloc: Remove object files left over by some
10436         compilers.
10437         Reported by Ralf Wildenhues.
10438
10439 2007-03-01  Bruno Haible  <bruno@clisp.org>
10440
10441         * build-aux/install-reloc: Break long lines.
10442
10443 2007-03-01  Bruno Haible  <bruno@clisp.org>
10444
10445         * doc/relocatable.texi: Document that it may not work on OpenBSD.
10446         Reported by Ralf Wildenhues.
10447
10448 2007-03-01  Bruno Haible  <bruno@clisp.org>
10449
10450         * doc/gnulib-tool.texi (Initial import): Remove paragraph about
10451         include ordering constraints.
10452
10453 2007-03-01  Paul Eggert  <eggert@cs.ucla.edu>
10454
10455         Followup to the 2007-02-12 patch, using suggestions from Bruno Haible in
10456         <http://lists.gnu.org/archive/html/bug-gnulib/2007-02/msg00136.html>.
10457         * doc/gnulib-tool.texi (Initial import): Mention _FILE_OFFSET_BITS
10458         as another example.
10459         * lib/time_.h: Fix misspelling.
10460         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP):
10461         Require gl_HEADER_TIME_H_DEFAULTS.
10462         * m4/strptime.m4 (gl_FUNC_STRPTIME): Likewise.
10463         * m4/time_r.m4 (gl_TIME_R): Likewise.
10464         * m4/timegm.m4 (gl_FUNC_TIMEGM): Likewise.
10465
10466 2007-03-01  Bruno Haible  <bruno@clisp.org>
10467
10468         * m4/utimecmp.m4 (gl_UTIMECMP): Don't require gl_TIMESPEC.
10469         * m4/utimens.m4 (gl_UTIMENS): Likewise.
10470
10471 2007-03-01  Jim Meyering  <jim@meyering.net>
10472
10473         * modules/xreadlink (Maintainer): Add my name.
10474         * modules/xreadlink-with-size (Depends-on): Alphabetize.
10475
10476 2007-02-26  Ben Pfaff  <blp@cs.stanford.edu>
10477             Bruno Haible  <bruno@clisp.org>
10478
10479         * build-aux/install-reloc: Compile also c-ctype.c.
10480         * build-aux/relocatable.sh.in: New file.
10481         * doc/relocatable.texi: New file.
10482         * doc/relocatable-maint.texi: New file.
10483         * doc/gnulib.texi: Include relocatable-maint.texi.
10484         * lib/progreloc.c: Include unistd.h unconditionally.
10485         * lib/relocwrapper.c: Include unistd.h unconditionally.
10486         Include c-ctype.h.
10487         (add_dotbin): Use c_tolower.
10488         * m4/relocatable-lib.m4: New file, extracted from m4/relocatable.m4.
10489         (gl_RELOCATABLE_LIBRARY): Renamed from AC_RELOCATABLE_LIBRARY.
10490         (gl_RELOCATABLE_NOP): Renamed from AC_RELOCATABLE_NOP.
10491         * m4/relocatable.m4 (AC_RELOCATABLE_LIBRARY, AC_RELOCATABLE_NOP): Move
10492         to m4/relocatable-lib.m4.
10493         (gl_RELOCATABLE): Renamed from AC_RELOCATABLE. Set also
10494         RELOCATABLE_CONFIG_H_DIR, RELOCATABLE_SRC_DIR, RELOCATABLE_BUILD_DIR.
10495         (gl_RELOCATABLE_BODY): Renamed from AC_RELOCATABLE_BODY. Don't
10496         require obsolete macro AC_EXEEXT. Don't check for unistd.h. Don't set
10497         SET_RELOCATABLE. Instead set RELOCATABLE_LDFLAGS, INSTALL_PROGRAM_ENV.
10498         * modules/relocatable: New file.
10499         * modules/relocatable-lib: New file.
10500         * modules/relocatable-script: New file.
10501
10502 2007-02-28  Bruno Haible  <bruno@clisp.org>
10503
10504         Import --enable-relocatable infrastructure.
10505         * build-aux/config.libpath: New file, from GNU gettext.
10506         * build-aux/install-reloc: New file, from GNU gettext.
10507         * build-aux/reloc-ldflags: New file, from GNU gettext.
10508         * lib/relocatable.h: New file, from GNU gettext.
10509         * lib/relocatable.c: New file, from GNU gettext.
10510         * lib/relocwrapper.c: New file, from GNU gettext.
10511         * m4/relocatable.m4: New file, from GNU gettext.
10512
10513 2007-02-28  Bruno Haible  <bruno@clisp.org>
10514
10515         * MODULES.html.sh (File system functions): Add xreadlink-with-size.
10516
10517         * modules/xreadlink: New file, from GNU gettext with modifications.
10518         * lib/xreadlink.c: New file, from GNU gettext.
10519         * lib/xreadlink.h: Add comments.
10520         (xreadlink): New declaration.
10521
10522         * modules/xreadlink-with-size: Renamed from modules/xreadlink.
10523         (Files): Remove m4/xreadlink.m4. Replace lib/xreadlink.c with
10524         lib/xreadlink-with-size.c.
10525         (configure.ac): Remove gl_XREADLINK invocation.
10526         (Makefile.am): Augment lib_SOURCES.
10527         * m4/xreadlink.m4: Remove file.
10528         * lib/xreadlink-with-size.c: Renamed from lib/xreadlink.c.
10529         (xreadlink_with_size): Renamed from xreadink.
10530         * lib/xreadlink.h (xreadlink_with_size): Renamed from xreadink.
10531         * modules/canonicalize (Depends-on): Replace xreadlink with
10532         xreadlink-with-size.
10533         * lib/canonicalize.c (canonicalize_filename_mode): Update.
10534
10535 2007-02-25  Jim Meyering  <jim@meyering.net>
10536
10537         * build-aux/announce-gen: When complaining about excess arguments,
10538         list them.
10539
10540 2007-02-25  Paul Eggert  <eggert@cs.ucla.edu>
10541
10542         * README: Document signed integer overflow situation more
10543         accurately.
10544
10545 2007-02-25  Bruno Haible  <bruno@clisp.org>
10546
10547         * lib/vasnprintf.c (VASNPRINTF): Fix estimate of size needed for a
10548         'a' or 'A' conversion.
10549
10550 2007-02-25  Bruno Haible  <bruno@clisp.org>
10551
10552         * modules/filename: Renamed from modules/pathname.
10553         (Files): Replace lib/pathname.h with lib/filename.h. Replace
10554         lib/concatpath.c with lib/concat-filename.c.
10555         (Makefile.am): Update.
10556         (Include): Replace pathname.h with filename.h.
10557         * lib/filename.h: Renamed from lib/pathname.h.
10558         (concatenated_filename): Renamed from concatenated_pathname.
10559         * lib/concat-filename.c: Renamed from lib/concatpath.c.
10560         (concatenated_filename): Renamed from concatenated_pathname.
10561         * lib/findprog.c: Include filename.h instead of pathname.h.
10562         (find_in_path): Update.
10563         * lib/javacomp.c: Include filename.h instead of pathname.h.
10564         (is_envjavac_gcj43_usable, is_envjavac_oldgcj_14_14_usable,
10565         is_envjavac_oldgcj_14_13_usable, is_envjavac_nongcj_usable,
10566         is_gcj_present, is_gcj43_usable, is_oldgcj_14_14_usable,
10567         is_oldgcj_14_13_usable, is_javac_usable): Update.
10568         * lib/javaexec.c: Include filename.h instead of pathname.h.
10569         (execute_java_class): Update.
10570         * modules/findprog: Update.
10571         * modules/javacomp: Update.
10572         * modules/javaexec: Update.
10573         * MODULES.html.sh (File system functions): Add 'filename', remove
10574         'pathname'.
10575
10576 2007-02-25  Bruno Haible  <bruno@clisp.org>
10577
10578         * modules/printf-frexpl-tests: New file.
10579         * tests/test-printf-frexpl.c: New file.
10580
10581         * modules/printf-frexpl: New file.
10582         * lib/printf-frexpl.h: New file.
10583         * lib/printf-frexpl.c: New file.
10584         * m4/printf-frexpl.m4: New file.
10585
10586 2007-02-25  Bruno Haible  <bruno@clisp.org>
10587
10588         * modules/printf-frexp-tests: New file.
10589         * tests/test-printf-frexp.c: New file.
10590
10591         * modules/printf-frexp: New file.
10592         * lib/printf-frexp.h: New file.
10593         * lib/printf-frexp.c: New file.
10594         * m4/printf-frexp.m4: New file.
10595
10596 2007-02-25  Bruno Haible  <bruno@clisp.org>
10597
10598         Assume automake >= 1.10 for the tests.
10599         * modules/arcfour-tests (TESTS): Remove $(EXEEXT) suffix.
10600         * modules/arctwo-tests: Likewise.
10601         * modules/argp-tests: Likewise.
10602         * modules/avltree-list-tests: Likewise.
10603         * modules/avltree-oset-tests: Likewise.
10604         * modules/avltreehash-list-tests: Likewise.
10605         * modules/carray-list-tests: Likewise.
10606         * modules/crc-tests: Likewise.
10607         * modules/des-tests: Likewise.
10608         * modules/gc-arcfour-tests: Likewise.
10609         * modules/gc-arctwo-tests: Likewise.
10610         * modules/gc-des-tests: Likewise.
10611         * modules/gc-hmac-md5-tests: Likewise.
10612         * modules/gc-hmac-sha1-tests: Likewise.
10613         * modules/gc-md2-tests: Likewise.
10614         * modules/gc-md4-tests: Likewise.
10615         * modules/gc-md5-tests: Likewise.
10616         * modules/gc-pbkdf2-sha1-tests: Likewise.
10617         * modules/gc-rijndael-tests: Likewise.
10618         * modules/gc-sha1-tests: Likewise.
10619         * modules/gc-tests: Likewise.
10620         * modules/getaddrinfo-tests: Likewise.
10621         * modules/hmac-md5-tests: Likewise.
10622         * modules/hmac-sha1-tests: Likewise.
10623         * modules/linked-list-tests: Likewise.
10624         * modules/linkedhash-list-tests: Likewise.
10625         * modules/lock-tests: Likewise.
10626         * modules/md2-tests: Likewise.
10627         * modules/md4-tests: Likewise.
10628         * modules/md5-tests: Likewise.
10629         * modules/rbtree-list-tests: Likewise.
10630         * modules/rbtree-oset-tests: Likewise.
10631         * modules/rbtreehash-list-tests: Likewise.
10632         * modules/read-file-tests: Likewise.
10633         * modules/rijndael-tests: Likewise.
10634         * modules/stdint-tests: Likewise.
10635         * modules/tls-tests: Likewise.
10636
10637 2007-02-24  Bruno Haible  <bruno@clisp.org>
10638
10639         * lib/isnanl.h (isnanl): Define through isnan if isnan is a macro.
10640         * m4/isnan.m4 (gl_FUNC_ISNAN_NO_LIBM): Don't check for isnan as a
10641         function; instead check whether isnan with a double argument links.
10642         * m4/isnanl.m4 (gl_FUNC_ISNANL_NO_LIBM): Don't check for isnanl as a
10643         function; instead check whether isnan with a 'long double' argument
10644         links.
10645         Reported by Eric Blake <ebb9@byu.net>.
10646
10647 2007-02-24  Bruno Haible  <bruno@clisp.org>
10648
10649         * lib/isnan.c: Support the 'long double' case if USE_LONG_DOUBLE is
10650         defined.
10651         * lib/isnanl.c: Remove all code. Just include isnan.c.
10652         * modules/isnanl-nolibm (Files): Add lib/isnan.c.
10653
10654 2007-02-25  Jim Meyering  <jim@meyering.net>
10655
10656         Avoid conflicting types for 'unsetenv' on FreeBSD.
10657         * lib/putenv.c (_unsetenv): Rename from "unsetenv", to avoid
10658         conflicting with FreeBSD's (5.0 and 6.1) function declaration
10659         in stdlib.h.
10660
10661 2007-02-24  Bruno Haible  <bruno@clisp.org>
10662
10663         * modules/isnanl-nolibm-tests: New file.
10664         * tests/test-isnanl.c: New file.
10665
10666         * modules/isnanl-nolibm: New file.
10667         * lib/isnanl.h: New file.
10668         * lib/isnanl.c: New file.
10669         * m4/isnanl.m4: New file.
10670
10671 2007-02-24  Bruno Haible  <bruno@clisp.org>
10672
10673         * modules/isnan-nolibm-tests: New file.
10674         * tests/test-isnan.c: New file.
10675
10676         * modules/isnan-nolibm: New file.
10677         * lib/isnan.h: New file.
10678         * lib/isnan.c: New file.
10679         * m4/isnan.m4: New file.
10680
10681 2007-02-24  Bruno Haible  <bruno@clisp.org>
10682
10683         * lib/frexpl.c (frexpl): Correct return values for x = 1.0L. Don't
10684         assume that an exponent fits in 20 bits.
10685
10686 2007-02-24  Jim Meyering  <jim@meyering.net>
10687
10688         * m4/regex.m4: Update the description of the configure-time option,
10689         --without-included-regex, to state accurately what the defaults are,
10690         and perhaps to give people an idea why using this option is risky.
10691
10692 2007-02-24  Paul Eggert  <eggert@cs.ucla.edu>
10693
10694         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Check for a nanosleep that
10695         loops on small arguments.  This attempts to avoid the problem
10696         Bruno Haible reported for AIX 4.3.2 in
10697         <http://lists.gnu.org/archive/html/bug-gnulib/2007-02/msg00309.html>.
10698
10699 2007-02-23  Bruno Haible  <bruno@clisp.org>
10700
10701         * m4/perl.m4 (gl_PERL): Require version 5.005, not 5.003.
10702         Needed for help2man.
10703
10704 2007-02-23  Karl Berry  <karl@gnu.org>
10705
10706         * doc/gnulib-tool.texi (CVS Issues): mention that when foo_.h
10707         exists, foo.h should be cvs-ignored, not committed.
10708
10709 2007-02-23  Eric Blake  <ebb9@byu.net>
10710
10711         * lib/getdate.h (includes):  Include <time.h>, not "timespec.h".
10712         * lib/stat-time.h (includes): Likewise.
10713         * lib/utimecmp.c (includes): Likewise.
10714         * lib/utimens.h (includes): Likewise.
10715         * lib/getdate.y (includes): Also include "timespec.h" for use
10716         internal to the module.
10717         * modules/utimens (Depends-on): Revert yesterday's patch.
10718         * modules/nanosleep (Depends-on): Add missing dependency.
10719
10720 2007-02-22  Bruno Haible  <bruno@clisp.org>
10721
10722         * lib/glob.c: Don't include getlogin_r.h.
10723
10724 2007-02-22  Jim Meyering  <jim@meyering.net>
10725
10726         * modules/utimens (Depends-on): Add timespec, required for
10727         utimens.h's inclusion of timespec.h.
10728
10729 2007-02-21  Paul Eggert  <eggert@cs.ucla.edu>
10730
10731         * lib/getcwd.c (__getcwd): Undo previous change; it mishandled
10732         long unreadable paths in GNU/Linux.  Problem reported by Andreas
10733         Schwab in
10734         <http://lists.gnu.org/archive/html/bug-gnulib/2007-02/msg00261.html>.
10735         I'll try to think of a better way to fix the Solaris problem.
10736
10737         * lib/getcwd.c (__getcwd): Don't assume getcwd (NULL, 0) works
10738         like glibc; on Solaris 10, it fails with errno == EINVAL.
10739         POSIX says the behavior is unspecified if the first argument is NULL,
10740         so play it safe and never pass NULL to the system getcwd.
10741
10742 2007-02-21  Jim Meyering  <jim@meyering.net>
10743
10744         * lib/gettimeofday.c (rpl_gettimeofday): Remove declaration
10745         of gettimeofday.  It would conflict with the one now always
10746         provided via sys_time_.h.  Reported by Matthew Woehlke, as
10747         an IRIX 6.5 build failure.
10748
10749 2007-02-20  Paul Eggert  <eggert@cs.ucla.edu>
10750
10751         Minor fixups to port to Solaris 10 with Sun C 5.8.
10752         * lib/getcwd.c [!_LIBC]: Include dirfd.h, since we use dirfd.
10753         * modules/getcwd (Depends-on): Add dirfd.
10754         * lib/putenv.c (putenv): #undef it.
10755         (rpl_putenv): New decl.
10756         (malloc, free): Include <stdlib.h> rather than prototyping separately.
10757
10758 2007-02-20  Bruno Haible  <bruno@clisp.org>
10759
10760         * modules/stdio-tests: New file.
10761         * tests/test-stdio.c: New file.
10762
10763         * modules/vsnprintf (Files): Remove lib/vsnprintf.h.
10764         (Depends-on): Add stdio.
10765         (configure.ac): Invoke gl_STDIO_MODULE_INDICATOR.
10766         (Include): Use <stdio.h> instead of vsnprintf.h.
10767         * m4/vsnprintf.m4 (gl_FUNC_VSNPRINTF): Require gl_STDIO_H_DEFAULTS. Set
10768         HAVE_DECL_VSNPRINTF.
10769         * lib/vsnprintf.c: Include <stdio.h> instead of vsnprintf.h.
10770
10771         * modules/snprintf (Files): Remove lib/snprintf.h.
10772         (Depends-on): Add stdio.
10773         (configure.ac): Invoke gl_STDIO_MODULE_INDICATOR.
10774         (Include): Use <stdio.h> instead of snprintf.h.
10775         * m4/snprintf.m4 (gl_FUNC_SNPRINTF): Require gl_STDIO_H_DEFAULTS. Set
10776         HAVE_DECL_SNPRINTF.
10777         * lib/snprintf.c: Include <stdio.h> instead of snprintf.h.
10778         * lib/getaddrinfo.c: Likewise.
10779
10780         * modules/stdio: New file.
10781         * lib/stdio_.h: New file, incorporating snprintf.h and vsnprintf.h.
10782         * lib/snprintf.h: Remove file.
10783         * lib/vsnprintf.h: Remove file.
10784         * lib/.cppi-disable: Remove snprintf.h.
10785         * m4/stdio_h.m4: New file.
10786         * MODULES.html.sh (Support for systems lacking ISO C 99): Add stdio.
10787
10788 2007-02-20  Jim Meyering  <jim@meyering.net>
10789
10790         * lib/ftruncate.c [HAVE_CHSIZE]: Document that this code is
10791         used by e.g., mingw.  From Bruno Haible.
10792
10793 2007-02-19  Bruno Haible  <bruno@clisp.org>
10794
10795         * lib/string_.h: Use "#pragma GCC system_header" to suppress some gcc
10796         warnings.
10797         Reported by Ben Pfaff <blp@cs.stanford.edu>.
10798
10799 2007-02-19  Bruno Haible  <bruno@clisp.org>
10800
10801         * m4/ftruncate.m4 (gl_FUNC_FTRUNCATE): Don't request a complaint mail
10802         from mingw users.
10803
10804 2007-02-19  Bruno Haible  <bruno@clisp.org>
10805
10806         * lib/stdlib_.h: Use "#pragma GCC system_header" to suppress some gcc
10807         warnings.
10808         Reported by Joel E. Denny <jdenny@ces.clemson.edu> via Paul Eggert.
10809
10810 2007-02-19  Jim Meyering  <jim@meyering.net>
10811
10812         Don't use FD after a successful "fdopendir (fd)".
10813         * lib/getcwd.c (__getcwd) [AT_FDCWD]: fdopendir (fd) usually closes fd.
10814         Reset it by calling dirfd on the just-obtained DIR*.
10815
10816         * m4/ftruncate.m4: Adjust comment to give this module a 3-year reprieve.
10817         Prompted by a report from Bruno Haible that mingw lacks ftruncate.
10818
10819 2007-02-18  Bruno Haible  <bruno@clisp.org>
10820
10821         * lib/readlink.c: Include <unistd.h>.
10822         * m4/readlink.m4 (gl_FUNC_READLINK): Require gl_UNISTD_H_DEFAULTS. Set
10823         HAVE_READLINK.
10824         * modules/readlink (Depends-on): Add unistd.
10825         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
10826         (Include): Add <unistd.h>.
10827
10828         * lib/getlogin_r.h: Remove file.
10829         * lib/getlogin_r.c: Include <unistd.h> instead of getlogin_r.h.
10830         * m4/getlogin_r.m4 (gl_GETLOGIN_R_SUBSTITUTE): Remove macro.
10831         (gl_GETLOGIN_R): Inline it here. Require gl_UNISTD_H_DEFAULTS. Set
10832         HAVE_DECL_GETLOGIN_R.
10833         * modules/getlogin_r (Files): Remove lib/getlogin_r.h.
10834         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
10835         (Include): Use <unistd.h> instead of getlogin_r.h.
10836
10837         * lib/getcwd.h: Remove file.
10838         * lib/getcwd.c: Include <unistd.h> instead of getcwd.h.
10839         * lib/xgetcwd.c: Likewise.
10840         * m4/getcwd.m4 (gl_FUNC_GETCWD): Require gl_UNISTD_H_DEFAULTS. Set
10841         REPLACE_GETCWD. Don't define __GETCWD_PREFIX.
10842         * modules/getcwd (Files): Remove lib/getcwd.h.
10843         (Depends-on): Add unistd.
10844         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
10845         (Include): Use <unistd.h> instad of getcwd.h.
10846
10847         * lib/ftruncate.c: Include <unistd.h> first.
10848         * m4/ftruncate.m4 (gl_FUNC_FTRUNCATE): Require gl_UNISTD_H_DEFAULTS.
10849         Set HAVE_FTRUNCATE.
10850         * modules/ftruncate (Depends-on): Add unistd.
10851         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
10852
10853         * lib/fchdir.c: Include <unistd.h> first.
10854         * lib/dirent_.h: Test REPLACE_FCHDIR, not FCHDIR_REPLACEMENT.
10855         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Require gl_UNISTD_H_DEFAULTS instead
10856         of gl_HEADER_UNISTD_DEFAULTS. Set REPLACE_FCHDIR. Don't set UNISTD_H.
10857         * modules/fchdir (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
10858         (Makefile.am): Substitute also REPLACE_FCHDIR into dirent.h.
10859
10860         * lib/dup2.c: Include <unistd.h> first.
10861         * m4/dup2.m4 (gl_FUNC_DUP2): Require gl_UNISTD_H_DEFAULTS. Set
10862         HAVE_DUP2.
10863         * modules/dup2 (Depends-on): Add unistd.
10864         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
10865
10866         * lib/chown.c: Include <unistd.h> first. Undefine chown later.
10867         * m4/chown.m4 (gl_FUNC_CHOWN): Require gl_UNISTD_H_DEFAULTS. Set
10868         REPLACE_CHOWN. Don't define chown as a macro here.
10869         * modules/chown (Depends-on): Add unistd.
10870         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
10871
10872         * lib/unistd_.h: Test HAVE_UNISTD_H determined at configure time.
10873         Add definition for GL_LINK_WARNING.
10874         (chown, dup2): New declarations.
10875         (fchdir): Test REPLACE_FCHDIR, not FCHDIR_REPLACEMENT. Provide optional
10876         link warning.
10877         (ftruncate): New declaration.
10878         (getcwd): New declaration, taken from old getcwd.h.
10879         (getlogin_r): New declaration, taken from old getlogin_r.h.
10880         (readlink): New declaration.
10881         * m4/unistd_h.m4 (gl_UNISTD_H): Renamed from gl_HEADER_UNISTD. Don't
10882         set UNISTD_H. Inline gl_PREREQ_UNISTD. Set HAVE_UNISTD_H.
10883         (gl_PREREQ_UNISTD): Remove macro.
10884         (gl_UNISTD_MODULE_INDICATOR): New macro.
10885         (gl_UNISTD_H_DEFAULTS): Renamed from gl_HEADER_UNISTD_DEFAULTS. Set
10886         many new variables. Don't set UNISTD_H.
10887         * modules/unistd (Description): Change.
10888         (Depends-on): Add link-warning.
10889         (configure.ac): Update.
10890         (Makefile.am): Create unistd.h always. Substitute many new variables
10891         into it.
10892
10893 2007-02-18  Bruno Haible  <bruno@clisp.org>
10894
10895         * lib/stdlib_.h (getsubopt): New declaration, copied from getsubopt.h.
10896         * modules/stdlib (stdlib.h): Also substitute GNULIB_GETSUBOPT and
10897         HAVE_GETSUBOPT.
10898         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Also initialize
10899         GNULIB_GETSUBOPT and HAVE_GETSUBOPT.
10900         * lib/getsubopt.h: Remove file.
10901         * modules/getsubopt (Files): Remove lib/getsubopt.h.
10902         (Depends-on): Add stdlib.
10903         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
10904         (Includes): Use <stdlib.h> instead of getsubopt.h.
10905         * m4/getsubopt.m4 (gl_FUNC_GETSUBOPT): Require gl_STDLIB_H_DEFAULTS.
10906         Set HAVE_GETSUBOPT.
10907         * lib/getsubopt.c: Don't include getsubopt.h.
10908
10909 2007-02-18  Bruno Haible  <bruno@clisp.org>
10910
10911         * modules/fchdir (Depends-on): Add dup2.
10912
10913 2007-02-18  Bruno Haible  <bruno@clisp.org>
10914
10915         * lib/stdlib_.h: Handle glibc's special invocation convention
10916         specially.
10917
10918 2007-02-18  Bruno Haible  <bruno@clisp.org>
10919
10920         * modules/stdlib-tests: New file.
10921         * tests/test-stdlib.c: New file.
10922
10923         * modules/mkstemp (Files): Remove lib/mkstemp.h.
10924         (Depends-on): Add stdlib.
10925         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
10926         (Includes): Use <stdlib.h> instead of mkstemp.h.
10927         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Require gl_STDLIB_H_DEFAULTS. Set
10928         REPLACE_MKSTEMP. Remove definition of __MKSTEMP_PREFIX.
10929         * lib/mkstemp.c: Don't include mkstemp.h.
10930         * lib/mkstemp-safer.c: Include <stdlib.h> instead of mkstemp.h.
10931         * lib/stdlib--.h: Don't include mkstemp.h.
10932
10933         * modules/mkdtemp (Files): Remove lib/mkdtemp.h.
10934         (Depends-on): Add stdlib.
10935         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
10936         (Includes): Use <stdlib.h> instead of mkdtemp.h.
10937         * m4/mkdtemp.m4 (gt_FUNC_MKDTEMP): Require gl_STDLIB_H_DEFAULTS. Set
10938         HAVE_MKDTEMP.
10939         * lib/mkdtemp.c: Don't include mkdtemp.h.
10940         * lib/clean-temp.c: Don't include mkdtemp.h.
10941
10942         * modules/exit (Files): Remove lib/exit.h.
10943         (Depends-on): Add stdlib.
10944         (Makefile.am): Remove lib_SOURCES.
10945         (Include): Use <stdlib.h> instead of exit.h.
10946         * lib/argmatch.c: Don't include exit.h.
10947         * lib/execute.c: Likewise.
10948         * lib/pagealign_alloc.c: Likewise.
10949         * lib/pipe.c: Likewise.
10950         * lib/wait-process.c: Likewise.
10951         * lib/copy-file.c: Include <stdlib.h> instead of exit.h.
10952         * lib/exitfail.c: Likewise.
10953         * lib/savewd.c: Likewise.
10954         * lib/xsetenv.c: Likewise.
10955
10956         * modules/stdlib: New file.
10957         * lib/stdlib_.h: New file, incorporating exit.h, mkdtemp.h, mkstemp.h
10958         and extra comments about mkstemp().
10959         * lib/exit.h: Remove file.
10960         * lib/mkdtemp.h: Remove file.
10961         * lib/mkstemp.h: Remove file.
10962         * m4/stdlib_h.m4: New file.
10963         * MODULES.html.sh (Support for systems lacking ANSI C 89): Add stdlib.
10964
10965 2007-02-18  Bruno Haible  <bruno@clisp.org>
10966
10967         * modules/math-tests: New file.
10968         * tests/test-math.c: New file.
10969
10970         * modules/math: New file.
10971         * modules/mathl (Files): Remove lib/mathl.h.
10972         (Depends-on): Add math.
10973         (Makefile.am): Don't mention mathl.h.
10974         (Include): Use <math.h> instead of mathl.h.
10975         * lib/math_.h: New file.
10976         * lib/mathl.h: Remove file.
10977         * lib/acosl.c: Include <config.h> and <math.h> first. Don't include
10978         mathl.h.
10979         * lib/asinl.c: Likewise.
10980         * lib/atanl.c: Likewise.
10981         * lib/ceill.c: Likewise.
10982         * lib/cosl.c: Likewise.
10983         * lib/expl.c: Likewise.
10984         * lib/floorl.c: Likewise.
10985         * lib/frexpl.c: Likewise.
10986         * lib/ldexpl.c: Likewise.
10987         * lib/logl.c: Likewise.
10988         * lib/sincosl.c: Likewise.
10989         * lib/sinl.c: Likewise.
10990         * lib/sqrtl.c: Likewise.
10991         * lib/tanl.c: Likewise.
10992         * lib/trigl.c: Likewise.
10993         * m4/math_h.m4: New file.
10994         * MODULES.html.sh (Mathematics): Add math.
10995
10996 2007-02-17  Bruno Haible  <bruno@clisp.org>
10997
10998         * modules/wctype-tests: New file.
10999         * tests/test-wctype.c: New file.
11000
11001         * modules/wchar-tests: New file.
11002         * tests/test-wchar.c: New file.
11003
11004         * modules/unistd-tests: New file.
11005         * tests/test-unistd.c: New file.
11006
11007         * modules/time-tests: New file.
11008         * tests/test-time.c: New file.
11009
11010         * modules/sysexits-tests: New file.
11011         * tests/test-sysexits.c: New file.
11012
11013         * modules/sys_time-tests: New file.
11014         * tests/test-sys_time.c: New file.
11015
11016         * modules/sys_stat-tests: New file.
11017         * tests/test-sys_stat.c: New file.
11018
11019         * modules/sys_socket-tests: New file.
11020         * tests/test-sys_socket.c: New file.
11021
11022         * modules/sys_select-tests: New file.
11023         * tests/test-sys_select.c: New file.
11024
11025         * modules/string-tests: New file.
11026         * tests/test-string.c: New file.
11027
11028         * modules/stdbool-tests: New file.
11029         * tests/test-stdbool.c: New file.
11030
11031         * modules/netinet_in-tests: New file.
11032         * tests/test-netinet_in.c: New file.
11033
11034         * modules/inttypes-tests: New file.
11035         * tests/test-inttypes.c: New file.
11036
11037         * modules/fcntl-tests: New file.
11038         * tests/test-fcntl.c: New file.
11039
11040         * modules/byteswap-tests: New file.
11041         * tests/test-byteswap.c: New file.
11042
11043         * modules/arpa_inet-tests: New file.
11044         * tests/test-arpa_inet.c: New file.
11045
11046 2007-02-17  Bruno Haible  <bruno@clisp.org>
11047
11048         * lib/inttypes_.h: Add definition for GL_LINK_WARNING.
11049         (imaxabs, imaxdiv, strtoimax, strtoumax): Don't declare the function
11050         if the corresponding module is not enabled. Emit link warnings if
11051         the function is used nevertheless.
11052         * m4/inttypes.m4 (gl_INTTYPES_H): Never use the existing <inttypes.h>.
11053         Don't AC_SUBST HAVE_DECL_IMAXABS, HAVE_DECL_IMAXDIV,
11054         HAVE_DECL_STRTOIMAX, HAVE_DECL_STRTOUMAX.
11055         (gl_INTTYPES_MODULE_INDICATOR, gl_INTTYPES_H_DEFAULTS): New macros.
11056         * modules/inttypes (Depends-on): Add link-warning.
11057         (Makefile.am): Copy the contents of build-aux/link-warning.h into
11058         inttypes.h. Substitute also GNULIB_IMAXABS, GNULIB_IMAXDIV,
11059         GNULIB_STRTOIMAX, GNULIB_STRTOUMAX.
11060         * modules/imaxabs (configure.ac): Invoke gl_INTTYPES_MODULE_INDICATOR.
11061         * modules/imaxdiv (configure.ac): Likewise.
11062         * modules/strtoimax (configure.ac): Likewise.
11063         * modules/strtoumax (configure.ac): Likewise.
11064
11065 2007-02-17  Bruno Haible  <bruno@clisp.org>
11066
11067         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Include the contents of
11068         gl_STRING_MODULE_INDICATOR_DEFAULTS.
11069         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Remove macro.
11070         (gl_HEADER_STRING_H_BODY, gl_STRING_MODULE_INDICATOR): Update.
11071
11072 2007-02-17  Bruno Haible  <bruno@clisp.org>
11073
11074         * modules/link-warning: New file.
11075         * build-aux/link-warning.h: New file, extracted from lib/string_.h.
11076         * lib/string_.h (GL_LINK_WARNING): Remove definition.
11077         * modules/string (Depends-on): Add link-warning.
11078         (Makefile.am): Copy the contents of build-aux/link-warning.h into
11079         string.h.
11080         * MODULES.html.sh (Support for building libraries and executables): Add
11081         link-warning.
11082
11083 2007-02-17  Bruno Haible  <bruno@clisp.org>
11084
11085         * lib/string_.h (memmem, mempcpy, memrchr, stpcpy, stpncpy, strcasecmp,
11086         strncasecmp, strchr, strchrnul, strdup, strndup, strnlen, strcspn,
11087         strpbrk, strspn, strrchr, strsep, strstr, strcasestr, strtok_r): Break
11088         long lines.
11089
11090 2007-02-17  Ben Pfaff  <blp@cs.stanford.edu>
11091             Bruno Haible  <bruno@clisp.org>
11092
11093         * modules/tmpfile: New file.
11094         * lib/tmpfile.c: New file.
11095         * m4/tmpfile.m4: New file.
11096         * MODULES.html.sh (func_all_modules): New section "Input/output".
11097
11098 2007-02-15  Bruno Haible  <bruno@clisp.org>
11099
11100         * lib/clean-temp.c [WIN32 && !CYGWIN]: Include <windows.h>.
11101         (supports_delete_on_close): New function.
11102         (open_temp, fopen_temp): Use _O_TEMPORARY when supported.
11103
11104 2007-02-14  Bruno Haible  <bruno@clisp.org>
11105
11106         * modules/mbspcasecmp-tests: New file.
11107         * tests/test-mbspcasecmp.sh: New file.
11108         * tests/test-mbspcasecmp.c: New file.
11109
11110         New module mbspcasecmp.
11111         * modules/mbspcasecmp: New file.
11112         * lib/mbspcasecmp.c: New file.
11113         * lib/string_.h (strncasecmp): Change warning message.
11114         (mbspcasecmp): New declaration.
11115         * m4/mbspcasecmp.m4: New file.
11116         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
11117         GNULIB_MBSPCASECMP.
11118         * modules/string (string.h): Also substitute GNULIB_MBSPCASECMP.
11119         * MODULES.html.sh (Internationalization functions): Add mbspcasecmp.
11120
11121 2007-02-14  Bruno Haible  <bruno@clisp.org>
11122
11123         * modules/mbsncasecmp-tests: New file.
11124         * tests/test-mbsncasecmp.sh: New file.
11125         * tests/test-mbsncasecmp.c: New file.
11126
11127         New module mbsncasecmp.
11128         * modules/mbsncasecmp: New file.
11129         * lib/mbsncasecmp.c: New file.
11130         * lib/string_.h (mbsncasecmp): New declaration.
11131         * m4/mbsncasecmp.m4: New file.
11132         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
11133         GNULIB_MBSNCASECMP.
11134         * modules/string (string.h): Also substitute GNULIB_MBSNCASECMP.
11135         * MODULES.html.sh (Internationalization functions): Add mbsncasecmp.
11136
11137 2007-02-14  Paul Eggert  <eggert@cs.ucla.edu>
11138
11139         * lib/exclude.c (FNM_EXTMATCH): Define if system does not.
11140         Verify that it doesn't overlap with our flags.
11141         (fnmatch_no_wildcards): Don't use strcasecmp or strncasecmp, which
11142         do not have the desired effect in multibyte locales; instead, use
11143         mbscasecmp.
11144         * modules/exclude (Depends-on): Depend on mbscasecmp, not strcase.
11145         Add dependency on xalloc.  Depend on fnmatch, not fnmatch-gnu, since
11146         we don't require GNU fnmatch ourselves (if our users require it, they
11147         should do so explicitly).
11148
11149         Fix regex code so it doesn't rely on strcasecmp.
11150         * lib/regex_internal.h: Include <langinfo.h> only if _LIBC is defined.
11151         Otherwise, include gnulib's langinfo.h.
11152         * lib/regcomp.c (init_dfa): Don't use strcasecmp, as it can have
11153         undesirable behavior in non-C locales.  Instead, rely on localecharset.
11154         * m4/regex.m4 (gl_PREREQ_REGEX): Don't require AM_LANGINFO_CODESET.
11155         * modules/regex (FILES): Remove m4/codeset.m4.
11156         (Depends-on): Add localcharset.  Remove strcase.
11157
11158 2007-02-13  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
11159
11160         * m4/unlinkdir.m4 (gl_UNLINKDIR): Fix m4 quoting bug.
11161         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Likewise.
11162
11163 2007-02-13  Bruno Haible  <bruno@clisp.org>
11164
11165         * m4/intdiv0.m4 (gt_INTDIV0): Assume ANSI C. Fix underquoting bug.
11166         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
11167
11168 2007-02-12  Bruno Haible  <bruno@clisp.org>
11169
11170         * lib/string_.h (memmem, mempcpy, memrchr, stpcpy, stpncpy, strchrnul,
11171         strdup, strndup, strnlen, strpbrk, strsep, strtok_r): If
11172         GNULIB_POSIXCHECK and the gnulib module not enabled, provoke a link-
11173         time warning rather than a link error.
11174
11175 2007-02-12  Bruno Haible  <bruno@clisp.org>
11176
11177         * m4/locale-fr.m4 (gt_LOCALE_FR): Fix m4 quoting bug.
11178         * m4/locale-zh.m4 (gt_LOCALE_ZH_CN): Likewise.
11179         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
11180
11181 2007-02-12  Paul Eggert  <eggert@cs.ucla.edu>
11182
11183         * lib/string_.h (strncasecmp): Fix typo: this macro takes 3
11184         args, not 2.
11185
11186 2007-02-12  Paul Eggert  <eggert@cs.ucla.edu>
11187
11188         New module 'time', so that apps can include <time.h> as per
11189         POSIX and GNU instead of separate include files like time_r.h
11190         and timegm.h.  This implementation tries out a simpler approach
11191         for replacing decls in standard include files (as compared to
11192         the string module), somewhat as an experiment.
11193
11194         * config/srclist.txt: Comment out mktime.c for now.
11195         * doc/gnulib-tool.texi (Initial import): Don't use time_r as an example
11196         since it doesn't apply any more.  Use generic wording instead.
11197         * MODULES.html.sh (Support for systems lacking POSIX:2001): New module
11198         'time'.
11199         * lib/time_.h, m4/time_h.m4, modules/time: New files.
11200         * lib/strptime.h, lib/time_r.h, lib/timegm.h: Remove.
11201         * lib/mktime.c: Include config.h depending on _LIBC, not HAVE_CONFIG_H.
11202         Don't include <sys/types.h>; no longer needed since we assume C89.
11203         * lib/mktime.c: Don't include "time_r.h"; no longer needed.
11204         * lib/strftime.c: Likewise.
11205         * lib/time_r.c: Likewise.
11206         * lib/nanosleep.c (nanosleep): #undef after include files, not before.
11207         * lib/nanosleep.c: Include <time.h> first, to check interface.
11208         * lib/strptime.c: Likewise.
11209         * lib/time_r.c: Likewise.
11210         * lib/timegm.c: Likewise.
11211         * lib/strptime.c: Don't include strptime.h or time_r.h; no longer
11212         needed.
11213         * lib/timegm.c: Don't include timegm.h; no longer needed.
11214         * lib/timespec.h: Don't include <sys/time.h> before <time.h>;
11215         time.h now handles any problems in that area.
11216         (struct timespec, nanosleep): Remove; time.h now arranges for these.
11217         * lib/xnanosleep.c: Don't include timespec.h; no longer needed now
11218         that time.h defines struct timespec.
11219         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Check that nanosleep is declared.
11220         Set REPLACE_NANOSLEEP.  Don't AC_DEFINE nanosleep; the time module now
11221         handles that.
11222         * m4/strptime.m4 (gl_FUNC_STPRTIME): Set REPLACE_STRPTIME.
11223         * m4/time_r.m4 (gl_TIME_R): Don't define HAVE_TIME_R_POSIX; no longer
11224         needed.  Set REPLACE_LOCALTIME.
11225         * m4/timegm.m4 (gl_FUNC_TIMEGM): Set REPLACE_TIMEGM.
11226         * m4/timespec.m4 (gl_CHECK_TYPE_STRUCT_TIMESPEC): Move to time_h.m4.
11227         (gl_TIMESPEC): Don't check for sys/time.h or struct timespec or
11228         nanosleep; time_h.m4 now does that.  Don't require
11229         gl_USE_SYSTEM_EXTENSIONS; no longer needed directly, and the time
11230         module handles this now.
11231         * modules/getdate (Depends-on): Remove timespec.  Add time.
11232         * modules/nanosleep (Depends-on): Likewise.
11233         * modules/stat-time (Depends-on): Likewise.
11234         * modules/nanosleep (Include): Include time.h, not timespec.h.
11235         * modules/strptime (Files): Remove lib/strptime.h.
11236         (Depends-on): Add extensions, time.
11237         (Include): Include time.h, not strptime.h.
11238         * modules/time_r (Files): Remove lib/time_r.h.
11239         (Depends-on): Add time.
11240         (Include): Include time.h, not time_r.h.
11241         * modules/timegm: Likewise.
11242         * modules/timespec (Description): Now does timespec-related decls
11243         of our own, instead of struct timespec itself.
11244         (Depends-on): Add time; remove extensions.
11245         (Maintainer): Add self.
11246         * modules/utimecmp (Depends-on): Add time; remove timespec.
11247         * modules/utimens (Depends-on): Likewise.
11248         * modules/xnanosleep (Depends-on): Likewise.
11249
11250 2007-02-11  Bruno Haible  <bruno@clisp.org>
11251
11252         * lib/c-strstr.c: Include allocsa.h.
11253         (knuth_morris_pratt): Use allocsa/freesa instead of malloc/free.
11254         * lib/c-strcasestr.c: Include allocsa.h.
11255         (knuth_morris_pratt): Use allocsa/freesa instead of malloc/free.
11256         * lib/strcasestr.c: Include allocsa.h.
11257         (knuth_morris_pratt): Use allocsa/freesa instead of malloc/free.
11258         * lib/mbsstr.c: Include allocsa.h.
11259         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): Use
11260         allocsa/freesa instead of malloc/free.
11261         * lib/mbscasestr.c: Include allocsa.h.
11262         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): Use
11263         allocsa/freesa instead of malloc/free.
11264         * modules/c-strstr (Depends-on): Add allocsa.
11265         * modules/c-strcasestr (Depends-on): Likewise.
11266         * modules/strcasestr (Depends-on): Likewise.
11267         * modules/mbsstr (Depends-on): Likewise.
11268         * modules/mbscasestr (Depends-on): Likewise.
11269
11270 2007-02-11  Bruno Haible  <bruno@clisp.org>
11271
11272         * lib/mbsspn.c (mbsspn): Fix bug. Remove unnecessary strlen call.
11273
11274         * modules/mbsspn-tests: New file.
11275         * tests/test-mbsspn.sh: New file.
11276         * tests/test-mbsspn.c: New file.
11277
11278 2007-02-11  Bruno Haible  <bruno@clisp.org>
11279
11280         * lib/mbspbrk.c (mbspbrk): Remove unneeded cast.
11281
11282         * modules/mbspbrk-tests: New file.
11283         * tests/test-mbspbrk.sh: New file.
11284         * tests/test-mbspbrk.c: New file.
11285
11286 2007-02-11  Bruno Haible  <bruno@clisp.org>
11287
11288         * lib/mbscspn.c (mbscspn): Remove unnecessary strlen call and
11289         unneeded cast.
11290
11291         * modules/mbscspn-tests: New file.
11292         * tests/test-mbscspn.sh: New file.
11293         * tests/test-mbscspn.c: New file.
11294
11295 2007-02-11  Bruno Haible  <bruno@clisp.org>
11296
11297         * modules/mbscasecmp-tests: New file.
11298         * tests/test-mbscasecmp.sh: New file.
11299         * tests/test-mbscasecmp.c: New file.
11300
11301 2007-02-11  Bruno Haible  <bruno@clisp.org>
11302
11303         Ensure O(n) worst-case complexity of mbscasestr.
11304         * lib/mbscasestr.c: Include stdbool.h.
11305         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): New
11306         functions.
11307         (mbscasestr): Add some bookkeeping. Invoke knuth_morris_pratt_* when
11308         the bookkeeping indicates that it's worth it.
11309         * modules/mbscasestr (Depends-on): Add stdbool, mbslen, strnlen.
11310
11311         * modules/mbscasestr-tests: New file.
11312         * tests/test-mbscasestr1.c: New file.
11313         * tests/test-mbscasestr2.sh: New file.
11314         * tests/test-mbscasestr2.c: New file.
11315         * tests/test-mbscasestr3.sh: New file.
11316         * tests/test-mbscasestr3.c: New file.
11317         * tests/test-mbscasestr4.sh: New file.
11318         * tests/test-mbscasestr4.c: New file.
11319         * m4/locale-tr.m4: New file.
11320
11321 2007-02-11  Bruno Haible  <bruno@clisp.org>
11322
11323         Ensure O(n) worst-case complexity of mbsstr.
11324         * lib/mbsstr.c: Include stdbool.h.
11325         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): New
11326         functions.
11327         (mbsstr): Add some bookkeeping. Invoke knuth_morris_pratt_* when the
11328         bookkeeping indicates that it's worth it.
11329         * modules/mbsstr (Depends-on): Add stdbool, mbslen, strnlen.
11330
11331         * modules/mbsstr-tests: New file.
11332         * tests/test-mbsstr1.c: New file.
11333         * tests/test-mbsstr2.sh: New file.
11334         * tests/test-mbsstr2.c: New file.
11335         * tests/test-mbsstr3.sh: New file.
11336         * tests/test-mbsstr3.c: New file.
11337         * m4/locale-fr.m4: New file.
11338
11339 2007-02-11  Bruno Haible  <bruno@clisp.org>
11340
11341         * lib/mbsrchr.c (mbsrchr): Fix bug.
11342
11343         * modules/mbsrchr-tests: New file.
11344         * tests/test-mbsrchr.sh: New file.
11345         * tests/test-mbsrchr.c: New file.
11346
11347 2007-02-11  Bruno Haible  <bruno@clisp.org>
11348
11349         * lib/mbschr.c (mbschr): Fix bug.
11350
11351         * modules/mbschr-tests: New file.
11352         * tests/test-mbschr.sh: New file.
11353         * tests/test-mbschr.c: New file.
11354         * m4/locale-zh.m4: New file.
11355
11356 2007-02-11  Bruno Haible  <bruno@clisp.org>
11357
11358         Support for copying multibyte string iterators.
11359         * lib/mbiter.h: Include <string.h>.
11360         (mbiter_multi_copy): New function.
11361         (mbi_copy): New macro.
11362         * lib/mbuiter.h: Include <string.h>.
11363         (mbuiter_multi_copy): New function.
11364         (mbui_copy): New macro.
11365
11366 2007-02-11  Bruno Haible  <bruno@clisp.org>
11367
11368         New module mbslen.
11369         * modules/mbslen: New file.
11370         * lib/mbslen.c: New file.
11371         * lib/string_.h (mbslen): New declaration.
11372         * m4/mbslen.m4: New file.
11373         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
11374         GNULIB_MBSLEN.
11375         * modules/string (string.h): Also substitute GNULIB_MBSLEN.
11376         * MODULES.html.sh (Internationalization functions): Add mbslen.
11377
11378 2007-02-11  Bruno Haible  <bruno@clisp.org>
11379
11380         Ensure O(n) worst-case complexity of strcasestr substitute.
11381         * lib/strcasestr.c: Include stdbool.h.
11382         (knuth_morris_pratt): New function.
11383         (strcasestr): Add some bookkeeping. Invoke knuth_morris_pratt when the
11384         bookkeeping indicates that it's worth it.
11385         * modules/strcasestr (Depends-on): Add stdbool, strnlen.
11386
11387         * modules/strcasestr-tests: New file.
11388         * tests/test-strcasestr.c: New file.
11389
11390 2007-02-11  Bruno Haible  <bruno@clisp.org>
11391
11392         Ensure O(n) worst-case complexity of c_strcasestr.
11393         * lib/c-strcasestr.c: Include stdbool.h, string.h.
11394         (knuth_morris_pratt): New function.
11395         (c_strcasestr): Add some bookkeeping. Invoke knuth_morris_pratt when
11396         the bookkeeping indicates that it's worth it.
11397         * modules/c-strcasestr (Depends-on): Add stdbool, strnlen.
11398
11399         * modules/c-strcasestr-tests: New file.
11400         * tests/test-c-strcasestr.c: New file.
11401
11402 2007-02-11  Bruno Haible  <bruno@clisp.org>
11403
11404         Ensure O(n) worst-case complexity of c_strstr.
11405         * lib/c-strstr.c: Include stdbool.h, string.h.
11406         (knuth_morris_pratt): New function.
11407         (c_strstr): Add some bookkeeping. Invoke knuth_morris_pratt when the
11408         bookkeeping indicates that it's worth it.
11409         * modules/c-strstr (Depends-on): Add stdbool, strnlen.
11410
11411         * lib/c-strstr.c: Complete rewrite for maintainability.
11412
11413         * modules/c-strstr-tests: New file.
11414         * tests/test-c-strstr.c: New file.
11415
11416 2007-02-11  Bruno Haible  <bruno@clisp.org>
11417
11418         * m4/javacomp.m4 (gt_JAVACOMP): Work around a 'tr' bug in coreutils
11419         5.2.1 and earlier, whereby \055 was treated just like the range
11420         delimiter '-'.
11421         Reported by Joel E. Denny <jdenny@ces.clemson.edu>.
11422
11423 2007-02-08  Bruno Haible  <bruno@clisp.org>
11424
11425         * modules/regex (Depends-on): Add stdbool.
11426         Reported by Dalibor Topic <robilad@kaffe.org>.
11427
11428 2007-02-05  Paul Eggert  <eggert@cs.ucla.edu>
11429
11430         * m4/regex.m4 (gl_REGEX): Check for glibc bug #3957.
11431         Prefer returning from main to exiting from it.
11432         Remove unnecessary parens after sizeof.
11433
11434 2007-02-05  Bruno Haible  <bruno@clisp.org>
11435
11436         New module mbssep.
11437         * modules/mbssep: New file.
11438         * lib/mbssep.c: New file.
11439         * lib/string_.h (strsep): Add a conditional link warning.
11440         (mbssep): New declaration.
11441         * m4/mbssep.m4: New file.
11442         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
11443         GNULIB_MBSSEP.
11444         * modules/string (string.h): Also substitute GNULIB_MBSSEP.
11445         * MODULES.html.sh (Internationalization functions): Add mbssep.
11446
11447 2007-02-05  Bruno Haible  <bruno@clisp.org>
11448
11449         * lib/strsep.c (strsep): Fix actions in case of no delimiters.
11450         Optimize search in case of 1 delimiter.
11451
11452 2007-02-05  Paolo Bonzini  <bonzini@gnu.org>
11453
11454         * lib/acl.h: Include sys/types.h before sys/acl.h.
11455
11456 2007-02-05  Paolo Bonzini  <bonzini@gnu.org>
11457
11458         Merge upstream fix for glibc bugzilla #3957:
11459
11460         2007-02-05  Jakub Jelinek  <jakub@redhat.com>
11461
11462         * lib/regcomp.c (parse_bracket_exp): Set '\n' bit rather than '\0'
11463         bit for RE_HAT_LISTS_NOT_NEWLINE.
11464         (build_charclass_op): Remove bogus comment.
11465
11466 2007-02-05  Simon Josefsson  <simon@josefsson.org>
11467
11468         * lib/gc.h, lib/gc-libgcrypt.c: Support SHA-256/384/512.
11469
11470 2007-02-04  Paul Eggert  <eggert@cs.ucla.edu>
11471
11472         * lib/getsubopt.c [!_LIBC]: Include config.h and getsubopt.h.
11473         * lib/memmem.c [!defined _LIBC]: Include config.h.
11474
11475 2007-02-04  Bruno Haible  <bruno@clisp.org>
11476
11477         * lib/string_.h (GL_LINK_WARNING2): Put the word "warning:" into the
11478         warning message.
11479
11480 2007-02-04  Bruno Haible  <bruno@clisp.org>
11481
11482         New module mbstok_r.
11483         * modules/mbstok_r: New file.
11484         * lib/mbstok_r.c: New file.
11485         * lib/string_.h (strtok_r): Change argument names to match the
11486         comments. Add a conditional link warning.
11487         (mbstok_r): New declaration.
11488         * m4/mbstok_r.m4: New file.
11489         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
11490         GNULIB_MBSTOK_R.
11491         * modules/string (string.h): Also substitute GNULIB_MBSTOK_R.
11492         * MODULES.html.sh (Internationalization functions): Add mbstok_r.
11493
11494 2007-02-04  Bruno Haible  <bruno@clisp.org>
11495
11496         New module mbsspn.
11497         * modules/mbsspn: New file.
11498         * lib/mbsspn.c: New file.
11499         * lib/string_.h (strspn): Add a conditional link warning.
11500         (mbsspn): New declaration.
11501         * m4/mbsspn.m4: New file.
11502         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
11503         GNULIB_MBSSPN.
11504         * modules/string (string.h): Also substitute GNULIB_MBSSPN.
11505         * MODULES.html.sh (Internationalization functions): Add mbsspn.
11506
11507 2007-02-04  Bruno Haible  <bruno@clisp.org>
11508
11509         New module mbspbrk.
11510         * modules/mbspbrk: New file.
11511         * lib/mbspbrk.c: New file.
11512         * lib/string_.h (strpbrk): Add a conditional link warning.
11513         (mbspbrk): New declaration.
11514         * m4/mbspbrk.m4: New file.
11515         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
11516         GNULIB_MBSPBRK.
11517         * modules/string (string.h): Also substitute GNULIB_MBSPBRK.
11518         * MODULES.html.sh (Internationalization functions): Add mbspbrk.
11519
11520 2007-02-04  Bruno Haible  <bruno@clisp.org>
11521
11522         New module mbscspn.
11523         * modules/mbscspn: New file.
11524         * lib/mbscspn.c: New file.
11525         * lib/string_.h (strcspn): Add a conditional link warning.
11526         (mbscspn): New declaration.
11527         * m4/mbscspn.m4: New file.
11528         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
11529         GNULIB_MBSCSPN.
11530         * modules/string (string.h): Also substitute GNULIB_MBSCSPN.
11531         * MODULES.html.sh (Internationalization functions): Add mbscspn.
11532
11533 2007-02-04  Bruno Haible  <bruno@clisp.org>
11534
11535         New module mbscasestr, reduced goal of strcasestr.
11536         * modules/mbscasestr: New file.
11537         * lib/mbscasestr.c: New file, copied from lib/strcasestr.c.
11538         (mbscasestr): Renamed from strcasestr.
11539         * lib/strcasestr.c: Don't include mbuiter.h.
11540         (strcasestr): Remove support for multibyte locales.
11541         * lib/string_.h (strcasestr): Don`t rename. Declare only if missing.
11542         Change the conditional link warning.
11543         (mbscasestr): New declaration.
11544         * m4/mbscasestr.m4: New file.
11545         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Enable the replacement only if
11546         the system does not have strcasestr. Set HAVE_STRCASESTR instead of
11547         REPLACE_STRCASESTR.
11548         (gl_PREREQ_STRCASESTR): Don't require gl_FUNC_MBRTOWC.
11549         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
11550         HAVE_STRCASESTR instead of REPLACE_STRCASESTR.
11551         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize GNULIB_MBSCASESTR.
11552         * modules/string (string.h): Also substitute GNULIB_MBSCASESTR.
11553         Substitute HAVE_STRCASESTR instead of REPLACE_STRCASESTR.
11554         * modules/strcasestr (Files): Remove m4/mbrtowc.m4.
11555         (Depends-on): Remove mbuiter.
11556         * MODULES.html.sh (Internationalization functions): Add mbscasestr.
11557
11558 2007-02-04  Bruno Haible  <bruno@clisp.org>
11559
11560         Simplify handling of strncasecmp.
11561         * lib/string_.h (strncasecmp): Remove test for GNULIB_STRCASE. Change
11562         the conditional link warning.
11563         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
11564         HAVE_STRCASECMP, not REPLACE_STRCASECMP.
11565         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Don't initialize GNULIB_STRCASE.
11566         * modules/strcase (configure.ac): Don't invoke
11567         gl_STRING_MODULE_INDICATOR.
11568         * modules/string (string.h): Don't substitute GNULIB_STRCASE.
11569
11570 2007-02-04  Bruno Haible  <bruno@clisp.org>
11571
11572         New module mbscasecmp, reduced goal of strcasecmp.
11573         * modules/mbscasecmp: New file.
11574         * lib/mbscasecmp.c: New file, copied from lib/strcasecmp.c.
11575         (mbscasecmp): Renamed from strcasecmp.
11576         * lib/strcasecmp.c: Don't include mbuiter.h.
11577         (strcasecmp): Remove support for multibyte locales.
11578         * lib/string_.h (strcasecmp): Don`t rename. Declare only if missing.
11579         Change the conditional link warning.
11580         (mbscasecmp): New declaration.
11581         * m4/mbscasecmp.m4: New file.
11582         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Enable the replacement only if
11583         the system lacks strcasecmp. Set HAVE_STRCASECMP instead of
11584         REPLACE_STRCASECMP.
11585         (gl_PREREQ_STRCASECMP): Don't require gl_FUNC_MBRTOWC.
11586         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
11587         GNULIB_MBSCASECMP.
11588         * modules/string (string.h): Also substitute GNULIB_MBSCASECMP.
11589         Substitute HAVE_STRCASECMP instead of REPLACE_STRCASECMP.
11590         * modules/strcase (Files): Remove m4/mbrtowc.m4.
11591         (Depends-on): Remove mbuiter.
11592         * MODULES.html.sh (Internationalization functions): Add mbscasecmp.
11593
11594 2007-02-04  Bruno Haible  <bruno@clisp.org>
11595
11596         New module mbsstr. Remove module strstr.
11597         * modules/mbsstr: New file.
11598         * modules/strstr: Remove file.
11599         * lib/mbsstr.c: Renamed from lib/strstr.c.
11600         (mbsstr): Renamed from strstr.
11601         * lib/string_.h (strstr): Remove declaration. Change the conditional
11602         link warning.
11603         (mbsstr): New declaration.
11604         * m4/mbsstr.m4: New file.
11605         * m4/strstr.m4: Remove file.
11606         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Don't initialize
11607         REPLACE_STRSTR.
11608         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize GNULIB_MBSSTR.
11609         Don't initialize GNULIB_STRSTR.
11610         * modules/string (string.h): Also substitute GNULIB_MBSSTR. Don't
11611         substitute GNULIB_STRSTR and REPLACE_STRSTR.
11612         * MODULES.html.sh (Internationalization functions): Add mbsstr.
11613         (Support for systems lacking ANSI C 89): Remove strstr.
11614
11615 2007-02-04  Bruno Haible  <bruno@clisp.org>
11616
11617         New module mbsrchr.
11618         * modules/mbsrchr: New file.
11619         * lib/mbsrchr.c: New file.
11620         * lib/string_.h (strrchr): Add a conditional link warning.
11621         (mbsrchr): New declaration.
11622         * m4/mbsrchr.m4: New file.
11623         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
11624         GNULIB_MBSRCHR.
11625         * modules/string (string.h): Also substitute GNULIB_MBSRCHR.
11626         * MODULES.html.sh (Internationalization functions): Add mbsrchr.
11627
11628 2007-02-04  Bruno Haible  <bruno@clisp.org>
11629
11630         New module mbschr.
11631         * modules/mbschr: New file.
11632         * lib/mbschr.c: New file.
11633         * lib/string_.h (strchr): Add a conditional link warning.
11634         (mbschr): New declaration.
11635         * m4/mbschr.m4: New file.
11636         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
11637         GNULIB_MBSCHR.
11638         * modules/string (string.h): Also substitute GNULIB_MBSCHR.
11639         * MODULES.html.sh (Internationalization functions): Add mbschr.
11640
11641 2007-02-04  Paul Eggert  <eggert@cs.ucla.edu>
11642
11643         * lib/stdbool_.h: Mention that bool bit-fields aren't supported.
11644
11645         * modules/stdarg (configure.ac-early): Require AC_PROG_CC_STDC.
11646
11647 2007-02-04  Bruno Haible  <bruno@clisp.org>
11648
11649         New module description section 'configure.ac-early'.
11650         * gnulib-tool (sed_extract_prog): Recognize configure.ac-early.
11651         (func_get_autoconf_early_snippet): New function.
11652         (func_import, func_create_testdir): Use it. Remove special cases for
11653         modules 'extensions' and 'lock'.
11654         * modules/extensions (configure.ac-early): Require
11655         gl_USE_SYSTEM_EXTENSIONS.
11656         * modules/lock (configure.ac-early): Require gl_LOCK_EARLY.
11657
11658 2007-02-04  Bruno Haible  <bruno@clisp.org>
11659
11660         Make use of gcj-4.3's -fsource and -ftarget option.
11661         * m4/javacomp.m4 (gt_JAVACOMP): Test whether gcj is in version >= 4.3,
11662         and if so try the options -fsource and -ftarget.
11663         * lib/javacomp.c (compile_using_gcj): Add fsource_option,
11664         source_version, ftarget_option, target_version arguments.
11665         (is_envjavac_gcj43, is_envjavac_gcj43_usable): New functions.
11666         (is_envjavac_oldgcj_14_14_usable): Renamed from
11667         is_envjavac_gcj_14_14_usable.
11668         (is_envjavac_oldgcj_14_13_usable): Renamed from
11669         is_envjavac_gcj_14_13_usable.
11670         (is_gcj_present): Update.
11671         (is_gcj_43, is_gcj43_usable): New functions.
11672         (is_oldgcj_14_14_usable): Renamed from is_gcj_14_14_usable. Update.
11673         (is_oldgcj_14_13_usable): Renamed from is_gcj_14_13_usable. Update.
11674         (compile_java_class): Test whether gcj is in version >= 4.3, and if so
11675         try the options -fsource and -ftarget.
11676
11677 2007-02-03  Paul Eggert  <eggert@cs.ucla.edu>
11678
11679         * lib/xalloc.h (x2nrealloc): Fix an unlikely bug in the overflow
11680         checking code.  Set N = ceil (1.5 * N) rather than to a slightly
11681         larger value.
11682
11683 2007-02-03  Jim Meyering  <jim@meyering.net>
11684
11685         Give tools a better chance to allocate space for very large buffers.
11686         * lib/xalloc.h (x2nrealloc): Use 3/2, not 2, as buffer size factor.
11687
11688         Make pwd and readlink work also when run with an unreadable parent dir
11689         on systems with openat support.
11690         * lib/getcwd.c (__getcwd) [HAVE_PARTLY_WORKING_GETCWD]: Use the system
11691         provided getcwd function, even when we have openat support.
11692         Reported by Dmitry V. Levin in <http://bugzilla.redhat.com/227168>.
11693
11694 2007-02-02  Bruno Haible  <bruno@clisp.org>
11695
11696         * lib/string_.h (memmem, mempcpy, memrchr, stpcpy, stpncpy, strchrnul,
11697         strdup, strndup, strnlen, strpbrk, strsep, strtok_r): Provoke a link
11698         error only if GNULIB_POSIXCHECK is defined. Needed to avoid artificial
11699         portability problems if one of these functions is only used on specific
11700         platforms.
11701         Reported by Paul Eggert.
11702
11703 2007-02-02  Paul Eggert  <eggert@cs.ucla.edu>
11704
11705         Avoid mempcpy in the regex code, as the string.h mempcpy stuff
11706         is causing more trouble than it's curing.
11707         * lib/regex_internal.h (__mempcpy): Remove.
11708         * lib/regcomp.c (regerror): Rewrite to avoid the need for mempcpy
11709         (and make the code a tad smaller to boot).
11710         * m4/regex.m4 (gl_PREREQ_REGEX): Don't check for mempcpy.
11711
11712 2007-02-02  Jim Meyering  <jim@meyering.net>
11713
11714         * modules/arpa_inet: Put AC_PROG_MKDIR_P in the configure.ac:
11715         section, not in the Makefile.am: one.
11716
11717 2007-02-02  Eric Blake  <ebb9@byu.net>
11718
11719         * lib/strchrnul.c: Always include config.h first.
11720
11721         * modules/mountlist (Depends-on): Revert 2007-01-31 change,
11722         gnulib strstr is not necessary here.
11723
11724 2007-02-02  Simon Josefsson  <simon@josefsson.org>
11725
11726         * m4/socklen.m4: Fix typo.
11727
11728 2007-02-02  Eric Blake  <ebb9@byu.net>
11729
11730         * modules/arpa_inet (Makefile.am): Use MKDIR_P to avoid races.
11731         * modules/netinet_in (Makefile.am): Likewise.
11732
11733 2007-02-01  Bruno Haible  <bruno@clisp.org>
11734
11735         * lib/string_.h (GL_LINK_WARNING): New macro.
11736         (strcasecmp, strstr, strcasestr): If provided by the system,
11737         conditionally define as a macro that leads to a warning instead of to
11738         an error.
11739         (strncasecmp): Conditionally define as a macro that leads to a warning.
11740
11741 2007-02-01  Karl Berry  <karl@gnu.org>
11742
11743         * config/srclist.txt (strtok_r.c): lose sync, no more strtok_r.h.
11744
11745 2007-02-01  Bruno Haible  <bruno@clisp.org>
11746
11747         * MODULES.html.sh (Unicode string functions): Update after 2007-01-27
11748         renamings.
11749
11750 2007-02-01  Eric Blake  <ebb9@byu.net>
11751
11752         * modules/regex (Depends-on): Revert dependence on mempcpy.
11753         * lib/regex_internal.h [! _LIBC && !__mempcpy]: Undo string
11754         module's definition of mempcpy.
11755         Reported by Paul Eggert.
11756
11757 2007-02-01  Paul Eggert  <eggert@cs.ucla.edu>
11758
11759         * lib/string_.h: If the gnulib module XYZ is not present, undefine
11760         the symbol XYZ before redefining it.  This fixes a problem with
11761         programs that don't use XYZ, when compiled on systems that define
11762         XYZ to something else.
11763
11764 2007-01-31  Paul Eggert  <eggert@cs.ucla.edu>
11765
11766         * lib/mkdir-p.c (make_dir_parents): Close a race condition that
11767         occurs when "mkdir -m foo" creates a setgid directory that is (1)
11768         writeable to group or other and (2) is intended to have a special
11769         mode bit that is set or cleared.  In such a case, the directory
11770         should be neither group- nor other-writeable until the special
11771         mode bits are right.
11772
11773 2007-01-31  Eric Blake  <ebb9@byu.net>
11774
11775         * modules/mountlist (Depends-on): Add strstr.
11776
11777         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR): Correct m4 usage
11778         bug.
11779         * modules/string (Makefile.am): Remove redundant replacement.
11780         * modules/regex (Depends-on): Add mempcpy.
11781
11782 2007-01-31  Bruno Haible  <bruno@clisp.org>
11783
11784         New module description field 'Link'.
11785         * gnulib-tool (func_usage): Document --extract-link-directive.
11786         (sed_extract_prog): Recognize 'Link' directive.
11787         (func_get_link_directive): New function.
11788         (func_import): Show summary of link directives.
11789         Handle --extract-link-directive option.
11790         * modules/acl (Link): New section.
11791         * modules/clock-time (Link): New section.
11792         * modules/euidaccess (Link): New section.
11793         * modules/gettext (Link): New section.
11794         * modules/iconv (Link): New section.
11795         * modules/lock (Link): New section.
11796         * modules/nanosleep (Link): New section.
11797         * modules/readline (Link): New section.
11798
11799 2007-01-27  Bruno Haible  <bruno@clisp.org>
11800
11801         Enforce the use of gnulib modules for unportable <string.h> functions.
11802         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR): New macro.
11803         (gl_STRING_MODULE_INDICATOR_DEFAULTS): New macro.
11804         (gl_HEADER_STRING_H_BODY): Require it.
11805         * lib/string_.h: If the gnulib module XYZ is not present, redefine
11806         the symbol XYZ to one that gives a link error.
11807         * modules/string (Makefile.am): Also substitute the GNULIB_* variables.
11808         * modules/memmem (configure.ac): Invoke gl_STRING_MODULE_INDICATOR.
11809         * modules/mempcpy (configure.ac): Likewise.
11810         * modules/memrchr (configure.ac): Likewise.
11811         * modules/stpcpy (configure.ac): Likewise.
11812         * modules/stpncpy (configure.ac): Likewise.
11813         * modules/strcase (configure.ac): Likewise.
11814         * modules/strcasestr (configure.ac): Likewise.
11815         * modules/strchrnul (configure.ac): Likewise.
11816         * modules/strdup (configure.ac): Likewise.
11817         * modules/strndup (configure.ac): Likewise.
11818         * modules/strnlen (configure.ac): Likewise.
11819         * modules/strpbrk (configure.ac): Likewise.
11820         * modules/strsep (configure.ac): Likewise.
11821         * modules/strstr (configure.ac): Likewise.
11822         * modules/strtok_r (configure.ac): Likewise.
11823
11824 2007-01-31  Jean-Louis Martineau  <martineau@zmanda.com>  (tiny change)
11825
11826         * lib/gai_strerror.c (values): Add EAI_OVERFLOW.
11827
11828 2007-01-30  Jim Meyering  <jim@meyering.net>
11829
11830         * lib/mpsort.c (mpsort): Remove spurious "return" in void function.
11831
11832 2007-01-29  Bruno Haible  <bruno@clisp.org>
11833
11834         * lib/allocsa.h: Use '#if HAVE_*' instead of '#ifdef HAVE_*'.
11835         * lib/execute.c: Likewise.
11836         * lib/pipe.c: Likewise.
11837         * lib/printf-args.h: Likewise.
11838         * lib/printf-args.c: Likewise.
11839         * lib/printf-parse.c: Likewise.
11840         * lib/vasnprintf.c: Likewise.
11841
11842 2007-01-29  Eric Blake  <ebb9@byu.net>
11843
11844         * lib/memrchr.c: Assume <string.h> unconditionally, to pull in
11845         declaration.
11846
11847 2007-01-29  Paul Eggert  <eggert@cs.ucla.edu>
11848
11849         * lib/strptime.h (strptime): Use 'restrict' for args where
11850         POSIX requires this.
11851         * lib/strptime.c (strptime): Likewise.
11852         Change license notice from LGPL to GPL, since gnulib-tool will
11853         change this as needed.
11854         Include <config.h> if _LIBC is not defined, not if HAVE_CONFIG_H is
11855         defined.
11856         Include "strptime.h" first, to check interface.
11857         Do not #undef _LIBC and _NL_CURRENT.
11858         Do not include <stdlib.h>; no longer needed.
11859         Include "time_r.h" and declare ptime_locale_status
11860         only if _LIBC is not defined.
11861         (__P): Remove unused macro.
11862         (match_string): Bring back glibc version, but use it only if _LIBC
11863         is defined.
11864         (__strptime_internal): Compile tm_gmtoff code if _LIBC is defined, too.
11865         Remove unnecessary assertion and abort() call.
11866         Use #ifdef _NL_CURRENT rather than #if 0, for benefit of glibc.
11867         * m4/strptime.m4: Fix serial number comment.
11868         (gl_FUNC_STRPTIME): Require AC_C_RESTRICT, gl_TM_GMTOFF.
11869         * modules/strptime (Files): Add m4/tm_gmtoff.m4.
11870         (Depends-on): Add time_r.
11871
11872 2007-01-29  Bruno Haible  <bruno@clisp.org>
11873
11874         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
11875         strptime.
11876         * modules/strptime (Depends-on): Add stdbool.
11877         * lib/strptime.h: Include <time.h> always. Add comments.
11878
11879 2007-01-29  Yoann Vandoorselaere  <yoann@prelude-ids.org>
11880
11881         * modules/strptime: New file.
11882         * lib/strptime.h: New file.
11883         * lib/strptime.c: New file.
11884         * m4/strptime.m4: New file.
11885
11886 2007-01-28  Paul Eggert  <eggert@cs.ucla.edu>
11887
11888         * MODULES.html.sh: New module mpsort.
11889         * lib/mpsort.c, lib/mpsort.h, m4/mpsort.m4, modules/mpsort: New files.
11890
11891         * lib/regex.h (_Restrict_): Renamed from __restrict, to avoid
11892         a circularity problem with HP-UX ia64 reported by Bob Proulx in
11893         <http://lists.gnu.org/archive/html/bug-gnulib/2007-01/msg00394.html>.
11894         All uses changed.
11895         (_Restrict_arr_): Renamed from __restrict_arr, for similar reasons.
11896         All uses changed.
11897         * lib/regcomp.c, lib/regexec.c: Change all uses from __restrict
11898         to _Restrict_.
11899         * lib/regexec.c (regexec): Declare pmatch with _Restrict_arr_, so that
11900         the parameter matches the prototype.
11901
11902 2007-01-28  Jim Meyering  <jim@meyering.net>
11903
11904         * modules/sys_time (Makefile.am) [MOSTLYCLEANFILES]: Do use
11905         sys/time.h here, reverting that part of the previous patch:
11906         <http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/8959>.
11907
11908 2007-01-28  Bruno Haible  <bruno@clisp.org>
11909
11910         * modules/sys_time (Makefile.am): Build sys/time.h only when it's the
11911         value of $(SYS_TIME_H).
11912         [MOSTLYCLEANFILES]: Now that sys/time.h is created only when needed,
11913         remove it conditionally, too. [added by Jim Meyering]
11914         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Set SYS_TIME_H.
11915         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY):
11916         (gl_FUNC_GETTIMEOFDAY_CLOBBER): Set SYS_TIME_H when setting
11917         GETTIMEOFDAY_REPLACEMENT to 1.
11918
11919 2007-01-28  Bruno Haible  <bruno@clisp.org>
11920
11921         * m4/unistd_h.m4 (gl_HEADER_UNISTD_DEFAULTS): New macro.
11922         (gl_HEADER_UNISTD): Require it. Don't set UNISTD_H to empty here.
11923         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Require gl_HEADER_UNISTD_DEFAULTS.
11924         Set UNISTD_H instead of UNISTD_H2.
11925         * modules/fchdir (BUILT_SOURCES): Drop $(UNISTD_H2).
11926
11927 2007-01-28  Bruno Haible  <bruno@clisp.org>
11928
11929         * modules/mbchar (Makefile.am): Add mbchar.c to lib_SOURCES.
11930         * m4/mbchar.m4 (gl_MBCHAR): Remove AC_LIBOBJ invocation.
11931
11932 2007-01-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
11933
11934         * gnulib-tool (func_emit_lib_Makefile_am, func_add_or_update)
11935         (func_create_testdir): Ensure C locale for `grep' and `tr'
11936         character ranges.
11937         (func_create_megatestdir): Avoid one `grep'.  Fix bug in
11938         ACLOCAL_AMFLAGS parsing state machine.
11939
11940 2007-01-27  Bruno Haible  <bruno@clisp.org>
11941
11942         * modules/unistr/base: Update.
11943
11944 2007-01-27  Bruno Haible  <bruno@clisp.org>
11945
11946         Rename u32-mbtouc -> u32-mbtouc-unsafe, u32-mbtouc-safe -> u32-mbtouc,
11947         u32_mbtouc -> u32_mbtouc_unsafe, u32_mbtouc_safe -> u32_mbtouc.
11948         * modules/unistr/u32-mbtouc-unsafe: Renamed from
11949         modules/unistr/u32-mbtouc.
11950         * lib/unistr/u32-mbtouc-unsafe.c: Renamed from lib/unistr/u32-mbtouc.c.
11951         * lib/unistr.h: Update.
11952         * lib/linebreak.c: Update.
11953         * modules/unistr/u32-mbtouc: Renamed from
11954         modules/unistr/u32-mbtouc-safe.
11955         * lib/unistr/u32-mbtouc.c: Renamed from lib/unistr/u32-mbtouc-safe.c.
11956         * lib/unistr.h: Update.
11957         * lib/unistr/u32-to-u8.c: Update.
11958         * lib/unistr/u32-to-u16.c: Update.
11959
11960 2007-01-27  Bruno Haible  <bruno@clisp.org>
11961
11962         Rename utf16-ucs4 -> utf16-ucs4-unsafe, utf16-ucs4-safe -> utf16-ucs4,
11963         u16_mbtouc -> u16_mbtouc_unsafe, u16_mbtouc_safe -> u16_mbtouc.
11964         * modules/utf16-ucs4-unsafe: Renamed from modules/utf16-ucs4.
11965         * lib/utf16-ucs4-unsafe.h: Renamed from lib/utf16-ucs4.h.
11966         * lib/unistr/utf16-ucs4-unsafe.c: Renamed from lib/unistr/utf16-ucs4.c.
11967         * modules/unistr/u16-mbtouc-unsafe: Renamed from
11968         modules/unistr/u16-mbtouc.
11969         * lib/unistr/u16-mbtouc-unsafe.c: Renamed from lib/unistr/u16-mbtouc.c.
11970         * lib/unistr.h: Update.
11971         * lib/linebreak.c: Update.
11972         * modules/linebreak: Update.
11973         * modules/utf16-ucs4: Renamed from modules/utf16-ucs4-safe.
11974         * lib/utf16-ucs4.h: Renamed from lib/utf16-ucs4-safe.h.
11975         * lib/unistr/utf16-ucs4.c: Renamed from lib/unistr/utf16-ucs4-safe.c.
11976         * modules/unistr/u16-mbtouc: Renamed from
11977         modules/unistr/u16-mbtouc-safe.
11978         * lib/unistr/u16-mbtouc.c: Renamed from lib/unistr/u16-mbtouc-safe.c.
11979         * lib/unistr.h: Update.
11980         * lib/unistr/u16-to-u8.c: Update.
11981         * modules/unistr/u16-to-u8: Update.
11982         * lib/unistr/u16-to-u32.c: Update.
11983         * modules/unistr/u16-to-u32: Update.
11984
11985 2007-01-27  Bruno Haible  <bruno@clisp.org>
11986
11987         Rename utf8-ucs4 -> utf8-ucs4-unsafe, utf8-ucs4-safe -> utf8-ucs4,
11988         u8_mbtouc -> u8_mbtouc_unsafe, u8_mbtouc_safe -> u8_mbtouc.
11989         * modules/utf8-ucs4-unsafe: Renamed from modules/utf8-ucs4.
11990         * lib/utf8-ucs4-unsafe.h: Renamed from lib/utf8-ucs4.h.
11991         * lib/unistr/utf8-ucs4-unsafe.c: Renamed from lib/unistr/utf8-ucs4.c.
11992         * modules/unistr/u8-mbtouc-unsafe: Renamed from
11993         modules/unistr/u8-mbtouc.
11994         * lib/unistr/u8-mbtouc-unsafe.c: Renamed from lib/unistr/u8-mbtouc.c.
11995         * lib/unistr.h: Update.
11996         * lib/striconveh.c: Update.
11997         * modules/striconveh: Update.
11998         * lib/linebreak.c: Update.
11999         * modules/linebreak: Update.
12000         * modules/utf8-ucs4: Renamed from modules/utf8-ucs4-safe.
12001         * lib/utf8-ucs4.h: Renamed from lib/utf8-ucs4-safe.h.
12002         * lib/unistr/utf8-ucs4.c: Renamed from lib/unistr/utf8-ucs4-safe.c.
12003         * modules/unistr/u8-mbtouc: Renamed from modules/unistr/u8-mbtouc-safe.
12004         * lib/unistr/u8-mbtouc.c: Renamed from lib/unistr/u8-mbtouc-safe.c.
12005         * lib/unistr.h: Update.
12006         * lib/striconveh.c: Update.
12007         * modules/striconveh: Update.
12008         * lib/unistr/u8-to-u16.c: Update.
12009         * modules/unistr/u8-to-u16: Update.
12010         * lib/unistr/u8-to-u32.c: Update.
12011         * modules/unistr/u8-to-u32: Update.
12012
12013 2007-01-27  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12014
12015         Sync from Libtool.
12016         * lib/argz.c: Do not include strings.h nor memory.h, include
12017         string.h unconditionally.  Patch by Simon Josefsson.
12018
12019 2007-01-27  Bruno Haible  <bruno@clisp.org>
12020
12021         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): New macro, extracted
12022         from gl_HEADER_STRING_H_BODY.
12023         (gl_HEADER_STRING_H_BODY): Require it.
12024         * m4/memmem.m4 (gl_FUNC_MEMMEM): Require gl_HEADER_STRING_H_DEFAULTS.
12025         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Likewise.
12026         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Likewise.
12027         * m4/stpcpy.m4 (gl_FUNC_STPCPY): Likewise.
12028         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Likewise.
12029         * m4/strcase.m4 (gl_FUNC_STRCASECMP, gl_FUNC_STRNCASECMP): Likewise.
12030         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
12031         * m4/strchrnul.m4 (gl_FUNC_STRCHRNUL): Likewise.
12032         * m4/strdup.m4 (gl_FUNC_STRDUP): Likewise.
12033         * m4/strndup.m4 (gl_FUNC_STRNDUP): Likewise.
12034         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Likewise.
12035         * m4/strpbrk.m4 (gl_FUNC_STRPBRK): Likewise.
12036         * m4/strsep.m4 (gl_FUNC_STRSEP): Likewise.
12037         * m4/strstr.m4 (gl_FUNC_STRSTR): Likewise.
12038         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Likewise.
12039
12040 2007-01-27  Bruno Haible  <bruno@clisp.org>
12041
12042         * gnulib-tool (func_emit_lib_Makefile_am): If $for_test is true, turn
12043         check_PROGRAMS into noinst_PROGRAMS.
12044         (func_emit_tests_Makefile_am): Likewise. Also don't initialize
12045         check_PROGRAMS in this case.
12046         (func_import): Set for_test to false.
12047         (func_create_testdir): Set for_test to true.
12048
12049 2007-01-27  Yoann Vandoorselaere <yoann.v@prelude-ids.com>
12050             Bruno Haible  <bruno@clisp.org>
12051
12052         * modules/strcasestr (Files): Remove lib/strcasestr.h.
12053         (Depends-on): Add string.
12054         (Includes): Use <string.h> instead of strcasestr.h.
12055         * modules/string (Makefile.am): Also substitute the value of
12056         REPLACE_STRCASESTR.
12057         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Don't define strcasestr here;
12058         assume strcasestr is declared in <string.h> not <strings.h>. Also
12059         set REPLACE_STRCASESTR.
12060         * m4/string_h.m4 (gl_HEADER_STRING_H_BODY): Provide a default value for
12061         REPLACE_STRCASESTR.
12062         * lib/strcasestr.h: Remove file.
12063         * lib/strcasestr.c: Include <string.h> instead of strcasestr.h.
12064         * lib/string_.h (strcasestr): New declaration.
12065
12066 2007-01-27  Bruno Haible  <bruno@clisp.org>
12067
12068         * lib/string_.h: Use 'extern'.
12069
12070 2007-01-27  Jim Meyering  <jim@meyering.net>
12071
12072         * lib/regex_internal.c (re_string_reconstruct): Remove declaration
12073         of set-but-not-used local, "q".
12074
12075         * lib/mempcpy.c: Include <config.h> before <string.h>.
12076         This fixes a compilation error on HP-UX, due to the system's
12077         "restrict"-using mempcpy prototype.
12078
12079 2007-01-26  Bruno Haible  <bruno@clisp.org>
12080
12081         Small optimization.
12082         * lib/javacomp.c: Include c-strstr.h.
12083          (is_envjavac_gcj): Use c_strstr instead of strstr.
12084         * modules/javacomp (Depends-on): Add c-strstr, remove strstr.
12085
12086 2007-01-26  Bruno Haible  <bruno@clisp.org>
12087
12088         * MODULES.html.sh (Unicode string functions): Add the new modules.
12089
12090         * modules/uniconv/u32-strconv-to-locale: New file.
12091         * lib/uniconv/u32-strconv-to-locale.c: New file.
12092
12093         * modules/uniconv/u16-strconv-to-locale: New file.
12094         * lib/uniconv/u16-strconv-to-locale.c: New file.
12095
12096         * modules/uniconv/u8-strconv-to-locale: New file.
12097         * lib/uniconv/u8-strconv-to-locale.c: New file.
12098
12099         * modules/uniconv/u32-strconv-from-locale: New file.
12100         * lib/uniconv/u32-strconv-from-locale.c: New file.
12101
12102         * modules/uniconv/u16-strconv-from-locale: New file.
12103         * lib/uniconv/u16-strconv-from-locale.c: New file.
12104
12105         * modules/uniconv/u8-strconv-from-locale: New file.
12106         * lib/uniconv/u8-strconv-from-locale.c: New file.
12107
12108         * modules/uniconv/u32-strconv-to-enc: New file.
12109         * lib/uniconv/u32-strconv-to-enc.c: New file.
12110         * modules/uniconv/u32-strconv-to-enc-tests: New file.
12111         * tests/uniconv/test-u32-strconv-to-enc.c: New file.
12112
12113         * modules/uniconv/u16-strconv-to-enc: New file.
12114         * lib/uniconv/u16-strconv-to-enc.c: New file.
12115         * lib/uniconv/u-strconv-to-enc.h: New file.
12116         * modules/uniconv/u16-strconv-to-enc-tests: New file.
12117         * tests/uniconv/test-u16-strconv-to-enc.c: New file.
12118
12119         * modules/uniconv/u8-strconv-to-enc: New file.
12120         * lib/uniconv/u8-strconv-to-enc.c: New file.
12121         * modules/uniconv/u8-strconv-to-enc-tests: New file.
12122         * tests/uniconv/test-u8-strconv-to-enc.c: New file.
12123
12124         * modules/uniconv/u32-strconv-from-enc: New file.
12125         * lib/uniconv/u32-strconv-from-enc.c: New file.
12126         * modules/uniconv/u32-strconv-from-enc-tests: New file.
12127         * tests/uniconv/test-u32-strconv-from-enc.c: New file.
12128
12129         * modules/uniconv/u16-strconv-from-enc: New file.
12130         * lib/uniconv/u16-strconv-from-enc.c: New file.
12131         * modules/uniconv/u16-strconv-from-enc-tests: New file.
12132         * tests/uniconv/test-u16-strconv-from-enc.c: New file.
12133
12134         * modules/uniconv/u8-strconv-from-enc: New file.
12135         * lib/uniconv/u8-strconv-from-enc.c: New file.
12136         * lib/uniconv/u-strconv-from-enc.h: New file.
12137         * modules/uniconv/u8-strconv-from-enc-tests: New file.
12138         * tests/uniconv/test-u8-strconv-from-enc.c: New file.
12139
12140         * modules/uniconv/u32-conv-from-enc: New file.
12141         * lib/uniconv/u32-conv-from-enc.c: New file.
12142         * modules/uniconv/u32-conv-from-enc-tests: New file.
12143         * tests/uniconv/test-u32-conv-from-enc.c: New file.
12144
12145         * modules/uniconv/u16-conv-from-enc: New file.
12146         * lib/uniconv/u16-conv-from-enc.c: New file.
12147         * lib/uniconv/u-conv-from-enc.h: New file.
12148         * modules/uniconv/u16-conv-from-enc-tests: New file.
12149         * tests/uniconv/test-u16-conv-from-enc.c: New file.
12150
12151         * modules/uniconv/u8-conv-from-enc: New file.
12152         * lib/uniconv/u8-conv-from-enc.c: New file.
12153         * modules/uniconv/u8-conv-from-enc-tests: New file.
12154         * tests/uniconv/test-u8-conv-from-enc.c: New file.
12155
12156         * modules/uniconv/base: New file.
12157         * lib/uniconv.h: New file.
12158
12159 2007-01-26  Paul Eggert  <eggert@cs.ucla.edu>
12160
12161         * doc/gnulib-tool.texi (Initial import): Update to match current
12162         behavior with strdup module.
12163         * lib/.cppi-disable: Remove strcase.h, strdup.h, strndup.h, strnlen.h.
12164         * lib/memmem.h: Remove; all uses removed.  This is now done
12165         by <string.h>.
12166         * lib/mempcpy.h: Likewise.
12167         * lib/memrchr.h: Likewise.
12168         * lib/stpcpy.h: Likewise.
12169         * lib/stpncpy.h: Likewise.
12170         * lib/strcase.h: Likewise.
12171         * lib/strchrnul.h: Likewise.
12172         * lib/strdup.h: Likewise.
12173         * lib/strndup.h: Likewise.
12174         * lib/strnlen.h: Likewise.
12175         * lib/strpbrk.h: Likewise.
12176         * lib/strsep.h: Likewise.
12177         * lib/strstr.h: Likewise.
12178         * lib/strtok_r.h: Likewise.
12179         * lib/string_.h: New file.
12180         * lib/argp-namefrob.h: Don't include no-longer-existent include files.
12181         Rely on <string.h> instead.
12182         * lib/canon-host.c: Likewise.
12183         * lib/chdir-long.c: Likewise.
12184         * lib/concatpath.c: Likewise.
12185         * lib/exclude.c: Likewise.
12186         * lib/fchdir.c: Likewise.
12187         * lib/getaddrinfo.c: Likewise.
12188         * lib/getcwd.c: Likewise.
12189         * lib/getsubopt.c: Likewise.
12190         * lib/glob.c: Likewise.
12191         * lib/hard-locale.c: Likewise.
12192         * lib/iconvme.c: Likewise.
12193         * lib/javacomp.c: Likewise.
12194         * lib/mempcpy.c: Likewise.
12195         * lib/memrchr.c: Likewise.
12196         * lib/regex_internal.h: Likewise.
12197         * lib/stpncpy.c: Likewise.
12198         * lib/strcasecmp.c: Likewise.
12199         * lib/strchrnul.c: Likewise.
12200         * lib/strdup.c: Likewise.
12201         * lib/striconv.c: Likewise.
12202         * lib/striconveh.c: Likewise.
12203         * lib/striconveha.c: Likewise.
12204         * lib/strncasecmp.c: Likewise.
12205         * lib/strndup.c: Likewise.
12206         * lib/strnlen.c: Likewise.
12207         * lib/strsep.c: Likewise.
12208         * lib/strstr.c: Likewise.
12209         * lib/strtok_r.c: Likewise.
12210         * lib/userspec.c: Likewise.
12211         * lib/w32spawn.h: Likewise.
12212         * lib/xstrndup.c: Likewise.
12213         * lib/mountlist.c (strstr): Remove decl.
12214         * m4/string_h.m4: New file.
12215         * m4/memmem.m4 (gl_FUNC_MEMMEM): Set HAVE_DECL_MEMMEM if necessary.
12216         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Set HAVE_MEMPCPY if necessary.
12217         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Set HAVE_MEMRCHR
12218         * m4/stpcpy.m4 (gl_FUNC_STPCPY): Set HAVE_STPCPY if necessary.
12219         * m4/stpncpy.m4 (gl_PREREQ_STPNCPY): Set HAVE_STPNCPY if necessary.
12220         * m4/strcase.m4 (gl_FUNC_STRCASECMP):
12221         Set REPLACE_STRCASECMP if necessary.
12222         (gl_FUNC_STRNCASECMP): Set HAVE_DECL_STRNCASECMP if necessary.
12223         * m4/strchrnul.m4 (gl_FUNC_STRCHRNUL): Set HAVE_STRCHRNUL if necessary.
12224         * m4/strdup.m4 (gl_FUNC_STRDUP): Set HAVE_DECL_STRDUP if necessary.
12225         * m4/strndup.m4 (gl_FUNC_STRNDUP): Set HAVE_DECL_STRNLEN and
12226         HAVE_DECL_STRDUP if necessary.
12227         (gl_PREREQ_STRNLEN): Don't bother to check for strnlen decl,
12228         since gl_FUNC_STRNDUP does that now.
12229         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Set HAVE_DECL_STRNLEN if necessary.
12230         Check for decl here...
12231         (gl_PREREQ_STRNLEN): ... not here.
12232         * m4/strpbrk.m4 (gl_FUNC_STRPBRK): Set HAVE_STRPBRK if necessary.
12233         * m4/strsep.m4 (gl_FUNC_STRSEP): Set HAVE_STRSEP if necessary.
12234         * m4/strstr.m4 (gl_FUNC_STRSTR): Set REPLACE_STRSTR if necessary.
12235         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Set HAVE_DECL_STRTOK_R if
12236         necessary.
12237         * modules/string: New file.
12238         * modules/memmem (Files): Remove special-purpose include file.
12239         (Depends-on): Add string.
12240         (Include): Include <string.h>, not the removed file.
12241         * modules/mempcpy: Likewise.
12242         * modules/memrchr: Likewise.
12243         * modules/stpcpy: Likewise.
12244         * modules/stpncpy: Likewise.
12245         * modules/strcase: Likewise.
12246         * modules/strchrnul: Likewise.
12247         * modules/strdup: Likewise.
12248         * modules/strndup: Likewise.
12249         * modules/strnlen: Likewise.
12250         * modules/strpbrk: Likewise.
12251         * modules/strsep: Likewise.
12252         * modules/strstr: Likewise.
12253         * modules/strtok_r: Likewise.
12254         * tests/test-dirname.c: Don't include "strdup.h", since
12255         <string.h> now suffices.
12256         * tests/test-memmem.c: Don't include "memmem.h", since
12257         <string.h> now suffices.
12258
12259 2007-01-25  Bruno Haible  <bruno@clisp.org>
12260
12261         * lib/striconveh.c (mem_cd_iconveh_internal): Ignore *lengthp if
12262         *resultp is 0.
12263
12264         * lib/unistr/u16-to-u8.c (u16_to_u8): Fix u8_uctomb invocation.
12265         * lib/unistr/u32-to-u8.c (u32_to_u8): Likewise.
12266         * lib/unistr/u8-to-u16.c (u8_to_u16): Fix u16_uctomb invocation.
12267         * lib/unistr/u32-to-u16.c (u32_to_u16): Likewise.
12268
12269         * modules/unistr/u8-to-u16 (Depends-on): Add missing modules.
12270         * modules/unistr/u8-to-u32 (Depends-on): Add missing modules.
12271         * modules/unistr/u16-to-u8 (Depends-on): Add missing modules.
12272         * modules/unistr/u16-to-u32 (Depends-on): Add missing modules.
12273         * modules/unistr/u32-to-u8 (Depends-on): Add missing modules.
12274         * modules/unistr/u32-to-u16 (Depends-on): Add missing modules.
12275
12276 2007-01-24  Bruno Haible  <bruno@clisp.org>
12277
12278         Don't AC_REQUIRE autoconf macros that invoke AC_LIBOBJ. See
12279         <http://lists.gnu.org/archive/html/bug-gnulib/2006-10/msg00279.html>.
12280         * m4/argp.m4 (gl_ARGP): Invoke, don't require, gl_GETOPT_SUBSTITUTE.
12281         * m4/fts.m4 (gl_FUNC_FTS, gl_FUNC_FTS_LGPL): Invoke, don't require,
12282         gl_FUNC_FTS_CORE.
12283         (gl_FUNC_FTS_CORE): Invoke, don't require, gl_FUNC_OPENAT.
12284         * m4/lstat.m4 (gl_FUNC_LSTAT): Invoke, don't require,
12285         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
12286         * m4/memcmp.m4 (gl_FUNC_MEMCMP): Invoke, don't require, AC_FUNC_MEMCMP.
12287         * m4/mktime.m4 (gl_FUNC_MKTIME): Invoke, don't require, AC_FUNC_MKTIME.
12288         * m4/openat.m4 (gl_FUNC_OPENAT): Invoke, don't require,
12289         gl_FUNC_FCHOWNAT.
12290         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME): Invoke, don't require,
12291         gl_FUNC_STRFTIME.
12292         * m4/strtod.m4 (gl_FUNC_STRTOD): Invoke, don't require, AC_FUNC_STRTOD.
12293         Reported by Ralf Wildenhues.
12294
12295 2007-01-24  Bruno Haible  <bruno@clisp.org>
12296
12297         Drop AC_REQUIRE calls that are redundant with the module dependencies.
12298         * m4/canon-host.m4 (gl_PREREQ_CANON_HOST): Don't require
12299         gl_GETADDRINFO.
12300         * m4/chdir-long.m4 (gl_PREREQ_CHDIR_LONG): Don't require AM_STDBOOL_H,
12301         gl_FUNC_MEMPCPY, gl_FUNC_OPENAT, gl_FUNC_MEMRCHR.
12302         * m4/openat.m4 (gl_PREREQ_OPENAT): Don't require gl_SAVE_CWD.
12303
12304 2007-01-24  Paul Eggert  <eggert@cs.ucla.edu>
12305
12306         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Add test for glibc bug 361.
12307         Don't use 'exit'; just return from 'main'.
12308         (_AC_LIBOBJ_FNMATCH): Check for headers and functions just once.
12309
12310         * lib/fnmatch_.h: Readjust white space and comments to match
12311         glibc, to avoid spurious diffs.
12312
12313 2007-01-23  Paul Eggert  <eggert@cs.ucla.edu>
12314
12315         * lib/fnmatch_loop.c (internal_fnmatch) [!_LIBC]: #if-out the
12316         2004-12-01 change by Jakub Jelinek, since this code won't compile
12317         if !LIBC.  Problem reported by Bob Proulx.
12318
12319 2007-01-23  Bruno Haible  <bruno@clisp.org>
12320
12321         * lib/striconveh.c: Include c-strcaseeq.h.
12322         (mem_iconveh, str_iconveh): Use STRCASEEQ instead of c_strcasecmp.
12323         * modules/striconveh (Depends-on): Add c-strcaseeq.
12324
12325 2007-01-23  Bruno Haible  <bruno@clisp.org>
12326
12327         * MODULES.html.sh (String handling): Add streq, c-strcaseeq.
12328
12329         * modules/c-strcaseeq: New file.
12330         * lib/c-strcaseeq.h: New file.
12331
12332         * modules/streq: New file.
12333         * lib/streq.h: New file.
12334
12335 2007-01-23  Bruno Haible  <bruno@clisp.org>
12336
12337         * modules/striconveha-tests: New file.
12338         * tests/test-striconveha.c: New file.
12339
12340         * lib/striconveha.h: Include <stdbool.h>.
12341         (mem_iconveha, str_iconveha): Add 'transliterate' argument.
12342         * lib/striconveha.c: Include allocsa.h, strdup.h, c-strcase.h.
12343         (mem_iconveha_notranslit): Renamed from mem_iconveha.
12344         (mem_iconveha): New function.
12345         (str_iconveha_notranslit): Renamed from str_iconveha.
12346         (str_iconveha): New function.
12347         * modules/striconveha (Depends-on): Add stdbool, allocsa, strdup,
12348         c-strcase.
12349
12350 2007-01-23  Bruno Haible  <bruno@clisp.org>
12351
12352         * lib/striconveha.c (mem_iconveha): Fix endless recursion. Try all
12353         encodings without forgiving before trying any encoding with handler.
12354         (str_iconveha): Try all encodings without forgiving before trying any
12355         encoding with handler.
12356
12357 2007-01-23  Paul Eggert  <eggert@cs.ucla.edu>
12358
12359         Import the following changes from libc.
12360
12361         2005-10-14  Ulrich Drepper  <drepper@redhat.com>
12362
12363         * lib/fnmatch_loop.c: Adjust for changed secondary hash function.
12364
12365         2004-12-01  Jakub Jelinek  <jakub@redhat.com>
12366
12367         * lib/fnmatch_loop.c (internal_fnmatch): Clear is_seqval after
12368         normal_bracket label.
12369
12370         2004-09-01  Jakub Jelinek  <jakub@redhat.com>
12371
12372         [BZ #361]
12373         * lib/fnmatch_loop.c (FCT): For backslash between brackets, branch
12374         to normal_bracket after fetching the next character.
12375
12376 2007-01-22  Bruno Haible  <bruno@clisp.org>
12377
12378         * lib/striconveh.h (mem_cd_iconveh, mem_iconveh): Add 'offsets'
12379         argument.
12380         * lib/striconveh.c (iconv_carefully_1): New function.
12381         (mem_cd_iconveh_internal, mem_cd_iconveh, mem_iconveh): Add 'offsets'
12382         argument.
12383         (str_cd_iconveh): Update.
12384         * lib/striconveha.h (mem_iconveha): Add 'offsets' argument.
12385         * lib/striconveha.c (mem_iconveha): Add 'offsets' argument.
12386         * tests/test-striconveh.c (MAGIC): New macro.
12387         (new_offsets): New function.
12388         (main): Test call with and without offsets.
12389
12390 2007-01-22  Bruno Haible  <bruno@clisp.org>
12391
12392         * modules/sys_stat (Makefile.am): Use @MKDIR_P@ instead of $(MKDIR_P).
12393         * modules/sys_select (Makefile.am): Likewise.
12394         * modules/sys_socket (Makefile.am): Likewise.
12395         * modules/sys_time (Makefile.am): Likewise.
12396
12397 2007-01-22  Paul Eggert  <eggert@cs.ucla.edu>
12398
12399         * modules/gettimeofday (License): Change from GPL to LGPL, since
12400         gettimeofday is a library function.
12401
12402 2007-01-22  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
12403
12404         * lib/poll.c (rpl_poll): Don't check against FD_SETSIZE under Win32.
12405
12406 2007-01-21  Bruno Haible  <bruno@clisp.org>
12407
12408         * m4/gnulib-common.m4 (AC_PROG_MKDIR_P): New macro.
12409
12410 2007-01-21  Bruno Haible  <bruno@clisp.org>
12411
12412         * modules/striconveha: New file.
12413         * lib/striconveha.h: New file.
12414         * lib/striconveha.c: New file.
12415         * MODULES.html.sh (Internationalization functions): Add striconveha.
12416         * lib/striconv.c (str_iconv): Optimize the case of an empty input
12417         string.
12418         * lib/striconveh.c (mem_iconveh, str_iconveh): Likewise.
12419
12420 2007-01-21  Bruno Haible  <bruno@clisp.org>
12421
12422         * lib/striconv.c (str_iconv): Guarantee errno is set when strdup fails.
12423         * lib/striconveh.c (str_iconveh): Likewise.
12424
12425 2007-01-21  Bruno Haible  <bruno@clisp.org>
12426
12427         * lib/striconveh.h (mem_iconveh): New declaration.
12428         * lib/striconveh.c (mem_iconveh): New function.
12429         * tests/test-striconveh.c (main): Add tests for mem_iconveh.
12430
12431 2007-01-21  Bruno Haible  <bruno@clisp.org>
12432
12433         * lib/xstriconv.h (xmem_cd_iconv): Change specification.
12434
12435         * lib/striconveh.h (mem_cd_iconveh): Change specification.
12436         * lib/striconveh.c (mem_cd_iconveh): Don't free the user-supplied
12437         original result buffer.
12438         (str_cd_iconveh): Update.
12439         * tests/test-striconveh.c (main): Update.
12440
12441         * lib/striconv.h (mem_cd_iconv): Change specification.
12442         * lib/striconv.c (mem_cd_iconv): Don't free the user-supplied original
12443         result buffer.
12444         (str_cd_iconv): Update.
12445         * tests/test-striconv.c (main): Update.
12446
12447 2007-01-21  Bruno Haible  <bruno@clisp.org>
12448
12449         * gnulib-tool: Fix test whether sed is GNU sed supporting --posix.
12450
12451 2007-01-20  Jim Meyering  <jim@meyering.net>
12452
12453         * lib/userspec.c (parse_with_separator): If a user or group string
12454         starts with "+", skip the corresponding name-to-ID look-up, since
12455         such a look-up must fail: user and group names may not include "+".
12456
12457 2007-01-19  Paul Eggert  <eggert@cs.ucla.edu>
12458
12459         * lib/poll.c: Include sys/time.h and time.h unconditionally,
12460         since we now assume the sys_time module.
12461         * m4/poll.m4 (gl_PREREQ_POLL): Don't require AC_HEADER_TIME or
12462         check for sys/time.h; no longer needed.
12463         * modules/poll (Depends-on): Depend on sys_time.
12464
12465 2007-01-18  Bruno Haible  <bruno@clisp.org>
12466
12467         * m4/mktime.m4 (AC_FUNC_MKTIME): Remove test for <sys/time.h>.
12468         * m4/strftime.m4 (gl_FUNC_STRFTIME): Likewise.
12469
12470         * m4/tempname.m4 (gl_PREREQ_TEMPNAME): Remove tests for sys/time.h and
12471         gettimeofday.
12472
12473         * tests/test-gettimeofday.c: Include <time.h>.
12474         (dummy): Remove variable.
12475
12476         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Renamed from
12477         gl_HEADER_SYS_TIME_H.
12478         (gl_HEADER_SYS_TIME_H): New macro.
12479
12480         * lib/sys_time_.h: Test GETTIMEOFDAY_REPLACEMENT instead of
12481         HAVE_GETTIMEOFDAY_POSIX_SIGNATURE and GETTIMEOFDAY_CLOBBERS_LOCALTIME.
12482         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY,
12483         gl_FUNC_GETTIMEOFDAY_CLOBBER): Set GETTIMEOFDAY_REPLACEMENT instead of
12484         HAVE_GETTIMEOFDAY_POSIX_SIGNATURE and GETTIMEOFDAY_CLOBBERS_LOCALTIME.
12485         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H): Initialize
12486         GETTIMEOFDAY_REPLACEMENT instead of HAVE_GETTIMEOFDAY_POSIX_SIGNATURE
12487         and GETTIMEOFDAY_CLOBBERS_LOCALTIME.
12488         * modules/sys_time (sys/time.h): Substitute GETTIMEOFDAY_REPLACEMENT
12489         instead of HAVE_GETTIMEOFDAY_POSIX_SIGNATURE and
12490         GETTIMEOFDAY_CLOBBERS_LOCALTIME.
12491
12492         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Undo the
12493         last change; it caused a compilation error when cross-compiling to
12494         Cygwin.
12495
12496 2007-01-18  Jim Meyering  <jim@meyering.net>
12497
12498         Use "$(MKDIR_P) sys", not race-prone "test -d sys || mkdir sys".
12499         * modules/sys_stat (Makefile.am): Use "$(MKDIR_P) sys", rather
12500         than the race-prone "test -d sys || mkdir sys".
12501         (configure.ac): Use AC_PROG_MKDIR_P.
12502         * modules/sys_select: Likewise.
12503         * modules/sys_socket: Likewise.
12504         * modules/sys_time: Likewise.
12505
12506 2007-01-18  Eric Blake  <ebb9@byu.net>
12507
12508         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Also
12509         replace gettimeofday.
12510         * lib/gettimeofday.c (rpl_gettimeofday): Declare with replacement
12511         name, to avoid infinite recursion.
12512
12513 2007-01-17  Paul Eggert  <eggert@cs.ucla.edu>
12514
12515         * MODULES.html.sh (Support for systems lacking POSIX:2001): New
12516         module sys_time.
12517         * lib/gethrxtime.c: Include <sys/time.h>, since we can no longer
12518         assume timespec.h defines struct timeval.
12519         * lib/settime.c: Likewise.
12520         * lib/utimens.c: Likewise.
12521         * lib/gettime.c (gettime): Remove test against HAVE_GETTIMEOFDAY,
12522         since we now assume the gettimeofday module.
12523         * lib/tempname.c (__gen_tempname): Likewise.
12524         * lib/gettimeofday.h: Remove.
12525         * lib/gettimeofday.c: Include <sys/time.h> instead of "gettimeofday.h".
12526         Don't include <sys/types.h> and <stdlib.h>; shouldn't be needed.
12527         Include <time.h>, for 'time()'.
12528         (localtime_buffer_addr): Also use this workaround if
12529         TZSET_CLOBBERS_LOCALTIME.  Set to a dummy static variable by default,
12530         to simplify the uses.  All uses changed.
12531         (localtime, gmtime, tzset, gettimeofday): Reformat slightly so
12532         that #undef is inside {}, and 'const' follows type name consistently.
12533         (tzset): Define replacement only if TZSET_CLOBBERS_LOCALTIME.
12534         (gettimeofday): Do not use the maximum possible value for
12535         tv->tv_usec, since that might break usages other than ls.c.
12536         Instead, we'll leave ls.c alone.  This undoes today's patch
12537         by Bruno.  Add a compile-time warning for 1s-clock resolution;
12538         we've never observed the problem but might as well keep the
12539         canary.
12540         * lib/nanosleep.c: Include timespec.h first, for interface check.
12541         * lib/nanosleep.c: Include <sys/time.h> unconditionally, since we
12542         now assume the sys_time module.
12543         * lib/tempname.c: Likewise.
12544         * lib/timespec.h: Likewise.
12545         * lib/nanosleep.c: Don't worry about TIME_WITH_SYS_TIME; no longer
12546         needed.
12547         * lib/strftime.c: Likewise.
12548         * lib/timespec.h: Likewise.
12549         * lib/posixtm.c: Include posixtm.h first, for interface check.
12550         Don't worry about TM_IN_SYS_TIME; that's wayyy obsolete.
12551         * lib/posixtm.h: Include stdbool.h and time.h, for proper interface.
12552         * lib/strftime.c: Don't include <sys/types.h>; shouldn't be needed.
12553         * lib/sys_time_.h: New file.
12554         * lib/timespec.h (struct timespec): Use long int, not long.
12555         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY):
12556         (gl_FUNC_GETTIMEOFDAY_CLOBBER, gl_PREREQ_GETTIMEOFDAY):
12557         Remove obsolescent call to AC_HEADER_TIME.
12558         * m4/mktime.m4 (AC_FUNC_MKTIME): Likewise.
12559         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
12560         * m4/strftime.m4 (gl_FUNC_STRFTIME): Likewise.
12561         * m4/timespec.m4 (gl_TIMESPEC, gl_CHECK_TYPE_STRUCT_TIMESPEC):
12562         Likewise.
12563         * m4/tzset.m4 (gl_FUNC_TZSET_CLOBBER): Likewise.
12564         * m4/utimbuf.m4 (gl_CHECK_TYPE_STRUCT_UTIMBUF): Likewise.
12565         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY): Move sys/time.h tests
12566         into the sys_time module.  Check for gettimeofday just once.
12567         Prefix our variables with gl_, not with ac_ or jm_.  Tighten test
12568         for gettimeofday signature to just check the signature.  Merely
12569         compile it, since linking doesn't test signature.  Improve test for
12570         whether gettimeofday.o is actually needed.
12571         (gl_FUNC_GETTIMEOFDAY_CLOBBER): Renamed from
12572         AC_FUNC_GETTIMEOFDAY_CLOBBER.  All uses changed.  Use
12573         AC_RUN_IFELSE rather than AC_TRY_RUN.  If clobbering, set
12574         and define GETTIMEOFDAY_CLOBBERS_LOCALTIME.
12575         (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Don't define
12576         GETTIMEOFDAY_CLOBBERS_LOCALTIME; that's gl_FUNC_GETTIMEOFDAY_CLOBBER's
12577         job.  Don't define tzset; that's gl_FUNC_TZSET_CLOBBER's job.
12578         * m4/mktime.m4 (AC_FUNC_MKTIME): Just include <time.h> rather
12579         than worrying about sys/time.h.
12580         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP):
12581         Don't bother worrying about TIME_WITH_SYS_TIME.
12582         * m4/stat-time.m4 (gl_STAT_TIME): Likewise.
12583         * m4/posixtm.m4 (gl_POSIXTM): Remove obsolescent call to AC_STRUCT_TM.
12584         * m4/sys_time_h.m4: New file.
12585         * m4/tzset.m4 (gl_FUNC_TZSET_CLOBBER): Require gl_HEADER_SYS_TIME_H.
12586         Don't include sys/time.h.  Return from main rather than exiting.
12587         Define TZSET_CLOBBERS_LOCALTIME, for consistency with other names;
12588         all uses changed.
12589         * modules/gethrxtime (Depends-on): Add sys_time.
12590         * modules/gettime (Depends-on): Likewise.
12591         * modules/gettimeofday (Depends-on): Likewise.
12592         * modules/nanosleep (Depends-on): Likewise.
12593         * modules/settime (Depends-on): Likewise.
12594         * modules/tempname (Depends-on): Likewise.
12595         * modules/utimens (Depends-on): Likewise.
12596         * modules/gettimeofday (Files): Remove lib/gettimeofday.h.
12597         (Include:) Change back to <sys/time.h>.
12598         (Maintainer:) Add self.
12599         * modules/sys_time: New file.
12600         * modules/tempname (Depends-on): Add gettimeofday.
12601         * tests/test-gettimeofday.c: Include <sys/time.h>
12602         rather than gettimeofday.h.
12603
12604 2007-01-17  Bruno Haible  <bruno@clisp.org>
12605
12606         * gnulib-tool (func_get_license): Revert last patch. Instead, let
12607         the license default to GPL.
12608         (func_create_testdir): Don't complain if a module is LGPL and its
12609         tests module depends on GPLed modules.
12610
12611 2007-01-17  Bruno Haible  <bruno@clisp.org>
12612
12613         * lib/gettimeofday.c (gettimeofday): Add code for the case
12614         HAVE_GETTIMEOFDAY && !GETTIMEOFDAY_CLOBBERS_LOCALTIME. Use the
12615         maximum possible value for tv->tv_usec, rather than the minimum one.
12616
12617 2005-10-08  Martin Lambers  <marlam@marlam.de>
12618 2005-10-08  Paul Eggert  <eggert@cs.ucla.edu>
12619 2007-01-16  Bruno Haible  <bruno@clisp.org>
12620
12621         * modules/gettimeofday (Files): Add lib/gettimeofday.h.
12622         (configure.ac): Remove AC_FUNC_GETTIMEOFDAY_CLOBBER. Add
12623         gl_FUNC_GETTIMEOFDAY.
12624         (Include): Add gettimeofday.h.
12625         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY): New macro.
12626         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Don't invoke gl_PREREQ_GETTIMEOFDAY.
12627         (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Define
12628         GETTIMEOFDAY_CLOBBERS_LOCALTIME. Invoke gl_PREREQ_GETTIMEOFDAY here.
12629         (gl_PREREQ_GETTIMEOFDAY): Check for <sys/timeb.h> and _ftime.
12630         * lib/gettimeofday.h: New file.
12631         * lib/gettimeofday.c: Include <sys/timeb.h>.
12632         (localtime_buffer_addr, rpl_localtime, rpl_gmtime, rpl_tzset): Define
12633         only if GETTIMEOFDAY_CLOBBERS_LOCALTIME.
12634         (rpl_gettimeofday) [!HAVE_GETTIMEOFDAY]: Use _ftime() when available;
12635         fall back on time().
12636
12637         * tests/test-gettimeofday.c: New file.
12638         * modules/gettimeofday-tests: New file.
12639
12640 2007-01-16  Eric Blake  <ebb9@byu.net>
12641
12642         * modules/fnmatch (Depends-on): Depend on wchar.
12643         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Assume <wchar.h>.
12644         * m4/fnmatch.m4: Likewise.
12645         * modules/mbchar (Makefile.am): Assume <wchar.h>.
12646         * m4/mbchar.m4: Likewise.
12647         * modules/mbswidth (Depends-on): Depend on wchar.
12648         * lib/mbswidth.c: Assume <wchar.h>.
12649         * m4/mbswidth.m4: Likewise.
12650         * modules/quotearg (Depends-on): Depend on wchar.
12651         * lib/quotearg.c: Assume <wchar.h>.
12652         * m4/quotearg.m4: Likewise.
12653         * modules/regex (Depends-on): Depend on wchar.
12654         * lib/regex_internal.h: Assume <wchar.h>.
12655         * m4/regex.m4: Likewise.
12656         * modules/stdint (Depends-on): Depend on wchar.
12657         * lib/stdint_.h [!defined WCHAR_MIN]: Assume <wchar.h>.
12658         * m4/stdint.m4: Likewise.
12659         * tests/test-stdint.c [HAVE_WINT_T]: Likewise.
12660         * modules/strftime (Depends-on): Depend on wchar.
12661         * lib/strftime.c (DO_MULTIBYTE): Assume <wchar.h>.
12662         * modules/strtol (Depends-on): Depend on wchar.
12663         * lib/strtol.c: Assume <wchar.h>.
12664         * modules/wcwidth (Depends-on): Depend on wchar.
12665         * lib/wcwidth.h: Assume <wchar.h>.
12666         * m4/wcwidth.m4: Likewise.
12667
12668 2007-01-16  Bruno Haible  <bruno@clisp.org>
12669
12670         * modules/csharpexec-script: New, created from...
12671         * modules/csharpexec: ... this.
12672
12673 2007-01-16  Paolo Bonzini  <bonzini@gnu.org>
12674
12675         * modules/javaexec-script: New, created from...
12676         * modules/javaexec: ... this.
12677
12678 2007-01-16  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
12679
12680         * modules/poll (Dependencies): Add sys_select.
12681
12682 2007-01-15  Jim Meyering  <jim@meyering.net>
12683
12684         * m4/readutmp.m4 (gl_READUTMP): Work around AIX 4.3 struct-
12685         redefinition bug when using both <utmp.h> and <utmpx.h> headers.
12686         * lib/readutmp.h: Likewise.  Reported by Daniel Richard G. in
12687         <http://article.gmane.org/gmane.comp.gnu.core-utils.bugs/9415>.
12688
12689 2007-01-15  Bruno Haible  <bruno@clisp.org>
12690
12691         * modules/striconveh: New file.
12692         * lib/striconveh.h: New file.
12693         * lib/striconveh.c: New file.
12694         * MODULES.html.sh (Internationalization functions): Add striconveh.
12695
12696         * modules/striconveh-tests: New file.
12697         * tests/test-striconveh.c: New file.
12698
12699 2007-01-15  Bruno Haible  <bruno@clisp.org>
12700
12701         * lib/striconv.c (str_cd_iconv): Use the first algorithm if iconv is
12702         not from GNU libiconv or GNU libc.
12703
12704 2007-01-15  Bruno Haible  <bruno@clisp.org>
12705
12706         * doc/gnulib-intro.texi (Copyright): Explain the different license
12707         terms for module descriptions, autoconf macros, tests, documentation.
12708
12709 2007-01-14  Bruno Haible  <bruno@clisp.org>
12710
12711         * modules/striconv-tests: New file.
12712         * tests/test-striconv.c: New file.
12713
12714 2007-01-14  Bruno Haible  <bruno@clisp.org>
12715
12716         * modules/iconv-tests: New file.
12717         * tests/test-iconv.c: New file.
12718
12719 2007-01-14  Bruno Haible  <bruno@clisp.org>
12720
12721         * gnulib-tool (func_get_license): For test modules, use the license of
12722         the main module.
12723
12724 2007-01-14  Bruno Haible  <bruno@clisp.org>
12725
12726         * modules/iconv (Include): Clarify that <iconv.h> can only be included
12727         if iconv is found to exist.
12728
12729 2007-01-14  Bruno Haible  <bruno@clisp.org>
12730
12731         * modules/c-ctype-tests: New file.
12732         * tests/test-c-ctype.c: New file.
12733
12734 2007-01-14  Bruno Haible  <bruno@clisp.org>
12735
12736         * modules/binary-io-tests: New file.
12737         * tests/test-binary-io.sh: New file.
12738         * tests/test-binary-io.c: New file.
12739
12740 2007-01-14  Bruno Haible  <bruno@clisp.org>
12741
12742         * modules/array-oset-tests: New file.
12743         * tests/test-array_oset.c: New file.
12744
12745 2007-01-14  Bruno Haible  <bruno@clisp.org>
12746
12747         * modules/array-list-tests: New file.
12748         * tests/test-array_list.c: New file.
12749
12750 2007-01-14  Bruno Haible  <bruno@clisp.org>
12751
12752         * gnulib-tool (func_create_testdir): Don't unnecessarily run configure
12753         and make.
12754         Reported by Simon Josefsson in
12755         <http://lists.gnu.org/archive/html/bug-gnulib/2007-01/msg00139.html>
12756
12757 2007-01-14  Bruno Haible  <bruno@clisp.org>
12758
12759         * modules/allocsa-tests: New file.
12760         * tests/test-allocsa.c: New file.
12761
12762 2007-01-14  Bruno Haible  <bruno@clisp.org>
12763
12764         * modules/fchdir (Depends-on): Add absolute-header.
12765         * modules/unistd (Depends-on): Likewise.
12766
12767 2006-12-30  Bruno Haible  <bruno@clisp.org>
12768
12769         * modules/fchdir: New file.
12770         * modules/unistd (Files): Add lib/unistd_.h.
12771         (Makefile.am): Generate unistd.h from unistd_.h.
12772         * lib/fchdir.c: New file.
12773         * lib/dirent_.h: New file.
12774         * lib/unistd_.h: New file.
12775         * lib/fcntl_.h (open) [FCHDIR_REPLACEMENT]: New replacement.
12776         * m4/fchdir.m4: New file.
12777         * m4/unistd_h.m4 (gl_PREREQ_UNISTD): New macro.
12778         (gl_HEADER_UNISTD): Invoke it.
12779         * lib/dup-safer.c (dup_safer) [FCHDIR_REPLACEMENT]: Use the dup
12780         function.
12781         * lib/backupfile.c (opendir, closedir): Undefine.
12782         * lib/chown.c (open, close): Undefine.
12783         * lib/clean-temp.c (open, close): Undefine.
12784         * lib/copy-file.c (open, close): Undefine.
12785         * lib/execute.c (open, close): Undefine.
12786         * lib/fsusage.c (open, close): Undefine.
12787         * lib/gc-gnulib.c (open, close): Undefine.
12788         * lib/getcwd.c (opendir, closedir): Undefine.
12789         * lib/glob.c (opendir, closedir): Undefine.
12790         * lib/javacomp.c (open, close): Undefine.
12791         * lib/mountlist.c (open, close, opendir, closedir): Undefine.
12792         * lib/openat-proc.c (open, close): Undefine.
12793         * lib/pagealign_alloc.c (open, close): Undefine.
12794         * lib/pipe.c (open, close): Undefine.
12795         * lib/progreloc.c (open, close): Undefine.
12796         * lib/savedir.c (opendir, closedir): Undefine.
12797         * lib/utime.c (open, close): Undefine.
12798         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add fchdir.
12799
12800 2007-01-10  Bruno Haible  <bruno@clisp.org>
12801
12802         * lib/striconv.c (mem_cd_iconv): Align the temporary buffer.
12803
12804 2007-01-12  Eric Blake  <ebb9@byu.net>
12805
12806         Provide a robust <wchar.h>.  Further simplifications are now
12807         possible in other modules, but not included here.
12808         * modules/wchar: New module.
12809         * m4/wchar.m4: New file.
12810         * lib/wchar_.h: Likewise.
12811         * modules/mbchar (Depends-on): Depend on wchar, as the first use
12812         of the new module.
12813         * MODULES.html.sh (Extended multibyte and wide character utilities):
12814         New section.
12815
12816 2007-01-12  Paul Eggert  <eggert@cs.ucla.edu>
12817
12818         * lib/xreadlink.c (SYMLINK_MAX) [!defined SYMLINK_MAX]: Define
12819         to a reasonable default for memory allocation.
12820         (xreadlink): Don't allocate a huge buffer, to work around a buggy
12821         file system that reports garbage st_size values for symlinks.
12822         Problem reported by Liyang Hu.
12823
12824 2007-01-11  Simon Josefsson  <simon@josefsson.org>
12825
12826         * gnulib-tool (func_all_modules): Exclude all .* files (e.g.,
12827         Emacs .#* auto-save files).
12828
12829 2007-01-11  Bruno Haible  <bruno@clisp.org>
12830
12831         * gnulib-tool (func_all_modules): Exclude all files inside the CVS
12832         directory.
12833
12834 2007-01-10  Paul Eggert  <eggert@cs.ucla.edu>
12835
12836         Use @...@ consistently in lib/wctype_.h.
12837         * lib/wctype_.h [HAVE_WINT_T]: Go back to using @...@, but rely
12838         on it being set to 1 or 0.
12839         * m4/wctype.m4 (gl_WCTYPE_H): Set HAVE_WINT_T to 1 or 0, and
12840         go back to AC_SUBSTing it.
12841         * modules/wctype (Makefile.am): Undo previous change.
12842
12843 2007-01-10  Eric Blake  <ebb9@byu.net>
12844
12845         * lib/wctype_.h [HAVE_WINT_T]: Rely on AC_DEFINE.
12846         * m4/wctype.m4 (gl_WCTYPE_H): No need to AC_SUBST(HAVE_WINT_T).
12847         * modules/wctype (Makefile.am): Likewise.
12848         Reported by Chris McGuire.
12849
12850 2007-01-10  Jim Meyering  <jim@meyering.net>
12851
12852         fts.c: a small readability/maintainability improvement
12853         * lib/fts.c (fts_read): Make this code slightly more readable and
12854         maintainable by hoisting the "sp->fts_cur = p" assignments to
12855         immediately follow the statements that set P.  Derived from
12856         the patch by Miloslav Trmac in http://bugzilla.redhat.com/222089.
12857
12858 2007-01-10  Eric Blake  <ebb9@byu.net>
12859
12860         * lib/wctype_.h [HAVE_WINT_T]: Include <stddef.h> before
12861         <wchar.h>, to work around BSDI bug in BSD/OS 4.0.1.
12862         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Likewise.
12863         * m4/wint_t.m4 (gt_TYPE_WINT_T): Likewise.
12864         Reported by Chris McGuire.
12865
12866 2007-01-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12867
12868         * gnulib-tool (func_all_modules): Use POSIX conforming escaping
12869         in sed script.
12870
12871 2007-01-09  Bruno Haible  <bruno@clisp.org>
12872
12873         * MODULES.html.sh: Accept options --cvs-urls, --git-urls.
12874         (repo_url_prefix, repo_url_suffix, repo_url_suffix_repl): New
12875         variables.
12876         (func_module): Use them.
12877
12878 2007-01-09  Bruno Haible  <bruno@clisp.org>
12879
12880         * modules/unistr/base: New file.
12881         * lib/unistr.h: New file.
12882
12883         * modules/unistr/u8-to-u16: New file.
12884         * lib/unistr/u8-to-u16.c: New file.
12885
12886         * modules/unistr/u8-to-u32: New file.
12887         * lib/unistr/u8-to-u32.c: New file.
12888
12889         * modules/unistr/u16-to-u8: New file.
12890         * lib/unistr/u16-to-u8.c: New file.
12891
12892         * modules/unistr/u16-to-u32: New file.
12893         * lib/unistr/u16-to-u32.c: New file.
12894
12895         * modules/unistr/u32-to-u8: New file.
12896         * lib/unistr/u32-to-u8.c: New file.
12897
12898         * modules/unistr/u32-to-u16: New file.
12899         * lib/unistr/u32-to-u16.c: New file.
12900
12901         * modules/unistr/u8-check: New file.
12902         * modules/unistr/u16-check: New file.
12903         * modules/unistr/u32-check: New file.
12904         * lib/unistr/u8-check.c: New file.
12905         * lib/unistr/u16-check.c: New file.
12906         * lib/unistr/u32-check.c: New file.
12907
12908         * modules/unistr/u8-chr: New file.
12909         * modules/unistr/u16-chr: New file.
12910         * modules/unistr/u32-chr: New file.
12911         * lib/unistr/u8-chr.c: New file.
12912         * lib/unistr/u16-chr.c: New file.
12913         * lib/unistr/u32-chr.c: New file.
12914
12915         * modules/unistr/u8-cmp: New file.
12916         * modules/unistr/u16-cmp: New file.
12917         * modules/unistr/u32-cmp: New file.
12918         * lib/unistr/u8-cmp.c: New file.
12919         * lib/unistr/u16-cmp.c: New file.
12920         * lib/unistr/u32-cmp.c: New file.
12921
12922         * modules/unistr/u8-cpy: New file.
12923         * modules/unistr/u16-cpy: New file.
12924         * modules/unistr/u32-cpy: New file.
12925         * lib/unistr/u8-cpy.c: New file.
12926         * lib/unistr/u16-cpy.c: New file.
12927         * lib/unistr/u32-cpy.c: New file.
12928         * lib/unistr/u-cpy.h: New file.
12929
12930         * modules/unistr/u8-cpy-alloc: New file.
12931         * modules/unistr/u16-cpy-alloc: New file.
12932         * modules/unistr/u32-cpy-alloc: New file.
12933         * lib/unistr/u8-cpy-alloc.c: New file.
12934         * lib/unistr/u16-cpy-alloc.c: New file.
12935         * lib/unistr/u32-cpy-alloc.c: New file.
12936         * lib/unistr/u-cpy-alloc.h: New file.
12937
12938         * modules/unistr/u8-endswith: New file.
12939         * modules/unistr/u16-endswith: New file.
12940         * modules/unistr/u32-endswith: New file.
12941         * lib/unistr/u8-endswith.c: New file.
12942         * lib/unistr/u16-endswith.c: New file.
12943         * lib/unistr/u32-endswith.c: New file.
12944         * lib/unistr/u-endswith.h: New file.
12945
12946         * modules/unistr/u8-mblen: New file.
12947         * modules/unistr/u16-mblen: New file.
12948         * modules/unistr/u32-mblen: New file.
12949         * lib/unistr/u8-mblen.c: New file.
12950         * lib/unistr/u16-mblen.c: New file.
12951         * lib/unistr/u32-mblen.c: New file.
12952
12953         * modules/unistr/u8-mbtouc: New file.
12954         * modules/unistr/u16-mbtouc: New file.
12955         * modules/unistr/u32-mbtouc: New file.
12956         * lib/unistr/u8-mbtouc.c: New file.
12957         * lib/unistr/u16-mbtouc.c: New file.
12958         * lib/unistr/u32-mbtouc.c: New file.
12959
12960         * modules/unistr/u8-mbtouc-safe: New file.
12961         * modules/unistr/u16-mbtouc-safe: New file.
12962         * modules/unistr/u32-mbtouc-safe: New file.
12963         * lib/unistr/u8-mbtouc-safe.c: New file.
12964         * lib/unistr/u16-mbtouc-safe.c: New file.
12965         * lib/unistr/u32-mbtouc-safe.c: New file.
12966
12967         * modules/unistr/u8-move: New file.
12968         * modules/unistr/u16-move: New file.
12969         * modules/unistr/u32-move: New file.
12970         * lib/unistr/u8-move.c: New file.
12971         * lib/unistr/u16-move.c: New file.
12972         * lib/unistr/u32-move.c: New file.
12973         * lib/unistr/u-move.h: New file.
12974
12975         * modules/unistr/u8-next: New file.
12976         * modules/unistr/u16-next: New file.
12977         * modules/unistr/u32-next: New file.
12978         * lib/unistr/u8-next.c: New file.
12979         * lib/unistr/u16-next.c: New file.
12980         * lib/unistr/u32-next.c: New file.
12981
12982         * modules/unistr/u8-prev: New file.
12983         * modules/unistr/u16-prev: New file.
12984         * modules/unistr/u32-prev: New file.
12985         * lib/unistr/u8-prev.c: New file.
12986         * lib/unistr/u16-prev.c: New file.
12987         * lib/unistr/u32-prev.c: New file.
12988
12989         * modules/unistr/u8-set: New file.
12990         * modules/unistr/u16-set: New file.
12991         * modules/unistr/u32-set: New file.
12992         * lib/unistr/u8-set.c: New file.
12993         * lib/unistr/u16-set.c: New file.
12994         * lib/unistr/u32-set.c: New file.
12995         * lib/unistr/u-set.h: New file.
12996
12997         * modules/unistr/u8-startswith: New file.
12998         * modules/unistr/u16-startswith: New file.
12999         * modules/unistr/u32-startswith: New file.
13000         * lib/unistr/u8-startswith.c: New file.
13001         * lib/unistr/u16-startswith.c: New file.
13002         * lib/unistr/u32-startswith.c: New file.
13003         * lib/unistr/u-startswith.h: New file.
13004
13005         * modules/unistr/u8-stpcpy: New file.
13006         * modules/unistr/u16-stpcpy: New file.
13007         * modules/unistr/u32-stpcpy: New file.
13008         * lib/unistr/u8-stpcpy.c: New file.
13009         * lib/unistr/u16-stpcpy.c: New file.
13010         * lib/unistr/u32-stpcpy.c: New file.
13011         * lib/unistr/u-stpcpy.h: New file.
13012
13013         * modules/unistr/u8-stpncpy: New file.
13014         * modules/unistr/u16-stpncpy: New file.
13015         * modules/unistr/u32-stpncpy: New file.
13016         * lib/unistr/u8-stpncpy.c: New file.
13017         * lib/unistr/u16-stpncpy.c: New file.
13018         * lib/unistr/u32-stpncpy.c: New file.
13019         * lib/unistr/u-stpncpy.h: New file.
13020
13021         * modules/unistr/u8-strcat: New file.
13022         * modules/unistr/u16-strcat: New file.
13023         * modules/unistr/u32-strcat: New file.
13024         * lib/unistr/u8-strcat.c: New file.
13025         * lib/unistr/u16-strcat.c: New file.
13026         * lib/unistr/u32-strcat.c: New file.
13027         * lib/unistr/u-strcat.h: New file.
13028
13029         * modules/unistr/u8-strchr: New file.
13030         * modules/unistr/u16-strchr: New file.
13031         * modules/unistr/u32-strchr: New file.
13032         * lib/unistr/u8-strchr.c: New file.
13033         * lib/unistr/u16-strchr.c: New file.
13034         * lib/unistr/u32-strchr.c: New file.
13035
13036         * modules/unistr/u8-strcmp: New file.
13037         * modules/unistr/u16-strcmp: New file.
13038         * modules/unistr/u32-strcmp: New file.
13039         * lib/unistr/u8-strcmp.c: New file.
13040         * lib/unistr/u16-strcmp.c: New file.
13041         * lib/unistr/u32-strcmp.c: New file.
13042
13043         * modules/unistr/u8-strcpy: New file.
13044         * modules/unistr/u16-strcpy: New file.
13045         * modules/unistr/u32-strcpy: New file.
13046         * lib/unistr/u8-strcpy.c: New file.
13047         * lib/unistr/u16-strcpy.c: New file.
13048         * lib/unistr/u32-strcpy.c: New file.
13049         * lib/unistr/u-strcpy.h: New file.
13050
13051         * modules/unistr/u8-strcspn: New file.
13052         * modules/unistr/u16-strcspn: New file.
13053         * modules/unistr/u32-strcspn: New file.
13054         * lib/unistr/u8-strcspn.c: New file.
13055         * lib/unistr/u16-strcspn.c: New file.
13056         * lib/unistr/u32-strcspn.c: New file.
13057         * lib/unistr/u-strcspn.h: New file.
13058
13059         * modules/unistr/u8-strdup: New file.
13060         * modules/unistr/u16-strdup: New file.
13061         * modules/unistr/u32-strdup: New file.
13062         * lib/unistr/u8-strdup.c: New file.
13063         * lib/unistr/u16-strdup.c: New file.
13064         * lib/unistr/u32-strdup.c: New file.
13065         * lib/unistr/u-strdup.h: New file.
13066
13067         * modules/unistr/u8-strlen: New file.
13068         * modules/unistr/u16-strlen: New file.
13069         * modules/unistr/u32-strlen: New file.
13070         * lib/unistr/u8-strlen.c: New file.
13071         * lib/unistr/u16-strlen.c: New file.
13072         * lib/unistr/u32-strlen.c: New file.
13073         * lib/unistr/u-strlen.h: New file.
13074
13075         * modules/unistr/u8-strmblen: New file.
13076         * modules/unistr/u16-strmblen: New file.
13077         * modules/unistr/u32-strmblen: New file.
13078         * lib/unistr/u8-strmblen.c: New file.
13079         * lib/unistr/u16-strmblen.c: New file.
13080         * lib/unistr/u32-strmblen.c: New file.
13081
13082         * modules/unistr/u8-strmbtouc: New file.
13083         * modules/unistr/u16-strmbtouc: New file.
13084         * modules/unistr/u32-strmbtouc: New file.
13085         * lib/unistr/u8-strmbtouc.c: New file.
13086         * lib/unistr/u16-strmbtouc.c: New file.
13087         * lib/unistr/u32-strmbtouc.c: New file.
13088
13089         * modules/unistr/u8-strncat: New file.
13090         * modules/unistr/u16-strncat: New file.
13091         * modules/unistr/u32-strncat: New file.
13092         * lib/unistr/u8-strncat.c: New file.
13093         * lib/unistr/u16-strncat.c: New file.
13094         * lib/unistr/u32-strncat.c: New file.
13095         * lib/unistr/u-strncat.h: New file.
13096
13097         * modules/unistr/u8-strncmp: New file.
13098         * modules/unistr/u16-strncmp: New file.
13099         * modules/unistr/u32-strncmp: New file.
13100         * lib/unistr/u8-strncmp.c: New file.
13101         * lib/unistr/u16-strncmp.c: New file.
13102         * lib/unistr/u32-strncmp.c: New file.
13103
13104         * modules/unistr/u8-strncpy: New file.
13105         * modules/unistr/u16-strncpy: New file.
13106         * modules/unistr/u32-strncpy: New file.
13107         * lib/unistr/u8-strncpy.c: New file.
13108         * lib/unistr/u16-strncpy.c: New file.
13109         * lib/unistr/u32-strncpy.c: New file.
13110         * lib/unistr/u-strncpy.h: New file.
13111
13112         * modules/unistr/u8-strnlen: New file.
13113         * modules/unistr/u16-strnlen: New file.
13114         * modules/unistr/u32-strnlen: New file.
13115         * lib/unistr/u8-strnlen.c: New file.
13116         * lib/unistr/u16-strnlen.c: New file.
13117         * lib/unistr/u32-strnlen.c: New file.
13118         * lib/unistr/u-strnlen.h: New file.
13119
13120         * modules/unistr/u8-strpbrk: New file.
13121         * modules/unistr/u16-strpbrk: New file.
13122         * modules/unistr/u32-strpbrk: New file.
13123         * lib/unistr/u8-strpbrk.c: New file.
13124         * lib/unistr/u16-strpbrk.c: New file.
13125         * lib/unistr/u32-strpbrk.c: New file.
13126         * lib/unistr/u-strpbrk.h: New file.
13127
13128         * modules/unistr/u8-strrchr: New file.
13129         * modules/unistr/u16-strrchr: New file.
13130         * modules/unistr/u32-strrchr: New file.
13131         * lib/unistr/u8-strrchr.c: New file.
13132         * lib/unistr/u16-strrchr.c: New file.
13133         * lib/unistr/u32-strrchr.c: New file.
13134
13135         * modules/unistr/u8-strspn: New file.
13136         * modules/unistr/u16-strspn: New file.
13137         * modules/unistr/u32-strspn: New file.
13138         * lib/unistr/u8-strspn.c: New file.
13139         * lib/unistr/u16-strspn.c: New file.
13140         * lib/unistr/u32-strspn.c: New file.
13141         * lib/unistr/u-strspn.h: New file.
13142
13143         * modules/unistr/u8-strstr: New file.
13144         * modules/unistr/u16-strstr: New file.
13145         * modules/unistr/u32-strstr: New file.
13146         * lib/unistr/u8-strstr.c: New file.
13147         * lib/unistr/u16-strstr.c: New file.
13148         * lib/unistr/u32-strstr.c: New file.
13149         * lib/unistr/u-strstr.h: New file.
13150
13151         * modules/unistr/u8-strtok: New file.
13152         * modules/unistr/u16-strtok: New file.
13153         * modules/unistr/u32-strtok: New file.
13154         * lib/unistr/u8-strtok.c: New file.
13155         * lib/unistr/u16-strtok.c: New file.
13156         * lib/unistr/u32-strtok.c: New file.
13157         * lib/unistr/u-strtok.h: New file.
13158
13159         * modules/unistr/u8-uctomb: New file.
13160         * modules/unistr/u16-uctomb: New file.
13161         * modules/unistr/u32-uctomb: New file.
13162         * lib/unistr/u8-uctomb.c: New file.
13163         * lib/unistr/u16-uctomb.c: New file.
13164         * lib/unistr/u32-uctomb.c: New file.
13165
13166         * MODULES.html.sh (Unicode string functions): Add the new modules.
13167
13168 2007-01-08  Bruno Haible  <bruno@clisp.org>
13169
13170         * gnulib-tool (func_all_modules): Use find, not ls, to traverse the
13171         modules directory. Filter out CVS, ChangeLog, COPYING, README also from
13172         subdirectories.
13173
13174 2007-01-08  Karl Berry  <karl@gnu.org>
13175
13176         * doc/error.texi: mention that main() fns must set program_name
13177         when progname is used.
13178
13179 2007-01-08  Paul Eggert  <eggert@cs.ucla.edu>
13180
13181         * m4/wctype.m4 (gl_WCTYPE_H): Compute ABSOLUTE_WCTYPE_H even if
13182         WCTYPE_H is empty, for the benefit of builds from non-distclean
13183         directories.  Problem reported by Eric Blake in
13184         <http://lists.gnu.org/archive/html/bug-gnulib/2007-01/msg00157.html>.
13185
13186 2007-01-08  Bruno Haible  <bruno@clisp.org>
13187
13188         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME): Remove
13189         PROVIDE_CANONICALIZE_FILENAME_MODE macro definition.
13190         * lib/canonicalize.h: Test GNULIB_CANONICALIZE instead of
13191         PROVIDE_CANONICALIZE_FILENAME_MODE.
13192         * modules/canonicalize (configure.ac): Use gl_MODULE_INDICATOR.
13193
13194 2007-01-08  Bruno Haible  <bruno@clisp.org>
13195
13196         * m4/fts.m4 (gl_FUNC_FTS_LGPL): Remove _LGPL_PACKAGE macro definition.
13197         * lib/fts_.h (_LGPL_PACKAGE): Remove macro.
13198         Use !GNULIB_FTS instead of _LGPL_PACKAGE.
13199         * lib/fts.c: Likewise.
13200         * modules/fts (configure.ac): Use gl_MODULE_INDICATOR.
13201
13202 2006-12-25  Bruno Haible  <bruno@clisp.org>
13203
13204         * modules/utf8-ucs4-safe: New file.
13205         * lib/utf8-ucs4-safe.h: New file.
13206         * lib/unistr/utf8-ucs4-safe.c: New file.
13207
13208         * modules/utf16-ucs4-safe: New file.
13209         * lib/utf16-ucs4-safe.h: New file.
13210         * lib/unistr/utf16-ucs4-safe.c: New file.
13211
13212         * MODULES.html.sh (Unicode string functions): Add the new modules.
13213
13214 2007-01-08  Bruno Haible  <bruno@clisp.org>
13215
13216         * modules/utf8-ucs4 (Files, lib_SOURCES): Add unistr/utf8-ucs4.c.
13217         (Depends-on): Add unitypes.
13218         * lib/utf8-ucs4.h: Add double-inclusion guard. Include unitypes.h.
13219         (u8_mbtouc_aux): Move out to separate file.
13220         (u8_mbtouc): Use ucs4_t, uint8_t types.
13221         * lib/unistr/utf8-ucs4.c: New file.
13222
13223         * modules/utf16-ucs4 (Files, lib_SOURCES): Add unistr/utf16-ucs4.c.
13224         (Depends-on): Add unitypes.
13225         * lib/utf16-ucs4.h: Add double-inclusion guard. Include unitypes.h.
13226         (u16_mbtouc_aux): Move out to separate file.
13227         (u16_mbtouc): Use ucs4_t, uint16_t types.
13228         * lib/unistr/utf16-ucs4.c: New file.
13229
13230         * modules/ucs4-utf8 (Files, lib_SOURCES): Add unistr/ucs4-utf8.c.
13231         (Depends-on): Add unitypes.
13232         * lib/ucs4-utf8.h: Add double-inclusion guard. Include unitypes.h.
13233         (u8_uctomb_aux): Move out to separate file.
13234         (u8_uctomb): Use ucs4_t, uint8_t types.
13235         * lib/unistr/ucs4-utf8.c: New file.
13236
13237         * modules/ucs4-utf16 (Files, lib_SOURCES): Add unistr/ucs4-utf16.c.
13238         (Depends-on): Add unitypes.
13239         * lib/ucs4-utf16.h: Add double-inclusion guard. Include unitypes.h.
13240         (u16_uctomb_aux): Move out to separate file.
13241         (u16_uctomb): Use ucs4_t, uint16_t types.
13242         * lib/unistr/ucs4-utf16.c: New file.
13243
13244 2006-12-25  Bruno Haible  <bruno@clisp.org>
13245
13246         * modules/unitypes: New file.
13247         * lib/unitypes.h: New file.
13248         * MODULES.html.sh (func_all_modules): New section "Unicode string
13249         functions". Move ucs4-utf8, ucs4-utf16, utf8-ucs4, utf16-ucs4 to
13250         this section. Add unitypes.
13251
13252 2007-01-08  Bruno Haible  <bruno@clisp.org>
13253
13254         Avoid variable names that conflict with those from libtool.
13255         * m4/lib-link.m4 (AC_LIB_RPATH, AC_LIB_LINKFLAGS_BODY,
13256         AC_LIB_LINKFLAGS_FROM_LIBS): Rename libext to acl_libext,
13257         shlibext to acl_shlibext, libname_spec to acl_libname_spec,
13258         library_names_spec to acl_library_names_spec, hardcode_* to
13259         acl_hardcode_*.
13260         Reported by Ralf Wildenhues.
13261
13262 2007-01-08  Bruno Haible  <bruno@clisp.org>
13263
13264         * m4/gc-arcfour.m4 (gl_GC_ARCFOUR): Remove GC_USE_ARCFOUR macro
13265         definition.
13266         * m4/gc-arctwo.m4 (gl_GC_ARCTWO): Remove GC_USE_ARCTWO macro
13267         definition.
13268         * m4/gc-des.m4 (gl_GC_DES): Remove GC_USE_DES macro definition.
13269         * m4/gc-hmac-md5.m4 (gl_GC_HMAC_MD5): Remove GC_USE_HMAC_MD5 macro
13270         definition.
13271         * m4/gc-hmac-sha1.m4 (gl_GC_HMAC_SHA1): Remove GC_USE_HMAC_SHA1 macro
13272         definition.
13273         * m4/gc-md2.m4 (gl_GC_MD2): Remove GC_USE_MD2 macro definition.
13274         * m4/gc-md4.m4 (gl_GC_MD4): Remove GC_USE_MD4 macro definition.
13275         * m4/gc-md5.m4 (gl_GC_MD5): Remove GC_USE_MD5 macro definition.
13276         * m4/gc-random.m4 (gl_GC_RANDOM): Remove GC_USE_RANDOM macro
13277         definition.
13278         * m4/gc-rijndael.m4 (gl_GC_RIJNDAEL): Remove GC_USE_RIJNDAEL macro
13279         definition.
13280         * m4/gc-sha1.m4 (gl_GC_SHA1): Remove GC_USE_SHA1 macro definition.
13281         * lib/gc-gnulib.c: Use GNULIB_GC_<algorithm> instead of
13282         GC_USE_<algorithm>.
13283         * lib/gc-libgcrypt.c: Likewise.
13284         * modules/gc-arcfour (configure.ac): Use gl_MODULE_INDICATOR.
13285         * modules/gc-arctwo (configure.ac): Likewise.
13286         * modules/gc-des (configure.ac): Likewise.
13287         * modules/gc-hmac-md5 (configure.ac): Likewise.
13288         * modules/gc-hmac-sha1 (configure.ac): Likewise.
13289         * modules/gc-md2 (configure.ac): Likewise.
13290         * modules/gc-md4 (configure.ac): Likewise.
13291         * modules/gc-md5 (configure.ac): Likewise.
13292         * modules/gc-random (configure.ac): Likewise.
13293         * modules/gc-rijndael (configure.ac): Likewise.
13294         * modules/gc-sha1 (configure.ac): Likewise.
13295
13296 2007-01-08  Bruno Haible  <bruno@clisp.org>
13297
13298         * m4/close-stream.m4 (gl_CLOSE_STREAM): Remove GNULIB_CLOSE_STREAM
13299         macro definition.
13300         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Remove GNULIB_FCNTL_SAFER macro
13301         definition.
13302         * m4/stdio-safer.m4 (gl_FOPEN_SAFER): Remove GNULIB_FOPEN_SAFER macro
13303         definition.
13304         * modules/close-stream (configure.ac): Invoke gl_MODULE_INDICATOR.
13305         * modules/fcntl-safer (configure.ac): Likewise.
13306         * modules/fopen-safer (configure.ac): Likewise.
13307         * modules/fwriteerror (configure.ac): Likewise. Remove explicit
13308         GNULIB_FWRITEERROR macro definition.
13309
13310 2007-01-08  Bruno Haible  <bruno@clisp.org>
13311
13312         * m4/gnulib-common.m4: New file.
13313         * gnulib-tool (func_get_autoconf_snippet): Undo last change.
13314         (func_get_filelist): Add m4/gnulib-common.m4.
13315
13316 2007-01-08  Bruno Haible  <bruno@clisp.org>
13317
13318         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Simplify the sorting
13319         command.
13320
13321 2007-01-08  Jim Meyering  <jim@meyering.net>
13322
13323         Use a more robust test for a "can't happen" condition.
13324         * lib/fts.c (fts_read): Revert the change of 2006-11-22, since it
13325         narrowed the st_size value.  Presuming the "can't happen" condition
13326         is true, that narrowing could conceivably convert an invalid st_size
13327         value into a valid one.  Instead, use a change based on Matthew
13328         Woehlke's original patch.
13329
13330         Slight readability improvement: use an assert-like macro
13331         in place of literal "abort ()" uses.
13332         * lib/fts.c (fts_assert): Define.
13333         (fts_set_stat_required, cwd_advance_fd, fts_read, fd_ring_check):
13334         Use this macro instead of a bare 'abort'.
13335
13336 2007-01-05  Paul Eggert  <eggert@cs.ucla.edu>
13337
13338         Don't worry about using IRIX 5.3's wctype.h broken definitions;
13339         simply work around them.
13340         * lib/wctype_.h: Remove test for HAVE_WCTYPE_CTMP_BUG.
13341         (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit, iswgraph, iswlower):
13342         (iswprint, iswpunct, iswspace, iswupper, iswxdigit): Undef before
13343         declaring.
13344         Don't bother to define as macros, since the standard doesn't require it.
13345         * m4/wctype.m4 (WCTYPE_H, ABSOLUTE_WCTYPE_H): Simplify, since we no
13346         longer worry about IRIX 5.3.
13347         (HAVE_WCTYPE_CTMP_BUG): Remove.
13348
13349 2007-01-04  Paul Eggert  <eggert@cs.ucla.edu>
13350
13351         * lib/wctype_.h (_ctmp_) [HAVE_WCTYPE_CTMP_BUG]: Now of type wchar_t,
13352         not wint_t.  Also, include <ctype.h>, to fix another IRIX bug.
13353         * m4/wctype.m4 (gl_WCTYPE_H): Likewise.
13354         Problems reported by Georg Schwarz for IRIX 5.3.
13355
13356         * gnulib-tool (autoconf_minversion): Take the maximum version number
13357         found, not the minimum.  Problem reported by James Youngman.
13358
13359 2007-01-03  Karl Berry  <karl@gnu.org>
13360
13361         * doc/error.texi: new file, explaining interaction with progname.
13362         * doc/gnulib.texi: include it.  Update copyright.
13363
13364 2007-01-03  Simon Josefsson  <simon@josefsson.org>
13365
13366         * gnulib-tool (func_create_testdir): Run AC_CANONICAL_BUILD and
13367         AC_CANONICAL_HOST, to improve autobuild outputs.
13368
13369 2007-01-03  Paolo Bonzini  <bonzini@gnu.org>
13370             Yoann Vandoorselaere <yoann.v@prelude-ids.com>
13371
13372         * lib/poll.c (poll): Use recv on Mac OS X to distinguish connected
13373         sockets, server sockets, and other file descriptors.  Count errors
13374         to compute the return value.  Reorder the code a bit to be easier
13375         to follow.  Don't set event bits that were not requested (except
13376         POLLERR and POLLHUP).
13377
13378 2007-01-01  Bruno Haible  <bruno@clisp.org>
13379
13380         * modules/lchmod (Include): Require lchmod.h, not lchown.h.
13381
13382 2007-01-03  Jim Meyering  <jim@meyering.net>
13383
13384         * modules/fts-lgpl (Depends-on): Add i-ring.  Reported by Bruno Haible.
13385
13386 2007-01-02  Bruno Haible  <bruno@clisp.org>
13387
13388         * modules/settime (Include): Require timespec.h.
13389         * modules/nanosleep (Include): Likewise.
13390
13391 2007-01-01  Bruno Haible  <bruno@clisp.org>
13392
13393         * gnulib-tool (func_emit_copyright_notice): Bump year.
13394         (func_get_autoconf_snippet): Emit a GNULIB_<modulename> macro.
13395
13396 2007-01-01  Bruno Haible  <bruno@clisp.org>
13397
13398         Improve support for OpenBSD.
13399         * build-aux/config.rpath (libname_spec): Export.
13400         (library_names_spec): New variable. Export.
13401         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Extract libname_spec and
13402         library_names_spec from the config.rpath output. Locate shared library
13403         through the name pattern in library_names_spec.
13404
13405 2007-01-01  Eric Blake  <ebb9@byu.net>
13406
13407         * lib/version-etc.c (COPYRIGHT_YEAR): Bump for new year.
13408
13409 2006-12-30  Paul Eggert  <eggert@cs.ucla.edu>
13410
13411         * gnulib-tool (SORT): Remove, since we no longer assume GNU sort.
13412         Rewrite so as not to assume GNU sort or "tail -1".  Also, don't
13413         assume the C locale, and avoid an "eval" that could cause trouble.
13414         Problem with SORT reported by Bob Proulx.
13415
13416         * lib/getpagesize.h (getpagesize) [defined __amigaos4__]:
13417         Define.  Trivial patch from Henning Nielsen Lund, originally
13418         sent to bug-grep@gnu.org today.
13419
13420 2006-12-29  Paul Eggert  <eggert@cs.ucla.edu>
13421
13422         * lib/acl.h: Include sys/types.h and sys/stat.h, for mode_t and
13423         struct stat.  Problem reported by Henning Nielsen Lund.
13424         * lib/acl.c: Include acl.h first, to check interface.  Don't
13425         bother to include sys/types.h and sys/stat.h again.
13426
13427 2006-12-28  Paul Eggert  <eggert@cs.ucla.edu>
13428
13429         Import the following change from libc; problem reported by
13430         Sven Verdoolaege.
13431
13432         2005-10-13  Ulrich Drepper  <drepper@redhat.com>
13433
13434         [BZ #1373]
13435         * lib/argp.h: Remove __NTH for __argp_usage inline function.
13436
13437 2006-12-28  Jim Meyering  <jim@meyering.net>
13438
13439         * build-aux/announce-gen: Do not assume that the package
13440         builds any of tar.gz, tar.bz2, and .xdelta files.
13441         Suggestion from Simon Josefsson.
13442
13443 2006-12-28  Simon Josefsson  <simon@josefsson.org>
13444
13445         * modules/announce-gen: New file.
13446
13447 2006-12-27  Paul Eggert  <eggert@cs.ucla.edu>
13448
13449         * lib/mbchar.h: Just include <wctype.h>; the wctype module
13450         handles its gotchas now.
13451         * lib/mbswidth.c: Likewise.
13452         * lib/wcwidth.h: Likewise.
13453         * m4/mbchar.m4 (gl_MBCHAR): Don't bother checking for wctype.h
13454         and iswcntrl; the wctype module does this stuff now.
13455         * m4/mbswidth.m4 (gl_MBSWIDTH): Likewise.
13456         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Likewise.
13457         * modules/mbchar (Depends-on): Add wctype.
13458         * modules/mbswidth (Depends-on): Likewise.
13459         * modules/wcwidth (Depends-on): Likewise.
13460
13461 2006-12-27  Eric Blake  <ebb9@byu.net>
13462
13463         * lib/fnmatch.c: Reinstate inclusion of <wchar.h>, since this
13464         module uses more than what <wctype.h> is required to provide.
13465
13466 2006-12-26  Eric Blake  <ebb9@byu.net>
13467
13468         * gnulib-tool (sed_extract_prog): Avoid space-tab.
13469
13470 2006-12-26  Eric Blake  <ebb9@byu.net>
13471
13472         * modules/absolute-header: New module.
13473         * modules/fcntl (Depends-on): Depend on it.
13474         * modules/inttypes (Depends-on): Likewise.
13475         * modules/stdint (Depends-on): Likewise.
13476         * modules/sys_stat (Depends-on): Likewise.
13477         * modules/wctype (Depends-on): Likewise.
13478         * MODULES.html.sh (Support for building libraries and
13479         executables): Document it.
13480
13481 2006-12-25  Paul Eggert  <eggert@cs.ucla.edu>
13482
13483         * gnulib-tool (SED): Remove, undoing previous change.
13484         The problem was that it broke coreutils on Solaris, because
13485         "sed --posix" leaked into a makefile.
13486         (sed): New alias, if 'alias' and GNU sed.
13487
13488 2006-12-24  Jim Meyering  <jim@meyering.net>
13489
13490         Work around an fchownat bug in glibc-2.4:
13491         http://lists.ubuntu.com/archives/ubuntu-users/2006-September/093218.html
13492         This bug would cause "chown -RP ... DIR" to follow symlinks in DIR,
13493         in spite of the -P option.
13494         * m4/openat.m4 (gl_FUNC_FCHOWNAT, gl_FUNC_FCHOWNAT_DEREF_BUG):
13495         New macros.
13496         (gl_PREREQ_OPENAT): Require gl_FUNC_FCHOWNAT.
13497         * modules/openat (Files): Add lib/fchownat.c.
13498         * lib/openat.c (fchownat): Don't define here.  Move to...
13499         * lib/fchownat.c: ...this new file.
13500
13501 2006-12-23  Paul Eggert  <eggert@cs.ucla.edu>
13502
13503         Fix bug reported by Bruno Haible in
13504         <http://lists.gnu.org/archive/html/bug-gnulib/2006-12/msg00228.html>
13505         where quotearg.c didn't compile on Mac OS X 10.2 because it
13506         lacks <wchar.h> and wint_t.
13507         * lib/wctype_.h (__wctype_wint_t): New type.
13508         Include <stdio.h>, <time.h>, <wchar.h> only if HAVE_WINT_T.
13509         (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit, iswgraph):
13510         (iswlower, iswprint, iswpunct, iswspace, iswupper, ixwxdigit):
13511         Arg is now of type __wctype_wint_t, not wint_t.
13512         * m4/wctype.m4 (gl_WCTYPE_H): Require gt_TYPE_WINT_T, and
13513         substitute HAVE_WINT_T.
13514         * modules/wctype (Files): Add m4/wint_t.m4.
13515         (wctype.h): Substitute HAVE_WINT_T.
13516
13517 2006-12-23  Bruno Haible  <bruno@clisp.org>
13518
13519         * lib/safe-read.h [C++]: Wrap declarations in extern "C".
13520
13521 2006-12-23  Bruno Haible  <bruno@clisp.org>
13522
13523         * lib/canonicalize-lgpl.c (__realpath): Test HAVE_READLINK instead of
13524         S_ISLNK.
13525         Needed because gnulib's sys/stat.h replacement defines S_ISLNK on
13526         mingw.
13527
13528 2006-12-22  Bruno Haible  <bruno@clisp.org>
13529
13530         * lib/copy-file.c: Include acl.h.
13531         (copy_file_preserving) [USE_ACL]: Use copy_acl instead of chmod.
13532         Close the file descriptors only after being done with copy_acl.
13533         * modules/copy-file (Depends-on): Add acl.
13534
13535 2006-12-22  Bruno Haible  <bruno@clisp.org>
13536
13537         * gnulib-tool (SED): New variable.
13538         Use $SED instead of sed everywhere.
13539
13540 2006-12-22  Bruno Haible  <bruno@clisp.org>
13541
13542         * modules/no-c++: New file.
13543         * m4/no-c++.m4: New file.
13544         * MODULES.html.sh (Support for building libraries and executables):
13545         Add no-c++.
13546
13547 2006-12-22  Paul Eggert  <eggert@cs.ucla.edu>
13548
13549         * m4/mktime.m4 (AC_FUNC_MKTIME): Sync from Autoconf.
13550         Include <limits.h>, and use its INT_MAX to rewrite the
13551         j loop so that it does not overflow 'int'.  Problem reported by
13552         Ralf Wildenhues in
13553         <http://lists.gnu.org/archive/html/bug-gnulib/2006-12/msg00084.html>.
13554         Play it safe by shifting left by 1 rather than multiplying by 2,
13555         as GCC is less likely to optimize this away when the value
13556         is signed (when it assumes overflow leads to undefined behavior).
13557         Also, don't assume time_t uses two's complement.
13558
13559 2006-12-21  Paul Eggert  <eggert@cs.ucla.edu>
13560
13561         * MODULES.html.sh: New module wctype.
13562         * lib/wctype_.h, m4/wctype.m4, modules/wctype: New files.
13563         * lib/fnmatch.c: Don't bother to include <wchar.h> before
13564         <wctype.h>, since the new wctype module should fix this.
13565         * lib/quotearg.c: Include <wctype.h> unconditionally, since
13566         the wctype module should arrange for it.
13567         * lib/regex_internal.h: Likewise.
13568         * m4/quotearg.m4 (gl_QUOTEARG): Don't check for wctype.h or iswprint,
13569         since the wctype module should handle this now.
13570         * m4/regex.m4 (gl_PREREQ_REGEX): Don't check for wctype.h.
13571         * modules/fnmatch (Depends-on): Add wctype.
13572         * modules/quotearg (Depends-on): Likewise.
13573         * modules/regex (Depends-on): Likewise.
13574
13575 2006-12-19  Bruno Haible  <bruno@clisp.org>
13576
13577         * lib/strdup.h [C++]: Wrap definitions in extern "C".
13578         Suggested by Lorenzo Bettini <bettini@dsi.unifi.it>.
13579
13580 2006-12-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
13581
13582         * modules/savewd (Depends-on): Fix dependency on fcntl.
13583
13584 2006-12-18  Paul Eggert  <eggert@cs.ucla.edu>
13585
13586         * m4/stdint.m4 (gl_STDINT_H): Set STDINT_H to empty if stdint.h
13587         conforms to C99, rather than relying on the user's environment
13588         setting of STDINT_H.
13589
13590 2006-12-18  Paul Eggert  <eggert@cs.ucla.edu>
13591         and Eric Blake  <ebb9@byu.net>
13592
13593         * lib/dirname.h (DOUBLE_SLASH_IS_DISTINCT_ROOT): Default to 0, not 1.
13594         This is more consistent with the other defines here.
13595         * m4/double-slash-root.m4 (gl_DOUBLE_SLASH_ROOT):
13596         Port to z/OS.  Problem reported by Paul Gilmartin.
13597         Change local vars to use gl_ prefix rather than ac_.
13598         Don't define DOUBLE_SLASH_IS_DISTINCT_ROOT to 0, for consistency
13599         with other defines.
13600         * modules/double-slash-root: New module.
13601         * modules/dirname (Files): Remove m4/double-slash-root.m4.
13602         (Depends-on): Add double-slash-root.
13603         * MODULES.html.sh (File system functions): Mention new module.
13604
13605 2006-12-14  Paul Eggert  <eggert@cs.ucla.edu>
13606
13607         * lib/yesno.c [!ENABLE_NLS]: Don't include getline.h.
13608         (yesno) [!ENABLE_NLS]: Don't invoke getline or rpmatch.
13609         This is for the benefit of gzip, which doesn't do i18n.
13610
13611 2006-12-12  Jim Meyering  <jim@meyering.net>
13612
13613         * m4/acl.m4 (gl_ACL_GET_FILE): Fix logic error.
13614         Reported by Andreas Schwab <schwab@suse.de>.
13615
13616 2006-12-12  Bruno Haible  <bruno@clisp.org>
13617
13618         Merge these changes.
13619         2006-09-05  Bruno Haible  <bruno@clisp.org>
13620         * lib/iconvme.c (iconv_string): No need to save and restore errno when
13621         iconv_alloc succeeded.
13622         (iconv_alloc): Don't assume that malloc() or realloc(), when failing,
13623         sets errno to ENOMEM. (malloc on GNU/kFreeBSD doesn't.) No need to
13624         test for " && dest " at the end - dest is always != NULL there. Call
13625         iconv with 4xNULL arguments initially, to reset the state. Call iconv
13626         with 2xNULL arguments, also to flush the state storage. Handle the
13627         IRIX iconv behaviour. Realloc the final result, to throw away unused
13628         memory.
13629
13630 2006-12-11  Paul Eggert  <eggert@cs.ucla.edu>
13631
13632         * m4/openat.m4 (gl_FUNC_OPENAT): Don't compile mkdirat
13633         and fchmodat unconditionally, since glibc 2.4 has them.
13634         Problem reported by Arkadiusz Miskiewicz.
13635
13636 2006-12-10  Bruno Haible  <bruno@clisp.org>
13637
13638         * gnulib-tool (func_import): Show the include files only for those
13639         modules that are copied and specified.
13640         Reported by Karl Berry.
13641
13642 2006-12-08  Jim Meyering  <jim@meyering.net>
13643
13644         * build-aux/announce-gen ($VERSION): Don't use of $Revision...$.
13645         Instead, use Emacs' time-stamp write hook.  Note that the time is UTC.
13646
13647         * build-aux/announce-gen: Add two new options, both optional:
13648         --bootstrap-tools=TOOL_LIST
13649               a comma-separated list of tools, e.g.,
13650               autoconf,automake,bison,gnulib
13651         --gnulib-snapshot-date=DATE
13652               if gnulib is in the bootstrap tool list,
13653               then report this as the snapshot date.
13654               If not specified, use the current date/time.
13655               If you specify a date here, be sure it's UTC.
13656
13657 2006-12-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
13658
13659         * tests/test-argp-2.sh: Fix test to match actual output.
13660         (func_compare): Fix sed script to be portable.
13661
13662 2006-12-05  Paul Eggert  <eggert@cs.ucla.edu>
13663
13664         * lib/utimens.c (futimens) [HAVE_BUGGY_NFS_TIME_STAMPS]: Add a
13665         workaround for this case.  It is not autoconfigured now; offhand
13666         it's hard to see how to autoconfigure it.
13667
13668 2006-12-03  Paul Eggert  <eggert@cs.ucla.edu>
13669
13670         * lib/mkdir-p.c (make_dir_parents): Fix race condition when making
13671         a directory that is about to be chowned.  Such a directory's
13672         initial file permissions should permit the owner only and this
13673         should not be changed until after the chown, since the group and
13674         other bits would be incorrect if they granted permission before
13675         the chown.
13676
13677         Fix porting problem for iswctype reported by Georg Schwarz in:
13678         http://lists.gnu.org/archive/html/bug-coreutils/2006-12/msg00017.html
13679         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Require HAVE_ISWCTYPE, too.
13680         * lib/regex_internal.h (RE_ENABLE_I18N): Likewise.
13681         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for iswctype, too.
13682         * m4/regex.m4 (gl_PREREQ_REGEX): Likewise.
13683
13684 2006-12-03  Jim Meyering  <jim@meyering.net>
13685
13686         * lib/fts.c (fts_load): Don't set sp->fts_dev here, since
13687         p->fts_statp may not yet be defined.
13688         (fts_read): Instead, set it in the caller, once p->fts_statp is
13689         sure to be defined, and corresponds to a top-level directory.
13690         This bug made du -x fail.  Here's the coreutils test case:
13691         http://git.sv.gnu.org/gitweb/?p=coreutils.git;a=commit;h=ba45154d8e9f
13692         Reported by Mike Frysinger.
13693
13694 2006-12-01  Jim Meyering  <jim@meyering.net>
13695
13696         * modules/savewd (Depends-on): Add fcntl_h to avoid self-test
13697         build failure due to missing definition of HAVE_WORKING_O_NOFOLLOW.
13698         Reported by Simon Josefsson.
13699
13700 2006-11-30  Jim Meyering  <jim@meyering.net>
13701
13702         * m4/warning.m4: Use the all-permissive copyright notice
13703         recommended by RMS (rather than LGPL).
13704         * m4/vararrays.m4: Likewise.
13705         * m4/flexmember.m4: Likewise.
13706
13707 2006-11-29  Bruno Haible  <bruno@clisp.org>
13708
13709         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
13710         noinst_LIBRARIES. Augment noinst_LIBRARIES and noinst_LTLIBRARIES
13711         using +=.
13712         Reported by Simon Josefsson <simon@josefsson.org>.
13713
13714 2006-11-28  James Youngman <jay@gnu.org>
13715
13716         * README: Advise users that they might find the bug-gnulib@gnu.org
13717         and autotools-announce@gnu.org mailing lists useful.
13718
13719 2006-11-28  Bruno Haible  <bruno@clisp.org>
13720
13721         * m4/ptrdiff_max.m4: Remove file.
13722
13723 2006-11-21  Bruno Haible  <bruno@clisp.org>
13724
13725         * m4/eoverflow.m4 (gl_EOVERFLOW): Use AC_COMPUTE_INT instead of
13726         _AC_COMPUTE_INT.
13727         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
13728         * m4/ptrdiff_max.m4 (gl_PTRDIFF_MAX): Use AC_COMPUTE_INT instead of
13729         _AC_COMPUTE_INT.
13730         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
13731         * m4/size_max.m4 (gl_SIZE_MAX): Use AC_COMPUTE_INT instead of
13732         _AC_COMPUTE_INT.
13733         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
13734
13735 2006-11-28  Jim Meyering  <jim@meyering.net>
13736
13737         * lib/regcomp.c (parse_branch): Rename local, exp->expr, to avoid
13738         warning from "gcc -Wshadow" about shadowing the builtin.
13739
13740 2006-11-27  Bruno Haible  <bruno@clisp.org>
13741
13742         * m4/stdint.m4 (gl_STDINT_BITSIZEOF): Use AC_COMPUTE_INT instead of
13743         _AC_COMPUTE_INT.
13744         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
13745
13746 2006-11-27  Bruno Haible  <bruno@clisp.org>
13747             Paul Eggert  <eggert@cs.ucla.edu>
13748
13749         * lib/regex.h (__restrict_arr): Redo logic of #if, for clarity.
13750
13751 2006-11-26  Bruno Haible  <bruno@clisp.org>
13752
13753         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
13754         noinst_LTLIBRARIES.
13755
13756 2006-11-27  Paul Eggert  <eggert@cs.ucla.edu>
13757             Bruno Haible  <bruno@clisp.org>
13758
13759         * lib/gettext.h (_LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS): Define to 0
13760         if compiling with "gcc -ansi".
13761
13762 2006-11-26  Paul Eggert  <eggert@cs.ucla.edu>
13763
13764         Fix some incompatibilities with gcc -ansi -pedantic.
13765         * lib/regex.h (__restrict_arr): Don't use the [restrict] syntax
13766         if compiling pedantically with GCC, unless it's C99 or later.
13767         Don't trust sys/cdefs.h's definition of __restrict_arr, either, as
13768         it mishandles gcc -ansi -pedantic as well.
13769         * lib/regex_internal.h (re_token_t): Don't use enum bitfields
13770         if gcc -pedantic.
13771         * lib/regexec.c (check_node_accept_bytes): Don't use auto
13772         initializers for struct if -pedantic, unless it's C99 or later.
13773
13774 2006-11-25  Nix  <nix@esperi.org.uk>  (tiny change)
13775
13776         * m4/fcntl_h.m4 (gl_FCNTL_H): Test the atime, not the mtime.
13777         Don't close an fd more than once. Identical atimes indicate
13778         success, not failure.
13779
13780 2006-11-22  Robinson Mittmann <bob@hoplon.com>  (tiny change)
13781
13782         * lib/sincosl.c (kernel_sinl): Fix typo in threshold.
13783
13784 2006-11-23  Jim Meyering  <jim@meyering.net>
13785
13786         * build-aux/announce-gen: New file.  From coreutils.
13787
13788 2006-11-22  Jim Meyering  <jim@meyering.net>
13789
13790         Work around a compile-time error from the HP-UX 11.00 /bin/cc.
13791         * lib/fts.c (enum Fts_stat): Give this previously-anon enum a name.
13792         (fts_read): Use a temporary to narrow the overused st_size member
13793         before using it in a switch statement.  Reported by Matthew Woehlke.
13794
13795         * m4/clock_time.m4 (gl_CLOCK_TIME): Quote AC_SUBST argument.
13796         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Likewise.
13797
13798 2006-11-20  Bruno Haible  <bruno@clisp.org>
13799
13800         * gettext.m4 (AM_GNU_GETTEXT): Revert 2005-07-28 patch: Use
13801         changequote instead of pairs of brackets.
13802         Reported by Andreas Schwab <schwab@suse.de>.
13803
13804 2006-11-21  Jim Meyering  <jim@meyering.net>
13805
13806         * lib/fts.c (fts_safe_changedir): Move a declaration "up",
13807         so as to remain compatible with older compilers.
13808         Patch from Michael Deutschmann.
13809
13810 2006-11-20  Paul Eggert  <eggert@cs.ucla.edu>
13811
13812         * MODULES.html.sh (File system functions): Add openat.
13813
13814         * lib/openat.h (rpl_fstatat): New macro, if
13815         [HAVE_OPENAT && ! LSTAT_FOLLOWS_SLASHED_SYMLINK.
13816         (fstatat): Define to rpl_fstatat under the same conditions,
13817         unless COMPILING_FSTATAT.
13818         * m4/openat.m4 (gl_FUNC_OPENAT): Compile fstatat.c too, if fstatat
13819         seems to have the bug.
13820         * lib/fstatat.c: New file.
13821         * modules/openat (Files): Add it.
13822
13823 2006-11-20  Bruno Haible  <bruno@clisp.org>
13824
13825         * Makefile: New file.
13826
13827 2006-11-20  Jim Meyering  <jim@meyering.net>
13828
13829         The beginnings of syntax-related checks for gnulib.
13830         * lib/Makefile: New file.
13831         * lib/t-idcache: New script.  Ensure that the two halves of
13832         idcache.c stay in sync.
13833
13834         * lib/idcache.c: Adjust comments in user- and group- portions to
13835         be more accurate, and to be consistent with one another.
13836
13837 2006-11-20  Jim Meyering  <jim@meyering.net>
13838
13839         * lib/idcache.c: Restore most of the 2006-11-06 patch, so as to
13840         continue using the flexible array member (thus, this module performs
13841         half as many malloc calls), with the addition that...
13842         (getgroup, getuser): Consistently record a non-match via an empty
13843         "name" string, and map an empty string match to a NULL return value.
13844         * modules/idcache (Depends-on): Re-add flexmember.
13845
13846         * lib/idcache.c (getuser): Remove all uses of the register keyword.
13847         (getuidbyname, getgroup, getgidbyname): Likewise.
13848
13849         Use cleaner syntax: NULL rather than 0.
13850         * lib/idcache.c (getuidbyname, getgidbyname): Return NULL, not 0.
13851
13852 2006-11-20  Paul Eggert  <eggert@cs.ucla.edu>
13853
13854         * lib/idcache.c: Undo most recent patch, dated 2006-11-06.
13855         It mishandled the case where the group was missing.
13856         Problem reported by Greg Schafer.
13857         * modules/idcache: Likewise.
13858
13859 2006-11-18  Jim Meyering  <jim@meyering.net>
13860
13861         * check-module (%exempt_header): Add exception for some
13862         conditionally-included headers.
13863
13864         * modules/i-ring (Depends-on): Add verify.
13865         (License): Change to LGPL.
13866
13867 2006-11-16  Paul Eggert  <eggert@cs.ucla.edu>
13868
13869         * modules/getaddinfo (Depends-on): Remove inttostr; add snprintf.
13870         * lib/getaddrinfo.c: Include snprintf.h rather than intprops.h
13871         and inttostr.h.  Use snprintf rather than uinttostr, so that
13872         LGPLed code doesn't depend on GPLed.
13873
13874 2006-11-17  Paul Eggert  <eggert@cs.ucla.edu>
13875
13876         * modules/inline (License): Change from GPL to LGPL.
13877
13878 2006-11-17  Jim Meyering  <jim@meyering.net>
13879
13880         * modules/d-type (License): Switch to LGPL.
13881
13882 2006-11-15  Bruno Haible  <bruno@clisp.org>
13883
13884         * m4/alloca.m4 (gl_FUNC_ALLOCA): Fix the AC_CACHE_CHECK message.
13885
13886 2006-11-15  Eric Blake  <ebb9@byu.net>
13887
13888         * m4/allocsa.m4 (gl_ALLOCSA): Don't invoke macro already picked up by
13889         the module dependency.
13890
13891 2006-11-15  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
13892             Bruno Haible  <bruno@clisp.org>
13893
13894         * gnulib-tool (func_create_testdir): Add license consistency check.
13895
13896 2006-11-15  Eric Blake  <ebb9@byu.net>
13897
13898         * m4/alloca.m4 (gl_FUNC_ALLOCA): Use AC_CACHE_CHECK to avoid a
13899         random "(cached)" in configure output.
13900
13901 2006-11-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
13902
13903         * m4/inttypes.m4 (gl_INTTYPES_H): Use AC_CACHE_CHECK so that the
13904         test for conforming inttypes.h is both announced and cached.
13905
13906         * MODULES.html.sh (seen_modules, seen_files): New variables.
13907         (func_module): Rewrite to use a few less gnulib-tool and sed
13908         invocations.  Avoid a couple of quadratic algorithms for ...
13909         (missed_modules, missed_files): ... these, with ...
13910         (func_append, func_tmpdir): ... these new functions, from
13911         gnulib-tool.  Analogously, install traps for cleanup.
13912
13913         * tests/test-gc.c (main): Remove unused variables.
13914         * tests/test-read-file.c: Include stdlib.h, for 'free'.
13915
13916 2006-11-14  Paul Eggert  <eggert@cs.ucla.edu>
13917
13918         * modules/inttostr (License): Change to LGPL.
13919
13920 2006-11-14  Eric Blake  <ebb9@byu.net>
13921
13922         * modules/tempname (License): Change to LGPL.
13923
13924 2006-11-14  Eric Blake  <ebb9@byu.net>
13925
13926         * doc/functions.texi (Function Portability): *printf functions on
13927         Cygwin now understand all POSIX size specifiers.
13928
13929 2006-11-14  Bruno Haible  <bruno@clisp.org>
13930
13931         * modules/c-ctype (License): Change to LGPL.
13932
13933 2006-11-12  Bruno Haible  <bruno@clisp.org>
13934
13935         * m4/lib-link.m4 (AC_LIB_LINKFLAGS, AC_LIB_HAVE_LINKFLAGS,
13936         AC_LIB_LINKFLAGS_BODY): Also set a LIB${NAME}_PREFIX variable. Needed
13937         for GNOME libraries, for which the include files are installed in
13938         subdirectories of $prefix/include.
13939
13940 2006-11-12  Bruno Haible  <bruno@clisp.org>
13941
13942         * m4/lib-link.m4: Require at least autoconf-2.54.
13943         (AC_LIB_LINKFLAGS_BODY) [autoconf < 2.61]: Turn dots into the library
13944         name to underscores for the --with option.
13945
13946 2006-11-13  Bruno Haible  <bruno@clisp.org>
13947
13948         * gnulib-tool (func_create_testdir): Set gl_source_base correctly in
13949         the tests directory.
13950         Reported by Ralf Wildenhues.
13951
13952 2006-11-13  Bruno Haible  <bruno@clisp.org>
13953
13954         * gnulib-tool (func_emit_initmacro_start): Also override AC_LIBSOURCES.
13955         (func_emit_initmacro_end): Undo the override here.
13956         (func_emit_initmacro_done): Emit a definition for gl_LIBSOURCES.
13957         Works around the famous automake error in coreutils.
13958
13959 2006-11-13  Eric Blake  <ebb9@byu.net>
13960
13961         * lib/gl_anytree_oset.h (gl_tree_search_atleast): Return the
13962         element, not its node.
13963
13964 2006-11-12  Bruno Haible  <bruno@clisp.org>
13965
13966         * gnulib-tool (func_emit_lib_Makefile_am): Replace occurrences of
13967         '$(top_srcdir)/build-aux/', taking into account the real auxdir.
13968
13969 2006-11-12  Bruno Haible  <bruno@clisp.org>
13970
13971         * gnulib-tool: New option --local-symlink.
13972         (func_usage): Document it.
13973         (lsymbolic): New variable.
13974         (func_import, func_create_testdir): If --symlink was not specified,
13975         test whether --local-symlink was specified and the file comes from
13976         the local_gnulib_dir.
13977
13978 2006-11-12  Bruno Haible  <bruno@clisp.org>
13979
13980         * gnulib-tool (func_ln): New function.
13981         (func_ln_if_changed, func_create_testdir): Use it instead of "ln -s".
13982
13983 2006-11-12  Bruno Haible  <bruno@clisp.org>
13984
13985         Finish support for source files in subdirectories.
13986         * gnulib-tool (func_emit_lib_Makefile_am): If some of the source files
13987         are in subdirectories, set uses_subdirs and add 'subdir-objects' to
13988         AUTOMAKE_OPTIONS.
13989         (func_import, func_create_testdir): Invoke AM_PROG_CC_C_O in this case.
13990
13991 2006-11-12  Bruno Haible  <bruno@clisp.org>
13992
13993         * gnulib-tool (func_get_automake_snippet): Synthesize also an
13994         EXTRA_lib_SOURCES augmentation.
13995         (func_emit_lib_Makefile_am): Initialize EXTRA_lib..._SOURCES to empty.
13996
13997 2006-11-12  Jim Meyering  <jim@meyering.net>
13998
13999         Make fts (in FTS_CWDFD mode) more efficient by caching a few open
14000         file descriptors.  This also averts a failure on systems with
14001         native openat support when a traversed directory lacks "x" access.
14002         * lib/fts_.h: Include "i-ring.h"
14003         (struct FTS) [fts_fd_ring]: New member.
14004         * lib/fts.c (RESTORE_INITIAL_CWD): Also call fd_ring_clear.
14005         (FCHDIR): Add parentheses.
14006         (fd_ring_check, fd_ring_print) [!FTS_DEBUG]: Define away.
14007         (cwd_advance_fd): Add a 3rd parameter.  Adjust all callers.
14008         When descending, rather than simply closing the previous
14009         fts_cwd_fd value, push that file descriptor onto the ring.
14010         (same_fd, fd_ring_print, fd_ring_check) [FTS_DEBUG]: New functions.
14011         (fts_open): Initialize the new fd_ring member.
14012         (fts_close): Clear the ring.
14013         (fts_safe_changedir): When possible, use our new fd_ring to skip
14014         the diropen and fstat and dev/ino comparison that would normally
14015         accompany a virtual `chdir ("..")'.
14016
14017         * modules/fts (Depends-on): Add i-ring.
14018         * modules/i-ring: New module.
14019         * lib/i-ring.c, lib/i-ring.h, lib/i-ring-test.c: New files.
14020         * m4/i-ring.m4: New file.
14021
14022 2006-11-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
14023
14024         * gnulib-tool (func_create_testdir): Fix replacement of
14025         `build-aux' in configure.ac.  Run autotools in gltests
14026         subdirectory.
14027         (func_create_testdir, func_create_megatestdir, test): There is
14028         no need for '--force' in most autotool invocations in a new
14029         tree.  Actually fail the whole test if any of the tools, or the
14030         configure or make stages fail.
14031
14032         Sync from Automake.
14033         * build-aux/gnupload: Revert last change.  Add pointer to upload
14034         instructions of the GNU Maintenance Instructions.
14035         Suggestion by Karl Berry.
14036
14037 2006-11-10  Jim Meyering  <jim@meyering.net>
14038
14039         * lib/fts.c [FTS_DEBUG]: Don't try to print a pointer via %s.
14040
14041 2006-11-09  Paul Eggert  <eggert@cs.ucla.edu>
14042
14043         * lib/gettext.h (dgettext, dcgettext, ngettext) [! ENABLE_NLS]:
14044         (dngettext, dcngettext, bindtextdomain) [! ENABLE_NLS]:
14045         (bind_textdomain_codeset) [! ENABLE_NLS]:
14046         Evaluate all the arguments.  That way, callers get compatible behavior
14047         if the arguments have side effects.  Also, it avoids some GCC
14048         diagnostics in some cases; Joel E. Denny reported problems when Bison
14049         was configured with --enable-gcc-warnigs.
14050
14051 2006-11-10  Jim Meyering  <jim@meyering.net>
14052
14053         * m4/inline.m4 (gl_INLINE): Check with the compiler, not cpp, so that
14054         relevant options in CFLAGS (like -O, -fno-inline) are taken into
14055         account.
14056
14057 2006-11-10  Jim Meyering  <jim@meyering.net>
14058
14059         * modules/inline: New file/module.
14060         * modules/xalloc (Files): Remove m4/inline.m4.
14061         (Depends-on): Add inline, instead.
14062         * modules/oset: Likewise.
14063         * modules/list: Likewise.
14064
14065 2006-11-09  Paul Eggert  <eggert@cs.ucla.edu>
14066
14067         * lib/stdint_.h (uintmax_t): Fix typo: int64_t -> uint64_t.
14068         Problem reported by Matthew Woehlke.
14069
14070 2006-11-09  Bruno Haible  <bruno@clisp.org>
14071
14072         * lib/tempname.c (gen_tempname): Remove variant that invokes
14073         __gen_tempname.
14074         * m4/tempname.m4 (gl_FUNC_GEN_TEMPNAME): Don't test for
14075         __gen_tempname.
14076
14077 2006-11-08  Bruno Haible  <bruno@clisp.org>
14078
14079         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Set ac_cv_type_long_long_int
14080         to 'yes' instead of 'cross-compiling'.
14081
14082 2006-11-08  Paul Eggert  <eggert@cs.ucla.edu>
14083
14084         * lib/quotearg.h (quotearg_free): New decl.
14085         * lib/quotearg.c (quotearg_free): New function.
14086         (slot0, nslots, slotvec0, slotvec):
14087         Now file-scope so that quotearg_free can get at them.
14088
14089 2006-11-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
14090
14091         Sync from Automake.
14092         * build-aux/gnupload: Add missing 'gnu' to example URL.
14093         Report by Karl Berry.
14094
14095 2006-11-08  Bruno Haible  <bruno@clisp.org>
14096
14097         * m4/inline.m4 (gl_INLINE): Also test __NO_INLINE__.
14098         Suggested by Paul Eggert.
14099
14100 2006-11-08  Jim Meyering  <jim@meyering.net>
14101
14102         * lib/fts.c [!_LGPL_PACKAGE]: Don't include fcntl--.h twice.
14103         It's already included if !_LIBC.
14104         (fts_safe_changedir): Add a comment.
14105
14106 2006-11-07  Paul Eggert  <eggert@cs.ucla.edu>
14107
14108         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Detect bug in
14109         Tandem NonStop Kernel (OSS) cc -O circa 2004, reported by
14110         Matthew Woehlke.
14111
14112         * lib/xalloc.h (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): Move
14113         definitions up, to avoid colliding with change below.
14114         (static_inline) [HAVE_INLINE]: New macro.
14115         (xnmalloc, xnrealloc, x2nrealloc, xcharalloc):
14116         Provide extern decls when !HAVE_INLINE.  Do not define unless
14117         static_inline is defined, either by us or by xmalloc.c.  Use
14118         static_inline rather than static inline.
14119         (XCALLOC): Optimize sizeof(T) = 1 case.
14120         * lib/xmalloc.c (static_inline) [!HAVE_INLINE]: New macro.
14121
14122 2006-11-07  Bruno Haible  <bruno@clisp.org>
14123
14124         * lib/xalloc.h (XNMALLOC): Restore optimization of sizeof(T) = 1 case.
14125         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Require gl_INLINE instead of
14126         AC_C_INLINE.
14127         * modules/xalloc (Files): Add m4/inline.m4.
14128
14129 2006-11-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
14130
14131         * README: Fix typo.
14132         * doc/gnulib.texi (Miscellaneous Notes): Likewise, rename...
14133         (Miscellanous Notes): ...from this.
14134
14135 2006-11-07  Paul Eggert  <eggert@cs.ucla.edu>
14136
14137         * m4/flexmember.m4 (AC_C_FLEXIBLE_ARRAY_MEMBER):
14138         Mention that offsetof should be used instead of sizeof.
14139         From Bruno Haible.
14140
14141 2006-11-07  Bruno Haible  <bruno@clisp.org>
14142
14143         * lib/w32spawn.h (prepare_spawn): Use XNMALLOC instead of xmalloc.
14144
14145 2006-11-06  Paul Eggert  <eggert@cs.ucla.edu>
14146
14147         Simplify xmalloc expressions. Add overflow check in xmalloc arguments.
14148         * lib/gl_anyavltree_list2.h (create_subtree_with_contents):
14149         (gl_tree_create, gl_tree_add_first, gl_tree_add_last):
14150         (gl_tree_add_before, gl_tree_add_after):
14151         Use XMALLOC instead of xmalloc, and XCALLOC instead of xzalloc.
14152         * lib/gl_anyhash_list2.h (hash_resize): Likewise.
14153         * lib/gl_anylinked_list2.h (gl_linked_create_empty, gl_linked_create):
14154         (gl_linked_add_first, gl_linked_add_last, gl_linked_add_before):
14155         (gl_linked_add_after, gl_linked_add_at): Likewise.
14156         * lib/gl_anyrbtree_list2.h (create_subtree_with_contents):
14157         (gl_tree_create, gl_tree_add_first, gl_tree_add_last):
14158         (gl_tree_add_before, gl_tree_add_after): Likewise.
14159         * lib/gl_anytree_list2.h (gl_tree_create_empty): Likewise.
14160         * lib/gl_anytree_oset.h (gl_tree_create_empty): Likewise.
14161         * lib/gl_anytreehash_list1.h (add_to_bucket): Likewise.
14162
14163 2006-11-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
14164
14165         * lib/gl_oset.h: Use C comment style, not C++ comment style.
14166
14167 2006-11-06  Bruno Haible  <bruno@clisp.org>
14168
14169         * m4/inline.m4: New file.
14170         * m4/gl_list.m4 (gl_LIST): Require gl_INLINE.
14171         * modules/list (Files): Add m4/inline.m4.
14172         * modules/oset (Files): Likewise.
14173
14174 2006-11-06  Paul Eggert  <eggert@cs.ucla.edu>
14175
14176         * lib/idcache.c: Include <stddef.h>, for offsetof.
14177         (struct userid.name): Change from char * to a flexible array member.
14178         All uses changed.
14179         * modules/idcache (Depends-on): Add flexmember.
14180
14181         * MODULES.html.sh (Core language properties): New module flexmember.
14182         * modules/flexmember, m4/flexmember.m4: New files.
14183
14184         * lib/xalloc.h (xnmalloc, xnrealloc, x2nrealloc): Now static
14185         inline functions that are identical with the old xnmalloc_inline,
14186         xnrealloc_inline, x2nrealloc_inline of lib/xmalloc.c.  This is so
14187         that we can avoid some unnecessary integer multiplications and
14188         divisions in the common case where the element size is known at
14189         compile time.
14190         (XNMALLOC) [HAVE_INLINE]: Remove special case, which is no longer
14191         needed.
14192         (xnboundedmalloc): Remove.
14193         (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): Use lower-case letters for
14194         arguments, for consistency with rest of this header.
14195         (xcharalloc): Rewrite using XNMALLOC.
14196         * lib/xmalloc.c (xnmalloc_inline, xnmalloc, xnrealloc_inline):
14197         (xnrealloc, x2nrealloc_inline, x2nrealloc): Remove.  The *_inline
14198         versions have been moved to lib/xalloc.h and renamed to be the
14199         non-*_inline versions.
14200         (xmalloc, xrealloc): Implement without reference to the xnmalloc
14201         and xnrealloc functions, since those functions are now inline and
14202         now call us.
14203         (x2realloc): Invoke x2realloc, not x2realloc_inline, to accommodate
14204         renaming described above.
14205         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Remove AC_C_INLINE since
14206         xmalloc.c no longer uses inline directly.  gl_PREREQ_XALLOC now
14207         captures the dependency in AC_C_INLINE.
14208
14209         New module canonicalize-lgpl, proposed by Charles Wilson in
14210         <http://lists.gnu.org/archive/html/bug-gnulib/2006-11/msg00020.html>
14211         with a few small changes afterwards.
14212         * MODULES.html.sh (File system functions): New module
14213         canonicalize-lgpl.
14214         * lib/canonicalize.h: Add comments for canonicalize_filename_mode
14215         and canonicalize_file_name.
14216         * lib/canonicalize-lgpl.c, m4/canonicalize-lgpl.m4:
14217         * modules/canonicalize-lgpl: New files.
14218
14219 2006-11-05  Bruno Haible  <bruno@clisp.org>
14220
14221         * gnulib-tool (func_import, func_create_testdir): Create directories
14222         also for files in subdirectories of lib/.
14223
14224 2006-11-05  Bruno Haible  <bruno@clisp.org>
14225
14226         * lib/gl_array_list.c (gl_array_iterator_next): Make pointer decrement
14227         ANSI C compliant.
14228
14229 2006-11-03  Bruno Haible  <bruno@clisp.org>
14230
14231         Simplify xmalloc expressions. Add overflow check in xmalloc arguments.
14232         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Require AC_C_INLINE.
14233         * lib/xalloc.h (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): New macros.
14234         (xnboundedmalloc): New inline function.
14235         * lib/classpath.c (new_classpath): Use XNMALLOC instead of xmalloc.
14236         * lib/clean-temp.c (create_temp_dir): Use XNMALLOC, XMALLOC instead of
14237         xmalloc.
14238         * lib/concatpath.c (concatenated_pathname): Use XNMALLOC instead of
14239         xmalloc.
14240         * lib/fatal-signal.c (at_fatal_signal): Use XNMALLOC instead of xmalloc.
14241         * lib/findprog.c (find_in_path): Use XNMALLOC instead of xmalloc.
14242         * lib/gl_array_list.c (gl_array_create_empty): Use XMALLOC instead of
14243         xmalloc.
14244         (gl_array_create): Use XNMALLOC, XMALLOC instead of xmalloc.
14245         * lib/gl_array_oset.c (gl_array_create_empty): Use XNMALLOC instead of
14246         xmalloc.
14247         * lib/gl_avltree_oset.c (gl_tree_add_first, gl_tree_add_before,
14248         gl_tree_add_after): Use XMALLOC instead of xmalloc.
14249         * lib/gl_carray_list.c (gl_carray_create_empty): Use XMALLOC instead of
14250         xmalloc.
14251         (gl_carray_create): Use XNMALLOC, XMALLOC instead of xmalloc.
14252         * lib/gl_rbtree_oset.c (gl_tree_add_first, gl_tree_add_before,
14253         gl_tree_add_after): Use XMALLOC instead of xmalloc.
14254         * lib/gl_sublist.c (gl_sublist_create): Use XMALLOC instead of xmalloc.
14255         * lib/pagealign_alloc.c (new_memnode): Use XMALLOC instead of xmalloc.
14256         * lib/sh-quote.c (shell_quote_argv): Use XNMALLOC instead of xmalloc.
14257         * lib/xvasprintf.c (xstrcat): Use XNMALLOC instead of xmalloc.
14258
14259 2006-11-03  Bruno Haible  <bruno@clisp.org>
14260
14261         * lib/c-ctype.h [C++]: Define functions without name mangling.
14262         * lib/fwriteerror.h [C++]: Likewise.
14263         * lib/gcd.h [C++]: Likewise.
14264         * lib/linebreak.h [C++]: Likewise.
14265
14266 2006-11-03  Paul Eggert  <eggert@cs.ucla.edu>
14267
14268         * lib/canonicalize.h: (canonicalize_mode_t, CAN_EXISTING):
14269         (CAN_ALL_BUT_LAST, CAN_MISSING, canonicalize_filename_mode):
14270         Define only if PROVIDE_CANONICALIZE_FILENAME_MODE is defined.
14271         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME):
14272         Check for functions and headers just once.
14273         Check for declaration of canonicalize_file_name.
14274         Define PROVIDE_CANONICALIZE_FILENAME_MODE.
14275
14276 2006-11-02  Charles Wilson  <cygwin@cwilson.fastmail.fm>
14277
14278         * gnulib-tool (func_import): Fix typo in actioncmd.
14279
14280 2006-11-02  Bruno Haible  <bruno@clisp.org>
14281
14282         * gnulib-tool (func_get_automake_snippet): Interpret a backslash-
14283         newline sequence in the Makefile.am snippet as a space, like "make"
14284         does.
14285         Reported by Roger Persson <perrog@gmail.com>.
14286
14287 2006-11-01  Bruno Haible  <bruno@clisp.org>
14288
14289         * m4/strcase.m4 (gl_FUNC_STRNCASECMP): Check whether strncasecmp is
14290         already declared in <string.h>.
14291         * lib/strcase.h (strncasecmp): Don't declare it if yes.
14292
14293 2006-11-01  Bruno Haible  <bruno@clisp.org>
14294
14295         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Don't define strcasecmp here.
14296         * lib/strcase.h: Include <string.h>.
14297         (strcasecmp): Define to rpl_strcasecmp here.
14298
14299 2006-11-01  Bruno Haible  <bruno@clisp.org>
14300
14301         * lib/printf-parse.c (PRINTF_PARSE): Cast malloc/realloc results.
14302
14303 2006-11-01  Eric Blake  <ebb9@byu.net>
14304
14305         * lib/mkstemp-safer.c (mkstemp_safer): Allow C++ compilation.
14306
14307         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Allow C++ configuration.
14308
14309 2006-10-29  Bruno Haible  <bruno@clisp.org>
14310
14311         Make it compile in C++ mode.
14312         * lib/full-write.c (full_rw): Add a cast.
14313
14314 2006-11-01  Bruno Haible  <bruno@clisp.org>
14315
14316         * gnulib-tool (func_get_automake_snippet): Change sed_combine_lines to
14317         be POSIX compliant.
14318         Reported by Roger Persson <perrog@gmail.com>.
14319
14320 2006-11-01  Eric Blake  <ebb9@byu.net>
14321
14322         * lib/getopt_.h: Fix comments.
14323
14324 2006-10-31  Eric Blake  <ebb9@byu.net>
14325
14326         * modules/tmpdir (Depends-on): Add sys_stat.
14327         * modules/mkdtemp (Depends-on): Add tempname, drop unistd.
14328         * lib/mkdtemp.c (gen_tempname): Remove; tempname covers this.
14329         * lib/tmpdir.c (S_ISDIR): Simplify, thanks to sys_stat.
14330         * m4/mkdtemp.m4 (gl_PREREQ_MKDTEMP): Simplify, thanks to
14331         tempname.
14332
14333 2006-10-31  Paul Eggert  <eggert@cs.ucla.edu>
14334
14335         Avoid some C++ diagnostics reported by Bruno Haible.
14336         * lib/quotearg.c (clone_quoting_options): Use xmemdup rather than
14337         xmalloc.
14338         (quotearg_alloc): Use xcharalloc rather than xmalloc.
14339         (struct slotvec): Move to top level.
14340         (quotearg_n_options): Rewrite to avoid xmalloc.
14341         * lib/xalloc.h (xcharalloc): New function.
14342         * (xrealloc, xnrealloc, x2realloc, x2nrealloc, xmemdup):
14343         [defined __cplusplus]: Add function template that provides result
14344         type propagation.  This part of the change is from Bruno Haible.
14345
14346 2006-10-29  Bruno Haible  <bruno@clisp.org>
14347
14348         Make it compile in C++ mode.
14349         * lib/striconv.c (mem_cd_iconv): Cast malloc/realloc result.
14350         * lib/strnlen1.c (strnlen1): Cast memchr result.
14351         * lib/mbchar.h (mb_copy): Rename arguments to 'new_mbc', 'old_mbc'.
14352         * lib/clean-temp.c (string_equals, string_hash): Add casts.
14353         (create_temp_dir): Rename local variable 'template'.
14354         (compile_csharp_using_sscli): Add cast.
14355         * lib/fatal-signal.c (at_fatal_signal): Cast xmalloc result.
14356         * lib/findprog.c (find_in_path): Likewise.
14357         * lib/linebreak.c (mbs_width_linebreaks): Cast malloc result.
14358         * lib/wait-process.c (register_slave_subprocess): Likewise.
14359
14360 2006-10-22  Bruno Haible  <bruno@clisp.org>
14361
14362         * modules/tsearch: New file.
14363         * lib/tsearch.h: New file.
14364         * lib/tsearch.c: New file, from glibc-2.5 with small modifications.
14365         * m4/tsearch.m4: New file.
14366         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add tsearch.
14367
14368 2006-10-29  Eric Blake  <ebb9@byu.net>
14369
14370         * lib/arcfour.c: Assume config.h.
14371         * lib/arctwo.c: Likewise.
14372         * lib/base64.c: Likewise.
14373         * lib/check-version.c: Likewise.
14374         * lib/crc.c: Likewise.
14375         * lib/des.c: Likewise.
14376         * lib/gc-gnulib.c: Likewise.
14377         * lib/gc-libgcrypt.c: Likewise.
14378         * lib/gc-pbkdf2-sha1.c: Likewise.
14379         * lib/getaddrinfo.c: Likewise.
14380         * lib/getdelim.c: Likewise.
14381         * lib/getline.c: Likewise.
14382         * lib/hmac-md5.c: Likewise.
14383         * lib/hmac-sha1.c: Likewise.
14384         * lib/iconvme.c: Likewise.
14385         * lib/md2.c: Likewise.
14386         * lib/md4.c: Likewise.
14387         * lib/memxor.c: Likewise.
14388         * lib/read-file.c: Likewise.
14389         * lib/readline.c: Likewise.
14390         * lib/rijndael-alg-fst.c: Likewise.
14391         * lib/rijndael-api-fst.c: Likewise.
14392         * lib/xgetdomainname.c: Likewise.
14393
14394 2006-10-28  Eric Blake  <ebb9@byu.net>
14395
14396         * lib/xstrndup.c: Assume config.h.
14397
14398 2006-10-27  Paul Eggert  <eggert@cs.ucla.edu>
14399
14400         Move stat.h-substitute stuff from lib/stat-macros.h to lib/stat_.h.
14401         stat-macros.h is now for our own macros, whereas stat_h is for
14402         macros in the <sys/stat.h> name space.
14403         * lib/stat-macros.h: Remove copyright notice, as this file is now tiny.
14404         (STAT_MACROS_H): Remove.
14405         (S_IFMT, S_ISBLK, S_ISCHR, S_ISDIR, S_ISFIFO, S_ISLNK, S_ISNAM):
14406         (S_ISMPB, S_ISMPC, S_ISNWK, S_ISREG, S_ISSOCK, S_ISDOOR, S_ISPORT):
14407         (S_TYPEISMQ, S_TYPEISTMO, S_TYPEISSEM, S_TYPEISSHM, S_ISCTG, S_ISOFD):
14408         (S_ISOFL, S_ISWHT, S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IRGRP):
14409         (S_IROTH, S_IWUSR, S_IWGRP, S_IWOTH, S_IXUSR, S_IXGRP, S_IXOTH):
14410         (S_IRWXU, S_IRWXG, S_IRWXO, S_IXUGO, S_IRWXUGO):
14411         Move these macros to ...
14412         * lib/stat_.h: here.  Don't include stat-macros.h.
14413         * lib/canonicalize.c: Don't include stat-macros.h.
14414         * lib/chown.c: Likewise.
14415         * lib/euidaccess.c: Likewise.
14416         * lib/file-type.c: Likewise.
14417         * lib/filemode.c: Likewise.
14418         * lib/glob.c: Likewise.
14419         * lib/isapipe.c: Likewise.
14420         * lib/lchown.c: Likewise.
14421         * lib/lstat.c: Likewise.
14422         * lib/mkdir-p.c: Likewise.
14423         * lib/rmdir.c: Likewise.
14424         * m4/lchown.m4 (gl_FUNC_LCHOWN): Don't require gl_STAT_MACROS.
14425         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Don't check for io.h
14426         unless mkdir isn't declared, to speed up 'configure'.
14427         Always create sys/stat.h, since it's unlikely any real sys/stat.h
14428         would define all the S_* symbols.
14429         * modules/canonicalize (Depends-on):
14430         Depend on sys_stat, not stat-macros.
14431         * modules/chown: Likewise.
14432         * modules/euidaccess: Likewise.
14433         * modules/filemode: Likewise.
14434         * modules/file-type: Likewise.
14435         * modules/glob: Likewise.
14436         * modules/isapipe: Likewise.
14437         * modules/lchown: Likewise.
14438         * modules/lstat: Likewise.
14439         * modules/mkancesdirs: Likewise.
14440         * modules/rmdir: Likewise.
14441         * modules/mkdir-p (Depends-on): Also depend on sys_stat.
14442         * modules/modechange: Likewise.
14443         * modules/stat-macros (Files): Remove m4/stat-macros.m4.
14444         (configure.ac): Remove gl_STAT_MACROS.
14445         * modules/sys_stat (Depends-on): Remove stat-macros.
14446
14447 2006-10-27  Bruno Haible  <bruno@clisp.org>
14448
14449         * m4/signed.m4: Remove file.
14450         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_ARGS_: Remove bh_C_SIGNED
14451         invocation.
14452         * modules/vasnprintf (Files): Remove m4/signed.m4.
14453
14454 2006-10-27  Bruno Haible  <bruno@clisp.org>
14455
14456         Update to GNU gettext 0.16.
14457         * modules/gettext (Files): Add m4/intl.m4, m4/intldir.m4. Remove
14458         m4/inttypes-h.m4, m4/signed.m4.
14459         * m4/gettext.m4: Update to GNU gettext 0.16.
14460         * m4/intl.m4: New file, from GNU gettext.
14461         * m4/intldir.m4: New file, from GNU gettext.
14462         * config/srclist.txt: Update
14463
14464 2006-10-27  Eric Blake  <ebb9@byu.net>
14465
14466         * MODULES.html.sh: Document tempname.
14467         * modules/mkstemp (Depends-on): Add tempname, and drop transitive
14468         dependencies.
14469         (Files): Move lib/tempname.c...
14470         * modules/tempname: ...to this new module.
14471         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Remove tempname checks.
14472         (gl_PREREQ_TEMPNAME): Move...
14473         * m4/tempname.m4: ...to this new file.
14474         * lib/mkstemp.c (includes) [!_LIBC]: Use tempname.h.
14475         * modules/sys_stat (Depends-on): Add stat-macros.
14476         * lib/stat_.h (includes): Pick up stat macros.
14477         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Replace <sys/stat.h>
14478         if stat macros are broken.
14479         * lib/tempname.c (includes): No need to include "stat-macros.h".
14480         (__gen_tempname) [!_LIBC]: Expose as gen_tempname.
14481         (direxists, __path_search) [!_LIBC]: Don't compile these in
14482         gnulib; the tmpdir module covers that.
14483         * lib/tempname.h: New file.
14484
14485 2006-10-26  Paul Eggert  <eggert@cs.ucla.edu>
14486
14487         * COPYING: Explain how gnulib-tool converts licence headers.
14488         Almost all wording by Eric Blake.
14489
14490 2006-10-25  Paul Eggert  <eggert@cs.ucla.edu>
14491
14492         * lib/mbchar.h (is_basic_table): Make read-only.
14493         * lib/mbchar.c (is_basic_table): Likewise.
14494         Reported by John Darrington.
14495
14496 2006-10-25  Bruno Haible  <bruno@clisp.org>
14497
14498         * lib/progname.h (set_program_name): Undefine before defining.
14499
14500 2006-10-25  Bruno Haible  <bruno@clisp.org>
14501
14502         * lib/gettext.h (_LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS): Define to
14503         false for non-gcc C++ compilers.
14504         Reported by Nelson H. F. Beebe <beebe@math.utah.edu>.
14505
14506 2006-10-24  Bruno Haible  <bruno@clisp.org>
14507
14508         * lib/striconv.c (mem_cd_iconv, str_cd_iconv): Treat all non-GNU
14509         iconv implementations like Irix iconv.
14510
14511 2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
14512
14513         * modules/vararrays: New file.
14514         * m4/vararrays.m4: New file, taken from diffutils.
14515         * MODULES.html.sh: New module vararrays.
14516
14517 2006-10-24  Karl Berry  <karl@gnu.org>
14518
14519         * doc/gnulib-intro.texi: --- instead of --; non-naive naive.
14520         Don't call GNU Unix.
14521
14522 2006-10-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
14523
14524         * users.txt: Add Libtool.
14525
14526         Sync from Libtool:
14527
14528         2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
14529
14530         * lib/argz.c: Remove check for HAVE_CONFIG_H, to conform
14531         to gnulib's policy of including config.h unconditionally.
14532
14533 2006-10-24  Bruno Haible  <bruno@clisp.org>
14534
14535         * modules/wcwidth (Files): Add m4/wint_t.m4.
14536         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Require gt_TYPE_WINT_T.
14537         * lib/wcwidth.h (iswprint): Use 'int' if 'wint_t' is not defined.
14538
14539 2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
14540
14541         * lib/getdate.y (yyerror): Make the arguments pointer-to-const,
14542         to pacify GCC with some -W flags enabled.  Problem reported by
14543         Bruno Haible.
14544
14545 2006-10-24  Jim Meyering  <jim@meyering.net>
14546
14547         * MODULES.html.sh: Remove uinttostr.  It's not a module.
14548         Reported by Karl Berry.
14549
14550 2006-10-23  Bruno Haible  <bruno@clisp.org>
14551
14552         * lib/fts.c (fts_build): Move variable declaration, for C89 compliance.
14553
14554 2006-10-24  Bruno Haible  <bruno@clisp.org>
14555
14556         * lib/gl_list.h: Use C comment style, not C++ comment style.
14557
14558 2006-10-23  Eric Blake  <ebb9@byu.net>
14559
14560         * lib/getaddrinfo.c (includes): Add missing include.
14561
14562 2006-10-23  Bruno Haible  <bruno@clisp.org>
14563             Paul Eggert  <eggert@cs.ucla.edu>
14564
14565         Ability to rename obstack_free.
14566         * lib/obstack.h (__obstack_free): New macro. Declare instead of
14567         obstack_free.
14568         (obstack_free): Invoke the __obstack_free macro.
14569         * lib/obstack.c (obstack_free): Use __obstack_free macro.
14570
14571 2006-10-23  Bruno Haible  <bruno@clisp.org>
14572             Paul Eggert  <eggert@cs.ucla.edu>
14573
14574         * lib/argp.h (argp_parse, __argp_parse): Comment out the identifiers
14575         __argc, __argv from the declaration. (They are defined as macros on
14576         mingw.)
14577
14578 2006-10-22  Bruno Haible  <bruno@clisp.org>
14579
14580         * doc/gnulib-intro.texi: New file.
14581         * doc/gnulib.texi: Include it.
14582
14583 2006-10-21  Bruno Haible  <bruno@clisp.org>
14584
14585         * doc/gnulib.texi: Split the chapter "Gnulib" into 3 chapters
14586         "Introduction", "Miscellanous Notes", "Particular Modules".
14587
14588 2006-10-21  Bruno Haible  <bruno@clisp.org>
14589
14590         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
14591         Change mostlyclean-local rule to avoid sh syntax error from bash
14592         versions 2.00..2.05 when $(MOSTLYCLEANDIRS) is empty.
14593
14594 2006-10-23  Jim Meyering  <jim@meyering.net>
14595
14596         * lib/getaddrinfo.c (getnameinfo): Use new lightweight uinttostr,
14597         in place of snprintf.
14598
14599         * modules/inttostr (Files): Add lib/uinttostr.c.
14600         * lib/uinttostr.c (inttostr): New file/function.
14601         * lib/inttostr.h (uinttostr): Declare.
14602         * m4/inttostr.m4: Add AC_LIBOBJ([uinttostr]).
14603         * MODULES.html.sh (Numeric conversion functions <stdlib.h>):
14604         Add uinttostr.
14605         * modules/getaddrinfo (Depends-on): Remove snprintf.  Add inttostr.
14606
14607 2006-10-21  Paul Eggert  <eggert@cs.ucla.edu>
14608
14609         * lib/canonicalize.c (ELOOP): Define if not already defined.
14610         Problem reported by Bruno Haible in
14611         <http://lists.gnu.org/archive/html/bug-gnulib/2006-10/msg00282.html>.
14612
14613 2006-10-21  Paul Eggert  <eggert@cs.ucla.edu>
14614
14615         * lib/stdint_.h [defined _AIX]: Don't include <sys/types.h>.
14616         Problem reported by Perry Smith and Ville Laurikari.
14617
14618         * lib/getndelim2.c (SSIZE_MAX): Use same defn that getdelim.c
14619         uses.
14620
14621 2006-10-19  Bruno Haible  <bruno@clisp.org>
14622
14623         * lib/getndelim2.c (SSIZE_MAX): Provide fallback definition. Needed
14624         for mingw.
14625
14626 2006-10-19  Bruno Haible  <bruno@clisp.org>
14627
14628         * lib/openat-priv.h (EOPNOTSUPP): Provide fallback definition.
14629         Needed for mingw.
14630
14631 2006-10-19  Bruno Haible  <bruno@clisp.org>
14632
14633         * m4/size_max.m4 (gl_SIZE_MAX): Cache the result.
14634
14635 2006-10-19  Bruno Haible  <bruno@clisp.org>
14636
14637         * m4/allocsa.m4 (gl_ALLOCSA): Invoke gl_FUNC_ALLOCA, don't AC_REQUIRE
14638         it.
14639
14640 2006-10-19  Bruno Haible  <bruno@clisp.org>
14641
14642         * m4/alloca.m4 (gl_FUNC_ALLOCA): Cache the result of the AC_EGREP_CPP
14643         invocation.
14644
14645 2006-10-19  Bruno Haible  <bruno@clisp.org>
14646
14647         * gnulib-tool (func_create_testdir): Don't include ftruncate and
14648         mountlist by default.
14649
14650 2006-10-16  Bruno Haible  <bruno@clisp.org>
14651
14652         * lib/c-strstr.c: Include c-strstr.h.
14653
14654 2006-10-18  Charles Wilson  <cygwin@cwilson.fastmail.fm>
14655
14656         * gnulib-tool: Don't clobber $sourcebase when $local_gnulib_dir ends
14657         in a slash.
14658
14659 2006-10-18  Bruno Haible  <bruno@clisp.org>
14660
14661         * lib/lock.h [C++]: Wrap definitions in extern "C".
14662
14663 2006-10-18  Bruno Haible  <bruno@clisp.org>
14664
14665         * gnulib-tool (func_emit_initmacro_end): Remove duplicates from the
14666         gl_LIBOBJS list.
14667
14668 2006-10-18  Bruno Haible  <bruno@clisp.org>
14669
14670         * lib/findprog.c (find_in_path): Avoid "gcc -Wwrite-strings" warning.
14671
14672 2006-10-19  Paul Eggert  <eggert@cs.ucla.edu>
14673
14674         * lib/xstrtol.h: Include gettext.h.
14675         (_STRTOL_ERROR): Wrap English-language formats inside gettext.
14676         Problem reported by Eric Blake.
14677         * modules/xstrtol (Depends-on): Add gettext-h.
14678
14679 2006-10-19  Paul Eggert  <eggert@cs.ucla.edu>  (tiny change)
14680
14681         * lib/strftime.c (advance): New macro.
14682         (add): Use it to avoid adding 0 to a FILE *.  FILE can be an
14683         incomplete type, so you can't add 0 to it.  Problem and patch
14684         reported by Eelco Dolstra for dietlibc.
14685
14686 2006-10-18  Jim Meyering  <jim@meyering.net>
14687
14688         * lib/readutmp.c (desirable_utmp_entry): Use "bool" as the
14689         type for a local, and rename it: s/up/user_proc/.
14690
14691 2006-10-18  Sergey Poznyakoff  <gray@gnu.org.ua>
14692
14693         * lib/readutmp.c (desirable_utmp_entry): Implement new flag:
14694         READ_UTMP_USER_PROCESS.
14695         * lib/readutmp.h (READ_UTMP_USER_PROCESS): New flag
14696
14697 2006-10-17  Paul Eggert  <eggert@cs.ucla.edu>
14698
14699         * lib/localcharset.c: Do not check HAVE_SETLOCALE.
14700         * m4/localcharset.m4 (gl_LOCALCHARSET): Don't check for setlocale.
14701
14702 2006-10-17  Eric Blake  <ebb9@byu.net>
14703
14704         * lib/sigprocmask.c (sigprocmask): Fix typo.
14705
14706         * m4/signalblocking.m4 (gl_PREREQ_SIGPROCMASK): Fix typo.
14707
14708         * modules/clean-temp (Makefile.am): Don't add to make output...
14709         (configure.ac): ...instead define SIGNAL_SAFE_LIST inside
14710         config.h.
14711
14712 2006-10-17  Bruno Haible  <bruno@clisp.org>
14713
14714         * lib/gettext.h (gettext, ngettext, pgettext, npgettext): Define
14715         differently if DEFAULT_TEXT_DOMAIN is set.
14716
14717 2006-10-16  Bruno Haible  <bruno@clisp.org>
14718
14719         * lib/clean-temp.c: Include fwriteerror.h.
14720
14721 2006-10-16  Bruno Haible  <bruno@clisp.org>
14722
14723         * getndelim2.m4 (gl_GETNDELIM2): Remove 2003-10-23 hack.
14724
14725 2006-10-16  Bruno Haible  <bruno@clisp.org>
14726
14727         * m4/signalblocking.m4 (gl_PREREQ_SIGPROCMASK): Also test for sigset_t.
14728         * lib/sigprocmask.h: Include <sys/types.h>.
14729         (sigset_t): Use the system's definition if present.
14730
14731 2006-10-17  Eric Blake  <ebb9@byu.net>
14732
14733         * lib/xvasprintf.c (includes): Assume config.h.
14734         * lib/xasprintf.c (includes): Likewise.
14735
14736 2006-10-16  Paul Eggert  <eggert@cs.ucla.edu>
14737
14738         * lib/fsusage.c (PROPAGATE_ALL_ONES): Don't assume uintmax_t is
14739         at least as wide as intmax_t.
14740
14741 2006-10-16  Alexandre Duret-Lutz  <adl@gnu.org>
14742
14743         (Imported from Automake.)
14744         * build-aux/gnupload: Update to version 1.1 of directive file.
14745
14746 2006-10-16  Eric Blake  <ebb9@byu.net>
14747
14748         * modules/configmake (Makefile.am): Add pkglibexecdir support, to
14749         match Automake 1.10a.
14750
14751 2006-10-14  Bruno Haible  <bruno@clisp.org>
14752
14753         * modules/sigprocmask: New file.
14754         * lib/sigprocmask.h: New file.
14755         * lib/sigprocmask.c: New file.
14756         * m4/signalblocking.m4 (gl_SIGNALBLOCKING): Renamed from
14757         gt_SIGNALBLOCKING. When not defining HAVE_POSIX_SIGNALBLOCKING,
14758         request sigprocmask.o.
14759         (gl_PREREQ_SIGPROCMASK): New macro.
14760         * modules/fatal-signal (Files): Remove m4/signalblocking.m4.
14761         (Depends-on): Add sigprocmask.
14762         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Don't require
14763         gt_SIGNALBLOCKING. Test for 'raise' only once.
14764         * lib/fatal-signal.c: Include sigprocmask.h.
14765         (fatal_signal_set, init_fatal_signal_set, block_fatal_signals,
14766         unblock_fatal_signals): Define always.
14767         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
14768         sigprocmask.
14769
14770 2006-10-14  Paul Eggert  <eggert@cs.ucla.edu>
14771
14772         Sync from Automake.
14773         * build-aux/install-sh (posix_mkdir): Reject FreeBSD 6.1 mkdir -p -m,
14774         which incorrectly sets the mode of an existing destination
14775         directory.  In some cases the unpatched install-sh could do the
14776         equivalent of "chmod 777 /" or "chmod 0 /" on a buggy FreeBSD
14777         system.  We hope this is rare in practice, but it's clearly worth
14778         fixing.  Problem reported by Alex Unleashed in
14779         <http://lists.gnu.org/archive/html/bug-autoconf/2006-10/msg00012.html>.
14780         Also, don't bother to check for -m bugs unless we're using -m;
14781         suggested by Stepan Kasal.
14782
14783 2006-10-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
14784
14785         Sync from Automake.
14786         * build-aux/depcomp (gcc3): Put dependency extraction flags before the
14787         `-c' flag, so they appear at the same position as in %FASTDEP%
14788         mode in depend2.am.  Fixes build failure for FreeBSD's c89,
14789         which ignores unknown options only after the first non-option.
14790         Bug report against M4 by Nelson H. F. Beebe.
14791
14792 2006-10-13  Jim Meyering  <jim@meyering.net>
14793
14794         Fix a bug in yesterday's change.
14795         * lib/fts.c (fts_open): When using FTS_XDEV|FTS_NOSTAT,
14796         p->fts_statp->st_dev would be used uninitialized.
14797         Ensures that we always call fts_stat on the very first entry.
14798         Miklos Szeredi reported that find -xdev stopped working.
14799
14800 2006-10-12  Bruno Haible  <bruno@clisp.org>
14801
14802         * gnulib-tool (func_get_automake_snippet): Append an automatically
14803         computed EXTRA_DIST augmentation.
14804         * modules/acl (Makefile.am): Remove EXTRA_DIST augmentation.
14805         * modules/alloca-opt (Makefile.am): Likewise.
14806         * modules/allocsa (Makefile.am): Likewise.
14807         * modules/arcfour (Makefile.am): Likewise.
14808         * modules/arctwo (Makefile.am): Likewise.
14809         * modules/argmatch (Makefile.am): Likewise.
14810         * modules/argz (Makefile.am): Likewise.
14811         * modules/atexit (Makefile.am): Likewise.
14812         * modules/backupfile (Makefile.am): Likewise.
14813         * modules/byteswap (Makefile.am): Likewise.
14814         * modules/c-strtod (Makefile.am): Likewise.
14815         * modules/c-strtold (Makefile.am): Likewise.
14816         * modules/calloc (Makefile.am): Likewise.
14817         * modules/canon-host (Makefile.am): Likewise.
14818         * modules/canonicalize (Makefile.am): Likewise.
14819         * modules/chdir-long (Makefile.am): Likewise.
14820         * modules/chdir-safer (Makefile.am): Likewise.
14821         * modules/check-version (Makefile.am): Likewise.
14822         * modules/chown (Makefile.am): Likewise.
14823         * modules/cloexec (Makefile.am): Likewise.
14824         * modules/close-stream (Makefile.am): Likewise.
14825         * modules/closeout (Makefile.am): Likewise.
14826         * modules/crc (Makefile.am): Likewise.
14827         * modules/csharpexec (Makefile.am): Likewise.
14828         * modules/cycle-check (Makefile.am): Likewise.
14829         * modules/des (Makefile.am): Likewise.
14830         * modules/dev-ino (Makefile.am): Likewise.
14831         * modules/dirfd (Makefile.am): Likewise.
14832         * modules/dirname (Makefile.am): Likewise.
14833         * modules/dup2 (Makefile.am): Likewise.
14834         * modules/eealloc (Makefile.am): Likewise.
14835         * modules/error (Makefile.am): Likewise.
14836         * modules/euidaccess (Makefile.am): Likewise.
14837         * modules/exclude (Makefile.am): Likewise.
14838         * modules/exitfail (Makefile.am): Likewise.
14839         * modules/fcntl-safer (Makefile.am): Likewise.
14840         * modules/fcntl (Makefile.am): Likewise.
14841         * modules/file-type (Makefile.am): Likewise.
14842         * modules/fileblocks (Makefile.am): Likewise.
14843         * modules/filemode (Makefile.am): Likewise.
14844         * modules/filenamecat (Makefile.am): Likewise.
14845         * modules/fnmatch (Makefile.am): Likewise.
14846         * modules/fopen-safer (Makefile.am): Likewise.
14847         * modules/fpending (Makefile.am): Likewise.
14848         * modules/fprintftime (Makefile.am): Likewise.
14849         * modules/free (Makefile.am): Likewise.
14850         * modules/fsusage (Makefile.am): Likewise.
14851         * modules/ftruncate (Makefile.am): Likewise.
14852         * modules/fts (Makefile.am): Likewise.
14853         * modules/gc-arcfour (Makefile.am): Likewise.
14854         * modules/gc-des (Makefile.am): Likewise.
14855         * modules/gc-hmac-md5 (Makefile.am): Likewise.
14856         * modules/gc-hmac-sha1 (Makefile.am): Likewise.
14857         * modules/gc-md4 (Makefile.am): Likewise.
14858         * modules/gc-pbkdf2-sha1 (Makefile.am): Likewise.
14859         * modules/gc-sha1 (Makefile.am): Likewise.
14860         * modules/gc (Makefile.am): Likewise.
14861         * modules/getaddrinfo (Makefile.am): Likewise.
14862         * modules/getcwd (Makefile.am): Likewise.
14863         * modules/getdelim (Makefile.am): Likewise.
14864         * modules/getdomainname (Makefile.am): Likewise.
14865         * modules/getgroups (Makefile.am): Likewise.
14866         * modules/gethostname (Makefile.am): Likewise.
14867         * modules/gethrxtime (Makefile.am): Likewise.
14868         * modules/getline (Makefile.am): Likewise.
14869         * modules/getloadavg (Makefile.am): Likewise.
14870         * modules/getlogin_r (Makefile.am): Likewise.
14871         * modules/getndelim2 (Makefile.am): Likewise.
14872         * modules/getopt (Makefile.am): Likewise.
14873         * modules/getpagesize (Makefile.am): Likewise.
14874         * modules/getpass-gnu (Makefile.am): Likewise.
14875         * modules/getpass (Makefile.am): Likewise.
14876         * modules/getsubopt (Makefile.am): Likewise.
14877         * modules/gettime (Makefile.am): Likewise.
14878         * modules/gettimeofday (Makefile.am): Likewise.
14879         * modules/getugroups (Makefile.am): Likewise.
14880         * modules/getusershell (Makefile.am): Likewise.
14881         * modules/glob (Makefile.am): Likewise.
14882         * modules/group-member (Makefile.am): Likewise.
14883         * modules/hard-locale (Makefile.am): Likewise.
14884         * modules/hash (Makefile.am): Likewise.
14885         * modules/hmac-md5 (Makefile.am): Likewise.
14886         * modules/hmac-sha1 (Makefile.am): Likewise.
14887         * modules/human (Makefile.am): Likewise.
14888         * modules/idcache (Makefile.am): Likewise.
14889         * modules/imaxabs (Makefile.am): Likewise.
14890         * modules/imaxdiv (Makefile.am): Likewise.
14891         * modules/inet_ntop (Makefile.am): Likewise.
14892         * modules/inet_pton (Makefile.am): Likewise.
14893         * modules/intprops (Makefile.am): Likewise.
14894         * modules/inttostr (Makefile.am): Likewise.
14895         * modules/inttypes (Makefile.am): Likewise.
14896         * modules/isapipe (Makefile.am): Likewise.
14897         * modules/javaversion (Makefile.am): Likewise.
14898         * modules/lchmod (Makefile.am): Likewise.
14899         * modules/lchown (Makefile.am): Likewise.
14900         * modules/localcharset (Makefile.am): Likewise.
14901         * modules/long-options (Makefile.am): Likewise.
14902         * modules/lstat (Makefile.am): Likewise.
14903         * modules/malloc (Makefile.am): Likewise.
14904         * modules/mathl (Makefile.am): Likewise.
14905         * modules/mbchar (Makefile.am): Likewise.
14906         * modules/md2 (Makefile.am): Likewise.
14907         * modules/md4 (Makefile.am): Likewise.
14908         * modules/md5 (Makefile.am): Likewise.
14909         * modules/memcasecmp (Makefile.am): Likewise.
14910         * modules/memchr (Makefile.am): Likewise.
14911         * modules/memcmp (Makefile.am): Likewise.
14912         * modules/memcoll (Makefile.am): Likewise.
14913         * modules/memcpy (Makefile.am): Likewise.
14914         * modules/memmem (Makefile.am): Likewise.
14915         * modules/memmove (Makefile.am): Likewise.
14916         * modules/mempcpy (Makefile.am): Likewise.
14917         * modules/memrchr (Makefile.am): Likewise.
14918         * modules/memset (Makefile.am): Likewise.
14919         * modules/memxor (Makefile.am): Likewise.
14920         * modules/mkancesdirs (Makefile.am): Likewise.
14921         * modules/mkdir-p (Makefile.am): Likewise.
14922         * modules/mkdir (Makefile.am): Likewise.
14923         * modules/mkdtemp (Makefile.am): Likewise.
14924         * modules/mkstemp (Makefile.am): Likewise.
14925         * modules/mktime (Makefile.am): Likewise.
14926         * modules/modechange (Makefile.am): Likewise.
14927         * modules/mountlist (Makefile.am): Likewise.
14928         * modules/nanosleep (Makefile.am): Likewise.
14929         * modules/obstack (Makefile.am): Likewise.
14930         * modules/openat (Makefile.am): Likewise.
14931         * modules/pagealign_alloc (Makefile.am): Likewise.
14932         * modules/pathmax (Makefile.am): Likewise.
14933         * modules/physmem (Makefile.am): Likewise.
14934         * modules/poll (Makefile.am): Likewise.
14935         * modules/posixtm (Makefile.am): Likewise.
14936         * modules/posixver (Makefile.am): Likewise.
14937         * modules/putenv (Makefile.am): Likewise.
14938         * modules/quote (Makefile.am): Likewise.
14939         * modules/quotearg (Makefile.am): Likewise.
14940         * modules/raise (Makefile.am): Likewise.
14941         * modules/read-file (Makefile.am): Likewise.
14942         * modules/readline (Makefile.am): Likewise.
14943         * modules/readlink (Makefile.am): Likewise.
14944         * modules/readtokens (Makefile.am): Likewise.
14945         * modules/readutmp (Makefile.am): Likewise.
14946         * modules/realloc (Makefile.am): Likewise.
14947         * modules/regex (Makefile.am): Likewise.
14948         * modules/rename-dest-slash (Makefile.am): Likewise.
14949         * modules/rename (Makefile.am): Likewise.
14950         * modules/rijndael (Makefile.am): Likewise.
14951         * modules/rmdir (Makefile.am): Likewise.
14952         * modules/rpmatch (Makefile.am): Likewise.
14953         * modules/safe-read (Makefile.am): Likewise.
14954         * modules/safe-write (Makefile.am): Likewise.
14955         * modules/same-inode (Makefile.am): Likewise.
14956         * modules/same (Makefile.am): Likewise.
14957         * modules/save-cwd (Makefile.am): Likewise.
14958         * modules/savedir (Makefile.am): Likewise.
14959         * modules/setenv (Makefile.am): Likewise.
14960         * modules/settime (Makefile.am): Likewise.
14961         * modules/sha1 (Makefile.am): Likewise.
14962         * modules/sig2str (Makefile.am): Likewise.
14963         * modules/snprintf (Makefile.am): Likewise.
14964         * modules/stat-macros (Makefile.am): Likewise.
14965         * modules/stat-time (Makefile.am): Likewise.
14966         * modules/stdbool (Makefile.am): Likewise.
14967         * modules/stdint (Makefile.am): Likewise.
14968         * modules/stdlib-safer (Makefile.am): Likewise.
14969         * modules/stpcpy (Makefile.am): Likewise.
14970         * modules/stpncpy (Makefile.am): Likewise.
14971         * modules/strcase (Makefile.am): Likewise.
14972         * modules/strcasestr (Makefile.am): Likewise.
14973         * modules/strchrnul (Makefile.am): Likewise.
14974         * modules/strcspn (Makefile.am): Likewise.
14975         * modules/strdup (Makefile.am): Likewise.
14976         * modules/strerror (Makefile.am): Likewise.
14977         * modules/strftime (Makefile.am): Likewise.
14978         * modules/strndup (Makefile.am): Likewise.
14979         * modules/strnlen (Makefile.am): Likewise.
14980         * modules/strpbrk (Makefile.am): Likewise.
14981         * modules/strsep (Makefile.am): Likewise.
14982         * modules/strstr (Makefile.am): Likewise.
14983         * modules/strtod (Makefile.am): Likewise.
14984         * modules/strtoimax (Makefile.am): Likewise.
14985         * modules/strtok_r (Makefile.am): Likewise.
14986         * modules/strtol (Makefile.am): Likewise.
14987         * modules/strtoll (Makefile.am): Likewise.
14988         * modules/strtoul (Makefile.am): Likewise.
14989         * modules/strtoull (Makefile.am): Likewise.
14990         * modules/strtoumax (Makefile.am): Likewise.
14991         * modules/strverscmp (Makefile.am): Likewise.
14992         * modules/sys_socket (Makefile.am): Likewise.
14993         * modules/sys_stat (Makefile.am): Likewise.
14994         * modules/sysexits (Makefile.am): Likewise.
14995         * modules/time_r (Makefile.am): Likewise.
14996         * modules/timegm (Makefile.am): Likewise.
14997         * modules/timespec (Makefile.am): Likewise.
14998         * modules/tmpfile-safer (Makefile.am): Likewise.
14999         * modules/trim (Makefile.am): Likewise.
15000         * modules/unistd-safer (Makefile.am): Likewise.
15001         * modules/unlinkdir (Makefile.am): Likewise.
15002         * modules/unlocked-io (Makefile.am): Likewise.
15003         * modules/userspec (Makefile.am): Likewise.
15004         * modules/utime (Makefile.am): Likewise.
15005         * modules/utimecmp (Makefile.am): Likewise.
15006         * modules/utimens (Makefile.am): Likewise.
15007         * modules/vasnprintf (Makefile.am): Likewise.
15008         * modules/vasprintf (Makefile.am): Likewise.
15009         * modules/vsnprintf (Makefile.am): Likewise.
15010         * modules/xalloc (Makefile.am): Likewise.
15011         * modules/xgetcwd (Makefile.am): Likewise.
15012         * modules/xnanosleep (Makefile.am): Likewise.
15013         * modules/xreadlink (Makefile.am): Likewise.
15014         * modules/xstrtod (Makefile.am): Likewise.
15015         * modules/xstrtol (Makefile.am): Likewise.
15016         * modules/xstrtold (Makefile.am): Likewise.
15017         * modules/yesno (Makefile.am): Likewise.
15018         * modules/getdate (Makefile.am): Don't add getdate.h to EXTRA_DIST.
15019
15020 2006-10-12  Paul Eggert  <eggert@cs.ucla.edu>
15021
15022         * modules/error (Makefile.am): Distribute files through
15023         EXTRA_DIST, not lib_SOURCES.
15024
15025 2006-10-12  Eric Blake  <ebb9@byu.net>
15026
15027         * modules/error (Makefile.am): Distribute files in /lib.
15028         * modules/obstack (Makefile.am): Likewise.
15029
15030 2006-10-12  Bruno Haible  <bruno@clisp.org>
15031
15032         * modules/acl (Makefile.am): Distribute all files in lib/ through
15033         EXTRA_DIST.
15034         * modules/arcfour (Makefile.am): Likewise.
15035         * modules/arctwo (Makefile.am): Likewise.
15036         * modules/argmatch (Makefile.am): Likewise.
15037         * modules/argz (Makefile.am): Likewise.
15038         * modules/atexit (Makefile.am): Likewise.
15039         * modules/backupfile (Makefile.am): Likewise.
15040         * modules/c-strtod (Makefile.am): Likewise.
15041         * modules/c-strtold (Makefile.am): Likewise.
15042         * modules/calloc (Makefile.am): Likewise.
15043         * modules/canon-host (Makefile.am): Likewise.
15044         * modules/canonicalize (Makefile.am): Likewise.
15045         * modules/chdir-long (Makefile.am): Likewise.
15046         * modules/chdir-safer (Makefile.am): Likewise.
15047         * modules/check-version (Makefile.am): Likewise.
15048         * modules/chown (Makefile.am): Likewise.
15049         * modules/cloexec (Makefile.am): Likewise.
15050         * modules/close-stream (Makefile.am): Likewise.
15051         * modules/closeout (Makefile.am): Likewise.
15052         * modules/crc (Makefile.am): Likewise.
15053         * modules/cycle-check (Makefile.am): Likewise.
15054         * modules/des (Makefile.am): Likewise.
15055         * modules/dirfd (Makefile.am): Likewise.
15056         * modules/dirname (Makefile.am): Likewise.
15057         * modules/dup2 (Makefile.am): Likewise.
15058         * modules/euidaccess (Makefile.am): Likewise.
15059         * modules/exclude (Makefile.am): Likewise.
15060         * modules/exitfail (Makefile.am): Likewise.
15061         * modules/fcntl-safer (Makefile.am): Likewise.
15062         * modules/file-type (Makefile.am): Likewise.
15063         * modules/fileblocks (Makefile.am): Likewise.
15064         * modules/filemode (Makefile.am): Likewise.
15065         * modules/filenamecat (Makefile.am): Likewise.
15066         * modules/fnmatch (Makefile.am): Likewise.
15067         * modules/fopen-safer (Makefile.am): Likewise.
15068         * modules/fpending (Makefile.am): Likewise.
15069         * modules/fprintftime (Makefile.am): Likewise.
15070         * modules/free (Makefile.am): Likewise.
15071         * modules/fsusage (Makefile.am): Likewise.
15072         * modules/ftruncate (Makefile.am): Likewise.
15073         * modules/fts (Makefile.am): Likewise.
15074         * modules/gc (Makefile.am): Likewise.
15075         * modules/gc-pbkdf2-sha1 (Makefile.am): Likewise.
15076         * modules/getaddrinfo (Makefile.am): Likewise.
15077         * modules/getcwd (Makefile.am): Likewise.
15078         * modules/getdelim (Makefile.am): Likewise.
15079         * modules/getdomainname (Makefile.am): Likewise.
15080         * modules/getgroups (Makefile.am): Likewise.
15081         * modules/gethostname (Makefile.am): Likewise.
15082         * modules/gethrxtime (Makefile.am): Likewise.
15083         * modules/getline (Makefile.am): Likewise.
15084         * modules/getloadavg (Makefile.am): Likewise.
15085         * modules/getlogin_r (Makefile.am): Likewise.
15086         * modules/getopt (Makefile.am): Likewise.
15087         * modules/getpass (Makefile.am): Likewise.
15088         * modules/getpass-gnu (Makefile.am): Likewise.
15089         * modules/getsubopt (Makefile.am): Likewise.
15090         * modules/gettime (Makefile.am): Likewise.
15091         * modules/gettimeofday (Makefile.am): Likewise.
15092         * modules/getugroups (Makefile.am): Likewise.
15093         * modules/getusershell (Makefile.am): Likewise.
15094         * modules/glob (Makefile.am): Likewise.
15095         * modules/group-member (Makefile.am): Likewise.
15096         * modules/hard-locale (Makefile.am): Likewise.
15097         * modules/hash (Makefile.am): Likewise.
15098         * modules/hmac-md5 (Makefile.am): Likewise.
15099         * modules/hmac-sha1 (Makefile.am): Likewise.
15100         * modules/human (Makefile.am): Likewise.
15101         * modules/idcache (Makefile.am): Likewise.
15102         * modules/imaxabs (Makefile.am): Likewise.
15103         * modules/imaxdiv (Makefile.am): Likewise.
15104         * modules/inet_ntop (Makefile.am): Likewise.
15105         * modules/inet_pton (Makefile.am): Likewise.
15106         * modules/inttostr (Makefile.am): Likewise.
15107         * modules/isapipe (Makefile.am): Likewise.
15108         * modules/lchown (Makefile.am): Likewise.
15109         * modules/long-options (Makefile.am): Likewise.
15110         * modules/lstat (Makefile.am): Likewise.
15111         * modules/malloc (Makefile.am): Likewise.
15112         * modules/mathl (Makefile.am): Likewise.
15113         * modules/mbchar (Makefile.am): Likewise.
15114         * modules/md2 (Makefile.am): Likewise.
15115         * modules/md4 (Makefile.am): Likewise.
15116         * modules/md5 (Makefile.am): Likewise.
15117         * modules/memcasecmp (Makefile.am): Likewise.
15118         * modules/memchr (Makefile.am): Likewise.
15119         * modules/memcmp (Makefile.am): Likewise.
15120         * modules/memcoll (Makefile.am): Likewise.
15121         * modules/memcpy (Makefile.am): Likewise.
15122         * modules/memmem (Makefile.am): Likewise.
15123         * modules/memmove (Makefile.am): Likewise.
15124         * modules/mempcpy (Makefile.am): Likewise.
15125         * modules/memrchr (Makefile.am): Likewise.
15126         * modules/memset (Makefile.am): Likewise.
15127         * modules/memxor (Makefile.am): Likewise.
15128         * modules/mkancesdirs (Makefile.am): Likewise.
15129         * modules/mkdir (Makefile.am): Likewise.
15130         * modules/mkdir-p (Makefile.am): Likewise.
15131         * modules/mkdtemp (Makefile.am): Likewise.
15132         * modules/mkstemp (Makefile.am): Likewise.
15133         * modules/mktime (Makefile.am): Likewise.
15134         * modules/modechange (Makefile.am): Likewise.
15135         * modules/mountlist (Makefile.am): Likewise.
15136         * modules/nanosleep (Makefile.am): Likewise.
15137         * modules/openat (Makefile.am): Likewise.
15138         * modules/pagealign_alloc (Makefile.am): Likewise.
15139         * modules/physmem (Makefile.am): Likewise.
15140         * modules/poll (Makefile.am): Likewise.
15141         * modules/posixtm (Makefile.am): Likewise.
15142         * modules/posixver (Makefile.am): Likewise.
15143         * modules/putenv (Makefile.am): Likewise.
15144         * modules/quote (Makefile.am): Likewise.
15145         * modules/quotearg (Makefile.am): Likewise.
15146         * modules/raise (Makefile.am): Likewise.
15147         * modules/read-file (Makefile.am): Likewise.
15148         * modules/readline (Makefile.am): Likewise.
15149         * modules/readlink (Makefile.am): Likewise.
15150         * modules/readtokens (Makefile.am): Likewise.
15151         * modules/readutmp (Makefile.am): Likewise.
15152         * modules/realloc (Makefile.am): Likewise.
15153         * modules/regex (Makefile.am): Likewise.
15154         * modules/rename (Makefile.am): Likewise.
15155         * modules/rename-dest-slash (Makefile.am): Likewise.
15156         * modules/rijndael (Makefile.am): Likewise.
15157         * modules/rmdir (Makefile.am): Likewise.
15158         * modules/rpmatch (Makefile.am): Likewise.
15159         * modules/safe-read (Makefile.am): Likewise.
15160         * modules/safe-write (Makefile.am): Likewise.
15161         * modules/same (Makefile.am): Likewise.
15162         * modules/save-cwd (Makefile.am): Likewise.
15163         * modules/savedir (Makefile.am): Likewise.
15164         * modules/setenv (Makefile.am): Likewise.
15165         * modules/settime (Makefile.am): Likewise.
15166         * modules/sha1 (Makefile.am): Likewise.
15167         * modules/sig2str (Makefile.am): Likewise.
15168         * modules/snprintf (Makefile.am): Likewise.
15169         * modules/stdlib-safer (Makefile.am): Likewise.
15170         * modules/stpcpy (Makefile.am): Likewise.
15171         * modules/stpncpy (Makefile.am): Likewise.
15172         * modules/strcase (Makefile.am): Likewise.
15173         * modules/strcasestr (Makefile.am): Likewise.
15174         * modules/strchrnul (Makefile.am): Likewise.
15175         * modules/strcspn (Makefile.am): Likewise.
15176         * modules/strdup (Makefile.am): Likewise.
15177         * modules/strerror (Makefile.am): Likewise.
15178         * modules/strftime (Makefile.am): Likewise.
15179         * modules/strndup (Makefile.am): Likewise.
15180         * modules/strnlen (Makefile.am): Likewise.
15181         * modules/strpbrk (Makefile.am): Likewise.
15182         * modules/strsep (Makefile.am): Likewise.
15183         * modules/strstr (Makefile.am): Likewise.
15184         * modules/strtod (Makefile.am): Likewise.
15185         * modules/strtoimax (Makefile.am): Likewise.
15186         * modules/strtok_r (Makefile.am): Likewise.
15187         * modules/strtol (Makefile.am): Likewise.
15188         * modules/strtoll (Makefile.am): Likewise.
15189         * modules/strtoul (Makefile.am): Likewise.
15190         * modules/strtoull (Makefile.am): Likewise.
15191         * modules/strtoumax (Makefile.am): Likewise.
15192         * modules/strverscmp (Makefile.am): Likewise.
15193         * modules/time_r (Makefile.am): Likewise.
15194         * modules/timegm (Makefile.am): Likewise.
15195         * modules/tmpfile-safer (Makefile.am): Likewise.
15196         * modules/unistd-safer (Makefile.am): Likewise.
15197         * modules/unlinkdir (Makefile.am): Likewise.
15198         * modules/userspec (Makefile.am): Likewise.
15199         * modules/utime (Makefile.am): Likewise.
15200         * modules/utimecmp (Makefile.am): Likewise.
15201         * modules/utimens (Makefile.am): Likewise.
15202         * modules/vasnprintf (Makefile.am): Likewise.
15203         * modules/vasprintf (Makefile.am): Likewise.
15204         * modules/vsnprintf (Makefile.am): Likewise.
15205         * modules/xalloc (Makefile.am): Likewise.
15206         * modules/xgetcwd (Makefile.am): Likewise.
15207         * modules/xnanosleep (Makefile.am): Likewise.
15208         * modules/xreadlink (Makefile.am): Likewise.
15209         * modules/xstrtod (Makefile.am): Likewise.
15210         * modules/xstrtol (Makefile.am): Likewise.
15211         * modules/xstrtold (Makefile.am): Likewise.
15212         * modules/yesno (Makefile.am): Likewise.
15213
15214 2006-10-12  Jim Meyering  <jim@meyering.net>
15215
15216         * m4/getloadavg.m4: Revert the change below.
15217
15218         * m4/getloadavg.m4 (gl_GETLOADAVG): Test for the existence of
15219         lib/getloadavg.c using "ls -L", not "test -f".  The latter would
15220         fail with a symlink, which is what coreutils' ./bootstrap now
15221         creates by default.
15222
15223 2006-10-12  Bruno Haible  <bruno@clisp.org>
15224
15225         * lib/inttypes_.h (_LONG_LONG_FORMAT_PREFIX): Don't define for MSVC or
15226         mingw.
15227         (_PRI64_PREFIX, _PRIu64_PREFIX, _SCN64_PREFIX, _SCNu64_PREFIX): Handle
15228         MSVC and mingw explicitly.
15229
15230 2006-10-11  Simon Josefsson  <jas@extundo.com>
15231             Bruno Haible  <bruno@clisp.org>
15232
15233         Add support for multiple gnulib-tool invocations in the scope of a
15234         single configure.ac file.
15235         * gnulib-tool (func_emit_lib_Makefile_am): In the _LIBADD variable,
15236         use a private [LT]LIBOBJS variant. Define a _DEPENDENCIES variable
15237         with the same contents as the _LIBADD variable.
15238         (func_emit_initmacro_start, func_emit_initmacro_end,
15239         func_emit_initmacro_done): New functions.
15240         (func_import, func_create_testdir): Invoke them. Allow the identifiers
15241         gl_LIBOBJS and gl_LTLIBOBJS.
15242
15243 2006-10-11  Bruno Haible  <bruno@clisp.org>
15244
15245         * gnulib-tool (GETTEXTPATH, AUTOHEADER, AUTOPOINT): New variables.
15246         (func_create_testdir): Don't create po/Makefile.am, don't invoke
15247         autoreconf. Instead, invoke autopoint explicitly but move back the
15248         *.m4 files from gnulib.
15249
15250 2006-10-11  Bruno Haible  <bruno@clisp.org>
15251
15252         * gnulib-tool (func_usage): Make module names after --create-testdir
15253         optional.
15254         (func_create_testdir): If no module was specified, use nearly all
15255         modules.
15256
15257 2006-10-12  Jim Meyering  <jim@meyering.net>
15258
15259         Big performance improvement for fts-based tools that use FTS_NOSTAT.
15260         Avoid spurious inode-mismatch problems on non-POSIX file systems.
15261         Details: http://article.gmane.org/gmane.comp.lib.gnulib.bugs/7416
15262         * lib/fts_.h (FTS_DEFER_STAT): Define new flag.
15263         (FTS_OPTIONMASK): Extend the mask to reflect this addition.
15264         * lib/fts.c (DT_IS_KNOWN, DT_MUST_BE): Define.
15265         (FTS_NO_STAT_REQUIRED, FTS_STAT_REQUIRED): Define.
15266         (fts_set_stat_required): New function.
15267         (fts_open): Defer the calls to fts_stat, if possible or requested.
15268         Move the code that maps a command-line fts_info value FTS_DOT to FTS_D
15269         into fts_stat itself.
15270         (fts_read): Perform any required (deferred) fts_stat call.
15271         (fts_build): Likewise, for the directory we're about to open and read.
15272         In the readdir loop, carefully decide whether each entry will require
15273         an eventual call to fts_stat, using dirent.d_type info if available.
15274         (fts_stat): Move the test for whether to honor FTS_COMFOLLOW on
15275         a command line argument into this function.  Update all callers.
15276         Map a return value of FTS_DOT to FTS_D for a command line argument.
15277         * modules/fts (Depends-on): Add d-type.  Alphabetize.
15278         Thanks to Miklos Szeredi for his tenacity and for the initial
15279         bug report about "find" failing on a FUSE-based file system.
15280
15281         * lib/fts.c (fts_open): Use consistent indentation.
15282
15283 2006-10-12  Paul Eggert  <eggert@cs.ucla.edu>
15284
15285         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS): Renamed from
15286         gl_USE_SYSTEM_EXTENSIONS, to fix a coreutils bootstrap failure
15287         reported by Jim Meyering.  All uses of cache variables renamed
15288         to match Autoconf's.
15289         (gl_USE_SYSTEM_EXTENSIONS): New macro, which simply requires
15290         the other one.
15291
15292         * m4/rename-dest-slash.m4 (gl_FUNC_RENAME_TRAILING_DEST_SLASH):
15293         Fix misspelling in diagnostic.
15294
15295 2006-10-11  Paul Eggert  <eggert@cs.ucla.edu>
15296
15297         * lib/mkdir-p.c (HAVE_FCHMOD): Define to false if not already
15298         defined.  Problem reported by Matthew Woehlke.
15299
15300         * lib/inttypes_.h (_LONG_LONG_FORMAT_PREFIX): New macro.
15301         Add support for Tandem NonStop R series.
15302         (_PRI64_PREFIX, _PRIu64_PREFIX, _SCN64_PREFIX, _SCNu64_PREFIX):
15303         Use new macro.
15304
15305         * lib/rename-dest-slash.c: Include stdbool.h but not string.h.
15306         (has_trailing_slash): Omit size arg; all callers changed.
15307         Omit 'inline', since it doesn't help performance and we'd
15308         need to configure it.
15309         Don't count //, ///, etc. as having a trailing slash.
15310         As a side effect, this removes a C99ism reported by Matthew Woehlke.
15311         (rpl_rename_dest_slash): On failure, use rename's errno rather
15312         than (in some cases) an incorrect or junk errno.
15313         Simplify code by removing need to compute length; this does
15314         cause it to make two passes instead of one over the file name,
15315         but it's worth it.
15316
15317         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Undo previous
15318         change, since Autoconf's version may no longer be appropriate now
15319         that we are using CVS Autoconf's version.  Add support for Tandem.
15320
15321 2006-10-11  Paul Eggert  <eggert@cs.ucla.edu>
15322             Bruno Haible  <bruno@clisp.org>
15323
15324         * lib/allocsa.h (sa_alignment_longlong, sa_alignment_max): Test
15325         HAVE_LONG_LONG_INT instead of HAVE_LONG_LONG.
15326         * m4/allocsa.m4 (gl_ALLOCSA): Invoke AC_TYPE_LONG_LONG_INT instead of
15327         gl_AC_TYPE_LONG_LONG.
15328
15329         * lib/printf-args.h (arg_type, argument): Test HAVE_LONG_LONG_INT
15330         instead of HAVE_LONG_LONG.
15331         * lib/printf-args.c (printf_fetchargs): Likewise.
15332         * lib/printf-parse.c (PRINTF_PARSE): Likewise.
15333         * lib/vasnprintf.c (VASNPRINTF): Likewise.
15334         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_ARGS, gl_PREREQ_PRINTF_PARSE,
15335         gl_PREREQ_VASNPRINTF): Invoke AC_TYPE_LONG_LONG_INT instead of
15336         gl_AC_TYPE_LONG_LONG.
15337
15338 2006-10-11  Bruno Haible  <bruno@clisp.org>
15339
15340         * m4/longlong.m4: Add comments.
15341         * m4/ulonglong.m4: Likewise.
15342
15343 2006-10-10  Bruno Haible  <bruno@clisp.org>
15344
15345         Make it possible to #define stpcpy, strdup to aliases.
15346         * lib/stpcpy.c (stpcpy) [!_LIBC]: Don't undefine.
15347         * lib/strdup.c (strdup) [!_LIBC]: Don't undefine.
15348
15349 2006-10-10  Bruno Haible  <bruno@clisp.org>
15350
15351         Make it possible to #define gcd to an alias.
15352         * lib/gcd.c: Include config.h.
15353
15354 2006-10-10  Bruno Haible  <bruno@clisp.org>
15355
15356         Make it possible to #define c_isascii to an alias.
15357         * lib/c-ctype.h: Don't define the macros if NO_C_CTYPE_MACROS is
15358         defined. Undefine the macros before defining them, to avoid gcc
15359         warnings.
15360         * lib/c-ctype.c: Include config.h. Don't undefine the macros; instead,
15361         define NO_C_CTYPE_MACROS early.
15362
15363 2006-10-10  Bruno Haible  <bruno@clisp.org>
15364
15365         Make it possible to #define set_program_name to an alias.
15366         * lib/progname.c: Don't undefine set_program_name; instead, undefine
15367         ENABLE_RELOCATABLE early.
15368
15369 2006-10-10  Paul Eggert  <eggert@cs.ucla.edu>
15370
15371         Port to Tandem NSK OSS, which has 64-bit signed int but at most
15372         32-bit unsigned int.  Problem reported by Matthew Woehlke in:
15373         http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00062.html
15374         More generally, don't assume that 64-bit signed int is available
15375         if unsigned int is, and vice versa.
15376         * lib/inttypes_.h (_PRIu64_PREFIX, _SCNu64_PREFIX): Depend on
15377         unsigned symbols, not on their signed counterparts.
15378         * lib/stdint_.h (uint64_t, uint_least64_t, uint_fast64_t, uintmax_t):
15379         (UINT64_MAX, UINT_LEAST64_MAX, UINT_FAST64_MAX, UINTMAX_MAX):
15380         (UINT64_C, UINTMAX_C):
15381         Likewise.
15382         * lib/strtoimax.c (strtoll): Depend on signed symbols, not their
15383         unsigned counterparts.
15384         (Have_long_long, Unsigned): New macros.
15385         (Int): Renamed from INT.
15386         (strtoimax): Use the new macros.
15387         * m4/stdint.m4 (gl_STDINT_H): Require AC_TYPE_UNSIGNED_LONG_LONG_INT
15388         and substitute HAVE_UNSIGNED_LONG_LONG_INT.
15389         * modules/inttypes (inttypes.h): Substitute
15390         HAVE_UNSIGNED_LONG_LONG_INT.
15391         * modules/stdint (stdint.h): Likewise.
15392         (Files): Add m4/ulonglong.m4.
15393
15394 2006-10-10  Bruno Haible  <bruno@clisp.org>
15395
15396         Fix a gcc -Wshadow warning.
15397         * lib/gl_anyhash_list2.h (hash_resize): Rename local variable 'index'
15398         to 'bucket'.
15399         * lib/gl_anylinked_list2.h (gl_linked_search_from_to,
15400         gl_linked_indexof_from_to): Likewise.
15401         * lib/gl_linkedhash_list.c (add_to_bucket, remove_from_bucket):
15402         Likewise.
15403         * lib/gl_anytreehash_list1.h (add_to_bucket, remove_from_bucket):
15404         Likewise.
15405         * lib/gl_anytreehash_list2.h (gl_tree_search_from_to): Likewise.
15406         Reported by Eric Blake.
15407
15408 2006-10-09  Paul Eggert  <eggert@cs.ucla.edu>
15409
15410         * lib/filemode.h [HAVE_DECL_STRMODE]: Include unistd.h too,
15411         for NetBSD.  Problem reported by Bruno Haible.
15412
15413 2006-10-09  Jim Meyering  <jim@meyering.net>
15414
15415         * lib/lchown.c: Include <sys/stat.h> before "stat-macros.h".
15416         Patch from Bruno Haible.
15417
15418 2006-10-09  Jim Meyering  <jim@meyering.net>
15419
15420         * lib/fts-cycle.c (leave_dir): When "leaving" a top level directory due
15421         to FTS_SKIP, don't copy the parent's uninitialized dev/ino values.
15422         Trigger with e.g., mkdir d && valgrind ./chmod u+rwx d d
15423
15424 2006-10-08  Paul Eggert  <eggert@cs.ucla.edu>
15425
15426         Don't include <config.h> twice; this doesn't work in some cases,
15427         e.g., when config.h has "#define intmax_t long long int" and
15428         we include <config.h>, <inttypes.h>, <config.h> in that order.
15429         Problem reported by Matthew Woehlke in:
15430         http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00073.html
15431         * lib/fprintftime.c: Don't include config.h or fprintftime.h.
15432         * lib/fts-cycle.c: Don't include config.h.
15433         * lib/strftime.c: Include fprintftime.h if FPRINTFTIME is defined.
15434         * lib/xstrtoimax.c: Remove copyright notice since it's short tnow.
15435         Don't include config.h or xstrtol.h.  Define STRTOL_T_MINIMUM
15436         and STRTOL_T_MAXIMUM unconditionally, since we now assume gnulib
15437         inttypes.h.
15438         * lib/xstrtoumax.c: Likewise.
15439         * lib/xstrtol.c: Include config.h and xstrtol.h after defining
15440         __strtol and the like, so that this module is more like its siblings.
15441         (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM) [! defined STRTOL_T_MINIMUM]:
15442         Remove; no longer needed now that we assume gnulib inttypes.h.
15443
15444 2006-10-08  Bruno Haible  <bruno@clisp.org>
15445
15446         * doc/gnulib-tool.texi: Emphasize the drawbacks of the --symlink
15447         option.
15448
15449 2006-10-07  Jim Meyering  <jim@meyering.net>
15450
15451         * modules/inttypes (inttypes.h): Revert what seems to have been
15452         an inadvertent part of today's change: use "|", not "/" in the
15453         substitution for the "/"-containing string, $(ABSOLUTE_INTTYPES_H).
15454
15455 2006-10-07  Bruno Haible  <bruno@clisp.org>
15456
15457         * modules/sublist: New file.
15458
15459 2006-10-07  Bruno Haible  <bruno@clisp.org>
15460
15461         * modules/alloca-opt (alloca.h): Add a "DO NOT EDIT" comment.
15462         * modules/argz (argz.h): Likewise.
15463         * modules/arpa_inet (arpa/inet.h): Likewise.
15464         * modules/byteswap (byteswap.h): Likewise.
15465         * modules/configmake (configmake.h): Likewise.
15466         * modules/fcntl (fcntl.h): Likewise.
15467         * modules/fnmatch (fnmatch.h): Likewise.
15468         * modules/getopt (getopt.h): Likewise.
15469         * modules/glob (glob.h): Likewise.
15470         * modules/inttypes (inttypes.h): Likewise.
15471         * modules/netinet_in (netinet/in.h): Likewise.
15472         * modules/poll (poll.h): Likewise.
15473         * modules/stdbool (stdbool.h): Likewise.
15474         * modules/stdint (stdint.h): Likewise.
15475         * modules/sys_select (sys/select.h): Likewise.
15476         * modules/sys_socket (sys/socket.h): Likewise.
15477         * modules/sys_stat (sys/stat.h): Likewise.
15478         * modules/sysexits (sysexits.h): Likewise.
15479         * modules/unistd (unistd.h): Likewise.
15480         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
15481         Add a "DO NOT EDIT" comment to the generated file.
15482         (func_import): Likewise for gnulib-comp.m4.
15483
15484 2006-10-07  Bruno Haible  <bruno@clisp.org>
15485
15486         * lib/gl_sublist.h: New file.
15487         * lib/gl_sublist.c: New file.
15488
15489 2006-10-06  Paul Eggert  <eggert@cs.ucla.edu>
15490
15491         * lib/mkancesdirs.c (mkancesdirs): Pass to MAKE_DIR both the full file
15492         name (relative to the original working directory) and the file
15493         name component (relative to the temporary working directory).  All
15494         callers changed.
15495         * lib/mkancesdirs.h (mkancesdirs): Adjust prototype to match.
15496         * lib/mkdir-p.c (make_dir_parents): Likewise.
15497         * lib/mkdir-p.h (make_dir_parents): Likewise.
15498
15499 2006-10-06  Eric Blake  <ebb9@byu.net>
15500
15501         Define several macros for use by the clean-temp module.
15502         * m4/close-stream.m4 (gl_CLOSE_STREAM): Define GNULIB_CLOSE_STREAM.
15503         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Define GNULIB_FCNTL_SAFER.
15504         * m4/stdio-safer.m4 (gl_FOPEN_SAFER): Define GNULIB_FOPEN_SAFER.
15505
15506         * lib/clean-temp.h (close_stream_temp): New declaration.
15507         * lib/clean-temp.c (includes): Pull in headers according to what
15508         other modules are in use.
15509         (close_stream_temp) [GNULIB_CLOSE_STREAM]: New function.
15510
15511 2006-10-06  Bruno Haible  <bruno@clisp.org>
15512
15513         * lib/javacomp.c (write_temp_file): Use fopen_temp, fwriteerror_temp
15514         instead of fopen, fwriteerror.
15515
15516 2006-10-06  Bruno Haible  <bruno@clisp.org>
15517
15518         * lib/clean-temp.h (cleanup_temp_file, cleanup_temp_subdir,
15519         cleanup_temp_dir_contents, cleanup_temp_dir): Change return type to
15520         int.
15521         * lib/clean-temp.c (do_unlink, do_rmdir, cleanup_temp_file,
15522         cleanup_temp_subdir, cleanup_temp_dir_contents, cleanup_temp_dir):
15523         Return an error indicator.
15524         Suggested by Eric Blake.
15525
15526 2006-10-06  Bruno Haible  <bruno@clisp.org>
15527
15528         * lib/clean-temp.c (PATH_MAX): Provide a fallback for GNU Hurd.
15529         Reported by Eric Blake.
15530
15531 2006-10-06  Bruno Haible  <bruno@clisp.org>
15532
15533         * modules/closeout (Description): Mention stderr too.
15534
15535 2006-10-06  Bruno Haible  <bruno@clisp.org>
15536         and Paul Eggert  <eggert@cs.ucla.edu>
15537
15538         * lib/closeout.c (close_stdout): Also close stderr.
15539         * lib/closeout.h: Update comment.
15540
15541 2006-10-05  Paul Eggert  <eggert@cs.ucla.edu>
15542
15543         Fix some Darwin-7.9.0 porting problems reported by Bruno Haible in
15544         <http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00063.html>.
15545         * lib/dirchownmod.c: Include lchown.h.
15546         * lib/lchown.c: Don't include files that lchown.h now includes.
15547         Don't declare chown, since lchown.h now does that.
15548         * lib/lchown.h: Include errno.h, sys/types.h, unistd.h.
15549         (lchown): Define to rpl_chown if lchown is declared but
15550         does not exist.  Declare using a prototype if lchown is not
15551         declared.  Add a copyright notice.
15552         * lib/mkstemp.h: Include <unistd.h>.
15553         * lib/openat.c: Include lchown.h.
15554
15555         * lib/fcntl_.h (O_NOFOLLOW): Don't depend on O_NOFOLLOW_IS_INEFFECTIVE;
15556         we now test for that separately.
15557         * lib/fts.c (fts_safe_changedir): Inspect HAVE_WORKING_O_NOFOLLOW
15558         rather than O_NOFOLLOW, when testing whether it's possible to
15559         avoid a race condition reliably.
15560         * lib/savewd.c (savewd_chdir): Likewise.
15561
15562         Remove macros that are no longer needed now that stdint.h is
15563         reliable.
15564         * lib/fsusage.c (UINTMAX_MAX): Remove.
15565         * lib/human.c (SIZE_MAX, UINTMAX_MAX): Remove.
15566         * lib/utimecmp.c (SIZE_MAX): Remove.
15567
15568         * m4/lchown.m4 (gl_FUNC_LCHOWN): Check whether lchown is declared.
15569
15570         * m4/fcntl_h.m4 (gl_FCNTL_H): Define HAVE_WORKING_O_NOFOLLOW instead
15571         of O_NOFOLLOW_IS_INEFFECTIVE.  Define HAVE_WORKING_O_NOATIME if
15572         O_NOATIME works.
15573
15574 2006-10-05  Bruno Haible  <bruno@clisp.org>
15575
15576         * lib/gl_list.h (gl_sortedlist_search_from_to,
15577         gl_sortedlist_indexof_from_to): New declarations.
15578         (gl_list_implementation): New fields sortedlist_search_from_to,
15579         sortedlist_indexof_from_to.
15580         (gl_sortedlist_search_from_to, gl_sortedlist_indexof_from_to): New
15581         inline functions.
15582         * lib/gl_list.c (gl_sortedlist_search_from_to,
15583         gl_sortedlist_indexof_from_to): New functions.
15584         * lib/gl_array_list.c (gl_array_sortedlist_indexof_from_to): New
15585         function.
15586         (gl_array_sortedlist_indexof, gl_array_sortedlist_search): Use it.
15587         (gl_array_sortedlist_search_from_to): New function.
15588         (gl_array_list_implementation): Update.
15589         * lib/gl_carray_list.c (gl_carray_sortedlist_indexof_from_to): New
15590         function.
15591         (gl_carray_sortedlist_indexof, gl_carray_sortedlist_search): Use it.
15592         (gl_carray_sortedlist_search_from_to): New function.
15593         (gl_carray_list_implementation): Update.
15594         * lib/gl_anylinked_list2.h (gl_linked_sortedlist_search_from_to,
15595         gl_linked_sortedlist_indexof_from_to): New functions.
15596         * lib/gl_linked_list.c (gl_linked_list_implementation): Update.
15597         * lib/gl_linkedhash_list.c (gl_linkedhash_list_implementation): Update.
15598         * lib/gl_anytree_list2.h (gl_tree_sortedlist_search_from_to,
15599         gl_tree_sortedlist_indexof_from_to): New functions.
15600         * lib/gl_avltree_list.c (gl_avltree_list_implementation): Update.
15601         * lib/gl_avltreehash_list.c (gl_avltreehash_list_implementation):
15602         Update.
15603         * lib/gl_rbtree_list.c (gl_rbtree_list_implementation): Update.
15604         * lib/gl_rbtreehash_list.c (gl_avltreehash_list_implementation):
15605         Update.
15606
15607 2006-10-05  Bruno Haible  <bruno@clisp.org>
15608
15609         * lib/gl_list.h (gl_list_search_from, gl_list_search_from_to,
15610         gl_list_indexof_from, gl_list_indexof_from_to): New declarations.
15611         (struct gl_list_implementation): Add fields search_from_to,
15612         indexof_from_to. Remove fields search, indexof.
15613         (gl_list_search): Use the search_from_to method.
15614         (gl_list_search_from, gl_list_search_from_to): New functions.
15615         (gl_list_indexof): Use the indexof_from_to method.
15616         (gl_list_indexof_from, gl_list_indexof_from_to): New functions.
15617         * lib/gl_list.c (gl_list_search): Use the search_from_to method.
15618         (gl_list_search_from, gl_list_search_from_to): New functions.
15619         (gl_list_indexof): Use the indexof_from_to method.
15620         (gl_list_indexof_from, gl_list_indexof_from_to): New functions.
15621         * lib/gl_array_list.c (gl_array_indexof_from_to): Renamed from
15622         gl_array_indexof. Add start_index, end_index arguments.
15623         (gl_array_search_from_to): Renamed from gl_array_search. Add
15624         start_index, end_index arguments.
15625         (gl_array_remove, gl_array_list_implementation): Update.
15626         * lib/gl_carray_list.c (gl_carray_indexof_from_to): Renamed from
15627         gl_carray_indexof. Add start_index, end_index arguments.
15628         (gl_carray_search_from_to): Renamed from gl_carray_search. Add
15629         start_index, end_index arguments.
15630         (gl_carray_remove, gl_carray_list_implementation): Update.
15631         * lib/gl_anylinked_list2.h (gl_linked_search_from_to): Renamed from
15632         gl_linked_search. Add start_index, end_index arguments.
15633         (gl_linked_indexof_from_to): Renamed from gl_linked_indexof. Add
15634         start_index, end_index arguments.
15635         (gl_linked_remove): Update.
15636         * lib/gl_linked_list.c (gl_linked_list_implementation): Update.
15637         * lib/gl_linkedhash_list.c (gl_linkedhash_list_implementation): Update.
15638         * lib/gl_anytree_list1.h (iterstack_item_t): Change type of 'rightp'
15639         field to 'size_t'.
15640         * lib/gl_anytree_list2.h (gl_tree_search_from_to): Renamed from
15641         gl_tree_search. Add start_index, end_index arguments.
15642         (gl_tree_indexof_from_to): Renamed from gl_tree_indexof. Add
15643         start_index, end_index arguments.
15644         (gl_tree_remove): Update.
15645         * lib/gl_avltree_list.c (gl_avltree_list_implementation): Update.
15646         * lib/gl_rbtree_list.c (gl_rbtree_list_implementation): Update.
15647         * lib/gl_anytreehash_list1.h (compare_position_threshold): New
15648         function.
15649         * lib/gl_anytreehash_list2.h (gl_tree_search_from_to): Renamed from
15650         gl_tree_search. Add start_index, end_index arguments.
15651         (gl_tree_indexof_from_to): Renamed from gl_tree_indexof. Add
15652         start_index, end_index arguments.
15653         * lib/gl_avltreehash_list.c (gl_avltreehash_list_implementation):
15654         Update.
15655         * lib/gl_rbtreehash_list.c (gl_rbtreehash_list_implementation): Update.
15656
15657 2006-10-05  Bruno Haible  <bruno@clisp.org>
15658
15659         * modules/fwriteerror (configure.ac): Define GNULIB_FWRITEERROR.
15660
15661         * lib/clean-temp.h (open_temp, fopen_temp, close_temp, fclose_temp,
15662         fwriteerror_temp): New declarations.
15663         * lib/clean-temp.c (uintptr_t): Provide fallback definition.
15664         (descriptors): New variable.
15665         (cleanup): First, close the descriptors.
15666         (register_fd, unregister_fd, open_temp, fopen_temp, close_temp,
15667         fclose_temp, fwriteerror_temp): New functions.
15668
15669 2006-10-04  Jim Meyering  <jim@meyering.net>
15670
15671         * lib/fts.c (fts_open): Tiny comment change.
15672
15673 2006-10-04  Bruno Haible  <bruno@clisp.org>
15674
15675         Make it possible to invoke AC_GNU_SOURCE after gl_LOCK_EARLY.
15676         * m4/lock.m4 (gl_LOCK_EARLY_BODY): New macro, extracted code from
15677         gl_LOCK_BODY.
15678         (gl_LOCK_EARLY): Require gl_LOCK_EARLY_BODY, not gl_LOCK_BODY.
15679         (gl_LOCK_BODY): Remove settings of CPPFLAGS, now done in
15680         gl_LOCK_EARLY_BODY.
15681         (gl_LOCK): Require gl_LOCK_BODY.
15682
15683 2006-10-04  Bruno Haible  <bruno@clisp.org>
15684
15685         * lib/gl_oset.h (gl_setelement_threshold_fn): New type.
15686         (gl_oset_search_atleast): New declaration.
15687         (struct gl_oset_implementation): Add field 'search_atleast'.
15688         (gl_oset_search_atleast): New inline function.
15689         * lib/gl_oset.c (gl_oset_search_atleast): New function.
15690         * lib/gl_array_oset.c (gl_array_search_atleast): New function.
15691         (gl_array_oset_implementation): Update.
15692         * lib/gl_anytree_oset.h (gl_tree_search_atleast): New function.
15693         * lib/gl_avltree_oset.c (gl_avltree_oset_implementation): Update.
15694         * lib/gl_rbtree_oset.c (gl_rbtree_oset_implementation): Update.
15695
15696 2006-10-04  Bruno Haible  <bruno@clisp.org>
15697
15698         * lib/fatal-signal.c (fatal_signals) [WOE32]: Add the SIGBREAK signal.
15699
15700 2006-10-03  Bruno Haible  <bruno@clisp.org>
15701
15702         * lib/gl_rbtreehash_list.c (gl_rbtreehash_list_implementation): Renamed
15703         from gl_avltreehash_list_implementation.
15704
15705 2006-10-03  Bruno Haible  <bruno@clisp.org>
15706
15707         * lib/gl_oset.c (gl_oset_add): Fix return type.
15708
15709 2006-10-02  Paolo Bonzini  <bonzini@gnu.org>  (tiny change)
15710
15711         * lib/quotearg.c (mbstate_t) [!HAVE_MBRTOWC]: #define to int.
15712
15713 2006-10-02  Eric Blake  <ebb9@byu.net>
15714
15715         * modules/strnlen (Depends-on): Add extensions.
15716
15717 2006-10-02  Eric Blake  <ebb9@byu.net>
15718
15719         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Use autoconf's
15720         definition in 2.60+.
15721
15722 2006-10-02  Dmitry V. Levin  <ldv@altlinux.org>
15723
15724         * lib/fts.c (fts_close, fts_build, fts_palloc): Remove redundant
15725         checks.
15726
15727 2006-10-02  Bruno Haible  <bruno@clisp.org>
15728
15729         * gnulib-tool (func_emit_lib_Makefile_am): Don't add no-dependencies
15730         to the AUTOMAKE_OPTIONS.
15731         Reported by Jim Meyering.
15732
15733 2006-09-29  Paul Eggert  <eggert@cs.ucla.edu>
15734
15735         Work around bug in Solaris 10 /proc file system:
15736         /proc/self/fd/NNN/.. isn't the parent directory of
15737         the directory whose file descriptor is NNN.  This needs to
15738         be worked around at run time, not compile time, since a
15739         program might be built on Solaris 8, where things work, and
15740         run on Solaris 10.
15741         * lib/openat-priv.h (BUILD_PROC_NAME): Remove.  All callers changed
15742         to use the following interface instead:
15743         (OPENAT_BUFFER_SIZE): New macro.
15744         (openat_proc_name): New function.
15745         * lib/at-func.c (AT_FUNC_NAME): Adjust to above changes.
15746         * lib/openat.c (openat_permissive, openat_needs_fchdir, fdopendir):
15747         Likewise.
15748         * lib/openat-proc.c: New file.
15749         * modules/openat (Files): Add lib/openat-proc.c.
15750         (Depends-on): Add same-inode, stdbool.
15751         * m4/openat.m4 (gl_FUNC_OPENAT): Add AC_LIBOBJ(openat-proc).
15752
15753 2006-09-29  Bruno Haible  <bruno@clisp.org>
15754
15755         * lib/fwriteerror.h (fwriteerror_no_ebadf): New declaration.
15756         * lib/(do_fwriteerror): Renamed from fwriteerror. Add ignore_ebadf
15757         argument. Set stdout_closed before testing for ferror, not after.
15758         (fwriteerror, fwriteerror_no_ebadf): New functions.
15759
15760 2006-09-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
15761
15762         * m4/intmax.m4 (gt_TYPE_INTMAX_T): Avoid unused variables warning.
15763
15764 2006-09-28  Paolo Bonzini  <bonzini@gnu.org>
15765
15766         * lib/poll.c (rpl_poll) [__APPLE__]: Use FIONREAD instead of MSG_PEEK.
15767         * m4/poll.m4: Look for sys/ioctl.h and sys/filio.h.
15768
15769 2006-09-28  Jim Meyering  <jim@meyering.net>
15770
15771         * lib/mkdir-p.c: Include "dirchownmod.h", not "dirchownmod.c".
15772         Include <unistd.h>.
15773
15774 2006-09-28  Bruno Haible  <bruno@clisp.org>
15775
15776         * modules/avltreehash-list (Depends-on): Add stdint, remove size_max.
15777         * modules/linkedhash-list (Depends-on): Likewise.
15778         * modules/rbtreehash-list (Depends-on): Likewise.
15779
15780 2006-09-28  Bruno Haible  <bruno@clisp.org>
15781
15782         * lib/strndup.h: Simplify the redefinition of strndup.
15783         (_GL_CONCAT, _GL_XCONCAT, __STRNDUP_ID): Remove macros.
15784         * m4/strndup.m4 (gl_FUNC_STRNDUP): Don't define __STRNDUP_PREFIX.
15785
15786 2006-09-28  Bruno Haible  <bruno@clisp.org>
15787
15788         * lib/gl_avltreehash_list.c: Include <stdint.h> instead of size_max.h.
15789         * lib/gl_linkedhash_list.c: Likewise.
15790         * lib/gl_rbtreehash_list.c: Likewise.
15791
15792 2006-09-27  Paul Eggert  <eggert@cs.ucla.edu>
15793
15794         * lib/canon-host.c (canon_host_r): Work around bug in Darwin 7.9.0
15795         getaddrinfo.
15796
15797         * lib/__fpending.h: Don't include <stdio_ext.h> unless
15798         HAVE_DECL___FPENDING.  This avoids a bug with lsbcc, where
15799         it causes <stdio_ext.h> to cause a compile-time error.
15800         Problem reported by Nelson H. F. Beebe.
15801         * lib/getpass.c: Likewise, except for HAVE_DECL___FSETLOCKING instead
15802         of HAVE_DECL___PENDING.
15803
15804         * m4/fpending.m4 (gl_FUNC_FPENDING): Check for stdio_ext at most once.
15805         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for __fsetlocking's
15806         declaration.
15807
15808 2006-09-27  Jim Meyering  <jim@meyering.net>
15809
15810         This file could end up with a definition for a function
15811         named __strndup, rather than rpl_strndup on a system with
15812         incomplete weak_alias support.
15813         * lib/strndup.c (strndup): Rename from __strndup.
15814         Remove #defines that used to map __strndup to strndup.
15815         Don't use K&R prototypes.
15816         Remove LIBC-related code, since this file is not sync'd with glibc.
15817         * lib/strndup.h: Revamp, accordingly.
15818         * m4/strndup.m4: Modernize.
15819
15820 2006-09-26  Paul Eggert  <eggert@cs.ucla.edu>
15821
15822         * modules/savewd (Depends-on): Add 'raise'.
15823         * lib/savewd.c: Include <signal.h>, for 'raise'.
15824
15825 2006-09-26  Jim Meyering  <jim@meyering.net>
15826
15827         * m4/acl.m4 (AC_FUNC_ACL): Disable ACL support altogether
15828         when we detect Darwin 8.7.0's acl_get_file bug.
15829         Rearrange to perform the new (below) run-test while $LIBS
15830         contains any acl-related library.  Set USE_ACL at the end.
15831         (gl_ACL_GET_FILE): New function.
15832
15833 2006-09-26  Eric Blake  <ebb9@byu.net>
15834
15835         * lib/verror.c: Include <config.h> unconditionally.
15836
15837 2006-09-25  Paul Eggert  <eggert@cs.ucla.edu>
15838
15839         * modules/clock-time (Maintainer): Add self.
15840         * modules/getlogin_r (Depends-on): Add extensions.
15841
15842 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
15843
15844         * modules/clock-time: New module.
15845         * modules/nanosleep (Depends-on): Add clock-time.
15846         * modules/gethrxtime (Depends-on): Likewise.
15847         * modules/gettime (Depends-on): Likewise.
15848         * modules/settime (Depends-on): Likewise.
15849
15850         * modules/fts-lgpl: Depend on openat.
15851         * modules/mkancesdirs: Depend on savewd.
15852         * modules/mkdir-p: Likewise.
15853
15854 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
15855
15856         * m4/host-os.m4 (gl_HOST_OS): Require AC_CANONICAL_HOST.
15857
15858         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Rename cache variable from
15859         `gl_have_arbitrary_file_name_length_limit' to
15860         `gl_cv_have_arbitrary_file_name_length_limit', so that caching
15861         actually works between configure runs.
15862
15863 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
15864             Bruno Haible  <bruno@clisp.org>
15865
15866         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Include <string.h>.
15867
15868 2006-09-25  Jim Meyering  <jim@meyering.net>
15869
15870         * m4/fcntl_h.m4 (gl_FCNTL_H): Fix typo in test for failed open.
15871         This typo caused coreutils/tests/dd/misc to fail on Darwin 8.7.0.
15872
15873 2006-09-25  Eric Blake  <ebb9@byu.net>
15874
15875         * gnulib-tool (func_import, func_create_testdir): Fix typos in
15876         exec's in 2006-09-18 patch when shuffling fds.
15877
15878 2006-09-25  Bruno Haible  <bruno@clisp.org>
15879
15880         * m4/getloadavg.m4 (gl_GETLOADAVG): Fix directory in error message.
15881         Reported by Jim Meyering.
15882
15883 2006-09-24  Jim Meyering  <jim@meyering.net>
15884
15885         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Don't use '>' to
15886         compare a pointer against a literal "0".  That caused failures with
15887         at least HP-UX's hpcc.
15888
15889 2006-09-22  Simon Josefsson  <jas@extundo.com>
15890
15891         * modules/gc-sha1:
15892         * modules/gc-md4:
15893         * modules/gc-hmac-sha1:
15894         * modules/gc-hmac-md5:
15895         * modules/gc-des:
15896         * modules/gc-arcfour: Distribute more files.
15897
15898 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
15899
15900         * lib/gl_anylinked_list2.h [lint] (gl_linked_iterator)
15901         (gl_linked_iterator_from_to): Initialize struct completely.
15902         * lib/gl_anytree_list2.h [lint] (gl_tree_iterator): Likewise.
15903         (gl_tree_iterator_from_to): Likewise
15904         * lib/gl_anytree_oset.h [lint] (gl_tree_iterator): Likewise.
15905         * lib/gl_array_list.c [lint] (gl_array_iterator)
15906         (gl_array_iterator_from_to): Likewise.
15907         * lib/gl_array_oset.c [lint] (gl_array_iterator): Likewise.
15908         * lib/gl_carray_list.c [lint] (gl_carray_iterator)
15909         (gl_carray_iterator_from_to): Likewise.
15910
15911         * lib/gc-gnulib.c [GC_USE_HMAC_SHA1]: include hmac.h for hmac_sha1.
15912         * lib/md4.c (md4_process_block): Remove unused variable.
15913         * lib/rijndael-api-fst.c (rijndaelBlockDecrypt): GCC suggests
15914         parentheses for clarity.
15915
15916 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
15917
15918         * modules/bison-i18n (Depends-on): Add gettext.
15919
15920 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
15921
15922         * m4/fsusage.m4 (gl_STATFS_TRUNCATES): Avoid unused variable.
15923         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): Likewise.
15924         * m4/jm-winsz1.m4 (gl_HEADER_TIOCGWINSZ_IN_TERMIOS_H): Likewise;
15925         also add missing comma that caused broken test.
15926         * m4/link-follow.m4 (gl_AC_FUNC_LINK_FOLLOWS_SYMLINK): Include
15927         stdlib.h, for `abort'.
15928         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Avoid unused
15929         variables.
15930         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Check for and
15931         include unistd.h if present, for `rmdir'.
15932         * m4/physmem.m4 (gl_SYS__SYSTEM_CONFIGURATION): Avoid unused
15933         variables.
15934         * m4/putenv.m4 (gl_FUNC_PUTENV): Rewrite using AC_RUN_IFELSE, and
15935         in the process include standard headers for prototypes.
15936         * m4/readutmp.m4 (gl_READUTMP): Require AC_GNU_SOURCE, so utmpxname
15937         gets declared on GNU/Linux.
15938         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Check for and include
15939         unistd.h, for `rmdir'.
15940         * m4/time_r.m4 (gl_TIME_R): Avoid unused variables.
15941
15942         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Avoid expression that is
15943         always true.
15944         * m4/strndup.m4 (gl_FUNC_STRNDUP): include stdlib.h, for `free'.
15945
15946         * m4/sockpfaf.m4 (gl_SOCKET_FAMILIES): Avoid gcc -Wall warnings.
15947
15948 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
15949
15950         * gnulib-tool (func_version): Create output all at once.  This
15951         may help avoid triggering unnecessary SIGPIPEs, and at any
15952         rate it doesn't hurt.
15953
15954 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
15955             Bruno Haible  <bruno@clisp.org>
15956
15957         * m4/lock.m4 (gl_LOCK_BODY): Avoid unused variables warning.
15958         * m4/mbswidth.m4 (gl_MBSWIDTH): Likewise.
15959         * m4/signed.m4 (bh_C_SIGNED): Likewise.
15960
15961         * m4/vasprintf.m4 (gl_PREREQ_VASPRINTF_H): New macro.
15962         (gl_FUNC_VASPRINTF): Invoke it.
15963
15964 2006-09-22  Bruno Haible  <bruno@clisp.org>
15965
15966         * m4/getloadavg.m4 (gl_GETLOADAVG): Expect the directory of
15967         getloadavg.c as first argument.
15968
15969 2006-09-22  Bruno Haible  <bruno@clisp.org>
15970
15971         * gnulib-tool (func_import, func_create_testdir): Set gl_source_base
15972         at the beginning of the gl_INIT macro.
15973         * modules/getloadavg (configure.ac): Pass $gl_source_base to
15974         gl_GETLOADAVG.
15975
15976 2006-09-22  Bruno Haible  <bruno@clisp.org>
15977
15978         * gnulib-tool (func_create_megatestdir): Don't include the config-h
15979         module.
15980         Suggested by Ralf Wildenhues.
15981
15982 2006-09-20  Paul Eggert  <eggert@cs.ucla.edu>
15983
15984         Import this patch from libc:
15985
15986         2006-09-06  Jakub Jelinek  <jakub@redhat.com>
15987
15988         * lib/regex_internal.c (re_string_reconstruct): Handle
15989         offset < pstr->valid_raw_len && pstr->offsets_needed case.
15990         Ensure no bytes read before raw_mbs array.  Pass a saved copy of
15991         pstr->valid_len - 1 rather than pstr->valid_raw_len - 1 to
15992         re_string_context_at.
15993
15994         * m4/regex.m4 (gl_REGEX): Check for locale.h, since the test
15995         now requires it.
15996         (gl_PREREQ_REGEX): Don't check for locale.h any more, since
15997         gl_REGEX now does it for us.
15998         (gl_REGEX): Add test taken from
15999         http://sourceware.org/ml/libc-hacker/2006-09/msg00008.html.
16000
16001         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Require AC_SYS_LARGEFILE.
16002         Check that large offsets work.  Modernize Autoconf usages.
16003         Prefer "yes" to mean a good thing rather than a bad.
16004         Don't put "#define mkstemp" in config.h, as this might interfere
16005         with standard system headers that "#define mkstemp mkstemp64".
16006
16007         * modules/mkstemp (Depends-on): Add extensions, so that
16008         mkstemp is visible on some platforms.
16009         (Makefile.am): Add mkstemp.h to EXTRA_DIST.
16010         (Include): Change to "mkstemp.h" from <stdlib.h>.
16011         (Files): Add mkstemp.h.
16012
16013         * lib/mkstemp.h: New file, since some standard headers
16014         #define mkstemp.
16015         * lib/mkstemp.c: Revamp to put the !_LIBC code together.
16016         Include "mkstemp.h".
16017         Make the _LIBC code resemble glibc original more,
16018         e.g., use K&R style.
16019         * lib/mkstemp-safer.c: Include "mkstemp.h" instead of <stdlib.h>.
16020         (mkstemp): Remove, since mkstemp.h does this for us.
16021         * lib/stdlib--.h: Include mkstemp.h.
16022
16023         Import this patch from libc:
16024
16025         2006-04-07  Ulrich Drepper  <drepper@redhat.com>
16026
16027         * lib/tempname.c (__gen_tempname): Change attempts_min
16028         into a macro.  Use preprocessor to decide how to initialize
16029         attempts [Coverity CID 67].
16030
16031 2006-09-20  Bruno Haible  <bruno@clisp.org>
16032
16033         * lib/mkdtemp.c: Import from libc.
16034         2006-04-07  Ulrich Drepper  <drepper@redhat.com>
16035                 * sysdeps/posix/tempname.c (__gen_tempname): Change
16036                 attempts_min into a macro.  Use preprocessor to decide how to
16037                 initialize attempts [Coverity CID 67].
16038         2001-11-27  Paul Eggert  <eggert@twinsun.com>
16039                 * sysdeps/posix/tempname.c (__gen_tempname): Try at least
16040                 ATTEMPTS_MIN or TMP_MAX times, whichever is greater.
16041
16042 2006-09-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
16043
16044         * gnulib-tool (func_exit): New function, to allow to pass the
16045         exit status portably through the trap.  Use everywhere.
16046         (--help, --version): Signal a write error.
16047         (trap): catch SIGPIPE, for write errors.
16048         Exit at the end of the trap, with the correct exit status.
16049
16050 2006-09-19  Karl Berry  <karl@gnu.org>
16051
16052         * doc/gnulib.texi: note about the license texinfo files.
16053
16054 2006-09-19  Eric Blake  <ebb9@byu.net>
16055
16056         * gnulib-tool: Avoid space-tab.
16057
16058 2006-09-18  Paul Eggert  <eggert@cs.ucla.edu>
16059
16060         * lib/getaddrinfo.c (getaddrinfo) [defined HAVE_IPV6]: Fix typo
16061         that prevented coreutils 6.1 from building.  Problem reported
16062         by Petter Reinholdtsen.
16063
16064 2006-09-18  Paul Eggert  <eggert@cs.ucla.edu>
16065
16066         * gnulib-tool (avoidlist): Fix typo that broke options like
16067         --avoid=lock that are used by coreutils bootstrap.
16068
16069 2006-09-18  Mark D. Baushke  <mdb@gnu.org>
16070
16071         * m4/inttypes.m4 (gl_INTTYPES_H): Quote "test" args
16072         more systematically.
16073
16074 2006-09-18  Jim Meyering  <jim@meyering.net>
16075
16076         * lib/savewd.c (savewd_restore): Don't shadow: s/status/child_status/.
16077
16078 2006-09-18  Bruno Haible  <bruno@clisp.org>
16079
16080         * modules/inttypes (Files): Remove m4/inttypes-h.m4.
16081
16082 2006-09-18  Bruno Haible  <bruno@clisp.org>
16083
16084         * m4/inttypes-h.m4 (gl_HEADER_INTTYPES_H): Remove macro.
16085         * m4/inttypes-pri.m4: Require autoconf >= 2.52.
16086         (gt_INTTYPES_PRI): Invoke AC_CHECK_HEADERS on inttypes.h. Test
16087         ac_cv_header_inttypes_h instead of gl_cv_header_inttypes_h.
16088         * m4/gettext.m4: Require autoconf >= 2.52.
16089         (gt_INTL_SUBDIR_CORE): Invoke AC_CHECK_HEADERS on inttypes.h.
16090         * m4/inttypes.m4 (gl_INTTYPES_H): Test ac_cv_header_inttypes_h instead
16091         of gl_cv_header_inttypes_h.
16092
16093 2006-09-18  Bruno Haible  <bruno@clisp.org>
16094
16095         * lib/javaversion.c: Include configmake.h.
16096
16097 2006-09-18  Bruno Haible  <bruno@clisp.org>
16098
16099         * gnulib-tool (func_import, func_create_testdir): Use exec tricks to
16100         avoid that the while loops be executed in a subshell.
16101
16102 2006-09-18  Bruno Haible  <bruno@clisp.org>
16103
16104         * MODULES.html.sh (func_module): Break long lines.
16105         Suggested by Bruce Korb <bkorb@gnu.org>.
16106
16107 2006-09-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
16108
16109         Speed up by a factor of 1.12.
16110         * gnulib-tool (nl): New variable.
16111         (func_import): Rewrite include directive extraction to only read each
16112         directive once.
16113
16114 2006-09-17  Bruno Haible  <bruno@clisp.org>
16115
16116         * modules/javaversion (Makefile.am): Remove DEFS setting.
16117         (Depends-on): Add configmake, for PKGDATADIR definition.
16118
16119 2006-09-17  Bruno Haible  <bruno@clisp.org>
16120
16121         * gnulib-tool (func_create_testdir): Rewrite all files at once.
16122
16123 2006-09-17  Bruno Haible  <bruno@clisp.org>
16124
16125         * gnulib-tool (func_append): New function, stolen from libtool.m4.
16126         (func_modules_transitive_closure, func_modules_add_dummy,
16127         func_modules_to_filelist, func_import, func_create_testdir,
16128         func_create_megatestdir, ...): Use it wherever possible.
16129         Suggested by Ralf Wildenhues.
16130
16131 2006-09-16  Karl Berry  <karl@gnu.org>
16132
16133         * doc/fdl.texi (ADDENDUM): switch to @heading from @appendixsubsec,
16134         to avoid sectioning errors.
16135         * doc/lgpl.texi, gpl.texi (Copying): downcase @unnumbered title.
16136         [ifinfo]: blank line after @center-ed titles.
16137         * doc/lgpl.texi (Library Copying): Rename main node to GNU LGPL.
16138         Spell FSF address consistently with others.
16139         (These changes approved by rms.)
16140
16141 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
16142
16143         Speed up by a factor of 1.61.
16144         * gnulib-tool (func_modules_transitive_closure): Rewrite to not check
16145         already checked module names again.
16146
16147 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
16148
16149         Speed up by a factor of 1.13.
16150         * gnulib-tool (func_import): Rewrite all old_files at once; likewise
16151         for new_files, and the input to func_add_or_update.
16152
16153 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
16154
16155         * gnulib-tool (func_all_modules, func_modules_to_filelist, func_import,
16156         func_create_testdir, ...): Change 'sort | uniq' to 'sort -u'.
16157
16158 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
16159
16160         * modules/mkancesdirs (Depends-on): Add fcntl.
16161         * modules/savewd: New file.
16162         * MODULES.html.sh (File system functions): Add savewd.
16163
16164         * modules/configmake (Makefile.am): Add support for the
16165         Automake-supplied PKGLIBDIR, PKGINCLUDEDIR, PKGDATADIR.
16166
16167 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
16168
16169         * m4/savewd.m4: New file.
16170
16171 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
16172
16173         * lib/dirchownmod.c: Don't include fcntl.h; no longer needed.
16174         (dirchownmod): New arg FD.  All callers changed.
16175         Use FD rather than opening the directory ourself, as opening is
16176         now the caller's responsibility.
16177         * lib/dirchownmod.h: Likewise.
16178         * lib/mkancesdirs.c: Include <sys/types.h>, for portability to older
16179         hosts that require <sys/types.h> before <sys/stat.h>.  Include
16180         fcntl.h, savewd.h, and unistd.h, not dirname.h and stat-macros.h.
16181         (test_dir): Remove.
16182         (mkancesdirs): Return length of prefix of FILE that has already
16183         been made, or -2 if there is a child doing the work.  Redo
16184         algorithm so that it is O(N) rather than O(N**2).  Optimize away
16185         ".", and treat ".." specially since it might stray back into
16186         already-created areas.  Use a subprocess if necessary.  New arg
16187         WD; all users changed.  MAKE_DIR function should now return 1
16188         if it creates a directory that is not readable.  Return -2 if
16189         a child process is spun off.
16190         * lib/mkancesdirs.h: Include <stddef.h>, for ptrdiff_t.
16191         Adjust signature to match code.
16192         * lib/mkdir-p.c: Include dirname.h, for IS_ABSOLUTE_FILE_NAME.
16193         (make_dir_parents): Use a subprocess if necessary.  New arg WD;
16194         all users changed.
16195         * lib/savewd.c, lib/savewd.h: New files.
16196
16197 2006-09-15  Jim Meyering  <jim@meyering.net>
16198
16199         * modules/rename-dest-slash: New module.
16200         * MODULES.html.sh (posix_compat): Add it here.
16201
16202         * modules/rename: Reflect vb_FUNC_RENAME -> gl_FUNC_RENAME change.
16203
16204 2006-09-15  Jim Meyering  <jim@meyering.net>
16205
16206         * m4/rename-dest-slash.m4 (gl_FUNC_RENAME_TRAILING_DEST_SLASH): New
16207         file.
16208
16209         * m4/rename.m4 (gl_FUNC_RENAME): Rename from vb_FUNC_RENAME.
16210
16211 2006-09-15  Jim Meyering  <jim@meyering.net>
16212
16213         * lib/rename-dest-slash.c (has_trailing_slash): Use
16214         FILE_SYSTEM_PREFIX_LEN, for non-POSIX systems.
16215         (rpl_rename_dest_slash): Perform the cheaper trailing slash
16216         test before testing whether SRC is a directory.
16217         Suggestions from Bruno Haible.
16218
16219         Avoid a warning about an unused variable.
16220         * lib/regex_internal.c (re_dfa_add_node): Move declaration of "type"
16221         into the #ifdef block where it's used.
16222
16223         * lib/rename-dest-slash.c: New file.
16224
16225 2006-09-14  Bruno Haible  <bruno@clisp.org>
16226
16227         * lib/allocsa.c: Include <config.h> unconditionally.
16228         * lib/asnprintf.c: Likewise.
16229         * lib/asprintf.c: Likewise.
16230         * lib/c-strcasecmp.c: Likewise.
16231         * lib/c-strcasestr.c: Likewise.
16232         * lib/c-strncasecmp.c: Likewise.
16233         * lib/c-strstr.c: Likewise.
16234         * lib/classpath.c: Likewise.
16235         * lib/clean-temp.c: Likewise.
16236         * lib/concatpath.c: Likewise.
16237         * lib/copy-file.c: Likewise.
16238         * lib/csharpcomp.c: Likewise.
16239         * lib/csharpexec.c: Likewise.
16240         * lib/execute.c: Likewise.
16241         * lib/fatal-signal.c: Likewise.
16242         * lib/findprog.c: Likewise.
16243         * lib/fwriteerror.c: Likewise.
16244         * lib/gl_array_list.c: Likewise.
16245         * lib/gl_array_oset.c: Likewise.
16246         * lib/gl_avltree_list.c: Likewise.
16247         * lib/gl_avltree_oset.c: Likewise.
16248         * lib/gl_avltreehash_list.c: Likewise.
16249         * lib/gl_carray_list.c: Likewise.
16250         * lib/gl_linked_list.c: Likewise.
16251         * lib/gl_linkedhash_list.c: Likewise.
16252         * lib/gl_list.c: Likewise.
16253         * lib/gl_oset.c: Likewise.
16254         * lib/gl_rbtree_list.c: Likewise.
16255         * lib/gl_rbtree_oset.c: Likewise.
16256         * lib/gl_rbtreehash_list.c: Likewise.
16257         * lib/imaxabs.c: Likewise.
16258         * lib/imaxdiv.c: Likewise.
16259         * lib/javacomp.c: Likewise.
16260         * lib/javaexec.c: Likewise.
16261         * lib/javaversion.c: Likewise.
16262         * lib/linebreak.c: Likewise.
16263         * lib/localcharset.c: Likewise.
16264         * lib/lock.c: Likewise.
16265         * lib/mbchar.c: Likewise.
16266         * lib/mbswidth.c: Likewise.
16267         * lib/mkdtemp.c: Likewise.
16268         * lib/pipe.c: Likewise.
16269         * lib/printf-args.c: Likewise.
16270         * lib/printf-parse.c: Likewise.
16271         * lib/progname.c: Likewise.
16272         * lib/progreloc.c: Likewise.
16273         * lib/readlink.c: Likewise.
16274         * lib/sh-quote.c: Likewise.
16275         * lib/stpcpy.c: Likewise.
16276         * lib/stpncpy.c: Likewise.
16277         * lib/strcasecmp.c: Likewise.
16278         * lib/strcasestr.c: Likewise.
16279         * lib/strcspn.c: Likewise.
16280         * lib/striconv.c: Likewise.
16281         * lib/strncasecmp.c: Likewise.
16282         * lib/strnlen1.c: Likewise.
16283         * lib/strstr.c: Likewise.
16284         * lib/strtok_r.c: Likewise.
16285         * lib/tls.c: Likewise.
16286         * lib/tmpdir.c: Likewise.
16287         * lib/unicodeio.c: Likewise.
16288         * lib/unsetenv.c: Likewise.
16289         * lib/vasnprintf.c: Likewise.
16290         * lib/vasprintf.c: Likewise.
16291         * lib/wait-process.c: Likewise.
16292         * lib/xallocsa.c: Likewise.
16293         * lib/xsetenv.c: Likewise.
16294         * lib/xstriconv.c: Likewise.
16295
16296 2006-09-13  Simon Josefsson  <jas@extundo.com>
16297
16298         * m4/getdate.m4: Don't AC_LIBOBJ([getdate]), automake takes care of
16299         that internally, suggested by Ralf Wildenhues
16300         <Ralf.Wildenhues@gmx.de>.
16301
16302 2006-09-13  Simon Josefsson  <jas@extundo.com>
16303
16304         * gnulib-tool (func_emit_lib_Makefile_am): Use $(LIBOBJS), not
16305         @LIBOBJS@.
16306         Suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
16307
16308 2006-09-13  Paul Eggert  <eggert@cs.ucla.edu>
16309
16310         * lib/_fpending.c: Include <config.h> unconditionally, since we no
16311         longer worry about uses that don't define HAVE_CONFIG_H.
16312         * lib/acl.c, lib/alloca.c, lib/argmatch.c, lib/atexit.c:
16313         * lib/backupfile.c, lib/basename.c, lib/c-stack.c, lib/c-strtod.c:
16314         * lib/calloc.c,lib/ canon-host.c, lib/canonicalize.c, lib/chdir-long.c:
16315         * lib/chdir-safer.c, lib/chown.c, lib/cloexec.c, lib/close-stream.c:
16316         * lib/closeout.c, lib/creat-safer.c, lib/cycle-check.c, lib/diacrit.c:
16317         * lib/dirchownmod.c, lib/dirfd.c, lib/dirname.c, lib/dup-safer.c:
16318         * lib/dup2.c, lib/error.c, lib/euidaccess.c, lib/exclude.c:
16319         * lib/exitfail.c, lib/fchmodat.c, lib/fchown-stub.c, lib/fd-safer.c:
16320         * lib/file-type.c, lib/fileblocks.c, lib/filemode.c, lib/filenamecat.c:
16321         * lib/fnmatch.c, lib/fopen-safer.c, lib/fprintftime.c, lib/free.c:
16322         * lib/fsusage.c, lib/ftruncate.c, lib/fts-cycle.c, lib/fts.c:
16323         * lib/full-write.c, lib/gai_strerror.c, lib/getcwd.c, lib/getdate.y:
16324         * lib/getdomainname.c, lib/getgroups.c, lib/gethostname.c:
16325         * lib/gethrxtime.c, lib/getloadavg.c, lib/getlogin_r.c:
16326         * lib/getndelim2.c, lib/getnline.c, lib/getopt.c, lib/getopt1.c:
16327         * lib/getpass.c, lib/gettime.c, lib/gettimeofday.c, lib/getugroups.c:
16328         * lib/getusershell.c, lib/glob.c, lib/group-member.c:
16329         * lib/hard-locale.c, lib/hash-pjw.c, lib/hash.c, lib/human.c:
16330         * lib/idcache.c, lib/inet_ntop.c, lib/inet_pton.c, lib/inttostr.c:
16331         * lib/isdir.c, lib/lchown.c, lib/linebuffer.c, lib/long-options.c:
16332         * lib/lstat.c, lib/malloc.c, lib/md5.c, lib/memcasecmp.c, lib/memchr.c:
16333         * lib/memcmp.c, lib/memcoll.c, lib/memcpy.c, lib/memmove.c:
16334         * lib/memrchr.c, lib/mkancesdirs.c, lib/mkdir-p.c, lib/mkdir.c:
16335         * lib/mkdirat.c, lib/mkstemp-safer.c, lib/mkstemp.c, lib/modechange.c:
16336         * lib/mountlist.c, lib/nanosleep.c, lib/obstack.c, lib/open-safer.c:
16337         * lib/openat-die.c, lib/openat.c, lib/pagealign_alloc.c, lib/physmem.c:
16338         * lib/pipe-safer.c, lib/posixtm.c, lib/posixver.c, lib/putenv.c:
16339         * lib/quote.c, lib/quotearg.c, lib/raise.c, lib/readtokens.c:
16340         * lib/readtokens0.c, lib/readutmp.c, lib/realloc.c, lib/regex.c:
16341         * lib/rename.c, lib/rmdir.c, lib/rpmatch.c, lib/safe-read.c:
16342         * lib/same.c, lib/save-cwd.c, lib/savedir.c, lib/setenv.c:
16343         * lib/settime.c, lib/sha1.c, lib/sig2str.c, lib/snprintf.c:
16344         * lib/strdup.c, lib/strerror.c, lib/strftime.c, lib/stripslash.c:
16345         * lib/strndup.c, lib/strnlen.c, lib/strpbrk.c, lib/strtod.c:
16346         * lib/strtoimax.c, lib/strtol.c, lib/strverscmp.c, lib/tempname.c:
16347         * lib/time_r.c, lib/timegm.c, lib/tmpfile-safer.c, lib/unlinkdir.c:
16348         * lib/userspec.c, lib/utime.c, lib/utimecmp.c, lib/utimens.c:
16349         * lib/version-etc-fsf.c, lib/version-etc.c, lib/xalloc-die.c:
16350         * lib/xgetcwd.c, lib/xgethostname.c, lib/xmalloc.c, lib/xmemcoll.c:
16351         * lib/xnanosleep.c, lib/xreadlink.c, lib/xstrtod.c, lib/xstrtoimax.c:
16352         * lib/xstrtol.c, lib/xstrtoumax.c, lib/yesno.c:
16353         Likewise.
16354
16355 2006-09-13  Eric Blake  <ebb9@byu.net>
16356
16357         * lib/getopt.c: Fix typo in last commit.
16358
16359 2006-09-12  Sergey Poznyakoff  <gray@gnu.org.ua>
16360
16361         * lib/argp-help.c (argp_doc): Make sure NULL is not passed to
16362         dgettext.
16363
16364 2006-09-12  Jim Meyering  <jim@meyering.net>
16365
16366         * lib/nanosleep.c: Include <sys/types.h> before sys/select.h, to avoid
16367         compilation failure (due to use of pid_t in latter) on NetBSD 1.6.
16368         Reported by Nelson H. F. Beebe.
16369
16370 2006-09-10  Sergey Poznyakoff  <gray@gnu.org.ua>
16371
16372         * lib/argp-parse.c (__argp_parse) [!_LIBC]: Make sure
16373         program_invocation_name and program_invocation_short_name are
16374         initialized.
16375         * lib/argp-namefrob.h: Move declarations of program_invocation_name
16376         and program_invocation_short_name to argp.h, so they are visible
16377         to user programs.
16378         * lib/argp.h: Likewise
16379
16380 2006-09-10  Bruno Haible  <bruno@clisp.org>
16381
16382         * modules/mkdtemp (Files): Remove m4/ulonglong.m4, m4/stdint_h.m4,
16383         m4/inttypes_h.m4, m4/uintmax_t.m4.
16384
16385 2006-09-10  Bruno Haible  <bruno@clisp.org>
16386
16387         * m4/mkdtemp.m4 (gl_PREREQ_MKDTEMP): Don't require
16388         gl_AC_TYPE_UINTMAX_T.
16389
16390 2006-09-10  Bruno Haible  <bruno@clisp.org>
16391
16392         * lib/mkdtemp.c: Include <stdint.h> always. Don't include <inttypes.h>.
16393
16394 2006-09-09  Sergey Poznyakoff  <gray@gnu.org.ua>
16395
16396         * lib/argp.h (struct argp): Document the N_("..") "\v" N_("..")
16397         convention.  Text proposed by Bruno Haible.
16398         (struct argp_option): Document the use of N_() wrappers.
16399
16400         * lib/argp-help.c (argp_doc): Split the untranslated doc string on
16401         '\v', and translate the two parts separately, instead of feeding
16402         the whole string to gettext.  This allows to exclude
16403         '\v' from the strings visible to the translator by writing doc
16404         strings as N_("..") "\v" N_("..").
16405
16406 2006-09-09  Paul Eggert  <eggert@cs.ucla.edu>
16407
16408         * config/srclist.txt: Undo latest change; the bug was fixed.
16409
16410 2006-09-09  Bruno Haible  <bruno@clisp.org>
16411
16412         * gnulib-tool (func_emit_lib_Makefile_am): Eliminate lib_LDFLAGS
16413         assignments if building a library without libtool.
16414         (func_emit_tests_Makefile_am): Likewise. Handle lib_* variables as
16415         in func_emit_lib_Makefile_am.
16416         (func_import): When building a static library libfoo.a, arrange to
16417         define variables LIBFOO_LIBDEPS and LIBFOO_LTLIBDEPS.
16418         (func_create_testdir): Likewise.
16419         * modules/gc (configure.ac, Makefile.am): If building statically,
16420         augment gl_libdeps and gl_ltlibdeps instead of lib_LDFLAGS.
16421         * modules/iconvme (configure.ac, Makefile.am): Likewise.
16422         * modules/striconv (configure.ac, Makefile.am): Likewise.
16423         Based on a suggestion by Ralf Wildenhues.
16424
16425 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
16426
16427         * m4/mktime.m4 (AC_FUNC_MKTIME): Sync from Autoconf.
16428         Check for unistd.h too, since Autoconf doesn't assume POSIX.
16429         Also:
16430
16431         2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
16432         Add year_2050_test to catch glibc bug 2821
16433         <http://sourceware.org/bugzilla/show_bug.cgi?id=2821>.
16434
16435         2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
16436         Prefer #ifdef to #if.
16437
16438         2006-04-02  Paul Eggert  <eggert@cs.ucla.edu>
16439         Return from 'main' instead of calling 'exit'.
16440
16441 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
16442
16443         * lib/mktime.c (guess_time_tm): Fix bug where mktime
16444         returned the maximum time_t value rather than (time_t) -1.
16445         Problem originally reported by William Bardwell
16446         <http://sourceware.org/bugzilla/show_bug.cgi?id=2821>.
16447
16448         * lib/isapipe.h (HAVE_FIFO_PIPES) [!defined HAVE_FIFO_PIPES]:
16449         Moved to here ...
16450         * lib/isapipe.c (HAVE_FIFO_PIPES) [!defined HAVE_FIFO_PIPES]:
16451         ... from here.
16452
16453 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
16454
16455         * config/srclist.txt: Temporarily comment out mktime.c until glibc bug
16456         2821 is fixed.
16457
16458 2006-09-08  Jim Meyering  <jim@meyering.net>
16459
16460         Don't make generated files read-only.  That would bother too many
16461         people.  However, do retain the ability to work when targets are
16462         read-only: remove the destination and temporary files before writing
16463         them (when generated via sed or echo), or by using the -f option for
16464         both cp and mv commands.  Suggestion to use -f from Paul Eggert.
16465         * modules/alloca-opt, modules/argz, modules/arpa_inet:
16466         * modules/byteswap, modules/configmake, modules/fcntl:
16467         * modules/fnmatch, modules/getopt, modules/glob, modules/inttypes:
16468         * modules/localcharset, modules/netinet_in, modules/poll:
16469         * modules/stdbool, modules/stdint, modules/sys_select:
16470         * modules/sys_socket, modules/sys_stat, modules/sysexits:
16471
16472 2006-09-08  Jim Meyering  <jim@meyering.net>
16473
16474         Avoid new build failure on FreeBSD 6.0.
16475         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Include
16476         <sys/param.h> when testing whether getmntinfo uses statvfs.  Patch by
16477         Pavel Tsekov, in <http://savannah.gnu.org/bugs/?17643>.
16478
16479 2006-09-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
16480
16481         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Don't use plain echo.
16482
16483 2006-09-07  Jim Meyering  <jim@meyering.net>
16484
16485         Fix global typo in last change: use chmod u-w, not chmod u-x.
16486         Spotted by Paul Eggert and Bruce Korb.
16487         * modules/alloca-opt, modules/argz, modules/arpa_inet:
16488         * modules/byteswap, modules/configmake, modules/fcntl:
16489         * modules/fnmatch, modules/getopt, modules/glob, modules/inttypes:
16490         * modules/localcharset, modules/netinet_in, modules/poll:
16491         * modules/stdbool, modules/stdint, modules/sys_select:
16492         * modules/sys_socket, modules/sys_stat, modules/sysexits:
16493
16494 2006-09-06  Jim Meyering  <jim@meyering.net>
16495
16496         Make generated files be read-only.
16497         * modules/alloca-opt (Makefile.am): Work also when $@ is read-only.
16498         Ensure that each generated file is now read-only.
16499         * modules/argz: Likewise.
16500         * modules/arpa_inet: Likewise.
16501         * modules/byteswap: Likewise.
16502         * modules/configmake: Likewise.
16503         * modules/fcntl: Likewise.
16504         * modules/fnmatch: Likewise.
16505         * modules/getopt: Likewise.
16506         * modules/glob: Likewise.
16507         * modules/inttypes: Likewise.
16508         * modules/netinet_in: Likewise.
16509         * modules/poll: Likewise.
16510         * modules/stdbool: Likewise.
16511         * modules/stdint: Likewise.
16512         * modules/sys_select: Likewise.
16513         * modules/sys_socket: Likewise.
16514         * modules/sys_stat: Likewise.
16515         * modules/sysexits: Likewise.
16516         * modules/localcharset: Same as above, but continue using temporary
16517         file named "t-$@" (why different?) rather than the "$@-t" used
16518         everywhere else.
16519
16520         * modules/sysexits (Makefile.am): Replace literal occurrences
16521         of "sysexit.h" more readable, and more consistent, "$@".
16522
16523 2006-09-06  Bruno Haible  <bruno@clisp.org>
16524
16525         * modules/striconv: New file.
16526         * modules/xstriconv: New file.
16527         * MODULES.html.sh (Internationalization functions): Add striconv,
16528         xstriconv.
16529
16530 2006-09-06  Bruno Haible  <bruno@clisp.org>
16531
16532         * modules/gc (Makefile.am): Augment lib_LDFLAGS, not lib_LIBADD.
16533         * modules/iconvme (Makefile.am): Likewise. Also handle the case of
16534         not using libtool correctly.
16535
16536 2006-09-06  Bruno Haible  <bruno@clisp.org>
16537
16538         * lib/striconv.h: New file.
16539         * lib/striconv.c: New file, merging iconvme.c with GNU gettext's
16540         iconvstring.c.
16541         * lib/xstriconv.h: New file.
16542         * lib/xstriconv.c: New file.
16543
16544 2006-09-06  Bruno Haible  <bruno@clisp.org>
16545
16546         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
16547         lib_..._LDFLAGS.
16548
16549 2006-09-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
16550
16551         * lib/argz_.h: Sync from Libtool.
16552
16553         2006-09-04  George Bosilca <bosilca@cs.utk.edu>
16554                 and Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
16555
16556         * lib/libltdl/argz_.h: It's __cplusplus, not _cplusplus.
16557
16558 2006-09-05  Davide Angelocola  <davide.angelocola@tiscali.it>
16559
16560         * modules/trim: New file.
16561
16562 2006-09-05  Davide Angelocola  <davide.angelocola@tiscali.it>
16563
16564         * lib/trim.h: New file.
16565         * lib/trim.c: New file.
16566
16567 2006-09-05  Bruno Haible  <bruno@clisp.org>
16568
16569         * MODULES.html.sh (String handling): Add trim.
16570
16571 2006-09-04  Karl Berry  <karl@gnu.org>
16572
16573         * config/srclist.txt (signed.m4, gettext.m4): changes not propagated
16574         until next release.
16575
16576 2006-09-03  Bruno Haible  <bruno@clisp.org>
16577
16578         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Locate mingw shared libraries
16579         correctly.
16580
16581 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
16582
16583         * m4/getloadavg.m4 (gl_GETLOADAVG): Use CONFIGURING_GETLOADAVG,
16584         not gl_GETLOADAVG.  Omit unneeded semicolons.
16585         Problems reported by Ralf Wildenhues in
16586         <http://lists.gnu.org/archive/html/bug-gnulib/2006-09/msg00000.html>.
16587         (gl_PREREQ_GETLOADAVG): Use AC_DEFUN, not m4_define.  Put
16588         at the end, which is the usual gnulib style.
16589
16590         * m4/fstypename.m4 (gl_FSTYPENAME): Use AC_CHECK_MEMBERS instead
16591         of doing all the work ourselves.
16592         * m4/fsusage.m4 (gl_PREREQ_FSUSAGE_EXTRA): Don't check for
16593         sys/statvfs.h since the code doesn't use HAVE_SYS_STATVFS_H.
16594
16595 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
16596
16597         * lib/getloadavg.c: Use CONFIGURING_GETLOADAVG, not gl_GETLOADAVG.
16598         Problem reported by Ralf Wildenhues in
16599         <http://lists.gnu.org/archive/html/bug-gnulib/2006-09/msg00000.html>.
16600
16601         * lib/mountlist.c: All uses of HAVE_F_FSTYPENAME_IN_STATFS replaced by
16602         HAVE_STRUCT_STATFS_F_FSTYPENAME.
16603
16604 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
16605
16606         * gnulib-tool (func_emit_lib_Makefile_am): Fix typos in
16607         yesterday's patch by changing test -n to test -z.
16608
16609 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
16610
16611         * modules/getloadavg (Files): Add m4/getloadavg.m4.
16612         (configure.ac): AC_FUNC_GETLOADAVG -> gl_GETLOADAVG, as
16613         the former is now obsolescent.
16614
16615         * modules/chdir-long (Depends-on): Add fcntl.
16616
16617 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
16618
16619         * m4/fnmatch.m4: Add comment that Autoconf AC_FUNC_FNMATCH is
16620         obsolescent, and programs should use gnulib instead.
16621         * m4/getloadavg.m4: New file, with contents taken from Autoconf
16622         but with prefixes changed.
16623
16624 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
16625
16626         * lib/getloadavg.c [defined gl_GETLOADAVG]: Don't include config.h
16627         or stdbool.h, because they might not exist while configuring.
16628
16629         * lib/chdir-long.c: Include <fcntl.h>, for O_DIRECTORY.
16630         Don't include unistd.h or limits.h; not needed, since chdir-long.h
16631         does that for us.
16632         (O_DIRECTORY): Remove.
16633
16634 2006-08-31  Eric Blake  <ebb9@byu.net>
16635
16636         * gnulib-tool: Don't let emacs change spaces to TAB.
16637
16638 2006-08-31  Bruno Haible  <bruno@clisp.org>
16639
16640         * gnulib-tool: When calling func_import more than once, do it in a
16641         subshell.
16642         Reported by Eric Blake <ebb9@byu.net>.
16643
16644 2006-08-31  Bruno Haible  <bruno@clisp.org>
16645
16646         * gnulib-tool (nl): Remove variable.
16647         (sed_transform_lib_file): Use more robust test for config-h module.
16648         (func_import): Fix typo in 2006-08-25 patch.
16649
16650 2006-08-31  Bruno Haible  <bruno@clisp.org>
16651
16652         * gnulib-tool (func_emit_lib_Makefile_am): When --makefile-name was
16653         specified, augment Makefile.am variables instead of assigning them.
16654
16655 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
16656
16657         Work around a bug in both the Linux and SunOS 64-bit kernels:
16658         nanosleep mishandles sleeps for longer than 2**31 seconds.
16659         Problem reported by Frank v Waveren in
16660         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00298.html>.
16661         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Require gl_CLOCK_TIME.
16662         Check for nanosleep bug.
16663         (LIB_NANOSLEEP): Append clock_gettime library if needed.
16664
16665 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
16666
16667         Work around a bug in both the Linux and SunOS 64-bit kernels:
16668         nanosleep mishandles sleeps for longer than 2**31 seconds.
16669         Problem reported by Frank v Waveren in
16670         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00298.html>.
16671         * lib/nanosleep.c (BILLION): New constant.
16672         (getnow) [HAVE_BUG_BIG_NANOSLEEP]: New functions.
16673         (rpl_nanosleep) [HAVE_BUG_BIG_NANOSLEEP]: Completely new
16674         implementation.
16675
16676 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
16677
16678         * modules/nanosleep (Depends-on): Add gettime.
16679
16680 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
16681         and Simon Josefsson  <jas@extundo.com>
16682         and Oskar Liljeblad  <oskar@osk.mine.nu>
16683
16684         * MODULES.html.sh (Support for building documentation): Add gpl, lgpl.
16685         * gnulib-tool (func_import): New license type 'unmodifiable license
16686         text'.
16687         * modules/fdl: Use it.  Longer description.
16688         * module/gpl, module/lgpl: New files.
16689
16690 2006-08-30  Jim Meyering  <jim@meyering.net>
16691
16692         * lib/isapipe.c (isapipe): Rename local s/fd/fd_pair/ to avoid
16693         shadowing the parameter.
16694
16695 2006-08-29  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
16696
16697         Sync from Libtool:
16698
16699         2006-08-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
16700
16701         * lib/libltdl/argz.c: Use `#ifdef HAVE_CONFIG_H', to facilitate code
16702         sharing with gnulib.  Report by Eric Blake.
16703
16704 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
16705
16706         * modules/isapipe: New file.
16707         * MODULES.html.sh (File descriptor based Input/Output): Add isapipe.
16708
16709 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
16710
16711         * modules/configmake (Makefile.am): Add a comment, and omit
16712         the CONFIGMAKE_ prefix from generated macro names.  Suggested
16713         by Bruno Haible.
16714
16715 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
16716
16717         * m4/isapipe.m4: New file.
16718
16719 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
16720
16721         * lib/isapipe.c, lib/isapipe.h: New files.
16722
16723 2006-08-29  Jim Meyering  <jim@meyering.net>
16724
16725         * modules/configmake (Makefile.am): Make configmake.h depend on
16726         Makefile.  Otherwise, a stale configmake.h could hang around.
16727
16728 2006-08-29  Eric Blake  <ebb9@byu.net>
16729
16730         * lib/error.c (error_at_line, print_errno_message): Match libc, after
16731         resolution of upstream bug 3044.
16732
16733 2006-08-29  Bruno Haible  <bruno@clisp.org>
16734
16735         * modules/localcharset (Depends-on): Add configmake.
16736         (Makefile.am): Remove setting of LIBDIR through DEFS.
16737
16738 2006-08-29  Bruno Haible  <bruno@clisp.org>
16739
16740         * lib/localcharset.c: Include configmake.h in order to get LIBDIR
16741         defined.
16742
16743 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
16744
16745         * modules/fcntl: New file.
16746         * modules/chdir-safer (Depends-on): Add fcntl.
16747         * modules/fts: Likewise.
16748         * modules/mkdir-p: Likewise.
16749
16750         * modules/stdint (Makefile.am): Do not substitute ABSOLUTE_INTTYPES_H.
16751         This undoes the most recent change, since we're now addressing the
16752         problem in a different way.
16753
16754         * gnulib-tool (emit_lib_Makefile_am): Don't put $makefile_name
16755         into output, since the output might be called Makefile.am even
16756         if $makefile_name is something different.
16757         (func_import): Use $makefile_am rather than
16758         ${makefile_name-Makefile.am}, to fix a bug where makefile_name was
16759         empty.
16760
16761         * modules/inttypes (Files): Add m4/inttypes-h.m4.
16762
16763 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
16764
16765         * m4/inttypes.m4 (gl_INTTYPES_H): Move ABSOLUTE_INTTYPES_H code here...
16766         * m4/stdint.m4 (gl_STDINT_H): ... from here.  This undoes the most
16767         recent change to stdint.m4, since we're now addressing the problem in a
16768         different way.
16769
16770 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
16771
16772         * m4/fcntl_h.m4: New file.
16773
16774 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
16775
16776         * lib/fcntl_.h: New file.
16777         * lib/chdir-safer.c (O_DIRECTORY, O_NOFOLLOW): Remove, now that we have
16778         the fcntl module.
16779         * lib/dirchownmod.c: Likewise.
16780         * lib/fts.c: Likewise.
16781
16782         * lib/inttypes_.h [defined _GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H]:
16783         Include @ABSOLUTE_INTTYPES_H@ if available, but do nothing else.
16784         * lib/stdint_.h (_GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H): Define
16785         just before including <inttypes.h>, to avoid circular inclusion.
16786
16787 2006-08-28  Jim Meyering  <jim@meyering.net>
16788
16789         * doc/visibility.texi: Actually read and correct the grammar of the
16790         sentence affected by yesterday's change.
16791
16792 2006-08-28  Eric Blake  <ebb9@byu.net>
16793
16794         * modules/inttypes (Makefile.am): Fix sed error when inttypes.h
16795         needs wrapper.
16796
16797 2006-08-28  Eric Blake  <ebb9@byu.net>
16798
16799         * m4/inttypes.m4 (gl_INTTYPES_H): Fix missing #endif.
16800
16801 2006-08-28  Eric Blake  <ebb9@byu.net>
16802
16803         * m4/codeset.m4 (AM_LANGINFO_CODESET): Avoid compiler warning.
16804
16805 2006-08-28  Bruno Haible  <bruno@clisp.org>
16806
16807         * modules/c-strstr: New file, from GNU gettext.
16808         * MODULES.html.sh (String handling): Add c-strstr.
16809
16810 2006-08-28  Bruno Haible  <bruno@clisp.org>
16811
16812         * m4/inttypes.m4 (gl_INTTYPES_H): Don't test for the existence of SCNX*
16813         macros.
16814         Reported by Eric Blake.
16815
16816 2006-08-28  Bruno Haible  <bruno@clisp.org>
16817
16818         * lib/vasnprintf.c (EOVERFLOW): Remove definition.
16819         (VASNPRINTF): Return a string of length > INT_MAX without failing.
16820         * lib/vasprintf.c: Include errno.h, limits.h.
16821         (EOVERFLOW): New fallback definition.
16822         (vasprintf): Test here whether the string length is > INT_MAX.
16823         * lib/vsnprintf.c: Include errno.h, limits.h.
16824         (EOVERFLOW): New fallback definition.
16825         (vsnprintf): Fix bug when generated string was too long for the buffer.
16826         Test here whether the string length is > INT_MAX.
16827
16828 2006-08-28  Bruno Haible  <bruno@clisp.org>
16829
16830         * lib/inttypes_.h (SCNX*): Remove definitions.
16831         Reported by Eric Blake.
16832
16833 2006-08-28  Bruno Haible  <bruno@clisp.org>
16834
16835         * lib/c-strstr.h: New file, from GNU gettext.
16836         * lib/c-strstr.c: New file, from GNU gettext.
16837
16838 2006-08-28  Bruno Haible  <bruno@clisp.org>
16839
16840         * gnulib-tool: Reorder some statements.
16841
16842 2006-08-28  Bruno Haible  <bruno@clisp.org>
16843
16844         * gnulib-tool: New option --makefile-name.
16845         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am): Use
16846         $makefile_name.
16847         (func_import): Write $makefile_name to the cache file, and read it from
16848         there unless explicitly specified. Use $makefile_name as file name
16849         instead of Makefile.am. Adjust the recommendations accordingly.
16850
16851 2006-08-28  Bruno Haible  <bruno@clisp.org>
16852
16853         * gnulib-tool (func_verify_module): Check against misapplying patch.
16854
16855 2006-08-28  Bruno Haible  <bruno@clisp.org>
16856
16857         * gnulib-tool (func_relativize, func_relconcat): New functions.
16858         Give an error if --local-dir is given with --update.
16859         Remove trailing slashes from $local_gnulib_dir.
16860         (func_import): Store the relativized $local_gnulib_dir in
16861         gnulib-cache.m4, and read it from there if not specified explicitly.
16862
16863 2006-08-28  Bruno Haible  <bruno@clisp.org>
16864
16865         * gnulib-tool (func_get_tests_module): Don't assume that $gnulib_dir
16866         is the current directory. Respect also $local_gnulib_dir.
16867
16868 2006-08-28  Bruno Haible  <bruno@clisp.org>
16869             Simon Josefsson  <jas@extundo.com>
16870
16871         BeOS portability.
16872         * lib/getaddrinfo.c (PF_INET, PF_UNSPEC): New macros.
16873
16874 2006-08-27  Jim Meyering  <jim@meyering.net>
16875
16876         * doc/visibility.texi: Remove duplicate word: "pointer".
16877
16878 2006-08-26  Bruno Haible  <bruno@clisp.org>
16879
16880         * modules/inttypes (Files): Add lib/inttypes_.h, remove lib/inttypes.h.
16881         Add m4/inttypes.m4, remove m4/_inttypes_h.m4 and m4/include_next.m4.
16882         (Makefile.am): Create inttypes.h from inttypes_.h.
16883         * modules/stdint (Makefile.am): Substitute also ABSOLUTE_INTTYPES_H.
16884
16885         * modules/imaxabs: New file.
16886
16887         * modules/imaxdiv: New file.
16888
16889 2006-08-26  Bruno Haible  <bruno@clisp.org>
16890
16891         * m4/inttypes.m4: New file.
16892         * m4/_inttypes_h.m4: Remove file.
16893         * m4/inttypes-pri.m4 (gt_INTTYPES_PRI): Also AC_SUBST
16894         PRI_MACROS_BROKEN.
16895         * m4/stdint.m4 (gl_STDINT_H): Define also ABSOLUTE_INTTYPES_H.
16896
16897         * m4/imaxabs.m4: New file.
16898
16899         * m4/imaxdiv.m4: New file.
16900
16901 2006-08-26  Bruno Haible  <bruno@clisp.org>
16902
16903         * lib/inttypes_.h: New file.
16904         * lib/inttypes.h: Remove file.
16905         * lib/stdint_.h: Include <inttypes.h> through its absolute filename.
16906
16907         * lib/imaxabs.c: New file.
16908
16909         * lib/imaxdiv.c: New file.
16910
16911 2006-08-25  Paul Eggert  <eggert@cs.ucla.edu>
16912
16913         New config-h module, so that "make" output needn't be cluttered
16914         by -DHAVE_CONFIG_H.
16915         * MODULES.html.sh (Support for building libraries and executables):
16916         Add config-h.
16917         * modules/config-h: New file.
16918         * gnulib-tool (nl, sed_transform_lib_file): New vars.
16919         (func_import): Turn "#ifdef HAVE_CONFIG_H" to "#if 1" if
16920         the config-h module is used.
16921
16922         New configmake module, so that "make" output needn't be cluttered
16923         by fluff like '-DLIBDIR=\"/usr/local/lib\"'.
16924         * MODULES.html.sh (Support for building libraries and executables):
16925         Add configmake.
16926         * modules/configmake: New file.
16927
16928 2006-08-25  Paul Eggert  <eggert@cs.ucla.edu>
16929
16930         * m4/config-h.m4: New file.
16931
16932 2006-08-24  Paul Eggert  <eggert@cs.ucla.edu>
16933
16934         * config/srclist.txt: Add elisp-comp.
16935
16936 2006-08-24  Paul Eggert  <eggert@cs.ucla.edu>
16937
16938         * MODULES.html.sh (Support for building libraries and executables):
16939         Add elisp-comp.
16940         * build-aux/elisp-comp: New file.
16941         * modules/elisp-comp: New file.
16942
16943 2006-08-24  Bruno Haible  <bruno@clisp.org>
16944
16945         * gnulib-tool (func_create_testdir): Use non-default values of
16946         sourcebase and m4base.
16947
16948 2006-08-24  Bruno Haible  <bruno@clisp.org>
16949
16950         * MODULES.html.sh (Compatibility checks for POSIX:2001 functions: Fix
16951         HTML structure.
16952
16953 2006-08-23  Paul Eggert  <eggert@cs.ucla.edu>
16954
16955         * modules/openat (Depends-on): Add lchown.
16956
16957 2006-08-23  Bruno Haible  <bruno@clisp.org>
16958
16959         * gnulib-tool (func_import, func_create_testdir): Emit an invocation
16960         of gl_LOCK_EARLY instead of gl_LOCK.
16961
16962 2006-08-23  Bruno Haible  <bruno@clisp.org>
16963
16964         * m4/lock.m4 (gl_LOCK_BODY): Change the default value of gl_use_threads
16965         on OSF/1 to no.
16966         Reported by Stephen Cartwright <sgcartwr@ucalgary.ca>.
16967
16968 2006-08-23  Bruno Haible  <bruno@clisp.org>
16969
16970         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Don't consider BeOS statvfs
16971         as unusable.
16972
16973         * m4/lock.m4 (gl_LOCK_EARLY): Renamed from gl_LOCK.
16974         (gl_LOCK_BODY): Remove gl_PREREQ_LOCK invocation.
16975         (gl_LOCK): New macro.
16976
16977 2006-08-22  Simon Josefsson  <jas@extundo.com>
16978
16979         * modules/gc-md5 (Makefile.am): Need to add md5.h, after changes
16980         to md5 module.
16981
16982 2006-08-22  Simon Josefsson  <jas@extundo.com>
16983
16984         * MODULES.html.sh: Add "Support for maintaining and release
16985         projects".
16986
16987         * build-aux/gnupload: New file, from coreutils.
16988
16989 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
16990
16991         Avoid the need for AC_LIBSOURCES in m4 macros.
16992         * modules/arcfour (EXTRA_DIST): Add arcfour.h.
16993         * modules/arctwo (EXTRA_DIST): Add arctwo.h.
16994         * modules/check-version (EXTRA_DIST): Add check-version.h.
16995         * modules/crc (EXTRA_DIST): Add crc.h.
16996         * modules/des (EXTRA_DIST): Add des.h.
16997         * modules/gc (EXTRA_DIST): Add gc.h.
16998         * modules/getdelim (EXTRA_DIST): Add getdelim.h.
16999         * modules/getline (EXTRA_DIST): Add getline.h.
17000         * modules/getlogin_r (EXTRA_DIST): Add getlogin_r.h.
17001         * modules/hmac-md5 (EXTRA_DIST): Add hmac.h.
17002         * modules/hmac-sha1 (EXTRA_DIST): Add hmac.h.
17003         * modules/md2 (EXTRA_DIST): Add md2.h.
17004         * modules/md4 (EXTRA_DIST): Add md4.h.
17005         * modules/pagealign_alloc (EXTRA_DIST): Add pagealign_alloc.h.
17006         * modules/read-file (EXTRA_DIST): Add read-file.h.
17007         * modules/readline (EXTRA_DIST): Add readline.h.
17008         * modules/rijndael (EXTRA_DIST): Add rijndael-alg-fst.h,
17009         rijndael-api-fst.h.
17010
17011 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
17012
17013         * m4/rijndael.m4 (gl_ARCFOUR):
17014         * m4/arctwo.m4 (gl_ARCTWO):
17015         * m4/check-version.m4 (gl_CHECK_VERSION):
17016         * m4/crc.m4 (gl_CRC):
17017         * m4/des.m4 (gl_DES):
17018         * m4/gc-pbkdf2-sha1.m4 (gl_GC_PBKDF2_SHA1):
17019         * m4/gc.m4 (gl_GC):
17020         * m4/getdelim.m4 (gl_FUNC_GETDELIM):
17021         * m4/getline.m4 (gl_FUNC_GETLINE):
17022         * m4/getlogin_r.m4 (gl_GETLOGIN_R_SUBSTITUTE):
17023         * m4/hmac-md5.m4 (gl_HMAC_MD5):
17024         * m4/hmac-sha1.m4 (gl_HMAC_SHA1):
17025         * m4/md2.m4 (gl_MD2):
17026         * m4/md4.m4 (gl_MD4):
17027         * m4/pagealign_alloc.m4 (gl_PAGEALIGN_ALLOC):
17028         * m4/read-file.m4 (gl_FUNC_READ_FILE):
17029         * m4/readline.m4 (gl_FUNC_READLINE):
17030         * m4/rijndael.m4 (gl_RIJNDAEL):
17031         Don't use AC_LIBSOURCES; instead, rely on the files in ../modules/
17032         to get the necessary .h files and whatnot.
17033
17034 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
17035
17036         * config/srclist.txt: Remove gnupload, since coreutils now syncs from
17037         gnulib rather than the other way around.
17038         * config/srclistvars.sh (COREUTILS): Remove.
17039
17040 2006-08-22  Jim Meyering  <jim@meyering.net>
17041
17042         * modules/mkdir-p (Makefile.am): Fix typo: s/lib+SOURCES/lib_SOURCES/.
17043
17044         * modules/getpass-gnu (Makefile.am): Add getpass.h to EXTRA_DIST.
17045
17046 2006-08-22  Eric Blake  <ebb9@byu.net>
17047
17048         * modules/regexprops-generic: New file.
17049         * MODULES.html.sh (Support for building documentation): List it.
17050
17051 2006-08-22  Eric Blake  <ebb9@byu.net>
17052
17053         * m4/stdint_h.m4 (gl_AC_HEADER_STDINT_H): Avoid compiler warning.
17054         * m4/inttypes_h.m4 (gl_AC_HEADER_INTTYPES_H): Likewise.
17055         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Likewise.
17056         * m4/intmax_t.m4 (gt_AC_TYPE_INTMAX_T): Likewise.
17057
17058 2006-08-22  Bruno Haible  <bruno@clisp.org>
17059
17060         * gnulib-tool (func_emit_lib_Makefile_am): Don't treat lib_LIBRARIES
17061         and lib_LTLIBRARIES like the other lib_* variables.
17062
17063 2006-08-22  Bruno Haible  <bruno@clisp.org>
17064
17065         * build-aux/x-to-1.in: New file, from GNU gettext.
17066
17067 2006-08-22  Bruno Haible  <bruno@clisp.org>
17068
17069         * m4/readutmp.m4 (gl_READUTMP): Compile readutmp.c only if <utmp.h> or
17070         <utmpx.h> exists.
17071
17072 2006-08-22  Bruno Haible  <bruno@clisp.org>
17073
17074         * lib/readutmp.h: Skip most definitions if neither <utmp.h> nor
17075         <utmpx.h> exists.
17076
17077 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
17078
17079         BeOS portability.
17080         * lib/dirchownmod.c (dirchownmod): Don't use fchmod if it doesn't
17081         exist.
17082         Problem reported by Bruno Haible.
17083
17084 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
17085
17086         Avoid the need for AC_LIBSOURCES in m4 macros.
17087         * modules/acl (EXTRA_DIST): Add acl.h.
17088         * modules/argmatch (Files): Add m4/argmatch.m4.
17089         (configure.ac): Add gl_ARGMATCH.
17090         (EXTRA_DIST): Renamed from lib_SOURCES, for
17091         consistency with the other modules.  Remove argmatch.c.
17092         * modules/backupfile (EXTRA_DIST): Add backupfile.h.
17093         * modules/c-strtod (EXTRA_DIST): Add c-strtod.h.
17094         * modules/c-strtold (EXTRA_DIST): Add c-strtod.c, c-strtod.h.
17095         * modules/canonhost (EXTRA_DIST): Add c-canonhost.h.
17096         * modules/canonicalize (EXTRA_DIST): Add canonicalize.h.
17097         * modules/chdir-long (EXTRA_DIST): Add chdir-long.h.
17098         * modules/chdir-safer (EXTRA_DIST): Add chdir-safer.h.
17099         * modules/cloexec (EXTRA_DIST): Add cloexec.h.
17100         * modules/close-stream (EXTRA_DIST): Add close-stream.h.
17101         * modules/closeout (EXTRA_DIST): Add closeout.h.
17102         * modules/cycle-check (EXTRA_DIST): Add cycle-check.h.
17103         * modules/dev-ino (EXTRA_DIST): Add dev-ino.h.
17104         * modules/dirfd (EXTRA_DIST): Add dirfd.h.
17105         * modules/dirname (EXTRA_DIST): Renamed from lib_SOURCES.  Add
17106         dirname.h; remove basename.c and stripslash.c.
17107         * modules/exclude (EXTRA_DIST): Add exclude.h.
17108         * modules/exitfail (EXTRA_DIST): Add exitfail.h.
17109         * modules/fcntl-safer (EXTRA_DIST): Add fcntl-safer.h fcntl--.h.
17110         * modules/file-type (EXTRA_DIST): Add file-type.h.
17111         * modules/filemode (EXTRA_DIST): Add filemode.h.
17112         * modules/filenamecat (EXTRA_DIST): Add filenamecat.h.
17113         * modules/fopen-safer (EXTRA_DIST): Add stdio-safer.h stdio--.h.
17114         * modules/fpending (EXTRA_DIST): Add __fpending.h.
17115         * modules/fprintftime (EXTRA_DIST): Add fprintftime.h.
17116         * modules/fsusage (EXTRA_DIST): Add fsusage.h.
17117         * modules/fts (EXTRA_DIST): Add fts_.h fts-cycle.c.
17118         * modules/getcwd (EXTRA_DIST): Add getcwd.h.
17119         * modules/getdate (EXTRA_DIST): Add getdate.c.
17120         * modules/gethrxtime (EXTRA_DIST): Add gethrxtime.h xtime.h.
17121         * modules/getpagesize (EXTRA_DIST): Add getpagesize.h.
17122         * modules/getpass (EXTRA_DIST): Add getpass.h.
17123         * modules/glob (EXTRA_DIST): Add glob_.h glob-libc.h.
17124         * modules/group-member (EXTRA_DIST): Add group-member.h.
17125         * modules/hard-locale (EXTRA_DIST): Add hard-locale.h.
17126         * modules/hash (EXTRA_DIST): Add hash.h.
17127         * modules/human (EXTRA_DIST): Add human.h.
17128         * modules/inttypes (EXTRA_DIST): Add inttypes.h.
17129         * modules/lchmod (EXTRA_DIST): Add lchmod.h.
17130         * modules/lchown (EXTRA_DIST): Add lchown.h.
17131         * modules/long-options (EXTRA_DIST): Add long-options.h.
17132         * modules/lstat (EXTRA_DIST): Add lstat.h.
17133         * modules/md5 (EXTRA_DIST): Add memcasecmp.h.
17134         * modules/memcoll (EXTRA_DIST): Add memcoll.h.
17135         * modules/mempcpy (EXTRA_DIST): Add mempcpy.h.
17136         * modules/memrchr (EXTRA_DIST): Add memrchr.h.
17137         * modules/memxor (EXTRA_DIST): Add memxor.h.
17138         * modules/mkancesdirs (EXTRA_DIST): Add mkancesdirs.h.
17139         * modules/mkdir-p (EXTRA_DIST): Add modechange.h.
17140         * modules/mountlist (EXTRA_DIST): Add mountlist.h.
17141         * modules/openat (EXTRA_DIST): Add at-func.c openat.h openat-priv.h.
17142         * modules/pathmax (EXTRA_DIST): Add pathmax.h.
17143         * modules/physmem (EXTRA_DIST): Add physmem.h.
17144         * modules/posixtm (EXTRA_DIST): Add posixtm.h.
17145         * modules/posixver (EXTRA_DIST): Add posixver.h.
17146         * modules/quote (EXTRA_DIST): Add quote.h.
17147         * modules/quotearg (EXTRA_DIST): Add quotearg.h.
17148         * modules/readtokens (EXTRA_DIST): Add readtokens.h.
17149         * modules/readutmp (EXTRA_DIST): Add readutmp.h.
17150         * modules/regex (EXTRA_DIST): Add regcomp.c regex.h regex_internal.c
17151         regex_internal.h regexec.c.
17152         * modules/safe-read (EXTRA_DIST): Add safe-read.h.
17153         * modules/safe-write (EXTRA_DIST): Add safe-write.h.
17154         * modules/same (EXTRA_DIST): Add same.h.
17155         * modules/same-inode (EXTRA_DIST): Add same-inode.h.
17156         * modules/save-cwd (EXTRA_DIST): Add save-cwd.h.
17157         * modules/savedir (EXTRA_DIST): Add savedir.h.
17158         * modules/sha1 (EXTRA_DIST): Add sha1.h.
17159         * modules/sig2str (EXTRA_DIST): Add sig2str.h.
17160         * modules/stat-macros (EXTRA_DIST): Add stat-macros.h.
17161         * modules/stat-time (EXTRA_DIST): Add stat-time.h.
17162         * modules/stdlib-safer (EXTRA_DIST): Add stdlib-safer.h stdlib--.h.
17163         * modules/strdup (EXTRA_DIST): Add strdup.h.
17164         * modules/strftime (EXTRA_DIST): Add strftime.h.
17165         * modules/strndup (EXTRA_DIST): Add strndup.h.
17166         * modules/strnlen (EXTRA_DIST): Add strnlen.h.
17167         * modules/strverscmp (EXTRA_DIST): Add strverscmp.h.
17168         * modules/time_r (EXTRA_DIST): Add time_r.h.
17169         * modules/timespec (EXTRA_DIST): Add timespec.h.
17170         * modules/tmpfile-safer (EXTRA_DIST): Add stdio-safer.h stdio--.h.
17171         * modules/unistd-safer (EXTRA_DIST): Add unistd-safer.h unistd--.h.
17172         * modules/unlinkdir (EXTRA_DIST): Add unlinkdir.h.
17173         * modules/unlocked-io (EXTRA_DIST): Add unlocked-io.h.
17174         * modules/userspec (EXTRA_DIST): Add userspec.h.
17175         * modules/utimecmp (EXTRA_DIST): Add utimecmp.h.
17176         * modules/utimens (EXTRA_DIST): Add utimens.h.
17177         * modules/xalloc (EXTRA_DIST): Add xalloc.h.
17178         * modules/xgetcwd (EXTRA_DIST): Add xgetcwd.h.
17179         * modules/xnanosleep (EXTRA_DIST): Add xnanosleep.h.
17180         * modules/xreadlink (EXTRA_DIST): Add xreadlink.h.
17181         * modules/xstrtod (EXTRA_DIST): Add xstrtod.h.
17182         * modules/xstrtol (EXTRA_DIST): Add xstrtol.h.
17183         * modules/xstrtold (EXTRA_DIST): Add xstrtod.c xstrtod.h.
17184         * modules/yesno (EXTRA_DIST): Add yesno.h.
17185
17186 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
17187
17188         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Check for fchmod.
17189
17190         * m4/argmatch.m4: New file, from coreutils with AC_LIBSOURCES removed.
17191         * m4/dev-ino.m4, same-inode.m4: Remove.
17192
17193         * m4/_inttypes_h.m4 (gl_INTTYPES_H):
17194         * m4/acl.m4 (AC_FUNC_ACL):
17195         * m4/backupfile.m4 (gl_BACKUPFILE):
17196         * m4/c-strtod.m4 (gl_C99_STRTOLD):
17197         * m4/canon-host.m4 (gl_CANON_HOST):
17198         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME):
17199         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG):
17200         * m4/chdir-safer.m4 (gl_CHDIR_SAFER):
17201         * m4/cloexec.m4 (gl_CLOEXEC):
17202         * m4/close-stream.m4 (gl_CLOSE_STREAM):
17203         * m4/closeout.m4 (gl_CLOSEOUT):
17204         * m4/dirfd.m4 (gl_FUNC_DIRFD):
17205         * m4/dirname.m4 (gl_DIRNAME):
17206         * m4/exclude.m4 (gl_EXCLUDE):
17207         * m4/exitfail.m4 (gl_EXITFAIL):
17208         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER):
17209         * m4/file-type.m4 (gl_FILE_TYPE):
17210         * m4/filemode.m4 (gl_FILEMODE):
17211         * m4/filenamecat.m4 (gl_FILE_NAME_CONCAT):
17212         * m4/fpending.m4 (gl_FUNC_FPENDING):
17213         * m4/fprintftime.m4 (gl_FPRINTFTIME):
17214         * m4/fts.m4 (gl_FUNC_FTS):
17215         * m4/getcwd.m4 (gl_FUNC_GETCWD_NULL):
17216         * m4/getdate.m4 (gl_GETDATE):
17217         * m4/gethrxtime.m4 (gl_GETHRXTIME):
17218         * m4/getpagesize.m4 (gl_GETPAGESIZE):
17219         * m4/getpass.m4 (gl_FUNC_GETPASS):
17220         * m4/gettime.m4 (gl_GETTIME):
17221         * m4/getugroups.m4 (gl_GETUGROUPS):
17222         * m4/glob.m4 (gl_GLOB_SUBSTITUTE):
17223         * m4/group-member.m4 (gl_FUNC_GROUP_MEMBER):
17224         * m4/hard-locale.m4 (gl_HARD_LOCALE):
17225         * m4/hash.m4 (gl_HASH):
17226         * m4/idcache.m4 (gl_IDCACHE):
17227         * m4/lchmod.m4 (gl_FUNC_LCHMOD):
17228         * m4/lchown.m4 (gl_FUNC_LCHOWN):
17229         * m4/long-options.m4 (gl_LONG_OPTIONS):
17230         * m4/lstat.m4 (gl_FUNC_LSTAT):
17231         * m4/md5.m4 (gl_MD5):
17232         * m4/memcasecmp.m4 (gl_MEMCASECMP):
17233         * m4/memcoll.m4 (gl_MEMCOLL):
17234         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY):
17235         * m4/memrchr.m4 (gl_FUNC_MEMRCHR):
17236         * m4/memxor.m4 (gl_MEMXOR):
17237         * m4/mkancesdirs.m4 (gl_MKANCESDIRS):
17238         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS):
17239         * m4/modechange.m4 (gl_MODECHANGE):
17240         * m4/mountlist.m4 (gl_MOUNTLIST):
17241         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP):
17242         * m4/openat.m4 (gl_FUNC_OPENAT):
17243         * m4/pathmax.m4 (gl_PATHMAX):
17244         * m4/physmem.m4 (gl_PHYSMEM):
17245         * m4/posixtm.m4 (gl_POSIXTM):
17246         * m4/posixver.m4 (gl_POSIXVER):
17247         * m4/quote.m4 (gl_QUOTE):
17248         * m4/quotearg.m4 (gl_QUOTEARG):
17249         * m4/readtokens.m4 (gl_READTOKENS):
17250         * m4/readutmp.m4 (gl_READUTMP):
17251         * m4/regex.m4 (gl_REGEX):
17252         * m4/safe-read.m4 (gl_SAFE_READ):
17253         * m4/safe-write.m4 (gl_SAFE_WRITE):
17254         * m4/same.m4 (gl_SAME):
17255         * m4/save-cwd.m4 (gl_SAVE_CWD):
17256         * m4/savedir.m4 (gl_SAVEDIR):
17257         * m4/settime.m4 (gl_SETTIME):
17258         * m4/sha1.m4 (gl_SHA1):
17259         * m4/sig2str.m4 (gl_FUNC_SIG2STR):
17260         * m4/stat-macros.m4 (gl_STAT_MACROS):
17261         * m4/stat-time.m4 (gl_STAT_TIME):
17262         * m4/stdio-safer.m4 (gl_FOPEN_SAFER):
17263         * m4/stdlib-safer.m4 (gl_STDLIB_SAFER):
17264         * m4/strdup.m4 (gl_FUNC_STRDUP):
17265         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME):
17266         * m4/strndup.m4 (gl_FUNC_STRNDUP):
17267         * m4/strnlen.m4 (gl_FUNC_STRNLEN):
17268         * m4/strverscmp.m4 (gl_FUNC_STRVERSCMP):
17269         * m4/time_r.m4 (gl_TIME_R):
17270         * m4/timespec.m4 (gl_TIMESPEC):
17271         * m4/unistd-safer.m4 (gl_UNISTD_SAFER):
17272         * m4/unlinkdir.m4 (gl_UNLINKDIR):
17273         * m4/unlocked-io.m4 (gl_FUNC_GLIBC_UNLOCKED_IO):
17274         * m4/userspec.m4 (gl_USERSPEC):
17275         * m4/utimecmp.m4 (gl_UTIMECMP):
17276         * m4/utimens.m4 (gl_UTIMENS):
17277         * m4/xalloc.m4 (gl_XALLOC):
17278         * m4/xgetcwd.m4 (gl_XGETCWD):
17279         * m4/xnanosleep.m4 (gl_XNANOSLEEP):
17280         * m4/xreadlink.m4 (gl_XREADLINK):
17281         * m4/xstrtod.m4 (gl_XSTRTOD):
17282         * m4/yesno.m4 (gl_YESNO):
17283         Don't use AC_LIBSOURCES; instead, rely on the files in ../modules/
17284         to get the necessary .h files and whatnot.
17285
17286 2006-08-21  Mark D. Baushke  <mdb@gnu.org>
17287             Bruno Haible  <bruno@clisp.org>
17288
17289         * gnulib-tool (func_verify_module): Work around Sun's non-POSIX 1003.2
17290         /bin/sh understanding of '!' conditional negation.
17291
17292 2006-08-21  Jim Meyering  <jim@meyering.net>
17293
17294         * modules/openat (Depends-on): Really alphabetize.
17295
17296         * modules/acl (Depends-on): Add error and quote.
17297
17298         * check-module (find_included_lib_files): Add at-func.c to the
17299         ok-to-include-more-than-once white list.
17300
17301         * modules/openat (Depends-on): Add lstat.  Alphabetize.
17302
17303 2006-08-21  Bruno Haible  <bruno@clisp.org>
17304
17305         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
17306         Emit a pkgdata_DATA variable only if some snippets add contents to it.
17307         Reported by Martin Lambers <marlam@marlam.de>.
17308
17309 2006-08-21  Bruno Haible  <bruno@clisp.org>
17310
17311         * gnulib-tool (func_emit_lib_Makefile_am): If the snippets already
17312         specify an installation location, don't emit a noinst_LIBRARIES or
17313         noinst_LTLIBRARIES assignment.
17314
17315 2006-08-21  Bruno Haible  <bruno@clisp.org>
17316
17317         BeOS portability.
17318         * modules/mbchar (Include): Don't test HAVE_WCTYPE_H any more, since
17319         BeOS has mbrtowc() but no <wctype.h>.
17320
17321 2006-08-21  Bruno Haible  <bruno@clisp.org>
17322
17323         BeOS portability.
17324         * m4/mbchar.m4 (gl_MBCHAR): Compile mbchar.c also if <wctype.h> doesn't
17325         exist.
17326
17327 2006-08-21  Bruno Haible  <bruno@clisp.org>
17328
17329         BeOS portability.
17330         * lib/mbchar.h: Include <wctype.h> only if it exists.
17331
17332 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
17333
17334         Remove files that are no longer needed by their respective modules.
17335         * m4/obstack.m4: Remove.
17336         * m4/strerror_r.m4: Remove.
17337         * m4/uint32_t.m4: Remove.
17338         * m4/uintptr_t.m4: Remove.
17339         * m4/ullong_max.m4: Remove.
17340         * m4/xstrtoimax.m4: Remove.
17341         * m4/xstrtoumax.m4: Remove.
17342
17343         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Do not require
17344         gl_AC_TYPE_UINTMAX_T, gl_STRUCT_DEV_INO, or gl_SAME_INODE, since gnulib
17345         dependencies now capture this.
17346
17347         * m4/cycle-check.m4 (gl_CYCLE_CHECK):
17348         Do not use AC_LIBSOURCES, since gnulib modules now do this.
17349         * m4/fsusage.m4 (gl_FSUSAGE): Likewise.
17350         * m4/human.m4 (gl_HUMAN): Likewise.
17351         * m4/inttostr.m4 (gl_INTTOSTR): Likewise.
17352         * m4/xstrtol.m4 (gl_XSTRTOL): Likewise.
17353
17354         * m4/filemode.m4 (gl_FILEMODE): Require AC_STRUCT_ST_DM_MODE.
17355
17356         * m4/filemode.m4 (gl_PREREQ_FSUSAGE_EXTRA): Do not require
17357         gl_AC_TYPE_INTMAX_T or gl_AC_TYPE_UINTMAX_T, since we now require
17358         stdint.
17359         * m4/human.m4 (gl_HUMAN): Likewise.
17360         * m4/inttostr.m4 (gl_PREREQ_INTTOSTR): Likewise.
17361         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Likewise.
17362         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Likewise.
17363         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Likewise.
17364         * m4/xstrtol (gl_XSTRTOL): Likewise.
17365
17366         * m4/gethrxtime.m4 (gl_XTIME): gl_AC_TYPE_LONG_LONG ->
17367         AC_TYPE_LONG_LONG_INT.
17368         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Likewise.
17369         * m4/strtoll.m4 (gl_FUNC_STRTOLL): Likewise.
17370         * m4/strtoull.m4 (gl_FUNC_STRTOULL): Likewise, for unsigned long.
17371         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Likewise.
17372
17373         * m4/human.m4 (gl_HUMAN): Do not require AM_STDBOOL_H since we depend
17374         on stdbool.
17375
17376         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL_H, gl_PREREQ_XSTRTOL): Remove.
17377         (gl_PREREQ_XSTRTOUL): Remove.
17378
17379         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Check for hasmntopt.
17380
17381         * m4/posixver.m4: Fix comment since head -1 now works even in POSIX
17382         mode.
17383
17384 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
17385
17386         Add and change modules to make it easier for coreutils to use
17387         gnulib-tool.
17388         * modules/backupfile (Files): Remove m4/d-ino.m4.
17389         (Depends-on): Add d-ino.
17390         * modules/cycle-check (Depends-on): Add stdint.
17391         (lib_SOURCES): Add cycle-check.h.
17392         * modules/d-ino: New module.
17393         * modules/d-type: New module.
17394         * modules/error (Files): Remove m4/strerror_r.m4.
17395         * modules/filemode (Files): Add m4/st_dm_mode.m4.
17396         * modules/fsuage (Files): Remove m4/ulonglong.m4, m4/stdint_h.m4,
17397         m4/inttypes_h.m4, m4/uintmax_t.m4.
17398         (Depends-on): Add stdint.
17399         (lib_SOURCES): Add fsusage.h.
17400         * modules/getcwd (Files): Remove d-ino.m4.
17401         (Depends-on): Add d-ino.
17402         * modules/getndelim2 (Depends-on): Add stdint.
17403         * modules/glob (Files): Remove m4/d-type.m4.
17404         (Depends-on): Add d-type.
17405         * modules/host-os: New module.
17406         * modules/human (Files):  Remove m4/ulonglong.m4, m4/stdint_h.m4,
17407         m4/inttypes_h.m4, m4/uintmax_t.m4.
17408         * Depends-on: Add stdint.
17409         (lib_SOURCES): Add human.h.
17410         * modules/inttostr (Files): Remove m4/intmax_t.m4,
17411         m4/inttostr.m4, m4/inttypes_h.m4, m4/longlong.m4, m4/stdint_h.m4,
17412         m4/uintmax_t.m4, m4/ulonglong.m4.
17413         (Depends-on): Add stdint.
17414         (EXTRA_DIST): Add inttostr.h.
17415         * modules/lchmod: New module.
17416         * modules/link-follow: New module.
17417         * modules/mkdir-p (Files): Remove lib/lchmod.h, m4/lchmod.m4.
17418         (Depends-on): Add lchmod.
17419         * modules/mkstemp (Files): Remove m4/ulonglong.m4,
17420         m4/stdint_h.m4, m4/inttypes_h.m4, m4/uintmax_t.m4.
17421         (Depends-on): Add stdint.
17422         * modules/obstack (Files): Remove m4/inttypes_h.m4, m4/obstack.m4,
17423         m4/stdint_h.m4, m4/uintmax_t.m4, m4/ulonglong.m4.
17424         (Depends-on): Add stdint.
17425         (configure.ac): Change gl_OBSTACK to AC_FUNC_OBSTACK.
17426         * modules/perl: New module.
17427         * modules/regex (Depends-on): Add stdint.
17428         * modules/rmdir-errno: New module.
17429         * modules/strtoimax (Files): Remove m4/stdint_h.m4, m4/inttypes_h.m4,
17430         m4/intmax_t.m4.
17431         (Depends-on): Add stdint.
17432         * modules/strtoumax (Files): Remove m4/stdint_h.m4, m4/inttypes_h.m4,
17433         m4/uintmax_t.m4.
17434         (Depends-on): Add stdint.
17435         * modules/unlink-busy: New module.
17436         * modules/utimecmp (Depends-on): Add stdint.
17437         * modules/uptime: New module.
17438         * modules/winsz-ioctl: New module.
17439         * modules/winsz-termios: New module.
17440         * modules/xnanosleep (Depends-on): Add nanosleep.
17441         * modules/ullong_max: Remove.
17442         * modules/xstrtoimax (Files): Remove m4/xstrtoimax.m4.
17443         (configure.ac): Remove gl_XSTRTOIMAX; no action needed now.
17444         * modules/xstrtol (Files): Remove m4/ulonglong.m4, m4/longlong.m4,
17445         m4/stdint_h.m4, m4/inttypes_h.m4, m4/uintmax_t.m4, m4/intmax_t.m4.
17446         (Depends-on): Add inttypes.
17447         (lib_SOURCES): Add xstrtol.h.
17448         * modules/xstrtoumax (Files): Remove m4/xstrtoumax.m4.
17449         (configure.ac): Remove gl_XSTRTOUMAX; no action needed now.
17450         * MODULES.html.sh: Move 'assert' into the assert section.
17451         Move 'dummy' into the linking section.
17452         Remove ullong_max.
17453         Add section for compatibility checks for POSIX:2001 functions,
17454         and put d-ino, d-type, link-follow, rmdir-errno, unlink-busy,
17455         winsz-ioctl, and winsz-termios into it.
17456         Add lchmod.
17457         Add top-level Misc section and put host-os, perl, and uptime
17458         into it.
17459
17460 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
17461
17462         * lib/cycle-check.h: Include <stdint.h> unconditionally, since we
17463         now assume the stdint module.  Do not include inttypes.h.
17464         * lib/fsusage.h: Likewise.
17465         * lib/getndelim2.c: Likewise.
17466         * lib/human.h: Likewise.
17467         * lib/inttostr.h: Likewise.
17468         * lib/obstack.c: Likewise.
17469         * lib/regex_internal.h: Likewise.
17470         * lib/tempname.c: Likewise.
17471         * lib/utimecmp.c: Likewise.
17472         * lib/xstrtol.h: Likewise.
17473
17474         * lib/stat_.h: Fix typo: HAVE_FUNC_LSTAT -> HAVE_LSTAT.
17475
17476         * lib/strtoimax.c: Adjust to macro name changes in Autoconf,
17477         e.g., HAVE_LONG_LONG -> HAVE_LONG_LONG_INT.
17478         * lib/xtime.h: Likewise.
17479
17480 2006-08-19  Paul Eggert  <eggert@cs.ucla.edu>
17481
17482         * modules/openat (Files): Add lib/fchmodat.c.
17483         Fixes problem reported by Jay Youngman.
17484
17485 2006-08-19  Paul Eggert  <eggert@cs.ucla.edu>
17486
17487         * lib/fchmodat.c: New file, from coreutils.  This was inadvertently
17488         omitted in the 2006-08-17 update.  Problem reported by Jay Youngman.
17489
17490 2006-08-18  Paul Eggert  <eggert@cs.ucla.edu>
17491             Bruno Haible  <bruno@clisp.org>
17492
17493         * m4/bison-i18n.m4 (BISON_I18N): Also handle the case where yacc exists
17494         and is a script that invokes bison. Tighten the code. Add comments.
17495
17496 2006-08-18  Jim Meyering  <jim@meyering.net>
17497
17498         * m4/gethrxtime.m4 (gl_PREREQ_GETHRXTIME): Also check for
17499         CLOCK_REALTIME, since gethrxtime may revert to using clock_gettime via
17500         gettime.c.  Gabor Z. Papp reported that gethrxtime-using programs
17501         failed to link due to unresolved clock_gettime on a linux-2.4.x system.
17502
17503 2006-08-18  Bruno Haible  <bruno@clisp.org>
17504
17505         * modules/bison-i18n: New file.
17506         * MODULES.html.sh (Internationalization functions): Add it.
17507
17508 2006-08-18  Bruno Haible  <bruno@clisp.org>
17509
17510         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Also check for
17511         sys/statvfs.h. When getmntinfo was found, check its declaration and
17512         set either MOUNTED_GETMNTINFO or MOUNTED_GETMNTINFO2 depending on it.
17513
17514 2006-08-18  Bruno Haible  <bruno@clisp.org>
17515
17516         * m4/bison-i18n.m4: New file, from bison.
17517
17518 2006-08-18  Bruno Haible  <bruno@clisp.org>
17519
17520         * lib/mountlist.c [MOUNTED_GETMNTINFO2]: Include sys/statvfs.h.
17521         (ME_DUMMY): Treat "kernfs" as a dummy.
17522         (read_file_system_list) [MOUNTED_GETMNTINFO2]: Implement.
17523
17524 2006-08-17  Paul Eggert  <eggert@cs.ucla.edu>
17525
17526         Update from coreutils.
17527
17528         2006-08-15  Jim Meyering  <jim@meyering.net>
17529
17530         * m4/openat.m4 (gl_FUNC_OPENAT): Add at-func.c via AC_LIBSOURCES.
17531
17532         2006-01-17  Jim Meyering  <jim@meyering.net>
17533
17534         * m4/fts.m4 (gl_FUNC_FTS_CORE): Depend on gl_FUNC_OPENAT.
17535
17536         2006-01-11  Jim Meyering  <jim@meyering.net>
17537
17538         * m4/openat.m4 (gl_FUNC_OPENAT): Require and compile fchmodat.c.
17539         Check for the lchmod function.
17540
17541 2006-08-17  Paul Eggert  <eggert@cs.ucla.edu>
17542
17543         Update from coreutils.
17544
17545         * lib/__fpending.h: Add copyright notice.
17546         * lib/fprintftime.h: Likewise.
17547         * lib/savedir.c: Use (C) in copyright notice.
17548         * lib/savedir.h: Likewise.
17549
17550         2006-08-15  Jim Meyering  <jim@meyering.net>
17551
17552         * lib/at-func.c: New file, with the logic of all emulated at-functions.
17553         * lib/openat-priv.h: Include <errno.h> and define ENOSYS,
17554         in support of the EXPECTED_ERRNO macro.
17555         * lib/openat.c (fstatat, unlinkat, fchownat): Remove function
17556         definitions.  Instead, define the appropriate symbols and include
17557         "at-func.c".
17558         * lib/mkdirat.c (mkdirat): Likewise.
17559         * lib/fchmodat.c (fchmodat): Likewise.
17560         (ENOSYS): Remove definition.
17561         * lib/openat.c: Don't include <errno.h>, now that "openat-priv.h" does
17562         it.  Don't include "unistd--.h" -- it wasn't ever used.
17563
17564         2006-01-17  Jim Meyering  <jim@meyering.net>
17565
17566         Rewrite fts.c not to change the current working directory,
17567         by using openat, fstatat, fdopendir, etc..
17568
17569         * lib/fts.c [! _LIBC]: Include "openat.h" and "unistd--.h".
17570         (HAVE_OPENAT_SUPPORT): Define.
17571         [_LIBC] (fchdir): Don't undef or define; no longer used.
17572         (FCHDIR): Define in terms of cwd_advance_fd rather than fchdir.
17573         Now, this `function' always succeeds, and consumes its file descriptor
17574         parameter -- so callers must not close such FDs.  Update callers.
17575         (diropen_fd, opendirat, cwd_advance_fd): New functions.
17576         (diropen): Add parameter, SP.  Adjust all callers.
17577         Implement using diropen_fd, rather than open.
17578         (fts_open): Initialize new member, fts_cwd_fd.
17579         Remove fts_rft-setting code.
17580         (fts_close): Close fts_cwd_fd, if necessary.
17581         (__opendir2): Define in terms of opendir or opendirat,
17582         depending on whether the FST_NOCHDIR flag is set.
17583         (fts_build): Since fts_safe_changedir consumes its FD, and since
17584         this code must do `closedir(dirp)', dup the dirfd(dirp) argument,
17585         and close the dup'd file descriptor upon failure.
17586         (fts_stat): Use fstatat(...AT_SYMLINK_NOFOLLOW) in place of lstat.
17587         (fts_safe_changedir): Tweak semantics to reflect that this function
17588         now calls cwd_advance_fd and hence consumes its FD argument.
17589         * lib/fts_.h [struct FTS] (fts_cwd_fd): New member.
17590         [struct FTS] (fts_rft): Remove now-unused member.
17591         [struct FTS] (fts_cycle.state): Improve comment.
17592
17593         * lib/openat.c (openat_needs_fchdir): New function.
17594         * lib/openat.h (openat_needs_fchdir): Declare it.
17595
17596 2006-08-16  Paul Eggert  <eggert@cs.ucla.edu>
17597
17598         * lib/memcoll.c (memcoll): Set errno = 0 in the shortcut case, too.
17599         Problem and fix reported by Pádraig Brady in
17600         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00099.html>.
17601
17602 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
17603
17604         * modules/cycle-check (configure.ac): Add gl_CYCLE_CHECK.
17605
17606 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
17607
17608         * lib/memcoll.c (memcoll): Optimize for the common case where the
17609         arguments are bytewise equal.
17610
17611 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
17612
17613         * doc/regexprops-generic.texi: Add a copyright notice.
17614
17615 2006-08-15  Bruno Haible  <bruno@clisp.org>
17616
17617         * modules/tmpdir (License): Change to LGPL.
17618
17619 2006-08-15  Bruno Haible  <bruno@clisp.org>
17620
17621         * gnulib-tool (func_all_modules, func_verify_module): COPYING is not a
17622         module.
17623
17624 2006-08-14  Simon Josefsson  <jas@extundo.com>
17625
17626         * config/srclist.txt: Add gnupload.
17627
17628 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
17629
17630         Change copyright notice from LGPL 2 to GPL 2, since that's the
17631         standard form used in the gnulib repository.
17632         * tests/test-lock.c: Likewise.
17633         * tests/test-stdint.c: Likewise.
17634         * tests/test-tls.c: Likewise.
17635
17636         * users.txt: Add bison, diffutils, libprelude, prelude-lml,
17637         prelude-manager.  User shorter URLs for GNU projects, without '?'.
17638         Add copyright notice.
17639
17640         * check-module: Add copyright notice.  Output a copyright
17641         notice if "--version" is specified.
17642         * modules/COPYING: New file.
17643         * tests/test-getaddrinfo.c: Add copyright notice.
17644         * tests/test-verify.c: Likewise.
17645
17646 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
17647
17648         Change copyright notice from LGPL 2 to GPL 2, since that's the
17649         standard form used in the gnulib repository.
17650         * lib/lock.c: LGPL -> GPL.
17651         * lib/lock.h: Likewise.
17652         * lib/strnlen1.c: Likewise.
17653         * lib/strnlen1.h: Likewise.
17654         * lib/tls.c: Likewise.
17655         * lib/tls.h: Likewise.
17656         * lib/tmpdir.c: Likewise.
17657
17658         * lib/TODO: Remove; this belongs only in coreutils.
17659
17660 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
17661
17662         Add copyright notices to long-enough files that lack them, since
17663         otherwise the files aren't clearly free.  Use the same notice that
17664         getdate.texi already uses.
17665         * doc/alloca-opt.texi: Add copyright notice.
17666         * doc/alloca.texi: Likewise.
17667         * doc/ctime.texi: Likewise.
17668         * doc/functions.texi: Likewise.
17669         * doc/gcd.texi: Likewise.
17670         * doc/gnulib-tool.texi: Likewise.
17671         * doc/inet_ntoa.texi: Likewise.
17672         * doc/visibility.texi: Likewise.
17673
17674         * doc/getdate.texi: Update FDL version from 1.1 to 1.2.
17675         * doc/quote.texi: Add copyright notice.
17676
17677         * doc/solaris-versions: Add SunOS 5.10, SunOS 1.x, SunOS 4.0, SunOS
17678         4.0.x, SunOS 4.1.1.1, SunOS 4.1.1_U1, SunOS 4.1.3B.  SunOS 4.1.3
17679         was Solaris 1.1A.  Remove space before B in Solaris 1.1.1B.
17680         Mention SunOS 5.11.  Mention that everything before SunOS 5.7
17681         is now obsolete, and give a pointer to the Sun list.
17682         Add copyright notice.
17683
17684 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
17685
17686         * config/srclistvars.sh: Add copyright notice.
17687
17688 2006-08-14  Eric Blake  <ebb9@byu.net>
17689
17690         Import the following change from libc:
17691
17692         2006-08-12  Ulrich Drepper  <drepper@redhat.com>
17693
17694         Upstream bug 2997.
17695         * lib/misc/error.c: Add space between program name and message if file
17696         name is missing.
17697
17698 2006-08-12  Karl Berry  <karl@gnu.org>
17699
17700         * config/srclist.txt (ssize_t.m4, sig_atomic_t.m4, signalblocking.m4):
17701         remove, these originate in gnulib now.
17702
17703 2006-08-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
17704
17705         * doc/Makefile (standards.info standards.html standards.dvi):
17706         Also depend on make-stds.texi.
17707
17708 2006-08-11  Paul Eggert  <eggert@cs.ucla.edu>
17709
17710         * lib/pipe-safer.c (pipe_safer): Fix misspelling: HAVE_FUNC_PIPE ->
17711         HAVE_PIPE.  Fix a file descriptor leak when fd_safer fails.
17712
17713         * lib/regex_internal.c (re_string_skip_chars): Don't assume WEOF fits
17714         in wchar_t.  Problem reported by Eric Blake.
17715
17716         * lib/snprintf.c (snprintf): memcpy LEN bytes, not SIZE - 1, when
17717         LEN is smaller than SIZE.  Suggested by Bruno Haible.
17718         Also, help the compiler to keep LEN in a register.
17719
17720 2006-08-11  Eric Blake  <ebb9@byu.net>
17721
17722         * users.txt: Sort.  Add tar.
17723
17724 2006-08-11  Bruno Haible  <bruno@clisp.org>
17725
17726         * users.txt: New file.
17727
17728 2006-08-11  Bruno Haible  <bruno@clisp.org>
17729
17730         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Include <stdio.h> and <time.h>
17731         before <wchar.h>. Needed for OSF/1 and BSD/OS.
17732
17733 2006-08-10  Paul Eggert  <eggert@cs.ucla.edu>
17734
17735         * modules/snprintf (Depends-on): Remove minmax.
17736         (Maintainer): Add self and Bruno.
17737
17738 2006-08-10  Paul Eggert  <eggert@cs.ucla.edu>
17739
17740         * lib/.cppi-disable: Add snprintf.h, socket_.h.
17741         * lib/snprintf.c: Include <errno.h> and <limits.h>.
17742         (EOVERFLOW): Define if the system does not.
17743         Do not include "minmax.h"; it wasn't used.
17744         (snprintf): Don't assume size_t promotes to an unsigned type.
17745         Fix bug when generated string was too long for the buffer: the
17746         buffer's contents are supposed to be the initial prefix of the
17747         output.  Don't assume vasnprintf returns EOVERFLOW if the size
17748         exceeds INT_MAX; do the check ourselves.
17749
17750         Import the following changes from libc:
17751
17752         2006-06-02  Jakub Jelinek  <jakub@redhat.com>
17753
17754         * lib/posix/regex_internal.c (re_string_skip_chars): If no character
17755         has been converted at all, set *last_wc to WEOF.  If mbrtowc failed,
17756         set wc to the byte which couldn't be converted.
17757         (re_string_reconstruct): Don't clear valid_raw_len before calling
17758         re_string_skip_chars.  If wc is WEOF after re_string_skip_chars, set
17759         tip_context using re_string_context_at.
17760
17761         2006-05-02  Ulrich Drepper  <drepper@redhat.com>
17762
17763         * lib/posix/regex.h: g++ still cannot handled [restrict].
17764
17765         2006-04-21  Ulrich Drepper  <drepper@redhat.com>
17766
17767         * lib/posix/regex.h: Remove special handling for VMS.
17768
17769 2006-08-10  Jim Meyering  <jim@meyering.net>
17770
17771         * modules/same-inode: New module.
17772         * modules/dev-ino: New module.
17773         * modules/cycle-check: Depend on these modules, rather than simply
17774         including their .h files.
17775         (Makefile.am): Don't list cycle-check.[ch] here, now that they're
17776         required via m4/cycle-check.m4.
17777         * modules/same: Depend on new same-inode module, rather than
17778         including same-inode.h.
17779         * modules/chdir-safer: New file.
17780
17781         * modules/chown (Depends-on): Add stat-macros.
17782
17783 2006-08-10  Jim Meyering  <jim@meyering.net>
17784
17785         * m4/cycle-check.m4: New file.
17786         Require gl_STRUCT_DEV_INO and gl_SAME_INODE.
17787         * m4/dev-ino.m4, m4/same-inode.m4: New files.
17788
17789 2006-08-10  Eric Blake  <ebb9@byu.net>
17790
17791         * modules/verror (Depends-on): Remove bogus gl_VERROR that snuck
17792         in from original proposal.
17793
17794 2006-08-10  Eric Blake  <ebb9@byu.net>
17795         and Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
17796
17797         * gnulib-tool (func_import): Detect unexpanded macros in gnulib
17798         namespace.
17799
17800 2006-08-10  Bruno Haible  <bruno@clisp.org>
17801
17802         * gnulib-tool (func_create_testdir): Detect unexpanded macros here
17803         as well.
17804
17805 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
17806
17807         Sync from coreutils.
17808
17809         2006-07-19  Mike Frysinger  <vapier@gentoo.org>
17810
17811         * lib/mountlist.c [ME_REMOTE]: Filter out cifs.
17812         Reported by Toralf Förster in <http://bugs.gentoo.org/141012>.
17813
17814 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
17815
17816         * modules/restrict: Remove; no longer needed now that we assume
17817         Autoconf 2.59 or later.
17818         * MODULES.html.sh: Remove 'restrict'.
17819         * modules/argp (Depends-on): Remove 'restrict'.
17820         * modules/base64 (Depends-on): Likewise.
17821         * modules/gc (Depends-on): Likewise.
17822         * modules/getaddrinfo (Depends-on): Likewise.
17823         * modules/glob (Depends-on): Likewise.
17824         * modules/inet_ntop (Depends-on): Likewise.
17825         * modules/inet_pton (Depends-on): Likewise.
17826         * modules/memxor (Depends-on): Likewise.
17827         * modules/regex (Depends-on): Likewise.
17828         * modules/strtok_r (Depends-on): Likewise.
17829         * modules/time_r (Depends-on): Likewise.
17830
17831 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
17832
17833         * m4/argp.m4 (gl_ARGP): Require AC_C_RESTRICT.
17834         * m4/gc.m4 (gl_PREREQ_GC): Likewise.
17835         * m4/glob.m4 (gl_PREREQ_GLOB): Likewise.
17836         * m4/inet_ntop.m4 (gl_PREREQ_INET_NTOP): Likewise.
17837         * m4/inet_pton.m4 (gl_PREREQ_INET_PTON): Likewise.
17838         * m4/memxor.m4 (gl_MEMXOR): Likewise.
17839         * m4/restrict.m4: Remove; no longer needed.  All remaining uses of
17840         gl_C_RESTRICT replaced by AC_C_RESTRICT.
17841
17842         Merge from coreutils.
17843         * m4/regex.m4 (gl_PREREQ_REGEX): Require AC_C_RESTRICT, not
17844         gl_C_RESTRICT, now that we assume Autoconf 2.59 or later.
17845         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Likewise.
17846         * m4/time_r.m4 (gl_TIME_R): Likewise.
17847
17848 2006-08-09  Karl Berry  <karl@gnu.org>
17849
17850         * config/srclist.txt: no more gettext-tools, per Bruno.
17851
17852 2006-08-08  Eric Blake  <ebb9@byu.net>
17853
17854         * modules/verror: New module.
17855         * MODULES.html.sh: Document it.
17856
17857 2006-08-08  Eric Blake  <ebb9@byu.net>
17858
17859         * lib/verror.h, lib/verror.c: New files.
17860
17861 2006-08-08  Eric Blake  <ebb9@byu.net>
17862
17863         * lib/verror.c (verror_at_line): Work around glibc bug 2997, so that
17864         verror_at_line output complies with GNU Coding Standards even when
17865         file is NULL.
17866
17867 2006-08-07  Bruno Haible  <bruno@clisp.org>
17868
17869         * lib/allocsa.h (sa_alignof) [_AIX]: Also consider 'long long' in newer
17870         versions of AIX.
17871         Reported by Ralf Wildenhues.
17872
17873 2006-08-07  Bruno Haible  <bruno@clisp.org>
17874
17875         * gnulib-tool (func_create_testdir): Wrap the set of autoconf snippets
17876         in an AC_DEFUN. Needed so that the autoconf snippets can use
17877         AC_REQUIRE.
17878
17879 2006-08-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
17880
17881         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
17882         Initialize pkgdata_DATA.
17883         * modules/javaversion (Makefile.am): Add to pkgdata_DATA, rather than
17884         overriding it.
17885
17886 2006-08-06  Eric Blake  <ebb9@byu.net>
17887
17888         * lib/error.h: Fold in some upstream changes from glibc.
17889         * lib/error.c: Likewise.
17890
17891 2006-08-04  Bruno Haible  <bruno@clisp.org>
17892
17893         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
17894         Make the mostlyclean-local rule depend on mostlyclean-generic.
17895         Reported by Jim Meyering. Solution suggested by Ralf Wildenhues.
17896
17897 2006-07-31  Bruno Haible  <bruno@clisp.org>
17898
17899         * m4/localcharset.m4 (gl_LOCALCHARSET): Remove tests for <stddef.h>,
17900         <stdlib.h>, <string.h>.
17901
17902 2006-07-30  Bruno Haible  <bruno@clisp.org>
17903
17904         * modules/readlink (License): Change to LGPL.
17905
17906 2006-07-30  Bruno Haible  <bruno@clisp.org>
17907
17908         * modules/javaversion (Makefile.am): Distribute javaversion.java and
17909         javaversion.class. Also install javaversion.class in $(pkgdatadir) and
17910         set PKGDATADIR to point to it.
17911
17912 2006-07-30  Bruno Haible  <bruno@clisp.org>
17913
17914         * modules/csharpexec (configure.ac): Comment out macro invocation.
17915         * modules/javaexec (configure.ac): Likewise.
17916         * modules/javacomp-script (configure.ac): Likewise.
17917
17918         * modules/csharpcomp-script (configure.ac): Use AC_REQUIRE.
17919
17920 2006-07-30  Bruno Haible  <bruno@clisp.org>
17921
17922         * modules/clean-temp (Depends-on): Add linkedhash-list, remove
17923         linked-list.
17924
17925 2006-07-30  Bruno Haible  <bruno@clisp.org>
17926
17927         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Assume <string.h> exists.
17928
17929 2006-07-30  Bruno Haible  <bruno@clisp.org>
17930
17931         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
17932         Initialize MOSTLYCLEANFILES to core and *.stackdump, so that core dumps
17933         get removed.
17934
17935 2006-07-29  Bruno Haible  <bruno@clisp.org>
17936
17937         Make it possible for gnulib-tool to work with locally modified or
17938         augmented gnulib repositories.
17939         * gnulib-tool (func_usage): Document --local-dir option.
17940         (local_gnulib_dir): New variable.
17941         Handle --local-dir option.
17942         (func_lookup_file): New function.
17943         (func_all_modules, func_verify_module): Look also in $local_gnulib_dir.
17944         (func_get_description, func_get_filelist, func_get_description,
17945         func_get_filelist, func_get_dependencies, func_get_autoconf_snippet,
17946         func_get_automake_snippet, func_get_include_directive,
17947         func_get_license, func_get_maintainer): Use func_lookup_file.
17948         (func_import, func_create_testdir): Use func_lookup_file.
17949
17950 2006-07-29  Bruno Haible  <bruno@clisp.org>
17951
17952         * modules/setenv (Depends-on): Add unistd.
17953
17954 2006-07-29  Bruno Haible  <bruno@clisp.org>
17955
17956         * lib/setenv.c: Undo unintended modification done on 2006-02-27.
17957
17958 2006-07-29  Bruno Haible  <bruno@clisp.org>
17959
17960         * lib/localcharset.c: Assume <stddef.h>, <stdlib.h>, <string.h> exist.
17961
17962 2006-07-29  Bruno Haible  <bruno@clisp.org>
17963
17964         * gnulib-tool (import, update): If there is no Makefile.am, look at
17965         aclocal.m4, instead of bailing out.
17966
17967 2006-07-29  Bruno Haible  <bruno@clisp.org>
17968
17969         * gnulib-tool (func_usage): Revert most of the 2006-07-15 change.
17970         Categorize the options by when they are useful.
17971
17972 2006-07-29  Bruno Haible  <bruno@clisp.org>
17973
17974         * gnulib-tool (func_usage): Document option --no-libtool.
17975         Handle option --no-libtool.
17976         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am): Update
17977         for changed semantics of $libtool variable.
17978         (func_import): Likewise. If libtool is not used, show this through
17979         an option --no-libtool.
17980         (func_create_testdir): Update.
17981
17982 2006-07-29  Bruno Haible  <bruno@clisp.org>
17983
17984         * gnulib-tool (func_import): Extend error message about missing
17985         --doc-base.
17986
17987 2006-07-29  Bruno Haible  <bruno@clisp.org>
17988
17989         * gnulib-tool (func_import): Don't create the $docbase directory if
17990         there is no file to store there.
17991
17992 2006-07-29  Bruno Haible  <bruno@clisp.org>
17993
17994         * gnulib-tool (autoconf_minversion): If a --dir option is given and
17995         relevant, look for configure.ac there, not in the current directory.
17996         Also use a simple search for AC_PREREQ, not "autoconf --trace".
17997
17998 2006-07-29  Bruno Haible  <bruno@clisp.org>
17999
18000         * gnulib-tool (SORT): New variable.
18001         (func_usage): Undocument --assume-autoconf option.
18002         Remove --assume-autoconf option handling.
18003         (autoconf_minversion): Determine from the contents of configure.ac.
18004         (func_import): Remove autoconf_minversion handling.
18005         Suggested by Eric Blake.
18006
18007 2006-07-29  Bruno Haible  <bruno@clisp.org>
18008
18009         * doc/gnulib-tool.texi (gl_LIBTOOL): Mention --no-libtool option.
18010
18011 2006-07-29  Bruno Haible  <bruno@clisp.org>
18012
18013         * config/srclist.txt (*setenv.[ch]): Remove rules.
18014
18015 2006-07-28  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
18016
18017         * m4/inet_pton.m4, inet_ntop.m4: Check for netinet/in.h too.
18018
18019 2006-07-28  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
18020
18021         * lib/inet_ntop.h, inet_pton.h: Need to include netinet/in.h before
18022         arpa/inet.h.
18023
18024 2006-07-28  Simon Josefsson  <jas@extundo.com>
18025
18026         * modules/inet_ntop (Depends-on): Depend on arpa_inet.
18027         * modules/inet_pton (Depends-on): Likewise.
18028
18029 2006-07-28  Simon Josefsson  <jas@extundo.com>
18030
18031         * m4/netinet_in_h.m4: New file.
18032
18033 2006-07-28  Simon Josefsson  <jas@extundo.com>
18034
18035         * lib/inet_ntop.h, inet_pton.h: No need to guard netinet/in.h
18036         #include's.
18037
18038 2006-07-28  Simon Josefsson  <jas@extundo.com>
18039
18040         * lib/inet_ntop.h, inet_pton.h: No need to guard arpa/inet.h
18041         #include's.
18042
18043 2006-07-28  Paul Eggert  <eggert@cs.ucla.edu>
18044
18045         * lib/modechange.c (mode_compile): Numeric modes now affect setuid and
18046         setgid on directories only if they set these bits.
18047         * lib/modechange.h: Remove obsolete comment about masks.
18048
18049 2006-07-28  Eric Blake  <ebb9@byu.net>
18050
18051         * lib/regex_internal.h (struct re_dfa_t) [!_LIBC]: Avoid invalid C89
18052         macro expansion.
18053
18054 2006-07-28  Bruno Haible  <bruno@clisp.org>
18055
18056         * lib/inet_ntop.h, inet_pton.h: Use #if HAVE* instead of #ifdef HAVE*.
18057
18058 2006-07-28  Bruno Haible  <bruno@clisp.org>
18059
18060         * m4/mbchar.m4 (gl_MBCHAR): Also test for iswcntrl.
18061
18062 2006-07-28  Bruno Haible  <bruno@clisp.org>
18063
18064         * lib/mbchar.h (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit,
18065         iswgraph, iswlower, iswprint, iswpunct, iswspace, iswupper, iswxdigit):
18066         Define fallbacks.
18067         Avoids link error on FreeBSD 4.x.
18068         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
18069
18070         * lib/wcwidth.h (iswprint): Assume an ASCII compatible wide character
18071         encoding.
18072         * lib/mbswidth.c (iswcntrl): Likewise.
18073
18074 2006-07-27  Bruno Haible  <bruno@clisp.org>
18075
18076         * m4/stdint.m4 (gl_STDINT_H): Define __STDC_CONSTANT_MACROS during the
18077         test.
18078
18079 2006-07-27  Bruno Haible  <bruno@clisp.org>
18080
18081         * lib/stdint_.h (INT*_C, UINT*_C) [C++]: Define these if
18082         __STDC_CONSTANT_MACROS is defined, not if __STDC_LIMIT_MACROS is
18083         defined.
18084
18085 2006-07-26  Eric Blake  <ebb9@byu.net>
18086
18087         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Check for missing pipe.
18088
18089 2006-07-26  Eric Blake  <ebb9@byu.net>
18090
18091         * lib/mkstemp-safer.c [! HAVE_MKSTEMP]: Add prototype for platforms
18092         like mingw that lack mkstemp.
18093         * lib/pipe-safer.c (pipe_safer) [!HAVE_FUNC_PIPE]: Provide fallback to
18094         avoid compilation warning on mingw.
18095
18096 2006-07-26  Bruno Haible  <bruno@clisp.org>
18097
18098         * m4/stdint.m4 (gl_STDINT_H): Also verify the existence of the macros
18099         INT*_MIN, INT_LEAST*_MAX, INT_LEAST*_MIN, UINT_LEAST*_MAX,
18100         INT_FAST*_MIN, INTPTR_MIN.
18101
18102 2006-07-25  Bruno Haible  <bruno@clisp.org>
18103
18104         * modules/version-etc (Depends-on): Add stdarg.
18105
18106 2006-07-25  Bruno Haible  <bruno@clisp.org>
18107
18108         * m4/stdint.m4 (gl_INTEGER_TYPE_SUFFIX): Avoid 'eval' in front of
18109         complex commands.
18110
18111 2006-07-25  Bruno Haible  <bruno@clisp.org>
18112
18113         * lib/version-etc.c (version_etc_va): Use va_copy, assumed to be
18114         defined in <stdarg.h> or config.h.
18115
18116 2006-07-24  Paul Eggert  <eggert@cs.ucla.edu>
18117
18118         * m4/stdio-safer.m4 (gl_FOPEN_SAFER, gl_TMPFILE_SAFER): New macros.
18119         (gl_STDIO_SAFER): Remove.
18120
18121 2006-07-24  Paul Eggert  <eggert@cs.ucla.edu>
18122
18123         * MODULES.html.sh (File stream based Input/Output):
18124         Add fopen-safer, tmpfile-safer; remove stdio-safer.
18125         * modules/getusershell (Depends-on): Change stdio-safer to fopen-safer.
18126         * modules/fopen-safer, modules/tmpfile-safer: New files.
18127         * modules/stdio-safer: Remove.
18128
18129 2006-07-24  Bruno Haible  <bruno@clisp.org>
18130
18131         * modules/tmpdir: New file.
18132         * MODULES.html.sh (File system functions): Add it.
18133
18134 2006-07-24  Bruno Haible  <bruno@clisp.org>
18135
18136         * modules/javacomp (Depends-on): Add unistd, javaversion, binary-io,
18137         getline, pathname, fwriteerror, clean-temp, xvasprintf, strstr.
18138
18139 2006-07-24  Bruno Haible  <bruno@clisp.org>
18140
18141         * modules/clean-temp: New file.
18142
18143 2006-07-24  Bruno Haible  <bruno@clisp.org>
18144
18145         * m4/tmpdir.m4: New file, from GNU gettext.
18146
18147 2006-07-24  Bruno Haible  <bruno@clisp.org>
18148
18149         * lib/tmpdir.h: New file, from GNU gettext.
18150         * lib/tmpdir.c: New file, from GNU gettext.
18151
18152 2006-07-24  Bruno Haible  <bruno@clisp.org>
18153
18154         * lib/clean-temp.h: New file, from GNU gettext.
18155         * lib/clean-temp.c: New file, from GNU gettext.
18156
18157 2006-07-23  Eric Blake  <ebb9@byu.net>
18158
18159         * modules/stdio-safer (Files): Add tmpfile-safer.c.
18160         (Depends-on): Add binary-io.
18161
18162 2006-07-23  Eric Blake  <ebb9@byu.net>
18163
18164         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Add tmpfile-safer.c.
18165
18166 2006-07-23  Eric Blake  <ebb9@byu.net>
18167
18168         * lib/tmpfile-safer.c: New file.
18169         * lib/stdio-safer.h (fopen_safer): Add prototype.
18170         * lib/stdio--.h (tmpfile): Make safer.
18171
18172 2006-07-23  Bruno Haible  <bruno@clisp.org>
18173
18174         * lib/gl_anylinked_list2.h (ASYNCSAFE): New macro.
18175         (gl_linked_add_first, gl_linked_add_last, gl_linked_add_before,
18176         gl_linked_add_after, gl_linked_add_at, gl_linked_remove_node,
18177         gl_linked_remove_at): Use it.
18178
18179 2006-07-22  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
18180         and Simon Josefsson <jas@extundo.com>
18181
18182         * lib/getaddrinfo.h (AI_PASSIVE): Make sure it is defined.
18183
18184         * lib/getaddrinfo.c (getaddrinfo): Support AI_PASSIVE.
18185
18186 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
18187
18188         * modules/close-stream: New file.
18189         * modules/closeout (Description): Make it clear that it exits
18190         with a diagnostic on error.
18191         (Depends-on): Add close-stream.  Remove fpending, stdbool.
18192         * MODULES.html.sh (File stream based Input/Output): Add close-stream.
18193
18194 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
18195
18196         * m4/close-stream.m4: New file.
18197
18198 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
18199
18200         * lib/close-stream.c, lib/close-stream.h: New files.
18201
18202 2006-07-22  Bruno Haible  <bruno@clisp.org>
18203
18204         Merge from GNU gettext 0.15.
18205
18206         2006-05-01  Bruno Haible  <bruno@clisp.org>
18207
18208                 * build-aux/javacomp.sh.in: Update for changed javacomp.m4.
18209
18210         2006-07-22  Bruno Haible  <bruno@clisp.org>
18211
18212                 * modules/javaversion: New file.
18213                 * MODULES.html.sh (Java): Add javaversion.
18214
18215         2006-03-12  Bruno Haible  <bruno@clisp.org>
18216
18217                 * build-aux/javaexec.sh.in: Update for changed javaexec.m4.
18218
18219         2005-12-04  Bruno Haible  <bruno@clisp.org>
18220
18221                 * build-aux/csharpexec.sh.in: Add support for 'clix' launcher
18222                 (untested).
18223
18224         2006-06-21  Bruno Haible  <bruno@clisp.org>
18225
18226                 Avoid warnings from recent versions of mcs.
18227                 * build-aux/csharpcomp.sh.in (options_mcs): Don't use options
18228                 -o, -L, -r any more. Use options documented since mcs-1.0
18229                 instead. Similarly for -g.
18230
18231         2005-12-04  Bruno Haible  <bruno@clisp.org>
18232
18233                 * build-aux/csharpcomp.sh.in: Suffix for resources is
18234                 .resources, not .resource.
18235
18236         2005-07-09  Bruno Haible  <bruno@clisp.org>
18237
18238                 * build-aux/csharpcomp.sh.in (options_csc): For -l option,
18239                 add a .dll suffix.
18240                 Reported by Mark Junker <mjscod@gmx.de>.
18241
18242         2006-07-22  Bruno Haible  <bruno@clisp.org>
18243
18244                 * modules/gettext: Upgrade to gettext-0.15.
18245                 (Files): Remove m4/isc-posix.m4. Add m4/lock.m4,
18246                 m4/visibility.m4.
18247                 Replace m4/inttypes.m4 with m4/inttypes-h.m4.
18248
18249 2006-07-22  Bruno Haible  <bruno@clisp.org>
18250
18251         Merge from GNU gettext 0.15.
18252
18253         2006-03-25  Bruno Haible  <bruno@clisp.org>
18254
18255                 * lib-link.m4 (AC_LIB_LINKFLAGS_FROM_LIBS): New macro.
18256
18257         2006-07-21  Bruno Haible  <bruno@clisp.org>
18258
18259                 * javacomp.m4 (gt_JAVACOMP): Convert target_version "null" to
18260                 "1.1".
18261
18262         2006-05-09  Bruno Haible  <bruno@clisp.org>
18263
18264                 * javacomp.m4 (gt_JAVACOMP): On Cygwin, set
18265                 CLASSPATH_SEPARATOR to a semicolon. Use CLASSPATH_SEPARATOR
18266                 for the conftestver execution.
18267
18268         2006-05-01  Bruno Haible  <bruno@clisp.org>
18269
18270                 * javacomp.m4 (gt_JAVACOMP): Accept a source-version and an
18271                 optional target-version argument. Verify that the compiler
18272                 groks source of the specified source-version, or add -source
18273                 option as necessary. Verify that the compiler produces
18274                 bytecode in the specified target-version, or add -target and
18275                 -source options as necessary. Make the result of the test
18276                 available as variable CONF_JAVAC. Also log error output in
18277                 config.log.
18278
18279         2006-03-11  Bruno Haible  <bruno@clisp.org>
18280
18281                 * javacomp.m4 (gt_JAVACOMP): Treat gcj-4.x like gcj-3.x.
18282
18283         2006-05-09  Bruno Haible  <bruno@clisp.org>
18284
18285                 * javaexec.m4 (gt_JAVAEXEC): On Cygwin, set
18286                 CLASSPATH_SEPARATOR to a semicolon.
18287
18288         2006-03-12  Bruno Haible  <bruno@clisp.org>
18289
18290                 * javaexec.m4 (gt_JAVAEXEC): Make the result of the test
18291                 available as variable CONF_JAVA, for subsequent autoconf
18292                 tests. Also log error output in config.log.
18293
18294         2006-07-19  Bruno Haible  <bruno@clisp.org>
18295
18296                 * getline.m4 (AM_FUNC_GETLINE): When cross-compiling, assume
18297                 that getline works on glibc2 systems. Needed to avoid trouble
18298                 in relocatable.c.
18299                 Reported by Nils Magnus Larsgard <nmlarsgaard@atmel.no>.
18300
18301         2005-12-04  Bruno Haible  <bruno@clisp.org>
18302
18303                 * csharpexec.m4 (gt_CSHARPEXEC): Add support for 'clix'
18304                 launcher (untested).
18305
18306         2005-12-04  Bruno Haible  <bruno@clisp.org>
18307
18308                 * csharpcomp.m4 (gt_CSHARPCOMP): Also set CSHARPCOMPFLAGS.
18309
18310         2006-07-22  Bruno Haible  <bruno@clisp.org>
18311
18312                 * gettext.m4: Update from GNU gettext-0.15.
18313                 * nls.m4: Likewise.
18314                 * po.m4: Likewise.
18315                 * inttypes-pri.m4: Likewise.
18316                 * inttypes-h.m4: Renamed from inttypes.m4.
18317                 (gl_HEADER_INTTYPES_H): Renamed from gt_HEADER_INTTYPES_H.
18318
18319 2006-07-22  Bruno Haible  <bruno@clisp.org>
18320
18321         Merge from GNU gettext 0.15.
18322
18323         2005-07-05  Bruno Haible  <bruno@clisp.org>
18324
18325                 * printf-args.c (printf_fetchargs): Work around broken
18326                 definition of wint_t on mingw.
18327
18328         2005-02-12  Bruno Haible  <bruno@clisp.org>
18329
18330                 * xallocsa.h: Add extern "C" for C++.
18331
18332         2006-05-17  Bruno Haible  <bruno@clisp.org>
18333
18334                 Cygwin portability.
18335                 * progreloc.c (WIN32_NATIVE): Renamed from WIN32.
18336
18337         2006-04-30  Bruno Haible  <bruno@clisp.org>
18338
18339                 * progreloc.c: Include <mach-o/dyld.h> if available.
18340                 (find_executable): Use _NSGetExecutablePath when possible.
18341
18342         2006-05-06  Charles Wilson  <cygwin@cwilson.fastmail.fm>
18343
18344                 * progreloc.c (maybe_executable) [CYGWIN]: Use the access()
18345                 function.
18346
18347         2005-12-29  Bruno Haible  <bruno@clisp.org>
18348
18349                 * progreloc.c (set_program_name_and_installdir): Fix
18350                 compilation error.
18351
18352         2005-12-04  Bruno Haible  <bruno@clisp.org>
18353
18354                 Cygwin portability.
18355                 * progreloc.c: Include <windows.h> also on Cygwin.
18356                 (find_executable): Add support for Cygwin.
18357                 (set_program_name_and_installdir): Handle also platforms with
18358                 nonempty EXEEXT.
18359
18360         2006-07-11  Bruno Haible  <bruno@clisp.org>
18361
18362                 * javacomp.c: Fix a comment.
18363                 Reported by Jim Meyering.
18364
18365         2006-04-30  Bruno Haible  <bruno@clisp.org>
18366
18367                 * javacomp.h (compile_java_class): Add source_version,
18368                 target_version arguments.
18369                 * javacomp.c: Rewritten to choose only a compiler that
18370                 respects the specified source_version and target_version.
18371
18372         2006-06-27  Bruno Haible  <bruno@clisp.org>
18373
18374                 Assume correct S_ISDIR macro.
18375                 * mkdtemp.c: Remove test of STAT_MACROS_BROKEN.
18376
18377         2006-07-22  Bruno Haible  <bruno@clisp.org>
18378
18379                 * javaversion.h: New file, from GNU gettext.
18380                 * javaversion.c: New file, from GNU gettext.
18381                 * javaversion.java: New file, from GNU gettext.
18382                 * javaversion.class: New file, from GNU gettext.
18383
18384         2006-05-17  Bruno Haible  <bruno@clisp.org>
18385
18386                 Cygwin portability.
18387                 * javaexec.c (execute_java_class): Test for jview program
18388                 also on Cygwin.
18389
18390         2006-04-09  Bruno Haible  <bruno@clisp.org>
18391
18392                 * fatal-signal.c: Don't include string.h.
18393                 (at_fatal_signal): Use a copying loop instead of memcpy.
18394
18395         2005-12-04  Bruno Haible  <bruno@clisp.org>
18396
18397                 * csharpexec.c: Add support for 'clix' launcher (untested).
18398                 (execute_csharp_using_sscli): New function.
18399                 (execute_csharp_program): Call it.
18400
18401         2006-06-21  Bruno Haible  <bruno@clisp.org>
18402
18403                 Avoid warnings from recent versions of mcs.
18404                 * csharpcomp.c (compile_csharp_using_mono): Don't use options
18405                 -o, -L, -r any more. Use options documented since mcs-1.0
18406                 instead. Similarly for -g.
18407
18408         2005-07-09  Bruno Haible  <bruno@clisp.org>
18409
18410                 * csharpcomp.c (compile_csharp_using_sscli): For -l option,
18411                 add a .dll suffix.
18412                 Reported by Mark Junker <mjscod@gmx.de>.
18413
18414         2006-06-17  Bruno Haible  <bruno@clisp.org>
18415
18416                 * config.charset: Update for NetBSD 3.0.
18417
18418         2006-05-17  Bruno Haible  <bruno@clisp.org>
18419
18420                 Cygwin portability.
18421                 * localcharset.c (WIN32_NATIVE): Renamed from WIN32.
18422
18423         2006-05-16  Bruno Haible  <bruno@clisp.org>
18424
18425                 * localcharset.c [CYGWIN]: Include <windows.h>.
18426                 (get_charset_aliases): For Cygwin, return the same CPxxx
18427                 aliases list as under WIN32.
18428                 (locale_charset) [CYGWIN]: Try to retrieve the encoding from
18429                 the environment variables. Fall back to GetACP().
18430
18431         2006-04-05  Bruno Haible  <bruno@clisp.org>
18432
18433                 * config.charset: Update Juan Manuel Guerrero's address.
18434
18435         2005-02-12  Bruno Haible  <bruno@clisp.org>
18436
18437                 * allocsa.h: Add extern "C" for C++.
18438
18439         2005-02-10  Bruno Haible  <bruno@clisp.org>
18440
18441                 * allocsa.h (sa_alignof): Define differently with AIX xlc, to
18442                 avoid a bug of this compiler on AIX 3.2.5 dealing with enums.
18443
18444         2006-07-22  Bruno Haible  <bruno@clisp.org>
18445
18446                 * gettext.h: Update to GNU gettext-0.15.
18447
18448 2006-07-22  Bruno Haible  <bruno@clisp.org>
18449
18450         * config/srclist.txt: Resync printf-args.c, vasnprintf.c,
18451         localcharset.c, mkdtemp.c, config.rpath, lib-ld.m4, lib-link.m4,
18452         lib-prefix.m4, longdouble.m4, ssize_t.m4.
18453
18454 2006-07-21  Eric Blake  <ebb9@byu.net>
18455
18456         * modules/stdlib-safer: New file.
18457         * MODULES.html.sh (File stream based Input/Output): Add
18458         stdlib-safer.
18459
18460 2006-07-21  Eric Blake  <ebb9@byu.net>
18461
18462         * lib/stdlib-safer.h: New file from coreutils, required by
18463         stdlib--.h.
18464
18465 2006-07-20  Paul Eggert  <eggert@cs.ucla.edu>
18466
18467         * gnulib-tool (func_usage): Document --assume-autoconf='latest-stable'.
18468
18469 2006-07-20  Bruno Haible  <bruno@clisp.org>
18470
18471         * gnulib-tool: Recognize new option --assume-autoconf.
18472         (autoconf_minversion): New variable.
18473         (func_get_filelist): Use it to decide whether to add onceonly_2_57.m4.
18474
18475 2006-07-20  Bruno Haible  <bruno@clisp.org>
18476
18477         * MODULES.html.sh (func_all_modules): Add a missing func_begin_table.
18478
18479 2006-07-19  Derek R. Price  <derek@ximbiot.com>
18480
18481         * lib/getaddrinfo.h: Don't define unimplemented AI_* flags.
18482         Reindent and repaginate.
18483
18484 2006-07-19  Derek Price  <derek@ximbiot.com>
18485
18486         * doc/gnulib.texi (Libtool and Windows):  Eliminate passive voice.
18487         Correct grammar.
18488
18489 2006-07-17  Bruno Haible  <bruno@clisp.org>
18490
18491         * modules/list: New file.
18492         * modules/array-list: New file.
18493         * modules/carray-list, modules/carray-list-tests: New files.
18494         * modules/linked-list, modules/linked-list-tests: New files.
18495         * modules/avltree-list, modules/avltree-list-tests: New files.
18496         * modules/rbtree-list, modules/rbtree-list-tests: New files.
18497         * modules/linkedhash-list, modules/linkedhash-list-tests: New files.
18498         * modules/avltreehash-list, modules/avltreehash-list-tests: New files.
18499         * modules/rbtreehash-list, modules/rbtreehash-list-tests: New files.
18500         * modules/oset: New file.
18501         * modules/array-oset: New file.
18502         * modules/avltree-oset, modules/avltree-oset-tests: New files.
18503         * modules/rbtree-oset, modules/rbtree-oset-tests: New files.
18504         * tests/test-carray_list.c: New file.
18505         * tests/test-linked_list.c: New file.
18506         * tests/test-avltree_list.c: New file.
18507         * tests/test-rbtree_list.c: New file.
18508         * tests/test-linkedhash_list.c: New file.
18509         * tests/test-avltreehash_list.c: New file.
18510         * tests/test-rbtreehash_list.c: New file.
18511         * tests/test-avltree_oset.c: New file.
18512         * tests/test-rbtree_oset.c: New file.
18513         * MODULES.html.sh (Container data structures): New section.
18514
18515 2006-07-17  Bruno Haible  <bruno@clisp.org>
18516
18517         * m4/gl_list.m4: New file.
18518
18519 2006-07-17  Bruno Haible  <bruno@clisp.org>
18520
18521         * lib/gl_list.h: New file.
18522         * lib/gl_list.c: New file.
18523         * lib/gl_array_list.h: New file.
18524         * lib/gl_array_list.c: New file.
18525         * lib/gl_carray_list.h: New file.
18526         * lib/gl_carray_list.c: New file.
18527         * lib/gl_linked_list.h: New file.
18528         * lib/gl_linked_list.c: New file.
18529         * lib/gl_anylinked_list1.h: New file.
18530         * lib/gl_anylinked_list2.h: New file.
18531         * lib/gl_avltree_list.h: New file.
18532         * lib/gl_avltree_list.c: New file.
18533         * lib/gl_anyavltree_list1.h: New file.
18534         * lib/gl_anyavltree_list2.h: New file.
18535         * lib/gl_rbtree_list.h: New file.
18536         * lib/gl_rbtree_list.c: New file.
18537         * lib/gl_anyrbtree_list1.h: New file.
18538         * lib/gl_anyrbtree_list2.h: New file.
18539         * lib/gl_anytree_list1.h: New file.
18540         * lib/gl_anytree_list2.h: New file.
18541         * lib/gl_linkedhash_list.h: New file.
18542         * lib/gl_linkedhash_list.c: New file.
18543         * lib/gl_anyhash_list1.h: New file.
18544         * lib/gl_anyhash_list2.h: New file.
18545         * lib/gl_avltreehash_list.h: New file.
18546         * lib/gl_avltreehash_list.c: New file.
18547         * lib/gl_rbtreehash_list.h: New file.
18548         * lib/gl_rbtreehash_list.c: New file.
18549         * lib/gl_anytreehash_list1.h: New file.
18550         * lib/gl_anytreehash_list2.h: New file.
18551
18552         * lib/gl_oset.h: New file.
18553         * lib/gl_oset.c: New file.
18554         * lib/gl_array_oset.h: New file.
18555         * lib/gl_array_oset.c: New file.
18556         * lib/gl_avltree_oset.h: New file.
18557         * lib/gl_avltree_oset.c: New file.
18558         * lib/gl_rbtree_oset.h: New file.
18559         * lib/gl_rbtree_oset.c: New file.
18560         * lib/gl_anytree_oset.h: New file.
18561
18562 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
18563
18564         * m4/mkancesdirs.m4: New file.
18565         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Mention dirchownmod.c,
18566         dirchownmod.h.  Don't require AC_FUNC_ALLOCA, gl_AFS, gl_CHDIR_SAFER;
18567         no longer needed.  Require gl_FUNC_LCHOWN, since dirchownmod.c needs
18568         it.
18569
18570 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
18571
18572         * lib/dirchownmod.c, lib/dirchownmod.h, lib/mkancesdirs.c:
18573         * lib/mkancesdirs.h: New files.
18574         * lib/mkdir-p.c: Don't include alloca.h, stdio.h, sys/types.h,
18575         unistd.h, string.h, chdir-safer.h, dirname.h, lchmod.h, lchown.h,
18576         save-cwd.h.  Instead, include dirchownmod.h and mkancesdirs.h.
18577         (make_dir_parents): New args MAKE_ANCESTOR, OPTIONS, ANNOUNCE,
18578         MODE_BITS.  Remove options VERBOSE_FMT_STRING, CWD_ERRNO.  All
18579         callers changed.  Revamp internals significantly, by not
18580         attempting to create directories that are temporarily more
18581         permissive than the final results.  Do not attempt to use
18582         save_cwd/restore_cwd; it isn't worth it for mkdir and install.
18583         This removes some race conditions, fixes some bugs, and simplifies
18584         things.  Use new dirchownmod function to do owner and mode changes.
18585         * lib/mkdir-p.h: Likewise.
18586         * lib/modechange.c (octal_to_mode): New function.
18587         (struct mode_change): New member mentioned.
18588         (make_node_op_equals): New arg mentioned.  All callers changed.
18589         (mode_compile): Keep track of which mode bits the user has explicitly
18590         mentioned.
18591         (mode_adjust): New arg DIR, so that we implement the X op correctly.
18592         New arg PMODE_BITS, to keep track of which mode bits the user
18593         mentioned; it treats S_ISUID and S_ISGID speciall.
18594         All callers changed.
18595         * lib/modechange.h: Likewise.
18596
18597 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
18598
18599         * MODULES.html.sh: Add mkancestors.
18600         * modules/mkancesdirs: New module.
18601         * modules/mkdir-p (Files): Remove lib/chdir-safer.c, lib/chdir-safer.h,
18602         lib/same-inode.h, m4/afs.m4, m4/chdir-safer.m4.
18603         The chdir-safer and afs files are now orphans; I'll remove them
18604         unless someone speaks up.
18605         Add lib/dirchownmod.c, lib/dirchownmod.h.
18606         (Depends-on): Remove alloca, chown, save-cwd, dirname.
18607         Add lchown, mkancesdirs.
18608         (Maintainer): Add self.
18609
18610 2006-07-15  Karl Berry  <karl@gnu.org>
18611
18612         * gnulib-tool: help message wording/arrangement.
18613
18614 2006-07-14  Simon Josefsson  <jas@extundo.com>
18615
18616         * doc/gnulib.texi (Libtool and Windows): New section.
18617
18618 2006-07-12  Simon Josefsson  <jas@extundo.com>
18619
18620         * modules/gendocs (License): Fix license, approved by Karl.
18621
18622 2006-07-12  Eric Blake  <ebb9@byu.net>
18623
18624         * MODULES.html.sh: Add gendocs.
18625
18626 2006-07-11  Eric Blake  <ebb9@byu.net>
18627
18628         * modules/fdl: New module, to install doc/fdl.texi.
18629         * MODULES.html.sh: Add new section for documentation modules.
18630         * gnulib-tool: Avoid space-tab.
18631         (--doc-base): New option, to manage files from doc.
18632
18633 2006-07-11  Eric Blake  <ebb9@byu.net>
18634
18635         * m4/absolute-header.m4: Fix comments to match recent change.
18636
18637 2006-07-11  Eric Blake  <ebb9@byu.net>
18638
18639         * gnulib-tool: List --doc-base before --tests-base.
18640
18641 2006-07-11  Derek R. Price  <derek@ximbiot.com>
18642
18643         * lib/glob.c: s/NAMLEN/_D_EXACT_NAMLEN/.
18644
18645 2006-07-11  Bruno Haible  <bruno@clisp.org>
18646
18647         * README: Mention where to put documentation.
18648
18649 2006-07-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
18650
18651         * doc/functions.texi, gnulib-tool.texi, gnulib.texi: Fix some typos.
18652
18653 2006-07-10  Paul Eggert  <eggert@cs.ucla.edu>
18654
18655         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Like today's change
18656         to stdint.m4.
18657
18658 2006-07-10  Paul Eggert  <eggert@cs.ucla.edu>
18659
18660         * m4/stdint.m4 (gl_STDINT_H): Like yesterday's change to
18661         absolute-header.m4.  Also, set ABSOLUTE_STDINT_H to a string
18662         "no/such/file/stdint.h" when there is no such file, so that
18663         the resulting C code can be parsed by dodgy compilers.
18664         Problems reported by Bob Proulx.
18665
18666 2006-07-10  Derek R. Price  <derek@ximbiot.com>
18667
18668         * lib/backupfile.c, dirfd.h, fts.c, getcwd.c, glob.c, glob_.h:
18669         Ignore the obsolescent !HAVE_DIRENT_H case.  Consolidate NAMLEN
18670         macros into the GNU _D_EXACT_NAMLEN.
18671         * lib/savedir.c:  Likewise.
18672         (savedirstream): Use _D_EXACT_NAMLEN in preference to strlen.
18673
18674 2006-07-10  Derek R. Price  <derek@ximbiot.com>
18675         and Paul Eggert  <eggert@cs.ucla.edu>
18676
18677         * m4/backupfile.m4, d-ino.m4, d-type.m4, dirfd.m4, fts.m4, getcwd.m4:
18678         * m4/savedir.m4:
18679         Ignore the obsolescent !HAVE_DIRENT_H case.  Consolidate NAMLEN
18680         macros into the GNU _D_EXACT_NAMLEN.
18681
18682 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
18683
18684         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Use "" rather than <>
18685         around the absolute name, to work around a problem with the HP-UX
18686         11.23 native C compiler, reported by Bob Proulx.
18687
18688 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
18689
18690         * doc/maintain.texi, make-stds.texi: Sync from
18691         <http://savannah.gnu.org/projects/gnustandards>.
18692
18693 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
18694
18695         * build-aux/depcomp, build-aux/install-sh: Sync from Automake.
18696
18697 2006-07-09  Jim Meyering  <jim@meyering.net>
18698
18699         * m4/glob.m4: Remove a doubled word in a comment.
18700
18701 2006-07-09  Jim Meyering  <jim@meyering.net>
18702
18703         * lib/argp-pv.c: Remove a doubled word in a comment.
18704         * lib/check-version.c (check_version): Likewise.
18705         * lib/javacomp.c (compile_java_class): Likewise.
18706
18707 2006-07-08  Paul Eggert  <eggert@cs.ucla.edu>
18708
18709         * gnulib-tool (func_get_filelist): Don't echo m4/onceonly_2_57.m4,
18710         for the benefit of people using Autoconf 2.60.  If you want to
18711         support older Autoconf versions you can copy m4/onceonly_2_57.m4
18712         (or m4/onceonly.m4, if pre-2.57) manually.
18713
18714 2006-07-08  Jim Meyering  <jim@meyering.net>
18715
18716         * m4/link-follow.m4: Remove one of two adjacent "whether"s in a
18717         comment.
18718         * m4/getopt.m4: Remove one of two adjacent "your"s in a comment.
18719         * m4/regex.m4 (gl_REGEX): Remove one of two adjacent "the"s in a
18720         comment.
18721
18722 2006-07-08  Jim Meyering  <jim@meyering.net>
18723
18724         * lib/getndelim2.h (getndelim2): Remove doubled "after" in comment.
18725
18726 2006-07-07  Simon Josefsson  <jas@extundo.com>
18727
18728         * tests/test-crc.c: Change expected crc value, the test vector
18729         were probably computed using the old broken crc.c?
18730
18731 2006-07-06  Simon Josefsson  <jas@extundo.com>
18732
18733         * modules/sys_socket (Files): Add m4/sockpfaf.m4 (this module is
18734         now the canonical place for the M4 file).
18735
18736         * modules/getaddrinfo (Files): Remove m4/sockpfaf.m4, we get it
18737         from the sys_socket dependency now.
18738
18739         * modules/inet_pton (Files): Ditto.
18740
18741         * modules/inet_ntop (Files): Ditto.
18742
18743 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
18744
18745         * modules/getusershell (configure.ac): Use gl_FUNC_GETUSERSHELL,
18746         not gl_PREREQ_GETUSERSHELL.
18747
18748 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
18749
18750         * m4/_inttypes_h.m4 (gl_INTTYPES_H): Use AC_CHECK_DECLS_ONCE
18751         with only one argument, for Autoconf 2.60.
18752         * m4/fileblocks.m4 (gl_PREREQ_FILEBLOCKS): AC_CHECK_DECLS_ONCE may
18753         expand to nothing, so add a shell command to avoid syntax error.
18754         * m4/getpass.m4 (gl_PREREQ_GETPASS): Likewise.
18755
18756 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
18757
18758         * lib/strtod.c (strtod): cast the argument of tolower to unsigned char.
18759
18760 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
18761
18762         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Don't check for getenv decl;
18763         no longer needed.  Check for isblank decl.
18764         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Don't check for getenv decl.
18765         * m4/regex.m4 (gl_PREREQ_REGEX): Dheck for isblank decl instead
18766         of existence.
18767
18768 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
18769
18770         * lib/getloadavg.c: Use __VMS, not VMS.
18771         * lib/getopt.c: Likewise.
18772         * lib/getpagesize.h: Likewise.
18773         * lib/glob.c: Remove most VMS cruft; it hasn't been tested for a while
18774         and probably does not work.
18775
18776 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
18777
18778         * lib/.cppi-disable: Add wcwidth.
18779         * lib/fnmatch.c (ISBLANK): Remove.  All uses changed to isblank.
18780         (isblank) [! (defined isblank || HAVE_DECL_ISBLANK)]: New macro.
18781         (ISGRAPH): Remove.  All uses changed to isgraph.
18782         (FOLD) [!defined _LIBC]: Remove special case.
18783         * lib/getdate.y (lookup_word): Remove no-longer-needed call to islower.
18784         * lib/regex_internal.h (isblank): Depend on HAVE_DECL_ISBLANK, not
18785         HAVE_ISBLANK.
18786         * lib/strftime.c (TOLOWER, TOUPPER) [!defined _LIBC]: Remove special
18787         case.
18788
18789 2006-07-06  Jim Hyslop  <jhyslop@dreampossible.ca>  (tiny change)
18790
18791         * lib/getaddrinfo.c: Changes to compile under MSVC6: changed
18792         '#if WIN32_NATIVE' to '#ifdef' & moved WSAAPI macro inside
18793         brackets.  Other minor changes to suppress some compiler
18794         warnings.
18795
18796 2006-07-06  Derek R. Price  <derek@ximbiot.com>
18797         and Paul Eggert  <eggert@cs.ucla.edu>
18798
18799         * m4/backupfile.m4 (gl_BACKUPFILE): Check for dirent.h, instead
18800         of invoking obsolescent AC_HEADER_DIRENT macro.
18801         * m4/d-ino.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_INO): Likewise.
18802         * m4/d-type.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Likewise.
18803         * m4/dirfd.m4 (gl_FUNC_DIRFD): Likewise.
18804         * m4/fts.m4 (gl_FUNC_FTS_CORE): Likewise.
18805         * m4/getcwd.m4 (gl_PREREQ_GETCWD): Likewise.
18806         * m4/glob.m4 (gl_PREREQ_GLOB): Likewise.
18807         * m4/savedir.m4 (gl_SAVEDIR): Likewise.
18808         * m4/readdir.m4: Remove; no longer needed.
18809
18810 2006-07-06  Derek R. Price  <derek@ximbiot.com>
18811         and Paul Eggert  <eggert@cs.ucla.edu>
18812
18813         * lib/backupfile.c [HAVE_DIRENT_H && ! HAVE_NDIR_H]:
18814         Don't worry about this obsolete case any more.
18815         (HAVE_DIR): Remove.  All uses removed; we now assume you can read
18816         directories.
18817         * lib/dirfd.h [HAVE_DIRENT_H && ! HAVE_NDIR_H]: Don't
18818         worry about this obsolete case any more.
18819         * lib/fts.c: Likewise.
18820         * lib/getcwd.c: Likewise.
18821         * lib/glob.h: Likewise.
18822         * lib/savedir.c: Likewise.
18823
18824 2006-07-05  Paul Eggert  <eggert@cs.ucla.edu>
18825
18826         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Use AC_CHECK_DECLS_ONCE
18827         rather than AC_CHECK_DECLS for strtoimax and strtoumax.
18828         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Remove; no longer
18829         needed.
18830         All uses removed.
18831         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
18832         * m4/strtoul.m4 (gl_PREREQ_STRTOUL): Likewise.
18833         * m4/exclude.m4 (gl_EXCLUDE): Don't check for isascii; no longer
18834         needed.
18835         * m4/getdate.m4 (gl_GETDATE): Likewise.
18836         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Likewise.
18837         * m4/memcasecmp.m4 (gl_MEMCASECMP): Likewise.
18838         * m4/strtod.m4 (gl_FUNC_STRTOD): Likewise.
18839         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
18840         * m4/strtoul.m4 (gl_PREREQ_STRTOUL): Likewise.
18841         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
18842         * m4/exclude.m4 (gl_EXCLUDE): Don't require AC_C_INLINE; no longer
18843         needed.
18844
18845 2006-07-05  Paul Eggert  <eggert@cs.ucla.edu>
18846
18847         * lib/memcasecmp.c: Include <limits.h>.
18848         (memcasecmp): Don't assume UCHAR_MAX <= INT_MAX.
18849         * lib/strtod.c (strtod): Don't assume isspace works on negative chars.
18850         Don't assume isdigit succeeds only on '0' through '9'.
18851
18852 2006-07-05  Eric Blake  <ebb9@byu.net>
18853
18854         * modules/getaddrinfo (Depends-on): Add snprintf.
18855
18856 2006-07-05  Eric Blake  <ebb9@byu.net>
18857
18858         * m4/sockpfaf.m4 (gl_SOCKET_FAMILIES): Use gl_HEADER_SYS_SOCKET
18859         to avoid 'header present but could not be compiled' on cygwin.
18860
18861 2006-07-05  Eric Blake  <ebb9@byu.net>
18862
18863         * lib/getaddrinfo.h (NI_NUMERICHOST, NI_NUMERICSERV): Define if
18864         missing from netdb.h.
18865         * lib/getaddrinfo.c (includes): Include inet_ntop and snprintf.
18866
18867 2006-07-05  Derek R. Price  <derek@ximbiot.com>
18868
18869         * m4/calloc.m4 (_AC_FUNC_CALLOC_IF): Don't require AC_HEADER_STDC;
18870         no longer needed.
18871         * m4/exclude.m4 (gl_EXCLUDE): Likewise.
18872         * m4/getdate.m4 (gl_GETDATE): Likewise.
18873         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Likewise.
18874         * m4/memcasecmp.m4 (gl_MEMCASECMP): Likewise.
18875         * m4/strtod.m4 (gl_FUNC_STRTOD): Likewise.
18876         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
18877         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
18878
18879 2006-07-05  Derek R. Price  <derek@ximbiot.com>
18880
18881         * lib/exclude.c (IN_CTYPE_DOMAIN, is_space): Remove; no longer needed.
18882         All uses of is_space replaced by isspace.
18883         * lib/exit.h: Don't talk about STDC_HEADERS.
18884         * lib/fnmatch.c (ISASCII): Remove; no longer needed.  All uses removed.
18885         (ISPRINT, ISDIGIT, ISALNUM, ISALPHA, ISCNTRL, ISLOWER, ISPUNCT):
18886         (ISSPACE, ISUPPER, ISXDIGIT): Remove; no longer needed.  All uses
18887         replaced by isprint etc.
18888         * lib/getdate.y (IN_CTYPE_DOMAIN, ISSPACE, ISALPHA, ISLOWER): Likewise.
18889         * lib/getusershell.c (IN_CTYPE_DOMAIN, ISSPACE): Likewise.
18890         * lib/memcasecmp.c (IN_CTYPE_DOMAIN, ISLOWER, TOUPPER): Likewise.
18891         * lib/strtod.c (IN_CTYPE_DOMAIN, ISSPACE, ISDIGIT, TOLOWER): Likewise.
18892         * lib/strtol.c (IN_CTYPE_DOMAIN): Likewise.
18893         * lib/xstrtol.c (IN_CTYPE_DOMAIN, ISSPACE): Likewise.
18894
18895 2006-07-05  Bruno Haible  <bruno@clisp.org>
18896
18897         * m4/strndup.m4 (gl_FUNC_STRNDUP): When cross-compiling, check whether
18898         the function exists, before testing against AIX.
18899         Reported by Martin Lambers <marlam@marlam.de>.
18900
18901 2006-07-04  Paul Eggert  <eggert@cs.ucla.edu>
18902
18903         * modules/cycle-check (lib_SOURCES): Add same-inode.h.
18904         From Mark D. Baushke.
18905
18906 2006-07-04  Paul Eggert  <eggert@cs.ucla.edu>
18907
18908         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Prepend three slashes
18909         to the absolute name, not just one, to bypass Sun C 5.8's
18910         "warning: #include of /usr/include/... may be non-portable".
18911
18912 2006-07-04  Eric Blake  <ebb9@byu.net>
18913
18914         * modules/dirname-tests: New test module.
18915         * tests/test-dirname.c: New file, replacing dirname.c
18916         TEST_DIRNAME section that was recently deleted.
18917
18918 2006-07-04  Bruno Haible  <bruno@clisp.org>
18919
18920         Assume ANSI C header files and <ctype.h> functions.
18921         * lib/mbswidth.c (IN_CTYPE_DOMAIN, ISPRINT, ISCNTRL): Remove macros.
18922         (mbsnwidth): Use isprint, iscntrl instead.
18923
18924 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
18925
18926         Merge from coreutils.
18927         * MODULES.html.sh: Add xstrtold.
18928         * modules/xstrtold: New file.
18929         * modules/cycle-check (Files): Add lib/same-inode.h.
18930         * modules/dirname (Files): Add m4/double-slash-root.m4.
18931         * modules/getcwd (Files): Add m4/getcwd-abort-bug.m4.
18932         * modules/mkdir-p (Files): Add lib/same-inode.h.
18933         * modules/same (Files): Add lib/same-inode.h.
18934
18935 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
18936
18937         * m4/absolute-header.m4: Renamed from full-header-path.m4.
18938         This is to keep the terminology clean; POSIX talks about
18939         "absolute pathnames", not "full pathnames", but the GNU
18940         Coding Standards say to use "path" for something else;
18941         so use "absolute" to keep both sides happy.
18942         (gl_ABSOLUTE_HEADER): Renamed from gl_FULL_HEADER_PATH.
18943         Set gl_absolute_header, not gl_full_header_path.
18944         Set gl_cv_absolute_<header>, not gl_full_path_<header>.
18945         Define ABSOLUTE_<HEADER>, not FULL_PATH_<HEADER>.
18946         All uses changed.
18947
18948         Merge from coreutils.
18949
18950         2006-06-30  Paul Eggert  <eggert@cs.ucla.edu>
18951
18952         * m4/c-strtod.m4 (gl_C_STRTOLD): Add c-strtod.c to LIBSOURCES.
18953         Require gl_USE_SYSTEM_EXTENSIONS, not gl_C_STRTOD, since we don't
18954         want to require the building of c-strtod.o.
18955         * m4/lib-check.m4 (cu_LIB_CHECK): Remove SEQ_LIBM, since seq no longer
18956         needs -lm directly.
18957         * m4/xstrtod.m4 (gl_XSTRTOLD): New macro.
18958
18959         2006-06-19  Paul Eggert  <eggert@cs.ucla.edu>
18960
18961         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Prefer binutils's
18962         --as-needed option if available.  Problem reported by Albert Chin in
18963         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00114.html>.
18964         However, use -Wl,--as-needed, not bare --as-needed, since HP-UX 11.11
18965         cc merely issues a bunch of annoying warnings for --as-needed
18966         (this problem was reported by Bob Proulx).  Also, try linking with
18967         -lm to detect a bug in binutils 2.16 (this problem was reported
18968         by Ralf Wildenhues).
18969
18970         2006-06-18  Jim Meyering  <jim@meyering.net>
18971
18972         Test for a bug that causes glibc's getcwd to suffer a failed assertion.
18973         * m4/getcwd-abort-bug.m4 (gl_FUNC_GETCWD_ABORT_BUG): New file and
18974         macro.
18975         * m4/getcwd.m4 (gl_FUNC_GETCWD): If we detect support for getcwd_null,
18976         also check for glibc-2.4's abort-inducing bug.
18977
18978         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Fix typo.
18979         Low-probability clean-up should be to use rmdir to get rid of
18980         the just-created directory, not unlink.
18981
18982         * m4/ftruncate.m4 (gl_FUNC_FTRUNCATE): If ftruncate is missing, make
18983         configure fail, and request a bug report to inform us about it.
18984         Add a comment that, barring reports to the contrary, in 2007 we'll
18985         assume ftruncate is universally available.
18986
18987         2006-04-17  Paul Eggert  <eggert@cs.ucla.edu>
18988
18989         * m4/filemode.m4 (gl_FILEMODE): Check for strmode declaration.
18990
18991         2006-03-12  Jim Meyering  <jim@meyering.net>
18992
18993         * m4/chdir-safer.m4 (gl_CHDIR_SAFER): Add same-inode.h to the list.
18994         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Likewise.
18995         * m4/same.m4 (gl_SAME): Likewise.
18996         * m4/root-dev-ino.m4 (gl_ROOT_DEV_INO): Likewise.
18997
18998         2006-03-11  Eric Blake  <ebb9@byu.net>
18999
19000         * m4/double-slash-root.m4: New file, provides gl_DOUBLE_SLASH_ROOT.
19001         * m4/dirname.m4 (gl_DIRNAME): Use gl_DOUBLE_SLASH_ROOT.
19002         * m4/dos.m4 (FILE_SYSTEM_PREFIX_LEN): Move from here to dirname.h.
19003         (FILE_SYSTEM_DRIVE_PREFIX_CAN_BE_RELATIVE): New define.
19004
19005 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
19006
19007         * lib/stdint_.h: Include <sys/types.h> after @FULL_PATH_STDINT_H@, for
19008         MacOS X 10.4.6.  Don't mention <sys/int_types.h>.  Problems
19009         reported by Mark D. Baushke, one in
19010         <http://lists.gnu.org/archive/html/bug-gnulib/2006-07/msg00015.html>.
19011
19012         Merge from coreutils.
19013
19014         * lib/.cppi-disable: Add stdint_.h.
19015         * lib/.cvsignore: Add stdint.h.
19016
19017         2006-06-30  Paul Eggert  <eggert@cs.ucla.edu>
19018
19019         * lib/xstrtod.c (XSTRTOD, DOUBLE): New macros, so that we can support
19020         both double and long double versions.
19021         (XSTRTOD): Renamed from xstrtod.  Use DOUBLE internally.
19022         * lib/xstrtold.c: New file.
19023         * lib/xstrtod.h (xstrtold): New decl.
19024
19025         2006-05-22  Paul Eggert  <eggert@cs.ucla.edu>
19026
19027         * lib/filemode.c (setst): Remove.
19028         (strmode): Rewrite to avoid setst.  This makes the code shorter,
19029         (arguably) clearer, and the generated code is a bit smaller on my
19030         Debian GNU/Linux stable x86 host.
19031
19032         2006-04-17  Paul Eggert  <eggert@cs.ucla.edu>
19033
19034         * lib/filemode.c: Include "filemode.h" first, to test the interface.
19035         Assume that filemode.h includes sys/types.h and sys/stat.h.
19036         (HAVE_ST_DM_MODE): New macro, moved here from ls.c.
19037         (ftypelet): Reorder to put common cases first, for efficiency.
19038         Add 'P', 'w'.  Remove 'M', since it's now the caller's responsibility
19039         to do 'M'.
19040         (strmode): Renamed from mode_string, and now stores 12 bytes instead
19041         of 10, for compatibility with FreeBSD.  All callers changed.
19042         (filemodestring): Now stores 12 bytes instead of 10, and sets file
19043         types that can't be deduced solely from st_mode.  First arg is now a
19044         const pointer.
19045         * lib/filemode.h (HAVE_DECL_STRMODE): Include <string.h> for strmode.
19046         (strmode): Renamed from mode_string.
19047         (filemodestring): New decl.
19048         * lib/stat-macros.h: Don't undef S_ISDOOR, since it's never buggy.
19049         (S_ISDOOR): Don't bother with S_IFDOOR, since that code is never
19050         needed.
19051         (S_ISPORT, S_ISWHT): New macros, if not already defined.
19052
19053         2006-04-12  Paul Eggert  <eggert@cs.ucla.edu>
19054
19055         * lib/fsusage.c: Don't include <inttypes.h> or <stdint.h>, since
19056         fsusage.h now does that.  Include fsusage.h first, to test interface.
19057         Prefer statvfs if it works, since it's blessed by POSIX.  Attempt
19058         at most one method (the old code could have generated decls that
19059         didn't conform to C89, not that this was ever exercised).
19060         * lib/fsusage.h: Include <inttypes.h> and <stdint.h> if they exist.
19061
19062         2006-03-19  Jim Meyering  <jim@meyering.net>
19063
19064         Work even in a chroot where d_ino values for entries in "/"
19065         don't match the stat.st_ino values for the same names.
19066         * lib/getcwd.c (__getcwd): When no d_ino value matches the target inode
19067         number, iterate through all entries again, using lstat instead.
19068         Reported by Kenshi Muto in http://bugs.debian.org/355810, and by
19069         Zouhir Hafidi in https://bugzilla.redhat.com/bugzilla/190656.
19070
19071         * lib/getcwd.c (__getcwd): Clarify a comment.
19072         Use memcpy in place of a call to strcpy.
19073
19074         2006-03-12  Jim Meyering  <jim@meyering.net>
19075
19076         * lib/fts-cycle.c (leave_dir): If cycle-check's saved dev-ino pair
19077         matches that of the current directory (which we're about to chdir ".."
19078         out of), then save the dev-ino of the parent, instead.
19079
19080         * lib/same-inode.h (SAME_INODE): New file/macro.
19081         * lib/chdir-safer.c (SAME_INODE): Remove definition.
19082         Include "same-inode.h", instead.
19083         * lib/same.c: Likewise.
19084         * lib/cycle-check.h: Include "same-inode.h".
19085         (CYCLE_CHECK_REFLECT_CHDIR_UP): Define.
19086         * lib/cycle-check.c (SAME_INODE): Remove definition.
19087         * lib/root-dev-ino.h: Include "same-inode.h".
19088
19089         2006-03-11  Eric Blake  <ebb9@byu.net>
19090
19091         * lib/same.c (same_name): s/base_name/last_component/
19092         * lib/backupfile.c (check_extension, numbered_backup): Likewise.
19093         * lib/filenamecat.c (file_name_concat): Likewise.
19094
19095         2006-03-11  Eric Blake  <ebb9@byu.net>,
19096                     Paul Eggert  <eggert@cs.ucla.edu>
19097
19098         * lib/dirname.h (FILE_SYSTEM_PREFIX_LEN): Move here from dos.m4.
19099         [FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX]: Don't treat 1: as a
19100         drive prefix.
19101         (IS_ABSOLUTE_FILE_NAME): Treat all drive letters as absolute on
19102         platforms like cygwin with FILE_SYSTEM_DRIVE_PREFIX_IS_ABSOLUTE.
19103         (last_component): New method.
19104         * lib/dirname.c (dir_len): Determine when drive letters need a
19105         subsequent slash.  Preserve // when it is special.
19106         (dir_name): Don't append dot when drive letter is absolute.
19107         [TEST_DIRNAME]: Move into a full-blown gnulib test.
19108         * lib/basename.c (base_name): New semantics - malloc the result.
19109         Preserve // when it is special.  Preserve relative files that look
19110         like drive letters.
19111         (base_len): Preserve // when it is special.
19112         (last_component): New method, similar to old base_name semantics.
19113         * lib/stripslash.c (strip_trailing_slashes): Use last_component, not
19114         base_name.  Strip redundant slashes from ///.
19115
19116 2006-07-03  Jim Meyering  <jim@meyering.net>
19117
19118         * lib/cycle-check.h (CYCLE_CHECK_REFLECT_CHDIR_UP): Abort if this
19119         macro is used before the first cycle_check call.
19120
19121 2006-07-03  Eric Blake  <ebb9@byu.net>
19122
19123         * modules/dirname (Depends-on): Add xstrndup.
19124
19125 2006-07-02  Paul Eggert  <eggert@cs.ucla.edu>
19126
19127         * m4/stdint.m4 (gl_STDINT_H): Use more-mnemonic identifiers for
19128         test cases, so that config.log is a bit easier to follow.
19129
19130 2006-07-02  Paul Eggert  <eggert@cs.ucla.edu>
19131
19132         * lib/stdint_.h (intmax_t, uintmax_t): Prefer long to long long if
19133         both are 64 bits, since this seems to be the tradition, and this
19134         prevents gcc -Wformat from warning about usages with PRIuMAX.  If
19135         we ever run into a host that prefers long long to long in this
19136         case, we'll need another configure-time test.  Problem reported by
19137         Jim Meyering.
19138
19139 2006-07-02  Eric Blake  <ebb9@byu.net>
19140
19141         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Simplify by using AC_CHECK_DECLS.
19142
19143 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
19144
19145         * modules/inttypes (Depends-on): No longer depends on stdint.
19146         * modules/stdint (Description): Say more about assumptions.
19147         Say that the fast types might differ.  Say macros are used.
19148         (Files): Remove m4/size_max.m4, m4/wchar_t.m4.  Add m4/longlong.m4.
19149         (Makefile.am): Revise list of substituted symbols to match
19150         new stdint.m4.
19151         * modules/stdint-tests (Files): Add m4/wchar_t.m4, m4/wint_t.m4.
19152         (configure.ac): Add gt_TYPE_WCHAR_T, gt_TYPE_WINT_T.
19153         * tests/test-stdint.c (verify_same_types)
19154         [! (__GNUC__ >= 2 && DO_PEDANTIC)]: Put in a decl, so that
19155         the code conforms to C99/C89.
19156         Test for WCHAR_MIN and WCHAR_MAX only if HAVE_WCHAR_T.
19157         Test for WINT_MIN and WINT_MAX only if HAVE_WINT_T.
19158
19159 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
19160
19161         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Backport from Autoconf 2.60,
19162         but fix a bug, by requiring at least 64 bits.
19163         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Likewise.
19164         * m4/longlong.m4 (gl_AC_TYPE_LONG_LONG): Now just call
19165         AC_TYPE_LONG_LONG_INT.  This macro is obsolete and will go soon.
19166         * m4/ulonglong.m4 (gl_AC_TYPE_UNSIGNED_LONG_LONG) Likewise.
19167
19168         * m4/stdint.m4 (gl_STDINT_H): Rewrite to accommodate stdint_.h
19169         changes.  Make 2.59 a prerequisite.  Check and substitute for
19170         HAVE_LONG_LONG_INT.  Rely on Autoconf to check for stdint.h and
19171         inttypes.h.  Do not use special include files; just use the
19172         defaults.  Check for sys/inttypes.h and sys/bitypes.h in the usual
19173         way now.  Remove no-longer-needed tests for HAVE_LONG_64BIT,
19174         HAVE_LONG_LONG_64BIT, int8_t, int16_t, int32_t, int64_t, uint8_t,
19175         uint16_t, uint32_t uint64_t, int_least8_t, int_least16_t,
19176         int_least32_t, int_least64_t, uint_least8_t, uint_least16_t,
19177         uint_least32_t, uint_least64_t, int_fast8_t, int_fast16_t,
19178         int_fast32_t, int_fast64_t, uint_fast8_t uint_fast16_t,
19179         uint_fast32_t, uint_fast64_t, intptr_t, uintptr_t, intmax_t,
19180         uintmax_t, INT8_MIN, INT8_MAX, UINT8_MAX, INT16_MIN, INT16_MAX,
19181         UINT16_MAX, INT32_MIN, INT32_MAX, UINT32_MAX, INT64_MIN,
19182         INT64_MAX, UINT64_MAX, INT_LEAST8_MIN, INT_LEAST8_MAX,
19183         UINT_LEAST8_MAX, INT_LEAST16_MIN, INT_LEAST16_MAX,
19184         UINT_LEAST16_MAX, INT_LEAST32_MIN, INT_LEAST32_MAX,
19185         UINT_LEAST32_MAX, INT_LEAST64_MIN, INT_LEAST64_MAX,
19186         UINT_LEAST64_MAX, INT_FAST8_MIN, INT_FAST8_MAX, UINT_FAST8_MAX,
19187         INT_FAST16_MIN, INT_FAST16_MAX, UINT_FAST16_MAX, INT_FAST32_MIN,
19188         INT_FAST32_MAX, UINT_FAST32_MAX, INT_FAST64_MIN, INT_FAST64_MAX,
19189         UINT_FAST64_MAX, INTPTR_MIN, INTPTR_MAX, UINTPTR_MAX, INTMAX_MIN,
19190         INTMAX_MAX, UINTMAX_MAX, PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN,
19191         SIG_ATOMIC_MAX, SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN,
19192         WINT_MAX.  Check for C99 conformance more strictly, by detecting
19193         bugs in glibc 2.4, Solaris 10, and OpenBSD 3.9.  On the other hand do
19194         not check for things that C99 does not require, e.g., int8_t.  If
19195         a test isn't needed unless <stdint.h> isn't working, and is
19196         unlikely to be needed for any other reason, then don't do it
19197         unless <stdint.h> isn't working.  Do not check for ptrdiff_t or
19198         size_t, since we assume C89 freestanding at least.  Do not check
19199         for sig_atomic_t, wchar_t, or wint_t, since the code now does
19200         the right thing even if the types are not defined.  Instead use:
19201         (gl_STDINT_TYPE_PROPERTIES): New macro.
19202         (gl_HEADER_STDINT_H, gl_HEADER_INTTYPES_H): Remove.  Don't bother
19203         testing whether <sys/types.h> clashes, as Autoconf does this for
19204         us now.  All uses removed.
19205         (gl_STDINT_CHECK_TYPES, gl_STDINT_MISSING_BOUND):
19206         (gl_STDINT_MISSING_BOUNDS, gl_STDINT_MISSING_BOUNDS2):
19207         (gl_CHECK_TYPE_SAME):
19208         Remove; no longer needed.
19209         (gl_STDINT_BITSIZEOF): Don't bother to check whether the type
19210         exists, since we'll return 0 anyway in that case.
19211         (gl_INTEGER_TYPE_SUFFIX, gl_STDINT_INCLUDES): New macros.
19212
19213 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
19214
19215         * lib/stdint_.h (_GL_STDINT_H): Renamed from _STDINT_H, to avoid
19216         possible collision with system files.
19217         (<stdio.h>, <time.h>, <wchar.h>) [defined __cplusplus && ! defined
19218         __STDC_CONSTANT_MACROS)]: Do not include, since we don't need
19219         WCHAR_MIN and WCHAR_MAX in this case.
19220         (<stddef.h>): Do not include; no longer needed.
19221         (<sys/types.h>): Include if @HAVE_SYS_TYPES_H@, not if
19222         (defined(__OpenBSD__) || defined(__bsdi__) || defined(__sgi)).
19223         (<sys/inttypes.h>): Include if @HAVE_SYS_INTTYPES_H@ &&
19224         !@HAVE_INTTYPES_H@, not if (defined(__FreeBSD__)
19225         && (__FreeBSD__ >= 3) && (__FreeBSD__ <= 4)).
19226         (__STDINT_H__) [@HAVE_STDINT_H@ && defined __sgi && ! defined
19227         __c99]: Define, to work around IRIX <stdint.h> incompatibility.
19228         (@FULL_PATH_STDINT_H@) [!(defined(__sgi) && @HAVE_INTTYPES_H@ &&
19229         !defined(__c99))]: Include in this case too, since it's harmless
19230         now.
19231         (<inttypes.h>) [@HAVE_INTTYPES_H@]: Include, since it's no longer
19232         dangerous to do so.
19233         (@FULL_PATH_INTTYPES_H@) [(defined(__hpux) || defined(_AIX)) &&
19234         @HAVE_INTTYPES_H@]: Do not include, since we now include <inttypes.h>.
19235         (_STDINT_MIN, _STDINT_MAX): New macros.
19236         (int8_t, uint8_t, int16_t, uint16_t, int32_t, uint32_t, int64_t):
19237         (uint64_t, int_least8_t, uint_least8_t, int_least16_t):
19238         (uint_least16_t, int_least32_t, uint_least32_t, int_least64_t):
19239         (uint_least64_t, int_fast8_t, uint_fast8_t, int_fast16_t):
19240         (uint_fast16_t, int_fast32_t, uint_fast32_t, int_fast64_t):
19241         (uint_fast64_t, intptr_t, uintptr_t, intmax_t, uintmax_t): Now
19242         macros, not typedefs; this simplifies things quite a bit.
19243         Use long int for all types narrower than int64_t.
19244         (intmax_t, uintmax_t, INTMAX_C, UINTMAX_C):
19245         Define in terms of long long int or int64_t or long int,
19246         not int64_t or int32_t.  This saves some compile-time testing.
19247         (INT8_MIN, INT8_MAX, UINT8_MAX, INT16_MIN, INT16_MAX, UINT16_MAX):
19248         (INT32_MIN, INT32_MAX, UINT32_MAX, INT64_MIN, INT64_MAX):
19249         (UINT64_MAX, INT_LEAST8_MIN, INT_LEAST8_MAX, UINT_LEAST8_MAX):
19250         (INT_LEAST16_MIN, INT_LEAST16_MAX, UINT_LEAST16_MAX):
19251         (INT_LEAST32_MIN, INT_LEAST32_MAX, UINT_LEAST32_MAX):
19252         (INT_LEAST64_MIN, INT_LEAST64_MAX, UINT_LEAST64_MAX, INT_FAST8_MIN):
19253         (INT_FAST8_MAX, UINT_FAST8_MAX, INT_FAST16_MIN, INT_FAST16_MAX):
19254         (UINT_FAST16_MAX, INT_FAST32_MIN, INT_FAST32_MAX, UINT_FAST32_MAX):
19255         (INT_FAST64_MIN, INT_FAST64_MAX, UINT_FAST64_MAX, INTPTR_MIN):
19256         (INTPTR_MAX, UINTPTR_MAX, INTMAX_MIN, INTMAX_MAX, UINTMAX_MAX):
19257         (PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX):
19258         (SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN, WINT_MAX):
19259         undef any previous version and define our own version, for
19260         simplicity and consistency with the new macros for types.
19261         (PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX):
19262         (SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN, WINT_MAX):
19263         Simplify definitions by using _STDINT_MIN and _STDINT_MAX
19264         where appropriate.  Rely on new symbols @PTRDIFF_T_SUFFIX@,
19265         @SIG_ATOMIC_T_SUFFIX@, @SIZE_T_SUFFIX@, @WCHAR_T_SUFFIX@,
19266         @WINT_T_SUFFIX@ to keep things simple here.
19267         (UINT8_C, UINT16_C, UINT32_C, INT64_C, UINT64_C):
19268         Simplify by assuming typical 8/16/32/64 host, since we're
19269         already doing that elsewhere anyway.
19270         Use (LONG_MAX >> 31 >> 31 == 1) rather than @HAVE_LONG_64BIT@,
19271         and assume long long int is 64 bits if available.  This
19272         speeds up 'configure'.
19273
19274 2006-07-01  Eric Blake  <ebb9@byu.net>
19275
19276         * m4/stdarg.m4 (gl_STDARG_H): Use proper AH_VERBATIM.
19277         Reported by Andreas Buening.
19278
19279 2006-07-01  Eric Blake  <ebb9@byu.net>
19280
19281         * m4/stdarg.m4 (gl_STDARG_H): Properly parenthesize gl_va_copy.
19282
19283 2006-06-30  Jim Hyslop  <jhyslop@dreampossible.ca>  (tiny change)
19284
19285         * lib/getaddrinfo.c: fixed typo
19286
19287 2006-06-29  Jim Meyering  <jim@meyering.net>
19288
19289         * modules/strftime (Maintainer): Add my name, since with the
19290         FPRINTFTIME changes strftime.c has forked from glibc.
19291
19292 2006-06-29  Eric Blake  <ebb9@byu.net>
19293
19294         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Use AC_C_INLINE.
19295
19296 2006-06-29  Eric Blake  <ebb9@byu.net>
19297
19298         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): New file.
19299
19300 2006-06-29  Eric Blake  <ebb9@byu.net>
19301
19302         * lib/stat_.h: New file.
19303
19304 2006-06-29  Eric Blake  <ebb9@byu.net>
19305
19306         * lib/stat_.h (rpl_mkdir): Declare inline, to avoid warnings about
19307         unused static function.
19308
19309 2006-06-29  Eric Blake  <ebb9@byu.net>
19310
19311         * doc/functions.texi (Function Portability): Document missing lstat
19312         on mingw.
19313
19314 2006-06-29  Eric Blake  <ebb9@byu.net>
19315
19316         * MODULES.html.sh: Add sys_stat.
19317         * modules/sys_stat: New module.
19318         * modules/mkstemp (Depends-on): Add sys_stat.
19319
19320 2006-06-29  Derek R. Price  <derek@ximbiot.com>
19321
19322         * m4/strftime.m4: Don't call AC_FUNC_STRFTIME.
19323
19324 2006-06-29  Derek R. Price  <derek@ximbiot.com>
19325
19326         * m4/c-bs-a.m4: Removed.
19327
19328 2006-06-29  Derek R. Price  <derek@ximbiot.com>
19329
19330         * lib/strftime.c: Assume strftime() exists.
19331
19332 2006-06-29  Derek Price  <derek@ximbiot.com>
19333
19334         * modules/c-bs-a: Removed - \a is C89.
19335         * MODULES.html.sh: Remove c-bs-a.
19336
19337 2006-06-29  Bruno Haible  <bruno@clisp.org>
19338
19339         * modules/wcwidth (License): Change to LGPL.
19340
19341 2006-06-28  Simon Josefsson  <jas@extundo.com>
19342
19343         * tests/test-getaddrinfo.c: Test getnameinfo too.  Call WSAStartup
19344         on _WIN32.
19345
19346         * modules/getaddrinfo (Depends-on): Add inet_ntop, needed by
19347         getnameinfo.
19348
19349 2006-06-28  Simon Josefsson  <jas@extundo.com>
19350
19351         * m4/getaddrinfo.m4: Look for getnameinfo prototypes too.
19352
19353 2006-06-28  Simon Josefsson  <jas@extundo.com>
19354
19355         * lib/getaddrinfo.c: Try to load ws2_32.dll on Windows, to find the
19356         functions there.  It will succeed on Windows XP, but on Windows
19357         2000 and (presumably) earlier, it will fail, and use the internal
19358         re-implementation.
19359         (use_win32_p): New function.
19360         (getaddrinfo): Use strtoul on servname, to support numeric ports.
19361         Support AI_NUMERICSERV to disable getservbyname.
19362         (getnameinfo): New function, only supports
19363         NI_NUMERICHOST|NI_NUMERICSERV for now.
19364
19365         * lib/getaddrinfo.h: Test and check for AI_* flags separately, MinGW
19366         only have some of them.  Add AI_NUMERICSERV.  Add prototype for
19367         getnameinfo.
19368
19369 2006-06-28  Eric Blake  <ebb9@byu.net>
19370
19371         * modules/wcwidth: New file.
19372         * modules/mbchar (Depends-on): Add wcwidth.
19373         * modules/mbswidth (Depends-on): Add wcwidth.
19374         * MODULES.html.sh: Add wcwidth.
19375
19376 2006-06-28  Eric Blake  <ebb9@byu.net>
19377
19378         * m4/mbswidth.m4 (gl_MBSDWIDTH): Move wcwidth from here...
19379         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): ...to this new file.
19380
19381 2006-06-28  Eric Blake  <ebb9@byu.net>
19382
19383         * lib/xvasprintf.h: Fix comments.
19384
19385 2006-06-28  Eric Blake  <ebb9@byu.net>
19386
19387         * lib/mbchar.h (wcwidth): Include wcwidth.h.
19388         * lib/mbswidth.c (wcwidth): Move from here...
19389         * lib/wcwidth.h: ...to this new file.
19390
19391 2006-06-28  Derek R. Price  <derek@ximbiot.com>
19392
19393         * m4/savedir.m4: Remove AC_FUNC_CLOSEDIR_VOID requirement.
19394
19395         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Don't require AC_C_CONST, since
19396         it's obsolete.
19397         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME): Likewise.
19398
19399 2006-06-28  Derek R. Price  <derek@ximbiot.com>
19400
19401         * lib/savedir.c (CLOSEDIR): Remove.  All uses changed to closedir.
19402         Autoconf 2.60 says this stuff was obsolete.
19403
19404 2006-06-28  Bruno Haible  <bruno@clisp.org>
19405
19406         * modules/wcwidth (Files): Add m4/wchar_t.m4.
19407
19408 2006-06-28  Bruno Haible  <bruno@clisp.org>
19409
19410         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Also require AC_C_INLINE and
19411         gt_TYPE_WCHAR_T.
19412
19413 2006-06-28  Bruno Haible  <bruno@clisp.org>
19414
19415         * lib/wcwidth.h: Declare nothing if !HAVE_WCHAR_T. Provide a fallback
19416         declaration for wcwidth.
19417         * lib/mbswidth.c: Restore the includes of <wchar.h> and <wctypes.h>.
19418
19419 2006-06-28  Bruno Haible  <bruno@clisp.org>
19420
19421         * lib/mkdtemp.c [MINGW]: Include <io.h>.
19422         (mkdir): Define using _mkdir.
19423
19424 2006-06-28  Bruno Haible  <bruno@clisp.org>
19425
19426         * lib/getaddrinfo.h: Fix POSIX URL.
19427         * lib/getaddrinfo.c (WIN32_NATIVE): New macro. Use it instead of
19428         _WIN32.
19429         (use_win32_p): Make static.
19430         (getaddrinfo): Reject service name if it is empty or does not consist
19431         solely of decimal digits, or if its value is > 65535.
19432         (getnameinfo): Remove useless casts.
19433
19434 2006-06-27  Simon Josefsson  <jas@extundo.com>
19435
19436         * modules/sys_select: New file, suggested by Bruno Haible, Paul
19437         Eggert and Martin Lambers.
19438
19439 2006-06-27  Simon Josefsson  <jas@extundo.com>
19440
19441         * m4/sys_select_h.m4: New file, suggested by Bruno Haible, Paul
19442         Eggert and Martin Lambers.
19443
19444 2006-06-27  Bruno Haible  <bruno@clisp.org>
19445
19446         * m4/stdint.m4 (gl_STDINT_BITSIZEOF): For nonexistent types, set the
19447         result to 0, not to empty.
19448         Reported by Martin Neitzel <neitzel@sco.gaertner.de>.
19449
19450 2006-06-27  Bruno Haible  <bruno@clisp.org>
19451
19452         * lib/stdint_.h (intmax_t, uintmax_t): Undefine before typedef.
19453
19454 2006-06-26  Simon Josefsson  <jas@extundo.com>
19455
19456         * m4/inet_ntop.m4: Don't check for sys/types.h, we assume it is
19457         present.
19458
19459 2006-06-26  Paul Eggert  <eggert@cs.ucla.edu>
19460
19461         * lib/base64.c (B64): Use _ as the formal parameter, not x, to avoid
19462         bug in IBM C V6 for AIX.  Problem reported by Larry Jones in
19463         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00181.html>.
19464
19465 2006-06-26  Mark D. Baushke  <mdb@gnu.org>
19466
19467         * m4/stdint.m4 (gl_STDINT_H): Treat BSD/OS like OpenBSD.
19468
19469 2006-06-26  Bruno Haible  <bruno@clisp.org>
19470
19471         * modules/stdint (Makefile.am): Also substitute HAVE_WCHAR_H.
19472
19473 2006-06-26  Bruno Haible  <bruno@clisp.org>
19474
19475         * m4/stdint.m4 (gl_STDINT_H): Test also for <wchar.h>.
19476
19477 2006-06-26  Bruno Haible  <bruno@clisp.org>
19478
19479         * m4/stdint.m4 (gl_STDINT_H): Don't include <stdint.h> when using the
19480         SGI C compiler in pre-C99 mode.
19481         Suggested by Mark D. Baushke and Larry Jones.
19482
19483 2006-06-26  Bruno Haible  <bruno@clisp.org>
19484
19485         * lib/stdint_.h: Include <wchar.h> if necessary for WCHAR_MIN or
19486         WCHAR_MAX.
19487         Reported by Mark D. Baushke and Larry Jones.
19488
19489 2006-06-26  Bruno Haible  <bruno@clisp.org>
19490
19491         * lib/stdint_.h: Don't include <stdint.h> when using the SGI C compiler
19492         in pre-C99 mode.
19493         Suggested by Mark D. Baushke and Larry Jones.
19494
19495 2006-06-23  Simon Josefsson  <jas@extundo.com>
19496             Bruno Haible  <bruno@clisp.org>
19497
19498         * gnulib-tool (func_emit_lib_Makefile_am): Define MOSTLYCLEANDIRS.
19499         Emit mostlyclean-local rule.
19500         (func_emit_tests_Makefile_am): Likewise.
19501         * modules/sys_socket (Makefile.am): Use MOSTLYCLEANDIRS.
19502
19503 2006-06-23  Mark D. Baushke  <mdb@gnu.org>
19504
19505         * lib/stdint_.h: Treat BSD/OS like OpenBSD.
19506
19507 2006-06-23  Bruno Haible  <bruno@clisp.org>
19508
19509         * tests/test-stdint.c: Update to match ISO C 99 Technical
19510         Corrigendum 1.
19511
19512 2006-06-23  Bruno Haible  <bruno@clisp.org>
19513
19514         * m4/stdint.m4 (gl_STDINT_H): Treat IRIX like OpenBSD.
19515
19516 2006-06-23  Bruno Haible  <bruno@clisp.org>
19517
19518         * lib/stdint_.h: Treat IRIX like OpenBSD.
19519
19520 2006-06-23  Bruno Haible  <bruno@clisp.org>
19521
19522         * lib/stdint_.h (UINT8_C, UINT16_C, UINT32_C): Define according to
19523         ISO C 99 Technical Corrigendum 1.
19524
19525 2006-06-22  Simon Josefsson  <jas@extundo.com>
19526
19527         * m4/sockpfaf.m4: Include winsock2.h too, to make it work under
19528         MinGW.
19529
19530 2006-06-22  Paul Eggert  <eggert@cs.ucla.edu>
19531
19532         * lib/glob.c (collated_compare): Remove 'const' uses that weren't
19533         needed.  Some compiler complained about some of them.  Problem reported
19534         by Larry Jones in
19535         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00172.html>.
19536
19537 2006-06-21  Simon Josefsson  <jas@extundo.com>
19538
19539         * tests/test-getaddrinfo.c: New file.
19540
19541         * modules/getaddrinfo-tests: New file.
19542
19543         * MODULES.html.sh: Add inet_pton.
19544
19545         * modules/inet_pton: New file.
19546
19547 2006-06-21  Simon Josefsson  <jas@extundo.com>
19548
19549         * m4/getaddrinfo.m4: Don't define WINVER.  Look for gethostbyname in
19550         -lws2_32 too.  Fixes getaddrinfo on Windows 2000, with the price
19551         of using the (limited) gnulib implementation on Windows XP.
19552
19553         * m4/inet_pton.m4: New file.
19554
19555 2006-06-21  Simon Josefsson  <jas@extundo.com>
19556
19557         * lib/getaddrinfo.c (getaddrinfo): Set ai_family in the return
19558         variable.
19559
19560         * lib/socket_.h: Don't define WINVER.
19561
19562         * lib/inet_pton.h, inet_pton.c: New file, taken from glibc but
19563         slightly modified to work in gnulib.
19564
19565 2006-06-21  Simon Josefsson  <jas@extundo.com>
19566
19567         * doc/gnulib.texi (Windows sockets): Add.
19568
19569 2006-06-21  Paul Eggert  <eggert@cs.ucla.edu>
19570
19571         * lib/read-file.c (fread_file): Start with buffer allocation of
19572         0 bytes rather than 1 byte; this simplifies the code.
19573         Don't invoke feof; it's not needed.  Refactor to avoid duplicate
19574         code to free buffer and save/restore errno.
19575         (internal_read_file): Remove unused local.
19576
19577 2006-06-20  Paul Eggert  <eggert@cs.ucla.edu>
19578
19579         * lib/openat.c (openat): Use ?:, not if, to work around GCC bug 4210
19580         <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=4210>.
19581         Problem reported by Denis Excoffier in
19582         <http://lists.gnu.org/archive/html/bug-tar/2006-06/msg00023.html>.
19583
19584 2006-06-19  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
19585
19586         * modules/sys_socket, modules/socklen: Include sys/types since
19587         FreeBSD 4.x's sys/socket.h needs it.
19588
19589 2006-06-19  Simon Josefsson  <jas@extundo.com>
19590
19591         * lib/inet_ntop.c: Always build inet_ntop4, since inet_ntop6 calls it.
19592
19593 2006-06-19  Paul Eggert  <eggert@cs.ucla.edu>
19594
19595         * lib/alloca_.h (alloca) [defined alloca]: Don't define or declare.
19596
19597 2006-06-19  Bruno Haible  <bruno@clisp.org>
19598
19599         * m4/stdint.m4 (gl_STDINT_H): Enclose the values of FULL_PATH_STDINT_H
19600         and FULL_PATH_INTTYPES_H in angle brackets.
19601         Reported by Mark D. Baushke <mdb@gnu.org>.
19602
19603 2006-06-17  Eric Blake  <ebb9@byu.net>
19604
19605         * m4/rmdir-errno.m4 (gl_FUNC_FMDIR_NOTEMPTY): Assume errno.h declares
19606         errno.
19607
19608 2006-06-17  Bruno Haible  <bruno@clisp.org>
19609
19610         * m4/stdint.m4 (gl_STDINT_H) [FreeBSD >= 5]: Don't include
19611         <sys/inttypes.h>.
19612
19613 2006-06-17  Bruno Haible  <bruno@clisp.org>
19614
19615         * m4/setenv.m4 (gl_PREREQ_SETENV, gl_PREREQ_UNSETENV): Remove test
19616         whether errno is declared. Assume <errno.h> declares errno.
19617
19618 2006-06-17  Bruno Haible  <bruno@clisp.org>
19619
19620         * lib/stdint_.h [FreeBSD >= 5]: Don't include <sys/inttypes.h>.
19621
19622 2006-06-17  Bruno Haible  <bruno@clisp.org>
19623
19624         * lib/stdint_.h (_UINT8_T, _UINT32_T, _UINT64_T): New macros. Fixes a
19625         problem on Solaris 2.5.1.
19626
19627 2006-06-16  Eric Blake  <ebb9@byu.net>
19628
19629         * lib/unsetenv.c [!defined errno]: Assume errno.h declares errno.
19630         * lib/unicodeio.c [!defined errno]: Likewise.
19631         * lib/strtol.c [!defined errno]: Likewise.
19632         * lib/strtod.c [!defined errno]: Likewise.
19633
19634 2006-06-15  Eric Blake  <ebb9@byu.net>
19635
19636         * m4/ssize_t.m4 (gt_TYPE_SSIZE_T): Work in spite of -Werror.
19637
19638 2006-06-15  Eric Blake  <ebb9@byu.net>
19639
19640         * config/srclist.txt (ssize_t.m4): Lose sync.
19641
19642 2006-06-15  Bruno Haible  <bruno@clisp.org>
19643
19644         * modules/stdint (Files): Include m4/full-header-path.m4,
19645         m4/size_max.m4, m4/wchar_t.m4.
19646         (Makefile.am): Many more substitutions.
19647         * modules/stdint-tests: New file.
19648         * tests/test-stdint.c: New file.
19649
19650 2006-06-15  Bruno Haible  <bruno@clisp.org>
19651
19652         * m4/stdint.m4 (gl_STDINT_H): Rewritten to produce a complete stdint.h.
19653         (gl_HEADER_STDINT_H, gl_HEADER_INTTYPES_H, gl_STDINT_CHECK_TYPES,
19654         gl_STDINT_MISSING_BOUND, gl_STDINT_MISSING_BOUNDS,
19655         gl_STDINT_MISSING_BOUNDS2, gl_STDINT_BITSIZEOF, gl_CHECK_TYPES_SIGNED,
19656         gl_CHECK_TYPE_SAME): New macros.
19657
19658 2006-06-15  Bruno Haible  <bruno@clisp.org>
19659
19660         * m4/size_max.m4 (gl_SIZE_MAX): Make it work also when cross-compiling.
19661
19662 2006-06-15  Bruno Haible  <bruno@clisp.org>
19663
19664         * lib/stdint_.h: Rewritten to be fully auto-configured.
19665         Fixes bug on HP-UX/IA64.
19666
19667 2006-06-11  Paul Eggert  <eggert@cs.ucla.edu>
19668
19669         * lib/getdate.y (__attribute__): Don't define if already defined.
19670         Problem reported by Larry Jones.
19671         * lib/utimens.c (__attribute__): Likewise.
19672
19673 2006-06-04  Paul Eggert  <eggert@cs.ucla.edu>
19674
19675         * lib/regexec.c (group_nodes_into_DFAstates): Fix a buffer overrun
19676         reported by Andreas Schwab.
19677
19678 2006-05-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
19679             Bruno Haible  <bruno@clisp.org>
19680
19681         * m4/strndup.m4 (gl_FUNC_STRNDUP): Replace the AC_REPLACE_FUNCS with a
19682         check for the declaration of strnlen and a run test that exposes the
19683         AIX 5.1 strnlen bug.  In the failure case, #define strndup to
19684         rpl_strndup.
19685
19686 2006-05-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
19687             Bruno Haible  <bruno@clisp.org>
19688
19689         * lib/strndup.c (strndup) [!_LIBC]: Don't undefine macro definition.
19690
19691 2006-05-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
19692
19693         * m4/c-strtod.m4 (gl_C99_STRTOLD): Use a link test rather than a
19694         compile test, for Tru64 4.0D.
19695
19696 2006-05-28  Karl Berry  <karl@gnu.org>
19697
19698         * config/srclist.txt (printf-args.c): lose sync.
19699
19700 2006-05-26  Martin Lambers  <marlam@marlam.de>
19701
19702         * lib/getpass.c: Updates the test for the native W32 API, and adds
19703         missing includes, thus fixing compilation warnings.
19704
19705 2006-05-25  Sergey Poznyakoff  <gray@gnu.org.ua>
19706
19707         * lib/exclude.c (exclude_fnmatch): New function.
19708         (excluded_file_name): Call exclude_fnmatch.
19709         * lib/exclude.h (excluded_file_name): New prototype
19710
19711 2006-05-25  Paul Eggert  <eggert@cs.ucla.edu>
19712
19713         * lib/tempname.c (small_open, large_open): New macros.
19714         (__open, __open64) [!_LIBC]: Remove.
19715         (__gen_tempname): Use small_open and large_open instead of __open
19716         and __open64.  This fixes a portability bug on HP-UX 11.11i
19717         reported by Simon Wing-Tang in
19718         <http://lists.gnu.org/archive/html/bug-coreutils/2006-05/msg00114.html>.
19719
19720 2006-05-24  Bruno Haible  <bruno@clisp.org>
19721
19722         * lib/printf-args.c (printf_fetchargs): Turn NULL pointers for
19723         TYPE_STRING and TYPE_WIDE_STRING into a non-NULL replacement.
19724         Reported by Thorsten Maerz <torte@netztorte.de> via
19725         Aaron Stone <aaron@serendipity.cx>.
19726
19727 2006-05-19  Paul Eggert  <eggert@cs.ucla.edu>
19728
19729         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Rename cache variables to use
19730         gl_ rather than jm_.  Link, don't run, so that cross-compiles are
19731         allowed.  Check that resulting type is arithmetic.  Move AC_REQUIRE
19732         and AC_CHECK_HEADERS_ONCE outside of AC_CACHE_CHECK, since they're
19733         not really conditional on the cache.
19734         (gl_PREREQ_NANOSLEEP): Check for sys/select.h.
19735
19736 2006-05-19  Paul Eggert  <eggert@cs.ucla.edu>
19737
19738         * lib/nanosleep.c [HAVE_SYS_SELECT_H]: Include <sys/select.h>.
19739         Use the usual Autoconf way to include <time.h> and/or sys/time.h.
19740         (my_usleep): Don't mishandle maximum value.
19741
19742 2006-05-19  Jim Meyering  <jim@meyering.net>
19743
19744         * lib/getugroups.c: Correct an outdated comment.  From Bruno Haible.
19745
19746 2006-05-17  Bruno Haible  <bruno@clisp.org>
19747
19748         Cygwin portability.
19749         * lib/classpath.c (PATH_SEPARATOR) [CYGWIN]: Define as ':'.
19750
19751 2006-05-17  Bruno Haible  <bruno@clisp.org>
19752
19753         * lib/stdint_.h: Fix recognition of Cygwin.
19754
19755 2006-05-15  Bruno Haible  <bruno@clisp.org>
19756
19757         * build-aux/config.rpath: Improve support for Sun C 5.9 on Linux, based
19758         on libtool patch by Ralf Wildenhues.
19759
19760 2006-05-14  Paul Eggert  <eggert@cs.ucla.edu>
19761
19762         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Fix overly-picky
19763         test for C99 conformance; (bool) 0.5 is an integer constant
19764         expression, but (bool) -0.5 is not.  Problem reported by Fedor
19765         Sergeev in <http://forum.sun.com/jive/thread.jspa?threadID=96202>.
19766
19767 2006-05-11  Simon Josefsson  <jas@extundo.com>
19768
19769         * m4/xvasprintf.m4: Fix obvious typo.
19770
19771 2006-05-11  Jim Meyering  <jim@meyering.net>
19772
19773         * lib/sha1.c (sha1_buffer): Correct comment: s/MD5/SHA1/.  From
19774         James Lemley.
19775
19776 2006-05-10  Simon Josefsson  <jas@extundo.com>
19777
19778         * lib/md4.c: Typo fix, update copyright years.
19779         (K1, K2): Don't use L because it turn computations into 64-bit on
19780         64-bit platforms.
19781
19782 2006-05-10  Paul Eggert  <eggert@cs.ucla.edu>
19783
19784         * lib/crc.c (crc32_update): Remove unnecessary L suffix.
19785         * lib/md4.c (rol): Cast right-shift arg to uint32_t to prevent
19786         unwanted sign propagation, e.g., on hosts with 64-bit int.
19787         There still are some problems with reeelly weird theoretical hosts
19788         (e.g., 33-bit int) but it's not worth worrying about now.
19789         * lib/sha1.c (rol): Likewise.
19790         (K1, K2, K3, K4): Remove unnecessary L suffix.
19791
19792 2006-05-10  Bruno Haible  <bruno@clisp.org>
19793
19794         * lib/des.c: Cast to avoid warnings.
19795
19796 2006-05-09  Bruno Haible  <bruno@clisp.org>
19797
19798         * modules/xvasprintf (Files): Add m4/xvasprintf.m4.
19799         (Depends-on): Depend also on xsize, stdarg.
19800         (configure.ac): Add gl_XVASPRINTF.
19801
19802 2006-05-09  Bruno Haible  <bruno@clisp.org>
19803
19804         * m4/xvasprintf.m4: New file.
19805
19806 2006-05-09  Bruno Haible  <bruno@clisp.org>
19807
19808         * lib/xvasprintf.c: Include limits.h, string.h, xsize.h.
19809         (EOVERFLOW): Define fallback value.
19810         (xstrcat): New function.
19811         (xvasprintf): Recognize the special case of a string concatenation.
19812
19813 2006-05-08  Eric Blake  <ebb9@byu.net>
19814
19815         * gnulib-tool (func_version): Base copyright year on CVS date.
19816         (func_emit_copyright_notice): New function.
19817         (func_emit_lib_Makefile_am): Use it.
19818         (func_emit_tests_Makefile_am): Likewise.
19819         (func_import): Likewise.
19820
19821 2006-05-08  Bruno Haible  <bruno@clisp.org>
19822
19823         * modules/stdarg: New file.
19824         * MODULES.html.sh (func_all_modules): Add section for <stdarg.h>.
19825
19826 2006-05-08  Bruno Haible  <bruno@clisp.org>
19827
19828         * m4/stdarg.m4: New file, from GNU gettext.
19829
19830 2006-05-08  Bruno Haible  <bruno@clisp.org>
19831
19832         * config/srclist.txt (build-aux/config.rpath): different from latest
19833         release.
19834
19835 2006-05-08  Bruno Haible  <bruno@clisp.org>
19836
19837         * build-aux/config.rpath: Add support for Sun C 5.9 on Linux.
19838
19839 2006-05-05  Jim Meyering  <jim@meyering.net>
19840
19841         * m4/warning.m4: New file, derived from bison's file by the same name.
19842
19843 2006-05-03  Bruno Haible  <bruno@clisp.org>
19844
19845         * lib/stdint_.h: Shorter URL.
19846         * lib/inttypes.h: Likewise.
19847
19848 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
19849
19850         * modules/inttypes (Maintainer): Change from Derek Price to 'all'.
19851
19852 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
19853
19854         * lib/verify.h: Document the internals better.  Most of this change
19855         was written by Bruno Haible.
19856
19857 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
19858
19859         * doc/verify.texi: New file, partly based on a proposal by
19860         Bruno Haible.
19861
19862 2006-05-02  Bruno Haible  <bruno@clisp.org>
19863
19864         * m4/full-header-path.m4 (gl_FULL_HEADER_PATH): Move the include_next
19865         test from here...
19866         * m4/_inttypes_h.m4 (gl_INTTYPES_H): ... to here.
19867
19868 2006-04-29  Bruno Haible  <bruno@clisp.org>
19869
19870         * lib/gcd.c: Use WORD_T and GCD instead of unsigned long and gcd.
19871         Suggested by Oskar Liljeblad <oskar@osk.mine.nu>.
19872
19873 2006-04-29  Bruno Haible  <bruno@clisp.org>
19874
19875         * gnulib-tool: Make --update option actually work.
19876
19877 2006-04-29  Bruno Haible  <bruno@clisp.org>
19878
19879         * doc/gcd.texi: New file.
19880         * doc/gnulib.texi: Include it.
19881
19882 2006-04-25  Paul Eggert  <eggert@cs.ucla.edu>
19883
19884         * lib/getdate.y (get_date): When adding relative date, start with the
19885         initial time, not with the result of the first mktime call.
19886
19887 2006-04-25  Bruno Haible  <bruno@clisp.org>
19888
19889         * gnulib-tool (func_import): Output the include directives in three
19890         blocks, sorted separately.
19891         Reported by Ben Pfaff <blp@cs.stanford.edu>.
19892
19893 2006-04-24  Paul Eggert  <eggert@cs.ucla.edu>
19894
19895         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Use prototype
19896         to define main with arguments, for C++.  Reported by Eric Blake.
19897         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC):
19898         Prefer 'int main ()' to 'int main (void)', for C++.
19899         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Likewise.
19900         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Specify a return type
19901         for 'main', for C99 and C++.
19902
19903 2006-04-24  Paul Eggert  <eggert@cs.ucla.edu>
19904
19905         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Use return, not exit.
19906         Don't assume that exit status -1 is valid.
19907         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
19908         * m4/putenv.m4 (gl_FUNC_PUTENV): Likewise.
19909         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Likewise.
19910         * m4/readdir.m4 (GL_FUNC_READDIR): Include <stdlib.h>.
19911         * m4/rename.m4 (vb_FUNC_RENAME): Likewise.
19912         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Use AC_RUN_IFELSE,
19913         not AC_TRY_RUN.  Use return, not exit.  Don't assume that
19914         functions can be used without declaring them, or that you can
19915         exit with status -1.
19916         * m4/utimes-null.m4 (gl_FUNC_UTIMES_NULL): Likewise.
19917
19918 2006-04-24  Karl Berry  <karl@gnu.org>
19919
19920         * config/srclist.txt (longdouble.m4): sync lost.
19921
19922 2006-04-24  Eric Blake  <ebb9@byu.net>
19923
19924         * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Avoid unused variable warning.
19925
19926 2006-04-24  Bruno Haible  <bruno@clisp.org>
19927
19928         * m4/poll.m4 (gl_FUNC_POLL): When cross-compiling, reject also the
19929         poll() implementation in AIX.
19930         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
19931
19932 2006-04-24  Bruno Haible  <bruno@clisp.org>
19933
19934         * m4/poll.m4 (gl_FUNC_POLL): Rearrange code, so that POLL_H gets
19935         assigned exactly once.
19936
19937 2006-04-23  Claudio Fontana  <claudio@gnu.org>
19938             Bruno Haible  <bruno@clisp.org>
19939
19940         * modules/gettext (Makefile.am): Add a -I flag for <libintl.h>.
19941         * gnulib-tool (func_emit_lib_Makefile_am): Emit empty default value
19942         for AM_CPPFLAGS.
19943
19944 2006-04-23  Bruno Haible  <bruno@clisp.org>
19945
19946         * modules/copy-file: Depend on unistd.
19947         * modules/execute: Likewise.
19948         * modules/fatal-signal: Likewise.
19949         * modules/findprog: Likewise.
19950         * modules/mkdtemp : Likewise.
19951         * modules/pipe: Likewise.
19952         * modules/wait-process: Likewise.
19953
19954 2006-04-23  Bruno Haible  <bruno@clisp.org>
19955
19956         * lib/fwriteerror.c (fwriteerror): Call fclose also when an error
19957         condition was already detected.
19958         Reported by Ben Pfaff <blp@cs.stanford.edu>.
19959
19960 2006-04-23  Bruno Haible  <bruno@clisp.org>
19961
19962         * lib/copy-file.c: Include <unistd.h> unconditionally.
19963         * lib/execute.c: Likewise.
19964         * lib/fatal-signal.c: Likewise.
19965         * lib/findprog.c: Likewise.
19966         * lib/mkdtemp.c: Likewise.
19967         * lib/pipe.h: Likewise.
19968         * lib/pipe.c: Likewise.
19969         * lib/wait-process.h: Likewise.
19970
19971 2006-04-23  Bruno Haible  <bruno@clisp.org>
19972
19973         * gnulib-tool (func_usage): Fix --import description. Document
19974         --update.
19975         (func_import): Create temporary file in a temporary directory, if
19976         --dry-run is specified. Silence errors from 'grep' when there are no
19977         m4 files in $m4dir.
19978         (func_create_testdir): Silence errors from 'grep' when there are no
19979         m4 files in $m4dir.
19980         Reported by Karl Berry <karl@freefriends.org>.
19981
19982 2006-04-20  Bruno Haible  <bruno@clisp.org>
19983
19984         * m4/argp.m4 (gl_ARGP): Don't call AC_CHECK_DECLS_ONCE with more than
19985         one argument, so that the code will be portable to Autoconf 2.60.
19986         * m4/getlogin_r.m4 (gl_PREREQ_GETLOGIN_R): Likewise.
19987         * m4/getpass.m4 (gl_PREREQ_GETPASS): Likewise.
19988         * m4/unlocked-io.m4 (gl_FUNC_GLIBC_UNLOCKED_IO): Likewise.
19989
19990 2006-04-19  Derek Price  <derek@ximbiot.com>
19991             Eric Blake  <ebb9@byu.net>
19992
19993         * m4/full-header-path.m4 (gl_FULL_HEADER_PATH): Use </full/path.h>
19994         rather than "/full/path.h".  Update comment to match.  Shorten &
19995         generalize m4_translit call via AS_TR_CPP.
19996
19997 2006-04-19  Derek Price  <derek@ximbiot.com>
19998             Eric Blake  <ebb9@byu.net>
19999
20000         * lib/inttypes.h: Correct grammar in comment.
20001
20002 2006-04-18  Derek Price  <derek@ximbiot.com>
20003             Paul Eggert  <eggert@cs.ucla.edu>
20004
20005         * modules/inttypes: New file.
20006         * modules/strtoimax, modules/strtoumax: Depend on inttypes.
20007
20008 2006-04-18  Derek Price  <derek@ximbiot.com>
20009             Paul Eggert  <eggert@cs.ucla.edu>
20010
20011         * m4/_inttypes_h.m4, m4/full-header-path.m4, m4/include_next.m4:
20012         New files.
20013
20014 2006-04-18  Derek Price  <derek@ximbiot.com>
20015             Paul Eggert  <eggert@cs.ucla.edu>
20016
20017         * lib/inttypes.h: New file.
20018         * lib/strtoimax.c: Assume <inttypes.h>.
20019
20020 2006-04-15  Paul Eggert  <eggert@cs.ucla.edu>
20021
20022         * lib/utimens.c (futimens): glibc futimesat messes up if /proc
20023         isn't mounted.  Problem reported by Kir Kolyshkin.
20024
20025 2006-04-13  Paul Eggert  <eggert@cs.ucla.edu>
20026
20027         * lib/regcomp.c (init_dfa): Don't use wchar_t or wctype_t if
20028         RE_ENABLE_I18N is not defined.  Problem reported by Mark D. Baushke via
20029         Derek R. Price.
20030         * lib/regex.h (RE_DUP_MAX): Update comment to match current
20031         implementation.
20032
20033 2006-04-12  Eric Blake  <ebb9@byu.net>
20034
20035         * modules/time_r (Makefile.am): Remove lib_SOURCES line, as this
20036         is now done automatically by the corresponding Autoconf macro.
20037
20038 2006-04-11  Paul Eggert  <eggert@cs.ucla.edu>
20039
20040         * m4/time_r.m4 (gl_TIME_R): Add AC_LIBSOURCES for time_r.c and
20041         time_r.h.
20042
20043 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
20044
20045         Merge regex changes from libc, removing some of our
20046         POSIX-conformance changes that were rejected and redoing them in a
20047         less-intrusive way.
20048
20049         * lib/regcomp.c (re_compile_internal, init_dfa):
20050         Length arg is now size_t, not Idx.  All uses changed.
20051         (peek_token): Forward decl now says internal_function.
20052         (__re_error_msgid, __re_error_msgid_idx):
20053         Now static rather than extern with attribute_hidden.
20054         (re_compile_pattern) [!defined _LIBC]: Use K&R-style defn.
20055         For some reason libc prefers K&R style defns for external functions.
20056         (regerror) [!defined _LIBC]: Likewise.
20057         (re_set_syntax, re_compile_fastmap, regcomp, regfree, re_comp):
20058         (seek_collating_symbol_entry, lookup_collation_sequence_value):
20059         (build_range_exp, build_collating_symbol):
20060         Use K&R-style defn.
20061         (re_compile_fastmap): Use '\0' to memset, not 0.
20062         (utf8_sb_map): Make the calculations more obvious.
20063         (init_dfa, parse_bracket_exp, build_charclass_op):
20064         Call calloc and cast result, as glibc does.
20065         (init_word_char, fetch_token, peek_token, peek_token_bracket):
20066         (build_range_exp, build_collating_symbol):
20067         Now internal functions.
20068
20069         * lib/regex.c [!defined _LIBC]: Allow compiling with C++ compilers.
20070
20071         * lib/regex.h (__USE_GNU_REGEX): New macro.  Don't depend on
20072         _REGEX_SOURCE any more; depend on _GNU_SOURCE instead.
20073         Don't depend on VMS; depend on __VMS instead, for POSIX
20074         namespace cleanness.
20075         (regoff_t): Define to ssize_t, not long int.
20076
20077         Remove the REG_ macros named below.  Instead, make the old names
20078         (e.g., RE_BACKSLASH_ESCAPE_IN_LISTS) visible only if
20079         __USE_GNU_REGEX.
20080         (REG_BACKSLASH_ESCAPE_IN_LISTS):
20081         (REG_BK_PLUS_QM, REG_CHAR_CLASSES, REG_CONTEXT_INDEP_ANCHORS):
20082         (REG_CONTEXT_INDEP_OPS, REG_CONTEXT_INVALID_OPS):
20083         (REG_DOT_NEWLINE, REG_DOT_NOT_NULL, REG_HAT_LISTS_NOT_NEWLINE):
20084         (REG_INTERVALS, REG_LIMITED_OPS, REG_NEWLINE_ALT):
20085         (REG_NO_BK_BRACES, REG_NO_BK_PARENS, REG_NO_BK_REFS):
20086         (REG_NO_BK_VBAR, REG_NO_EMPTY_RANGES):
20087         (REG_UNMATCHED_RIGHT_PAREN_ORD, REG_NO_POSIX_BACKTRACKING):
20088         (REG_NO_GNU_OPS, REG_DEBUG, REG_INVALID_INTERVAL_ORD):
20089         (REG_IGNORE_CASE, REG_CARET_ANCHORS_HERE):
20090         (REG_CONTEXT_INVALID_DUP, REG_NO_SUB, REG_SYNTAX_EMACS):
20091         (REG_SYNTAX_AWK, REG_SYNTAX_GNU_AWK, REG_SYNTAX_POSIX_AWK):
20092         (REG_SYNTAX_GREP, REG_SYNTAX_EGREP, REG_SYNTAX_POSIX_EGREP):
20093         (REG_SYNTAX_ED, REG_SYNTAX_SED, _REG_SYNTAX_POSIX_COMMON):
20094         (REG_SYNTAX_POSIX_BASIC, REG_SYNTAX_POSIX_MINIMAL_BASIC):
20095         (REG_SYNTAX_POSIX_EXTENDED, REG_SYNTAX_POSIX_MINIMAL_EXTENDED):
20096         (REG_DUP_MAX, REG_UNALLOCATED, REG_REALLOCATE, REG_FIXED):
20097         (REG_NREGS):
20098         Remove.  All uses replaced by the old RE_* names.
20099         (RE_BACKSLASH_ESCAPE_IN_LISTS):
20100         (RE_BK_PLUS_QM, RE_CHAR_CLASSES, RE_CONTEXT_INDEP_ANCHORS):
20101         (RE_CONTEXT_INDEP_OPS, RE_CONTEXT_INVALID_OPS):
20102         (RE_DOT_NEWLINE, RE_DOT_NOT_NULL, RE_HAT_LISTS_NOT_NEWLINE):
20103         (RE_INTERVALS, RE_LIMITED_OPS, RE_NEWLINE_ALT):
20104         (RE_NO_BK_BRACES, RE_NO_BK_PARENS, RE_NO_BK_REFS):
20105         (RE_NO_BK_VBAR, RE_NO_EMPTY_RANGES):
20106         (RE_UNMATCHED_RIGHT_PAREN_ORD, RE_NO_POSIX_BACKTRACKING):
20107         (RE_NO_GNU_OPS, RE_DEBUG, RE_INVALID_INTERVAL_ORD):
20108         (RE_IGNORE_CASE, RE_CARET_ANCHORS_HERE):
20109         (RE_CONTEXT_INVALID_DUP, RE_NO_SUB):
20110         Don't bother having these macros be independent of each others'
20111         values, since they no longer exist in the POSIX name space.
20112
20113         Rename the following member names back to their old names,
20114         unless !__USE_GNU_REGEX.  All uses changed back.
20115         (buffer): Renamed from re_buffer.
20116         (allocated): Renamed from re_allocated.
20117         (used): Renamed from re_used.
20118         (syntax): Renamed from re_syntax.
20119         (fastmap): Renamed from re_fastmap.
20120         (translate): Renamed from re_translate.
20121         (can_be_null): Renamed from re_can_be_null.
20122         (regs_allocated): Renamed from re_regs_allocated.
20123         (fastmap_accurate): Renamed from re_fastmap_accurate.
20124         (no_sub): Renamed from re_no_sub.
20125         (not_bol): Renamed from re_not_bol.
20126         (not_eol): Renamed from re_not_eol.
20127         (newline_anchor): Renamed from re_newline_anchor.
20128         (num_regs): Renamed from rm_num_regs.
20129         (start): Renamed from rm_start.
20130         (end): Renamed from rm_end.
20131
20132         (free_state): Move up a bit.
20133
20134         * lib/regex_internal.h (inline) [__GNUC__ < 3 && defined _LIBC]:
20135         #define to be empty.
20136         (ASCII_CHARS): New macro, replacing all uses of 0x80 and/or SBC_MAX / 2
20137         when that is what is intended.
20138         (SBC_MAX): Define to UCHAR_MAX + 1, not 256.
20139         (__re_error_msgid, __re_error_msgid_idx): Remove decls; not needed.
20140         (MAX): New macro.
20141         (re_xmalloc, re_calloc, re_xrealloc, re_x2realloc): Remove.
20142         All uses changed back to re_malloc, etc.  It's now the caller's
20143         responsibility to check for overflow; all callers changed.
20144         (re_alloc_oversized, re_x2alloc_oversized, re_xnmalloc, re_xnrealloc):
20145         (re_x2nrealloc): Remove.
20146         (free_state): Remove decl.
20147
20148         * lib/regexc.c (regexec, re_match, re_search, re_match_2, re_search_2):
20149         (re_set_registers, re_exec):
20150         Use K&R-style defn.
20151
20152         2006-01-31  Roland McGrath  <roland@redhat.com>
20153
20154         * lib/regcomp.c (calc_eclosure_iter): Remove dead variables.
20155         Reported by Mike Frysinger <vapier@gentoo.org>.
20156
20157         2006-01-15  Andreas Jaeger  <aj@suse.de>
20158
20159         [BZ #1950]
20160         * lib/regex_internal.c (re_string_reconstruct): Adjust for
20161         build_wcs_upper_buffer change.
20162         (build_wcs_upper_buffer): Change return type.
20163
20164         2005-12-10  Ulrich Drepper  <drepper@redhat.com>
20165
20166         * lib/regex_internal.h: Include <stdint.h> if available.
20167
20168         2005-12-06  Paolo Bonzini  <bonzini@gnu.org>
20169
20170         * lib/regex_internal.h (SIZE_MAX): Provide a default definition.
20171
20172         2005-10-14  Ulrich Drepper  <drepper@redhat.com>
20173
20174         * lib/regcomp.c: Adjust for changed secondary hash function.
20175
20176         2005-09-30  Ulrich Drepper  <drepper@redhat.com>
20177
20178         * lib/regex.h: Pretty printing.
20179         Clean up namespace a bit.
20180
20181         2005-09-30  Jakub Jelinek  <jakub@redhat.com>
20182
20183         * lib/regexec.c (update_cur_sifted_state, check_arrival,
20184         check_arrival_add_next_nodes): Avoid using uninitialized variable.
20185
20186         2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
20187                     Ulrich Drepper  <drepper@redhat.com>
20188
20189         [BZ #1302]
20190         * lib/regex_internal.h (bitset_t): Renamed from bitset.  All uses
20191         changed.
20192         (bitset_word_t): Renamed from bitset_word.  All uses changed.
20193
20194         2005-09-22  Ulrich Drepper  <drepper@redhat.com>
20195
20196         [BZ #281]
20197         * lib/regex.h: Define RE_TRANSLATE_TYPE as unsigned char *.
20198         * lib/regcomp.c: Remove unnecessary uses of
20199         unsigned RE_TRANSLATE_TYPE.
20200         * lib/regex_internal.h: Likewise.
20201         * lib/regex_internal.c: Likewise.
20202         * lib/regexec.c: Likewise.
20203         Based on a patch by Stepan Kasal <kasal@ucw.cz>.
20204
20205         2005-09-07  Ulrich Drepper  <drepper@redhat.com>
20206
20207         * lib/regexec.c (find_recover_state): Remove unnecessary
20208         initialization.
20209         (transit_state_bkref): Make DFA a const pointer.
20210         (get_subexp): Likewise.
20211         (check_arrival): Likewise.
20212         (update_cur_sifted_state): Likewise.
20213         (re_search_internal): Likewise.
20214         (prune_impossible_nodes): Likewise.
20215         (acquire_init_state_context): Likewise.
20216         (proceed_next_node): Likewise.
20217         (set_regs): Likewise.
20218         (free_fail_stack_return): Likewise.
20219         (check_arrival_expand_ecl): Mark DFA parameter as const.
20220         (check_arrival_expand_ecl_sub): Likewise.
20221         (check_subexp_limits): Likewise.
20222         (sub_epsilon_src_nodes):  Likewise.
20223         (add_epsilon_src_nodes):  Likewise.
20224         (merge_state_array): Likewise.
20225         (update_regs): Likewise.
20226         (build_trtable): Likewise.
20227         (sift_states_backward): Mark MCTX parameter as const.
20228         (build_sifted_states): Likewise.
20229         (update_cur_sifted_state): Likewise.
20230         (sift_states_mkref): Likewise.
20231         (check_arrival_expand_ecl): Mark eclosure as const.
20232         (check_dst_limits_calc_pos_1): Likewise.
20233         * lib/regex_internal.h (re_match_context_t): Make dfa a const
20234         pointer.
20235
20236         2005-09-06  Ulrich Drepper  <drepper@redhat.com>
20237
20238         * lib/regexec.c (merge_state_with_log): Define dfa as const pointer.
20239         (transit_state_sb): Likewise.
20240         (transit_state_mb): Likewise.
20241         (sift_states_iter_mb): Likewise.
20242         (check_arrival_add_next_nodes): Likewise.
20243         (check_node_accept_bytes): Change first parameter to pointer-to-const.
20244         [_LIBC] (re_search_2_stub): Use mempcpy.
20245
20246         * lib/regex_internal.c (re_string_reconstruct): Avoid calling
20247         mbrtowc for very simple UTF-8 case.
20248
20249         * lib/regex_internal.c (re_acquire_state): Make DFA pointer arg
20250         a pointer-to-const.
20251         (re_acquire_state_context): Likewise.
20252         * lib/regex_internal.h: Adjust prototypes.
20253
20254         * lib/regex.c: Prevent using C++ compilers.
20255
20256         * lib/regex_internal.c (re_acquire_state): Minor code rearrangement.
20257         (re_acquire_state_context): Likewise.
20258
20259 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
20260
20261         * modules/regex (Depends-on): Add ssize_t.
20262
20263 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
20264
20265         * m4/regex.m4 (gl_REGEX): Check for new glibc interface to
20266         translation table.
20267
20268 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
20269
20270         * doc/gnulib-tool.texi (Modified imports): pathname -> file name.
20271
20272 2006-03-29  Mark D. Baushke  <mdb@gnu.org>
20273             Bruno Haible  <bruno@clisp.org>
20274
20275         * lib/stdint_.h: On OpenBSD, don't redefine types already included in
20276         <sys/types.h> and <inttypes.h>.
20277
20278 2006-03-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
20279
20280         * m4/argz.m4 (gl_FUNC_ARGZ): If we define `error_t', also define
20281         `__error_t_defined', so argp.h will not typedef the former.
20282
20283 2006-03-25  Paul Eggert  <eggert@cs.ucla.edu>
20284
20285         * m4/regex.m4 (gl_REGEX): Don't insist on REG_SYNTAX_POSIX_EGREP,
20286         REG_SYNTAX_EMACS, and REG_IGNORE_CASE.  Settle for the traditional
20287         glibc names.  Even if glibc is changed to conform to POSIX, the
20288         traditional names will be available anyway, since regex depends on
20289         the extensions module.  Also, fix a longstanding typo in the
20290         implementation of Spencer ERE test #75 from grep 2.3.  Problems
20291         reported by Emanuele Giaquinta.  Also, change sense of cached
20292         variable, so that the message makes sense.
20293
20294 2006-03-24  Simon Josefsson  <jas@extundo.com>
20295
20296         * lib/base64.c: Fix problems reported by Eric Blake <ebb9@byu.net>,
20297         including some doc fixes.
20298         (base64_encode_alloc): Fix +1 bug on allocation failures.
20299
20300 2006-03-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
20301
20302         * lib/base64.c (base64_encode): Do not read past end of array with
20303         unsanitized input on systems with CHAR_BIT > 8.
20304
20305 2006-03-24  Eric Blake  <ebb9@byu.net>
20306
20307         * lib/time_r.c (copy_string_result): Remove, as it is no longer used.
20308
20309 2006-03-22  Karl Berry  <karl@gnu.org>
20310
20311         * config/srclist.txt (*setenv.[ch]): get from coreutils.
20312         * config/srclistvars.sh (COREUTILS): new var.
20313
20314 2006-03-17  Jim Meyering  <jim@meyering.net>
20315
20316         * m4/regex.m4 (gl_REGEX): Fix typo in last change:
20317         s/_REGEX_WIDE_OFFSETS/_REGEX_LARGE_OFFSETS/.
20318
20319 2006-03-16  Paul Eggert  <eggert@cs.ucla.edu>
20320
20321         * m4/regex.m4 (gl_REGEX): Don't check for off_t, since the code
20322         no longer needs it.  Instead, check that regoff_t is as least
20323         as wide as ptrdiff_t.
20324
20325         Don't define _REGEX_WIDE_OFFSETS unless using the included regex,
20326         so that our regex.h stays compatible with the installed regex.
20327         This is helpful for installers who configure --without-included-regex.
20328         Problem reported by Emanuele Giaquinta.
20329
20330 2006-03-16  Paul Eggert  <eggert@cs.ucla.edu>
20331
20332         * lib/regex.h (regoff_t) [defined _REGEX_LARGE_OFFSETS]:
20333         Typedef to long int, not to off_, as POSIX will likely change
20334         in that direction.
20335
20336 2006-03-15  Eric Blake  <ebb9@byu.net>
20337
20338         * m4/dirfd.m4 (gl_FUNC_DIRFD): Use AC_REQUIRE for AC_HEADER_DIRENT.
20339
20340 2006-03-13  Sergey Poznyakoff  <gray@gnu.org.ua>
20341
20342         * lib/argp-help.c (validate_uparams): Fix typo
20343         * lib/argp-parse.c (argp_default_options): Consistently begin help
20344         messages with a lowercase letter.
20345
20346 2006-03-11  Paul Eggert  <eggert@cs.ucla.edu>
20347
20348         * lib/time_r.h (asctime_r, ctime_r): Remove.  These functions can
20349         overrun buffers and shouldn't be used (much as gets shouldn't be
20350         used).
20351         * lib/time_r.c (asctime_r, ctime_r): Likewise.
20352
20353 2006-03-08  Simon Josefsson  <jas@extundo.com>
20354
20355         * m4/gc-random.m4: Permit 'no' as variable values and fix warnings,
20356         suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
20357
20358 2006-03-08  Simon Josefsson  <jas@extundo.com>
20359
20360         * m4/gc-random.m4: Call AC_CANONICAL_HOST and use $host_os instead of
20361         $target, suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
20362
20363 2006-03-08  Simon Josefsson  <jas@extundo.com>
20364
20365         * lib/gc-gnulib.c (randomize): Don't open files called 'no', they
20366         signal that configure disabled the device.
20367
20368 2006-03-08  Simon Josefsson  <jas@extundo.com>
20369
20370         * build-aux/maint.mk: Fix refresh-po, to handle no translated
20371         languages.
20372
20373 2006-03-07  Simon Josefsson  <jas@extundo.com>
20374
20375         * modules/getopt (Depends-on): Add unistd.
20376
20377         * modules/unistd: New file.
20378
20379 2006-03-07  Simon Josefsson  <jas@extundo.com>
20380
20381         * modules/gc-random: New file.
20382
20383 2006-03-07  Simon Josefsson  <jas@extundo.com>
20384
20385         * m4/unistd_h.m4: New file.
20386
20387 2006-03-07  Simon Josefsson  <jas@extundo.com>
20388
20389         * m4/readline.m4 (gl_FUNC_READLINE): Rewrite the cached part of the
20390         test to be side-effect free by storing the result in the cache
20391         variable gl_cv_lib_readline, and moving the assignment of
20392         LIBREADLINE and LTLIBREADLINE outside the COMMANDS-TO-SET-IT.
20393         From Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
20394
20395 2006-03-07  Simon Josefsson  <jas@extundo.com>
20396
20397         * m4/gc-random.m4: New file, mostly from gc.m4.  Warn instead of
20398         error on missing devices (the functions will return an error).
20399
20400         * m4/gc.m4: Move random stuff to gc-random.m4
20401
20402 2006-03-07  Simon Josefsson  <jas@extundo.com>
20403
20404         * lib/unistd_.h: New file.
20405
20406 2006-03-07  Simon Josefsson  <jas@extundo.com>
20407
20408         * lib/gc-libgcrypt.c, gc-gnulib.c: Use GC_USE_RANDOM.
20409
20410 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
20411
20412         * m4/unistd_h.m4 (gl_HEADER_UNISTD): Rename, to match modules file.
20413         Problem reported by Juan Manuel Guerrero.
20414
20415 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
20416
20417         * lib/c-stack.c: Include unistd.h unconditionally, since we now assume
20418         the unistd module.
20419         * lib/getlogin_r.c: Likewise.
20420         * lib/getlogin_r.h: Likewise.
20421         * lib/glob.c: Likewise.
20422         * lib/pagealign_alloc.c: Likewise.
20423         * lib/unistd_.h: Remove; no longer needed.
20424
20425 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
20426
20427         * MODULES.html.sh (Support for systems lacking POSIX:2001):
20428         Add unistd.
20429         * modules/c-stack (Depends-on): Add unistd.
20430         * modules/getlogin_r: Likewise.
20431         * modules/glob: Likewise.
20432         * modules/pagealign_alloc: Likewise.
20433         * modules/unistd (Files): Remove lib/unistd_.h.
20434         (EXTRA_DIST): Remove.
20435         (unistd.h): Create using 'echo' rather than 'cp', so that we don't
20436         need unistd_.h.
20437         (MOSTLYCLEANFILES): Remove unistd.h-t.
20438
20439 2006-03-03  Simon Josefsson  <jas@extundo.com>
20440
20441         * build-aux/maint.mk: Add several syntax checks from CoreUtils.
20442
20443 2006-03-03  Simon Josefsson  <jas@extundo.com>
20444
20445         * build-aux/maint.mk: Add refresh-po rule, based on ideas from
20446         libidn and bison.
20447
20448 2006-03-03  Simon Josefsson  <jas@extundo.com>
20449
20450         * build-aux/maint.mk: Add indent target.
20451
20452 2006-03-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de> (tiny change)
20453
20454         * m4/poll.m4 (gl_FUNC_POLL): If we deem poll(2) unacceptable, use
20455         our replacement poll.h in any case, to avoid a differing
20456         declaration from a system header.  Seen on AIX.
20457
20458 2006-03-01  Simon Josefsson  <jas@extundo.com>
20459
20460         * lib/readline.c: Fix typo, tiny patch from Stepan Kasal
20461         <kasal@ucw.cz>.
20462
20463 2006-03-01  Paul Eggert  <eggert@cs.ucla.edu>
20464
20465         * modules/gettime (Depends-on): Add extensions module.
20466         * modules/nanosleep (Depends-on): Likewise.
20467         * modules/settime (Depends-on): Likewise.
20468
20469 2006-03-01  Paul Eggert  <eggert@cs.ucla.edu>
20470
20471         * m4/clock_time.m4 (gl_CLOCK_TIME): Require gl_USE_SYSTEM_EXTENSIONS,
20472         not merely AC_GNU_SOURCE, for the benefit of Solaris 10 when compiled
20473         pedantically.
20474         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
20475         * m4/timespec.m4 (gl_TIMESPEC): Likewise.
20476
20477         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Use "=" with "test",
20478         not "==".  Reported by Ralf Wildenhues.
20479
20480 2006-03-01  Karl Berry  <karl@gnu.org>
20481
20482         * doc/Copyright/request-*: new files, synced from gnuorg.
20483
20484 2006-03-01  Karl Berry  <karl@gnu.org>
20485
20486         * config/srclist.txt (Copyright/*): new entries.
20487
20488 2006-02-28  Simon Josefsson  <jas@extundo.com>
20489
20490         * lib/getopt.c: Protect #include of unistd.h, for MSVS.
20491
20492 2006-02-27  Simon Josefsson  <jas@extundo.com>
20493
20494         * lib/base64.h: Indent #define's.  From Jim Meyering
20495         <jim@meyering.net>.
20496
20497 2006-02-27  Jim Meyering  <jim@meyering.net>
20498
20499         Revert the change of 2006-02-24, so these files can continue
20500         to be sync'd from gettext.
20501         * lib/mkdtemp.c, setenv.c, unsetenv.c: *Un*-normalize inclusion
20502         of `config.h'.
20503
20504 2006-02-26  Paul Eggert  <eggert@cs.ucla.edu>
20505
20506         * modules/intprops: New file.
20507         * MODULES.html.sh (Numeric conversion functions <stdlib.h>):
20508         Add intprops.
20509         * modules/getloadavg (Files): Remove lib/intprops.h.
20510         (Depends-on): Add intprops.
20511         * modules/human: Likewise.
20512         * modules/inttostr: Likewise.
20513         * modules/openat: Likewise.
20514         * modules/sig2str: Likewise.
20515         * modules/userspec: Likewise.
20516         * modules/utimecmp: Likewise.
20517         * modules/xnanosleep: Likewise.
20518         * modules/xstrtol: Likewise.
20519
20520 2006-02-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny changes)
20521
20522         * modules/xstrtod: Omit xstrtod.h, xstrtod.c; they're in LIB_SOURCES.
20523         * modules/lock-tests (TESTS): Use $(EXEEXT).
20524         * modules/tls-tests: Likewise.
20525         * modules/argp-tests: Likewise.
20526         (check_PROGRAMS): New var, replacing...
20527         (noinst_PROGRAMS, test_argp_SOURCES): Remove.
20528
20529 2006-02-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
20530
20531         * lib/mkdtemp.c, lib/setenv.c, lib/unsetenv.c: Normalize inclusion of
20532         `config.h'.
20533
20534 2006-02-24  Paul Eggert  <eggert@cs.ucla.edu>
20535
20536         * lib/glob.c: Say "invalid" rather than "illegal" in comments.
20537
20538 2006-02-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
20539
20540         Sync from coreutils.
20541         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Require gl_FUNC_LCHMOD and
20542         gl_CHDIR_SAFER.
20543
20544 2006-02-22  Jim Meyering  <jim@meyering.net>
20545
20546         Sync from coreutils.
20547         * m4/chdir-safer.m4: New file.
20548
20549 2006-02-20  Paul Eggert  <eggert@cs.ucla.edu>
20550
20551         * lib/getcwd.c (AT_FDCWD): Work around a bug in Solaris 9 and 10, where
20552         AT_FDCWD exceeds INT_MAX.
20553         * lib/openat.h (AT_FDCWD): Likewise.
20554
20555 2006-02-17  Eric Blake  <address@hidden>
20556
20557         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Fix caching error.
20558
20559 2006-02-16  Simon Josefsson  <jas@extundo.com>
20560
20561         * modules/getaddrinfo (Depends-on): Add sys_socket.
20562
20563 2006-02-15  Simon Josefsson  <jas@extundo.com>
20564
20565         * build-aux/maint.mk: Add dsyntax-check rule.
20566
20567 2006-02-15  Eric Blake  <ebb9@byu.net>
20568
20569         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Don't attempt using
20570         winsock2.h or ws2tcpip.h when sys/socket.h is present. Fixes
20571         'present but cannot compile' warnings on cygwin.
20572         * m4/socklen.m4 (gl_TYPE_SOCKLEN_T): Use gl_HEADER_SYS_SOCKET.  Don't
20573         use ws2tcpip.h if sys/socket.h works.
20574         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Use gl_HEADER_SYS_SOCKET.
20575         (gl_GETADDRINFO): Don't use ws2tcpip.h when sys/socket.h is present.
20576
20577 2006-02-14  Simon Josefsson  <jas@extundo.com>
20578
20579         * modules/maintainer-makefile (Files): Rename.
20580
20581         * build-aux/GNUmakefile: Rename Makefile.maint to maint.mk
20582         and (the local) Makefile.cfg to maint-cfg.mk.
20583
20584         * build-aux/Makefile.maint, build-aux/maint.mk: Renamed the former
20585         to the latter.
20586
20587         * modules/maintainer-makefile: New module.
20588
20589         * build-aux/Makefile.maint: New file, from GNU CoreUtils, although
20590         severaly stripped to make it possible to build it up from scratch
20591         with reliable tests.
20592
20593         * build-aux/GNUmakefile: New file, from GNU CoreUtils with some
20594         fixes to permit overriding the default actions when configure and
20595         makefile are not available.
20596
20597 2006-02-14  Paul Eggert  <eggert@cs.ucla.edu>
20598
20599         Sync from coreutils.
20600         * modules/lstat (Depends-on): Don't depend on xalloc.
20601         (License): Change from GPL to LGPL, since this is now simply a
20602         replacement for a libc function.
20603
20604 2006-02-14  Jim Meyering  <jim@meyering.net>
20605
20606         Sync from coreutils.
20607
20608         Eliminate the unwelcome (albeit unlikely) possibility of xmalloc
20609         failure on deficient systems, and simplify gnulib lgpl dependencies.
20610         * lib/lstat.c (rpl_lstat): Rewrite to use stat() in place of the
20611         xmalloc/lstat combination.  Based on a patch from Bruno Haible.
20612
20613         * lib/xalloc-die.c: Remove unused definition of N_.
20614
20615 2006-02-14  Jim Meyering  <jim@meyering.net>
20616
20617         Sync from coreutils.
20618         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): Invoke
20619         AC_CHECK_FUNCS(getmntent) unconditionally so that tests of
20620         $ac_cv_func_getmntent (e.g., in gl_LIST_MOUNTED_FILE_SYSTEMS) need not
20621         double-quote uses of that variable, to accommodate the rare case in
20622         which getmntent is available in none of the libraries checked.  This
20623         happens at least on FreeBSD 5.0.
20624
20625 2006-02-13  Simon Josefsson  <jas@extundo.com>
20626
20627         * gnulib-tool (Usage): Fix --import, from
20628         karl@freefriends.org (Karl Berry).
20629
20630 2006-02-13  Sergey Poznyakoff  <gray@gnu.org.ua>
20631
20632         * lib/argp-fmtstream.c: Restore another bugfix lost on 2005-12-12
20633
20634 2006-02-07  Sergey Poznyakoff  <gray@gnu.org.ua>
20635
20636         * lib/argp-namefrob.h: Restore changes accidentally lost during the
20637         "autoupdate" on 2005-12-12.
20638
20639 2006-02-07  Paul Eggert  <eggert@cs.ucla.edu>
20640
20641         * modules/closeout (Depends-on): Remove atexit.
20642
20643 2006-02-07  Paul Eggert  <eggert@cs.ucla.edu>
20644
20645         * lib/closeout.c (close_stdout): Don't assume 'bool' converts nonzero
20646         ints to 0 or 1, as this isn't true for the stdbool.h substitute.
20647
20648 2006-02-05  Paul Eggert  <eggert@cs.ucla.edu>
20649
20650         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Don't #define
20651         __EXTENSIONS__ if this causes compilation to fail.  Problem
20652         reported by Nelson H. F. Beebe with Solaris 10 and Sun C 5.7
20653         c89 -D_XOPEN_SOURCE -D_XOPEN_SOURCE_EXTENDED.
20654
20655 2006-01-27  Paul Eggert  <eggert@cs.ucla.edu>
20656
20657         * lib/fnmatch.c (L_): Renamed from L, to work around a bug in
20658         Mac OS X 10.3.9 with GCC 3 reported by Claudio Fontana in
20659         <http://lists.gnu.org/archive/html/bug-gnulib/2006-01/msg00074.html>.
20660         All uses changed.
20661
20662 2006-01-26  Simon Josefsson  <jas@extundo.com>
20663
20664         * lib/socket_.h: Set WINVER to 0x0501, to make sure getaddrinfo
20665         prototype is visible on mingw32.
20666
20667         * lib/getaddrinfo.h: Define EAI_ADDRFAMILY and EAI_SYSTEM if not set,
20668         for mingw32.
20669
20670         * lib/gai_strerror.c, getaddrinfo.h: Protect netdb.h #include (for
20671         mingw32).
20672
20673 2006-01-26  Paul Eggert  <eggert@cs.ucla.edu>
20674
20675         * lib/fts.c (diropen): Open with O_NOCTTY | O_NONBLOCK too.  Don't
20676         attempt to open for write; this always fails, at least on POSIX
20677         hosts.  This reinstates the 2006-01-09 change, which was
20678         inadvertently removed.
20679
20680 2006-01-26  Bruno Haible  <bruno@clisp.org>
20681
20682         * gnulib-tool (func_import): Use "trap 'exit $?' instead of "trap :".
20683         Reported by Paul Eggert.
20684
20685 2006-01-26  Bruno Haible  <bruno@clisp.org>
20686             Paul Eggert  <eggert@cs.ucla.edu>
20687
20688         * lib/stdbool_.h (_Bool)
20689         [(! (defined __cplusplus || defined __BEOS__)
20690           && !defined __GNUC__
20691           && !(defined __HP_cc || defined __xlc__
20692                || (defined __SUNPRO_C && (__SUNPRO_C < 0x550 || __STDC__ == 1))
20693                || defined __sgi))]:
20694         #define to signed char in these cases too; this simplifies
20695         the code (so that we don't have to worry about HP-UX, AIX, SunPRO,
20696         etc., separately) and makes it more conservative.
20697
20698 2006-01-25  Simon Josefsson  <jas@extundo.com>
20699
20700         * m4/getaddrinfo.m4: Look for getaddrinfo inside ws2tcip.h and
20701         -lws2_32.  Protect sys/socket.h and netdb.h #include's.  Include
20702         ws2tcpip.h with WINVER=0x0501.  All for mingw32.
20703
20704 2006-01-25  Sergey Poznyakoff  <gray@gnu.org.ua>
20705
20706         * lib/argp-namefrob.h: Bugfix. Remove stray #
20707
20708 2006-01-25  Paul Eggert  <eggert@cs.ucla.edu>
20709
20710         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check for xlc bug if __GCC__ too,
20711         so that we test the test.
20712         Check for yet another HP-UX cc bug involving *bool |= bool.
20713
20714 2006-01-25  Karl Berry  <karl@gnu.org>
20715
20716         * config/srclist.txt (vasnprintf.c): sync lost.
20717
20718 2006-01-25  Jim Meyering  <jim@meyering.net>
20719
20720         Sync from the stable (b5) branch of coreutils:
20721
20722         * lib/fts.c (fts_children): Don't let close() clobber errno from
20723         failed fchdir().
20724
20725         * lib/fts.c (fts_stat): When following a symlink-to-directory,
20726         don't necessarily interpret stat-fails+lstat-succeeds as indicating
20727         a dangling symlink.  That can also happen at least for ELOOP.
20728         The fix: return FTS_SLNONE only when the stat errno is ENOENT.
20729         FYI, this bug predates the inclusion of fts.c in coreutils.
20730
20731         * lib/fts.c (fts_open): Put new maxarglen declaration and uses
20732         in their own block, so pre-c99 compilers don't object.
20733
20734         Avoid the double-free (first in fts_read, second in fts_close) that
20735         would occur when an `active' directory is made inaccessible (e.g.,
20736         via chmod a-x) during a traversal.
20737         * lib/fts.c (fts_read): After a failed fchdir, update sp->fts_cur
20738         before returning.  Reproduce this failure by
20739         mkdir -p a/b; cd a; chmod a-x . b
20740         Reported by Stavros Passas.
20741
20742 2006-01-25  Jim Meyering  <jim@meyering.net>
20743
20744         * lib/fileblocks.c: Remove more useless parentheses.
20745         * lib/readutmp.h: Likewise.
20746
20747 2006-01-25  Bruno Haible  <bruno@clisp.org>
20748
20749         * lib/stdbool_.h (_Bool) [IRIX cc]: Define as 'signed char', to avoid
20750         warnings.
20751         Reported by Paul Eggert.
20752
20753 2006-01-25  Bruno Haible  <bruno@clisp.org>
20754
20755         * gnulib-tool (func_import): Use "trap :" instead of "trap -" to get
20756         rid of a trap command. For Solaris sh.
20757         Reported by Mark D. Baushke <mdb@gnu.org>.
20758
20759 2006-01-24  Simon Josefsson  <jas@extundo.com>
20760
20761         * lib/socket_.h (SHUT_WR, SHUT_RDWR): Don't hardcode, suggested by
20762         Bruno.
20763
20764 2006-01-24  Karl Berry  <karl@gnu.org>
20765
20766         * config/srclist.txt (argp-namefrob.h): sync lost.
20767
20768 2006-01-24  Jim Meyering  <jim@meyering.net>
20769
20770         * modules/openat (Files): Add lib/intprops.h.
20771         From Mark D. Baushke.
20772
20773 2006-01-24  Jim Meyering  <jim@meyering.net>
20774
20775         * m4/openat.m4 (gl_FUNC_OPENAT): Add AC_LIBSOURCES([intprops.h]).
20776         Reported by Mark D. Baushke.
20777
20778 2006-01-24  Jim Meyering  <jim@meyering.net>
20779
20780         * lib/socket_.h: Remove useless parentheses in uses of cpp `defined'.
20781
20782 2006-01-24  Bruno Haible  <bruno@clisp.org>
20783
20784         * modules/strnlen (Maintainer): Change from glibc to all.
20785
20786 2006-01-24  Bruno Haible  <bruno@clisp.org>
20787
20788         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check for IBM and HP-UX bugs.
20789         Patch by Paul Eggert.
20790
20791 2006-01-24  Bruno Haible  <bruno@clisp.org>
20792
20793         * lib/stdbool_.h (_Bool) [__cplusplus]: Don't define if the compiler
20794         already has it.
20795         Report and patch by Albert Chin-A-Young  <china@thewrittenword.com> on
20796         2005-11-26.
20797
20798         * lib/stdbool_.h (_Bool) [HP-UX cc, AIX cc,xlc]: Define as
20799         'signed char' to avoid problems with the built-in _Bool type.
20800         Reported by Paul Eggert on 2005-11-26.
20801
20802 2006-01-24  Bruno Haible  <bruno@clisp.org>
20803
20804         * gnulib-tool (func_import): Avoid constructing complicated sed
20805         expressions inside backquote.
20806         Report and solution by Mark D. Baushke <mdb@gnu.org>.
20807
20808 2006-01-23  Ulrich Drepper  <drepper@redhat.com>
20809
20810         These changes imported from libc.
20811         * lib/getopt.c: Use __fxprintf instead of inline stream orientation
20812         test and two separate function calls.
20813         * lib/strndup.c (__strndup): Add libc_hidden_def.
20814
20815 2006-01-23  Simon Josefsson  <jas@extundo.com>
20816
20817         * modules/lock-tests: Use check_PROGRAMS instead of noinst_PROGRAMS.
20818         Remove the test_*_SOURCES variable: automake infers it by default.
20819         * modules/tls-tests: Likewise.
20820
20821 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
20822
20823         Work around porting bugs reported by Dieter in
20824         <http://lists.gnu.org/archive/html/bug-bison/2006-01/msg00049.html>.
20825         * lib/getopt.c (_NOPROTO): Remove; no longer needed.
20826         Include <stdlib.h> and <unistd.h> in all environments; it's safe now.
20827         Include "getopt.h" first, to check interface.
20828         (getenv): Declare only if defined HAVE_DECL_GETENV &&
20829         !HAVE_DECL_GETENV.
20830         * lib/strndup.c [!_LIBC]: Include "strndup.h" to get prototype.
20831         (__strndup): Revert to K&R-style function dfns, the glibc style.
20832         * lib/strnlen.c: Don't claim it's taken from glibc; it's not.
20833         (strnlen, __strnlen): Remove #defines and #undefs; not needed.
20834         Include strnlen.h first, to get prototype properly.
20835         (strnlen): Renamed from __strnlen.
20836         Remove weak alias.
20837
20838 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
20839
20840         * m4/getopt.m4 (gl_PREREQ_GETOPT): Check for getenv decl.
20841
20842 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
20843
20844         * config/srclist.txt: Adjust to reflect glibc reorganization.
20845         This affects only comments.
20846
20847 2006-01-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
20848
20849          * gnulib-tool, build-aux/csharpcomp.sh.in: Do not pass `-q' to mktemp.
20850          Reported by Bruce Korb <bkorb@gnu.org>.
20851
20852 2006-01-22  Paul Eggert  <eggert@cs.ucla.edu>
20853
20854         * lib/quotearg.c (quotearg_buffer_restyled): Add "default: break;"
20855         to pacify gcc -Wswitch-default.
20856
20857 2006-01-22  Bruno Haible  <bruno@clisp.org>
20858
20859         * lib/vasnprintf.c (VASNPRINTF): In the computation of the size of the
20860         temporary buffer for sprintf, take into account the precision also
20861         for 'd', 'i', 'u', 'o', 'x', 'X'.
20862
20863 2006-01-21  Sergey Poznyakoff  <gray@gnu.org.ua>
20864
20865         * modules/argp-tests: New module
20866         * tests/test-argp.c: New file
20867         * tests/test-argp-2.sh: New file
20868
20869 2006-01-21  Sergey Poznyakoff  <gray@gnu.org.ua>
20870
20871         * lib/argp-help.c (usage_long_opt): Do not print DOC options.
20872         (__argp_base_name): Removed
20873         * lib/argp-namefrob.h (__argp_basename): Removed definition. Was a
20874         typo.
20875         (__argp_base_name): Provide macro definition or extern declaration
20876         depending on the configuration
20877
20878 2006-01-20  Simon Josefsson  <jas@extundo.com>
20879
20880         * modules/inet_ntop (Depends-on): Depend on sys_socket.
20881
20882 2006-01-20  Simon Josefsson  <jas@extundo.com>
20883
20884         * lib/inet_ntop.h: Unconditionally include sys/socket.h.
20885
20886 2006-01-20  Paul Eggert  <eggert@cs.ucla.edu>
20887
20888         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Use -Wl,-z,ignore
20889         rather than -Xlinker -z -Xlinker ignore, as it's more portable.
20890         Suggested by Bruno Haible.
20891
20892 2006-01-20  Karl Berry  <karl@gnu.org>
20893
20894         * config/srclist.txt (argp-fmtstream.h, localcharset.c): comment out
20895         until changes propagate, I guess.
20896
20897 2006-01-19  Simon Josefsson  <jas@extundo.com>
20898
20899         * m4/socklen.m4: Look in ws2tcpip.h too, for mingw32.
20900
20901 2006-01-19  Simon Josefsson  <jas@extundo.com>
20902
20903         * lib/socket_.h: Map SHUT_RD, SHUT_WR, SHUT_RDWR correctly.
20904
20905 2006-01-19  Simon Josefsson  <jas@extundo.com>
20906
20907         * gnulib-tool: Set check_PROGRAMS.
20908
20909         * modules/arcfour-tests, modules/arctwo-tests, modules/crc-tests,
20910         modules/des-tests, modules/gc-arcfour-tests,
20911         modules/gc-arctwo-tests, modules/gc-des-tests,
20912         modules/gc-hmac-md5-tests, modules/gc-hmac-sha1-tests,
20913         modules/gc-md2-tests, modules/gc-md4-tests, modules/gc-md5-tests,
20914         modules/gc-pbkdf2-sha1-tests, modules/gc-rijndael-tests,
20915         modules/gc-sha1-tests, modules/gc-tests, modules/hmac-md5-tests,
20916         modules/hmac-sha1-tests, modules/md2-tests, modules/md4-tests,
20917         modules/md5-tests, modules/readline, modules/rijndael-tests: Use
20918         check_PROGRAMS instead of noinst_PROGRAMS to be able to remove
20919         test_*_SOURCES.
20920
20921 2006-01-18  Simon Josefsson  <jas@extundo.com>
20922
20923         * modules/socklen (Depends-on): Depend on sys_socket.
20924
20925 2006-01-18  Simon Josefsson  <jas@extundo.com>
20926
20927         * modules/arcfour-tests, modules/arctwo-tests, modules/crc-tests,
20928         modules/des-tests, modules/gc-arcfour-tests,
20929         modules/gc-arctwo-tests, modules/gc-des-tests,
20930         modules/gc-hmac-md5-tests, modules/gc-hmac-sha1-tests,
20931         modules/gc-md2-tests, modules/gc-md4-tests, modules/gc-md5-tests,
20932         modules/gc-pbkdf2-sha1-tests, modules/gc-rijndael-tests,
20933         modules/gc-sha1-tests, modules/gc-tests, modules/hmac-md5-tests,
20934         modules/hmac-sha1-tests, modules/md2-tests, modules/md4-tests,
20935         modules/md5-tests, modules/readline, modules/rijndael-tests: Add
20936         $(EXEEXT) to automake TESTS variable, for mingw32.
20937
20938 2006-01-17  Simon Josefsson  <jas@extundo.com>
20939
20940         * modules/socklen (Include): Need sys/socket.h.
20941
20942 2006-01-17  Bruno Haible  <bruno@clisp.org>
20943
20944         * modules/ssize_t (Include): Add <sys/types.h>.
20945
20946 2006-01-16  Paul Eggert  <eggert@cs.ucla.edu>
20947
20948         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Don't use ldd, as
20949         it's not portable and it doesn't work with cross-compiles.
20950         Problem reported by Bruno Haible.  Fix missing-$ typo in
20951         'test "gl_cv_ignore_unused_libraries" ...' that prevented
20952         -zignore from being used with Sun's C compiler.
20953
20954 2006-01-12  Simon Josefsson  <jas@extundo.com>
20955
20956         * lib/base64.c: Fix warning, reported by Bruno Haible
20957         <bruno@clisp.org> and patch by Paul Eggert <eggert@CS.UCLA.EDU>.
20958
20959 2006-01-12  Bruno Haible  <bruno@clisp.org>
20960
20961         * modules/ldd: New file.
20962         * build-aux/ldd.sh.in: New file.
20963         * MODULES.html.sh (Support for building libraries and executables): Add
20964         ldd.
20965
20966 2006-01-12  Bruno Haible  <bruno@clisp.org>
20967
20968         * m4/ldd.m4: New file.
20969
20970 2006-01-12  Bruno Haible  <bruno@clisp.org>
20971
20972         * gnulib-tool (func_import, func_create_testdir): Don't go into an
20973         endless loop while replacing $auxdir with build-aux.
20974
20975 2006-01-11  Simon Josefsson  <jas@extundo.com>
20976
20977         * lib/stdint_.h (SIZE_MAX): Add missing (.
20978
20979 2006-01-11  Paul Eggert  <eggert@cs.ucla.edu>
20980
20981         Sync from coreutils.
20982         * lib/md5.c: Fix commentary typos.
20983         (alignof, UNALIGNED_P): No need for a GCC-specific version.
20984         * lib/md5.h (__attribute__): Remove; unused.
20985         * lib/sha1.c: Fix commentary to match md5 better.
20986         * lib/sha1.h (struct sha1_ctx): Use a word buffer, not a byte buffer,
20987         so that we don't need to worry about alignment.  All uses changed.
20988         This merges the 2005-10-28 md5 change into sha1.
20989
20990 2006-01-11  Jim Meyering  <jim@meyering.net>
20991
20992         Sync from coreutils.
20993         * lib/md5.c (OP): Fix spacing.
20994
20995 2006-01-11  Bruno Haible  <bruno@clisp.org>
20996
20997         Ensure automatic ordering between gl_LOCK and gl_ARGP.
20998         * m4/lock.m4 (gl_LOCK_BODY): Renamed from gl_LOCK.
20999         (gl_LOCK): New macro, requiring gl_LOCK_BODY.
21000
21001 2006-01-11  Bruno Haible  <bruno@clisp.org>
21002
21003         Ensure automatic ordering between gl_LOCK and gl_ARGP.
21004         * gnulib-tool (func_import, func_create_testdir): Put gl_LOCK into
21005         the "early" section as well.
21006
21007 2006-01-11  Bruno Haible  <bruno@clisp.org>
21008
21009         Avoid "ar: no archive members specified" error on MacOS X.
21010         * gnulib-tool (func_modules_add_dummy): New function.
21011         (func_import, func_create_testdir): Invoke it.
21012
21013 2006-01-11  Bruno Haible  <bruno@clisp.org>
21014
21015         * gnulib-tool (func_import, func_create_testdir): Replace build-aux
21016         with $auxdir in AC_CONFIG_FILES statements.
21017
21018 2006-01-11  Bruno Haible  <bruno@clisp.org>
21019
21020         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
21021         Initialize also noinst_HEADERS to empty.
21022
21023 2006-01-11  Bruno Haible  <bruno@clisp.org>
21024
21025         * gnulib-tool (AUTOMAKEPATH, AUTOCONF, ACLOCAL, AUTOMAKE): New
21026         variables.
21027         (func_create_megatestdir): Call aclocal, autoconf, automake here, not
21028         autoreconf.
21029
21030 2006-01-11  Bruno Haible  <bruno@clisp.org>
21031
21032         * gnulib-tool (AUTOCONF, ACLOCAL, AUTOMAKE, AUTORECONF): Make
21033         overridable by the user.
21034         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
21035
21036 2006-01-10  Simon Josefsson  <jas@extundo.com>
21037
21038         * modules/sys_socket: New file.
21039
21040 2006-01-10  Simon Josefsson  <jas@extundo.com>
21041
21042         * m4/sys_socket_h.m4: New file.
21043
21044 2006-01-10  Simon Josefsson  <jas@extundo.com>
21045
21046         * lib/socket_.h: New file.
21047
21048 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
21049
21050         * modules/readutmp (Maintainer): Add myself.
21051
21052 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
21053
21054         * m4/memcoll.m4 (gl_MEMCOLL): Don't require AC_FUNC_MEMCMP, undoing
21055         the 2002-12-31 change.  Problem and fix reported by Bruno Haible.
21056         People who are still concerned with buggy memcmp implementations
21057         can invoke gl_FUNC_MEMCMP themselves.
21058
21059 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
21060
21061         * lib/regex_internal.h (BITSET_WORD_BITS):
21062         Work around a bug in 64-bit PGC (before version 6.1-2), where the
21063         preprocessor mishandles large unsigned values as if they were signed.
21064         Problem reported by Claudio Fontana in
21065         <http://lists.gnu.org/archive/html/bug-gnulib/2005-12/msg00061.html>.
21066
21067 2006-01-10  Jim Meyering  <jim@meyering.net>
21068
21069         Avoid the double-free (first in fts_read, second in fts_close) that
21070         would occur when an `active' directory is made inaccessible (e.g.,
21071         via chmod a-x) during a traversal.
21072         * lib/fts.c (fts_read): After a failed fchdir, update sp->fts_cur
21073         before returning.  Reproduce this failure by
21074         mkdir -p a/b; cd a; chmod a-x . b
21075         Reported by Stavros Passas.
21076
21077         Sync from coreutils.
21078         * lib/sha1.c: Tweak grammar in a comment.
21079
21080 2006-01-10  Jim Meyering  <jim@meyering.net>
21081
21082         * m4/fpending.m4: Also include <stdio.h>, for Dragonfly.
21083         Patch by Joerg Sonnenberger.
21084
21085 2006-01-10  Bruno Haible  <bruno@clisp.org>
21086
21087         * modules/readutmp: Depend on module free.
21088         * modules/strtok_r: Depend on module restrict.
21089
21090 2006-01-10  Bruno Haible  <bruno@clisp.org>
21091
21092         * modules/gettext (configure.ac): Add an invocation of
21093         AM_GNU_GETTEXT_VERSION. Needed since autoreconf is used by gnulib-tool.
21094
21095 2006-01-10  Bruno Haible  <bruno@clisp.org>
21096
21097         * m4/localcharset.m4 (gl_LOCALCHARSET): Also test for getc_unlocked.
21098         Reported by Werner Lemberg <wl@gnu.org>.
21099
21100 2006-01-10  Bruno Haible  <bruno@clisp.org>
21101
21102         * lib/localcharset.c: Update from GNU gettext.
21103
21104 2006-01-10  Bruno Haible  <bruno@clisp.org>
21105
21106         * lib/argp.h (__const): Remove macro. Use const instead.
21107         * lib/argp-fmtstream.h (__const): Likewise.
21108         * lib/glob_.h (__const): Remove macro.
21109         * lib/glob-libc.h: Use const instead of __const.
21110
21111 2006-01-10  Bruno Haible  <bruno@clisp.org>
21112
21113         * gnulib-tool (func_emit_tests_Makefile_am): Emit an empty SUBDIR
21114         variable.
21115         Needed to avoid an automake error regarding the 'gettext' module.
21116
21117 2006-01-09  Simon Josefsson  <jas@extundo.com>
21118
21119         * modules/inet_ntop (Depends-on): Add restrict.
21120
21121 2006-01-09  Simon Josefsson  <jas@extundo.com>
21122
21123         * modules/gc-rijndael-tests (License): Put under LGPL.
21124
21125         * modules/gc-des-tests (License): Likewise.
21126
21127         * modules/gc-arcfour-tests (License): Likewise.
21128
21129         * modules/gc-arctwo-tests (License): Likewise.
21130
21131         * modules/gc-pbkdf2-sha1-tests (License): Likewise.
21132
21133         * modules/gc-hmac-sha1-tests (Files): Likewise.
21134
21135         * modules/gc-hmac-md5-tests (License): Likewise.
21136
21137         * modules/gc-sha1-tests (License): Likewise.
21138
21139         * modules/gc-md5-tests (License): Likewise.
21140
21141         * modules/gc-md4-tests (License): Likewise.
21142
21143         * modules/gc-md2-tests (License): Likewise.
21144
21145         * modules/gc-tests (License): Likewise.
21146
21147         * modules/des-tests (License): Likewise.
21148
21149         * modules/md4-tests (License): Likewise.
21150
21151         * modules/md2-tests (License): Likewise.
21152
21153 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
21154
21155         Sync from coreutils:
21156
21157         * MODULES.html.sh (build_lib): New section, with new lib-ignore module.
21158         * modules/lib-ignore: New file.
21159         * modules/mkdir-p (Files): Add chdir-safer.c, chdir-safer.h, lchmod.h,
21160         chdir-safer.m4, lchmod.m4.
21161         * modules/openat: Add mkdirat.c, openat-priv.h.
21162
21163 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
21164
21165         Sync from coreutils.
21166         * m4/lib-ignore.m4: New file.
21167         * m4/lchmod.m4: New file.
21168
21169 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
21170
21171         Sync from coreutils.
21172         * lib/chdir-long.c (cdb_free): Don't bother trying to open directory
21173         for write access: POSIX says that must fail.
21174         * lib/fts.c (diropen): Likewise.
21175         * lib/save-cwd.c (save_cwd): Likewise.
21176         * lib/chdir-long.c (cdb_free): Open with O_NOCTTY | O_NONBLOCK as
21177         well, for minor improvements on hosts that lack O_DIRECTORY.
21178         * lib/chown.c (rpl_chown) [CHOWN_MODIFIES_SYMLINK]:
21179         Don't try O_WRONLY unless O_RDONLY failed wth EACCES.
21180         Fall back on chown if open failed with EACCES.
21181
21182         * lib/gettime.c (gettime) [!defined OK_TO_USE_1S_CLOCK]:
21183         Report an error at compile-time if only a 1-second nominal clock
21184         resolution is found.
21185
21186         * lib/lchmod.h: New file.
21187         * lib/mkdir-p.c: Include lchmod.h, lchown.h.
21188         (make_dir_parents): Use lchown rather than chown, and
21189         lchmod rather than chmod.
21190
21191         * lib/mountlist.c (ME_DUMMY): "none" and "proc" file systems are
21192         dummies too.  Problem with "none" reported by Bob Proulx.  Problem with
21193         "proc" reported by n0dalus.
21194
21195         * lib/mountlist.c: Include <limits.h>.
21196         (dev_from_mount_options)
21197         [defined MOUNTED_GETMNTENT1 || defined MOUNTED_GETMNTENT2]:
21198         New function.  It no longer assumes "dev=" has the System V meaning
21199         on Linux (since it doesn't).  It also parses "dev=" more carefully.
21200         (read_file_system_list)
21201         [defined MOUNTED_GETMNTENT1 || defined MOUNTED_GETMNTENT2]: Use it.
21202         MOUNTED_GETMNTENT2 is new here; the code didn't used to look for
21203         dev= in that case.
21204
21205         * lib/posixtm.h (PDS_PRE_2000): New macro.
21206         * lib/posixtm.c (year): Arg is now syntax_bits rather than
21207         allow_century.  All usages changed.  Reject dates outside the range
21208         1969-1999 if PDS_PRE_2000 is used.
21209
21210 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
21211
21212         Sync from coreutils.
21213         * doc/getdate.texi (General date syntax): Invalid dates are rejected.
21214         (Time of day items): Mention the possibility of leap seconds.
21215         Problem reported by Dr. David Alan Gilbert.
21216
21217 2006-01-09  Jim Meyering  <jim@meyering.net>
21218
21219         Sync from coreutils.
21220
21221         * lib/version-etc.c (COPYRIGHT_YEAR): Update to 2006.
21222
21223         * lib/chdir-safer.h, lib/chdir-safer.c: New files.
21224
21225         * lib/modechange.c (mode_compile): Reject an invalid mode string
21226         that starts with an octal digit.  From Andreas Gruenbacher.
21227
21228         * lib/openat.c: Include "fcntl--.h" and "unistd--.h", to map open
21229         and dup to open_safer and dup_safer, respectively.
21230         (openat_permissive): Fix typo in comment.
21231
21232         * lib/openat.c: Don't include <stdlib.h>, <unistd.h>, <fcntl.h>,
21233         "gettext.h"; either no longer needed or are guaranteed by openat.h.
21234         (_): Remove; no longer needed.
21235         (openat): Renamed from rpl_openat; no need for rpl_openat
21236         since openat.h renames openat for us.
21237         Replace most of the body with a call to openat_permissive,
21238         to avoid duplicate code.
21239         Port to (probably hypothetical) environments were mode_t is
21240         wider than int.
21241         (openat_permissive): Require mode arg, so that we can check
21242         types better.  Put it just after flags.  Change cwd failure
21243         indicator from pointer-to-bool to pointer-to-errno-value.
21244         All callers changed.
21245         Invoke openat_save_fail and/or openat_restore_fail if
21246         cwd_errno is null, so that openat can call us.
21247         (openat_permissive, fdopendir, fstatat, unlinkat):
21248         Simplify errno handling to avoid some duplicate code,
21249         as it's OK to set errno on success.
21250         * lib/openat.h: Revamp code so that function macros depend on
21251         __OPENAT_PREFIX only, not also on AT_FDCWD.
21252         (openat_ro): Remove.  Caller changed to use openat_permissive.
21253         (openat_permissive): Now a macro, if not a function.
21254         (openat_restore_fail, openat_save_fail): Now always functions,
21255         since mkdirat needs them even if __OPENAT_PREFIX is defined.
21256
21257         * lib/openat-priv.h: New file, defining macros used by mkdirat.c
21258         and openat.c.
21259         * lib/mkdirat.c: Include openat-priv.h.
21260         Remove definitions of macros defined therein.
21261         * lib/openat.c: Likewise.
21262
21263         * lib/mkdirat.c (mkdirat): New file and function.
21264         * lib/openat.h (mkdirat): Declare.
21265
21266         * lib/openat.c (fdopendir): Don't change errno when returning non-NULL.
21267
21268         * lib/openat.h (openat_permissive): Declare.
21269         (openat_ro): Define.
21270
21271         * lib/openat.c (EXPECTED_ERRNO): New macro.
21272         (openat_permissive): New function -- used in remove.c rewrite.
21273         (all functions): Set errno just before returning, only if there
21274         was an actual failure.
21275         Use EXPECTED_ERRNO rather than comparing against only ENOTDIR.
21276
21277         Emulate openat-family functions using Linux's procfs, if possible.
21278         Idea and some code based on Ulrich Drepper's glibc changes.
21279
21280         * lib/openat.c: (BUILD_PROC_NAME): New macro.
21281         Include <stdio.h>, <string.h>, "alloca.h" and "intprops.h".
21282         (rpl_openat): Emulate by trying to open /proc/self/fd/%d/%s,
21283         before falling back on save_cwd and restore_cwd.
21284         (fdopendir, fstatat, unlinkat): Likewise.
21285
21286         * lib/openat.c (fstatat, unlinkat): Perform the syscall directly,
21287         skipping the save_cwd...restore_cwd overhead, if FILE is absolute.
21288
21289         * lib/openat.c (rpl_openat): Use the promoted type (int), not mode_t,
21290         as second argument to va_arg.  Otherwise, some versions of gcc
21291         warn that `if this code is reached, the program will abort'.
21292
21293 2006-01-09  Jim Meyering  <jim@meyering.net>
21294
21295         Sync from coreutils.
21296         * m4/openat.m4 (gl_FUNC_OPENAT): Require and compile mkdirat.c.
21297         Require openat-priv.h.
21298
21299 2006-01-09  Bruno Haible  <bruno@clisp.org>
21300
21301         * modules/strnlen (Include): Use strnlen.h.
21302
21303 2006-01-09  Bruno Haible  <bruno@clisp.org>
21304
21305         * m4/stdint.m4 (gl_STDINT_H): Also test for <sys/bitypes.h>.
21306
21307 2006-01-09  Bruno Haible  <bruno@clisp.org>
21308
21309         * lib/sysexit_.h (EX_OK): New macro.
21310         Suggested by Martin Lambers <marlam@marlam.de>.
21311
21312 2006-01-09  Bruno Haible  <bruno@clisp.org>
21313
21314         * lib/stdint_.h: On Linux libc4 and libc5, include <sys/bitypes.h> and
21315         don't define _STDINT_H_NEED_SIGNED_INT_TYPES.
21316
21317 2006-01-09  Bruno Haible  <bruno@clisp.org>
21318
21319         * lib/stdint_.h (SIZE_MAX): Write the value without involving negative
21320         numbers.
21321
21322 2006-01-09  Bruno Haible  <bruno@clisp.org>
21323
21324         * lib/javacomp.sh.in: Move to ../build-aux/javacomp.sh.in.
21325         * lib/javaexec.sh.in: Move to ../build-aux/javaexec.sh.in.
21326         * lib/csharpcomp.sh.in: Move to ../build-aux/csharpcomp.sh.in.
21327         * lib/csharpexec.sh.in: Move to ../build-aux/csharpexec.sh.in.
21328
21329 2006-01-09  Bruno Haible  <bruno@clisp.org>
21330
21331         * build-aux/javacomp.sh.in: New file, moved from lib/.
21332         * modules/javacomp-script (Files): Update.
21333         (configure.ac): Add AC_CONFIG_FILES invocation.
21334         (EXTRA_DIST): Remove variable.
21335
21336         * build-aux/javaexec.sh.in: New file, moved from lib/.
21337         * modules/javaexec (Files): Update.
21338         (configure.ac): Add AC_CONFIG_FILES invocation.
21339         (EXTRA_DIST): Remove javaexec.sh.in.
21340
21341         * build-aux/csharpcomp.sh.in: New file, moved from lib/.
21342         * modules/csharpcomp-script (Files): Update.
21343         (configure.ac): Add AC_CONFIG_FILES invocation.
21344         (EXTRA_DIST): Remove variable.
21345
21346         * build-aux/csharpexec.sh.in: New file, moved from lib/.
21347         * modules/csharpexec (Files): Update.
21348         (configure.ac): Add AC_CONFIG_FILES invocation.
21349         (EXTRA_DIST): Remove csharpexec.sh.in.
21350
21351 2006-01-09  Andreas Gruenbacher  <agruen@suse.de>
21352
21353         Sync from coreutils.
21354
21355         Add POSIX ACL support
21356         * lib/acl.h (copy_acl, set_acl): Add declarations.
21357         * lib/acl.c (acl_entries): Add fallback implementation for POSIX ACL
21358         systems other than Linux.
21359         (chmod_or_fchmod): New function: use fchmod when possible,
21360         and chmod otherwise.
21361         (file_has_acl): Add a POSIX ACL implementation, with a
21362         Linux-specific subcase.
21363         (copy_acl): Add: copy an acl and S_ISUID, S_ISGID, and
21364         S_ISVTX from one file to another.  Fall back to fchmod/chmod when
21365         acls are unsupported.
21366         (set_acl): Add: set a file's acl and S_ISUID, S_ISGID, and
21367         S_ISVTX to a defined value.  Fall back to fchmod/chmod when acls
21368         are unsupported.
21369
21370 2006-01-09  Andreas Gruenbacher  <agruen@suse.de>
21371
21372         Sync from coreutils.
21373         * m4/acl.m4 (AC_FUNC_ACL): Add POSIX ACL and Linux-specific acl tests.
21374
21375 2006-01-07  Bruno Haible  <bruno@clisp.org>
21376
21377         * gnulib-tool (func_import): Add an AC_PROG_RANLIB dependency to
21378         gl_EARLY.
21379
21380 2006-01-04  Paul Eggert  <eggert@cs.ucla.edu>
21381
21382         * lib/strftime.c (tzname): Don't declare if it is already #defined.
21383         Problem reported for Mingw by Mark Junker.
21384
21385 2006-01-04  Paul Eggert  <eggert@cs.ucla.edu>
21386
21387         * README: Gnulib normally doesn't generate a tarball.
21388
21389 2006-01-03  Paul Eggert  <eggert@cs.ucla.edu>
21390
21391         * lib/xtime.h (xtime_make, xtime_nonnegative_nsec, xtime_nsec): Use
21392         long int, not int, for nanosecond counts, so that people who are
21393         used to POSIX struct timespec won't be surprised.  Reported by Jim
21394         Meyering.
21395
21396 2005-12-28  Bruno Haible  <bruno@clisp.org>
21397
21398         * build-aux/config.rpath: Update from GNU gettext.
21399
21400 2005-12-16  Jim Meyering  <jim@meyering.net>
21401
21402         * modules/fprintftime: New module.
21403         * MODULES.html.sh (Date and time <time.h>): Add fprintftime.
21404
21405 2005-12-16  Jim Meyering  <jim@meyering.net>
21406
21407         * m4/fprintftime.m4: New file.
21408
21409 2005-12-16  Jim Meyering  <jim@meyering.net>
21410
21411         * lib/fprintftime.c, lib/fprintftime.h: New files.
21412
21413 2005-12-15  Simon Josefsson  <jas@extundo.com>
21414
21415         * modules/socklen (configure.ac): Fix M4 macro name, to align with
21416         new m4/socklen.m4.
21417
21418 2005-12-10  Sergey Poznyakoff  <gray@gnu.org.ua>
21419
21420         * m4/argp.m4: Define HAVE_DECL_PROGRAM_INVOCATION_NAME and
21421         HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME
21422
21423 2005-12-10  Sergey Poznyakoff  <gray@gnu.org.ua>
21424
21425         * lib/argp-fmtstream.c (__argp_fmtstream_update): Fix coredump
21426         * lib/argp-help.c (fill_in_uparams): Check if the constructed
21427         struct uparams is valid. Fall back to the default values if it is
21428         not.
21429
21430 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
21431
21432         * modules/argp (Files): Add argp-pin.c
21433         (Depends-on): dirname
21434         (lib_SOURCES): Add argp-pin.c
21435
21436 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
21437
21438         * m4/argp.m4:  Check if program_invocation_name and
21439         program_invocation_short_name are declared and define appropriate
21440         macros if they are not.
21441
21442 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
21443
21444         * lib/argp-help.c (__argp_base_name): New function
21445         (__argp_short_program_name): Rewrite using __argp_base_name
21446         * lib/argp-namefrob.h: Define program_invocation_name and
21447         program_invocation_short_name if requested
21448         (__argp_base_name): Add prototype
21449         * lib/argp-parse.c (argp_def): Use gettext wrappers
21450         (argp_default_parser): Use __argp_base_name
21451         * lib/argp-pin.c: New file. Defines program_invocation_name and
21452         program_invocation_short_name on systems that lack them.
21453
21454 2005-12-07  Paul Eggert  <eggert@cs.ucla.edu>
21455
21456         * m4/stat-time.m4 (gl_STAT_TIME): Add check for
21457         TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC, to fix IRIX 5.3
21458         porting problem reported by Georg Schwarz in
21459         <http://lists.gnu.org/archive/html/bug-coreutils/2005-12/msg00083.html>.
21460
21461 2005-12-07  Paul Eggert  <eggert@cs.ucla.edu>
21462
21463         * lib/stat-time.h (STATE_TIMESPEC, STAT_TIMESPEC_NS): Add check for
21464         TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC, to fix IRIX 5.3
21465         porting problem reported by Georg Schwarz in
21466         <http://lists.gnu.org/archive/html/bug-coreutils/2005-12/msg00083.html>.
21467
21468 2005-12-05  Bruno Haible  <bruno@clisp.org>
21469
21470         * lib/csharpcomp.sh.in (options_csc): For -l option, add a .dll suffix.
21471         * lib/csharpcomp.c (compile_csharp_using_sscli): Likewise.
21472         Reported by Mark Junker <mjscod@gmx.de>.
21473
21474 2005-12-02  Paul Eggert  <eggert@cs.ucla.edu>
21475
21476         * m4/socklen.m4 (gl_TYPE_SOCKLEN_T): Renamed from gl_SOCKLEN_T.
21477         Use implementation from Albert Chin, with some
21478         comments/corrections by Stepan Kasal and myself.
21479
21480 2005-12-02  Bruno Haible  <bruno@clisp.org>
21481
21482         * gnulib-tool (func_import): Accept GPLed build tool modules when
21483         --lgpl is given.
21484         * modules/csharpcomp-script: New file.
21485         * modules/csharpcomp: Depend on it.
21486         * modules/javacomp-script: New file.
21487         * modules/javacomp: Depend on it.
21488         Suggested by Simon Josefsson.
21489
21490 2005-12-01  Paul Eggert  <eggert@cs.ucla.edu>
21491
21492         * m4/regex.m4 (gl_REGEX): Check whether off_t can be used in a switch
21493         statement, to work around an HP-UX 10.20 compiler bug reported by
21494         Peter O'Gorman.
21495
21496 2005-11-29  Paul Eggert  <eggert@cs.ucla.edu>
21497
21498         * modules/savedir (Depends-on): Add openat.
21499
21500 2005-11-29  Paul Eggert  <eggert@cs.ucla.edu>
21501
21502         * lib/stdint_.h (intmax_t) [defined intmax_t]: Do not declare.
21503         (uintmax_t) [defined uintmax_t]: Do not declare.
21504         (SIZE_MAX) [defined SIZE_MAX]: Do not define.
21505         This works around a problem if intmax_t.m4 and/or uintmax_t.m4
21506         and/or size_max.m4 are also used.  Problem reported by Mark D. Baushke.
21507         (SIZE_MAX): Define to ((size_t) -1), not (~(size_t)0), for the
21508         sake of portability to weird hosts that C allows (though we don't
21509         know of any practical examples).
21510
21511         * lib/savedir.h (fdsavedir): New decl.
21512         * lib/savedir.c (fdsavedir, savedirstream): New functions; the latter
21513         contains most of the former guts of savedir.
21514         (savedir): Use savedirstream.
21515         Include "openat.h".
21516
21517 2005-11-25  Paul Eggert  <eggert@cs.ucla.edu>
21518
21519         * modules/obstack (Files): Add m4/ulonglong.m4.
21520         Problem reported by Davide Angelocola.
21521
21522 2005-11-15  Paul Eggert  <eggert@cs.ucla.edu>
21523
21524         * lib/xstrtod.c: Don't bother with #pragma STDC FENV_ACCESS ON, as
21525         coreutils no longer futzes with rounding modes.
21526
21527 2005-11-14  Jim Meyering  <jim@meyering.net>
21528
21529         * lib/mkstemp-safer.c: Include <config.h>, required for possible
21530         replacement of mkstemp.
21531
21532 2005-11-10  Simon Josefsson  <jas@extundo.com>
21533
21534         * lib/readline.c: Remove EOL.
21535
21536 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
21537
21538         * modules/gethrxtime (Depends-on): Add gettime.
21539
21540 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
21541
21542         * m4/gethrxtime.m4 (gl_PREREQ_GETHRXTIME): Don't require AC_HEADER_TIME
21543         or gettimeofday; no longer needed.
21544
21545 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
21546
21547         * lib/gethrxtime.c: Include "timespec.h" rather than the sys/time /
21548         time business.
21549         (gethrxtime) [! (HAVE_NANOUPTIME
21550         || (defined CLOCK_MONOTONIC && HAVE_CLOCK_GETTIME)
21551         || HAVE_MICROUPTIME)]: Fall back on gettime rather than rolling
21552         our own approximation.
21553
21554 2005-11-08  Eric Blake  <ebb9@byu.net>
21555
21556         * lib/inet_ntop.h: Use #if !, not #ifndef, for AC_CHECK_DECLS.
21557
21558 2005-11-08  Eric Blake  <ebb9@byu.net>
21559
21560         * lib/getaddrinfo.h: Use #if !, not #ifndef, for AC_CHECK_DECLS.
21561
21562 2005-11-04  Bruno Haible  <bruno@clisp.org>
21563
21564         * gnulib-tool: Implement --update mode.
21565
21566 2005-10-30  Paul Eggert  <eggert@cs.ucla.edu>
21567
21568         Fix porting problem reported by Theodoros V. Kalamatianos.
21569         * lib/utimens.c (futimens) [HAVE_WORKING_UTIMES && HAVE_FUTIMES]:
21570         Don't assume that futimes failing means we must fail.
21571
21572 2005-10-30  Paul Eggert  <eggert@cs.ucla.edu>
21573
21574         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Revamp wording and local
21575         variables to suggest the intended function of the PATH_MAX check.
21576
21577 2005-10-30  Kean Johnston  <jkj@sco.com>
21578
21579         Trivial changes to support SCO systems.
21580         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Check for MAXPATHLEN as well
21581         as PATH_MAX.
21582         * m4/fpending.m4 (gl_FUNC_FPENDING): Correct check for SCO systems,
21583         where __ptr is null when no I/O is pending.
21584
21585 2005-10-29  Paul Eggert  <eggert@cs.ucla.edu>
21586
21587         * lib/getcwd.c (__getcwd): Don't assume that system calls after readdir
21588         leave errno alone.  Problem reported by Dmitry V. Levin.
21589
21590 2005-10-28  Simon Josefsson  <jas@extundo.com>
21591
21592         * tests/test-gc-md4.c, tests/test-gc-md5.c, tests/test-gc-sha1.c:
21593         Test more.
21594
21595         * tests/test-gc-md2.c, tests/test-md2.c: New files.
21596
21597         * modules/md2, modules/md2-tests: New files.
21598
21599 2005-10-28  Simon Josefsson  <jas@extundo.com>
21600
21601         * m4/inet_ntop.m4: More tests.
21602
21603         * m4/gc-md2.m4, md2.m4: New file.
21604
21605 2005-10-28  Simon Josefsson  <jas@extundo.com>
21606
21607         * lib/inet_ntop.h, inet_ntop.c: Make it work under mingw32: Add
21608         "restrict" keywords, as per POSIX.  Protect the function
21609         declaration around HAVE_DECL_INET_NTOP rather than HAVE_INET_NTOP.
21610         Don't use K&R prototypes.  Check the sprintf return values.
21611         Re-define EAFNOSUPPORT if not present.  Indent.
21612
21613         * lib/md5.h, md5.c: Simplify buffer handling visavi alignment,
21614         suggested by Bruno Haible <bruno@clisp.org>.
21615
21616         * lib/gc-gnulib.c, gc-libgcrypt.c: Check calloc return value.
21617
21618         * lib/gc.h: Add MD2 and RMD160 length defines.  Add prototypes.
21619
21620         * lib/gc-libgcrypt.c: Add MD2 (which is not available through
21621         libgcrypt).
21622
21623         * lib/gc-gnulib.c: Add MD2.  Implement gc_hash_* API.
21624
21625         * lib/md2.h, lib/md2.c: New files.
21626
21627 2005-10-28  Paul Eggert  <eggert@cs.ucla.edu>
21628
21629         * lib/savedir.c (savedir): Don't assume that xrealloc etc. leave
21630         errno alone.  Problem reported by Frederic Jolliton.
21631
21632 2005-10-27  Paul Eggert  <eggert@cs.ucla.edu>
21633
21634         * modules/verify (License): Change from GPL to LGPL.  This is a
21635         tiny module and there are apparently near-equivalents that are
21636         under the BSD license.
21637
21638 2005-10-24  Simon Josefsson  <jas@extundo.com>
21639
21640         * modules/sha1: Relicense to LGPL.
21641
21642 2005-10-24  Simon Josefsson  <jas@extundo.com>
21643
21644         * lib/md4.h: Shrink buffer size, now that we changed the type.
21645
21646 2005-10-23  Simon Josefsson  <jas@extundo.com>
21647
21648         * gnulib-tool (func_import): Fix --tests-base.
21649
21650 2005-10-22  Simon Josefsson  <jas@extundo.com>
21651
21652         * modules/arcfour (Depends-on): Need stdint.
21653
21654 2005-10-22  Simon Josefsson  <jas@extundo.com>
21655
21656         * m4/gc.m4: Don't be fooled by --disable-*random-device parameters,
21657         suggested by Bruno Haible <bruno@clisp.org>.  Fix error messages.
21658
21659 2005-10-22  Simon Josefsson  <jas@extundo.com>
21660
21661         * lib/md4.h, md4.c: Simplify buffer handling visavi alignment,
21662         suggested by Bruno Haible <bruno@clisp.org>.
21663
21664 2005-10-22  Simon Josefsson  <jas@extundo.com>
21665
21666         * lib/crc.h: Include stddef.h, for size_t.
21667
21668 2005-10-22  Simon Josefsson  <jas@extundo.com>
21669
21670         * lib/arcfour.h, arcfour.c: Use fixed size indices in the
21671         arcfour_context struct (simplify test vector testing in GNU
21672         Shishi).
21673
21674 2005-10-21  Simon Josefsson  <jas@extundo.com>
21675
21676         * modules/des, modules/des-tests: New files.
21677
21678         * modules/gc-des, modules/gc-des-tests: New files.
21679
21680         * tests/test-des.c, tests/test-gc-des.c: New file.
21681
21682 2005-10-21  Simon Josefsson  <jas@extundo.com>
21683
21684         * modules/arctwo, modules/arctwo-tests: New files.
21685
21686         * tests/test-arctwo.c: New file.
21687
21688         * modules/gc-arctwo, modules/gc-arctwo-tests: New files.
21689
21690         * tests/test-gc-arctwo.c: New file.
21691
21692 2005-10-21  Simon Josefsson  <jas@extundo.com>
21693
21694         * m4/gc.m4: Don't use libgcrypt if gcrypt.h isn't found, suggested by
21695         Bruno Haible <bruno@clisp.org>.
21696
21697         * m4/gc-des.m4: New file.
21698
21699 2005-10-21  Simon Josefsson  <jas@extundo.com>
21700
21701         * m4/arctwo.m4: New file.
21702
21703         * m4/gc-arctwo.m4: New file.
21704
21705 2005-10-21  Simon Josefsson  <jas@extundo.com>
21706
21707         * lib/rijndael-api-fst.c: Fix bugs in CBC mode for more than one
21708         block.
21709
21710 2005-10-21  Simon Josefsson  <jas@extundo.com>
21711
21712         * lib/hmac-md5.c (hmac_md5): Add comments, suggested by Bruno Haible
21713         <bruno@clisp.org>.
21714
21715         * lib/hmac-sha1.c (hmac_sha1): Likewise.
21716
21717         * lib/crc.c (crc32_update): Actually use crc parameter, suggested by
21718         Bruno Haible <bruno@clisp.org>.
21719
21720         * lib/crc.h: Include stdint.h directly, suggested by Bruno Haible
21721         <bruno@clisp.org>.
21722
21723 2005-10-21  Simon Josefsson  <jas@extundo.com>
21724
21725         * lib/gc-libgcrypt.c (gc_cipher_open): Handle ECB.
21726
21727 2005-10-21  Simon Josefsson  <jas@extundo.com>
21728
21729         * lib/gc-gnulib.c: Support ARCTWO in CBC mode.
21730
21731 2005-10-21  Simon Josefsson  <jas@extundo.com>
21732
21733         * lib/des.h, lib/des.c: New files.
21734
21735         * lib/gc-gnulib.c: Support DES.c
21736
21737 2005-10-21  Simon Josefsson  <jas@extundo.com>
21738
21739         * lib/arctwo.h, lib/arctwo.c: New files.
21740
21741         * lib/gc-gnulib.c: Support ARCTWO.
21742
21743 2005-10-21  Simon Josefsson  <jas@extundo.com>
21744
21745         * lib/arctwo.h (arctwo_setkey): Protect variable in CPP macro,
21746         suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
21747
21748 2005-10-21  Simon Josefsson  <jas@extundo.com>
21749
21750         * gnulib-tool (func_import, func_create_testdir): Define automake
21751         conditional GL_COND_LIBTOOL if libtool is used (to be used by modules
21752         Makefile.am snippet),
21753         suggested by Bruno Haible <bruno@clisp.org>.
21754
21755         * modules/gc (Makefile.am): Use it.
21756
21757 2005-10-21  Bruno Haible  <bruno@clisp.org>
21758
21759         * gnulib-tool (func_import, func_create_testdir): Add quoting to last
21760         patch.
21761
21762 2005-10-19  Simon Josefsson  <jas@extundo.com>
21763
21764         * tests/test-gc-rijndael.c: New file.
21765
21766         * modules/gc-rijndael, modules/gc-rijndael-test: New files.
21767
21768 2005-10-19  Simon Josefsson  <jas@extundo.com>
21769
21770         * tests/test-gc-md4.c, tests/test-gc-md5.c: Test gc_hash_buffer
21771         interface too.
21772
21773 2005-10-19  Simon Josefsson  <jas@extundo.com>
21774
21775         * tests/test-gc-arcfour.c: New file.
21776
21777         * modules/gc-arcfour, modules/gc-arcfour-tests: New files.
21778
21779 2005-10-19  Simon Josefsson  <jas@extundo.com>
21780
21781         * modules/gc-md4, modules/gc-md4-tests: New file.
21782
21783         * tests/test-gc-md4.c: New file.
21784
21785 2005-10-19  Simon Josefsson  <jas@extundo.com>
21786
21787         * m4/gc-md4.m4: New file.
21788
21789 2005-10-19  Simon Josefsson  <jas@extundo.com>
21790
21791         * m4/gc-hmac-md5.m4, gc-hmac-sha1.m4, gc-md4.m4,
21792         gc-md5.m4, gc-sha1.m4: Fix typo, suggested by Stepan Kasal
21793         <kasal@ucw.cz>.
21794
21795 2005-10-19  Simon Josefsson  <jas@extundo.com>
21796
21797         * m4/gc-arcfour.m4: New file.
21798
21799         * m4/gc-rijndael.m4: New file.
21800
21801 2005-10-19  Simon Josefsson  <jas@extundo.com>
21802
21803         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Support MD4.
21804
21805 2005-10-19  Simon Josefsson  <jas@extundo.com>
21806
21807         * lib/gc-gnulib.c: Support ARCFOUR.
21808
21809 2005-10-19  Simon Josefsson  <jas@extundo.com>
21810
21811         * lib/gc-gnulib.c: Implement gc_cipher_* API, currently only with AES
21812         support.
21813
21814         * lib/gc.h: Add ECB enum type.
21815
21816         * lib/hmac-md5.c, hmac-sha1.c: Include memxor.h.
21817
21818 2005-10-18  Simon Josefsson  <jas@extundo.com>
21819
21820         * tests/test-md5.c: New file.
21821
21822         * modules/md5-tests: New file.
21823
21824 2005-10-18  Simon Josefsson  <jas@extundo.com>
21825
21826         * tests/test-md4.c: New file.
21827
21828         * modules/md4, modules/md4-tests: New files.
21829
21830 2005-10-18  Simon Josefsson  <jas@extundo.com>
21831
21832         * m4/md4.m4: New file.
21833
21834 2005-10-18  Simon Josefsson  <jas@extundo.com>
21835
21836         * lib/md4.h, lib/md4.c: New files, based on md5.?.
21837
21838 2005-10-17  Stepan Kasal  <kasal@ucw.cz>
21839
21840         * gnulib-tool (func_create_testdir): Omit the second check whether
21841         BUILT_SOURCES in nonempty.
21842
21843 2005-10-17  Simon Josefsson  <jas@extundo.com>
21844
21845         * tests/test-rijndael.c: New file.
21846
21847 2005-10-17  Simon Josefsson  <jas@extundo.com>
21848
21849         * modules/sha1: Depend on stdint instead of md5.
21850
21851         * modules/md5: Depend on stdint, remove uint32_t.
21852
21853 2005-10-17  Simon Josefsson  <jas@extundo.com>
21854
21855         * modules/gc-sha1-tests: New file.
21856
21857         * tests/test-gc-sha1.c: New file.
21858
21859 2005-10-17  Simon Josefsson  <jas@extundo.com>
21860
21861         * m4/md5.m4: Remove call to uint32_t.m4.
21862
21863 2005-10-17  Simon Josefsson  <jas@extundo.com>
21864
21865         * lib/sha1.c: Use uint32_t instead of md5_uint32.t
21866
21867         * lib/sha1.h: Use stdint.h and uint32_t instead of md5_uint32 from
21868         md5.h.
21869
21870         * lib/md5.c: Use uin32_t.  Fix non-gcc UNALIGNED_P macro.
21871
21872         * lib/md5.h: Use stdint.h and uint32_t.  Doc fix.
21873
21874 2005-10-17  Simon Josefsson  <jas@extundo.com>
21875
21876         * lib/gc.h, gc-libgcrypt.c: Add more hash types/functions.
21877
21878 2005-10-17  Simon Josefsson  <jas@extundo.com>
21879
21880         * lib/gc.h, gc-libgcrypt.c: Add ciphers.
21881
21882 2005-10-17  Simon Josefsson  <jas@extundo.com>
21883
21884         * lib/gc-libgcrypt.c (gc_hmac_sha1): Fix assert.
21885
21886         * lib/gc.h (gc_nonce, gc_pseudo_random, gc_random): Add prototypes.
21887
21888 2005-10-17  Bruno Haible  <bruno@clisp.org>
21889
21890         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Change the return statement so
21891         that it can also be used in a test.
21892
21893 2005-10-16  Bruno Haible  <bruno@clisp.org>
21894
21895         * gnulib-tool (func_emit_tests_Makefile_am): Also define
21896         TESTS_ENVIRONMENT, so that individual tests can augment it.
21897
21898         * gnulib-tool (func_create_testdir): Use an intermediate target for
21899         building $(BUILT_SOURCES). Needed because BUILT_SOURCES can contain
21900         macros, like $(ALLOCA_H), which cannot be passed through the command
21901         line.
21902
21903 2005-10-15  Simon Josefsson  <jas@extundo.com>
21904
21905         * modules/rijndael-tests: New file.
21906
21907         * modules/rijndael: New file.
21908
21909 2005-10-15  Simon Josefsson  <jas@extundo.com>
21910
21911         * m4/rijndael.m4: New file.
21912
21913 2005-10-15  Simon Josefsson  <jas@extundo.com>
21914
21915         * lib/rijndael-api-fst.h, lib/rijndael-api-fst.c: New files.
21916
21917         * lib/rijndael-alg-fst.h, lib/rijndael-alg-fst.c: New files.
21918
21919 2005-10-14  Simon Josefsson  <jas@extundo.com>
21920
21921         * tests/test-arcfour.c: New file.
21922
21923         * modules/arcfour, modules/arcfour-tests: New files.
21924
21925 2005-10-14  Simon Josefsson  <jas@extundo.com>
21926
21927         * m4/arcfour.m4: New file.
21928
21929 2005-10-14  Simon Josefsson  <jas@extundo.com>
21930
21931         * lib/arcfour.h, lib/arcfour.c: New files.
21932
21933 2005-10-14  Roland McGrath  <roland@redhat.com>
21934
21935         Import from libc.  [BZ #1331]
21936         * lib/obstack.h [!__STDC__] (obstack_int_grow_fast): Fix misnamed
21937         macro argument.
21938         Reported by Matej Vela <vela@debian.org>.
21939
21940 2005-10-14  Paul Eggert  <eggert@cs.ucla.edu>
21941
21942         * lib/obstack.c [defined _LIBC && defined USE_IN_LIBIO]: Don't
21943         include <wchar.h>; no longer needed.
21944
21945 2005-10-14  Paul Eggert  <eggert@cs.ucla.edu>
21946
21947         * config/srclist.txt: Add glibc bug 321 for obstack.c, obstack.h.
21948
21949 2005-10-14  Jakub Jelinek  <jakub@redhat.com>
21950         and  Ulrich Drepper  <drepper@redhat.com>
21951
21952         Import from libc.
21953         * lib/obstack.c (print_and_abort) [defined _LIBC]: Use __fxprintf
21954         instead of inline stream orientation test and two separate
21955         function calls.  Pay no attention to USE_IN_LIBIO.
21956
21957 2005-10-13  Simon Josefsson  <jas@extundo.com>
21958
21959         * modules/gc-hmac-md5-tests: New file.
21960
21961         * tests/test-gc-hmac-sha1.c: New file.
21962
21963         * tests/test-gc.c (main): Remove MD5 and HMAC-MD5 tests.
21964
21965         * modules/gc-hmac-md5-tests: New file.
21966
21967         * tests/test-gc-md5.c: New file.
21968
21969         * modules/gc-md5-tests: New file.
21970
21971 2005-10-13  Simon Josefsson  <jas@extundo.com>
21972
21973         * lib/gc-pbkdf2-sha1.c (gc_pbkdf2_sha1): Optimize CEIL computation.
21974         Move memory allocation outside of loop.
21975
21976 2005-10-13  Paul Eggert  <eggert@cs.ucla.edu>
21977
21978         * lib/mkdir-p.c (make_dir_parents): Don't report an error if an
21979         intermediate directory is in a read-only file system.  Problem
21980         reported by Eric Blake.
21981
21982 2005-10-13  Oskar Liljeblad  <oskar@osk.mine.nu>
21983
21984         * modules/human (Depends-on): Depend on xstrtoumax, not xstrtol.
21985
21986 2005-10-12  Simon Josefsson  <jas@extundo.com>
21987
21988         * tests/test-hmac-sha1.c: New file.
21989
21990         * modules/hmac-sha1-tests: New file.
21991
21992         * modules/hmac-sha1: New file.
21993
21994 2005-10-12  Simon Josefsson  <jas@extundo.com>
21995
21996         * modules/gc-sha1: New file.
21997
21998 2005-10-12  Simon Josefsson  <jas@extundo.com>
21999
22000         * modules/gc-pbkdf2-sha1, modules/gc-pbkdf2-sha1-tests: New files.
22001
22002         * tests/test-gc-pbkdf2-sha1.c: New file.
22003
22004 2005-10-12  Simon Josefsson  <jas@extundo.com>
22005
22006         * modules/gc-md5, modules/gc-hmac-md5: New files.
22007
22008         * modules/gc (Files): Remove md5, memxor and hmac files.
22009
22010 2005-10-12  Simon Josefsson  <jas@extundo.com>
22011
22012         * m4/gc-pbkdf2-sha1.m4: New file.
22013
22014         * m4/gc-hmac-sha1.m4: New file.
22015
22016         * m4/gc-sha1: New file.
22017
22018         * m4/hmac-sha1.m4: New file.
22019
22020 2005-10-12  Simon Josefsson  <jas@extundo.com>
22021
22022         * m4/gc-md5.m4, m4/gc-hmac-md5.m4: New files.
22023
22024         * m4/gc.m4: Don't call gl_MD5, gl_MEMXOR or gl_HMAC_MD5.
22025
22026 2005-10-12  Simon Josefsson  <jas@extundo.com>
22027
22028         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Use Gc_rc for return types,
22029         suggested by Bruno Haible <bruno@clisp.org>.
22030
22031 2005-10-12  Simon Josefsson  <jas@extundo.com>
22032
22033         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Support SHA-1.
22034
22035 2005-10-12  Simon Josefsson  <jas@extundo.com>
22036
22037         * lib/gc-pbkdf2-sha1.c: New file.
22038
22039         * lib/gc.h: Add gc_pbkdf2_sha1 prototype.
22040
22041 2005-10-12  Simon Josefsson  <jas@extundo.com>
22042
22043         * lib/gc-libgcrypt.c (gc_hmac_sha1): New function.
22044
22045         * lib/gc-gnulib.c (gc_hmac_sha1): New function.
22046
22047 2005-10-12  Simon Josefsson  <jas@extundo.com>
22048
22049         * lib/gc-gnulib.c: Condition MD5 and HMAC-MD5 use on GC_USE_MD5 and
22050         GC_USE_HMAC_MD5, respectively.
22051
22052         * lib/gc-libgcrypt.c (gc_md5): Fix assert call.
22053         (gc_md5): Fix typo.
22054
22055         * lib/gc.h (gc_hash_buffer): Use gc_hash in prototype.
22056
22057         * lib/gc-libgcrypt.c (gc_hash_buffer): Ditto.
22058
22059         * lib/gc-gnulib.c (gc_hash_buffer): Ditto.
22060
22061 2005-10-12  Bruno Haible  <bruno@clisp.org>
22062
22063         * m4/stdbool.m4 (gl_STDBOOL_H): Define as an alias of AM_STDBOOL_H.
22064         Reported by Stepan Kasal <kasal@ucw.cz>.
22065
22066 2005-10-11  Simon Josefsson  <jas@extundo.com>
22067
22068         * tests/test-crc.c: New file.
22069
22070         * modules/crc, modules/crc-tests: New files.
22071
22072 2005-10-11  Simon Josefsson  <jas@extundo.com>
22073
22074         * m4/crc.m4: New file.
22075
22076 2005-10-11  Simon Josefsson  <jas@extundo.com>
22077
22078         * lib/gc.h: Add gc_hash and gc_hash_buffer.
22079
22080         * lib/gc-gnulib.c (gc_hash_buffer): Add.  Reorder #include's.
22081
22082         * lib/gc-libgcrypt.c (gc_hash_buffer): Add.
22083
22084 2005-10-11  Simon Josefsson  <jas@extundo.com>
22085
22086         * lib/crc.h, lib/crc.c: New files.
22087
22088         * lib/gc.h (gc_hash_buffer): Add doc.
22089
22090 2005-10-11  Bruno Haible  <bruno@clisp.org>
22091
22092         * modules/c-strcasestr: New file.
22093         * MODULES.html.sh (String handling <string.h>): Add c-strcasestr.
22094
22095 2005-10-11  Bruno Haible  <bruno@clisp.org>
22096
22097         * modules/c-strcase: New file.
22098         * MODULES.html.sh (String handling <string.h>): Add c-strcase.
22099
22100 2005-10-11  Bruno Haible  <bruno@clisp.org>
22101
22102         * lib/strcasecmp.c: Include limits.h.
22103         (strcasecmp): Avoid integer overflow on exotic platforms.
22104         * lib/strncasecmp.c: Include limits.h.
22105         (strncasecmp): Avoid integer overflow on exotic platforms.
22106         Reported by Paul Eggert.
22107
22108 2005-10-11  Bruno Haible  <bruno@clisp.org>
22109
22110         * lib/c-strcasestr.h: New file, from GNU gettext.
22111         * lib/c-strcasestr.c: New file, from GNU gettext.
22112
22113 2005-10-11  Bruno Haible  <bruno@clisp.org>
22114
22115         * lib/c-strcase.h: New file, from GNU gettext.
22116         * lib/c-strcasecmp.c: New file, from GNU gettext.
22117         * lib/c-strncasecmp.c: New file, from GNU gettext.
22118
22119 2005-10-10  Paul Eggert  <eggert@cs.ucla.edu>
22120
22121         * modules/mempcpy (License): GPL -> LGPL.
22122         * modules/strchrnul (License): Likewise.
22123         * modules/sysexits (License): Likewise.
22124
22125 2005-10-08  Simon Josefsson  <jas@extundo.com>
22126
22127         * config/srclist.txt: Bug 1423 is closed, but 1439 remains.
22128
22129 2005-10-07  Simon Josefsson  <jas@extundo.com>
22130
22131         * m4/memxor.m4: Remove gl_C_RESTRICT call.
22132
22133 2005-10-06  Simon Josefsson  <jas@extundo.com>
22134
22135         * tests/test-hmac-md5.c: New file.
22136
22137         * modules/hmac-md5-tests: New file.
22138
22139         * modules/hmac-md5: New file.
22140
22141 2005-10-06  Simon Josefsson  <jas@extundo.com>
22142
22143         * m4/hmac-md5.m4: New file.
22144
22145         * m4/memxor.m4: Require gl_C_RESTRICT.
22146
22147 2005-10-06  Simon Josefsson  <jas@extundo.com>
22148
22149         * lib/memxor.c (memxor): Avoid casts and warnings.
22150
22151 2005-10-06  Simon Josefsson  <jas@extundo.com>
22152
22153         * lib/hmac-md5.c: New file.
22154
22155         * lib/hmac.h: New file.
22156
22157 2005-10-06  Paul Eggert  <eggert@cs.ucla.edu>
22158
22159         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check that bool
22160         promotes to int, not unsigned int, to catch the AIX 5.3
22161         compiler bug.
22162
22163 2005-10-05  Simon Josefsson  <jas@extundo.com>
22164
22165         * modules/memxor: New file.
22166
22167         * modules/iconv (Files): Move config.rpath to havelib, it is used
22168         there.
22169
22170         * modules/havelib (Files): Add config.rpath.
22171
22172 2005-10-05  Simon Josefsson  <jas@extundo.com>
22173
22174         * m4/memxor.m4: New file.
22175
22176 2005-10-05  Simon Josefsson  <jas@extundo.com>
22177
22178         * lib/memxor.c (memxor): Fix compiler error.
22179
22180         * lib/md5.h (MD5_DIGEST_SIZE, MD5_BLOCK_SIZE): Add, see also
22181         <http://sourceware.org/bugzilla/show_bug.cgi?id=1423>.
22182
22183         * lib/memxor.h, lib/memxor.c: New files.
22184
22185         * lib/getaddrinfo.h: Don't protect sys/types.h with HAVE_SYS_TYPES_H,
22186         we assume all systems have it, suggested by Jim Meyering
22187         <jim@meyering.net>.  Remove HAVE_SYS_SOCKET_H test too, to see if
22188         any systems lack sys/socket.h; mingw32 is known to lack it, but we
22189         don't support it yet anyway.  Also remove HAVE_NETDB_H test, for
22190         same reasons.
22191
22192 2005-10-05  Simon Josefsson  <jas@extundo.com>
22193
22194         * config/srclist.txt: Add glibc bug 1423 for md5.h.
22195
22196 2005-10-05  Paul Eggert  <eggert@cs.ucla.edu>
22197
22198         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Don't check for
22199         sys/socket.h, netdb.h, sys/types.h; the checks areno longer
22200         needed, since the source code now assumes these .h files.
22201
22202 2005-10-05  Derek Price  <derek@ximbiot.com>
22203
22204         * lib/getdelim.c (SIZE_MAX): New macro, if not already defined.
22205
22206 2005-10-05  Bruno Haible  <bruno@clisp.org>
22207
22208         * modules/stdint (License): Change to LGPL.
22209
22210 2005-10-04  Simon Josefsson  <jas@extundo.com>
22211
22212         * lib/getaddrinfo.h: Move sys/types.h include first, reported by "Mark
22213         D. Baushke" <mdb@gnu.org>.
22214
22215 2005-10-04  Bruno Haible  <bruno@clisp.org>
22216
22217         * lib/verify.h (verify_true): Provide alternative definition for C++.
22218
22219 2005-10-03  Paul Eggert  <eggert@cs.ucla.edu>
22220
22221         * lib/getdelim.c: Include getdelim.h first.  Include <limits.h>.
22222         (SSIZE_MAX): New macro, if not already defined.
22223         (getdelim): Fix buffer overrun on 64-bit hosts with lines longer
22224         than 2 GiB.
22225
22226 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
22227
22228         Sync from coreutils.
22229         * m4/openat.m4 (gl_FUNC_OPENAT): Check for fdopendir.
22230         * m4/ullong_max.m4 (gl_ULLONG_MAX): Simplify so that it merely
22231         defines ULONG_MAX_LT_ULLONG_MAX.  Thomas M.Ott reports that
22232         ULLONG_MAX doesn't work with 2.7.2.1.
22233
22234 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
22235
22236         * modules/xreadlink (Makefile.am): Remove lib_SOURCES.
22237         From Ben Pfaff.
22238
22239         * modules/exclude (Depends-on): Depend on verify.
22240         * modules/strtoimax (Depends-on): Likewise.
22241         * modules/utimecmp (Depends-on): Likewise.
22242
22243 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
22244
22245         * lib/exclude.c: Include verify.h.
22246         (verify): Remove.  All callers changed to use verify.h's version.
22247         * lib/strtoimax.c: Likewise.
22248         * lib/utimecmp.c: Likewis.e
22249
22250         Sync from coreutils.
22251         * lib/.cppi-disable: Add getaddrinfo.h, getdelim.h, getline.h,
22252         getpass.c, mbchar.h, mbuiter.h, strcase.h, strnlen.h, strnlen1.h.
22253         * lib/.cvsignore: Add fts.h, search.h, t-fpending.
22254         * lib/settime.c (settime): Fix { typo in previous patch.  Also, don't
22255         bother returning ENOSYS if settimeofday or stime fails; just let
22256         them return whatever errno they want to return.
22257         * lib/utimens.c: Include unistd.h, for dup2.
22258         (futimens): Fix typo: HAVE_FUTIMESAT was misspelled in an #if.
22259         (futimens) [! HAVE_FUTIMESAT]: If !file, set errno before returning -1.
22260
22261 2005-10-02  Jim Meyering  <jim@meyering.net>
22262
22263         Sync from coreutils.
22264         * m4/utimes.m4 (gl_FUNC_UTIMES): Detect the version of utimes
22265         from glibc-2.2.5 that fails for read-only files.
22266
22267 2005-10-02  Jim Meyering  <jim@meyering.net>
22268
22269         Sync from coreutils.
22270         * lib/fts-cycle.c [HAVE_CONFIG_H]: Include <config.h>.
22271         * lib/openat-die.c: Use `#ifdef HAVE_CONFIG_H', not
22272         `#if HAVE_CONFIG_H'.
22273         * lib/openat.c (fdopendir): Do not define if HAVE_FDOPENDIR.
22274         Remove AT_FDCWD test.
22275         Do not consume the fd unless successful.
22276         * lib/openat.h (fdopendir): Do not define if HAVE_FDOPENDIR.
22277         * lib/settime.c (settime): Move the HAVE_STIME block `up' into an #elif
22278         block, so that we don't even try to compile it if settimeofday is
22279         available.  This works around a compilation failure on OSF1 V5.1,
22280         due to stime requiring a `long int*' while tv_sec is `int'.
22281
22282 2005-10-02  Alfred M. Szmidt  <ams@gnu.org>
22283
22284         Sync from coreutils.
22285         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Compare $gl_have_path...
22286         against `yes', rather than just testing for nonempty.
22287
22288 2005-10-01  Simon Josefsson  <jas@extundo.com>
22289
22290         * m4/getaddrinfo.m4: Include sys/types.h for sys/socket.h, on FreeBSD
22291         and Darwin.
22292
22293         * m4/getaddrinfo.m4: Use AC_GNU_SOURCE, GNU only declare getaddrinfo
22294         as an (POSIX) extension.  Check for sys/types.h, sys/socket.h, and
22295         netdb.h too, needed by getaddrinfo.h.  Check if getaddrinfo,
22296         freeaddrinfo and gai_strerror are declared by the POSIX headers.
22297         Check if struct addrinfo is declared.
22298
22299 2005-10-01  Simon Josefsson  <jas@extundo.com>
22300
22301         * lib/getaddrinfo.h: Protect #include's of sys/socket.h and netdb.h.
22302         Only define struct addrinfo if !HAVE_STRUCT_ADDRINFO.  Protect
22303         AI_* and EAI_* definitions.  Protect function declarations.
22304
22305 2005-10-01  Jim Meyering  <jim@meyering.net>
22306
22307         Sync from coreutils.
22308
22309         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Look for getservbyname in these
22310         libraries [inet nsl socket xnet].  Nelson Beebe reported that with
22311         native cc on Solaris 7, getaddrinfo.c requires -lsocket.
22312         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Check for gethostbyname
22313         in the inet and nsl libraries.  Required on Solaris 5.7.
22314
22315 2005-10-01  Jim Meyering  <jim@meyering.net>
22316
22317         Sync from coreutils.
22318         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Check for gethostbyname
22319         in the inet and nsl libraries.  Required on Solaris 5.7.
22320
22321 2005-10-01  Eric Blake  <ebb9@byu.net>  (tiny change)
22322
22323         * lib/getdelim.c (getdelim): Remove unused variables.
22324
22325 2005-09-29  Paul Eggert  <eggert@cs.ucla.edu>
22326
22327         * lib/xtime.h (XTIME_PRECISION): Now of type int, not long long int,
22328         so that the code works even with ancient cpp.  Portability problem
22329         with GCC 2.7.2.1 reported by Thomas M.Ott.
22330
22331 2005-09-27  Paul Eggert  <eggert@cs.ucla.edu>
22332
22333         * modules/regex (Depends-on): Add strcase.
22334
22335         * modules/gethostname (Licence): Change from GPL to LGPL, since
22336         gethostname.c is a trivial implementation of a standard library
22337         function.
22338         * modules/poll (License): Change from GPL to LGPL, since it's
22339         derived from LGPL code.
22340
22341 2005-09-27  Jim Meyering  <jim@meyering.net>
22342
22343         * lib/getcwd.c: Change #ifdef<TAB>HAVE_CONFIG_H to #ifdef
22344         HAVE_CONFIG_H.
22345
22346         * lib/intprops.h (signed_type_or_expr__): Define.
22347         (INT_STRLEN_BOUND) [__GNUC__]: Use a slightly tighter bound
22348         for unsigned types.
22349
22350 2005-09-26  Paul Eggert  <eggert@cs.ucla.edu>
22351
22352         * lib/verify.h (verify_expr): Remove, replacing with:
22353         (verify_true): New macro that returns true instead of void.
22354         (verify_type__): Remove.
22355         (verify): Use verify_true rather than verify_type__.
22356
22357 2005-09-26  Bruno Haible  <bruno@clisp.org>
22358
22359         * modules/mbchar (Include): Mention that HAVE_WCHAR_H && HAVE_WCTYPE_H
22360         is necessary.
22361         (lib_SOURCES): Remove mbchar.c.
22362         * modules/mbfile (Include): Mention that HAVE_MBRTOWC is necessary.
22363         (Files): Add m4/mbrtowc.m4.
22364         * modules/mbiter: Likewise.
22365         * modules/mbuiter: Likewise.
22366
22367 2005-09-26  Bruno Haible  <bruno@clisp.org>
22368
22369         * m4/mbchar.m4 (gl_MBCHAR): Check for wchar.h and wctype.h. Don't
22370         compile mbchar.c if they are not both present.
22371         * m4/mbfile.m4 (gl_MBFILE): Require gl_FUNC_MBRTOWC.
22372         * m4/mbiter.m4 (gl_MBITER): Likewise.
22373         * m4/strstr.m4 (gl_PREREQ_STRSTR): Use AC_REQUIRE.
22374         * m4/strcasestr.m4 (gl_PREREQ_STRCASESTR): Likewise.
22375         * m4/strcase.m4 (gl_PREREQ_STRCASECMP): Likewise.
22376
22377 2005-09-25  Jim Meyering  <jim@meyering.net>
22378
22379         * modules/inet_ntop (Depends-on): Add socklen, since inet_ntop.c
22380         also uses socklen_t.
22381
22382 2005-09-24  Paul Eggert  <eggert@cs.ucla.edu>
22383
22384         * lib/utimens.c (ENOSYS): Define if not already defined.
22385         (futimens): Support having a null PATH if the file descriptor
22386         is nonnegative.
22387
22388         * lib/regex_internal.h (__GNUC_PREREQ, always_inline, inline, pure):
22389         Remove.
22390         (__attribute): Define to empty unless GCC 3.1 or later.
22391         This works around a core dump on OpenBSD 3.4, which has GCC
22392         2.95.3, which dumps core when given __attribute__(()).  It also
22393         simplifies other tests, since we really don't want to bother with
22394         worrying about which ancient version of GCC supported what.
22395         Original problem reported by Yoann Vandoorselaere, with part of
22396         the fix suggested by Derek Price.
22397
22398 2005-09-24  Jim Meyering  <jim@meyering.net>
22399
22400         * lib/verify.h (verify_type__): Use `unsigned int' as the bitfield type
22401         so we can once again use a positive bitfield width of 1 -- now we
22402         don't have to explain why we were using a bitfield width of 2.
22403
22404 2005-09-23  Paul Eggert  <eggert@cs.ucla.edu>
22405
22406         * m4/regex.m4 (gl_REGEX): If replacing, define regcomp to rpl_regcomp,
22407         and similarly for the other external symbols.  Problem reported
22408         by James Gallager.
22409
22410         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Catch Sun Studio 10u1 on Linux
22411         bug reported by Jim Meyering.
22412
22413         * m4/utimens.m4 (gl_UTIMENS): Check for futimesat.
22414         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Undo previous change;
22415         not needed, since socklen is a prerequisite module.
22416
22417 2005-09-23  Paul Eggert  <eggert@cs.ucla.edu>
22418
22419         * lib/getaddrinfo.c [HAVE_NETINET_IN_H]: Include <netinet/in.h>.
22420         Problem reported by Eric Blake.
22421         (getaddrinfo): Initialize se so that it's not garbage.
22422         Redo internal storage allocation so that it doesn't make unportable
22423         assumptions about alignment.
22424         Fix a memory leak.
22425
22426         * lib/utimens.c (futimens): Use futimesat if available.
22427         Prefer it to futimes since it doesn't have the futimes bug.
22428
22429         * lib/verify.h (GL_CONCAT0, GL_CONCAT): Remove.
22430         (verify): Don't use the __LINE__ trick, as it doesn't work in general.
22431         Instead, declare a function that returns a pointer to an array,
22432         and use verify_type__ to declare the size of the array.
22433         Problem and germ of a solution reported by Bruno Haible.
22434         (verify_type__): Use 2, not 1, for bitfield size, to avoid
22435         a warning with Irix 6.5 cc.  Problem reported by Bruno Haible.
22436
22437 2005-09-23  Jim Meyering  <jim@meyering.net>
22438
22439         Sync from coreutils.
22440         Correct build failure (socklen_t not defined) on at least
22441         mips-sgi-irix6.5 and alphaev67-dec-osf5.1.
22442         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Require gl_SOCKLEN_T.
22443
22444 2005-09-23  Jim Meyering  <jim@meyering.net>
22445
22446         * modules/getaddrinfo (Depends-on): Add socklen.
22447
22448 2005-09-23  Bruno Haible  <bruno@clisp.org>
22449
22450         * tests/test-verify.c: New file.
22451
22452 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
22453
22454         Sync from coreutils.
22455
22456         * modules/argmatch (Depends-on): Add verify.
22457         * modules/getloadavg (Depends-on): Depend on fcntl-safer, not
22458         unistd-safer.
22459         * modules/save-cwd (Depends-on): Likewise.
22460
22461         * modules/openat (Files): Add lib/openat-die.c.
22462         (Depends-on): Remove error, exitfail.
22463         Add dirname.
22464
22465         * modules/verify: New file.
22466         * MODULES.html.sh (Diagnostics <assert.h>): New section,
22467         with "verify" module.
22468
22469 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
22470
22471         Sync from coreutils.
22472
22473         * m4/backupfile.m4, calloc.m4, chown.m4, cloexec.m4, dup2.m4:
22474         * m4/fileblocks.m4, free.m4, ftruncate.m4, getcwd.m4, getpagesize.m4:
22475         * m4/getugroups.m4, group-member.m4, idcache.m4, link-follow.m4:
22476         * m4/mkstemp.m4, mktime.m4, mountlist.m4, nanosleep.m4, pathmax.m4:
22477         * m4/physmem.m4, posixver.m4, putenv.m4, safe-read.m4, same.m4:
22478         * m4/save-cwd.m4, stdio-safer.m4, unistd-safer.m4, unlinkdir.m4:
22479         * m4/userspec.m4, xgetcwd.m4, xreadlink.m4:
22480         Don't bother checking for string.h, stdlib.h, unistd.h.
22481         * m4/fts.m4 (gl_FUNC_FTS_CORE): Don't require
22482         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK; that's now the lstat
22483         module's job.
22484         * m4/jm-macros.m4 (gl_MACROS): Likewise.
22485         * m4/prereq.m4 (gl_PREREQ): Add gl_FUNC_LSTAT.
22486
22487         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): New macro.
22488         (gl_GETDATE): Use it.
22489
22490         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Don't bother checking for unistd.h.
22491
22492 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
22493
22494         Sync from coreutils.
22495
22496         * lib/.cppi-disable: Add regcomp.c, regex_internal.c, regex_internal.h,
22497         stat-time.h.
22498         * lib/argmatch.h: Include verify.h
22499         (ARGMATCH_VERIFY): Use verify rather than rolling our own.
22500         (ARGMATCH_ASSERT): Remove; unused.
22501         * lib/canonicalize.c: Assume STDC_HEADERS.
22502         * lib/exclude.c: Include "strcase.h".
22503         * lib/regex_internal.h [!defined _LIBC]: Likewise.
22504         * lib/getusershell.c: Include stdio--.h rather than stdio.h
22505         and stdio-safer.h.
22506         (getusershell): Call fopen, not fopen_safer.
22507         * lib/save-cwd.c: Include fcntl--.h rather than fcntl.h.
22508         Do not include unistd-safer.h.
22509         (save_cwd): Don't call fd_safer; no longer needed
22510         now that we include fcntl--.h.
22511
22512         * lib/getdate.y (relative_time): New type.
22513         (RELATIVE_TIME_0): New constant.
22514         (parser_control): Use relative_time instead of doing it ourselves.
22515         (%union): Add new relative_time rel member.
22516         (tYEAR_UNIT, tMONTH_UNIT, tHOUR_UNIT, tMINUTE_UNIT, tSEC_UNIT):
22517         Now typeless.
22518         (relunit, relunit_snumber): Now of type rel.
22519         (zone, rel, relunit, get_date): Adjust to above changes.
22520
22521         * lib/getloadavg.c: Include fcntl--.h rather than fcntl.h.
22522         Do not include unistd-safer.h.
22523         (getloadavg): Don't call fd_safer; no longer needed
22524         now that we include fcntl--.h.
22525
22526         * lib/mkdir-p.c (ENOSYS): Define to EEXIST if not defined.
22527         (make_dir_parents): Treat ENOSYS like EEXIST.
22528
22529         Improve quality of diagnostics on restore_cwd failure.
22530         * lib/mkdir-p.h (make_dir): Remove.  All uses replaced by mkdir.
22531         (make_dir_parents): Last arg is now int * (for errno), not bool *.
22532         * lib/mkdir-p.c (make_dir, make_dir_parents): Likewise.
22533         Rewrite "mkdir -p" algorithm to avoid the need for "stat"
22534         each time through the loop.  Do not diagnose restore_cwd failure;
22535         that is the caller's job (and perhaps the caller does not care).
22536
22537         * lib/mkdir-p.c (CLEANUP_CWD, CLEANUP): Remove.
22538         (make_dir_parents): Revamp to avoid need for CLEANUP_CWD, CLEANUP.
22539         If the file already exists but is not a directory, don't bother
22540         to try to make its parents.
22541         Close potential file descriptor leak if we can't chdir("/") (!).
22542         Don't always return true if chdir($PWD) fails; return true only
22543         if the requested action was done successfully (except for the
22544         chdir($PWD)).
22545         Don't log final directory unless we actually made it.
22546         Refactor to avoid duplicate code to fix up permissions.
22547         Don't attempt to fix up parent permissions if chdir($PWD) fails.
22548
22549         * lib/strftime.c (my_strftime): Rewrite the previous change slightly,
22550         to make it a bit faster and (I hope) clearer.
22551         * lib/strftime.c (my_strftime): Add support for %:z, %::z, %:::z.
22552         Fix bug in formats like %2N.
22553
22554         * lib/verify.h: New file.
22555
22556 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
22557
22558         Sync from coreutils.
22559         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Check for netinet/in.h.
22560
22561 2005-09-22  Jim Meyering  <jim@meyering.net>
22562
22563         Sync from coreutils.
22564
22565         * m4/lstat.m4 (gl_FUNC_LSTAT):
22566         Use AC_LIBSOURCES to require lstat.c and lstat.h.
22567         Remove obsolete comment.
22568         * m4/xreadlink.m4: Use AC_LIBSOURCES and AC_LIBOBJ.
22569         * m4/xstrtod.m4: Likewise.
22570
22571         * m4/openat.m4 (gl_FUNC_OPENAT): Add openat-die.c.
22572
22573 2005-09-22  Jim Meyering  <jim@meyering.net>
22574
22575         Sync from coreutils.
22576
22577         * lib/backupfile.c: Use ARGMATCH_VERIFY, just in case.
22578
22579         * lib/posixtm.c (posixtime) [lint]: Initialize *all* of tm0, not just
22580         the .tm_year member, since otherwise gcc-4.0 would now warn about
22581         tm_zone, tm_gmtoff, tm_isdst, tm_yday, tm_wday.
22582
22583         * lib/quotearg.c (quotearg_n_options): Change code to be suboptimal, in
22584         order to avoid an unsuppressible warning from gcc on 64-bit systems.
22585
22586         * lib/getdate.y (get_date): Undo part of the 2005-04-04 change, so that
22587         the command "date -d'2005-03-27 +1 day'" succeeds once again, even
22588         when run in a time zone for which daylight savings time is in effect
22589         for the starting date.
22590
22591         * lib/mkdir-p.c (make_dir_parents): Don't let a failed chdir($PWD)
22592         stop us from restricting permissions of just-created absolute-named
22593         directories.
22594         * lib/mkdir-p.c (CLEANUP_CWD): Return *true*, not false when failing
22595         to restore initial working directory.
22596         * lib/mkdir-p.c (make_dir_parents): New parameter:
22597         different_working_dir, to tell caller if/when we change the working
22598         directory and are unable to return to the initial one.
22599         * lib/mkdir-p.h (make_dir_parents): Update prototype.
22600         * lib/mkdir-p.c (CLEANUP_CWD): Change one more `return 1' to
22601         `return false'.  This fixes a bug introduced on 2004-07-30.
22602
22603         * lib/openat.c (fdopendir): Be sure to close the supplied
22604         file descriptor before returning.  This makes our replacement
22605         implementation a little closer to Solaris's, where fdopendir
22606         ties the file descriptor to the returned DIR* pointer.
22607         * lib/openat.c (unlinkat): New function.
22608         * lib/openat.h (unlinkat): Add prototype.
22609         * lib/openat-die.c (openat_save_fail): Rename from openat_save_die.
22610         (openat_restore_fail): Rename from openat_restore_die.
22611         * lib/openat.c, openat.h: Reflect s/_die/_fail/ renaming.
22612
22613         Provide an alternative to exiting immediately upon save_cwd or
22614         restore_cwd failure.  Now, an application can arrange e.g.,
22615         to perform a longjump in that case.
22616         * lib/openat.c: Include dirname.h.
22617         Use IS_ABSOLUTE_FILE_NAME rather than testing for leading slash.
22618         (rpl_openat, fdopendir, fstatat): Call openat_save_die
22619         and openat_restore_die rather than calling error directly.
22620         Don't include "error.h" or "exitfail.h"; they're no longer needed.
22621
22622         * lib/openat-die.c (openat_save_die, openat_restore_die): New file.
22623         * lib/openat.h (openat_save_die, openat_restore_die): Declare and
22624         define.
22625
22626         * lib/strftime.c [FPRINTFTIME] (fprintftime): Provide a new interface:
22627         size_t fprintftime (FILE *fp, char const *fmt, struct tm const *tm,
22628                             int utc, int nanoseconds);
22629         Background:
22630         date should not have to allocate a megabyte of virtual memory to
22631         handle a format argument like +%1048575T.  When implemented with
22632         strftime, it must allocate such a buffer, use strftime to fill it
22633         in, print it, then free it.
22634         With fprintftime, it simply prints everything and exits.
22635         With no need for memory allocation, that's one fewer way to fail.
22636         * lib/strftime.c (my_strftime): Parse the colons of %:::z *after* the
22637         optional field width, not before, so we accept %9:z, not %:9z.
22638         (my_strftime): Be sure to use L_('x') for literals.
22639
22640         * lib/backupfile.c, lib/canon-host.c, lib/canonicalize.c, lib/chown.c:
22641         * lib/cloexec.c, lib/dup-safer.c, lib/dup2.c, lib/euidaccess.c:
22642         * lib/fd-safer.c, lib/fileblocks.c, lib/fopen-safer.c, lib/fsusage.c:
22643         * lib/ftruncate.c, lib/getcwd.c, lib/getcwd.h, lib/getloadavg.c:
22644         * lib/getopt_.h, lib/getpagesize.h, lib/getugroups.c:
22645         * lib/group-member.c, lib/human.h, lib/idcache.c, lib/mkdir-p.c:
22646         * lib/mountlist.c, lib/nanosleep.c, lib/pathmax.h, lib/physmem.c:
22647         * lib/posixver.c, lib/putenv.c, lib/raise.c, lib/safe-read.c:
22648         * lib/same.c, lib/save-cwd.c, lib/setenv.c, lib/settime.c:
22649         * lib/tempname.c, lib/unlinkdir.c, lib/unsetenv.c, lib/userspec.c:
22650         * lib/xgethostname.c, lib/xreadlink.c:
22651         Assume HAVE_UNISTD_H, i.e., include <unistd.h> unconditionally.
22652
22653         * lib/chown.c, lib/cloexec.c, lib/dup-safer.c, lib/dup2.c:
22654         * lib/fsusage.c, lib/getcwd.c, lib/getloadavg.c, lib/mountlist.c:
22655         * lib/openat.h, lib/save-cwd.c, lib/tempname.c:
22656         Assume HAVE_FCNTL_H (i.e., include <fcntl.h> unconditionally,
22657         and don't include <sys/file.h>).
22658
22659 2005-09-22  Eric Blake  <ebb9@byu.net>  (tiny change)
22660
22661         Sync from coreutils.
22662
22663         * lib/getloadavg.c (getloadavg) [__CYGWIN__]: Port to cygwin.
22664         [__linux__]: Allocate a big enough buffer for /proc/loadavg.
22665         [!LDAV_DONE]: Avoid unused variable warning.
22666
22667 2005-09-21  Bruno Haible  <bruno@clisp.org>
22668
22669         * lib/unicodeio.h (unicode_to_mb): New declaration.
22670
22671 2005-09-20  Derek Price  <derek@ximbiot.com>
22672
22673         * lib/getaddrinfo.c: Don't include <netdb.h> included from
22674         getaddrinfo.h.
22675
22676 2005-09-20  Bruno Haible  <bruno@clisp.org>
22677
22678         * gnulib-tool: Remove trailing slashes from the values specified for
22679         --source-base, --m4-base, --tests-base, --aux-dir.
22680         Suggested by Simon Josefsson <jas@extundo.com>.
22681
22682 2005-09-20  Bruno Haible  <bruno@clisp.org>
22683
22684         * gnulib-tool (func_all_modules, func_modules_transitive_closure,
22685         func_modules_to_filelist, func_import, func_create_testdir): Make all
22686         sorting results locale-independent, so that gnulib-cache.m4 doesn't
22687         change when gnulib-tool is invoked in a different locale.
22688
22689 2005-09-19  Simon Josefsson  <jas@extundo.com>
22690
22691         * m4/socklen.m4: Fix typo.
22692
22693 2005-09-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
22694
22695         Use a consistent style for including <config.h>.
22696         * lib/__fpending.c, lib/acl.c, lib/argmatch.c, lib/argp-help.c,
22697         lib/argp-parse.c, lib/argp-pvh.c, lib/backupfile.c, lib/basename.c,
22698         lib/c-stack.c, lib/calloc.c, lib/check-version.c, lib/cloexec.c,
22699         lib/closeout.c, lib/copy-file.c, lib/creat-safer.c, lib/cycle-check.c,
22700         lib/dirfd.c, lib/dirname.c, lib/dup-safer.c, lib/dup2.c,
22701         lib/euidaccess.c, lib/exclude.c, lib/exitfail.c, lib/fatal-signal.c,
22702         lib/fd-safer.c, lib/file-type.c, lib/fileblocks.c, lib/filemode.c,
22703         lib/filenamecat.c, lib/findprog.c, lib/fnmatch.c, lib/fopen-safer.c,
22704         lib/free.c, lib/fsusage.c, lib/ftruncate.c, lib/full-write.c,
22705         lib/fwriteerror.c, lib/getaddrinfo.c, lib/getcwd.c, lib/getdelim.c,
22706         lib/getline.c, lib/getlogin_r.c, lib/getndelim2.c, lib/getnline.c,
22707         lib/getopt1.c, lib/getpass.c, lib/group-member.c, lib/hard-locale.c,
22708         lib/hash-pjw.c, lib/hash.c, lib/human.c, lib/idcache.c,
22709         lib/inet_ntop.c, lib/isdir.c, lib/long-options.c, lib/malloc.c,
22710         lib/memcasecmp.c, lib/memcmp.c, lib/memcoll.c, lib/memcpy.c,
22711         lib/memmove.c, lib/mkdir-p.c, lib/modechange.c, lib/mountlist.c,
22712         lib/open-safer.c, lib/physmem.c, lib/pipe-safer.c, lib/pipe.c,
22713         lib/poll.c, lib/posixver.c, lib/progname.c, lib/progreloc.c,
22714         lib/putenv.c, lib/quote.c, lib/quotearg.c, lib/readline.c,
22715         lib/readlink.c, lib/realloc.c, lib/regex.c, lib/rename.c, lib/rmdir.c,
22716         lib/rpmatch.c, lib/safe-read.c, lib/same.c, lib/save-cwd.c,
22717         lib/savedir.c, lib/sig2str.c, lib/strcspn.c, lib/strerror.c,
22718         lib/stripslash.c, lib/strncasecmp.c, lib/strndup.c, lib/strnlen.c,
22719         lib/strnlen1.c, lib/strsep.c, lib/strstr.c, lib/strtod.c,
22720         lib/strtoimax.c, lib/strtol.c, lib/strverscmp.c, lib/tempname.c,
22721         lib/time_r.c, lib/userspec.c, lib/utimecmp.c, lib/version-etc-fsf.c,
22722         lib/version-etc.c, lib/wait-process.c, lib/xalloc-die.c, lib/xgetcwd.c,
22723         lib/xmalloc.c, lib/xmemcoll.c, lib/xnanosleep.c, lib/xreadlink.c,
22724         lib/xsetenv.c, lib/xstrndup.c, lib/xstrtoimax.c, lib/xstrtol.c,
22725         lib/xstrtoumax.c, lib/yesno.c:
22726         Standardize inclusion of config.h.
22727         * lib/__fpending.h, lib/dirfd.h, lib/getdate.h, lib/human.h,
22728         lib/inttostr.h:  Removed inclusion of config.h from header files.
22729         * lib/inttostr.c:  Adjusted in-tree users.
22730         * lib/timespec.h: Remove superfluous warning to include config.h.
22731         * lib/atexit.c, lib/chdir-long.c, lib/chown.c, lib/fchown-stub.c,
22732         lib/getgroups.c, lib/gettimeofday.c, lib/lchown.c, lib/lstat.c,
22733         lib/mkdir.c, lib/mkstemp.c, lib/nanosleep.c, lib/openat.c, lib/raise.c,
22734         lib/readtokens0.c, lib/readutmp.c, lib/unlinkdir.c: Guard inclusion of
22735         config.h with HAVE_CONFIG_H.
22736
22737 2005-09-19  Jim Meyering  <jim@meyering.net>
22738
22739         * modules/pathmax (License): Change to LGPL.
22740
22741 2005-09-19  Derek Price  <derek@ximbiot.com>
22742
22743         * config/srclist.txt: glibc's glob.h is now in lib/glob-libc.h.
22744
22745 2005-09-19  Bruno Haible  <bruno@clisp.org>
22746
22747         * gnulib-tool (import): Provide default for --tests-base.
22748
22749 2005-09-19  Bruno Haible  <bruno@clisp.org>
22750
22751         * doc/quote.texi: New file, extracted from gnulib.texi.
22752         * doc/ctime.texi: New file, extracted from gnulib.texi.
22753         * doc/inet_ntoa.texi: New file, extracted from gnulib.texi.
22754         * doc/gnulib-tool.texi: New file, extracted from gnulib.texi.
22755         * doc/gnulib.texi: Include them.
22756
22757 2005-09-18  Bruno Haible  <bruno@clisp.org>
22758
22759         Portability fix.
22760         * gnulib-tool (func_readlink): New function.
22761         (func_ln_if_changed): Use it.
22762
22763 2005-09-18  Bruno Haible  <bruno@clisp.org>
22764
22765         * gnulib-tool: Support --with-tests also with --import.
22766         (func_emit_tests_Makefile_am): Use variables $m4base and $testsbase.
22767         (func_import): Use variables $testsbase and $inctests. Emit a
22768         gl_TESTS_BASE form into gnulib-cache.m4. Create $testsbase/Makefile.am.
22769         Remind the user to add AC_CONFIG_FILES($testsdir/Makefile) and
22770         SUBDIRS += $testsdir.
22771         (func_create_testdir): Update.
22772
22773 2005-09-18  Bruno Haible  <bruno@clisp.org>
22774
22775         * gnulib-tool: Revise --dry-run implementation. Use variable $doit
22776         instead of $dry_run.
22777         (func_cp_if_changed, func_mv_if_changed): Remove functions.
22778         (func_ln_if_changed): Don't handle dry-run here.
22779         (func_import): In dry-run mode, detect more precisely which actions
22780         would be performed, and don't use "...ing" verbs.
22781
22782 2005-09-18  Bruno Haible  <bruno@clisp.org>
22783
22784         * gnulib-tool (func_tmpdir): New function, taken from GNU gettextize.
22785         (func_import): Use join on two temporary files instead of three nested
22786         loops, in order to determine which files are new or old.
22787
22788 2005-09-18  Bruno Haible  <bruno@clisp.org>
22789
22790         * gnulib-tool (func_import): Comment out code that spits out the
22791         new files with --dry-run.
22792
22793 2005-09-18  Bruno Haible  <bruno@clisp.org>
22794
22795         * doc/gnulib.texi (Invoking gnulib-tool): 50% rewritten.
22796
22797 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
22798
22799         * lib/stat-time.h: New file.
22800         * lib/timespec.h (ST_TIME_CMP_NS, ST_TIME_CMP, ATIME_CMP, CTIME_CMP):
22801         (MTIME_CMP, TIMESPEC_NS): Remove.  Now done by stat-time.h,
22802         in a different way.
22803         (timespec_cmp): New function.
22804         * lib/utimecmp.c: Include stat-time.h.
22805         (SYSCALL_RESOLUTION): Depend on whether various struct stat
22806         members exist, not on the obsolescent ST_MTIM_NSEC.
22807         (utimecmp): Use the new stat-time functions rater than TIMESPEC_NS.
22808
22809 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
22810
22811         * config/srclist.txt: Remove glibc bug 1033 and uncomment mktime.c.
22812
22813 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
22814
22815         * MODULES.html.sh (File system functions): Add stat-time.
22816         * modules/stat-time: New file.
22817         * modules/timespec (Files): Remove m4/st_mtim.m4; this
22818         is now done in a different way, by the stat-time module.
22819         * modules/utimecmp (Depends-on): Add stat-time.
22820
22821 2005-09-15  Paul Eggert  <eggert@cs.ucla.edu>
22822
22823         * m4/st_mtim.m4: Remove.  Superseded by...
22824         * m4/stat-time.m4: New file.
22825         * m4/timespec.m4 (gl_TIMESPEC): Require AC_C_INLINE.
22826         Do not invoke AC_STRUCT_ST_MTIM_NSEC; no longer needed.
22827
22828 2005-09-15  Derek Price  <derek@ximbiot.com>
22829
22830         * m4/strstr.m4 (gl_FUNC_STRSTR): Don't define strstr here.
22831
22832 2005-09-15  Derek Price  <derek@ximbiot.com>
22833
22834         * lib/regex_internal.h: Blank `pure' for GNUC < 3.
22835         * lib/regex_internal.c: Ditto, using this...
22836         (__GNUC_PREREQ): ...new macro.
22837         * lib/regcomp.c, regexec.c: Blank `always_inline' for GNUC < 3.1
22838         using...
22839         (__GNUC_PREREQ): ...this new macro.
22840
22841         * lib/strstr.h: Include string.h. Define strstr as a macro here.
22842
22843 2005-09-15  Derek Price  <derek@ximbiot.com>
22844             Paul Eggert  <eggert@cs.ucla.edu>
22845
22846         * lib/regcomp.c, regexec.c, regex_internal.c: Back out previous
22847         changes, consolidating in...
22848         * lib/regex_internal.h: ...this file.
22849
22850 2005-09-13  Jim Meyering  <jim@meyering.net>
22851
22852         * lib/canon-host.c: Filter through gnu indent and reword comments
22853         slightly.
22854         * lib/canon-host.h (ch_strerror_r): Tweak cpp indentation and spacing.
22855
22856 2005-09-13  Derek Price  <derek@ximbiot.com>
22857
22858         * lib/canon-host.c (canon_host_r): Set *cherror on memory allocation
22859         failure.
22860         Reported by Jim Meyering  <jim@meyering.net>.
22861
22862 2005-09-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
22863
22864         * lib/base64.c: Typo.
22865         (base64_encode): Put b64str in initialized data section.
22866
22867 2005-09-12  Paul Eggert  <eggert@cs.ucla.edu>
22868
22869         Merge glibc and coreutils changes into gnulib, plus a few
22870         extra fixes.
22871         * lib/md5.c: Use #error rather than a string.
22872         (CYCLIC): New macro, from glibc source.  Use it instead of rol.
22873         * lib/md5.h (__GNUC_PREREQ, __THROW): Define if not defined already.
22874         (__attribute__): Define to empty for non recent-GCC.
22875         (__md5_buffer, __md5_finish_ctx, __md5_init_ctx, __md5_process_block):
22876         (__md5_process_bytes, __md5_read_ctx, __md5_stream):
22877         Renamed from their non-__ counterparts, with new macros replacing
22878         them if not _LIBC.  Add __THROW attribute.
22879         (rol): Remove.
22880         (struct md5_ctx): Align buffer if using GCC.
22881         * lib/sha1.h (struct sha1_ctx): Likewise.
22882         * lib/sha1.c (SWAP): Renamed from the NOTSWAP.  All uses changed.
22883         The old name was backwards.
22884         (NOTSWAP): Remove; not used.
22885         (rol): New macro, moved here from md5.h.
22886         (sha1_process_block): Remove a FIXME that doesn't make sense.
22887
22888 2005-09-12  Derek Price  <derek@ximbiot.com>
22889
22890         Return usable errors from canon-host.
22891         * lib/canon-host.h: New file.
22892         * lib/canon-host.c (canon_host): Wrap...
22893         (canon_host_r): ...this new function, which now relies exclusively on
22894         getaddrinfo.
22895         (ch_strerror): New function.
22896         (last_cherror): New global.
22897         * lib/getaddrinfo.c: Move include of getaddrinfo.h first to test
22898         interface.
22899         (getaddrinfo): Add AI_CANONNAME functionality.  Don't do arithmetic on
22900         void *.
22901         (freeaddrinfo): Free ai->ai_canonname when set.
22902
22903 2005-09-12  Derek Price  <derek@ximbiot.com>
22904
22905         Make canon-host require getaddrinfo.
22906         * m4/canon-host.m4 (gl_CANON_HOST): Remove most dependencies.
22907         AC_LIBSOURCE canon-host.h.  Call...
22908         (gl_PREREQ_CANON_HOST): ...this new function, which requires
22909         gl_GETADDRINFO.
22910         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Compile gai_strerror when needed.
22911
22912 2005-09-12  Derek Price  <derek@ximbiot.com>
22913
22914         * modules/canon-host: Add canon-host.h.  Depend on getaddrinfo.  Make
22915         LGPL.
22916         * modules/getaddrinfo: Add link to opengroup spec.  Depend on strdup.
22917
22918 2005-09-12  Derek Price  <derek@ximbiot.com>
22919
22920         * lib/gai_strerror.c: Include config.h when available.  Include
22921         getaddrinfo.h before other headers to test interface.
22922         Reported by Larry Jones <lawrence.jones@ugs.com>.
22923
22924 2005-09-12  Derek Price  <derek@ximbiot.com>
22925             Paul Eggert  <eggert@cs.ucla.edu>
22926
22927         * modules/glob (Files): Add glob-libc.h.
22928
22929 2005-09-12  Derek Price  <derek@ximbiot.com>
22930             Paul Eggert  <eggert@cs.ucla.edu>
22931
22932         * m4/glob.m4 (gl_GLOB_SUBSTITUTE): AC_LIBSOURCES for glob.c,
22933         glob_.h, glob-libc.h.
22934         (gl_PREREQ_GLOB): Remove _SYS_CDEFS_H hack; no longer needed.
22935
22936 2005-09-12  Derek Price  <derek@ximbiot.com>
22937             Paul Eggert  <eggert@cs.ucla.edu>
22938
22939         * lib/glob-libc.h: Renamed from glob_.h.  The new version is
22940         taken from libc's glob.h, except with '#ifdef __GLOB_GNULIB'
22941         protecting things that should be done only in gnulib contexts.
22942         * lib/glob_.h: New file, containing only the glob things needed for
22943         gnulib.
22944         (GLOB_PREFIX): Remove.  All uses changed to look for __GLOB_GNULIB.
22945         (__GLOB_CONCAT, __GLOB_XCONCAT, __GLOB_ID): Remove; no longer needed.
22946         (glob, globfree, glob_pattern_p): Now defined simply in terms of
22947         rpl_glob, rpl_globfree, rpl_glob_pattern_p.
22948         (__GLOB_GNULIB): New macro, to keep the glob.h changes clearer
22949         and to respect the namespace rules better.
22950
22951 2005-09-08  Simon Josefsson  <jas@extundo.com>
22952
22953         * modules/socklen: New file.
22954
22955 2005-09-08  Simon Josefsson  <jas@extundo.com>
22956
22957         * m4/socklen.m4: New file.
22958
22959 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
22960
22961         * modules/utimens (Files): Add m4/utimbuf.m4, since
22962         m4/utimens.m4 requires gl_CHECK_TYPE_STRUCT_UTIMBUF.
22963         Reported by Sergey Poznyakoff.
22964
22965 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
22966
22967         * lib/glob.c (glob, globfree, __glob_pattern_p): Use old-style function
22968         definitions, since that's the preferred style in glibc.
22969         Fix a minor spacing issue, and update copyright notice to match
22970         glibc's.
22971
22972 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
22973
22974         * config/srclist.txt: Remove glibc bug 1061; it's been fixed.
22975
22976 2005-09-06  Simon Josefsson  <jas@extundo.com>
22977
22978         * lib/getpass.c (getpass): Fix typo, test for HAVE_TCSETATTR and not
22979         TCSETATTR.  Reported by Derek Price <derek@ximbiot.com>.
22980
22981 2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
22982
22983         * lib/regex_internal.h (bitset_not): Add parens to avoid gcc -Wall
22984         warning.
22985
22986 2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
22987
22988         * config/srclist.txt: Add glibc bug 1302.
22989
22990 2005-09-05  Paul Eggert  <eggert@cs.ucla.edu>
22991
22992         Change bitset word type from unsigned int to unsigned long int,
22993         as this has better performance on typical 64-bit hosts.
22994         Port bitset code to hosts with unusual word sizes.
22995         * lib/regcomp.c (build_equiv_class, build_charclass, build_range_exp):
22996         (build_collating_symbol):
22997         Prefer bitset to re_bitset_ptr_t in prototypes, when the actual
22998         argument is a bitset.  This is merely a style issue, but it makes
22999         it clearer that an entire array is expected.
23000         (re_compile_fastmap_iter, init_dfa, init_word_char, optimize_subexps):
23001         * lib/regcomp.c (lower_subexp, parse_bracket_exp, built_charclass_op):
23002         Port to the case where bitset_word is not the same as unsigned int.
23003         * lib/regex_internal.h (bitset_set, bitset_clear, bitset_contain):
23004         (bitset_not, bitset_merge, bitset_set_all, bitset_mask):
23005         Likewise.
23006         * lib/regexec.c (check_dst_limits_calc_pos_1,
23007         check_subexp_matching_top):
23008         (build_trtable, group_nodes_into_DFAstates):
23009         Likewise.
23010         * lib/regcomp.c (re_compile_fastmap_iter, utf8_sb_map, optimize_utf8):
23011         Don't assume that SBC_MAX is a multiple of BITSET_WORD_BITS.
23012         * lib/regex_internal.h (bitset_set_all, bitset_not): Likewise.
23013         * lib/regexec.c (group_nodes_into_DFAstates): Likewise.
23014         * lib/regcomp.c (utf8_sb_map): Don't assume UINT_MAX == 0xffffffff.
23015         * lib/regcomp.c (optimize_subexps, lower_subexp):
23016         Work even if bitset_word has holes in its bitwise representation.
23017         * lib/regex_internal.h (BITSET_WORD_BITS): Likewise.
23018         * lib/regexec.c (check_dst_limits_calc_pos_1,
23019         check_subexp_matching_top):
23020         Likewise.
23021         * lib/regex_internal.c (re_string_reconstruct):
23022         Don't assume UCHAR_MAX == 255.
23023         * lib/regex_internal.h (bitset_set_all): Likewise.
23024         * lib/regex_internal.h (BITSET_WORD_BITS): Renamed from UINT_BITS.
23025         All uses changed.
23026         (BITSET_WORDS): Renamed from BITSET_UINTS.  All uses changed.
23027         (bitset_word): New type, replacing 'unsigned int' for bitset uses.
23028         All uses changed.
23029         (BITSET_WORD_MAX): New macro.
23030         (bitset_set, bitset_clear, bitset_contain, bitset_empty):
23031         (bitset_set_all, bitset_copy):  Now inline functions, not macros.
23032         (bitset_empty, bitset_copy):
23033         Prefer sizeof (bitset) to multiplying it out ourselves.
23034         (bitset_not_merge): Remove; unused.
23035         (bitset_contain): Return bool, not unsigned int with one bit on.
23036         All callers changed.
23037         * lib/regexec.c (build_trtable): Don't assume bitset has no stricter
23038         alignment than re_node_set; do this by defining a new internal
23039         type struct dests_alloc and using it to allocate memory.
23040
23041 2005-09-05  Bruno Haible  <bruno@clisp.org>
23042
23043         * gnulib-tool (func_import): Fix comparison in handling of symbolic
23044         links.
23045
23046 2005-09-04  Martin Lambers  <marlam@marlam.de>  (tiny change)
23047
23048         * modules/size_max (Makefile.am): Add size_max.h
23049
23050 2005-09-04  Derek Price  <derek@ximbiot.com>
23051
23052         * gnulib-tool (func_import): Fix reversed $symbolic logic.
23053
23054 2005-09-03  Simon Josefsson  <jas@extundo.com>
23055
23056         * gnulib-tool: Fix typo.
23057
23058 2005-09-03  Simon Josefsson  <jas@extundo.com>
23059
23060         * config/srclist.txt: Add glibc bug 1293.
23061
23062 2005-09-03  Derek Price  <derek@ximbiot.com>
23063
23064         * m4/getlogin_r (gl_GETLOGIN_R): Fix cut & paste error.
23065         From Larry Jones <lawrence.jones@ugs.com>.
23066
23067 2005-09-02  Simon Josefsson  <jas@extundo.com>
23068
23069         * modules/socklen: New file.
23070
23071 2005-09-02  Simon Josefsson  <jas@extundo.com>
23072
23073         * modules/havelib: New module.
23074
23075         * modules/gettext, modules/iconv, modules/lock, modules/readline:
23076         Use havelib.
23077
23078 2005-09-02  Paul Eggert  <eggert@cs.ucla.edu>
23079
23080         Check for arithmetic overflow when calculating sizes, to prevent
23081         some buffer-overflow issues.  These patches are conservative, in the
23082         sense that when I couldn't determine whether an overflow was possible,
23083         I inserted a run-time check.
23084         * lib/regex_internal.h (re_xmalloc, re_xrealloc, re_x2realloc): New
23085         macros.
23086         (SIZE_MAX) [!defined SIZE_MAX]: New macro.
23087         (re_alloc_oversized, re_x2alloc_oversized, re_xnmalloc):
23088         (re_xnrealloc, re_x2nrealloc): New inline functions.
23089         * lib/regcomp.c (init_dfa, analyze, build_range_exp,
23090         parse_bracket_exp):
23091         (build_equiv_class, build_charclass): Check for arithmetic overflow
23092         in size expression calculations.
23093         * lib/regex_internal.c (re_string_realloc_buffers):
23094         (build_wcs_upper_buffer, re_node_set_add_intersect):
23095         (re_node_set_init_union, re_node_set_insert, re_node_set_insert_last):
23096         (re_dfa_add_node, register_state): Likewise.
23097         * lib/regexec.c (re_search_stub, re_copy_regs, re_search_internal):
23098         (prune_impossible_nodes, push_fail_stack, set_regs, check_arrival):
23099         (build_trtable, extend_buffers, match_ctx_init, match_ctx_add_entry):
23100         (match_ctx_add_subtop, match_ctx_add_sublast): Likewise.
23101
23102 2005-09-02  Paul Eggert  <eggert@cs.ucla.edu>
23103
23104         * modules/inttostr (Files): Add m4/inttypes_h.m4, m4/stdint_h.m4,
23105         m4/ulonglong.m4.  Problem reported by Martin Lambers.
23106
23107 2005-09-02  Bruno Haible  <bruno@clisp.org>
23108
23109         Support for lib vs. lib64 distinction on biarch platforms.
23110         * m4/lib-prefix.m4 (AC_LIB_PREPARE_MULTILIB): New macro.
23111         (AC_LIB_PREFIX): Require it. Use $acl_libdirstem instead of 'lib'.
23112         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Likewise.
23113
23114 2005-09-02  Bruno Haible  <bruno@clisp.org>
23115
23116         * gnulib-tool (import): In the other first-use case, provide defaults
23117         as well.
23118
23119 2005-09-02  Bruno Haible  <bruno@clisp.org>
23120
23121         * config/srclist.txt: lib-link.m4 and lib-prefix.m4 currently have
23122         patches not yet found in the latest gettext release.
23123
23124 2005-09-01  Paul Eggert  <eggert@cs.ucla.edu>
23125
23126         * lib/glob.c (GET_LOGIN_NAME_MAX): Renamed from LOGIN_NAME_MAX,
23127         to avoid a collision with bits/local_lim.h in glibc.
23128         All uses changed.  Problem reported by Dmitry V. Levin in
23129         <http://sources.redhat.com/bugzilla/show_bug.cgi?id=1060>.
23130
23131         * lib/regex_internal.c (build_wcs_upper_buffer): Fix portability
23132         bugs in int versus size_t comparisons.
23133         (re_string_context_at): Fix bug where the code assumed that
23134         Idx is signed.
23135
23136         Use bool where appropriate.
23137         * lib/regcomp.c (re_set_fastmap): ICASE arg is bool, not int.
23138         All callers changed.
23139         (calc_eclosure_iter): Likewise, for ROOT arg.
23140         (parse_bracket_element): Likewise, for ACCEPT_HYPHEN arg.
23141         (build_charclass_op): Likewise, for NON_MATCH arg.
23142         * lib/regex_internal.c (re_string_allocate, re_string_construct):
23143         (re_string_construct_common): Likewise, for ICASE arg.
23144         * lib/regexec.c (re_search_2_stub, re_search_stub):
23145         Likewise, for RET_LEN arg.
23146         (check_matching): Likewise, for FL_LONGEST_MATCH arg.
23147         (set_regs): Likewise, for FL_BACKTRACK arg.
23148         * lib/regcomp.c (re_compile_fastmap_iter, optimize_utf8):
23149         (duplicate_node_closure, calc_inveclosure, calc_eclosure):
23150         (calc_eclosure_iter, parse_bracket_exp):
23151         Use bool for internal variables that are booleans.
23152         * lib/regexec.c (re_search_internal, check_matching,
23153         proceed_next_node):
23154         (set_regs, build_sifted_states, sift_states_bkref):
23155         (check_arrival_add_next_nodes, check_arrival_expand_ecl_sub):
23156         (expand_bkref_cache, build_trtable, group_nodes_into_DFAstates):
23157         (find_collation_sequence_value):
23158         Likewise.
23159         * lib/regex_internal.c (re_node_set_insert, re_node_set_insert_last):
23160         (re_node_set_compare):
23161         Return bool, not int. All callers changed.
23162         * lib/regexec.c (check_halt_node_context, check_dst_limits):
23163         (build_trtable, check_node_accept): Likewise.
23164         * lib/regex_internal.h: Include stdbool.h.
23165
23166         Fix bugs uncovered when converting to bool.
23167         * lib/regcomp.c (calc_eclosure_iter): Check for storage allocation
23168         failure instead of charging ahead blindly.
23169         * lib/regex_internal.c (register_state): Likewise.
23170         * lib/regexec.c (re_search_2_stub): Use simpler method than boolean
23171         for freeing internal storage.
23172         (group_nodes_into_DFA_states): Use unsigned int, not int, for
23173         bitset pieces used as boolean, to avoid undefined behavior
23174         on hosts that do int overflow checking.
23175
23176 2005-09-01  Paul Eggert  <eggert@cs.ucla.edu>
23177
23178         * config/srclist.txt: Add glibc bugs 1285-1287.
23179
23180 2005-09-01  Jim Meyering  <jim@meyering.net>
23181
23182         * m4/lchown.m4: Require gl_FUNC_CHOWN, for the definition of
23183         CHOWN_MODIFIES_SYMLINK, which is used by lchown.c.
23184         Require gl_STAT_MACROS, too.
23185
23186 2005-09-01  Bruno Haible  <bruno@clisp.org>
23187
23188         * gnulib-tool (import): In the first-use case, provide defaults.
23189
23190 2005-09-01  Bruno Haible  <bruno@clisp.org>
23191
23192         * gnulib-tool (func_import): Remove the .tmp files.
23193
23194 2005-09-01  Bruno Haible  <bruno@clisp.org>
23195
23196         * gnulib-tool (func_import): Fix handling of symbolic links.
23197
23198 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
23199
23200         On 64-bit hosts (where size_t is 64 bits and int is 32 bits), the
23201         old glibc regex code mishandles strings longer than 2**31 bytes.
23202         This patch fixes this when the regex code is used in gnulib
23203         (i.e., outside glibc).
23204
23205         This patch should not affect the use of the regex code inside
23206         glibc.  No doubt this problem also needs to be handled for glibc
23207         as well, but the result will be an incompatible change to the
23208         glibc ABI, and the old ABI will have to be supported too.  That
23209         can be the the subject for another patch.
23210
23211         * lib/regex.h (_REGEX_LARGE_OFFSETS): New feature-test macro,
23212         governing whether the rest of this patch is active.  By default,
23213         the macro is disabled and the patch has no effect.
23214         (regoff_t) [defined _REGEX_LARGE_OFFSETS]: Define to off_t, not int.
23215         (__re_idx_t, __re_size_t, __re_long_size_t): New types.
23216         (struct re_pattern_buffer, re_search, re_search_2, re_match):
23217         (re_match_2, re_set_registers): Use the new types.
23218         * lib/regex_internal.h (Idx, re_hashval_t): New types.
23219         (REG_MISSING, REG_ERROR, REG_VALID_INDEX, REG_VALID_NONZERO_INDEX):
23220         New macros.
23221         (re_node_set, re_charset_t, re_token_t, re_string_realloc_buffers):
23222         (re_string_context_at, bin_tree_t, re_dfastate_t):
23223         (struct re_state_table_entry, state_array_t, re_sub_match_last_t):
23224         (re_sub_match_top_t, re_match_context_t, re_sift_context_t):
23225         (struct re_fail_stack_ent_t, struct re_fail_stack_t, struct re_dfa_t):
23226         (re_string_char_size_at, re_string_wchar_at):
23227         (re_string_elem_size_at):
23228         Use the new types and macros to port to 64-bit hosts.
23229         Use unsigned types for internal values, so that the code
23230         mostly works even for arrays larger than SSIZE_MAX.
23231         * lib/regcomp.c (re_compile_internal, init_dfa, duplicate_node):
23232         (search_duplicated_node, calc_eclosure_iter, fetch_number):
23233         (parse_reg_exp, parse_branch, parse_expression, parse_sub_exp):
23234         (build_equiv_class, build_charclass, re_compile_fastmap_iter):
23235         (free_dfa_content, create_initial_state, optimize_utf8, analyze):
23236         (optimize_subexps, calc_first, link_nfa_nodes, duplicate_node_closure):
23237         (calc_inveclosure, parse_dup_op, build_range_exp):
23238         (build_collating_symbol, parse_bracket_exp, build_charclass_op):
23239         (fetch_number, create_token_tree, mark_opt_subexp):
23240         Likewise.
23241         * lib/regex_internal.c (re_string_construct_common,
23242         create_ci_newstate):
23243         (create_cd_newstate, re_string_allocate, re_string_construct):
23244         (re_string_realloc_buffers, build_wcs_upper_buffer):
23245         (re_string_skip_chars, build_upper_buffer, re_string_translate_buffer):
23246         (re_string_reconstruct, re_string_peek_byte_case):
23247         (re_string_fetch_byte_case, re_string_context_at):
23248         (re_node_set_alloc, re_node_set_init_1, re_node_set_init_2):
23249         (re_node_set_init_copy, re_node_set_add_intersect):
23250         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
23251         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
23252         (re_node_set_remove_at, re_dfa_add_node, calc_state_hash):
23253         (re_acquire_state, re_acquire_state_context, register_state):
23254         Likewise.
23255         * lib/regex.c (match_ctx_init, match_ctx_add_entry,
23256         search_cur_bkref_entry):
23257         (match_ctx_add_subtop, match_ctx_add_sublast, sift_ctx_init):
23258         (re_search_internal, re_search_2_stub, re_search_stub)
23259         (re_copy_regs, check_matching, check_halt_state_context, update_regs):
23260         (push_fail_stack, sift_states_iter_mb, build_sifted_states):
23261         (update_cur_sifted_state, check_dst_limits):
23262         (check_dst_limits_calc_pos_1, check_dst_limits_calc_pos):
23263         (check_subexp_limits, sift_states_bkref, merge_state_array):
23264         (check_subexp_matching_top, get_subexp, get_subexp_sub):
23265         (find_subexp_node, check_arrival, check_arrival_add_next_nodes):
23266         (check_arrival_expand_ecl, check_arrival_expand_ecl_sub):
23267         (expand_bkref_cache, check_node_accept_bytes):
23268         (group_nodes_into_DFAstates, check_node_accept, regexec, re_match):
23269         (re_search, re_match_2, re_search_2, prune_impossible_nodes):
23270         (acquire_init_state_context, check_halt_node_context):
23271         (proceed_next_node, pop_fail_stack, set_regs, free_fail_stack_return):
23272         (sift_states_backward, clean_state_log_if_needed):
23273         (sub_epsilon_src_nodes, add_epsilone_src_nodes, merge_state_with_log):
23274         (find_recover_state, transit_state_sb, transit_state_mb):
23275         (transit_state_bkref, build_trtable, match_ctx_clean):
23276         Likewise.
23277         * lib/regcomp.c (parse_dup_op): Add an extra test if Idx is unsigned,
23278         to work around an assumption that REG_MISSING is negative.
23279
23280         * lib/regcomp.c (re_comp) [defined _REGEX_RE_COMP || defined _LIBC]:
23281         (seek_collating_symbol_entry) [defined _LIBC]:
23282         (lookup_collation_sequence_value) [defined _LIBC]:
23283         (build_range_exp, build_collating_symbol) [defined _LIBC]:
23284         Use prototypes rather than old-style function definitions.
23285         * lib/regexec.c (re_exec) [defined _REGEX_RE_COMP || defined _LIBC]:
23286         (transit_state_sb) [0]:
23287         (find_collation_sequence_value) [defined _LIBC]: Likewise.
23288
23289         * lib/regexec.c (re_search_internal): Simplify update of rm_so and
23290         rm_eo.
23291
23292         * lib/regcomp.c (re_compile_fastmap_iter, init_dfa, init_word_char):
23293         (optimize_subexps, lower_subexp):
23294         Don't assume 1<<31 has defined behavior on hosts with 32-bit int,
23295         since the signed shift might overflow.  Use 1u<<31 instead.
23296         * lib/regex_internal.h (bitset_set, bitset_clear, bitset_contain):
23297         Likewise.
23298         * lib/regexec.c (check_dst_limits_calc_pos_1,
23299         check_subexp_matching_top): Likewise.
23300
23301         * lib/regcomp.c (optimize_subexps, lower_subexp):
23302         Use CHAR_BIT rather than 8, for clarity.
23303         * lib/regexec.c (check_dst_limits_calc_pos_1):
23304         (check_subexp_matching_top): Likewise.
23305         * lib/regcomp.c (init_dfa): Make table_size unsigned, so that we don't
23306         have to worry about portability issues when shifting it left.
23307         Remove no-longer-needed test for table_size > 0.
23308         * lib/regcomp.c (parse_sub_exp): Do not shift more bits than there are
23309         in a word, as the resulting behavior is undefined.
23310         * lib/regexec.c (check_dst_limits_calc_pos_1): Likewise;
23311         in one case, a <= should have been an <, and in another case the
23312         whole test was missing.
23313         * lib/regex_internal.h (BYTE_BITS): Remove.  All uses changed to
23314         the standard name CHAR_BIT.
23315         * lib/regexec.c (match_ctx_add_entry): Don't assume that ~0 == -1;
23316         this is not true on one's complement and signed-magnitude hosts.
23317
23318         * lib/regex_internal.h (re_sub_match_top_t): Remove unused member
23319         next_last_offset.
23320         (struct re_dfa_t): Remove unused member states_alloc.
23321         * lib/regcomp.c (init_dfa): Don't initialize unused members.
23322
23323 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
23324
23325         * m4/regex.m4 (gl_REGEX): Require AC_SYS_LARGEFILE, Define
23326         _REGEX_LARGE_OFFSETS).  Test for regoff_t/off_t bug in 64-bit
23327         and large-file glibc and in 32-bit large-file Solaris.
23328
23329 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
23330
23331         * lib/regex_internal.c (re_string_reconstruct): Don't assume buffer
23332         lengths fit in regoff_t; this isn't true if regoff_t is the same
23333         width as size_t.
23334         * lib/regex.c (re_search_internal): 5th arg is LAST_START
23335         (= START + RANGE) instead of RANGE.  This avoids overflow
23336         problems when regoff_t is the same width as size_t.
23337         All callers changed.
23338         (re_search_2_stub): Check for overflow when adding the
23339         sizes of the two strings.
23340         (re_search_stub): Check for overflow when adding START
23341         to RANGE; if it occurs, substitute the extreme value.
23342
23343 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
23344
23345         * config/srclist.txt: Add glibc bugs 1273, 1278-1282, 1284.
23346
23347 2005-08-31  Jim Meyering  <jim@meyering.net>
23348
23349         * lib/regcomp.c (search_duplicated_node): Make first pointer arg
23350         a pointer-to-const.
23351         * lib/regex_internal.c (create_ci_newstate, create_cd_newstate):
23352         (register_state): Likewise.
23353         * lib/regexec.c (search_cur_bkref_entry, check_dst_limits):
23354         (check_dst_limits_calc_pos_1, check_dst_limits_calc_pos):
23355         (group_nodes_into_DFAstates): Likewise.
23356
23357 2005-08-31  Jim Meyering  <jim@meyering.net>
23358
23359         * check-module: Add a FIXME comment.
23360
23361 2005-08-31  Eric Blake  <ebb9@byu.net>
23362
23363         * modules/unistd-safer (Files): Add unistd--.h.
23364         * modules/stdio-safer (Files): Add stdio--.h.
23365
23366 2005-08-31  Derek Price  <derek@ximbiot.com>
23367
23368         * lib/getdelim.c (getdelim): Return EOF on EOF.
23369         Reported by Larry Jones <lawrence.jones@ugs.com>.
23370
23371 2005-08-31  Bruno Haible  <bruno@clisp.org>
23372
23373         Avoid unnecessary diffs in the generated lib/Makefile.am.
23374         * gnulib-tool (func_emit_lib_Makefile_am): Don't write the cmd into
23375         the generated files.
23376         (func_import): Don't set cmd.
23377
23378 2005-08-31  Bruno Haible  <bruno@clisp.org>
23379
23380         * lib/strstr.c: Include <stddef.h>, for NULL.
23381         * lib/strcasestr.c: Likewise.
23382         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
23383
23384 2005-08-31  Bruno Haible  <bruno@clisp.org>
23385
23386         * gnulib-tool: New option --macro-prefix.
23387         (func_import): Use macro_prefix.
23388         (import): Handle option --macro-prefix.
23389
23390 2005-08-31  Bruno Haible  <bruno@clisp.org>
23391
23392         * gnulib-tool (import): Rename most ac_* variables to cached_*.
23393         Also use new variables cached_lgpl, cached_libtool.
23394
23395 2005-08-31  Bruno Haible  <bruno@clisp.org>
23396
23397         * gnulib-tool (func_import): Require AC_GNU_SOURCE etc. instead of
23398         always instantiating them.
23399
23400 2005-08-31  Bruno Haible  <bruno@clisp.org>
23401
23402         * gnulib-tool (func_import): Read the previous cached settings
23403         from gnulib-cache.m4 and gnulib-comp.m4. Remove files that were
23404         earlier added by gnulib but are now dropped. Warn when a gnulib file
23405         overwrites a non-gnulib file.
23406
23407 2005-08-31  Bruno Haible  <bruno@clisp.org>
23408
23409         * gnulib-tool (func_import): Generate two files gnulib-cache.m4 and
23410         gnulib-comp.m4 instead of a single gnulib.m4, to make it easy for
23411         projects that don't keep autogenerated files in CVS. Put into
23412         actioncmd only the specified modules, not the transitive closure.
23413
23414 2005-08-31  Bruno Haible  <bruno@clisp.org>
23415
23416         * gnulib-tool (func_import): Fix defaulting of $libname and $libtool.
23417         Create directories that shall be filled.
23418         (import): Don't look for gl_* macros in configure.ac. Recurse across
23419         all directories containing a gnulib-cache.m4 files, if meaningful.
23420
23421 2005-08-31  Bruno Haible  <bruno@clisp.org>
23422
23423         * gnulib-tool (func_import): Emit also a stub for gl_LIBTOOL.
23424         (import): Set seen_libtool when we see gl_LIBTOOL.
23425
23426 2005-08-31  Bruno Haible  <bruno@clisp.org>
23427
23428         * gnulib-tool (func_import): Also copy m4/gnulib-tool.m4. Omit
23429         declaration macro definitions from generated gnulib.m4.
23430
23431 2005-08-30  Oskar Liljeblad  <oskar@osk.mine.nu>
23432
23433         * lib/iconvme.h: Add prototype for iconv_alloc.
23434
23435 2005-08-29  Simon Josefsson  <jas@extundo.com>
23436
23437         * lib/iconvme.c: Fix errno.
23438
23439 2005-08-29  Bruno Haible  <bruno@clisp.org>
23440
23441         * gnulib-tool: Enclose all occurrences of $destdir in "...", so
23442         that it works when the directory contains spaces.
23443
23444 2005-08-29  Bruno Haible  <bruno@clisp.org>
23445
23446         * gnulib-tool (import): Avoid unnecessary spaces in $avoidlist.
23447
23448 2005-08-29  Bruno Haible  <bruno@clisp.org>
23449
23450         * gnulib-tool (func_import): Emit more comments into gnulib.m4.
23451         Emit more advice.
23452
23453 2005-08-29  Bruno Haible  <bruno@clisp.org>
23454         and Stepan Kasal  <kasal@ucw.cz>
23455
23456         * check-module: If more parameters are given, check each of them
23457         separately; add more exceptions, as noted by Jim Meyering.
23458         (check_module): New procedure.
23459         (%exempt_header): Now contains all exceptions.
23460
23461 2005-08-29  Ben Pfaff  <blp@cs.stanford.edu>
23462
23463         * modules/byteswap (Makefile.am): Fix rule to not assume GNU make.
23464
23465 2005-08-29  Oskar Liljeblad  <oskar@osk.mine.nu>
23466
23467         * lib/iconvme.c: Split iconv_string into iconv_alloc.
23468
23469 2005-08-28  Bruno Haible  <bruno@clisp.org>
23470
23471         * m4/gnulib-tool.m4: New file.
23472
23473 2005-08-27  Jim Meyering  <jim@meyering.net>
23474
23475         * modules/unistd-safer (Files): Add pipe-safer.c.
23476         * modules/fcntl-safer (Files): Add creat-safer.c.
23477
23478 2005-08-27  Jim Meyering  <jim@meyering.net>
23479
23480         * m4/stdlib-safer.m4: New file.  From coreutils.
23481         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Add stdio--.h.
23482         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Add creat-safer.c to the
23483         AC_LIBSOURCES list and arrange to compile it via AC_LIBOBJ.
23484         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Likewise, add pipe-safer.c.
23485         Add pipe-safer.c and unistd--.h to the AC_LIBSOURCES list.
23486
23487 2005-08-27  Jim Meyering  <jim@meyering.net>
23488
23489         * lib/fopen-safer.c: Merge minor changes from coreutils.
23490         * lib/dup-safer.c: Likewise.
23491         * lib/fd-safer.c: Likewise.
23492
23493         Merge from coreutils.
23494         * lib/stdio--.h: New file.
23495         * lib/stdlib--.h: New file.
23496         * lib/mkstemp-safer.c: New file.
23497
23498         GNU tar needs these.
23499         * lib/pipe-safer.c: New file.
23500         * lib/creat-safer.c: New file.
23501         * lib/fcntl--.h (creat): Define to creat_safer.
23502         * lib/fcntl-safer.h: Include <sys/types.h> and declare creat_safer.
23503         * lib/unistd--.h (pipe): Define to pipe_safer.
23504         * lib/unistd-safer.h: Declare pipe_safer.
23505
23506 2005-08-26  Simon Josefsson  <jas@extundo.com>
23507
23508         * lib/getpass.c: Use _WIN32 instead of WIN32, suggested by Bruno
23509         Haible <bruno@clisp.org>.
23510
23511 2005-08-26  Paul Eggert  <eggert@cs.ucla.edu>
23512
23513         * lib/regex_internal.h: Remove all references to
23514         RE_NO_INTERNAL_PROTOTYPES; no longer neeeded now that we assume C89
23515         or better.
23516         (bitset_not, bitset_merge, bitset_not_merge):
23517         (bitset_mask, re_string_allocate, re_string_construct):
23518         (re_string_reconstruct, re_string_destruct, re_string_elem_size_at):
23519         (re_string_char_size_at, re_string_wchar_at, re_string_peek_byte_case):
23520         (re_string_fetch_byte_case, re_node_set_alloc, re_node_set_init_1):
23521         (re_node_set_init_2, re_node_set_init_copy, re_node_set_add_intersect):
23522         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
23523         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
23524         (re_node_set_remove_at, re_dfa_add_node, re_acquire_state):
23525         (re_acquire_state_context):
23526         Remove unnecessary forward decls.
23527         (re_string_char_size_at, re_string_wchar_at, re_string_elem_size_at):
23528         Put __attribute at function definition,
23529         now that the function decl has been removed.
23530         * lib/regex_internal.c (re_string_peek_byte_case):
23531         (re_string_fetch_byte_case, re_node_set_compare, re_node_set_contains):
23532         Likewise.
23533
23534 2005-08-25  Stepan Kasal  <kasal@ucw.cz>
23535
23536         * m4/regex.m4: Add AC_PREREQ(2.50).
23537         (gl_REGEX): If --with-included-regex was given, skip the autodetection.
23538
23539 2005-08-25  Simon Josefsson  <jas@extundo.com>
23540
23541         * m4/getpass.m4: Check for termios.h, tcgetattr, tcsetattr, and
23542         __fsetlocking.
23543
23544 2005-08-25  Simon Josefsson  <jas@extundo.com>
23545
23546         * lib/getpass.c: Add WIN32 implementation.  Conditionalize use of
23547         termios.h, tcgetattr, tcsetattr and __fsetlocking.  Remove some
23548         GLIBC specific code.
23549
23550 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
23551
23552         Make regex safe for g++.  This fixes one real bug (an "err"
23553         that should have been "*err").  g++ problem reported by
23554         Sam Steingold.
23555         * lib/regex_internal.h (re_calloc): New macro, consistent with
23556         re_malloc etc.  All callers of calloc changed to use re_calloc.
23557         * lib/regex_internal.c (build_wcs_upper_buffer): Return reg_errcode_t,
23558         not int.  All callers changed.
23559         * lib/regcomp.c (re_compile_fastmap_iter): Don't use
23560         alloca (mb_cur_max); just use an array of size MB_LEN_MAX.
23561         * lib/regexec.c (push_fail_stack): Use re_realloc, not realloc.
23562         (find_recover_state): Change "err" to "*err"; this fixes what
23563         appears to be a real bug.
23564         (check_arrival_expand_ecl_sub): Be consistent about reg_errcode_t
23565         versus int.
23566
23567 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
23568
23569         * modules/regex (Depends-on): Add malloc, since the code
23570         assumes that !malloc(0) means failure.
23571
23572 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
23573
23574         * lib/regexec.c (set_regs): Don't alloca with an unbounded size.
23575
23576         alloca modernization/simplification for regex.
23577         * lib/regex.c: Remove portability cruft for alloca.  This no longer
23578         needs to be at the start of the file, and can be moved into
23579         regex_internal.h and simplified.
23580         * lib/regex_internal.h: Include <alloca.h>.
23581         (__libc_use_alloca) [!defined _LIBC]: New macro.
23582         * lib/regexec.c (build_trtable): Remove "#ifdef _LIBC", since the code
23583         now works outside glibc.
23584
23585 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
23586
23587         * config/srclist.txt: Add glibc bugs 1241, 1245.
23588
23589 2005-08-25  Jim Meyering  <jim@meyering.net>
23590
23591         * lib/open-safer.c: Include <config.h>.
23592         Otherwise, we'd lose LARGEFILE support in any file using
23593         e.g. "fcntl--.h"
23594
23595 2005-08-25  Bruno Haible  <bruno@clisp.org>
23596
23597         * m4/minmax.m4: Require autoconf 2.52.
23598         (gl_MINMAX_IN_HEADER): Add comments. Use m4_pushdef/m4_popdef instead
23599         of define/undefine. Use AS_TR_SH and AS_TR_CPP as more robust
23600         alternatives of translit over the alphabet.
23601         Based on a patch from Stepan Kasal <kasal@ucw.cz>.
23602
23603 2005-08-24  Simon Josefsson  <jas@extundo.com>
23604
23605         * tests/test-getpass.c: New file.
23606
23607 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
23608
23609         * m4/regex.m4 (gl_REGEX): Use POSIX-compliant spellings when testing
23610         for GNU regex features.
23611
23612 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
23613
23614         * lib/regcomp.c (regerror): 2nd arg is 'restrict', as per POSIX.
23615         * lib/regex.h (regerror): Likewise.
23616
23617         * lib/regex.c: Do not include <sys/types.h>, as POSIX no longer
23618         requires this.  (The code never needed it.)
23619
23620         * lib/regcomp.c, regex_internal.c, regex_internal.h, regexec.c:
23621         All uses of recently-renamed identifiers changed to use the new,
23622         POSIX-compliant names.  The code will build and run just fine
23623         without these changes, but it's better to eat our own dog food
23624         and use the standard-conforming names.
23625
23626         * lib/regex.h: Fix a multitude of POSIX name space violations.
23627         These changes have an effect only for programs that define
23628         _POSIX_C_SOURCE, _POSIX_SOURCE, or _XOPEN_SOURCE; they
23629         do not change anything for programs compiled in the normal way.
23630         Also, there is no effect on the ABI.
23631
23632         (_REGEX_SOURCE): New macro.
23633         Do not include <stddef.h> if _XOPEN_SOURCE and VMS are both
23634         defined and _GNU_SOURCE is not; this fixes a name space violation.
23635
23636         Rename the following macros to obey POSIX requirements.
23637         The old names are still visible as macros if _REGEX_SOURCE is defined.
23638         (REG_BACKSLASH_ESCAPE_IN_LISTS): renamed from
23639         RE_BACKSLASH_ESCAPE_IN_LISTS.
23640         (REG_BK_PLUS_QM): renamed from RE_BK_PLUS_QM.
23641         (REG_CHAR_CLASSES): renamed from RE_CHAR_CLASSES.
23642         (REG_CONTEXT_INDEP_ANCHORS): renamed from RE_CONTEXT_INDEP_ANCHORS.
23643         (REG_CONTEXT_INDEP_OPS): renamed from RE_CONTEXT_INDEP_OPS.
23644         (REG_CONTEXT_INVALID_OPS): renamed from RE_CONTEXT_INVALID_OPS.
23645         (REG_DOT_NEWLINE): renamed from RE_DOT_NEWLINE.
23646         (REG_DOT_NOT_NULL): renamed from RE_DOT_NOT_NULL.
23647         (REG_HAT_LISTS_NOT_NEWLINE): renamed from RE_HAT_LISTS_NOT_NEWLINE.
23648         (REG_INTERVALS): renamed from RE_INTERVALS.
23649         (REG_LIMITED_OPS): renamed from RE_LIMITED_OPS.
23650         (REG_NEWLINE_ALT): renamed from RE_NEWLINE_ALT.
23651         (REG_NO_BK_BRACES): renamed from RE_NO_BK_BRACES.
23652         (REG_NO_BK_PARENS): renamed from RE_NO_BK_PARENS.
23653         (REG_NO_BK_REFS): renamed from RE_NO_BK_REFS.
23654         (REG_NO_BK_VBAR): renamed from RE_NO_BK_VBAR.
23655         (REG_NO_EMPTY_RANGES): renamed from RE_NO_EMPTY_RANGES.
23656         (REG_UNMATCHED_RIGHT_PAREN_ORD): renamed from
23657         RE_UNMATCHED_RIGHT_PAREN_ORD.
23658         (REG_NO_POSIX_BACKTRACKING): renamed from RE_NO_POSIX_BACKTRACKING.
23659         (REG_NO_GNU_OPS): renamed from RE_NO_GNU_OPS.
23660         (REG_DEBUG): renamed from RE_DEBUG.
23661         (REG_INVALID_INTERVAL_ORD): renamed from RE_INVALID_INTERVAL_ORD.
23662         (REG_IGNORE_CASE): renamed from RE_ICASE.  This renaming is a bit
23663         unusual, since we can't clash with the POSIX REG_ICASE.
23664         (REG_CARET_ANCHORS_HERE): renamed from RE_CARET_ANCHORS_HERE.
23665         (REG_CONTEXT_INVALID_DUP): renamed from RE_CONTEXT_INVALID_DUP.
23666         (REG_NO_SUB): renamed from RE_NO_SUB.
23667         (REG_SYNTAX_EMACS): renamed from RE_SYNTAX_EMACS.
23668         (REG_SYNTAX_AWK): renamed from RE_SYNTAX_AWK.
23669         (REG_SYNTAX_GNU_AWK): renamed from RE_SYNTAX_GNU_AWK.
23670         (REG_SYNTAX_POSIX_AWK): renamed from RE_SYNTAX_POSIX_AWK.
23671         (REG_SYNTAX_GREP): renamed from RE_SYNTAX_GREP.
23672         (REG_SYNTAX_EGREP): renamed from RE_SYNTAX_EGREP.
23673         (REG_SYNTAX_POSIX_EGREP): renamed from RE_SYNTAX_POSIX_EGREP.
23674         (REG_SYNTAX_ED): renamed from RE_SYNTAX_ED.
23675         (REG_SYNTAX_SED): renamed from RE_SYNTAX_SED.
23676         (_REG_SYNTAX_POSIX_COMMON): renamed from _RE_SYNTAX_POSIX_COMMON.
23677         (REG_SYNTAX_POSIX_BASIC): renamed from RE_SYNTAX_POSIX_BASIC.
23678         (REG_SYNTAX_POSIX_MINIMAL_BASIC): renamed from
23679         RE_SYNTAX_POSIX_MINIMAL_BASIC.
23680         (REG_SYNTAX_POSIX_EXTENDED): renamed from RE_SYNTAX_POSIX_EXTENDED.
23681         (REG_SYNTAX_POSIX_MINIMAL_EXTENDED): renamed from
23682         RE_SYNTAX_POSIX_MINIMAL_EXTENDED.
23683         (REG_DUP_MAX): renamed from RE_DUP_MAX.  No need to undef it.
23684         (REG_UNALLOCATED): Renamed from REGS_UNALLOCATED.
23685         (REG_REALLOCATE): Renamed from REGS_REALLOCATE.
23686         (REG_FIXED): Renamed from REGS_FIXED.
23687         (REG_NREGS): Renamed from RE_NREGS.
23688
23689         (REG_ICASE, REG_NEWLINE, REG_NOSUB): Do not depend on the values
23690         of other REG_* macros, since POSIX says the user is allowed to
23691         #undef these macros selectively.
23692
23693         (reg_errcode_t): Update comment stating what other tables need
23694         to be consistent.
23695
23696         Rename the following enum values to obey POSIX requirements.
23697         The old names are still visible as macros.
23698         (_REG_ENOSYS): Renamed from REG_ENOSYS.  Define even if _XOPEN_SOURCE
23699         is not defined, since GNU is supposed to be a superset of POSIX as
23700         much as possible, and since we want reg_errcode_t to be a signed
23701         type for implementation consistency.
23702         (_REG_NOERROR): Renamed from REG_NOERROR.
23703         (_REG_NOMATCH): Renamed from REG_NOMATCH.
23704         (_REG_BADPAT): Renamed from REG_BADPAT.
23705         (_REG_ECOLLATE): Renamed from REG_ECOLLATE.
23706         (_REG_ECTYPE): Renamed from REG_ECTYPE.
23707         (_REG_EESCAPE): Renamed from REG_EESCAPE.
23708         (_REG_ESUBREG): Renamed from REG_ESUBREG.
23709         (_REG_EBRACK): Renamed from REG_EBRACK.
23710         (_REG_EPAREN): Renamed from REG_EPAREN.
23711         (_REG_EBRACE): Renamed from REG_EBRACE.
23712         (_REG_BADBR): Renamed from REG_BADBR.
23713         (_REG_ERANGE): Renamed from REG_ERANGE.
23714         (_REG_ESPACE): Renamed from REG_ESPACE.
23715         (_REG_BADRPT): Renamed from REG_BADRPT.
23716         (_REG_EEND): Renamed from REG_EEND.
23717         (_REG_ESIZE): Renamed from REG_ESIZE.
23718         (_REG_ERPAREN): Renamed from REG_ERPAREN.
23719         (REG_ENOSYS, REG_NOERROR, REG_NOMATCH, REG_BADPAT, REG_ECOLLATE):
23720         (REG_ECTYPE, REG_EESCAPE, REG_ESUBREG, REG_EBRACK, REG_EPAREN):
23721         (REG_EBRACE, REG_BADBR, REG_ERANGE, REG_ESPACE, REG_BADRPT, REG_EEND):
23722         (REG_ESIZE, REG_ERPAREN): Now macros, not enum constants.
23723
23724         (_REG_RE_NAME, _REG_RM_NAME): New macros.
23725         (REG_TRANSLATE_TYPE): Renamed from RE_TRANSLATE_TYPE.  All uses
23726         changed.  But support the old name if the new one is not defined
23727         and if _REGEX_SOURCE.
23728
23729         Change the following member names in struct re_pattern_buffer.
23730         The old names are still supported if !_REGEX_SOURCE.
23731         The new names are always supported, regardless of _REGEX_SOURCE.
23732         (re_buffer): Renamed from buffer.
23733         (re_allocated): Renamed from allocated.
23734         (re_used): Renamed from used.
23735         (re_syntax): Renamed from syntax.
23736         (re_fastmap): Renamed from fastmap.
23737         (re_translate): Renamed from translate.
23738         (re_can_be_null): Renamed from can_be_null.
23739         (re_regs_allocated): Renamed from regs_allocated.
23740         (re_fastmap_accurate): Renamed from fastmap_accurate.
23741         (re_no_sub): Renamed from no_sub.
23742         (re_not_bol): Renamed from not_bol.
23743         (re_not_eol): Renamed from not_eol.
23744         (re_newline_anchor): Renamed from newline_anchor.
23745
23746         Change the following member names in struct re_registers.
23747         The old names are still supported if !_REGEX_SOURCE.
23748         The new names are always supported, regardless of _REGEX_SOURCE.
23749         (rm_num_regs): Renamed from num_regs.
23750         (rm_start): Renamed from start.
23751         (rm_end): Renamed from end.
23752
23753         (re_set_syntax, re_compile_pattern, re_compile_fastmap):
23754         (re_search, re_search_2, re_match, re_match_2, re_set_registers):
23755         Prepend __ to parameter names.
23756
23757         Undo yesterday's changes.
23758
23759 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
23760
23761         * config/srclist.txt: Remove glibc bug 1233 and add 1236, which
23762         supersedes it. Add glibc bugs 1237, 1238, 1240.  Comment out
23763         lib/regex.c.
23764
23765 2005-08-24  Jim Meyering  <jim@meyering.net>
23766
23767         Sync from coreutils.
23768         * m4/fcntl-safer.m4: New file.
23769
23770         * m4/xgetcwd.m4: Use AC_LIBSOURCES and AC_LIBOBJ to indicate source
23771         and object files for this module.
23772
23773 2005-08-24  Jim Meyering  <jim@meyering.net>
23774
23775         Sync from coreutils.
23776         * lib/fcntl--.h, lib/fcntl-safer.h, lib/open-safer.c: New files.
23777
23778 2005-08-24  Jim Meyering  <jim@meyering.net>
23779
23780         * modules/xgetcwd (Makefile.am): Remove `lib_SOURCES += ...' line,
23781         now that xgetcwd.m4 requires xgetcwd.c and xgetcwd.h.
23782
23783 2005-08-24  Jim Meyering  <jim@meyering.net>
23784
23785         * modules/fcntl-safer: New module.
23786         * modules/fts (Depends-on): Add fcntl-safer.
23787         * MODULES.html.sh (File descriptor based Input/Output):
23788         Add fcntl-safer.
23789
23790 2005-08-24  Bruno Haible  <bruno@clisp.org>
23791
23792         Support for unit test modules.
23793         * modules/README: Mention tests modules.
23794         * modules/TEMPLATE-TESTS: New file.
23795         * gnulib-tool: New options --extract-tests-module, --with-tests and
23796         --tests-base (unused for the moment).
23797         (testsbase, inctests): New variables.
23798         (func_all_modules): Exclude TEMPLATE-TESTS and *-tests.
23799         (func_verify_module): Exclude TEMPLATE-TESTS.
23800         (func_verify_nontests_module, func_verify_tests_module): New functions.
23801         (func_get_dependencies): Add implicit dependency for tests modules.
23802         (func_get_tests_module): New function.
23803         (func_modules_transitive_closure): When --with-tests was specified,
23804         include the unit tests as well, unless explicitly avoided.
23805         (func_emit_lib_Makefile_am): Ignore the tests modules here.
23806         (func_emit_tests_Makefile_am): New function.
23807         (func_create_testdir): When --with-tests was specified, emit a
23808         tests/ directory.
23809         * MODULES.html.sh (Future developments): Update.
23810
23811 2005-08-24  Bruno Haible  <bruno@clisp.org>
23812
23813         * modules/tls-tests: New file.
23814         * tests/test-tls.c: New file, from GNU gettext.
23815
23816 2005-08-24  Bruno Haible  <bruno@clisp.org>
23817
23818         * modules/lock-tests: New file.
23819         * tests/test-lock.c: New file, from GNU gettext.
23820
23821 2005-08-24  Bruno Haible  <bruno@clisp.org>
23822
23823         * lib/lock.h: Add multiple inclusion guard.
23824         * lib/tls.h: Add multiple inclusion guard.
23825
23826 2005-08-24  Bruno Haible  <bruno@clisp.org>
23827
23828         * gnulib-tool: Add support for the --aux-dir option to
23829         --create-testdir, --create-megatestdir, --test, --megatest.
23830         (func_create_testdir, func_create_megatestdir): Optionally emit a
23831         AC_CONFIG_AUX_DIR directive.
23832         (create-testdir, create-megatestdir, test, megatest): Provide a
23833         default value for $auxdir.
23834
23835 2005-08-24  Bruno Haible  <bruno@clisp.org>
23836
23837         * gnulib-tool (import): Use compound statement instead of subshell
23838         where possible.
23839
23840 2005-08-24  Bruno Haible  <bruno@clisp.org>
23841
23842         * gnulib-tool (import): Change --aux-dir default to "build-aux".
23843
23844 2005-08-24  Bruno Haible  <bruno@clisp.org>
23845
23846         * gnulib-tool (func_version): Update.
23847
23848 2005-08-24  Bruno Haible  <bruno@clisp.org>
23849
23850         * gnulib-tool (func_import, func_create_testdir,
23851         func_create_megatestdir): Quote all autoconf macro arguments.
23852
23853 2005-08-24  Bruno Haible  <bruno@clisp.org>
23854
23855         * gnulib-tool (func_create_megatestdir): Call autoreconf without the
23856         option --force, because --force causes the aclocal.m4 of each
23857         subdirectory to be newer than the corresponding config.h.in.
23858
23859 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
23860
23861         * m4/regex.m4 (gl_INCLUDED_REGEX): Remove; no longer used.
23862         All contents moved to gl_REGEX.
23863         (gl_REGEX): Don't bother checking whether lib/regex.c exists;
23864         assume that it does.
23865
23866 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
23867
23868         * lib/regex.h (REG_NOSYS)
23869         [!defined _XOPEN_SOURCE && 200112L <= _POSIX_C_SOURCE]:
23870         Define, since POSIX requires it as of 2001.
23871         (_REG_ENOSYS)
23872         [! (defined _XOPEN_SOURCE || 200112L <= _POSIX_C_SOURCE)]:
23873         New private symbol, used to keep the enum signed in all cases.
23874         * lib/regex.h (RE_NO_EMPTY_RANGES): Fix doc bug reported by James
23875         Youngman in
23876         <http://lists.gnu.org/archive/html/bug-gnulib/2005-07/msg00132.html>.
23877
23878         * lib/regex_internal.c (re_string_skip_chars, register_state):
23879         (calc_state_hash):
23880         Remove forward decls; no longer needed now that we use prototypes.
23881         * lib/regexec.c (acquire_init_state_context, check_halt_node_context):
23882         (proceed_next_node, pop_fail_stack, sub_epsilon_src_nodes):
23883         (clean_state_log_if_needed): Likewise.
23884
23885 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
23886
23887         * config/srclist.txt: Add glibc bugs 1231-1233.
23888
23889 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
23890
23891         Fix problems reported by Sam Steingold in
23892         <http://lists.gnu.org/archive/html/bug-gnulib/2005-08/msg00007.html>.
23893         * lib/regexec.c (sift_states_bkref): Fix portability bug: the code
23894         assumed that reg_errcode_t is a signed type, which is not
23895         necessarily true if _XOPEN_SOURCE is not defined.
23896         * lib/regex_internal.c (calc_state_hash): Put 'inline' before type,
23897         since some compilers warn about it otherwise.
23898
23899 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
23900
23901         * lib/regcomp.c (create_initial_state): Remove duplicate decl.
23902         (init_word_char, create_initial_state, duplicate_node_closure):
23903         (fetch_token, peek_token_bracket, build_range_exp):
23904         (build_collating_symbol): Remove forward decls; no longer needed
23905         now that we use prototypes.
23906
23907         * lib/regcomp.c:
23908         (re_compile_pattern, re_set_syntax, re_compile_fastmap):
23909         (re_compile_fastmap_iter, regcomp, regerror, regfree):
23910         (re_compile_internal, init_dfa, init_word_char, free_workarea_compile):
23911         (create_initial_state, optimize_utf8, analyze, postorder, preorder):
23912         (optimize_subexps, lower_subexps, lower_subexp, calc_first, calc_next):
23913         (link_nfa_nodes, duplicate_node_closure, search_duplicated_node):
23914         (duplicate_node, calc_inveclosure, calc_eclosure, calc_eclosure_iter):
23915         (fetch_token, peek_token, peek_token_bracket, parse, parse_reg_exp):
23916         (parse_branch, parse_expression, parse_sub_exp, parse_dup_op):
23917         (build_range_exp, build_collating_symbol, parse_bracket_exp):
23918         (parse_bracket_element, parse_bracket_symbol, build_equiv_class):
23919         (build_charclass, build_charclass_op, fetch_number, create_tree):
23920         (create_token_tree, mark_opt_subexp, duplicate_tree):
23921         Use prototypes rather than old-style definitions.
23922
23923         * lib/regex_internal.c:
23924         (re_string_allocate, re_string_construct, re_string_realloc_buffers):
23925         (re_string_construct_common, build_wcs_buffer, build_wcs_upper_buffer):
23926         (re_string_skip_chars, build_upper_buffer, re_string_translate_buffer):
23927         (re_string_reconstruct, re_string_peek_byte_case):
23928         (re_string_fetch_byte_case, re_string_destruct, re_string_context_at):
23929         (re_node_set_alloc, re_node_set_init_1, re_node_set_init_2):
23930         (re_node_set_init_copy, re_node_set_add_intersect):
23931         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
23932         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
23933         (re_node_set_remove_at, re_dfa_add_node, calc_state_hash):
23934         (re_acquire_state, re_acquire_state_context, register_state):
23935         (create_ci_newstate, create_cd_newstate, free_state):
23936         Likewise.
23937         * lib/regexec.c (regexec, re_match, re_search, re_match_2,
23938         re_search_2):
23939         (re_search_2_stub, re_search_stub, re_copy_regs, re_set_registers):
23940         (re_search_internal, prune_impossible_nodes):
23941         (acquire_init_state_context, check_matching, static):
23942         (check_halt_node_context, check_halt_state_context, proceed_next_node):
23943         (push_fail_stack, pop_fail_stack, set_regs, free_fail_stack_return):
23944         (update_regs, sift_states_backward, build_sifted_states):
23945         (clean_state_log_if_needed, merge_state_array):
23946         (update_cur_sifted_state, add_epsilon_src_nodes):
23947         (sub_epsilon_src_nodes, check_dst_limits, check_dst_limits_calc_pos_1):
23948         (check_dst_limits_calc_pos, check_subexp_limits, sift_states_bkref):
23949         (sift_states_iter_mb, transit_state, merge_state_with_log, static):
23950         (find_recover_state, check_subexp_matching_top, transit_state_mb):
23951         (transit_state_bkref, get_subexp, get_subexp_sub, find_subexp_node):
23952         (check_arrival, check_arrival_add_next_nodes):
23953         (check_arrival_expand_ecl, check_arrival_expand_ecl_sub):
23954         (expand_bkref_cache, build_trtable, group_nodes_into_DFAstates):
23955         (check_node_accept_bytes, check_node_accept, extend_buffers):
23956         (match_ctx_init, match_ctx_clean, match_ctx_free, match_ctx_add_entry):
23957         (search_cur_bkref_entry, match_ctx_add_subtop, match_ctx_add_sublast):
23958         (sift_ctx_init):
23959         Likewise.
23960
23961         * lib/regex_internal.h:
23962         (re_string_allocate, re_string_construct, re_string_reconstruct):
23963         (re_string_realloc_buffers, build_wcs_buffer, build_wcs_upper_buffer):
23964         (build_upper_buffer, re_string_translate_buffer, re_string_destruct):
23965         (re_string_elem_size_at, re_string_char_size_at, re_string_wchar_at):
23966         (re_string_context_at, re_string_peek_byte_case):
23967         (re_string_fetch_byte_case): Declare even if RE_NO_INTERNAL_PROTOTYPES
23968         is defined, since we now use prototypes always.
23969
23970         * lib/regex.h (_RE_ARGS): Remove.  No longer needed, since we assume
23971         C89 or better.  All uses removed.
23972
23973 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
23974
23975         * config/srclist.txt: Add glibc bugs 1220-1227.
23976
23977 2005-08-20  Jim Meyering  <jim@meyering.net>
23978
23979         * lib/regexec.c (regexec, re_search_stub) [!_LIBC]: Omit declaration
23980         of unused local, dfa.
23981
23982 2005-08-20  Bruno Haible  <bruno@clisp.org>
23983
23984         * m4/regex.m4 (gl_PREREQ_REGEX): Require AC_GNU_SOURCE.
23985
23986 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
23987
23988         * lib/regex_internal.c (re_string_realloc_buffers, re_node_set_insert):
23989         (re_node_set_insert_last, re_dfa_add_node):
23990         Rename local variables to avoid GCC shadowing warnings.
23991
23992 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
23993
23994         * lib/regex_internal.c (re_acquire_state, re_acquire_state_context)
23995         [defined lint]: Suppress bogus uninitialized-variable warnings.
23996
23997         * lib/regcomp.c (duplicate_node): Return new index, not an error code,
23998         and let the caller return REG_ESPACE if out of space.  This
23999         removes an uninitialied-variable warning with GCC 4.0.1, and also
24000         avoids taking the address of a local variable.  All callers
24001         changed.
24002
24003 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
24004
24005         * config/srclist.txt: Comment out $LIBCSRC/posix/regex_internal.c,
24006         $LIBCSRC/posix/regexec.c.
24007         Add glibc bug 1217 for regcomp.c.
24008
24009 2005-08-19  Jim Meyering  <jim@meyering.net>
24010
24011         * lib/regexec.c (proceed_next_node): Redo local variables to
24012         avoid GCC shadowing warnings.
24013
24014 2005-08-18  Bruno Haible  <bruno@clisp.org>
24015
24016         * lib/strstr.c (strstr): Fix return value in multibyte case.
24017         * lib/strcasestr.c (strcasestr): Likewise.
24018
24019 2005-08-17  Paul Eggert  <eggert@cs.ucla.edu>
24020
24021         * lib/regex.h: Remove useless space-before-tab.  From coreutils.
24022
24023 2005-08-17  Jim Meyering  <jim@meyering.net>
24024
24025         Make the %s format (seconds since the epoch) work for a negative
24026         number and when used with a zero-padded field width, e.g. %015s.
24027
24028         * lib/strftime.c (my_strftime): Move the `do_number_sign_and_padding'
24029         label so that it precedes the code to set `digits'.  Otherwise,
24030         %0Ns wouldn't work.  Before this change, `date -d @-22 +%05s' would
24031         print `00-22'.  Now, it prints `-0022', as it should.
24032
24033 2005-08-17  Bruno Haible  <bruno@clisp.org>
24034
24035         * modules/strstr (Files): Add m4/mbrtowc.m4.
24036         (Depends-on): Add mbuiter.
24037
24038 2005-08-17  Bruno Haible  <bruno@clisp.org>
24039
24040         * modules/strcasestr: New file.
24041         * MODULES.html.sh (String handling, based on ANSI C 89): Add
24042         strcasestr.
24043
24044 2005-08-17  Bruno Haible  <bruno@clisp.org>
24045
24046         * modules/strcase (Depends-on): Add mbuiter. Remove strnlen1, mbchar.
24047
24048 2005-08-17  Bruno Haible  <bruno@clisp.org>
24049
24050         * modules/mbuiter: New file.
24051         * MODULES.html.sh (Extended multibyte and wide character utilities):
24052         Add mbuiter.
24053
24054 2005-08-17  Bruno Haible  <bruno@clisp.org>
24055
24056         * m4/strstr.m4 (gl_FUNC_STRSTR): Use the replacement function always.
24057         (gl_PREREQ_STRSTR): Use gl_FUNC_MBRTOWC.
24058
24059 2005-08-17  Bruno Haible  <bruno@clisp.org>
24060
24061         * m4/strcasestr.m4: New file.
24062
24063 2005-08-17  Bruno Haible  <bruno@clisp.org>
24064
24065         * lib/strstr.h: Ignore HAVE_STRSTR, always declare the gnulib function.
24066         * lib/strstr.c: Completely rewritten, with multibyte locale support.
24067
24068 2005-08-17  Bruno Haible  <bruno@clisp.org>
24069
24070         * lib/strcasestr.h: New file.
24071         * lib/strcasestr.c: New file.
24072
24073 2005-08-17  Bruno Haible  <bruno@clisp.org>
24074
24075         * lib/strcasecmp.c: Use mbuiter.h.
24076
24077 2005-08-17  Bruno Haible  <bruno@clisp.org>
24078
24079         * lib/mbuiter.h: New file.
24080
24081 2005-08-16  Paul Eggert  <eggert@cs.ucla.edu>
24082
24083         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Do not override the results
24084         of gl_GETOPT_SUBSTITUTE.  That way, if both gl_GETOPT_SUBSTITUTE
24085         and gl_GETOPT are both invoked via different paths (as happens
24086         with GNU tar CVS because it uses both argp and getopt), the former
24087         wins.
24088
24089 2005-08-16  Bruno Haible  <bruno@clisp.org>
24090
24091         * modules/tls: New file.
24092         * MODULES.html.sh (Multithreading): Add tls.
24093
24094 2005-08-16  Bruno Haible  <bruno@clisp.org>
24095
24096         * modules/strnlen1: New file.
24097         * MODULES.html.sh (String handling): Add strnlen1.
24098
24099 2005-08-16  Bruno Haible  <bruno@clisp.org>
24100
24101         * modules/strcase (Files): Add m4/mbrtowc.m4.
24102         (Depends-on): Add strnlen1, mbchar.
24103
24104 2005-08-16  Bruno Haible  <bruno@clisp.org>
24105
24106         * modules/mbiter: New file.
24107         * MODULES.html.sh (Extended multibyte and wide character utilities):
24108         Add mbiter.
24109
24110 2005-08-16  Bruno Haible  <bruno@clisp.org>
24111
24112         * modules/mbfile: New file.
24113         * MODULES.html.sh (Extended multibyte and wide character utilities):
24114         Add mbfile.
24115
24116 2005-08-16  Bruno Haible  <bruno@clisp.org>
24117
24118         * modules/mbchar: New file.
24119         * MODULES.html.sh (Extended multibyte and wide character utilities):
24120         New section.
24121
24122 2005-08-16  Bruno Haible  <bruno@clisp.org>
24123
24124         * m4/tls.m4: New file, from GNU gettext.
24125
24126 2005-08-16  Bruno Haible  <bruno@clisp.org>
24127
24128         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Use the replacement function
24129         always.
24130         (gl_PREREQ_STRCASECMP): Use gl_FUNC_MBRTOWC.
24131
24132 2005-08-16  Bruno Haible  <bruno@clisp.org>
24133
24134         * m4/mbiter.m4: New file.
24135
24136 2005-08-16  Bruno Haible  <bruno@clisp.org>
24137
24138         * m4/mbfile.m4: New file.
24139
24140 2005-08-16  Bruno Haible  <bruno@clisp.org>
24141
24142         * m4/mbchar.m4: New file.
24143
24144 2005-08-16  Bruno Haible  <bruno@clisp.org>
24145
24146         * lib/tls.h: New file, from GNU gettext.
24147         * lib/tls.c: New file, from GNU gettext.
24148
24149 2005-08-16  Bruno Haible  <bruno@clisp.org>
24150
24151         * lib/strnlen1.h: New file.
24152         * lib/strnlen1.c: New file.
24153
24154 2005-08-16  Bruno Haible  <bruno@clisp.org>
24155
24156         * lib/strcasecmp.c (struct mbiter_multi): Remove at_end field.
24157         (mbi_init): Update.
24158         (mbi_avail, mbi_advance): Let the iteration end before the terminating
24159         NUL byte, not after it.
24160
24161 2005-08-16  Bruno Haible  <bruno@clisp.org>
24162
24163         * lib/strcase.h (strcasecmp): Add note in comments.
24164         * lib/strncasecmp.c: Use code from strcasecmp.c.
24165         * lib/strcasecmp.c: Use mbchar module. Define private mbiter variant.
24166         (strcasecmp): Work correctly in multibyte locales.
24167
24168 2005-08-16  Bruno Haible  <bruno@clisp.org>
24169
24170         * lib/mbiter.h: New file.
24171
24172 2005-08-16  Bruno Haible  <bruno@clisp.org>
24173
24174         * lib/mbfile.h: New file.
24175
24176 2005-08-16  Bruno Haible  <bruno@clisp.org>
24177
24178         * lib/mbchar.h: New file.
24179         * lib/mbchar.c: New file.
24180
24181 2005-08-16  Bruno Haible  <bruno@clisp.org>
24182
24183         * lib/mbchar.h (mb_cmp, mb_casecmp): Order the invalid characters after
24184         the valid ones. Makes the comparison operations transitive:
24185         cmp (a, b) < 0 && cmp (b, c) < 0 ==> cmp (a, c) < 0.
24186         * lib/strcasecmp.c (strcasecmp): Use mb_casecmp.
24187
24188 2005-08-15  Simon Josefsson  <jas@extundo.com>
24189
24190         * modules/ssize_t (License): Change to 'unlimited'.
24191
24192         * gnulib-tool (sed_extract_prog): Recognize 'unlimited' license.
24193
24194 2005-08-15  Paul Eggert  <eggert@cs.ucla.edu>
24195
24196         * config/srclist.txt: Comment out $LIBCSRC/posix/regex.h.
24197         Add comments for each pending glibc patch.
24198
24199 2005-08-15  Bruno Haible  <bruno@clisp.org>
24200
24201         * lib/regex.h (__restrict_arr): Don't define to __restrict if
24202         __cplusplus is defined.
24203
24204 2005-08-14  Jim Meyering  <jim@meyering.net>
24205
24206         Sync from coreutils.
24207
24208         * lib/fts-cycle.c (setup_dir, enter_dir, leave_dir, free_dir):
24209         Use the hash-table-based cycle-detection code not just when
24210         FTS_TIGHT_CYCLE_CHECK if specified, but also with FTS_LOGICAL.
24211         Reported by James Youngman in
24212         <http://lists.gnu.org/archive/html/bug-gnulib/2005-08/msg00011.html>.
24213         * lib/fts_.h: Mention that with FTS_LOGICAL, we use
24214         FTS_TIGHT_CYCLE_CHECK.
24215         * lib/fts.c (fts_cross_check) [FTS_DEBUG]:
24216         s/active_dir_ht/fts_cycle.ht/. This lets us compile with -DFTS_DEBUG,
24217         once again.
24218         * lib/fts.c [! _LIBC]: Include "lstat.h" rather than rolling our own.
24219         * lib/fts.c (fd_safer): Remove decl.
24220         Include fcntl--.h rather than unistd-safer.h
24221         (fts_safe_changedir): Don't call fd_safer; no longer needed
24222         now that we include fcntl--.h.
24223
24224 2005-08-12  Simon Josefsson  <jas@extundo.com>
24225
24226         * modules/getndelim2: Use ssize_t module.
24227         * modules/getnline: Likewise.
24228         * modules/safe-read: Likewise.
24229         * modules/xreadlink: Likewise.
24230
24231         * modules/ssize_t: New file.
24232
24233 2005-08-12  Simon Josefsson  <jas@extundo.com>
24234
24235         * m4/readline.m4: Look for termcap, curses or ncurses if required.
24236
24237 2005-08-12  Simon Josefsson  <jas@extundo.com>
24238
24239         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
24240         ssize_t.
24241
24242 2005-08-12  Simon Josefsson  <jas@extundo.com>
24243
24244         * MODULES.html.sh (Extra functions based on ANSI C 89: Misc): Add
24245         readline, getdelim and check_version.
24246         (Support for systems lacking ISO C 99: Sizes of integer types):
24247         Add size_max.
24248
24249 2005-08-12  Bruno Haible  <bruno@clisp.org>
24250
24251         * m4/readline.m4 (gl_FUNC_READLINE): Look for ncurses first.
24252
24253 2005-08-11  Simon Josefsson  <jas@extundo.com>
24254
24255         * modules/readline: New file.
24256
24257         * modules/strnlen (Files): Add strnlen.h.
24258
24259 2005-08-11  Simon Josefsson  <jas@extundo.com>
24260
24261         * m4/readline.m4: New file.
24262
24263 2005-08-11  Simon Josefsson  <jas@extundo.com>
24264
24265         * lib/readline.h, readline.c: New file.
24266
24267 2005-08-11  Simon Josefsson  <jas@extundo.com>
24268
24269         * doc/gnulib.texi (Initial import, Finishing touches): Mention
24270         gl_AVOID.
24271
24272 2005-08-11  Bruno Haible  <bruno@clisp.org>
24273
24274         * lib/strnlen.h (strnlen): Change parameter name to match comment.
24275
24276 2005-08-10  Stepan Kasal  <kasal@ucw.cz>
24277
24278         * m4/onceonly_2_57.m4: Really require Autoconf 2.57.
24279
24280 2005-08-10  Simon Josefsson  <jas@extundo.com>
24281
24282         * tests/test-iconvme.c: New file.
24283
24284 2005-08-10  Simon Josefsson  <jas@extundo.com>
24285
24286         * m4/strnlen.m4: New file.
24287
24288         * m4/strndup.m4: Don't check for strnlen declaration, done in
24289         strnlen.m4.
24290
24291 2005-08-10  Simon Josefsson  <jas@extundo.com>
24292
24293         * lib/strndup.c: Use strnlen.h.
24294
24295         * lib/strnlen.h: New file.
24296
24297 2005-08-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
24298
24299         * README: Typos.
24300
24301 2005-08-02  Simon Josefsson  <jas@extundo.com>
24302
24303         * modules/readline: New file.
24304
24305 2005-08-02  Simon Josefsson  <jas@extundo.com>
24306
24307         * modules/getdelim: New file.
24308
24309         * modules/getline: Rewrite, don't use getndelim2.
24310
24311 2005-08-02  Simon Josefsson  <jas@extundo.com>
24312
24313         * m4/getline.m4: Separate out getdelim stuff into separate module.
24314
24315         * m4/getdelim.m4: New file.
24316
24317 2005-08-02  Simon Josefsson  <jas@extundo.com>
24318
24319         * lib/getline.h, getline.c: Rewrite.
24320
24321         * lib/getdelim.h, lib/getdelim.c: New files, ported from glibc.
24322
24323 2005-07-31  Bruno Haible  <bruno@clisp.org>
24324
24325         * lib/lock.h (gl_lock_initializer): New macro.
24326         (gl_lock_define_initialized): Use it.
24327         (gl_rwlock_initializer): New macro.
24328         (gl_rwlock_define_initialized): Use it.
24329         (gl_recursive_lock_initializer): New macro.
24330         (gl_recursive_lock_define_initialized): Use it.
24331
24332 2005-07-30  Karl Berry  <karl@gnu.org>
24333
24334         * doc/gnulib.texi (Initial import): mention -I$(top_builddir)/lib.
24335         Report from Ben Pfaff, regarding getopt.
24336
24337 2005-07-26  Paul Eggert  <eggert@cs.ucla.edu>
24338
24339         Add support to getopt for Emacs, which doesn't use LIBOBJS in the
24340         normal way.
24341         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE_HEADER): New macro.
24342         (gl_GETOPT_SUBSTITUTE): Use it.  Invoke gl_PREREQ_GETOPT.
24343         (gl_GETOPT_IFELSE, gl_GETOPT_CHECK_HEADERS): New macros.
24344         (gl_GETOPT): Use the new macros.  Most of the implementation
24345         is moved to the new macros.  This is for programs like Emacs
24346         that don't want all the functionality of gl_GETOPT.
24347
24348 2005-07-26  Bruno Haible  <bruno@clisp.org>
24349
24350         * m4/lock.m4: Update from GNU gettext.
24351
24352 2005-07-26  Bruno Haible  <bruno@clisp.org>
24353
24354         * lib/lock.h: Update from GNU gettext.
24355         * lib/lock.c: Update from GNU gettext.
24356
24357 2005-07-25  Paul Eggert  <eggert@cs.ucla.edu>
24358
24359         * m4/regex.m4 (gl_INCLUDED_REGEX): Use AC_RUN_IFELSE instead of the
24360         obsolescent AC_TRY_RUN.  Include the default includes files, for
24361         'exit'.
24362
24363 2005-07-24  Bruno Haible  <bruno@clisp.org>
24364
24365         * modules/visibility: New file.
24366         * MODULES.html.sh (Misc): Add visibility.
24367
24368 2005-07-24  Bruno Haible  <bruno@clisp.org>
24369
24370         * m4/visibility.m4: New file.
24371
24372 2005-07-24  Bruno Haible  <bruno@clisp.org>
24373
24374         * doc/visibility.texi: New file.
24375
24376 2005-07-22  Bruno Haible  <bruno@clisp.org>
24377
24378         * modules/alloca-opt (Makefile.am): Remove explicit dependency on
24379         $(ALLOCA_H), redundant through BUILT_SOURCES.
24380         * modules/argz (Makefile.am): Remove explicit dependency on $(ARGZ_H),
24381         redundant through BUILT_SOURCES.
24382         * modules/byteswap (Makefile.am): Remove explicit dependency on
24383         $(BYTESWAP_H), redundant through BUILT_SOURCES.
24384         * modules/fnmatch (Makefile.am): Remove explicit dependency on
24385         $(FNMATCH_H), redundant through BUILT_SOURCES.
24386         * modules/getopt (Makefile.am): Remove explicit dependency on
24387         $(GETOPT_H), redundant through BUILT_SOURCES.
24388         * modules/glob (Makefile.am): Remove explicit dependency on $(GLOB_H),
24389         redundant through BUILT_SOURCES.
24390         * modules/poll (Makefile.am): Remove explicit dependency on $(POLL_H),
24391         redundant through BUILT_SOURCES.
24392         * modules/stdbool (Makefile.am): Remove explicit dependency on
24393         $(STDBOOL_H), redundant through BUILT_SOURCES.
24394         * modules/stdint (Makefile.am): Remove explicit dependency on
24395         $(STDINT_H), redundant through BUILT_SOURCES.
24396         * modules/sysexits (Makefile.am): Add $(SYSEXITS_H) to BUILT_SOURCES.
24397         Remove explicit dependency on $(SYSEXITS_H).
24398         Reported by Alexandre Duret-Lutz <adl@src.lip6.fr>.
24399
24400 2005-07-18  Simon Josefsson  <jas@extundo.com>
24401
24402         * lib/check-version.c (check_version): Accept identical versions too.
24403
24404 2005-07-18  Bruno Haible  <bruno@clisp.org>
24405
24406         * modules/lock: New file.
24407         * MODULES.html.sh (Multithreading): New section.
24408
24409 2005-07-18  Bruno Haible  <bruno@clisp.org>
24410
24411         * m4/lock.m4: New file, from GNU gettext.
24412
24413 2005-07-18  Bruno Haible  <bruno@clisp.org>
24414
24415         * lib/lock.h: New file, from GNU gettext.
24416         * lib/lock.c: New file, from GNU gettext.
24417
24418 2005-07-18  Bruno Haible  <bruno@clisp.org>
24419
24420         * lib/lock.h (gl_once_t): New type.
24421         (gl_once_define, gl_once): New macros.
24422         * lib/lock.c (fresh_once): New variable.
24423         (glthread_once, glthread_once_call, glthread_once_singlethreaded): New
24424         functions.
24425
24426 2005-07-16  Simon Josefsson  <jas@extundo.com>
24427
24428         * doc/gnulib.texi (Library version handling): Add ELF symbol collision
24429         workaround, suggested by Bruno.
24430
24431 2005-07-15  Paul Eggert  <eggert@cs.ucla.edu>
24432
24433         * modules/xalloc (Depends-on): Add xalloc-die.
24434         * modules/xvasprintf (Depends-on): Add xalloc-die.
24435
24436 2005-07-15  Paul Eggert  <eggert@cs.ucla.edu>
24437
24438         * lib/quotearg.c: Add translator comment suggested by Bruno Haible,
24439         with a minor change.
24440
24441 2005-07-15  Bruno Haible  <bruno@clisp.org>
24442
24443         * m4/poll.m4 (gl_FUNC_POLL): Check against MacOS X 10.4 poll() bug.
24444         When using lib/poll.c, define poll as rpl_poll.
24445
24446 2005-07-14  Paul Eggert  <eggert@cs.ucla.edu>
24447
24448         * modules/argp (Depends-on): Remove unlocked-io.
24449
24450 2005-07-14  Derek Price  <derek@ximbiot.com>
24451
24452         * m4/glob.m4 (gl_GLOB): Cache glob interface check result.  Add check
24453         for glob symlink bug.
24454
24455 2005-07-14  Bruno Haible  <bruno@clisp.org>
24456
24457         * m4/argp.m4 (gl_ARGP): Remove invocation of gl_FUNC_GLIBC_UNLOCKED_IO.
24458         Instead, test for *_unlocked function declarations directly.
24459
24460 2005-07-11  Simon Josefsson  <jas@extundo.com>
24461
24462         * modules/size_max: New file.
24463
24464         * modules/xsize: Depend on size_max module for size_max.m4.
24465
24466 2005-07-11  Simon Josefsson  <jas@extundo.com>
24467
24468         * lib/size_max.h: New file.
24469
24470 2005-07-11  Paul Eggert  <eggert@cs.ucla.edu>
24471
24472         * lib/version-etc-fsf.c (version_etc_copyright): Parameterize the
24473         copyright symbol and the year.
24474         * lib/version-etc.c (COPYRIGHT_YEAR): New constant.
24475         (version_etc_va): Use parameterized copyright notice.
24476         Reword to conform to the current GNU coding standards.
24477
24478 2005-07-11  Karl Berry  <karl@gnu.org>
24479
24480         * doc/gnulib.texi (Quoting): new node.
24481         (Initial import): more info, from Patrice.
24482
24483 2005-07-11  Bruno Haible  <bruno@clisp.org>
24484
24485         * gnulib-tool (func_usage): Document option --avoid.
24486         (Command line options): Handle --avoid.
24487         (func_acceptable): New function.
24488         (func_modules_transitive_closure): Use it.
24489
24490 2005-07-11  Bruno Haible  <bruno@clisp.org>
24491
24492         * MODULES.html.sh: Use shortcut URLs to the www.opengroup.org site.
24493         Reported by Jim Meyering.
24494
24495 2005-07-10  Bruno Haible  <bruno@clisp.org>
24496
24497         * m4/size_max.m4 (gl_SIZE_MAX): Cast ~(size_t)0 back to size_t.
24498         Needed when size_t is smaller than 'unsigned int'.
24499         Reported by Paul Eggert.
24500
24501 2005-07-09  Sergey Poznyakoff  <gray@gnu.org.ua>
24502
24503         * modules/argp (Depends-on): Add unlocked-io
24504
24505 2005-07-09  Sergey Poznyakoff  <gray@gnu.org.ua>
24506
24507         * lib/argp-namefrob.h: Include unlocked-io.h. Removed unnecessary
24508         block of defines.
24509
24510 2005-07-08  Paul Eggert  <eggert@cs.ucla.edu>
24511
24512         * config/srclist.txt: Comment out regcomp.c, since we have a porting
24513         fix now.
24514
24515 2005-07-08  Eric Blake  <ebb9@byu.net>  (tiny change)
24516         and Paul Eggert  <eggert@cs.ucla.edu>
24517
24518         * lib/regcomp.c (init_dfa, build_range_exp): Store __btowc value
24519         in wint_t, not wchar_t.  Remove now-unnecessary cast.
24520
24521 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
24522
24523         * modules/regex (Files): Add lib/regex_internal.c,
24524         lib/regex_internal.h, lib/regexec.c, lib/regcomp.c, m4/codeset.m4.
24525         (Depends-on): Add extensions.
24526         (Makefile.am): Remove lib_SOURCES; now done by m4 code.
24527
24528 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
24529
24530         * m4/backupfile.m4 (gl_BACKUPFILE): Use AC_CHECK_FUNCS_ONCE on
24531         pathconf.
24532         * m4/same.m4 (gl_SAME): Likewise.
24533         Require AC_SYS_LONG_FILE_NAMES; bug reported by Gerrit P. Haase.
24534
24535         * m4/regex.m4: Adjust to new libc regex implementation.
24536         (gl_INCLUDED_REGEX): Add AC_LIBSOURCES for
24537         all the .c and .h parts of (the new) regex.
24538         Quote the m4 stuff better.
24539         Check for RE_ICASE bug of old gnulib.
24540         Check for REG_STARTEND of recent libc.
24541         Rename local variables from jm_* to gl_*.
24542         Quote operand of "test -f".
24543         Say "recent enough" version of libc, not "version 2".
24544         (gl_PREREQ_REGEX): Remove AC_FUNC_ALLOCA, since alloca is a
24545         prerequisite module.  Remove AC_HEADER_STDC; no longer needed.
24546         Check for locale.h, isblank, mbrtowc, wcrtomb, wcscoll.
24547         Remove check for btowc, isascii.
24548         Require AM_LANGINFO_CODESET.
24549
24550 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
24551
24552         * lib/regex.c, regex.h: Sync from libc.
24553         * lib/regcomp.c, lib/regexec_internal.c, lib/regex_internal.h:
24554         * lib/regexec.c:
24555         New files, synced from libc, except that regex_internal.h
24556         currently has a small porting fix.
24557
24558 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
24559
24560         * config/srclist.txt: Add regcomp.c, regex.c, regex.h,
24561         regex_internal.c, regexec.c.
24562         Add regex_internal.h too, but as a comment, since the libc version
24563         is currently broken in gnulib mode.
24564
24565 2005-07-06  Paul Eggert  <eggert@cs.ucla.edu>
24566
24567         Support programs like Emacs that use gnulib but not gettext.
24568         * MODULES.html.sh (Internationalization functions): Add gettext-h.
24569         * modules/gettext-h: New file.
24570         * modules/gettext (Files): Remove lib/gettext.h.
24571         (Depends-on): Add gettext-h.
24572         (Makefile.am): Remove lib_SOURCES.
24573         * modules/argmatch, modules/c-stack, modules/closeout:
24574         * modules/copy-file, modules/csharpcomp, modules/csharpexec:
24575         * modules/execute, modules/file-type, modules/getaddrinfo:
24576         * modules/getopt, modules/human, modules/javacomp:
24577         * modules/javaexec, modules/mkdir-p, modules/obstack:
24578         * modules/openat, modules/pagealign_alloc, modules/pipe:
24579         * modules/quotearg, modules/regex, modules/rpmatch:
24580         * modules/unicodeio, modules/userspec, modules/version-etc:
24581         * modules/wait-process, modules/xalloc-die, modules/xmemcoll:
24582         * modules/xsetenv:
24583         Depend on gettext-h, not gettext.
24584
24585 2005-07-05  Paul Eggert  <eggert@cs.ucla.edu>
24586
24587         * gnulib-tool (func_import): Add support for 'public domain' license.
24588         * modules/alloca, modules/atexit, modules/memmove:
24589         Now public domain, not GPL.
24590         * modules/dup2, modules/getpagesize, modules/malloc, modules/memset:
24591         * modules/realloc, modules/strerror, modules/strtod:
24592         Now LGPL, not GPL.
24593
24594 2005-07-05  Bruno Haible  <bruno@clisp.org>
24595
24596         * m4/mbrtowc.m4 (gl_FUNC_MBRTOWC): Upgrade to version from current
24597         autoconf CVS. Needed for mingw.
24598
24599 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
24600
24601         Remove the dependency of the strftime module on the tzset module.
24602         * modules/strftime (Depends-on): Remove dependency on tzset.
24603
24604 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
24605
24606         Remove the dependency of the strftime module on the tzset module.
24607         * m4/strftime.m4 (gl_FUNC_STRFTIME): Don't require
24608         gl_FUNC_TZSET_CLOBBER.
24609
24610 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
24611
24612         Remove the dependency of the strftime module on the tzset module.
24613         * lib/strftime.c (my_strftime)
24614         [! defined _LIBC && ! HAVE_RUN_TZSET_TEST]:
24615         Copy the input structure, to work around some of the bug with
24616         Solaris 2.5.1 and Solaris 2.6.  If you still care about these old
24617         Solaris releases, you should also use the tzset module, but we won't
24618         require it as a dependency any more since we don't want LGPLed code
24619         to depend on GPLed code.
24620
24621 2005-07-02  Jim Meyering  <jim@meyering.net>
24622
24623         * m4/chown.m4, cloexec.m4, dup2.m4, fsusage.m4:
24624         * m4/getcwd-path-max.m4, getcwd.m4, mkstemp.m4, mountlist.m4:
24625         * m4/pagealign_alloc.m4, save-cwd.m4, unistd-safer.m4:
24626         Don't check for fcntl.h, and don't test for HAVE_FCNTL_H.
24627
24628 2005-07-02  Jim Meyering  <jim@meyering.net>
24629
24630         * lib/backupfile.c (backup_args): Change a `0' to NULL.
24631
24632 2005-07-01  Paul Eggert  <eggert@cs.ucla.edu>
24633
24634         * lib/xnanosleep.c: Include timespec.h, since OpenBSD 3.4 <time.h>
24635         declares only 'struct timespec;' (!).
24636
24637 2005-07-01  Jim Meyering  <jim@meyering.net>
24638
24639         * lib/chown.c, cloexec.c, dup-safer.c, dup2.c, fsusage.c, getcwd.c:
24640         * lib/getloadavg.c, mountlist.c, openat.h, pagealign_alloc.c:
24641         * lib/save-cwd.c, tempname.c:
24642         Assume HAVE_FCNTL_H (i.e., include <fcntl.h> unconditionally,
24643         and don't include <sys/file.h>).
24644
24645 2005-06-29  Jim Meyering  <jim@meyering.net>
24646
24647         * lib/mkdir-p.c (make_dir_parents): Don't apply sizeof to a hard-coded
24648         type name.  Use the variable name instead.
24649         * lib/idcache.c (getuser, getuidbyname, getgroup, getgidbyname):
24650         Likewise.
24651
24652 2005-06-28  Simon Josefsson  <jas@extundo.com>
24653
24654         * modules/check-version (Files): Add check-version.m4.
24655
24656 2005-06-28  Simon Josefsson  <jas@extundo.com>
24657
24658         * m4/check-version.m4: New file, suggested by Jim Meyering
24659         <jim@meyering.net>.
24660
24661 2005-06-28  Simon Josefsson  <jas@extundo.com>
24662
24663         * lib/check-version.h, lib/check-version.c: New files.
24664
24665 2005-06-28  Simon Josefsson  <jas@extundo.com>
24666
24667         * lib/base64.c (base64_encode): Indent.  Rename 'b64' to avoid
24668         collision with global variable.  Better indentation.  Don't
24669         increment buffer pointer beyond buffer end.  Based on comments
24670         from Paul Eggert <eggert@cs.ucla.edu>.
24671
24672         * lib/base64.h: Indent.
24673
24674 2005-06-28  Simon Josefsson  <jas@extundo.com>
24675
24676         * doc/gnulib.texi (Library version handling): New section.
24677
24678 2005-06-28  Jim Meyering  <jim@meyering.net>
24679
24680         * check-module (find_included_lib_files): Hard-code another
24681         pair of exceptions: fts.c includes fts-cycle.c and unistd-safer.h
24682         but modules/fts-lgpl (correctly) does not list those files.
24683
24684         * modules/canonicalize (Files): Add lib/pathmax.h.
24685
24686 2005-06-25  Simon Josefsson  <jas@extundo.com>
24687
24688         * modules/check-version: New file.
24689
24690 2005-06-24  Paul Eggert  <eggert@cs.ucla.edu>
24691
24692         * lib/canon-host.c (canon-host): Append trailing "," to 0 in
24693         initializer of struct addrinfo, as an indication that we don't
24694         care how many members the structure has.
24695
24696 2005-06-24  Derek Price  <derek@ximbiot.com>
24697         and Bruno Haible  <bruno@clisp.org>
24698
24699         Remove stat module & update lstat.
24700         * m4/lstat.m4 (gl_FUNC_LSTAT): Drop AC_FUNC_LSTAT in favor of
24701         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
24702         * m4/stat.m4: Remove this file.
24703
24704 2005-06-24  Derek Price  <derek@ximbiot.com>
24705         and Bruno Haible  <bruno@clisp.org>
24706
24707         Remove stat module & update lstat.
24708         * lib/stat.c: Remove this file...
24709         (slash_aware_lstat): ...moving this content and its support...
24710         * lib/lstat.c (rpl_lstat): ...into here.
24711         * lib/lstat.h: New file.
24712
24713 2005-06-24  Derek Price  <derek@ximbiot.com>
24714         and Bruno Haible  <bruno@clisp.org>
24715
24716         Remove stat module & update lstat.
24717         * config/srclist.txt (libc sources): Remove stat.
24718
24719 2005-06-24  Derek Price  <derek@ximbiot.com>
24720         and Bruno Haible  <bruno@clisp.org>
24721
24722         Remove stat module & update lstat.
24723         * MODULES.html.sh (stat): Remove.
24724         * MODULES.html: Regenerated.
24725         * modules/lstat (Description): Correct function name.
24726         (Files): Add "lstat.h".
24727         (Depends-on): Remove stat, add xalloc, stat-macros.
24728         * modules/stat: Remove this file.
24729         (Include): Add "lstat.h", remove <sys/stat.h>.
24730
24731 2005-06-23  Paul Eggert  <eggert@cs.ucla.edu>
24732
24733         * lib/mktime.c: Include <string.h> even if !DEBUG.  (From glibc.)
24734         (ranged_convert): Don't save conversion in a temporary struct.
24735         This causes a warning with GCC 4.0.0, and anyway in the typical
24736         case it's not worth the extra 100 bytes or so of code.
24737         (ranged_convert, __mktime_internal): When calling a function via a
24738         pointer P, use P () rather than (*P) (), as we now assume C89 or
24739         better.
24740
24741 2005-06-22  Paul Eggert  <eggert@cs.ucla.edu>
24742
24743         * lib/readutmp.c (desirable_utmp_entry): Fix bug where "who -b" and
24744         "who -r" failed to give output.  Problem reported by Tim Waugh.
24745
24746         * lib/xmalloc.c (HAVE_GNU_CALLOC): New constant.
24747         (xcalloc): Use it to avoid needless tests.
24748         Problem reported by Jim Meyering.
24749
24750 2005-06-20  Derek Price  <derek@ximbiot.com>
24751
24752         * m4/bison.m4: Note that precious decls of YACC & YFLAGS will be
24753         unnecessary for Autoconfs > 2.59c.
24754
24755 2005-06-16  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
24756
24757         * lib/argp.h (__option_is_short): Check upper limit of
24758         __key. Isprint() requires its argument to have the value
24759         of an unsigned char or EOF.
24760
24761 2005-06-16  Jim Meyering  <jim@meyering.net>
24762
24763         * lib/calloc.c (rpl_calloc): Allocate a 1-byte buffer (not 1xS or Nx1)
24764         when either N or S is zero.
24765
24766 2005-06-16  Derek Price  <derek@ximbiot.com>
24767
24768         * m4/bison.m4: Declare YACC & YFLAGS precious.
24769
24770 2005-06-10  Paul Eggert  <eggert@cs.ucla.edu>
24771
24772         * lib/fnmatch.c (fnmatch): If there is an encoding error in a
24773         multibyte string or pattern, fall back on unibyte matching.
24774         Problem reported by James Youngman.
24775
24776 2005-06-08  Bruno Haible  <bruno@clisp.org>
24777
24778         * modules/csharpcomp: New file.
24779         * MODULES.html.sh (C#): Add csharpcomp.
24780
24781 2005-06-08  Bruno Haible  <bruno@clisp.org>
24782
24783         * m4/csharpcomp.m4: New file, from GNU gettext.
24784
24785 2005-06-08  Bruno Haible  <bruno@clisp.org>
24786
24787         * lib/csharpcomp.h: New file, from GNU gettext.
24788         * lib/csharpcomp.c: New file, from GNU gettext.
24789         * lib/csharpcomp.sh.in: New file, from GNU gettext.
24790
24791 2005-06-08  Bruno Haible  <bruno@clisp.org>
24792
24793         * lib/binary-io.h (fileno): Undefine before defining it. Avoids a gcc
24794         warning on mingw.
24795
24796 2005-06-07  Derek Price  <derek@ximbiot.com>
24797
24798         Sync from CVS.
24799         * lib/glob_.h: Indent nested #ifdef.
24800
24801 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
24802
24803         Sync from coreutils.
24804         Use "file name" when talking about file names, instead of "filename"
24805         or "path", as per the GNU coding standards.
24806         * lib/mkdir-p.c: Renamed from makepath.c.
24807         (make_dir_parents): Renamed from make_path.  All callers changed.
24808         * lib/mkdir-p.h: Likewise.  All includers changed.
24809         * lib/filenamecat.c: Renamed from path-concat.c.
24810         (file_name_concat): Renamed from path_concat.  All callers changed.
24811         [TEST_FILE_NAME_CONCAT]: Renamed from TEST_PATH_CONCAT.
24812         * lib/filenamecat.h: Likewise.  All includers changed.
24813         * lib/acl.c: Don't use "path" or "filename" to mean "file name"
24814         in comments or local variable names.
24815         * lib/basename.c: Likewise.
24816         * lib/canonicalize.c, canonicalize.h: Likewise.
24817         * lib/dirname.c, dirname.h: Likewise.
24818         * lib/euidaccess.c: Likewise.
24819         * lib/exclude.c: Likewise
24820         * lib/fnmatch_.h, fnmatch_loop.c: Likewise.
24821         * lib/fsusage.c, fsuage.h: Likewise.
24822         * lib/fts.c, fts_.h: Likewise.
24823         * lib/getcwd.c: Likewise.
24824         * lib/getloadavg.c: Likewise.
24825         * lib/mkstemp.c: Likewise.
24826         * lib/mountlist.c, mountlist.h: Likewise.
24827         * lib/openat.c, openat.h: Likewise.
24828         * lib/readlink-stub.c: Likewise.
24829         * lib/readutmp.c, readutmp.h: Likewise.
24830         * lib/rename.c: Likewise.
24831         * lib/rmdir.c: Likewise.
24832         * lib/same.c: Likewise.
24833         * lib/savedir.c: Likewise.
24834         * lib/stripslash.c: Likewise.
24835         * lib/tempname.c: Likewise.
24836         * lib/xreadlink.c: Likewise.
24837         * lib/exclude.c (excluded_file_name): Renamed from excluded_filename.
24838         All uses changed.
24839         * lib/exclude.h: Likewise.
24840
24841         * lib/euidaccess.c (getuid, getgid, getuid, getegid)
24842         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
24843         * lib/idcache.c (getpwuid, getpwnam, getgrgid, getgrnam)
24844         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
24845         * lib/pathmax.h: Include <limits.h> unconditionally, since other
24846         files have been getting away with it for years (MORE/BSD 4.3
24847         is extinct now).
24848         * lib/userspec.c (getpwnam, getgrnam, getgrgid)
24849         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
24850
24851         * lib/pathmax.h (_POSIX_PATH_MAX) [!defined _POSIX_PATH_MAX]:
24852         Define to 256, not 255, as per modern POSIX.
24853
24854 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
24855
24856         Sync from coreutils.
24857         Use "file name" when talking about file names, instead of "filename"
24858         or "path", as per the GNU coding standards.
24859         * MODULES.html.sh: mkdir-p renamed from makepath.
24860         filenamecat renamed from path-concat.
24861         * modules/filenamecat: Renamed from modules/path-concat.
24862         (Files): filenamecat.h and filenamecat.c renamed from
24863         path-concat.h and path-concat.c.
24864         (configure.ac): gl_FILE_NAME_CONCAT, not gl_PATH_CONCAT.
24865         (Include): filenamecat.h, not path-concat.h.
24866         * modules/mkdir-p: Renamed from modules/makepath.
24867         (Files): mkdir-p.h and mkdir-p.c renamed from makepath.h and
24868         makepath.c.
24869         (configure.ac): gl_MKDIR_PARENTS, not gl_MAKEPATH.
24870         (Include): mkdir-p.h, not makepath.h.
24871
24872 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
24873
24874         Sync from coreutils.
24875         * m4/mkdir-p.m4: Renamed from makepath.m4.
24876         (gl_MKDIR_PARENTS): Renamed from gl_MAKEPATH.  All uses changed.
24877         Rename files from makepath.c to mkdir-p.c, and from
24878         makepath.h to mkdir-p.h.
24879         * m4/filenamecat.m4: Renamed from path-concat.m4.
24880         (gl_FILE_NAME_CONCAT): Renamed from gl_PATH_CONCAT.  All uses changed.
24881         Rename files from path-concat.c to filenamecat.c,
24882         and from path-concat.h to filenamecat.h.
24883         * m4/getcwd-path-max.m4: Don't use "path" or "filename" to mean
24884         "file name" in local variables or comments.
24885         * m4/rename.m4: Likewise.
24886
24887 2005-06-01  Bruno Haible  <bruno@clisp.org>
24888
24889         * modules/csharpexec: New file.
24890         * MODULES.html.sh (C#): New section.
24891
24892 2005-06-01  Bruno Haible  <bruno@clisp.org>
24893
24894         * m4/csharp.m4: New file, from GNU gettext.
24895         * m4/csharpexec.m4: New file, from GNU gettext.
24896
24897 2005-06-01  Bruno Haible  <bruno@clisp.org>
24898
24899         * lib/csharpexec.h: New file, from GNU gettext.
24900         * lib/csharpexec.c: New file, from GNU gettext.
24901         * lib/csharpexec.sh.in: New file, from GNU gettext.
24902
24903 2005-05-31  Derek Price  <derek@ximbiot.com>
24904             Paul Eggert  <eggert@cs.ucla.edu>
24905
24906         Sync from cvs.
24907         * m4/glob.m4: s/MISSING_SYS_CDEFS_H/_SYS_CDEFS_H/ and comment.
24908
24909 2005-05-31  Derek Price  <derek@ximbiot.com>
24910             Paul Eggert  <eggert@cs.ucla.edu>
24911
24912         Sync from cvs.
24913         * lib/glob_.h: s/MISSING_SYS_CDEFS_H/_SYS_CDEFS_H/ and comment.
24914
24915 2005-05-29  Derek Price  <derek@ximbiot.com>
24916
24917         * config/srclist.txt (glob_.h, glob.c): Add these files.
24918
24919 2005-05-29  Derek Price  <derek@ximbiot.com>
24920
24921         * MODULES.html.sh: Add glob to Enhanced POSIX.2001 section.
24922         * modules/glob: New file.
24923         * modules/getlogin_r: Add link to POSIX spec in description.
24924
24925 2005-05-29  Derek Price  <derek@ximbiot.com>
24926             Paul Eggert  <eggert@cs.ucla.edu>
24927
24928         * m4/glob.m4: New file.
24929
24930 2005-05-29  Derek Price  <derek@ximbiot.com>
24931             Paul Eggert  <eggert@cs.ucla.edu>
24932
24933         * lib/glob_.h, lib/glob.c: New files.
24934
24935 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
24936
24937         * modules/fts (Files): Remove m4/inttypes-pri.m4.
24938         * modules/fts-lgpl (Depends-on): Remove gettext.
24939
24940 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
24941
24942         * m4/fts.m4 (gl_FUNC_FTS_CORE): Don't check for inttypes.h or stdint.h,
24943         and don't require gt_INTTYPES_PRI.
24944
24945 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
24946
24947         * lib/getlogin_r.c (getlogin_r): Don't set errno to 0 on return.
24948
24949         * lib/fts.c: Don't worry about debugging on pre-C99-compatible hosts;
24950         the configuration hassle isn't worth it.
24951         Include inttypes.h and stdint.h unconditionally if FTS_DEBUG.
24952         (LONGEST_MODIFIER, PRIuMAX): Remove.
24953
24954 2005-05-27  Bruno Haible  <bruno@clisp.org>
24955
24956         * lib/getlogin_r.h: Remove second include of <stddef.h>.
24957
24958 2005-05-26  Paul Eggert  <eggert@cs.ucla.edu>
24959
24960         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Define
24961         _POSIX_PTHREAD_SEMANTICS for Solaris.
24962
24963 2005-05-25  Derek Price  <derek@ximbiot.com>
24964
24965         * MODULES.html.sh: Add getlogin_r to POSIX.2001 support section.
24966
24967 2005-05-25  Derek Price  <derek@ximbiot.com>
24968             Paul Eggert  <eggert@cs.ucla.edu>
24969
24970         * modules/getlogin_r, m4/getlogin_r.m4: New files.
24971         * lib/getlogin_r.c, getlogin_r.h: New files.
24972
24973 2005-05-25  Bruno Haible  <bruno@clisp.org>
24974             Derek Price  <derek@ximbiot.com>
24975
24976         * lib/getlogin_r.h: Simplify API documentation.
24977
24978 2005-05-23  Derek Price  <derek@ximbiot.com>
24979
24980         * modules/minmax (Files): Add m4/minmax.m4.
24981         (configure.ac): Add gl_MINMAX.
24982
24983 2005-05-22  Paul Eggert  <eggert@cs.ucla.edu>
24984
24985         * lib/fts.c (fd_safer) [_LGPL_PACKAGE]: New static function,
24986         so that unistd-safer.h (GPL'ed code) need not be included.
24987
24988 2005-05-22  Bruno Haible  <bruno@clisp.org>
24989
24990         * m4/minmax.m4: New file.
24991         Based on a patch by Derek Price <derek@ximbiot.com>.
24992
24993 2005-05-22  Bruno Haible  <bruno@clisp.org>
24994
24995         * lib/stdint_.h (_STDINT_H_HAVE_INT64): New macro. Use it in #ifdefs.
24996         (INT64_MIN): Fix definition.
24997         Suggested by Paul Eggert <eggert@cs.ucla.edu>.
24998
24999         * lib/stdint_.h (_STDINT_H_NEED_SIGNED_INT_TYPES): Renamed from
25000         NEED_SIGNED_INT_TYPES.
25001
25002         * lib/stdint_.h (_STDINT_H_HAVE_SYSTEM_INTTYPES): Renamed from
25003         HAVE_SYSTEM_INTTYPES.
25004
25005 2005-05-22  Bruno Haible  <bruno@clisp.org>
25006
25007         * lib/minmax.h: Include <limits.h> only when it defines MIN, MAX.
25008         Also include <sys/param.h> if it defines MIN, MAX.
25009         Based on a patch by Derek Price <derek@ximbiot.com>.
25010
25011 2005-05-21  Jim Meyering  <jim@meyering.net>
25012
25013         * modules/fts (Files): Add m4/inttypes-pri.m4.
25014         (Depends-on): Add lstat and remove gettext.  Alphabetize.
25015
25016 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
25017
25018         New fts module.
25019         * lib/fts.c: Don't include "cycle-check.h" or "hash.h".
25020         (setup_dir, free_dir): New functions.
25021         (enter_dir, leave_dir): Define trivial
25022         alternatives of _LGPL_PACKAGE.  Move to fts-cycle.c if !_LGPL_PACKAGE.
25023         (HT_INITIAL_SIZE, ENTER_DIR): Remove.  All uses removed.
25024         (LEAVE_DIR): Fix typo: pass Fts and Ent to leave_dir.
25025         (struct Active_dir, AD_compare, AD_hash, enter_dir, leave_dir):
25026         Move to fts-cycle.c.
25027         (fts_open): Use setup_dir.
25028         (fts_close): Use free_dir.
25029         (fts_read): Have just one copy of the ENTER_DIR code rather than three.
25030         This adds a label and some gotos, but the alternatives were messier.
25031         Check for memory allocation failure when entering a dir.
25032         (fts_stat) [_LGPL_PACKAGE]: Bring back glibc cycle detection code.
25033         * lib/fts_.h (_LGPL_PACKAGE) [defined _LIBC]: New macro.
25034         (FTS): New member fts_cycle, that is a union that contains the
25035         old active_dir_ht and cycle_state.  All uses changed to mention
25036         fts_cycle.ht and fts_cycle.state.
25037         * lib/fts-cycle.c: New file, containing GPL'ed code migrated out of
25038         fts.c, with the following changes:
25039         (setup_dir, free_dir): New functions.
25040         (enter_dir): Now returns bool.  Return true if successful, false
25041         if memory exhausted.  All callers changed.
25042         Do not bother partly cleaning up on
25043         memory allocation failure; that is free_dir's job.
25044         However, free ad if hash_insert fails, to avoid memory leak.
25045         (enter_dir, leave_dir): Accommodate change to FTS by inspecting
25046         fts->fts_options to see which union member to use.
25047
25048 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
25049
25050         * m4/fts.m4 (gl_FUNC_FTS_CORE): Renamed from gl_FUNC_FTS.
25051         (gl_FUNC_FTS, gl_FUNC_FTS_LGPL): New macros.
25052
25053 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
25054
25055         * MODULES.html.sh (File system functions): Add fts, fts-lgpl.
25056
25057 2005-05-20  Jim Meyering  <jim@meyering.net>
25058
25059         * lib/unlinkdir.h (cannot_unlink_dir) [UNLINK_CANNOT_UNLINK_DIR]:
25060         Now a macro, to pacify GCC.
25061
25062 2005-05-20  Eric Blake  <ebb9@byu.net>  (tiny change)
25063
25064         * m4/chown.m4 (gl_FUNC_CHOWN): Correct sense of test for honoring IDs
25065         of -1.
25066
25067 2005-05-20  Eric Blake  <ebb9@byu.net>  (tiny change)
25068
25069         * lib/chown.c (rpl_chown): Return -1 on failure.
25070
25071 2005-05-18  Paul Eggert  <eggert@cs.ucla.edu>
25072
25073         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME]):
25074         Don't check for stddef.h.
25075         * m4/fts.m4 (gl_FUNC_FTS): Don't require AC_HEADER_STDC, as we
25076         don't use its results.
25077         Don't check for fcntl.h, stddef.h, stdlib.h, string.h, unistd.h,
25078         since we include them unconditionally.  Don't require
25079         AM_STDBOOL_H, since stdbool is a prerequisite.
25080         Don't require AC_C_CONST, AC_TYPE_SIZE_T or check for ptrdiff_t
25081         since we assume C89 or better.
25082         Don't require AC_FUNC_CLOSEDIR_VOID, AC_FUNC_LSTAT, or AC_FUNC_STAT,
25083         as we don't use their results.
25084         Don't check for fchdir, memmove, memset, strrchr, as we use
25085         them unconditionally.
25086         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER): Don't define
25087         GETTIMEOFDAY_CLOBBERS_LOCALTIME_BUFFER, since nobody uses it.
25088
25089 2005-05-18  Paul Eggert  <eggert@cs.ucla.edu>
25090
25091         * lib/canonicalize.c: Include canonicalize.h first, to test interface.
25092         Include <stddef.h> unconditionally, since we assume C89 now.
25093         All uses of PTR_INT_TYPE replaced by ptrdiff_t.
25094         * lib/fts.c: Include fts_.h first, to check interface.
25095         Do not include intprops.h; no longer needed.
25096         Include cycle-check.h and hash.h, since fts_.h no longer does.
25097         Remove unnecessary casts of closedir to void.
25098         (fts_build): Use a simpler method (not involving TYPE_SIGNED) to
25099         decide whether to decrement nlinks.
25100         * lib/fts_.h: Do not include hash.h or cycle-check.h; no longer needed.
25101         (FTS): Use struct hash_table * instead of Hash_table, so that
25102         we no longer need to include hash.h here.
25103
25104 2005-05-18  Jim Meyering  <jim@meyering.net>
25105
25106         * modules/dirfd (License): Change to LGPL.  Most of the code
25107         is already in the public domain.
25108
25109 2005-05-18  Jim Meyering  <jim@meyering.net>
25110
25111         * m4/fts.m4 (AC_LIBSOURCES): Add intprops.h to the list.
25112         Reported by Yoann Vandoorselaere.
25113
25114 2005-05-17  Jim Meyering  <jim@meyering.net>
25115
25116         * m4/fts.m4: New file, from coreutils.
25117
25118 2005-05-17  Jim Meyering  <jim@meyering.net>
25119
25120         * lib/fts.c, lib/fts_.h: New files, from coreutils.
25121
25122 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
25123
25124         Sync from coreutils.
25125         * m4/unlinkdir.m4: New file.
25126
25127 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
25128
25129         Sync from coreutils.
25130         * lib/unlinkdir.c, lib/unlinkdir.h: New files.
25131         * lib/gethrxtime.c, lib/gethrxtime.h, lib/getpass.h, lib/mountlist.h,
25132         lib/path-concat.c, lib/regex.h, lib/unlocked-io.h, lib/xtime.h:
25133         White space changes only.
25134         * lib/makepath.c (make_path): Port to hosts where leading "//" is
25135         special.
25136         * lib/yesno.c: Include getline.h, not ctype.h.
25137         (yesno): Don't remove leading white space; POSIX doesn't allow it.
25138         Use getline to remove arbitrary restriction on response length.
25139
25140 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
25141
25142         * config/srclist-update: Spell out "Street" in FSF postal
25143         mail address; this is the style the FSF seems to prefer.
25144
25145         * build-aux/depcomp, build-aux/install-sh, build-aux/mdate-sh,
25146         build-aux/missing, build-aux/mkinstalldirs: Sync from Automake;
25147         this updates FSF postal mail address.
25148
25149         Sync from coreutils.
25150         * modules/unlinkdir: New file.
25151         * modules/yesno (Depends-on): Add getline.
25152         * MODULES.html.sh (File system functions): Add unlinkdir.
25153
25154 2005-05-13  Paul Eggert  <eggert@cs.ucla.edu>
25155
25156         * lib/byteswap_.h, lib/getsubopt.h, lib/iconvme.h, lib/strsep.c,
25157         lib/strsep.h:
25158         Change the initial comment to refer to GPL, not LGPL.
25159         gnulib-tool will change it to LGPL as needed.
25160
25161         * lib/__fpending.c, lib/acl.c, lib/acl.h, lib/alloca_.h, lib/allocsa.c,
25162         lib/allocsa.h, lib/argmatch.c, lib/argmatch.h, lib/argp-ba.c,
25163         lib/argp-eexst.c, lib/argp-fmtstream.c, lib/argp-fmtstream.h,
25164         lib/argp-fs-xinl.c, lib/argp-help.c, lib/argp-namefrob.h,
25165         lib/argp-parse.c, lib/argp-pv.c, lib/argp-pvh.c, lib/argp-xinl.c,
25166         lib/argp.h, lib/argz.c, lib/argz_.h, lib/asnprintf.c, lib/asprintf.c,
25167         lib/atanl.c, lib/backupfile.c, lib/backupfile.h, lib/base64.c,
25168         lib/base64.h, lib/basename.c, lib/binary-io.h, lib/byteswap_.h,
25169         lib/c-ctype.c, lib/c-ctype.h, lib/c-stack.c, lib/c-stack.h,
25170         lib/c-strtod.c, lib/calloc.c, lib/canon-host.c, lib/canonicalize.c,
25171         lib/canonicalize.h, lib/ceill.c, lib/chdir-long.c, lib/chdir-long.h,
25172         lib/chown.c, lib/classpath.c, lib/classpath.h, lib/cloexec.c,
25173         lib/closeout.c, lib/closeout.h, lib/concatpath.c, lib/config.charset,
25174         lib/copy-file.c, lib/copy-file.h, lib/cycle-check.c, lib/cycle-check.h,
25175         lib/diacrit.c, lib/diacrit.h, lib/dirfd.c, lib/dirfd.h, lib/dirname.c,
25176         lib/dirname.h, lib/dummy.c, lib/dup-safer.c, lib/dup2.c, lib/eealloc.h,
25177         lib/error.c, lib/error.h, lib/euidaccess.c, lib/exclude.c,
25178         lib/exclude.h, lib/execute.c, lib/execute.h, lib/exit.h,
25179         lib/exitfail.c, lib/exitfail.h, lib/expl.c, lib/fatal-signal.c,
25180         lib/fatal-signal.h, lib/fd-safer.c, lib/file-type.c, lib/file-type.h,
25181         lib/fileblocks.c, lib/filemode.c, lib/filemode.h, lib/findprog.c,
25182         lib/findprog.h, lib/floorl.c, lib/fnmatch.c, lib/fnmatch_.h,
25183         lib/fnmatch_loop.c, lib/fopen-safer.c, lib/free.c, lib/frexpl.c,
25184         lib/fsusage.c, lib/fsusage.h, lib/full-read.c, lib/full-read.h,
25185         lib/full-write.c, lib/full-write.h, lib/fwriteerror.c,
25186         lib/fwriteerror.h, lib/gai_strerror.c, lib/gcd.c, lib/gcd.h,
25187         lib/getaddrinfo.c, lib/getaddrinfo.h, lib/getcwd.c, lib/getcwd.h,
25188         lib/getdate.h, lib/getdate.y, lib/getdomainname.c, lib/getdomainname.h,
25189         lib/getgroups.c, lib/gethostname.c, lib/gethrxtime.c, lib/gethrxtime.h,
25190         lib/getline.c, lib/getline.h, lib/getloadavg.c, lib/getndelim2.c,
25191         lib/getndelim2.h, lib/getnline.c, lib/getnline.h, lib/getopt.c,
25192         lib/getopt1.c, lib/getopt_.h, lib/getopt_int.h, lib/getpagesize.h,
25193         lib/getpass.c, lib/getpass.h, lib/getsubopt.c, lib/getsubopt.h,
25194         lib/gettext.h, lib/gettime.c, lib/gettimeofday.c, lib/getugroups.c,
25195         lib/getusershell.c, lib/group-member.c, lib/group-member.h,
25196         lib/hard-locale.c, lib/hard-locale.h, lib/hash-pjw.c, lib/hash-pjw.h,
25197         lib/hash.c, lib/hash.h, lib/human.c, lib/human.h, lib/iconvme.c,
25198         lib/iconvme.h, lib/idcache.c, lib/inet_ntop.h, lib/intprops.h,
25199         lib/inttostr.c, lib/inttostr.h, lib/isdir.c, lib/javacomp.c,
25200         lib/javacomp.h, lib/javacomp.sh.in, lib/javaexec.c, lib/javaexec.h,
25201         lib/javaexec.sh.in, lib/lbrkprop.h, lib/lchown.c, lib/ldexpl.c,
25202         lib/linebreak.c, lib/linebreak.h, lib/linebuffer.c, lib/linebuffer.h,
25203         lib/localcharset.c, lib/localcharset.h, lib/logl.c, lib/long-options.c,
25204         lib/long-options.h, lib/lstat.c, lib/makepath.c, lib/makepath.h,
25205         lib/malloc.c, lib/mathl.h, lib/mbswidth.c, lib/mbswidth.h, lib/md5.c,
25206         lib/md5.h, lib/memcasecmp.c, lib/memcasecmp.h, lib/memchr.c,
25207         lib/memcmp.c, lib/memcoll.c, lib/memcoll.h, lib/memcpy.c, lib/memmem.c,
25208         lib/memmem.h, lib/mempcpy.c, lib/mempcpy.h, lib/memrchr.c,
25209         lib/memrchr.h, lib/memset.c, lib/minmax.h, lib/mkdir.c, lib/mkdtemp.c,
25210         lib/mkdtemp.h, lib/mkstemp.c, lib/mktime.c, lib/modechange.c,
25211         lib/modechange.h, lib/mountlist.c, lib/mountlist.h, lib/nanosleep.c,
25212         lib/obstack.c, lib/obstack.h, lib/openat.c, lib/openat.h,
25213         lib/pagealign_alloc.c, lib/pagealign_alloc.h, lib/path-concat.c,
25214         lib/path-concat.h, lib/pathmax.h, lib/pathname.h, lib/physmem.c,
25215         lib/physmem.h, lib/pipe.c, lib/pipe.h, lib/poll.c, lib/poll_.h,
25216         lib/posixtm.c, lib/posixtm.h, lib/posixver.c, lib/printf-args.c,
25217         lib/printf-args.h, lib/printf-parse.c, lib/printf-parse.h,
25218         lib/progname.c, lib/progname.h, lib/progreloc.c, lib/putenv.c,
25219         lib/quote.c, lib/quote.h, lib/quotearg.c, lib/quotearg.h, lib/raise.c,
25220         lib/readlink.c, lib/readtokens.c, lib/readtokens.h, lib/readtokens0.c,
25221         lib/readtokens0.h, lib/readutmp.c, lib/readutmp.h, lib/realloc.c,
25222         lib/ref-add.sin, lib/ref-del.sin, lib/regex.c, lib/regex.h,
25223         lib/rename.c, lib/rmdir.c, lib/rpmatch.c, lib/safe-read.c,
25224         lib/safe-read.h, lib/safe-write.c, lib/safe-write.h, lib/same.c,
25225         lib/same.h, lib/save-cwd.c, lib/save-cwd.h, lib/savedir.c,
25226         lib/savedir.h, lib/setenv.c, lib/setenv.h, lib/settime.c,
25227         lib/sh-quote.c, lib/sh-quote.h, lib/sha1.c, lib/sha1.h, lib/sig2str.c,
25228         lib/sig2str.h, lib/sincosl.c, lib/snprintf.c, lib/snprintf.h,
25229         lib/sqrtl.c, lib/stat-macros.h, lib/stat.c, lib/stdbool_.h,
25230         lib/stdint_.h, lib/stdio-safer.h, lib/stpcpy.c, lib/stpcpy.h,
25231         lib/stpncpy.c, lib/stpncpy.h, lib/strcase.h, lib/strcasecmp.c,
25232         lib/strchrnul.c, lib/strchrnul.h, lib/strcspn.c, lib/strdup.c,
25233         lib/strdup.h, lib/strerror.c, lib/strftime.c, lib/strftime.h,
25234         lib/stripslash.c, lib/strndup.c, lib/strndup.h, lib/strnlen.c,
25235         lib/strpbrk.c, lib/strpbrk.h, lib/strsep.c, lib/strsep.h, lib/strstr.c,
25236         lib/strstr.h, lib/strtod.c, lib/strtoimax.c, lib/strtok_r.c,
25237         lib/strtok_r.h, lib/strtol.c, lib/strtoll.c, lib/strtoul.c,
25238         lib/strtoull.c, lib/strverscmp.c, lib/strverscmp.h, lib/sysexit_.h,
25239         lib/tempname.c, lib/time_r.c, lib/time_r.h, lib/timegm.c, lib/timegm.h,
25240         lib/timespec.h, lib/trigl.c, lib/trigl.h, lib/ucs4-utf16.h,
25241         lib/ucs4-utf8.h, lib/unicodeio.c, lib/unicodeio.h, lib/unistd-safer.h,
25242         lib/unlocked-io.h, lib/unsetenv.c, lib/userspec.c, lib/utf16-ucs4.h,
25243         lib/utf8-ucs4.h, lib/utime.c, lib/utimecmp.c, lib/utimecmp.h,
25244         lib/utimens.c, lib/vasnprintf.c, lib/vasnprintf.h, lib/vasprintf.c,
25245         lib/vasprintf.h, lib/version-etc-fsf.c, lib/version-etc.c,
25246         lib/version-etc.h, lib/vsnprintf.c, lib/vsnprintf.h, lib/w32spawn.h,
25247         lib/wait-process.c, lib/wait-process.h, lib/xalloc-die.c, lib/xalloc.h,
25248         lib/xallocsa.c, lib/xallocsa.h, lib/xasprintf.c, lib/xgetcwd.c,
25249         lib/xgetcwd.h, lib/xgetdomainname.c, lib/xgetdomainname.h,
25250         lib/xgethostname.c, lib/xmalloc.c, lib/xmemcoll.c, lib/xnanosleep.c,
25251         lib/xreadlink.c, lib/xreadlink.h, lib/xsetenv.c, lib/xsetenv.h,
25252         lib/xsize.h, lib/xstrndup.c, lib/xstrndup.h, lib/xstrtod.c,
25253         lib/xstrtod.h, lib/xstrtoimax.c, lib/xstrtol.c, lib/xstrtol.h,
25254         lib/xstrtoumax.c, lib/xtime.h, lib/xvasprintf.c, lib/xvasprintf.h,
25255         lib/yesno.c, lib/yesno.h:
25256         Update FSF postal mail address.
25257
25258 2005-05-13  Paul Eggert  <eggert@cs.ucla.edu>
25259
25260         * MODULES.html.sh, README, gnulib-tool, tests/test-base64.c,
25261         tests/test-memmem.c, tests/test-stpncpy.c:
25262         Update FSF postal mail address.
25263
25264 2005-05-13  Bruno Haible  <bruno@clisp.org>
25265
25266         * lib/stdint_.h (int64_t, uint64_t, int_least64_t, uint_least64_t,
25267         int_fast64_t, uint_fast64_t, intmax_t, uintmax_t, INT64_MIN, INT64_MAX,
25268         UINT64_MAX, INT_LEAST64_MIN, INT_LEAST64_MAX, UINT_LEAST64_MAX,
25269         INT_FAST64_MIN, INT_FAST64_MAX, UINT_FAST64_MAX, INTMAX_MIN,
25270         INTMAX_MAX, UINTMAX_MAX, INT64_C, UINT64_C, INTMAX_C, UINTMAX_C):
25271         Add support for 64-bit integers in the MSVC compiler.
25272
25273 2005-05-12  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
25274
25275         * modules/getdate (Makefile.am): Add getdate.c to EXTRA_DIST
25276
25277 2005-05-12  Eric Blake  <ebb9@byu.net>  (tiny change)
25278
25279         * gnulib-tool (func_import): Sort and uniquify recommended includes.
25280
25281 2005-05-11  Paul Eggert  <eggert@cs.ucla.edu>
25282
25283         * doc/getdate.texi (General date syntax): Don't say that date
25284         date --iso-8601=ns generates acceptable dates; it doesn't yet.
25285         Problem reported by Nic Ferrier.
25286
25287 2005-05-10  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
25288
25289         * lib/getaddrinfo.c: Don't fail when SOCK_STREAM or SOCK_DGRAM are
25290         specified in ai_socktype. Fix invalid ai_protocol
25291         check. ai_protocol is usually set to 0 or depending on
25292         ai_family/ai_socktype to IPPROTO_TCP / IPPROTO_UDP.  Checking for
25293         SOCK_STREAM / SOCK_DGRAM in ai_protocol was invalid.  Set
25294         ai_socktype / ai_protocol in the returned addrinfo structure.
25295
25296 2005-05-10  Simon Josefsson  <jas@extundo.com>
25297
25298         * m4/getaddrinfo.m4: Look in libnsl/libsocket for getaddrinfo, from
25299         Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
25300
25301 2005-05-10  Karl Berry  <karl@gnu.org>
25302
25303         * doc/fdl.texi, gpl.texi, lgpl.texi, COPYING: update FSF address
25304         (from http://www.gnu.org/licenses).
25305         * doc/COPYING.LIB: also rename to COPYING.LESSER.
25306         * doc/COPYING.DOC: remove; per rms, only needed in doc files, so
25307         fdl.texi suffices.
25308
25309 2005-05-10  Karl Berry  <karl@gnu.org>
25310
25311         * config/srclist.txt (COPYING.LESSER): rename from COPYING.LIB.
25312         (COPYING.DOC): remove.
25313
25314         * config/srclist-update: new FSF address.
25315
25316 2005-05-10  Derek Price  <derek@ximbiot.com>
25317
25318         * m4/getopt.m4 (gl_GETOPT): Check for Solaris 10 bug, not decl, when
25319         possible.
25320
25321 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
25322             Bruno Haible  <bruno@clisp.org>
25323
25324         * modules/inet_ntop: New file.
25325         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
25326         inet_ntop.
25327
25328 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
25329             Bruno Haible  <bruno@clisp.org>
25330
25331         * m4/inet_ntop.m4: New file.
25332
25333 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
25334             Bruno Haible  <bruno@clisp.org>
25335
25336         * lib/inet_ntop.h: New file.
25337         * lib/inet_ntop.c: New file, from glibc with modifications.
25338
25339 2005-05-09  Paul Eggert  <eggert@cs.ucla.edu>
25340
25341         * modules/time_r (License): Change to LGPL.
25342         * modules/extensions (License): Change to LGPL.  Actually,
25343         the license is more permissive than that, but currently gnulib-tool
25344         doesn't know how to handle more-permissive licenses.
25345
25346         * modules/stat-macros (Depends-on): Don't depend on stat-macros (!).
25347         Problem reported by Dave Love.
25348
25349 2005-05-08  Jim Meyering  <jim@meyering.net>
25350
25351         * lib/classpath.c (PATH_SEPARATOR): Remove insignificant trailing
25352         blank.
25353
25354 2005-05-06  Paul Eggert  <eggert@cs.ucla.edu>
25355
25356         * modules/argmatch (Depends-on): Add stdbool.
25357         * modules/backupfile (Depends-on): Likewise.
25358         * modules/chdir-long (Depends-on): Likewise.
25359         * modules/closeout (Depends-on): Likewise.
25360         * modules/cycle-check (Depends-on): Likewise.
25361         * modules/dirname (Depends-on): Likewise.
25362         * modules/fnmatch (Depends-on): Likewise.
25363         * modules/fsusage (Depends-on): Likewise.
25364         * modules/fwriteerror (Depends-on): Likewise.
25365         * modules/getcwd (Depends-on): Likewise.
25366         * modules/getloadavg (Depends-on): Likewise.
25367         * modules/hard-locale (Depends-on): Likewise.
25368         * modules/makepath (Depends-on): Likewise.
25369         * modules/mountlist (Depends-on): Likewise.
25370         * modules/nanosleep (Depends-on): Likewise.
25371         * modules/posixtm (Depends-on): Likewise.
25372         * modules/quotearg (Depends-on): Likewise.
25373         * modules/readtokens (Depends-on): Likewise.
25374         * modules/readtokens0 (Depends-on): Likewise.
25375         * modules/readutmp (Depends-on): Likewise.
25376         * modules/save-cwd (Depends-on): Likewise.
25377         * modules/strftime (Depends-on): Likewise.
25378         * modules/userspec (Depends-on): Likewise.
25379         * modules/utimecmp (Depends-on): Likewise.
25380         * modules/xgetcwd (Depends-on): Likewise.
25381         * modules/xnanosleep (Depends-on): Likewise.
25382         * modules/xstrtod (Depends-on): Likewise.
25383         * modules/yesno (Depends-on): Likewise.
25384
25385 2005-05-05  Paul Eggert  <eggert@cs.ucla.edu>
25386
25387         * m4/getopt.m4 (gl_GETOPT): Check for Solaris 10 getopt, and avoid
25388         needless checks.
25389
25390 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
25391
25392         Merge from coreutils.  Among other things,
25393         add bulletproofing for cases where stdin, stdout, or stderr are closed.
25394         * lib/fd-safer.c: New file.
25395         * lib/fcntl-safer.h, open-safer.c: Remove.
25396         * lib/chdir-long.c: Fix comment "fetish" -> "coreutils".
25397         * lib/dup-safer.c: Include unistd-safer.h first.
25398         Don't include errno.h.
25399         (dup_safer) [!defined F_DUPFD]: Let fd_safer do the real work.
25400         * lib/file-type.h: Don't assume invoker included sys/stat.h first.
25401         * lib/file-type.c: Rely on file-type.h change.
25402         * lib/getloadavg.c: Include unistd-safer.h.
25403         (getloadavg): Use safer open.
25404         * lib/getusershell.c: Include "stdio-safer.h".
25405         (getusershell): Use safer fopen.
25406         * lib/long-options.c (long_options): Use NULL rather than 0.
25407         * lib/modechange.h (mode_free): Remove; all callers changed to invoke
25408         'free'.
25409         * lib/modechange.c: Likewise.
25410         xstrtol.h, stdbool.h, stddef.h: Don't include; no longer needed.
25411         (MODE_DONE): New constant.
25412         (struct mode_change): Remove 'next' member.
25413         (make_node_op_equals): New function; like the old one of the
25414         same name, except it allocates an array.
25415         (mode_compile, mode_create_from_ref): Use it.
25416         (mode_compile): Allocate result as an array, not a linked list.
25417         Parse octal string ourself, so that we catch mistakes like "+0".
25418         (mode_adjust): Arg is an array, not a linked list.
25419         * lib/modechange.c: Include stat-macros.h, xalloc.h.
25420         (S_ISDIR, S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR):
25421         (S_IRGRP, S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH, S_IRXWU):
25422         (S_IRWXG, S_IRWXO, CHMOD_MODE_BITS):
25423         Remove.  This is now stat-macros.h's job.
25424         (talloc): Remove.  All callers replaced by xalloc, so that
25425         our invokers don't have to worry about reporting memory failures.
25426         (make_node_op_equals): Remove.
25427         (MODE_ORDINARY_CHAGE, MODE_X_IF_ANY_X, MODE_COPY_EXISTING):
25428         New constants.
25429         (struct mode_change): Moved here from modechange.h.
25430         (mode_append_entry): Remove.
25431         (mode_compile): Remove MASKED_OPS arg, since it encouraged
25432         apps to have incorrect behavior.  Use simpler algorithm for head
25433         and tail.  Don't futz with umask; that's now the job of mode_adjust.
25434         Detect more invalid usages rather than having somewhat-random behavior.
25435         Don't insert an "a=" action, as that leads to incorrect behavior.
25436         (mode_compile, mode_create_from_ref): Return NULL on error instead
25437         of an enum, since now there's only one way to have an error.  All
25438         callers changed.
25439         (mode_adjust): Accept new arg UMASK_VALUE, and interpret it
25440         at the correct time.  Simplify calculation of "+u" and its ilk.
25441         Don't mishandle "+X".
25442         (mode_free): Remove "register" and localize decls.
25443         * lib/modechange.h (MODE_X_IF_ANY_X, MODE_COPY_EXISTING):
25444         (struct mode_change): Move to modechange.c; callers don't
25445         need to see this stuff.
25446         (MODE_MASK_EQUALS, MODE_MASK_PLUS, MODE_MASK_MINUS, MODE_MASK_ALL):
25447         (MODE_INVALID, MODE_MEMORY_EXHAUSTED, MODE_BAD_REFERENCE): Remove.
25448         (mode_change, mode_adjust): Reflect the new signatures noted above.
25449         * lib/nanosleep.c (rpl_nanosleep): Include "timespec.h" before macros
25450         that might redefine system include files.
25451         (siginterrupt) [!HAVE_SIGINTERRUPT]: New macro.
25452         (my_usleep): Use NULL rather than (void *) 0.
25453         (rpl_nanosleep) [!defined SA_NOCLDSTOP]:
25454         Use siginterrupt to specify that system calls should be interrupted.
25455         (rpl_nanosleep): Move initialization of suspended closer to call of
25456         my_usleep.
25457         * lib/readutmp.h (read_utmp): New arg OPTIONS.  All uses changed.
25458         * lib/readutmp.c: Likewise.  Include signal.h, stdbool.h.
25459         (desirable_utmp_entry): New function.
25460         (read_utmp) [defined UTMP_NAME_FUNCTION]: Redo memory allocation
25461         using x2nrealloc, to simplify logic.
25462         (read_utmp) [!defined UTMP_NAME_FUNCTION]: Check for overflow in
25463         size calculation.  Do not assume utmp file is a regular file.
25464         * lib/readutmp.h (UT_PID): Moved here from ../src/who.c.
25465         (READ_UTMP_CHECK_PIDS): New constant.
25466         * lib/save-cwd.c: Include unistd-safer.h.
25467         (save_cwd): Use fd_safer.
25468         * lib/tempname.c (S_ISDIR, S_IRUSR, S_IRUSR, S_IWUSR, S_IXUSR): Remove.
25469         [!_LIBC] Include "stat-macros.h" instead.
25470         * lib/unistd-safer.h (fd_safer): New decl.
25471
25472 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
25473
25474         * modules/getloadavg (Depends-on): Add unistd-safer.
25475         * modules/getusershell (Depends-on): Add stdio-safer.
25476         * modules/lstat (Depends-on): Remove xalloc.
25477         * modules/mkstemp (Depends-on): Add stat-macros.
25478         * modules/modechange (Depends-on): Remove xstrtol.
25479         Add stat-macros, xalloc.
25480         * modules/save-cwd (Depends-on): Add unistd-safer.
25481         * modules/stdio-safer (Makefile.am): Remove lib_SOURCES.
25482         * modules/unistd-safer (Files): Add lib/fd-safer.c
25483         (Makefile.am): Remove lib_SOURCES.
25484
25485         * MODULES.html.sh (Enhancements for POSIX:2001 functions):
25486         Remove fcntl-safer; unistd-safer supersedes it.
25487
25488 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
25489
25490         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Don't require
25491         AC_HEADER_STAT.
25492         * m4/lchown.m4 (gl_FUNC_CHOWN): Likewise.
25493         (gl_PREREQ_CHOWN): Remove.
25494         * m4/lstat.m4 (gl_FUNC_LSTAT): Require AC_FUNC_LSTAT instead of calling
25495         it.  Don't require AC_HEADER_STAT.
25496         (gl_PREREQ_LSTAT): Remove.
25497         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Check stdint.h only once.
25498         Don't require AC_HEADER_STAT.
25499         * m4/rmdir.m4 (gl_FUNC_RMDIR): Don't require AC_HEADER_STAT.
25500         (gl_PREREQ_RMDIR): Remove.
25501         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME): Don't
25502         mention stat-macros.h or AC_HEADER_STAT, since we'll make
25503         the stat-macros module a prerequisite.
25504         * m4/file-type.m4 (gl_FILE_TYPE): Likewise.
25505         * m4/filemode.m4 (gl_FILEMODE): Likewise.
25506         * m4/makepath.m4 (gl_MAKEPATH): Likewise.
25507         * m4/modechange.m4 (gl_MODECHANGE): Likewise.
25508         * m4/clock_time.m4 (gl_CLOCK_TIME): Use gl_ rather than fetish_ for
25509         variable names.
25510         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Renamed from
25511         fetish_FUNC_RMDIR_NOTEMPTY.  All uses changed.  Use gl_ for
25512         variable prefixes.
25513         * m4/fcntl-safer.m4: Remove.
25514         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Use AC_LIBSOURCES and AC_LIBOBJ.
25515         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Likewise.
25516         Invoke gl_PREREQ_FD_SAFER.
25517         (gl_PREREQ_FD_SAFER): New macro.
25518         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): Check for siginterrupt.
25519         * m4/readutmp.m4 (gl_READUTMP): Require AC_C_INLINE.
25520         Use AC_CHECK_HEADERS_ONCE and AC_CHECK_FUNCS_ONCE when possible.
25521         Remove duplicate call to AC_LIBOBJ(readutmp).
25522         (gl_PREREQ_READUTMP): Remove.  All uses inlined.
25523
25524         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Check for message, not for
25525         MAP_ANON.  Problem reported by Moriyoshi Koizumi to bug-cvs.
25526
25527 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
25528
25529         * MODULES.html.sh (Misc): Add byteswap.
25530
25531 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
25532
25533         * modules/getcwd (Depends-on): Add extensions.
25534         * modules/openat (Depends-on): Likewise.
25535
25536 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
25537
25538         * modules/byteswap: New file.
25539
25540 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
25541
25542         * m4/byteswap.m4: New file.
25543
25544 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
25545
25546         * lib/byteswap_.h: New file.
25547
25548 2005-04-25  Karl Berry  <karl@gnu.org>
25549
25550         * m4/gettext.m4: Update from GNU gettext 0.14.4.
25551
25552 2005-04-25  Albert Chin  <china@thewrittenword.com>
25553
25554         * lib/regex.c: Include <stdio.h>, as a workaround to a Compaq Desktop
25555         Toolkit C bug.
25556
25557 2005-04-21  Oskar Liljeblad  <oskar@osk.mine.nu>
25558
25559         * gnulib-tool (Options): Add -s for --symlink/--symbolic.
25560         (func_ln_if_changed) Remove forcibly for no error message
25561         in case file does not exist.
25562
25563 2005-04-19  Simon Josefsson  <jas@extundo.com>
25564
25565         * gnulib-tool (Options): Make --symlink mean --symbolic.
25566
25567 2005-04-18  Oskar Liljeblad  <oskar@osk.mine.nu>
25568
25569         * doc/gnulib.texi (Initial import): Fix.  Mention --aux-dir.
25570
25571 2005-04-16  Simon Josefsson  <jas@extundo.com>
25572
25573         * modules/getpass-gnu (Makefile.am): Don't mention getpass.h.
25574
25575 2005-04-15  Simon Josefsson  <jas@extundo.com>
25576
25577         * m4/getpass.m4 (gl_FUNC_GETPASS): Use AC_LIBSOURCES.
25578
25579 2005-04-15  Simon Josefsson  <jas@extundo.com>
25580
25581         * gnulib-tool: Rename --symlink to --symbolic.
25582
25583 2005-04-15  Oskar Liljeblad  <oskar@osk.mine.nu>
25584
25585         * gnulib-tool: Add -s, --symlink option to gnulib-tool to make
25586         symbolic links to files instead of copying/moving.  Add --aux-dir,
25587         specifying directory relative --dir where auxiliary build tools
25588         are placed.
25589
25590 2005-04-14  Bruno Haible  <bruno@clisp.org>
25591
25592         * modules/allocsa (License): Change to LGPL.
25593         Requested by Yoann Vandoorselaere <yoann@prelude-ids.org>.
25594
25595 2005-04-13  Paul Eggert  <eggert@cs.ucla.edu>
25596
25597         * lib/getdate.y (zone): Allow relunit_snumber after tZONE, so
25598         that "UTC +1 second" continues to work.  Problem reported
25599         by Dmitry V. Levin.
25600         (relunit_snumber): New rule.
25601         (relunit): Use it.
25602
25603 2005-04-12  Paul Eggert  <eggert@cs.ucla.edu>
25604
25605         * lib/getdate.y (universal_time_zone_table): New constant.
25606         (time_zone_table): Remove GMT, UT, UTC entries; they're now in
25607         universal_time_zone_table.
25608         (lookup_zone): Prefer universal_time_zone_table to
25609         local_time_zone_table, so that "GMT" time stamps are allowed in
25610         London during the summer.  Problem reported by Ian Abbott.
25611
25612 2005-04-12  Jim Meyering  <jim@meyering.net>
25613
25614         * lib/human.c (humblock): Set *options even when returning due to
25615         xstrtoumax conversion failure.  Thanks to a used-uninitialized
25616         warning from gcc-4.
25617
25618 2005-04-09  Jim Meyering  <jim@meyering.net>
25619
25620         * lib/posixtm.c (posixtime) [lint]: Avoid spurious warning from gcc-4's
25621         -Wuninitialized: initialize tm0.tm_year.
25622
25623 2005-04-04  Paul Eggert  <eggert@cs.ucla.edu>
25624
25625         * lib/getdate.y (parser_control): rels_seen is now a boolean, not a
25626         count, since there's no maximum.  All uses changed.
25627         Add member dsts_seen.
25628         (local_zone): Accumulate dsts_seen rather than relying on tm_isdst
25629         not being INT_MAX.
25630         (get_date): Initialize dsts_seen, and check that it doesn't go over 1.
25631         Use pc_rels_seen to decide whther a date is absolute.
25632
25633         * lib/getdate.y (number): Don't overwrite year.
25634         (get_date): Initialize pc.year.digits to 0, not 4, to enable above
25635         check.
25636
25637 2005-04-02  Simon Josefsson  <jas@extundo.com>
25638
25639         * lib/getaddrinfo.h: Fix OpenBSD compilation failure, inspired by tiny
25640         patch from Yoann Vandoorselaere <yoann@prelude-ids.org>.
25641
25642 2005-03-28  Eric Blake  <ebb9@byu.net>  (tiny change)
25643
25644         * m4/getcwd-path-max.m4: Return success on systems such as Cygwin
25645         where no absolute path name can be longer than PATH_MAX.
25646
25647 2005-03-27  Jim Meyering  <jim@meyering.net>
25648
25649         * lib/argmatch.c: Clarify comment: null-terminated -> NULL-terminated.
25650
25651 2005-03-26  Paul Eggert  <eggert@cs.ucla.edu>
25652
25653         * lib/intprops.h (INT_STRLEN_BOUND, INT_BUFSIZE_BOUND):
25654         "one's complement" -> "ones' complement" in comment, as per Knuth.
25655         "value of type" -> "type or expression" in comment.
25656         * lib/mktime.c, strftime.c: Propagate intprops.h comment nits.
25657
25658 2005-03-26  Jim Meyering  <jim@meyering.net>
25659
25660         Comment nits.
25661         * lib/intprops.h: Add the apostrophe in `(one|two)'s complement'.
25662         Correct typos: s/or/of/.
25663
25664 2005-03-26  Jim Meyering  <jim@meyering.net>
25665
25666         * modules/check-include-files: Move to ../ and rename to...
25667         * check-module: ...this.
25668
25669 2005-03-25  Jim Meyering  <jim@meyering.net>
25670
25671         * modules/xvasprintf (Files): Add xalloc.h.
25672
25673 2005-03-23  Paul Eggert  <eggert@cs.ucla.edu>
25674
25675         * modules/gettext (Files): config/config.rpath ->
25676         build-aux/config.rpath
25677         * modules/iconv (Files): Likewise.
25678         Problem reported by Oskar Liljeblad.
25679
25680 2005-03-23  Jim Meyering  <jim@meyering.net>
25681
25682         * modules/check-include-files: New script to check for
25683         missing dependencies, multiple includes, etc.
25684
25685         * modules/c-strtold (Depends-on): Add xalloc.
25686         * modules/c-strtod (Depends-on): Add xalloc.
25687         * modules/hash (Depends-on): Add xalloc.
25688         (Files): Remove lib/xalloc.h.
25689
25690         * modules/gethrxtime (Files): Add lib/gethrxtime.h.
25691         * modules/userspec (Files): Add lib/inttostr.h.
25692
25693 2005-03-23  Jim Meyering  <jim@meyering.net>
25694
25695         * lib/canonicalize.c: Remove duplicate `#include "stat-macros.h"'.
25696
25697 2005-03-22  Jim Meyering  <jim@meyering.net>
25698
25699         * modules/stat-macros: New module.
25700         * modules/canonicalize, modules/euidaccess, modules/file-type,
25701         * modules/filemode, modules/lchown, modules/makepath,
25702         * modules/rmdir, modules/stat: Depend on new stat-macros module
25703         rather than listing lib/stat-macros.h manually.
25704         Don't add stat-macros.h to lib_SOURCES or list it in Files: section.
25705
25706 2005-03-22  Jim Meyering  <jim@meyering.net>
25707
25708         * m4/stat-macros.m4 (gl_STAT_MACROS): New file/macro.
25709
25710 2005-03-22  Bruno Haible  <bruno@clisp.org>
25711
25712         * config/srclist.txt: Replace target directory 'config' with
25713         'build-aux'.
25714         * config/config.guess, config.sub, config.rpath, depcomp, install-sh:
25715         * config/mdate-sh, missing, mkinstalldirs, texinfo.tex: Move to
25716         ../build-aux/.
25717
25718 2005-03-21  Paul Eggert  <eggert@cs.ucla.edu>
25719
25720         * modules/chdir-long (Depends-on): Add mempcpy.
25721
25722         * modules/acl, modules/backupfile, modules/c-strtod,
25723         modules/c-strtold, modules/canon-host, modules/canonicalize,
25724         modules/cloexec, modules/closeout, modules/dirfd, modules/dirname,
25725         modules/exclude, modules/exitfail, modules/file-type,
25726         modules/filemode, modules/fpending, modules/fsusage, modules/getcwd,
25727         modules/getdate, modules/getline, modules/getpagesize,
25728         modules/getpass, modules/getugroups, modules/group-member,
25729         modules/hard-locale, modules/hash, modules/human, modules/idcache,
25730         modules/inttostr, modules/long-options, modules/makepath,
25731         modules/md5, modules/memcasecmp, modules/memcoll,
25732         modules/modechange, modules/mountlist, modules/path-concat,
25733         modules/pathmax, modules/physmem, modules/posixtm, modules/posixver,
25734         modules/quote, modules/quotearg, modules/readtokens, modules/readutmp,
25735         modules/safe-read, modules/safe-write, modules/same, modules/savedir,
25736         modules/settime, modules/sha1, modules/sig2str, modules/strdup,
25737         modules/strftime, modules/strndup, modules/strverscmp,
25738         modules/timespec, modules/unlocked-io, modules/userspec,
25739         modules/utimecmp, modules/utimens, modules/xalloc, modules/xstrtol,
25740         modules/yesno:
25741         Remove lib_SOURCES line from Makefile.am section, as this is now
25742         done automatically by the corresponding Autoconf macro.
25743
25744 2005-03-21  Jim Meyering  <jim@meyering.net>
25745
25746         Changes imported from coreutils.
25747
25748         * lib/cycle-check.c: Don't include xalloc.h.
25749
25750         * lib/path-concat.c: Don't include assert.h.
25751         (path_concat): Remove assertion that would have triggered
25752         for ABASE starting with more than one slash.
25753         Reported by Andreas Schwab.
25754
25755         * lib/path-concat.c (path_concat): Set *BASE_IN_RESULT
25756         properly when ABASE is an absolute file name.
25757         Correct the description of this function.
25758         Include <assert.h>.
25759         Add an assertion and a test driver.
25760         This fixes a bug introduced on 2004-07-02.
25761         Andreas Schwab reported the resulting failure of cp --parents:
25762         http://lists.gnu.org/archive/html/bug-coreutils/2005-01/msg00130.html
25763
25764 2005-03-21  Jim Meyering  <jim@meyering.net>
25765
25766         * m4/chdir-long.m4 (gl_PREREQ_CHDIR_LONG): Invoke gl_FUNC_MEMRCHR.
25767         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Check for memrchr decl.
25768
25769 2005-03-21  Jim Meyering  <jim@meyering.net>
25770         and  Paul Eggert  <eggert@cs.ucla.edu>
25771
25772         * m4/acl.m4, m4/backupfile.m4, m4/c-strtod.m4, m4/canon-host.m4,
25773         m4/canonicalize.m4, m4/cloexec.m4, m4/closeout.m4, m4/dirfd.m4,
25774         m4/dirname.m4, m4/exclude.m4, m4/exitfail.m4, m4/file-type.m4,
25775         m4/filemode.m4, m4/fpending.m4, m4/fsusage.m4, m4/getcwd.m4,
25776         m4/getdate.m4, m4/getline.m4, m4/getpagesize.m4, m4/getpass.m4,
25777         m4/getugroups.m4, m4/group-member.m4, m4/hard-locale.m4, m4/hash.m4,
25778         m4/human.m4, m4/idcache.m4, m4/inttostr.m4, m4/long-options.m4,
25779         m4/makepath.m4, m4/md5.m4, m4/memcasecmp.m4, m4/memcoll.m4,
25780         m4/modechange.m4, m4/mountlist.m4, m4/nanosleep.m4, m4/path-concat.m4,
25781         m4/pathmax.m4, m4/physmem.m4, m4/posixtm.m4, m4/posixver.m4,
25782         m4/quote.m4, m4/quotearg.m4, m4/readtokens.m4, m4/readutmp.m4,
25783         m4/safe-read.m4, m4/safe-write.m4, m4/same.m4, m4/savedir.m4,
25784         m4/settime.m4, m4/sha1.m4, m4/sig2str.m4, m4/strdup.m4, m4/strftime.m4,
25785         m4/strndup.m4, m4/strverscmp.m4, m4/timespec.m4, m4/unlocked-io.m4,
25786         m4/userspec.m4, m4/utimecmp.m4, m4/utimens.m4, m4/xalloc.m4,
25787         m4/xnanosleep.m4, m4/xstrtol.m4, m4/yesno.m4:
25788         Use AC_LIBSOURCES and AC_LIBOBJ to indicate source and object files
25789         for these modules.
25790
25791 2005-03-18  Paul Eggert  <eggert@cs.ucla.edu>
25792
25793         * lib/strftime.c (my_strftime): If the underlying strftime returns 0
25794         (which shouldn't happen), generate nothing instead of returning 0
25795         immediately, so that nstrftime (NULL, ...) doesn't return 0.
25796
25797 2005-03-16  Bruno Haible  <bruno@clisp.org>
25798
25799         * modules/stdint (Makefile.am): Use HAVE_LONG_LONG_64BIT instead of
25800         HAVE_LONGLONG_64BIT.
25801
25802 2005-03-16  Bruno Haible  <bruno@clisp.org>
25803
25804         * m4/stdint.m4 (gl_STDINT_H): Define HAVE_LONG_LONG_64BIT instead of
25805         HAVE_LONGLONG_64BIT.
25806
25807 2005-03-16  Bruno Haible  <bruno@clisp.org>
25808
25809         * lib/stdint_.h: Use HAVE_LONG_LONG_64BIT instead of
25810         HAVE_LONGLONG_64BIT.
25811
25812 2005-03-15  Paul Eggert  <eggert@cs.ucla.edu>
25813
25814         * lib/strftime.c (my_strftime): Prepend space to format so that we can
25815         reliably distinguish strftime failure from empty output on POSIX
25816         hosts.
25817
25818 2005-03-15  Paul Eggert  <eggert@cs.ucla.edu>
25819
25820         * lib/iconvme.c (SIZE_MAX): New macro, if not already defined.
25821         (iconv_string): Don't guess a size-zero buffer, as that might cause
25822         buffer overrun.  Instead, avoid multiplying by MB_LEN_MAX if the
25823         result would be 'too large', where 'too large' is (heuristically)
25824         the square root of SIZE_MAX, divided by MB_LEN_MAX to allay
25825         overflow concerns.  This will prevent some unwanted malloc failures
25826         when the inputs are very large.
25827
25828 2005-03-15  Karl Berry  <karl@gnu.org>
25829
25830         * config/srclist.txt (config.rpath): from gettext.
25831         * config/config.rpath: update.
25832
25833 2005-03-15  Bruno Haible  <bruno@clisp.org>
25834
25835         * lib/regex.c (byte_re_match_2_internal): Rename local variable 'not'
25836         to 'negate'.
25837
25838         * lib/regex.c (byte_re_match_2_internal): Reduce scope of same_str_p
25839         variable.
25840
25841         * lib/regex.c (EXTEND_BUFFER, regcomp): Cast the realloc/malloc
25842         results.
25843
25844 2005-03-14  Simon Josefsson  <jas@extundo.com>
25845
25846         * lib/timegm.h: Use proper prototype CPP guards, reported by Dave Love
25847         <fx@gnu.org>.
25848
25849 2005-03-14  Paul Eggert  <eggert@cs.ucla.edu>
25850
25851         * lib/mktime.c (TYPE_TWOS_COMPLEMENT, TYPE_ONES_COMPLEMENT,
25852         TYPE_SIGNED_MAGNITUDE, TYPE_MINIMUM, TYPE_MAXIMUM): Sync from
25853         intprops.h.
25854         * lib/strtol.c: Likewise.
25855
25856 2005-03-14  Jim Meyering  <jim@meyering.net>
25857
25858         * lib/strftime.c (my_strftime) [HAVE_STRFTIME && ! (_NL_CURRENT
25859         && HAVE_STRUCT_ERA_ENTRY)]: Initialize the first byte of ubuf[]
25860         to be nonzero so that we (and caller) can detect the difference
25861         between a valid zero-length expansion and an error return, even
25862         when the underlying strftime fails before writing anything into
25863         that location.
25864
25865 2005-03-14  Bruno Haible  <bruno@clisp.org>
25866
25867         * m4/lib-link.m4, gettext.m4, nls.m4, po.m4:
25868         Update from GNU gettext 0.14.3.
25869
25870 2005-03-10  Jim Meyering  <jim@meyering.net>
25871
25872         * m4/save-cwd.m4 (gl_SAVE_CWD): Check for fchdir.
25873
25874 2005-03-10  Jim Meyering  <jim@meyering.net>
25875
25876         * lib/save-cwd.c [!HAVE_FCHDIR]: Define open, fchdir, and chdir_long
25877         so that this module works on systems without fchdir.
25878
25879 2005-03-09  Paul Eggert  <eggert@cs.ucla.edu>
25880
25881         Factor int-properties macros into a single file, except for
25882         glibc-related files.
25883         * lib/intprops.h: New file.
25884         * lib/getloadavg.c: Include it instead of limits.h.
25885         (INT_STRLEN_BOUND): Remove.
25886         * lib/human.c: Include intprops.h.
25887         (group_number): Use INT_STRLEN_BOUND instead of rolling it ourself.
25888         * lib/human.h (LONGEST_HUMAN_READABLE): Use 146/485 rather than
25889         302/1000.
25890         * lib/inttostr.h: Include intprops.h instead of limits.h.
25891         (INT_STRLEN_BOUND, INT_BUFSIZE_BOUND): Remove.
25892         * lib/mktime.c (TYPE_IS_INTEGER, TYPE_TWOS_COMPLEMENT): New macros,
25893         for consistency with intprops.h.
25894         (time_t_is_integer, twos_complement_arithmetic): Use them.
25895         * lib/sig2str.h: Include <signal.h>, intprops.h.
25896         (INT_STRLEN_BOUND): Remove.
25897         * lib/strftime.c (TYPE_SIGNED): Remove.
25898         (INT_STRLEN_BOUND): Switch to same implementation as intprops.h.
25899         * lib/strtol.c: Adjust comments to match intprops.h.
25900         * lib/userspec.c: Include intprops.h.
25901         (TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Remove.
25902         * lib/utimecmp.c, xnanosleep.c, xstrtol.c: Likewise.
25903         * lib/utimecmp.c (utimecmp): Use TYPE_IS_INTEGER, TYPE_TWOS_COMPLEMENT
25904         instead of rolling our own expressions.
25905         * lib/xstrtol.c: Include xstrtol.h first, to test interface.
25906
25907         * lib/strftime.c: Include <stdbool.h>.  Use bool where appropriate,
25908         instead of int.
25909         (my_strftime): Do not mishandle years close to INT_MAX, by doing
25910         the right thing even if adding 1900 would overflow.  Similarly
25911         for tm_mon + 1 and tm_yday + 1.
25912         Make %Y always equivalent to %C%y, and similarly for %G and %g.
25913         (DO_NUMBER, DO_NUMBER_SPACEPAD): Set digits to d, not a conditional.
25914         (DO_SIGNED_NUMBER): New macro.
25915         (my_strftime) [HAVE_TZNAME]: Don't dump core if tp->tm_dst > 1.
25916
25917 2005-03-07  Bruno Haible  <bruno@clisp.org>
25918
25919         * m4/mmap-anon.m4 (MAP_FILE, MAP_FAILED): Remove definitions.
25920
25921 2005-03-07  Bruno Haible  <bruno@clisp.org>
25922
25923         * lib/pagealign_alloc.c (MAP_FILE, MAP_FAILED): Define fallbacks.
25924
25925 2005-03-04  Derek R. Price  <derek@ximbiot.com>
25926
25927         * gnulib-tool (func_cp_if_changed, func_mv_if_changed): New functions.
25928         (func_import): Only replace files via --import when they have actually
25929         changed.
25930
25931 2005-03-03  Derek R. Price  <derek@ximbiot.com>
25932
25933         * m4/mmap-anon.m4: New file.
25934         * m4/pagealign_alloc.m4: New file.
25935
25936 2005-03-03  Derek R. Price  <derek@ximbiot.com>
25937             Bruno Haible  <bruno@clisp.org>
25938
25939         * modules/pagealign_alloc: New file.
25940         * MODULES.html.sh (Memory management functions): Add pagealign_alloc.
25941
25942 2005-03-03  Derek R. Price  <derek@ximbiot.com>
25943             Bruno Haible  <bruno@clisp.org>
25944
25945         * lib/pagealign_alloc.h: New file.
25946         * lib/pagealign_alloc.c: New file.
25947
25948 2005-03-03  Bruno Haible  <bruno@clisp.org>
25949
25950         * m4/inttypes.m4, isc-posix.m4, once-only.m4:
25951         Use an all-permissive copyright notice, recommended by RMS.
25952
25953 2005-03-02  Bruno Haible  <bruno@clisp.org>
25954
25955         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Undo the replacement here. Because
25956         of AIX, the replacement has to be done only after <string.h> is
25957         included, therefore not in config.h. stpncpy.h does the replacement,
25958         and stpncpy.c uses it.
25959
25960 2005-03-02  Bruno Haible  <bruno@clisp.org>
25961
25962         * lib/stpncpy.h (stpncpy): Define as a macro without arguments, so that
25963         stpncpy.c uses it.
25964
25965 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
25966
25967         Remove workaround for bug in Linux kernel 2.6.8 or thereabouts.
25968         The workaround isn't strictly needed for POSIX conformance, and
25969         it's too much of a pain to configure and maintain.  We'll ask
25970         people to fix their kernels instead.
25971         * lib/xnanosleep.c: Don't include gethrxtime.h or xtime.h.
25972         (NANOSLEEP_BUG_WORKAROUND): Remove.
25973         (xnanosleep): Remove the workaround.
25974
25975 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
25976
25977         * modules/gettime (Makefile.am): Remove lib_SOURCES line.
25978         Reported by Derek Price.
25979         (Include): Add "timespec.h".
25980
25981         * modules/xnanosleep (Depends-on): Remove gethrxtime.
25982
25983 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
25984
25985         * m4/xnanosleep.m4 (gl_XNANOSLEEP): Remove configuration attempting
25986         to detect nanosleep bug.
25987
25988 2005-03-01  Bruno Haible  <bruno@clisp.org>
25989
25990         * lib/vasnprintf.c (EOVERFLOW): Define to a fallback if needed.
25991
25992 2005-02-26  Paul Eggert  <eggert@cs.ucla.edu>
25993
25994         * modules/gethrxtime: New file.
25995         * modules/xnanosleep (Files): Add m4/xnanosleep.m4.
25996         (Depends-on): Add gethrxtime.
25997         (configure.ac): Add gl_XNANOSLEEP.
25998         (Makefile.am): Remove lib_SOURCES line.
25999
26000 2005-02-25  Paul Eggert  <eggert@cs.ucla.edu>
26001
26002         * m4/gethrxtime.m4, m4/xnanosleep.m4: New files.
26003         * m4/gettime.m4 (gl_GETTIME): Check for nanotime.
26004
26005 2005-02-25  Paul Eggert  <eggert@cs.ucla.edu>
26006
26007         * lib/gethrxtime.h, lib/gethrxtime.c, lib/xtime.h: New files.
26008         * lib/timespec.h (gettime): Return void, since it always
26009         succeeds now.  All uses changed.
26010         * lib/gettime.c (gettime) Likewise.
26011         [HAVE_NANOTIME]: Prefer nanotime.
26012         Assume gettimeofday succeeds, as POSIX requires.
26013         Assime time () succeeds, since other code already does.
26014         * lib/xnanosleep.c: Include xtime.h and gethrxtime.h, not xalloc.h.
26015         (timespec_subtract): Remove.
26016         (NANOSLEEP_BUG_WORKAROUND): New constant.
26017         (xnanosleep): Use gethrxtime rather than gettime; this simplifies
26018         things considerably.  Use it only on GNU/Linux hosts, since the
26019         workaround shouldn't be needed elsewhere.
26020
26021 2005-02-24  Bruno Haible  <bruno@clisp.org>
26022
26023         * modules/gettext (Files): Add m4/glibc2.m4.
26024
26025 2005-02-24  Bruno Haible  <bruno@clisp.org>
26026
26027         * m4/gettext.m4, intdiv0.m4, intmax.m4, inttypes-pri.m4, lcmessage.m4:
26028         * m4/lib-link.m4, lib-prefix.m4, nls.m4, po.m4, printf-posix.m4:
26029         * m4/progtest.m4:
26030         Update from GNU gettext 0.14.2.
26031         * m4/glibc2.m4: New file, from GNU gettext 0.14.2.
26032
26033 2005-02-24  Bruno Haible  <bruno@clisp.org>
26034
26035         * lib/localcharset.c: Update from GNU gettext 0.14.2.
26036         * lib/config.charset: Update from GNU gettext 0.14.2.
26037
26038 2005-02-24  Bruno Haible  <bruno@clisp.org>
26039
26040         * lib/gettext.h: Update from GNU gettext 0.14.2.
26041
26042 2005-02-23  Simon Josefsson  <jas@extundo.com>
26043
26044         * m4/iconvme.m4: New file.
26045
26046 2005-02-23  Jim Meyering  <jim@meyering.net>
26047
26048         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Revert yesteday's
26049         change.
26050         Thanks to Bruno Haible for catching it.
26051
26052 2005-02-22  Simon Josefsson  <jas@extundo.com>
26053
26054         * modules/iconvme: New file.
26055
26056         * MODULES.html.sh: Add iconvme.
26057
26058 2005-02-22  Simon Josefsson  <jas@extundo.com>
26059
26060         * lib/iconvme.h, lib/iconvme.c: New files, from libc.
26061
26062 2005-02-22  Simon Josefsson  <jas@extundo.com>
26063
26064         * config/srclist.txt: Sync iconvme.h, iconvme.c from libc.
26065
26066 2005-02-22  Jim Meyering  <jim@meyering.net>
26067
26068         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Fix typo:
26069         s/ifndef/ifdef/.
26070
26071 2005-02-20  Neil Conway  <neilc@samurai.com>
26072
26073         * lib/xgethostname.c (xgethostname): Check for ENOMEM, which is
26074         returned by OSX/Darwin if the specified buffer is not large
26075         enough for the hostname.
26076
26077 2005-02-03  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
26078
26079         * lib/argp-help.c (__argp_help): Create a fake struct argp_state and
26080         pass it to _help, otherwise the latter coredumps trying to
26081         dereference state.root_argp.
26082
26083 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
26084
26085         * modules/chdir-long (Depends-on): Add memrchr.
26086         * modules/memrchr (Files): Add lib/memrchr.h.
26087         (Include): "memrchr.h".
26088
26089 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
26090
26091         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Add AC_LIBSOURCES, for memrchr.h.
26092
26093 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
26094
26095         * lib/memrchr.h: New file.
26096         * lib/chdir-long.c: Include it.
26097         * lib/memrchr.c [!defined _LIBC]: Include it rather than <string.h>
26098         Don't bother including stddef.h.
26099
26100 2005-02-01  Paul Eggert  <eggert@cs.ucla.edu>
26101
26102         * lib/mountlist.h (MOUNTLIST_H_): New macro, to protect against double
26103         inclusion.
26104         Include <sys/types.h>, for dev_t.
26105         (ME_DUMMY, ME_REMOTE): Move from here....
26106         * lib/mountlist.c (ME_DUMMY, ME_REMOTE): To here.
26107         (ME_DUMMY): Count "subfs" as a dummy.  Problem reported by
26108         Dmitry V. Levin.
26109         Include mountlist.h first, to test the interface.
26110
26111 2005-01-29  Bruno Haible  <bruno@clisp.org>
26112
26113         * lib/progname.c (program_name): Initialize.
26114         Needed when linking statically on MacOS X.
26115
26116 2005-01-28  Paul Eggert  <eggert@cs.ucla.edu>
26117
26118         Sync from coreutils.
26119         * modules/getloadavg (Files): Remove m4/getloadavg.m4.
26120         (Depends-on): Add c-strtod.
26121         (configure.ac): Replace gl_FUNC_GETLOADAVG with AC_FUNC_GETLOADAVG.
26122
26123 2005-01-28  Paul Eggert  <eggert@cs.ucla.edu>
26124
26125         Sync from coreutils.
26126         * m4/getloadavg.m4, glibc.m4, search-libs.m4: Remove.
26127
26128         Remove files that are specific to coreutils.
26129         * m4/check-decl.m4, jm-macros.m4, lib-check.m4, prereq.m4: Remove.
26130
26131 2005-01-28  Bruno Haible  <bruno@clisp.org>
26132
26133         * modules/javacomp: New file.
26134         * MODULES.html.sh (Java): Add javacomp.
26135
26136 2005-01-28  Bruno Haible  <bruno@clisp.org>
26137
26138         * m4/javacomp.m4: New file, from GNU gettext.
26139
26140 2005-01-28  Bruno Haible  <bruno@clisp.org>
26141
26142         * lib/javacomp.sh.in: New file, from GNU gettext.
26143         * lib/javacomp.h: New file, from GNU gettext.
26144         * lib/javacomp.c: New file, from GNU gettext.
26145
26146 2005-01-26  Simon Josefsson  <jas@extundo.com>
26147
26148         * lib/gai_strerror.c: Use GPL in header.
26149
26150 2005-01-26  Bruno Haible  <bruno@clisp.org>
26151
26152         * modules/javaexec: New file.
26153         * MODULES.html.sh (Java): Add javaexec.
26154
26155 2005-01-26  Bruno Haible  <bruno@clisp.org>
26156
26157         * m4/javaexec.m4: New file, from GNU gettext.
26158
26159 2005-01-26  Bruno Haible  <bruno@clisp.org>
26160
26161         * lib/javaexec.sh.in: New file, from GNU gettext.
26162         * lib/javaexec.h: New file, from GNU gettext.
26163         * lib/javaexec.c: New file, from GNU gettext.
26164
26165 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
26166
26167         * modules/lchown (Depends-on): Remove lchown.h
26168
26169 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
26170
26171         * m4/sysexits.m4 (gl_SYSEXITS): Reverted logic. SYSEXITS_H
26172         must be defined if the header file was not found, in order
26173         to provide a replacement. Reported by Todd Vierling <tv@duh.org>
26174
26175 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
26176
26177         * lib/argp-help.c (hol_entry_help): Avoid using non-constant
26178         initializers for struct pentry_state.
26179         (__argp_error): Check return value of __asprintf
26180         (__argp_failure): Translate error message
26181
26182         * lib/argp-parse.c: Removed braces around the expansion of N_()
26183
26184 2005-01-23  Paul Eggert  <eggert@cs.ucla.edu>
26185
26186         * m4/acl.m4, afs.m4, alloca.m4, argp.m4, assert.m4, atexit.m4,
26187         backupfile.m4, base64.m4, bison.m4, c-bs-a.m4, c-stack.m4,
26188         c-strtod.m4, calloc.m4, canon-host.m4, canonicalize.m4,
26189         clock_time.m4, cloexec.m4, closeout.m4, d-ino.m4, d-type.m4,
26190         dirfd.m4, dirname.m4, dos.m4, dup2.m4, error.m4, euidaccess.m4,
26191         exclude.m4, exitfail.m4, extensions.m4, fcntl-safer.m4,
26192         file-type.m4, fileblocks.m4, filemode.m4, fnmatch.m4, fpending.m4,
26193         free.m4, fstypename.m4, fsusage.m4, ftruncate.m4, getaddrinfo.m4,
26194         getcwd-path-max.m4, getcwd.m4, getdate.m4, getdomainname.m4,
26195         getgroups.m4, gethostname.m4, getline.m4, getndelim2.m4,
26196         getnline.m4, getopt.m4, getpagesize.m4, getpass.m4, getsubopt.m4,
26197         gettime.m4, gettimeofday.m4, getugroups.m4, getusershell.m4,
26198         group-member.m4, hard-locale.m4, hash.m4, host-os.m4, human.m4,
26199         idcache.m4, inttostr.m4, isdir.m4, jm-winsz1.m4, jm-winsz2.m4,
26200         link-follow.m4, long-options.m4, ls-mntd-fs.m4, lstat.m4,
26201         makepath.m4, mathl.m4, md5.m4, memcasecmp.m4, memchr.m4,
26202         memcmp.m4, memcoll.m4, memcpy.m4, memmem.m4, memmove.m4,
26203         memrchr.m4, memset.m4, mkdir-slash.m4, mkstemp.m4, mktime.m4,
26204         modechange.m4, mountlist.m4, nanosleep.m4, obstack.m4,
26205         path-concat.m4, pathmax.m4, perl.m4, physmem.m4, poll.m4,
26206         posixtm.m4, posixver.m4, putenv.m4, quote.m4, quotearg.m4,
26207         readdir.m4, readtokens.m4, readutmp.m4, regex.m4, rename.m4,
26208         restrict.m4, rmdir-errno.m4, rmdir.m4, rpmatch.m4, same.m4,
26209         savedir.m4, settime.m4, sha1.m4, sig2str.m4, snprintf.m4,
26210         sockpfaf.m4, st_dm_mode.m4, st_mtim.m4, stat.m4, stdint.m4,
26211         stdio-safer.m4, strchrnul.m4, strdup.m4, strerror.m4,
26212         strerror_r.m4, strftime.m4, strndup.m4, strnlen.m4, strsep.m4,
26213         strtod.m4, strtoimax.m4, strtok_r.m4, strtol.m4, strtoll.m4,
26214         strtoul.m4, strtoull.m4, strtoumax.m4, strverscmp.m4, sysexits.m4,
26215         time_r.m4, timegm.m4, timespec.m4, tm_gmtoff.m4, tzset.m4,
26216         uint32_t.m4, uintptr_t.m4, unistd-safer.m4, unlink-busy.m4,
26217         unlocked-io.m4, uptime.m4, userspec.m4, utimbuf.m4, utime.m4,
26218         utimecmp.m4, utimens.m4, utimes-null.m4, vsnprintf.m4, xalloc.m4,
26219         xgetcwd.m4, xreadlink.m4, xstrndup.m4, xstrtod.m4, xstrtoimax.m4,
26220         xstrtol.m4, xstrtoumax.m4, yesno.m4:
26221         Use an all-permissive copyright notice, recommended by RMS.
26222
26223 2005-01-21  Paul Eggert  <eggert@cs.ucla.edu>
26224
26225         * modules/chdir-long (Depends-on): Remove mempcpy.
26226
26227 2005-01-21  Jim Meyering  <jim@meyering.net>
26228
26229         * lib/openat.h (AT_SYMLINK_NOFOLLOW): Define to 4096, so it's the
26230         same value as for Solaris 9.
26231
26232         * lib/chdir-long.c (chdir_long): Rewrite to remove limitation on
26233         component length.  This included changing the parameter to be
26234         of type `char *' rather than `char const *'.
26235         * lib/chdir-long.h (chdir_long): Update prototype.
26236
26237         * lib/openat.c (fdopendir, fstatat): New functions.
26238         * lib/openat.h: Include headers required for use of DIR and struct
26239         stat.
26240         [AT_SYMLINK_NOFOLLOW]: Define.
26241         (fdopendir, fstatat): Add prototypes.
26242
26243 2005-01-21  Bruno Haible  <bruno@clisp.org>
26244
26245         * modules/classpath: New file.
26246         * MODULES.html.sh (Java): Add classpath.
26247
26248 2005-01-21  Bruno Haible  <bruno@clisp.org>
26249
26250         * lib/classpath.h: New file, from GNU gettext.
26251         * lib/classpath.c: New file, from GNU gettext.
26252
26253 2005-01-20  Simon Josefsson  <jas@extundo.com>
26254
26255         * modules/version-etc-fsf: New file.
26256
26257 2005-01-20  Simon Josefsson  <jas@extundo.com>
26258
26259         * lib/version-etc-fsf.c: New file, with version_etc_copyright.
26260         * lib/version-etc.c: Remove version_etc_copyright.
26261         * lib/version-etc.h (version_etc_copyright): Use [] instead of * in
26262         prototype, suggested by Paul Eggert <eggert@CS.UCLA.EDU>.
26263
26264 2005-01-20  Simon Josefsson  <jas@extundo.com>
26265
26266         * lib/base64.h (isbase64): Add.
26267
26268         * lib/base64.c (isb64): Rename to isbase64, use to_uchar instead of
26269         using a unsigned prototype, don't inline.
26270         (base64_decode): Use it.
26271
26272 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
26273
26274         * m4/save-cwd.m4 (gl_SAVE_CWD): Remove check for fcntl; we now assume
26275         it.
26276
26277 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
26278
26279         * lib/save-cwd.c (save_cwd): Remove code to support the case
26280         where fchdir is missing or flaky.
26281
26282 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
26283
26284         * MODULES.html.sh (Command-line arguments): Add version-etc-fsf.
26285
26286 2005-01-19  Paul Eggert  <eggert@cs.ucla.edu>
26287
26288         * modules/mempcpy (Makefile.am): Remove mention of mempcpy.h;
26289         AC_LIBSOURCES now does this.
26290         * MODULES.html.sh (Sizes of integer types <limits.h>): New element,
26291         with new ullong_max module.
26292
26293 2005-01-19  Bruno Haible  <bruno@clisp.org>
26294
26295         * modules/sh-quote: New file.
26296         * MODULES.html.sh (Executing programs): Add sh-quote.
26297
26298 2005-01-19  Bruno Haible  <bruno@clisp.org>
26299
26300         * lib/sh-quote.h: New file, from GNU gettext.
26301         * lib/sh-quote.c: New file, from GNU gettext.
26302
26303 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
26304
26305         Merge from coreutils.
26306         * m4/ullong_max.m4: New file.
26307         * m4/jm-macros.m4 (gl_MACROS): Require gl_ULLONG_MAX.
26308         (gl_MACROS): Assume localeconv exists.
26309
26310 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
26311
26312         Merge changes from coreutils, as described below in several
26313         changelogs dated today.
26314
26315         * lib/save-cwd.c: Include "save-cwd.h" before other include files.
26316         (O_DIRECTORY): Remove; not needed here, since "." must be
26317         a directory.  All uses removed.
26318         (save_cwd): Use __sgi || __sun, not sun || __sun.  __sun is
26319         universal on Suns, and we also need to test for IRIX.
26320         Revamp code to use 'if' rather than '#if'.
26321         Avoid unnecessary comparison of cwd->desc to 0.
26322
26323         * lib/utimens.c (futimens): Robustify the previous patch, by checking
26324         for known valid error numbers rather than observed invalid ones.
26325
26326 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
26327
26328         * modules/ullong_max: New file.
26329
26330         * modules/chdir-long, modules/openat: New files.
26331         * modules/save-cwd (Depends-on): Depend on chdir-long.
26332         (Makefile.am): Remove lib_SOURCES; now handled by AC_LIBSOURCES.
26333
26334 2005-01-18  Jim Meyering  <jim@meyering.net>
26335
26336         Merge from coreutils.
26337         * m4/chdir-long.m4, m4/openat.m4: New files.
26338         * m4/save-cwd.m4 (gl_SAVE_CWD): Add AC_LIBSOURCES for save-cwd.c,
26339         save-cwd.h.  Add AC_LIBOBJ for save-cwd.
26340         * m4/chown.m4 (gl_FUNC_CHOWN): When cross-compiling, assume that chown
26341         is sane and DOES follow symlinks.  Besides, testing 20 different
26342         systems found no broken chown implementations.
26343         Prompted by a change in rsync's copy of this macro.
26344         * m4/jm-macros.m4 (gl_MACROS): Require gl_FUNC_CHDIR_LONG.
26345
26346         * m4/lchown.m4 (gl_FUNC_LCHOWN): Use AC_LIBSOURCES.
26347
26348         * m4/utimes.m4: Work around tests/touch/empty-file failure on a system
26349         (sparc64, Linux-2.4.28, glibc-2.3.3) that didn't honor utimes'
26350         NULL-means-set-to-current-time semantics.
26351         Remove temporary file immediately, rather than waiting
26352         for configure's at-exit trap code to do it.
26353
26354 2005-01-18  Jim Meyering  <jim@meyering.net>
26355
26356         * lib/version-etc.c (version_etc_copyright): Update copyright date.
26357
26358         * lib/utimens.c (futimens): Account for the fact that futimes
26359         can also fail with errno == ENOSYS or errno == ENOENT.
26360         Patch from Dmitry V. Levin.
26361
26362         Change the name of the robust chdir function from chdir to chdir_long.
26363         * lib/save-cwd.c: Include chdir-long.h rather than chdir.h.
26364         (restore_cwd): Use chdir_long, not chdir.
26365         * lib/chdir-long.c: Renamed from chdir.c.
26366         * lib/chdir-long.h: Renamed from chdir.h.
26367         [!defined PATH_MAX]: Define chdir_long to chdir on systems like the
26368         Hurd.
26369
26370 2005-01-18  Bruno Haible  <bruno@clisp.org>
26371
26372         * m4/allocsa.m4, m4/codeset.m4, m4/copy-file.m4, m4/eaccess.m4:
26373         * m4/eealloc.m4, m4/eoverflow.m4, m4/execute.m4, m4/fatal-signal.m4:
26374         * m4/findprog.m4, m4/glibc21.m4, m4/iconv.m4, m4/intmax_t.m4:
26375         * m4/inttypes_h.m4, m4/lib-ld.m4, m4/lib-link.m4, m4/lib-prefix.m4:
26376         * m4/linebreak.m4, m4/localcharset.m4, m4/longdouble.m4:
26377         * m4/longlong.m4, m4/mbrtowc.m4, m4/mbstate_t.m4, m4/mbswidth.m4:
26378         * m4/mkdtemp.m4, m4/pipe.m4, m4/readlink.m4, m4/safe-read.m4:
26379         * m4/safe-write.m4, m4/setenv.m4, m4/sig_atomic_t.m4:
26380         * m4/signalblocking.m4, m4/signed.m4, m4/size_max.m4, m4/ssize_t.m4:
26381         * m4/stdbool.m4, m4/stdint_h.m4, m4/stpcpy.m4, m4/stpncpy.m4:
26382         * m4/strcase.m4, m4/strcspn.m4, m4/strpbrk.m4, m4/strstr.m4:
26383         * m4/ucs4-utf.m4, m4/uintmax_t.m4, m4/ulonglong.m4, m4/unicodeio.m4:
26384         * m4/utf-ucs4.m4, m4/vasnprintf.m4, m4/vasprintf.m4:
26385         * m4/wait-process.m4, m4/wchar_t.m4, m4/wint_t.m4, m4/xsize.m4:
26386         Use an all-permissive copyright notice, recommended by RMS.
26387
26388 2005-01-18  Bob Proulx  <bob@proulx.com>
26389
26390         * lib/obstack.c [DEFAULT_ALIGNMENT]: Use an intermediate type to
26391         simplify offsetof() macro construct to avoid compile failure with
26392         native HP-UX 11.0 ANSI C compiler.
26393
26394 2005-01-17  Bruno Haible  <bruno@clisp.org>
26395
26396         * lib/stpncpy.c: Remove HAVE_STPNCPY and gnu_stpncpy renaming,
26397         redundant because stpncpy.m4 takes care of it.
26398
26399 2005-01-17  Bruno Haible  <bruno@clisp.org>
26400
26401         * lib/progreloc.c: Include xalloc.h instead of xmalloc.h.
26402
26403 2005-01-17  Bruno Haible  <bruno@clisp.org>
26404
26405         * lib/progreloc.c (xstrdup): Define as strdup if no xmalloc should be
26406         used.
26407
26408 2005-01-17  Bruno Haible  <bruno@clisp.org>
26409
26410         * lib/fwriteerror.h (fwriteerror): Change specification to include
26411         fclose.
26412         * lib/fwriteerror.c: Include <stdbool.h>.
26413         (fwriteerror): At the end, close the file stream. Record whether
26414         stdout was already closed.
26415
26416 2005-01-17  Bruno Haible  <bruno@clisp.org>
26417
26418         * lib/execute.c (environ): Declare if needed.
26419         * lib/pipe.c (environ): Likewise.
26420         Reported by Michael Schloh von Bennewitz <michael.schloh@cw.com>.
26421
26422 2005-01-11  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
26423
26424         * modules/argp: Depend on vsnprintf
26425
26426 2005-01-10  Jim Meyering  <jim@meyering.net>
26427
26428         * modules/closeout (Depends-on): Add atexit.
26429
26430 2005-01-06  Bruno Haible  <bruno@clisp.org>
26431
26432         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Rename stpncpy to gnu_stpncpy here.
26433
26434 2005-01-04  Paul Eggert  <eggert@cs.ucla.edu>
26435
26436         * lib/human.c (SIZE_MAX, UINTMAX_MAX): Move these conditional
26437         definitions to be after all include files, to avoid collisions.
26438         Problem reported by Bob Proulx.
26439
26440 2005-01-04  Jim Meyering  <jim@meyering.net>
26441
26442         Changes imported from coreutils.
26443         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Rather than using "conftestXXXXXX"
26444         as the mkstemp template, use a temporary directory and an
26445         8.3-friendly template to avoid trouble on systems like DJGPP.
26446         Reported by Juan M. Guerrero via Stepan Kasal.
26447         * m4/(gl_FUNC_MKSTEMP): Include <unistd.h> for the declaration of
26448         close. Remove the temporary directory right away, rather than waiting
26449         for configure's at-exit trap code to do it.
26450         Suggestion from Stepan Kasal.
26451
26452 2005-01-01  Simon Josefsson  <jas@extundo.com>
26453
26454         * gnulib-tool: Print #include directives when --import'ing.
26455
26456 2004-12-28  Simon Josefsson  <jas@extundo.com>
26457
26458         * tests/test-base64.c: Include required header files.  Remove
26459         unused variables.
26460
26461 2004-12-28  Paul Eggert  <eggert@cs.ucla.edu>
26462
26463         * modules/error (Depends-on): Remove gettext.
26464
26465 2004-12-28  Paul Eggert  <eggert@cs.ucla.edu>
26466
26467         * lib/error.c [!_LIBC && !ENABLE_NLS]: Do not include "gettext.h";
26468         not needed.  This removes a dependency on the gettext module.
26469         [defined _LIBC]: Do not include <libintl.h>; not needed.
26470
26471 2004-12-24  Paul Eggert  <eggert@cs.ucla.edu>
26472
26473         * m4/c-strtod.m4 (gl_C99_STRTOLD): New macro.
26474         (gl_C_STRTOD): Use it instead of AC_CHECK_DECLS_ONCE(strtold).
26475
26476 2004-12-24  Paul Eggert  <eggert@cs.ucla.edu>
26477
26478         * lib/c-strtod.c (STRTOD): Depend on HAVE_C99_STRTOLD, not
26479         HAVE_DECL_STRTOLD.
26480
26481 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
26482
26483         * modules/getdate (Depends-on): Remove alloca-opt.
26484
26485 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
26486
26487         * m4/getdate.m4 (gl_GETDATE): Remove AC_FUNC_ALLOCA.
26488
26489 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
26490
26491         * lib/argp-parse.c: Include <stddef.h>.
26492         (alignof, alignto): New macros.
26493         (parser_init): Don't assume that void * is aligned sufficiently
26494         for struct option.
26495
26496         * lib/getdate.y (YYSTACK_USE_ALLOCA): Define to 0, since there's no
26497         need to extend the stack.
26498         (YYINITDEPTH): New macro, so that the initial stack isn't overly
26499         large.
26500
26501 2004-12-22  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
26502
26503         * lib/argp-parse.c (parser_init): Avoid arithmetics on void pointers.
26504
26505 2004-12-19  Paul Eggert  <eggert@cs.ucla.edu>
26506
26507         * modules/regex (lib_SOURCES): Remove regex.c, undoing previous
26508         (2004-10-24) change.  Apparently this was a false alarm.
26509
26510         * modules/getdate: Depend on alloca-opt, not alloca.
26511
26512 2004-12-19  Paul Eggert  <eggert@cs.ucla.edu>
26513
26514         * lib/alloca_.h: Conditionalize on _GNULIB_ALLOCA_H, not _ALLOCA_H.
26515         Remove now-obsolete comment about AIX.
26516         * lib/getdate.y: Include <alloca.h> only if HAVE_ALLOCA.
26517         (YYSTACK_USE_ALLOCA): Define to 0 if !HAVE_ALLOCA.
26518         (YYMAXDEPTH): New macro.
26519
26520 2004-12-18  Simon Josefsson  <jas@extundo.com>
26521
26522         * modules/alloca: Depend on alloca-opt, instead of duplicating it.
26523
26524 2004-12-18  Bruno Haible  <bruno@clisp.org>
26525
26526         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Also test for sigaction.
26527
26528 2004-12-18  Bruno Haible  <bruno@clisp.org>
26529
26530         * lib/fatal-signal.c (fatal_signals): Make non-const.
26531         (init_fatal_signals): New function.
26532         (uninstall_handlers, install_handlers): Ignore signals that were set to
26533         SIG_IGN.
26534         (at_fatal_signal): Call init_fatal_signals.
26535         (init_fatal_signal_set): Likewise. Ignore signals that were set to
26536         SIG_IGN.
26537         Reported by Paul Eggert.
26538
26539 2004-12-18  Bruno Haible  <bruno@clisp.org>
26540
26541         * doc/alloca.texi: New file.
26542         * doc/alloca-opt.texi: New file.
26543
26544 2004-12-17  Jim Meyering  <jim@meyering.net>
26545
26546         * config/install-sh: Use `(exit N); exit N', not `(exit N); exit'.
26547         Otherwise, install-sh could exit with improper exit status when
26548         exiting via a trapped interrupt.  Thanks to a report from Bob Proulx.
26549
26550 2004-12-16  Simon Josefsson  <jas@extundo.com>
26551
26552         * tests/test-base64.c: Add license.
26553
26554 2004-12-15  Stepan Kasal  <address@hidden>
26555
26556         * gnulib-tool (func_emit_lib_Makefile_am): Shorten a long sed command.
26557
26558 2004-12-12  Paul Eggert  <eggert@cs.ucla.edu>
26559
26560         * modules/getcwd (Files): Add m4/d-ino.m4.
26561         Suggested by Mark D. Baushke.
26562
26563 2004-12-08  Paul Eggert  <eggert@cs.ucla.edu>
26564
26565         * lib/getdate.y (textint): New member "negative".
26566         (time_zone_hhmm): New function.
26567         Expect 14 shift-reduce conflicts, not 13.
26568         (o_colon_minutes): New rule.
26569         (time, zone): Use it to add support for +HH:MM, UTC+HH:MM.
26570         (yylex): Set the "negative" member of signed numbers.
26571
26572 2004-12-08  Paul Eggert  <eggert@cs.ucla.edu>
26573
26574         * doc/getdate.texi (Time of day items, Time zone items):
26575         Describe new formats +00:00, UTC+00:00.
26576
26577 2004-12-07  Paul Eggert  <eggert@cs.ucla.edu>
26578
26579         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): Fix typo in previous change:
26580         spurious "-l"s.  Problem reported by Stepan Kasal.
26581
26582 2004-12-06  Paul Eggert  <eggert@cs.ucla.edu>
26583
26584         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): New macro, to work around bug
26585         in Autoconf 2.59.  Problem reported by Mark D. Baushke.
26586
26587 2004-12-04  Simon Josefsson  <jas@extundo.com>
26588
26589         * modules/getaddrinfo (License): Add LGPL, reported by Yoann
26590         Vandoorselaere <yoann@prelude-ids.org>.
26591
26592 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
26593
26594         Changes imported from coreutils.
26595         * m4/hard-locale.m4 (gl_HARD_LOCALE): Assume locale.h and setlocale
26596         exist.
26597         * m4/human.m4 (gl_HUMAN): Assume locale.h and localeconv exist.
26598
26599 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
26600
26601         Changes imported from coreutils.
26602         * lib/hard-locale.c: Assume <locale.h> exists.
26603         Include "strdup.h".
26604         (GLIBC_VERSION): New macro.
26605         (hard_locale): Assume setlocale exists.
26606         Rewrite to avoid #ifdef.
26607         Use strdup rather than malloc + strcpy.
26608         * lib/human.c: Assume <locale.h> exists.
26609         (human_readable): Assume localeconv exists.
26610
26611 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
26612
26613         * modules/hard-locale (Depends-on): Add strdup.
26614
26615 2004-12-01  Jakub Jelinek  <jakub@redhat.com>
26616
26617         * lib/mktime.c (__mktime_internal): If SEC_REQUESTED != SEC,
26618         convert T2, not T.  (Imported from libc.)
26619
26620 2004-11-30  Simon Josefsson  <jas@extundo.com>
26621
26622         * modules/restrict (License): Change to LGPL.
26623
26624 2004-11-30  Simon Josefsson  <jas@extundo.com>
26625
26626         * m4/restrict.m4: Add copyright and copying conditions.
26627
26628 2004-11-30  Simon Josefsson  <jas@extundo.com>
26629
26630         * m4/base64.m4: New file.
26631
26632 2004-11-30  Simon Josefsson  <jas@extundo.com>
26633
26634         * MODULES.html.sh (Extra functions based on ANSI C 89): Add
26635         base64.
26636
26637         * tests/test-base64.c: New file.
26638
26639         * modules/base64: New file.
26640
26641 2004-11-30  Paul Eggert  <eggert@cs.ucla.edu>
26642
26643         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX):
26644         Define HAVE_PARTLY_WORKING_GETCWD if getcwd is partly working.
26645
26646         * m4/readutmp.m4 (gl_READUTMP): Don't check for sys/param.h.
26647
26648 2004-11-30  Paul Eggert  <eggert@cs.ucla.edu>
26649
26650         * lib/getcwd.c (is_ENAMETOOLONG): New macro.
26651         (__getcwd.c): Don't restore errno; glibc doesn't.
26652         [HAVE_PARTLY_WORKING_GETCWD && !defined AT_FDCWD]: Try system getcwd
26653         first, falling back to our code only if its results look suspicious.
26654         Ensure that the resulting buffer is only as large as necessary.
26655
26656         * lib/readutmp.c: Include readutmp.h first.
26657         Include <errno.h>, since readutmp.h no longer does that.
26658         * lib/readutmp.h: Don't include <errno.h>,
26659         <sys/param.h>, <time.h>; not needed to establish interface.
26660         (errno): Remove decl.
26661         (HAVE_STRUCT_XTMP_UT_TYPE): Remove; no longer needed.
26662         (UT_TYPE_EQ, UT_TYPE_NOT_DEFINED, UT_TYPE_BOOT_TIME,
26663         UT_TYPE_USER_PROCESS, IS_USER_PROCESS): New macros.
26664
26665 2004-11-28  Simon Josefsson  <jas@extundo.com>
26666
26667         * lib/base64.h, base64.c: New file.
26668
26669 2004-11-27  Paul Eggert  <eggert@cs.ucla.edu>
26670
26671         * lib/getcwd.h: New file, which I forgot to check in on 2004-11-25.
26672
26673 2004-11-26  Paul Eggert  <eggert@cs.ucla.edu>
26674
26675         * modules/getcwd (Files): Add lib/getcwd.h, m4/getcwd.m4.
26676         (Depends-on): Remove pathmax, same.  Add mempcpy.
26677         (configure.ac): GL_FUNC_GETCWD_PATH_MAX -> gl_FUNC_GETCWD.
26678         (Makefile.am): Append getcwd.h to lib_SOURCES.
26679         (Include): Add getcwd.h.
26680         (Maintainer): Change from Jim Meyering to "all, glibc",
26681         since getdate now uses intended-for-glibc code.
26682         * modules/xgetcwd (Files): Remove m4/getcwd.m4.
26683         (Depends-on): Depend on getcwd.  Do not depend on pathmax.
26684
26685 2004-11-25  Paul Eggert  <eggert@cs.ucla.edu>
26686
26687         Fix problems reported by Scott S. Tinsley for HP-UX 11.11 using
26688         HP's ANSI C compiler.
26689         * lib/fsusage.c (statvfs) [HAVE_SYS_STATVFS_H]: Remove decl.
26690         Declaring int functions causes warnings on some modern systems and
26691         shouldn't be needed to compile on ancient ones.
26692         * lib/same.c (MIN) [defined MIN]: Don't define, since it's already
26693         defined.
26694
26695         * lib/getcwd.c: Replace by a copy of glibc/sysdeps/posix/getcwd.c, but
26696         with the following changes.
26697         (__set_errno): Parenthesize properly.
26698         Include <stdbool.h>.
26699         (MIN, MAX, MATCHING_INO): New macros.
26700         (__getcwd): Define with prototype, not K&R form.
26701         Use heuristics to allocate default buffer on stack if possible.
26702         If AT_FDCWD is defined, use openat and fstatat to avoid O(N**2)
26703         behavior, and to avoid the PATH_MAX limit when computing
26704         ../../../../...
26705         Use MATCHING_INO to compare inode number to file.
26706         Check for arithmetic overflow in size calculations.
26707         Fix bug in reallocation of dot array that caused getcwd to fail
26708         on directories nested deeper than 75.
26709         Be more careful about saving errno on error.
26710         Do not use realloc; use only free+malloc, as this is a bit
26711         more flexible and avoids a needless copy operation.
26712         Do not inspect st_dev and st_ino for symbolic links; POSIX
26713         doesn't specify the latter.
26714         Check for closedir errors.
26715         Avoid needless casts.
26716         Use "#ifdef weak_alias" around weak_alias, to be like other
26717         glibc code.
26718         The following changes to getcwd.c have effect only when used in
26719         gnulib; they have no effect inside glibc proper.
26720         (#pragma alloca) [defined _AIX && !defined __GNUC__]: Remove,
26721         as alloca isn't used.
26722         (alloca, __alloca): Likewise.
26723         [!_LIBC]: Include "getcwd.h", "mempcpy.h".
26724         Include <stddef.h>, <stdlib.h>, <string.h>, <limits.h>
26725         unconditionally, as gnulib assumes C89 or better.
26726         Do not include <sys/param.h>.
26727         (errno) [!defined __GNU_LIBRARY__ && !defined STDC_HEADERS]: Remove
26728         no-longer-necessary 'extern int errno' decl; gnulib assumes C89 or
26729         better.
26730         (NULL) [!defined NULL]: Remove; we assume C89 or better.
26731         Include <dirent.h> in a way that is compatible with modern Autoconf.
26732         (_D_ALLOC_NAMELEN, _D_EXACT_NAMLEN):
26733         New macros, if not already defined.
26734         Include <unistd.h> if _LIBC, not if __GNU_LIBRARY__.
26735         Use "_LIBC", not "defined _LIBC", for consistency.
26736         (HAVE_MEMPCPY): Remove; no longer needed now that gnulib has
26737         a mempcpy module.
26738         (__lstat, __closedir, __opendir, __readdir) [!_LIBC]: New macros.
26739         (GETCWD_RETURN_TYPE): Remove.  All uses replaced by char *.
26740         * lib/xgetcwd.c: David MacKenzie's old code was removed, so give
26741         credit only to Jim Meyering and adjust the copyright dates.
26742         Do not include <limits.h>, <stdio.h>, <sys/types.h>,
26743         <stdlib.h>, <unistd.h>, "pathmax.h".
26744         Instead, include "xgetcwd.h" (first) and "getcwd.h".
26745         (INITIAL_BUFFER_SIZE): Remove.
26746         (xgetcwd): Rely on getcwd, since we now depend on a reliable one.
26747
26748 2004-11-25  Paul Eggert  <eggert@cs.ucla.edu>
26749
26750         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Renamed from
26751         GL_FUNC_GETCWD_PATH_MAX for consistency.  All uses changed.
26752         Use the _ONCE methods, for efficiency.
26753         Check for fcntl.h.  In test program, include <errno.h>
26754         and <fcntl.h> if available.  Remove old K&R cruft from
26755         test program.  Check for common errors in GNU/Linux,
26756         OpenBSD, and Solaris.  Just set gl_cv_func_getcwd_path_max;
26757         don't do AC_LIBOBJ, as that's getcwd.m4's job.
26758         * m4/getcwd.m4 (gl_FUNC_GETCWD_NULL): Renamed from
26759         AC_FUNC_GETCWD_NULL.  All used changed.  Change cache variable
26760         name accordingly.
26761         (gl_FUNC_GETCWD, gl_PREREQ_GETCWD): New macros.  Revamp to
26762         accommodate new getcwd.c.
26763         * m4/jm-macros.m4 (gl_MACROS): Don't require GL_FUNC_GETCWD_PATH_MAX.
26764         * m4/prereq.m4 (gl_PREREQ): Add gl_FUNC_MEMPCPY.
26765         * m4/xgetcwd.m4 (gl_XGETCWD): Replace with gl_FUNC_GETCWD, since
26766         that's all we need now.
26767
26768 2004-11-23  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
26769
26770         * m4/argp.m4 (gl_ARGP): Require gl_GETOPT_SUBSTITUTE unconditionally:
26771         argp-parse.c depends on getopt internals, that means we should
26772         always use our getopt, to be on the safe side.
26773         * m4/getopt.m4 (gl_GETOPT): Check if GETOPT_H is already set, in
26774         order not to spoil the result of an eventual previous invocation
26775         of gl_GETOPT_SUBSTITUTE.
26776
26777 2004-11-23  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
26778
26779         * lib/getopt_.h: Re-addition of __getopt_argv_const caused
26780         redefinition warnings. To avoid them, include the defines
26781         in `#if !defined __need_getopt ... #endif'. The only place
26782         where __getopt_argv_const is used is in definitions
26783         of getopt_long and getopt_long_only below, which are as well
26784         protected by `#ifndef __need_getopt'.
26785         [defined __GETOPT_PREFIX && !defined __need_getopt]: Undef
26786         __need_getopt after including <stdio.h> and <unistd.h> These
26787         headers might have defined it.
26788
26789 2004-11-23  Paul Eggert  <eggert@cs.ucla.edu>
26790
26791         * m4/utimens.m4 (gl_UTIMENS): Check for futimes function.
26792
26793 2004-11-23  Paul Eggert  <eggert@cs.ucla.edu>
26794
26795         * lib/utimens.c (__attribute__, ATTRIBUTE_UNUSED): New macros.
26796         (futimens): New function, which uses futimes if available.
26797         (futimens, utimens): Support timespec==NULL, with same semantics
26798         as utime and utimens.
26799         * lib/utimens.h (futimens): New decl.
26800
26801 2004-11-23  Jim Meyering  <jim@meyering.net>
26802
26803         * lib/getopt_.h: Remove trailing blanks.
26804
26805 2004-11-23  Jim Meyering  <jim@meyering.net>
26806
26807         * lib/__fpending.c: Add comment.
26808
26809 2004-11-22  Paul Eggert  <eggert@cs.ucla.edu>
26810
26811         * modules/canonicalize (Depends-on): Add xreadlink.
26812         Problem reported by James Youngman.
26813
26814 2004-11-20  Paul Eggert  <eggert@cs.ucla.edu>
26815
26816         * lib/getopt_.h (__GETOPT_CONCAT, __GETOPT_XCONCAT, __GETOPT_ID):
26817         New macros.
26818         (getopt, getopt_long, getopt_long_only, optarg, opterr, optind,
26819         optopt): Use them instead of invoking ## directly; otherwise, the
26820         symbols will be __GETOPT_PREFIXgetopt rather than rpl_getopt.
26821
26822 2004-11-19  Bruno Haible  <bruno@clisp.org>
26823
26824         * lib/strtok_r.c: Move comments from here...
26825         * lib/strtok_r.h: ... to here.
26826
26827 2004-11-17  Paul Eggert  <eggert@cs.ucla.edu>
26828
26829         * m4/calloc.m4 (_AC_FUNC_CALLOC_IF): Check for buggy calloc
26830         implementations that mishandle size_t overflow.
26831
26832 2004-11-17  Paul Eggert  <eggert@cs.ucla.edu>
26833
26834         * lib/realloc.c (rpl_realloc): Call 'free' if n==0, since realloc
26835         might fail.  Problem reported by Yoann Vandoorselaere.
26836         * lib/calloc.c (rpl_calloc): Defend against buggy calloc
26837         implementations that mishandle size_t overflow.
26838
26839 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
26840
26841         * modules/canon-host (Depends-on): Add strdup.
26842
26843 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
26844
26845         * m4/canon-host.m4 (gl_CANON_HOST): Check for getaddrinfo.
26846
26847 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
26848
26849         * lib/canon-host.c: Include "strdup.h".
26850         (canon_host): Use getaddrinfo if available, so that IPv6 works.
26851         Use strdup instead of malloc/strcpy to duplicate strings.
26852
26853         * lib/human.h (LONGEST_HUMAN_READABLE): Add 1 for space before unit.
26854         (human_space_before_unit): New constant.
26855         * lib/human.c (human_readable): Support it.
26856
26857         * lib/xgetcwd.c: Include <limits.h>, for PATH_MAX.
26858         (xgetcwd): Set errno correctly when failing.
26859         Work around Solaris 9 bug: getcwd sets errno==ERANGE even though
26860         the failure is actually due to a PATH_MAX problem.
26861
26862         Further getopt changes to make it more likely that glibc will
26863         buy the changes back.
26864         * lib/getopt.c (POSIXLY_CORRECT): New constant.
26865         (getopt): Use it, so to preserve glibc semantic
26866         * lib/getopt1.c (getopt_long, getopt_long_only): Arg is char * const *
26867         when compiling for libc.
26868         * lib/getopt_.h (__getopt_argv_const): Bring it back.
26869         (getopt_long, getopt_long_only): Use it.
26870
26871         * lib/getopt.c (_getopt_initialize, _getopt_internal_r,
26872         _getopt_internal): New arg POSIXLY_CORRECT.  All callers changed.
26873         (getopt): Argv is now char * const *, as per standard.
26874         (_getopt_internal_r, _getopt_internal): Argv is now char **,
26875         not char *__getopt_argv_const *.
26876         * lib/getopt1.c (getopt_long, _getopt_long_r, getopt_long_only,
26877         _getopt_long_only_r): Likewise.
26878         * lib/getopt_.h (getopt, getopt_long, geopt_long_only): Likewise.
26879         * lib/getopt_int.h (_getopt_internal, _getopt_internal_r,
26880         _getopt_long_r, _getopt_long_only_r): Likewise.
26881         * lib/getopt_.h (__getopt_argv_const): Remove.
26882         (getopt): Argv is now char * const *, as per standard.
26883
26884         * lib/getdate.y (tORDINAL): New token.
26885         (day, relunit): Allow it for relative times.
26886         (relative_time_table): Use tORDINAL for ordinals.
26887
26888 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
26889
26890         * doc/getdate.texi (General date syntax): "next" is 1, not 2.
26891         Document that "second" isn't allowed as an ordinal number.
26892
26893 2004-11-16  Jim Meyering  <jim@meyering.net>
26894
26895         * modules/closeout (Depends-on): Add fpending.
26896
26897 2004-11-15  Jim Meyering  <jim@meyering.net>
26898
26899         * lib/closeout.c: Include "__fpending.h" once again.
26900         Include <stdbool.h>.
26901         (close_stdout): Don't fail just because stdout was closed initially,
26902         since some programs don't write to stdout in the normal course of
26903         operation (other than --version and --help), and we don't want this
26904         function to make e.g. `touch file >&-' fail.
26905         But do fail if it was closed and someone has tried to write to it.
26906         E.g., `printf foo >&-' must fail.
26907
26908 2004-11-13  Jim Meyering  <jim@meyering.net>
26909
26910         * m4/jm-macros.m4: Do require gl_FUNC_FPENDING.
26911
26912 2004-11-12  Simon Josefsson  <jas@extundo.com>
26913
26914         * config/srclist.txt: Add strtok_r.c, glibc bought our changes, but a
26915         small doc fix is still pending.
26916
26917 2004-11-11  Simon Josefsson  <jas@extundo.com>
26918
26919         * modules/strtok_r: New file.
26920
26921         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
26922         strtok_r.
26923
26924 2004-11-11  Simon Josefsson  <jas@extundo.com>
26925
26926         * m4/strtok_r.m4: New file.
26927
26928         * m4/getopt.m4: Replace opterr.
26929
26930 2004-11-11  Simon Josefsson  <jas@extundo.com>
26931
26932         * lib/strtok_r.h, strtok_r.c: New file.
26933
26934 2004-11-11  Paul Eggert  <eggert@cs.ucla.edu>
26935
26936         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE): Define __GETOPT_PREFIX instead
26937         of replacing opterr, getopt, etc.  This should handle the
26938         powerpc-apple-darwin5.5 problem recently noted by Simon Josefsson.
26939
26940 2004-11-11  Paul Eggert  <eggert@cs.ucla.edu>
26941
26942         * lib/getopt_.h (__getopt_argv_const): New macro, to be used so that
26943         we can stop lying to compilers about the constness of argv when we
26944         are compiled outside glibc.
26945         (getopt, getopt_long, getopt_long_only): Use it.
26946         * lib/getopt.c (_getopt_initialize, _getopt_internal_r,
26947         _getopt_internal, getopt): Likewise.
26948         * lib/getopt1.c (getopt_long, _getopt_long_r, getopt_long_only,
26949         _getopt_long_only_r): Likewise.
26950         * lib/getopt_int.h (_getopt_internal, _getopt_internal_r,
26951         _getopt_long_r, _getopt_long_only_r): Likewise.
26952
26953         * lib/getopt_.h [defined __GETOPT_PREFIX && !defined __need_getopt]:
26954         Include <stdlib.h> and <stdio.h>, and <unistd.h> if available.
26955         Then rename getopt to __GETOPT_PREFIX##getopt, and so forth for
26956         the other external symbols.
26957         (getopt) [!defined __GNU_LIBRARY]: Use prototype, not old-style
26958         declaration, since the above renaming now works around collisions.
26959
26960 2004-11-11  Jim Meyering  <jim@meyering.net>
26961
26962         * lib/linebreak.c: Remove trailing blanks.
26963         * lib/alloca_.h: Likewise.
26964         * lib/acosl.c: Likewise.
26965         * lib/euidaccess.c: Likewise.
26966         * lib/allocsa.h: Likewise.
26967
26968 2004-11-10  Simon Josefsson  <jas@extundo.com>
26969
26970         * m4/getaddrinfo.m4: New file.
26971
26972 2004-11-10  Simon Josefsson  <jas@extundo.com>
26973
26974         * lib/getaddrinfo.h, lib/getaddrinfo.c: New files.
26975
26976 2004-11-10  Simon Josefsson  <jas@extundo.com>
26977
26978         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
26979         getaddrinfo.
26980
26981         * modules/getaddrinfo: New file.
26982
26983 2004-11-10  Paul Eggert  <eggert@cs.ucla.edu>
26984
26985         * m4/prereq.m4 (gl_PREREQ): Require gt_FUNC_SETENV.
26986
26987 2004-11-10  Paul Eggert  <eggert@cs.ucla.edu>
26988
26989         * lib/mktime.c (SHR): New macro, which is a portable
26990         substitute for >> that should work even on Crays.
26991         (TIME_T_MIDPOINT, ydhms_diff, __mktime_internal): Use it.
26992         Problem reported by Mark D. Baushke in
26993         <http://lists.gnu.org/archive/html/bug-gnulib/2004-11/msg00071.html>.
26994         * lib/getdate.y (SHR): Likewise.
26995         (tm_diff): Use it.
26996         * lib/strftime.c (SHR): Likewise.
26997         (tm_diff): Use it.
26998         * lib/quotearg.c (struct quoting_options): Use unsigned int for
26999         quote_these_too, so that right shifts are well defined.  All uses
27000         changed.
27001
27002 2004-11-10  Jim Meyering  <jim@meyering.net>
27003
27004         Ensure that no close failure goes unreported.
27005         * lib/closeout.c (close_stdout): Always close stdout.  I.e., don't
27006         return early when it seems there's nothing to flush.
27007         Don't include __fpending.h.
27008
27009 2004-11-10  Jim Meyering  <jim@meyering.net>
27010
27011         * modules/closeout (Depends-on): Remove fpending.
27012
27013 2004-11-10  Jim Meyering  <jim@meyering.net>
27014
27015         * m4/jm-macros.m4 (gl_MACROS): Don't require gl_FUNC_FPENDING.
27016
27017 2004-11-09  Paul Eggert  <eggert@cs.ucla.edu>
27018
27019         * m4/strftime.m4 (_gl_STRFTIME_PREREQS): Remove.  Move its body to
27020         gl_FUNC_STRFTIME.
27021         (gl_FUNC_STRFTIME): Use AC_CHECK_FUNCS_ONCE and AC_CHECK_HEADERS_ONCE
27022         and AC_REQUIRE when possible, to avoid duplicate checks.
27023         Check for <wchar.h>.
27024
27025 2004-11-09  Paul Eggert  <eggert@cs.ucla.edu>
27026
27027         * lib/strftime.c (DO_MULTIBYTE): Check for wchar.h, too.
27028
27029 2004-11-09  Bruno Haible  <bruno@clisp.org>
27030
27031         * m4/sockpfaf.m4: New file.
27032
27033 2004-11-05  Bruno Haible  <bruno@clisp.org>
27034
27035         * lib/readlink.c: Include stddef.h, needed for size_t on Woe32.
27036         Reported by Mark D. Baushke <mdb@cvshome.org>.
27037
27038 2004-11-04  Bruno Haible  <bruno@clisp.org>
27039
27040         2004-09-11  Bruno Haible  <bruno@clisp.org>
27041                 * allocsa.valgrind: New file.
27042         2004-02-06  Bruno Haible  <bruno@clisp.org>
27043                 * allocsa.h (sa_alignof): Define differently with HP-UX cc, to
27044                 avoid a bug of this cc on HP-UX 10.20 dealing with enums.
27045                 Reported by Christopher Seip <chris.seip@hp.com>.
27046
27047 2004-11-04  Bruno Haible  <bruno@clisp.org>
27048
27049         * modules/allocsa (Files): Add lib/allocsa.valgrind.
27050         (Makefile.am): Distribute it.
27051
27052 2004-11-03  Paul Eggert  <eggert@cs.ucla.edu>
27053
27054         * lib/xreadlink.c (xreadlink): AIX and HP-UX readlink return -1
27055         with errno == ERANGE if the buffer is too small.
27056         Problem reported by Mark D. Baushke.
27057
27058 2004-11-03  Albert Chin  <china@thewrittenword.com>
27059             Paul Eggert  <eggert@cs.ucla.edu>
27060
27061         * m4/uint32_t.m4 (gl_AC_TYPE_UINT32_T): When determining uint32_t
27062         equivalent, substitute $ac_type for equivalent type rather than
27063         blindly using uint32_t *always* which won't work if uint32_t is not
27064         available.  Define _UINT32_T to work around typedef of uint32_t if
27065         <sys/sched.h>, <pthread.h>, or <semaphore.h> used on Solaris
27066         2.5.1.
27067
27068 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
27069
27070         * m4/jm-macros.m4: Sync from coreutils.
27071         (gl_MACROS): Check for mbrlen, for pathchk.
27072         (gl_CHECK_ALL_TYPES): Require AC_TYPE_MBSTATE_T, for pathchk.
27073
27074 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
27075
27076         * lib/xreadlink.c (MAXSIZE): New macro.
27077         (xreadlink): Use it instead of SSIZE_MAX.  Ensure initial buffer
27078         size does not exceed MAXSIZE.  Avoid cast.
27079         As suggested by Mark D. Baushke in
27080         <http://lists.gnu.org/archive/html/bug-gnulib/2004-11/msg00009.html>,
27081         if readlink fails with buffer size just under MAXSIZE, try again
27082         with MAXSIZE.
27083
27084 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
27085
27086         * config/srclist.txt: Add mktime.c; glibc bought all our changes.
27087
27088 2004-11-02  Derek R. Price  <derek@ximbiot.com>
27089         and  Paul Eggert  <eggert@cs.ucla.edu>
27090
27091         * lib/getdate.y [!TEST]: Include <stdio.h>, since we use sprintf now.
27092         (get_date): Overparenthesize to avoid GCC warning.
27093
27094 2004-11-02  Bruno Haible  <bruno@clisp.org>
27095
27096         * m4/setenv.m4 (gt_FUNC_SETENV): Define VOID_UNSETENV if unsetenv()
27097         returns void.
27098
27099 2004-11-02  Bruno Haible  <bruno@clisp.org>
27100
27101         * lib/setenv.h (unsetenv): Define as a macro if the system's unsetenv()
27102         function returns void.
27103
27104 2004-11-01  Paul Eggert  <eggert@cs.ucla.edu>
27105
27106         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for declarations of
27107         fflush_unlocked, flockfile, funlockfile, funlockfile,
27108         fputs_unlocked, putc_unlocked.
27109
27110 2004-11-01  Paul Eggert  <eggert@cs.ucla.edu>
27111
27112         * lib/getpass.c (fflush_unlocked, flockfile, funlockfile)
27113         (funlockfile, fputs_unlocked, putc_unlocked): Don't define if
27114         already declared.
27115
27116 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
27117
27118         * modules/getdate (Files): Add doc/getdate.texi.
27119         (Depends-on): Add setenv, xalloc.
27120
27121 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
27122
27123         * lib/getdate.y: Add support for TZ="foo" within a date string.
27124         Fix some bugs near time_t boundaries.  Reject dates with
27125         out-of-range components, e.g., "Sept 31".
27126         Include <stdlib.h>, "setenv.h", "xalloc.h".
27127         (ISDIGIT_LOCALE): Remove; unused.
27128         Note that the TZ and time functions used here are not reentrant.
27129         (mktime_ok, get_tz): New functions.
27130         (TZBUFSIZE): New constant.
27131         (get_date): Parse leading TZ="foo".  Reject out-of-range components;.
27132         This requires that we sometimes generate our own TZ="XXX..." setting.
27133
27134 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
27135
27136         * doc/getdate.texi: New file, from coreutils with modifications for
27137         the new TZ parsing.
27138
27139 2004-10-27  Derek R. Price  <derek@ximbiot.com>
27140
27141         * lib/mktime.c (not_equal_tm): Remove redundant check.
27142
27143 2004-10-24  Paul Eggert  <eggert@cs.ucla.edu>
27144
27145         * modules/regex (lib_SOURCES): Add regex.c.
27146         Reported by James Youngman in
27147         <http://lists.gnu.org/archive/html/bug-gnulib/2004-10/msg00199.html>.
27148
27149 2004-10-24  Paul Eggert  <eggert@cs.ucla.edu>
27150
27151         * lib/getdate.y: Use Bison 1.875 features, and some minor
27152         code cleanups.  This change does not affect semantics.
27153         Don't include <stdlib.h>; no longer needed.
27154         Don't include unlocked-io.h; only the "#if TEST" code uses
27155         stdio, and performance isn't crucial there.
27156         (PC, YYLEX_PARAM, YYPARSE_PARAM): Remove; replaced by
27157         Bison 1.875 features as described below.
27158         All uses of "PC." replaced by "pc->".
27159         (YYSTYPE): Add a forward declaration.
27160         (yylex, yyerror): Use full prototypes in forward decls.
27161         Use "%pure-parser" rather than obsolescent "%pure_parser".
27162         Use %parse-param and %lex-param instead of obsolescent
27163         YYPARSE_PARAM and YYLEX_PARAM.
27164         (meridian_table, month_and_day_table, time_units_table,
27165         relative_time_table, time_zone_table, military_table,
27166         lookup_zone, lookup_word, get_date):
27167         Use NULL instead of 0 where appropriate.
27168         (to_hour): Avoid abort (), to avoid a dependency on
27169         stdlib.h.
27170         (yyerror, yylex): Now accepts parser_control * arg.
27171         (main) [TEST]: Use '\0' rather than 0 for char.
27172
27173 2004-10-22  Paul Eggert  <eggert@cs.ucla.edu>
27174
27175         * m4/getpagesize.m4 (gl_GETPAGESIZE): Check for <sys/param.h>.
27176
27177 2004-10-22  Paul Eggert  <eggert@cs.ucla.edu>
27178
27179         * lib/getpagesize.c (getpagesize): Don't assume <sys/param.h> exists.
27180         It's now the caller's responsibility to handle the case where
27181         !HAVE_GETPAGESIZE && !defined getpagesize.
27182
27183         * lib/mktime.c (leapyear): Arg is long int, not int.
27184
27185 2004-10-18  Paul Eggert  <eggert@cs.ucla.edu>
27186
27187         * lib/argp-fs-xinl.c, argp-xinl.c: Update from glibc.
27188
27189 2004-10-17  Paul Eggert  <eggert@cs.ucla.edu>
27190
27191         * gnulib-tool (func_emit_lib_Makefile_am): Fix typo: a $ was
27192         missing.  Problem reported by James Youngman.
27193
27194 2004-10-16  Simon Josefsson  <jas@extundo.com>
27195
27196         * gnulib-tool: Fix comments.  Fix parse problem.
27197         (func_emit_lib_Makefile_am): Don't hard code a in libgl_a_SOURCES.
27198
27199 2004-10-15  Paul Eggert  <eggert@cs.ucla.edu>
27200
27201         * m4/getopt.m4 (gl_GETOPT): Detect and reject the incompatible BSD
27202         implementation of getopt_long.  Problem reported by Alexander Taler in:
27203         http://lists.gnu.org/archive/html/bug-gnulib/2004-10/msg00103.html
27204
27205 2004-10-15  Bruno Haible  <bruno@clisp.org>
27206
27207         * gnulib-tool: Untabify. Initialize supplied_libname.
27208         (func_usage): More homogenous output.
27209         (func_modules_transitive_closure, func_modules_to_filelist,
27210         func_emit_lib_Makefile_am): New functions.
27211         (func_import): New function, extracted from big case statement. Use
27212         func_get_license, func_modules_transitive_closure,
27213         func_modules_to_filelist, func_emit_lib_Makefile_am. Initialize
27214         opt_lgpl. Don't use test -a, as it's not portable.
27215         (func_create_testdir): Use func_modules_transitive_closure,
27216         func_modules_to_filelist, func_emit_lib_Makefile_am.
27217
27218 2004-10-15  Bruno Haible  <bruno@clisp.org>
27219
27220         * gnulib-tool (func_import): Let gl_INIT define LTALLOCA when needed.
27221
27222 2004-10-15  Bruno Haible  <bruno@clisp.org>
27223
27224         * gnulib-tool (func_emit_lib_Makefile_am): Add markers to separate
27225         the portions belonging to each module.
27226         Suggested by Derek Robert Price <derek@ximbiot.com>.
27227
27228 2004-10-12  Simon Josefsson  <jas@extundo.com>
27229
27230         * lib/getpass.c (fflush_unlocked, flockfile, funlockfile)
27231         (fputs_unlocked, putc_unlocked) [!_LIBCS && !USE_UNLOCKED_IO]: Map
27232         to real functions.
27233
27234 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
27235
27236         * modules/vsnprintf: New file.
27237
27238 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
27239
27240         * m4/vsnprintf.m4: New file.
27241
27242 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
27243
27244         * lib/vsnprintf.h: New file.
27245         * lib/vsnprintf.c: New file.
27246
27247 2004-10-11  Bruno Haible  <bruno@clisp.org>
27248
27249         * MODULES.html.sh (Support for systems lacking ISO C 99): Add
27250         vsnprintf.
27251
27252 2004-10-10  Paul Eggert  <eggert@cs.ucla.edu>
27253
27254         * config/srclistvars.sh: Add GNUSTANDARDS (for eggert only).
27255
27256 2004-10-07  Bruno Haible  <bruno@clisp.org>
27257
27258         * lib/snprintf.c (snprintf): Avoid a memory allocation if the result
27259         fits into the provided buffer.
27260
27261 2004-10-06  Paul Eggert  <eggert@cs.ucla.edu>
27262
27263         * lib/diacrit.c, diacrit.h: Add GPL notice.
27264
27265         * lib/atanl.c, logl.c: Add GPL notice, to match glibc's added LGPL
27266         notice.
27267         * lib/atanl.c (atanl): Keep the code as similar to glibc as possible.
27268         * lib/logl.c (logl): Keep the code as similar to glibc as possible.
27269         This avoids a potential constant-folding bug.
27270
27271 2004-10-05  Bruno Haible  <bruno@clisp.org>
27272
27273         * m4/strsep.m4 (gl_FUNC_STRSEP): Require AC_GNU_SOURCE. Don't check
27274         for the declaration of strsep.
27275
27276 2004-10-05  Bruno Haible  <bruno@clisp.org>
27277
27278         * lib/strsep.h: Don't declare strsep() if HAVE_STRSEP.
27279
27280 2004-10-04  Simon Josefsson  <jas@extundo.com>
27281
27282         * modules/memmem: New file.
27283         * tests/test-memmem.c: New file.
27284         * MODULES.html.sh (Extra functions based on ANSI C 89): Add memmem.
27285
27286 2004-10-04  Simon Josefsson  <jas@extundo.com>
27287
27288         * m4/memmem.m4: New file.
27289
27290 2004-10-04  Simon Josefsson  <jas@extundo.com>
27291
27292         * lib/memmem.h: New file.
27293         * lib/memmem.c: New file, taken from glibc.
27294
27295 2004-10-04  Simon Josefsson  <jas@extundo.com>
27296
27297         * lib/error.c, md5.c, regex.c: Use '#if USE_UNLOCKED_IO' instead of
27298         '#ifdef USE_UNLOCKED_IO'.
27299
27300 2004-10-04  Simon Josefsson  <jas@extundo.com>
27301
27302         * config/srclist.txt: Add memmem from glibc.
27303
27304 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
27305
27306         * modules/xalloc (Files, Makefile.am): Remove xstrdup.c.
27307
27308         * modules/argmatch, modules/argp, modules/closeout, modules/error,
27309         modules/exclude, modules/getdate, modules/getline,
27310         modules/getndelim2, modules/getpass, modules/getpass-gnu,
27311         modules/getusershell, modules/linebuffer, modules/md5,
27312         modules/mountlist, modules/posixtm, modules/readtokens,
27313         modules/readutmp, modules/regex, modules/sha1,
27314         modules/version-etc, modules/yesno:
27315         Remove dependency on unlocked-io.
27316
27317 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
27318
27319         * m4/xalloc.m4 (gl_PREREQ_XSTRDUP): Remove.  All uses removed.
27320
27321         * m4/unlocked-io.m4: Add copyright notice.
27322         (gl_FUNC_GLIBC_UNLOCKED_IO): Define USE_UNLOCKED_IO.
27323
27324 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
27325
27326         * lib/xalloc.h (xmemdup): Renamed from xclone.  All uses changed.
27327         * lib/xmalloc.c (xmemdup): Likewise.
27328         * lib/xalloc.h (CCLONE, CLONE, NEW, XCALLOC, XMALLOC, XREALLOC,
27329         XFREE): Remove these long-obsolescent macros.
27330         * lib/xmalloc.c (xstrdup): Implementation moved here from xstrdup.c
27331         * lib/xstrdup.c: Remove.
27332
27333         * lib/regex.c (re_comp): Cast gettext return value to char *,
27334         Problem reported by Martin Neitzel via Mark D. Baushke.
27335
27336 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
27337
27338         * lib/argmatch.c, closeout.c, error.c, exclude.c, getdate.y,
27339         getndelim2.c, getpass.c, getusershell.c, linebuffer.c,
27340         md5.c, mountlist.c, posixtm.c, readtokens.c, readutmp.c,
27341         regex.c, sha1.c, version-etc.c, yesno.c:
27342         Include "unlocked-io.h" only if USE_UNLOCKED_IO.
27343         * lib/unlocked-io.h: Don't worry about USE_UNLOCKED_IO; that's now
27344         the includer's responsibility.
27345
27346         Sync from coreutils.
27347
27348         * lib/modechange.c (mode_compile): Don't decrement a pointer that
27349         points to the start of a string, as the C Standard says the
27350         resulting behavior is undefined.
27351
27352         * lib/backupfile.h (enum backuptype): Rename none -> no_backups,
27353         simple -> simple_backups, numbered_existing ->
27354         numbered_existing_backups, numbered -> numbered_backups
27355         to avoid shadowing problems.  All uses changed.
27356         * lib/argmatch.c (enum backuptype) [defined TEST]: Likewise.
27357         * lib/backupfile.c (check_extension, numbered_backup):
27358         Rename locals to avoid shadowing 'basename'.
27359         * lib/backupfile.h (VALID_BACKUP_TYPE): Don't evaluate arg more than
27360         once.
27361
27362         * lib/.cppi-disable: Add getopt_.h, getopt_int.h.
27363         * lib/.cvsignore: Add getopt.h.
27364
27365 2004-10-04  Bruno Haible  <bruno@clisp.org>
27366
27367         * modules/README: New file.
27368         * gnulib-tool (func_all_modules, func_verify_module): modules/README is
27369         not a module.
27370
27371 2004-10-02  Jim Meyering  <jim@meyering.net>
27372
27373         * lib/dirfd.h, getpagesize.h: Add copyright notice.
27374
27375 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
27376
27377         * modules/strsep: New file.
27378
27379 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
27380
27381         * m4/strsep.m4: New file.
27382
27383 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
27384
27385         * lib/strsep.h: New file.
27386         * lib/strsep.c: New file.
27387
27388 2004-10-01  Simon Josefsson  <jas@extundo.com>
27389
27390         * lib/snprintf.c (snprintf): Handle size==0.
27391
27392 2004-10-01  Simon Josefsson  <jas@extundo.com>
27393             Bruno Haible  <bruno@clisp.org>
27394
27395         * lib/snprintf.c: Include <stdarg.h>, <stdlib.h>, <string.h>.
27396         (snprintf): Declare 'args'.
27397
27398 2004-10-01  Paul Eggert  <eggert@cs.ucla.edu>
27399
27400         * lib/snprintf.c: Remove comments as to why each header is needed.
27401
27402 2004-10-01  Bruno Haible  <bruno@clisp.org>
27403
27404         * MODULES.html.sh: Add strsep.
27405
27406 2004-09-30  Simon Josefsson  <jas@extundo.com>
27407
27408         * modules/snprintf: New file.
27409
27410 2004-09-30  Simon Josefsson  <jas@extundo.com>
27411
27412         * m4/snprintf.m4: New file.
27413
27414 2004-09-30  Simon Josefsson  <jas@extundo.com>
27415
27416         * lib/snprintf.h, lib/snprintf.c: New files.
27417
27418 2004-09-30  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
27419
27420         * lib/argp-help.c (canon_doc_option): Fixed coredump if *name==NULL
27421         (hol_entry_help): Never translate an empty string.
27422         Do not translate option tag (opt->name) if OPTION_NO_TRANS is set
27423         * lib/argp.h (OPTION_NO_TRANS): New option.
27424
27425 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
27426
27427         * modules/argp (Maintainer): Replace Simon Josefsson
27428         by Sergey Poznyakoff.
27429
27430 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
27431
27432         * config/srclist.txt: Comment-out argp/argp.h, until we get the argp
27433         changes merged back into glibc.
27434
27435 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
27436
27437         * MODULES.html.sh (Support for systems lacking ISO C 99): Add snprintf.
27438
27439 2004-09-29  Oskar Liljeblad  <oskar@osk.mine.nu>
27440
27441         * lib/xvasprintf.c: Include xalloc.h.
27442         (xvasprintf): Use xalloc_die, not xmalloc_die.
27443
27444 2004-09-29  Bruno Haible  <bruno@clisp.org>
27445
27446         * modules/alloca-opt: New file, derived from modules/alloca.
27447         * modules/allocsa: Depend on alloca-opt instead of alloca.
27448         * modules/setenv: Likewise.
27449         * modules/vasnprintf: Likewise.
27450         * MODULES.html.sh: Add alloca-opt.
27451
27452 2004-09-28  Simon Josefsson  <jas@extundo.com>
27453
27454         * gnulib-tool: New parameter --lgpl, to asseert that modules are
27455         LGPL, and to replace license template from GPL to LGPL.
27456
27457 2004-09-28  Paul Eggert  <eggert@cs.ucla.edu>
27458
27459         * modules/dummy: Change license to LGPL.
27460
27461 2004-09-28  Paul Eggert  <eggert@cs.ucla.edu>
27462
27463         * lib/dummy.c: Change copyright notice to FSF, and license to GPL.
27464
27465 2004-09-24  Simon Josefsson  <jas@extundo.com>
27466
27467         * modules/minmax (License): Change from GPL to LGPL.
27468
27469 2004-09-23  Simon Josefsson  <jas@extundo.com>
27470
27471         * gnulib-tool (--import): Typo.
27472
27473 2004-09-23  Simon Josefsson  <jas@extundo.com>
27474
27475         * gnulib-tool (--import): Make sure *.m4 end up in m4/ by default.
27476
27477 2004-09-22  Bruno Haible  <bruno@clisp.org>
27478
27479         * modules/*: Add 'License' field.
27480         * gnulib-tool: Accept --extract-license option.
27481         (func_get_license): New function.
27482
27483 2004-09-21  Bruno Haible  <bruno@clisp.org>
27484
27485         * modules/vasnprintf (Files): Add m4/stdint_h.m4, m4/inttypes_h.m4.
27486         Reported by Simon Josefsson.
27487
27488 2004-09-20  Paul Eggert  <eggert@cs.ucla.edu>
27489
27490         * modules/inttostr (Files): Add m4/longlong.m4, since it uses
27491         gl_AC_TYPE_LONG_LONG.
27492
27493 2004-09-20  Paul Eggert  <eggert@cs.ucla.edu>
27494
27495         * config/srclist.txt: Add getsubopt.c, since libc bought our changes.
27496
27497 2004-09-18  Simon Josefsson  <jas@extundo.com>
27498         and  Paul Eggert  <eggert@cs.ucla.edu>
27499
27500         * gnulib-tool: Replace various ad-hoc automake/autoconf/aclocal
27501         calls with autoreconf.  Define GL_LIB.
27502
27503 2004-09-14  Karl Berry  <karl@gnu.org>
27504
27505         * config/srclist.txt: unsync setenv.c, sigh.
27506
27507 2004-09-13  Paul Eggert  <eggert@cs.ucla.edu>
27508
27509         * lib/argp-pvh.c (argp_program_version_hook): Provide initial value.
27510         Problem reported by Bruno Haible in:
27511         http://lists.gnu.org/archive/html/bug-tar/2004-09/msg00023.html
27512
27513 2004-09-13  Paul Eggert  <eggert@cs.ucla.edu>
27514
27515         * config/srclist.txt: Comment out argp-pvh.c.
27516
27517 2004-09-11  Paul Eggert  <eggert@cs.ucla.edu>
27518
27519         * lib/mempcpy.h: Wrap the entire include file inside #ifndef mempcpy,
27520         in case some system header has #define'd it.  Problem reported by
27521         Soeren D. Schulze in
27522         <http://lists.gnu.org/archive/html/bug-gnulib/2004-09/msg00017.html>.
27523
27524 2004-09-09  Karl Berry  <karl@gnu.org>
27525
27526         * regex.[ch]: delete from the root.  These were supposed to be
27527                 synced with emacs cvs, but this has not happened for about
27528                 a year, and anyway nothing else uses emacs regex.[ch].
27529                 bug-gnulib mail from Jeff Bailey, 9 Sep 2004 15:49:24 -0700.
27530                 lib/regex[.ch] is untouched.
27531
27532 2004-09-09  Bruno Haible  <bruno@clisp.org>
27533
27534         * modules/vasnprintf (Files): Add m4/eoverflow.m4.
27535
27536 2004-09-09  Bruno Haible  <bruno@clisp.org>
27537
27538         * m4/eoverflow.m4: New file, taken from GNU libiconv eilseq.m4 with
27539         modifications.
27540         * m4/vasnprintf.m4 (gl_FUNC_VASNPRINTF): Require gl_EOVERFLOW.
27541
27542 2004-09-08  Oskar Liljeblad  <oskar@osk.mine.nu>
27543
27544         * modules/xvasprintf: New file.
27545         * MODULES.html.sh (Extra functions based on ANSI C 89): Add vasprintf.
27546
27547 2004-09-08  Oskar Liljeblad  <oskar@osk.mine.nu>
27548
27549         * lib/xvasprintf.h: New file.
27550         * lib/xvasprintf.c: New file.
27551         * lib/xasprintf.c: New file.
27552
27553 2004-09-08  Bruno Haible  <bruno@clisp.org>
27554
27555         * m4/stdint.m4: New file, taken from GNU clisp with modifications.
27556
27557 2004-09-08  Bruno Haible  <bruno@clisp.org>
27558
27559         * lib/vasnprintf.c (VASNPRINTF): Signal EOVERFLOW if the resulting
27560         length is > INT_MAX.
27561         * lib/vasprintf.c (vasprintf): Don't test for length > INT_MAX any
27562         more.
27563
27564 2004-09-08  Bruno Haible  <bruno@clisp.org>
27565
27566         * lib/stdint_.h: New file, taken from GNU clisp.
27567
27568 2004-09-08  Bruno Haible  <bruno@clisp.org>
27569             Oskar Liljeblad  <oskar@osk.mine.nu>
27570
27571         * modules/stdint: New file.
27572         * MODULES.html.sh (Support for systems lacking ISO C 99): Add stdint.
27573
27574 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
27575
27576         Import from coreutils.
27577         * lib/userspec.c: Don't use <alloca.h>, so that we don't use alloca on
27578         strings on unbounded length.  alloca's performance benefits aren't
27579         that important here.
27580         (V_STRDUP): Remove.
27581         (parse_with_separator): New function, with most of the internals
27582         of the old parse_user_spec.  Allow user to omit both user and group,
27583         for compatibility with FreeBSD.
27584         Clone only the user name, not the entire spec.
27585         Do not set *uid, *gid unless entirely successful.
27586         Avoid memory leak in some failing cases.
27587         Fix regression for USER.GROUP reported by Dmitry V. Levin in
27588         <http://lists.gnu.org/archive/html/bug-coreutils/2004-08/msg00102.html>
27589         (parse_user_spec): Rewrite to use parse_with_separator.
27590
27591 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
27592
27593         * modules/userspec: Don't depend on alloca.
27594
27595 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
27596
27597         * m4/userspec.m4 (gl_USERSPEC): Don't require AC_FUNC_ALLOCA.
27598
27599 2004-08-17  Paul Eggert  <eggert@cs.ucla.edu>
27600
27601         * MODULES.html.sh: Add xalloc-die, c-strtod, c-strtold, raise,
27602         readtokens0, getcwd, fcntl-safer, canonicalize, cycle-check,
27603         utimecmp, utimens, xnanosleep.  Rename sha to sha1.
27604
27605 2004-08-16  Simon Josefsson  <jas@extundo.com>
27606
27607         * gnulib-tool: Use sed instead of autoconf --trace, inspired by
27608         libtoolize behaviour by "Gary V. Vaughan" <gary@gnu.org>.
27609         Add --dry-run for --import.
27610         Let user provided command line parameters override configure.ac
27611         settings.
27612
27613 2004-08-12  Simon Josefsson  <jas@extundo.com>
27614
27615         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE): New macro,
27616         as discussed with Paul Eggert in threads rooted at
27617         <http://lists.gnu.org/archive/html/bug-gnulib/2004-06/msg00039.html>
27618         and
27619         <http://lists.gnu.org/archive/html/bug-gnulib/2004-07/msg00001.html>.
27620         Before, the test was empty, and relied on ELIDE_CODE in source
27621         code.)
27622         (gl_PREREQ_GETOPT): New macro.
27623         (gl_GETOPT): Use them.
27624
27625 2004-08-12  Simon Josefsson  <jas@extundo.com>
27626
27627         * lib/getopt.c, getopt1.c: Remove ELIDE_CODE hack.
27628         * lib/getopt_.h: Renamed from getopt.h.
27629
27630 2004-08-12  Simon Josefsson  <jas@extundo.com>
27631
27632         * gnulib-tool: Add --source-base, --m4-base, --libtool options.
27633         Change default library name from libfoo to libgnu.
27634         Now, if you have a configure.ac that says:
27635                 gl_SOURCE_BASE(gl)
27636                 gl_M4_BASE(gl/m4)
27637                 gl_MODULES(error getopt etcetera)
27638                 gl_INIT
27639         you can import all you need by running:
27640                 ../gnulib/gnulib-tool --import
27641
27642         * modules/getopt (Files): Rename getopt.h to getopt_.h.
27643         (Makefile.am): Rewrite, use logic from argz.
27644         (Include): Use <getopt.h> instead of "getopt.h".
27645
27646 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
27647
27648         * modules/argp (Files): Add m4/unlocked-io.m4.
27649         (Depends-on): Add extensions.
27650
27651 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
27652
27653         * m4/argp.m4 (gl_ARGP): Do not check for argp.h or argp_parse; nobody
27654         uses HAVE_ARGP_H or HAVE_ARGP_PARSE.
27655         Require gl_FUNC_GLIBC_UNLOCKED_IO, gl_USE_SYSTEM_EXTENSIONS.
27656         Check for program_invocation_name, program_invocation_short_name,
27657         flockfile, funlockfile, features.h, _getopt_long_only_r.
27658
27659 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
27660
27661         * lib/argp-help.c, argp-parse.c: Use "gettext.h" instead of
27662         its complicated substitute.
27663         * lib/argp-help.c: Include <errno.h>, for program_invocation_short_name
27664         and program_invocation_name.
27665         (__argp_basename) [!_LIBC]: Remove; the only use was
27666         replaced by its body.
27667         (__argp_short_program_name): Change condition from
27668         !defined __argp_short_program_name to
27669         ! (defined _LIBC || HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME),
27670         to match argp-namefrob.h.
27671         (__argp_failure): Don't assume strerror_r returns char *.
27672         * lib/argp-parse.c (N_): Define unconditionally.
27673         (argp_default_options): Fill out initializers with 0 to avoid
27674         gcc warnings.
27675
27676 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
27677
27678         * config/srclist.txt: Remove getopt.c, getopt.h (renamed to getopt_.h),
27679         getopt1.c.
27680
27681 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
27682
27683         Merge from coreutils.
27684
27685         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for wmemchr and wmemcpy.
27686
27687         * m4/obstack.m4 (gl_PREREQ_OBSTACK): Require
27688         gl_AC_HEADER_INTTYPES_H, gl_AC_HEADER_STDINT_H, gl_AC_TYPE_UINTMAX_T.
27689
27690 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
27691
27692         Merge from coreutils.
27693
27694         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Don't set to 1 if missing
27695         wmemchr or wmemcpy.  Problem reported by Robert Dahlem
27696         for Reliant Unix 5.43.
27697
27698         * lib/obstack.c: Include <inttypes.h> and <stdint.h> if available.
27699         (union fooround): Use uintmax_t, not long int.
27700         The rest is a merge from libc:
27701         [defined _LIBC]: Include <shlib-compat.h>.
27702         (_obstack) [defined _LIBC]: Remove after 2.3.4.
27703
27704         * lib/settime.c (settime): Recode to avoid warning with
27705         Sun Forte C 6U2.
27706
27707         * lib/strverscmp.c: Convert to UTF-8.
27708
27709 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
27710
27711         * modules/obstack (Files): Add m4/inttypes_h.m4, m4/stdint_h.m4,
27712         m4/uintmax_t.m4.
27713
27714 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
27715
27716         * modules/xalloc-die: New file.
27717         * modules/xalloc: Remove dependencies on error, gettext, exitfail.
27718
27719         * modules/md5 (Files): Add m4/uint32_t.m4.
27720         * modules/sha1: Renamed from modules/sha.
27721         (Files):
27722         Rename lib/sha.h to lib/sha1.h.
27723         Rename lib/sha.c to lib/sha1.c.
27724         Rename m4/sha.m4 to m4/sha1.m4.
27725         (lib_SOURCES): Likewise.
27726         (configure.ac): Rename gl_SHA to gl_SHA1.
27727         (Include): sha.h -> sha1.h.
27728
27729 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
27730
27731         * m4/uint32_t.m4, m4/uintptr_t.m4: New files.
27732         * m4/sha1.m4: Renamed from sha.m4.
27733         (gl_SHA1): Renamed from gl_SHA.  All uses changed.
27734
27735 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
27736
27737         * lib/obstack.h (obstack_empty_p):
27738         Don't assume that chunk->contents is suitably aligned.
27739         * lib/obstack.c (_obstack_begin, _obstack_begin_1, _obstack_newchunk):
27740         Likewise. Problem reported by Benno in
27741         <http://sources.redhat.com/ml/libc-alpha/2004-08/msg00055.html>.
27742
27743         * lib/chown.c (rpl_chown): Work even if the file is writeable but not
27744         readable.  This could be improved further but it'd take some work.
27745
27746 2004-08-08  Simon Josefsson  <jas@extundo.com>
27747
27748         * modules/xgethostname (Depends-on): Remove exit and error (not
27749         used).
27750
27751         * modules/getpass-gnu: Add getpass.h.
27752         (Depends-on): Add stdbool.
27753         * modules/getpass: Add getpass.h.
27754
27755 2004-08-08  Simon Josefsson  <jas@extundo.com>
27756
27757         * m4/getpass.m4 (gl_FUNC_GETPASS, gl_FUNC_GETPASS_GNU):
27758         Check getpass declaration.
27759
27760 2004-08-08  Simon Josefsson  <jas@extundo.com>
27761
27762         * lib/xgethostname.c: Don't include error.h (not used).
27763
27764         * lib/getpass.h: Add.
27765         * lib/getpass.c: Include getpass.h first.
27766
27767 2004-08-08  Paul Eggert  <eggert@cs.ucla.edu>
27768
27769         * lib/xalloc-die.c: New file.
27770         * lib/xalloc.h (xalloc_fail_func, xalloc_msg_memory_exhausted): Remove.
27771         All uses removed.
27772         * lib/xmalloc.c (xalloc_fail_func, xalloc_msg_memory_exhausted):
27773         Likewise. Move inclusions of gettext.h, error.h, exitfail.h to
27774         xalloc-die.c.
27775         (_, N_, xalloc_die): Move to xalloc-die.c.
27776         * lib/userspec.c (parse_user_spaec): Use xstrdup rather than strdup,
27777         so that we needn't mess with xalloc_msg_memory_exhausted.
27778
27779         * lib/sha1.h: Renamed from sha.h.
27780         (SHA1_H): Renamed from _SHA_H.
27781         (sha1_ctx): Renamed from sha_ctx.
27782         (sha1_init_ctx): Renamed from sha_init_ctx.
27783         (sha1_process_block): Renamed from sha_process_block.
27784         (sha1_process_bytes): Renamed from sha_process_bytes.
27785         (sha1_finish_ctx): Renamed from sha_finish_ctx.
27786         (sha1_read_ctx): Renamed from sha_read_ctx.
27787         (sha1_stream): Renamed from sha_stream.
27788         (sha1_buffer): Renamed from sha_buffer.
27789         * lib/sha1.c: Likewise; renamed from sha.c.
27790         Do not include <sys/types.h>.
27791         Include <stddef.h> rather than <stdlib.h>.
27792
27793 2004-08-08  Bruno Haible  <bruno@clisp.org>
27794
27795         * lib/pathname.h (FILE_SYSTEM_PREFIX_LEN): Renamed from
27796         FILESYSTEM_PREFIX_LEN.
27797         * lib/progreloc.c: Likewise.
27798         * lib/concatpath.c (concatenated_pathname): Use FILE_SYSTEM_PREFIX_LEN.
27799
27800 2004-08-06  Simon Josefsson  <jas@extundo.com>
27801
27802         * modules/progname (Depends-on): Don't depend on stdbool.
27803
27804 2004-08-06  Simon Josefsson  <jas@extundo.com>
27805
27806         * modules/getsubopt: New file.
27807         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
27808         getsubopt.
27809
27810 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
27811
27812         More merge from coreutils.
27813
27814         * m4/utimens.m4, m4/utimecmp.m4: New files.
27815         * m4/backupfile.m4, euidacces.m4, acl.m4, afs.m4, calloc.m4, dirfd.m4,
27816         fsusage.m4, jm-macros.m4, ls-mntd-fs.m4, md5.m4, mountlist.m4,
27817         prereq.m4, sha.m4: Import changes from coreutils.
27818
27819 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
27820
27821         More merge from coreutils.
27822         * modules/raise, modules/readtokens0, modules/utimens:
27823         * modules/utimecmp, module/xnanosleep: New files.
27824         * modules/strftime: Add lib/strftime.h.
27825         Change include from <time.h> to "strftime.h".
27826         * modules/yesno: Add lib/yesno.h.
27827         * modules/backupfile: Remove lib/addext.c.
27828         * modules/euidaccess: Add stat-macros.h.
27829         * modules/canonicalize, modules/euidaccess,
27830         modules/filemode, modules/lchown, modules/makepath,
27831         modules/rmdir, modules/stat: Likewise.
27832
27833 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
27834
27835         Merge from tar.
27836         * lib/argp-help.c (make_hol, hol_append): Don't assume that
27837         SIZE_MAX is a valid preprocessor constant.
27838         (__argp_basename): Change from "#ifndef _LIBC"
27839         to "#ifndef __argp_short_program_name", so that
27840         we don't compile these functions for tar.
27841
27842         More merges from coreutils.
27843         * lib/raise.c, lib/readtokens0.h, lib/readtokens0.c, lib/strftime.h:
27844         * lib/utimens.h, lib/utimens.c, lib/utimecmp.h, lib/utimecmp.c:
27845         * lib/xnanosleep.h, lib/xnanosleep.c, lib/yesno.h: New files.
27846         * lib/addext.c: Remove; no longer needed.
27847         * lib/yesno.c, lib/argmatch.h, lib/argmatch.c, lib/backupfile.h,
27848         lib/backupfile.c, lib/euidaccess.c, lib/filemode.c, lib/closeout.c,
27849         lib/dup2.c, lib/exclude.c, lib/fileblocks.c, lib/filemode.c,
27850         lib/fnmatch.c, lib/fnmtahc_loop.c, lib/fopen-safer.c, lib/fsusage.c,
27851         lib/fsusage.h, lib/ftruncate.c, lib/full-write.c, lib/getdate.y,
27852         lib/getloadavg.c, lib/getugroups.c, lib/hard-locale.c,
27853         lib/hard-locale.h, lib/hash.c, lib/human.c, lib/human.h, lib/lchown.c,
27854         lib/lchown.h, lib/makepath.c, lib/makepath.h, lib/md5.c, lib/md5.h,
27855         lib/memchr.c, lib/memcoll.c, lib/memrchr.c, lib/modechange.c,
27856         lib/modechange.h, lib/mountlist.c, lib/mountlist.h, lib/nanosleep.c,
27857         lib/posixtm.c, lib/putenv.c, quotearg.c, lib/quotearg.h,
27858         lib/readtokens.c, lib/readutmp.c, lib/readutmp.h, lib/rmdir.c,
27859         lib/safe-read.c, lib/save-cwd.c, lib/savedir.c, lib/setenv.c,
27860         lib/sig2str.c, lib/stat.c, lib/strtoimax.c, lib/strverscmp.c,
27861         lib/userspec.c, lib/utime.c, lib/version-etc.c., lib/xgethostname.c,
27862         lib/xmemcoll.c, lib/xreadlink.c, lib/xstrtod.c, lib/xstrtod.h,
27863         lib/xstrtoimax.c, lib/xstrtol.c, lib/xstrtol.h, lib/xstrtoumax.c:
27864         Import changes from coreutils.
27865
27866 2004-08-05  Simon Josefsson  <jas@extundo.com>
27867
27868         * m4/strdup.m4: Always run gl_PREREQ_STRDUP, since strdup.h need it.
27869
27870 2004-08-05  Simon Josefsson  <jas@extundo.com>
27871
27872         * m4/getsubopt.m4: New file.
27873
27874 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
27875
27876         Merge from coreutils.
27877
27878         * m4/c-strtod.m4, m4/canonicalize.m4, m4/fcntl-safer.m4:
27879         * m4/getcwd-path-max.m4: New files.
27880
27881         * m4/dos.m4 (gl_AC_DOS): filesystem -> file system renaming.
27882         FILESYSTEM_PREFIX_LEN ->
27883         FILE_SYSTEM_PREFIX_LEN.
27884         FILESYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX ->
27885         FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX.
27886         FILESYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR ->
27887         FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR.
27888
27889         * m4/path-concat.m4 (gl_PATH_CONCAT): Don't require gl_AC_DOS, the
27890         prerequisite modules now handle the DOS stuff.
27891         Don't check for unistd.h.
27892
27893 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
27894
27895         Merge from coreutils.
27896
27897         * lib/.gdb-history: Remove; this doesn't belong here.
27898
27899         * lib/c-strtod.c, lib/c-strtod.h, lib/c-strtold.c, lib/cycle-check.c:
27900         * lib/cycle-check.h, lib/dev-ino.h, lib/canonicalize.h:
27901         * lib/canonicalize.c, lib/fcntl-safer.h, lib/fcntl-safer.c:
27902         * lib/getcwd.c: New files.
27903
27904         * lib/dirname.h: Include <stdbool.h>.
27905         (FILE_SYSTEM_PREFIX_LEN): Renamed from FILESYSTEM_PREFIX_LEN,
27906         for consistency with POSIX terminology.  All uses changed.
27907         (IS_ABSOLUTE_FILE_NAME, IS_RELATIVE_FILE_NAME): New macros.
27908         (strip_trailing_slashes): Use bool for booleans.
27909         * lib/stripslash.c (strip_trailing_slashes): Likewise.
27910
27911         * lib/error.c: Work around bug in OpenBSD 3.4 sterror_r: it
27912         sometimes returns a positive errno value even when it succeeds.
27913         (print_errno_message) [!LIBC]: Fall back on strerror if
27914         __strerror_r fails.
27915
27916         * lib/path-concat.c (mempcpy): Don't define if a system header defines
27917         it. Don't include stdio.h, stdlib.h, unistd.h, strdup.h.
27918         (longest_relative_suffix): New function.
27919         (path_concat): Use it.  Assume first argument is not NULL.
27920         Port to DOS.  Omit redundant separators.
27921         Report an error instead of returning NULL.
27922         Use mempcpy instead of memcpy.
27923         (xpath_concat): Remove: not declared or used.
27924
27925         * lib/same.h: Include <stdbool.h>
27926         (same_name): Return bool, not int.
27927         * lib/same.c (same_name): Likewise.
27928         (errno): Don't declare; we assume C89 or better now.
27929
27930         * lib/stat-macros (S_ISCTG, S_ISOFD, S_ISOFL): New macros,
27931         if not already defined.
27932
27933         * lib/xgetcwd.c (errno): Don't declare; we assume C89 or better now.
27934         * lib/dup-safer.c (errno): Likewise.
27935
27936 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
27937
27938         Merge from coreutils.
27939         * modules/c-strtod, modules/c-strtold, modules/canonicalize:
27940         * modules/cycle-check, modules/fcntl-safer, modules/getcwd: New files.
27941         * modules/path-concat: Don't depend on strdup.
27942
27943 2004-08-03  Simon Josefsson  <jas@extundo.com>
27944
27945         * lib/strdup.h: Only use HAVE_DECL_STRDUP if defined.
27946         * lib/progname.h: Don't include stdbool.h.
27947
27948 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
27949
27950         * modules/fatal: Remove, as the "fatal" module wasn't used or working.
27951         * MODULES.html.sh (func_all_modules): Remove fatal.
27952
27953 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
27954
27955         * m4/fatal.m4: Remove, as the "fatal" module wasn't used or working.
27956
27957 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
27958
27959         * lib/fatal.c, fatal.h: Remove as the "fatal" module wasn't used or
27960         working.
27961
27962 2004-08-02  Simon Josefsson  <jas@extundo.com>
27963
27964         * lib/getsubopt.h: New file, with comments from Bruno Haible.
27965         * lib/getsubopt.c: New file, from glibc, but slightly modified based on
27966         suggestions from Paul Eggert <eggert@cs.ucla.edu>.
27967
27968 2004-08-01  Simon Josefsson  <jas@extundo.com>
27969
27970         * lib/xgetdomainname.c: Include stdlib.h, for free().
27971
27972 2004-07-19  Bruno Haible  <bruno@clisp.org>
27973
27974         * MODULES.html.sh (func_all_modules): Add dummy.
27975
27976 2004-07-16  Simon Josefsson  <jas@extundo.com>
27977
27978         * modules/dummy: New file.
27979
27980 2004-07-16  Simon Josefsson  <jas@extundo.com>
27981
27982         * lib/dummy.c: New file.
27983
27984 2004-07-16  Bruno Haible  <bruno@clisp.org>
27985
27986         * lib/backupfile.h: Add extern "C" for C++.
27987         * lib/closeout.h: Likewise.
27988         * lib/copy-file.h: Likewise.
27989         * lib/findprog.h: Likewise.
27990         * lib/full-write.h: Likewise.
27991         * lib/pathname.h: Likewise.
27992         * lib/progname.h: Likewise.
27993         * lib/stpcpy.h: Likewise.
27994         * lib/stpncpy.h: Likewise.
27995         * lib/strcase.h: Likewise.
27996         * lib/strstr.h: Likewise.
27997         * lib/xalloc.h: Likewise.
27998
27999         * lib/mbswidth.h: Add extern "C" for C++.
28000         Reported by Albert Chin-A-Young <china@thewrittenword.com>.
28001
28002 2004-07-13  Robert Millan  <robertmh@gnu.org>
28003
28004         * m4/host-os.m4: s/KNetBSD/kNetBSD/g and s/KFreeBSD/kFreeBSD/g.
28005
28006 2004-07-09  Simon Josefsson  <jas@extundo.com>
28007
28008         * lib/getndelim2.c: Include stddef.h, for ptrdiff_t.  (FreeBSD 4.9
28009         failed without this.)
28010
28011 2004-07-09  Paul Eggert  <eggert@cs.ucla.edu>
28012
28013         * modules/chown (Files): Add lib/fchown-stub.c, since
28014         gl_PREREQ_CHOWN invokes AC_LIBOBJ(fchown-stub).
28015
28016 2004-07-09  Paul Eggert  <eggert@cs.ucla.edu>
28017
28018         * lib/fchown-stub.c: New file.
28019
28020 2004-06-24  Jim Meyering  <jim@meyering.net>
28021
28022         * lib/obstack.h (obstack_base): Cast to (void *), per documentation.
28023
28024 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
28025
28026         * modules/argz: Omit "#include".
28027
28028         * MODULES.html.sh (func_all_modules): Add calloc, to match
28029         2004-06-01 addition of calloc module.
28030
28031 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
28032
28033         * m4/argz.m4: New file, which is autoupdated from libtool.
28034
28035 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
28036
28037         * lib/argz.c, lib/argz_.h: New files, which are autoupdated from
28038         libtool.
28039
28040 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
28041
28042         * config/srclist-update: Don't insist on "USA." before the
28043         close-comment, as libtool omits the period and puts the */ on a
28044         separate line.
28045         * config/srclist.txt: Add argz.c, argz_.h, argz.m4.
28046         * config/srclistvars.sh: Add LIBTOOL (for eggert only).
28047
28048 2004-06-22  Gary V. Vaughan  <gary@gnu.org>
28049
28050         * modules/argz: New file.
28051         * MODULES.html.sh (func_all_modules): Add argz.
28052
28053 2004-06-12  Jim Meyering  <jim@meyering.net>
28054         and  Paul Eggert  <eggert@cs.ucla.edu>
28055
28056         * modules/hash (Files): Add lib/xalloc.h.
28057         * modules/pipe (Depends-on): Add wait-process.
28058         * modules/stat (Depends-on): Add xalloc.
28059         * modules/userspec (Files): Add lib/userspec.h.
28060         * modules/xstrto
28061
28062         Upgrade from gettext-0.13.
28063         * modules/gettext (Files): Add m4/intmax.m4, m4/longdouble.m4,
28064         m4/longlong.m4, m4/printf-posix.m4, m4/signed.m4, m4/size_max.m4,
28065         m4/wchar_t.m4, m4/wint_t.m4, m4/xsize.m4.
28066
28067 2004-06-10  Jim Meyering  <jim@meyering.net>
28068
28069         * lib/calloc.c: New file.
28070
28071 2004-06-06  Paul Eggert  <eggert@cs.ucla.edu>
28072
28073         * lib/getdate.y (yylex): Allow space between sign and number.
28074         Problem reported by Dan Jacobson.
28075
28076 2004-06-01  Paul Eggert  <eggert@cs.ucla.edu>
28077
28078         Merge from coreutils CVS.
28079
28080         * m4/backupfile.m4, dirname.m4, human.m4, inttypes.m4, longlong.m4,
28081         makepath.m4, memchr.m4, memcmp.m4, mountlist.m4, path-concat.m4,
28082         putenv.m4, quotearg.m4, readutmp.m4, strtoimax.m4, strtoll.m4,
28083         strtoull.m4, strtoumax.m4, ulonglong.m4, vasnprintf.m4,
28084         xstrtol.m4: Fix copyright date and/or serial number.
28085
28086         * m4/chown.m4 (gl_PREREQ_CHOWN): Check for fcntl.h.
28087         See if we need an fchown replacement.
28088         (gl_FUNC_CHOWN_FOLLOWS_SYMLINK): New macro.
28089         (gl_FUNC_CHOWN): Require gl_FUNC_CHOWN_FOLLOWS_SYMLINK,
28090         and use the replacement function if we detect either defect.
28091
28092         * m4/prereq.m4 (gl_PREREQ): Add gl_ALLOCSA, gl_CLOEXEC, gl_INTTOSTR,
28093         gl_UTIMECMP.
28094
28095 2004-06-01  Paul Eggert  <eggert@cs.ucla.edu>
28096         and  Jim Meyering  <jim@meyering.net>
28097
28098         Merge from coreutils CVS.
28099
28100         * lib/stat-macros.h: New file, with contents from file-type.h
28101         and coreutils' system.h.
28102         * lib/file-type.c: Include "stat-macros.h".
28103         * lib/file-type.h (file_type): Move all macro definitions to new file,
28104         stat-macros.h.
28105
28106         * lib/chown.c (rpl_chown) [CHOWN_FAILS_TO_HONOR_ID_OF_NEGATIVE_ONE]:
28107         Wrap old code with this conditional.
28108         [CHOWN_MODIFIES_SYMLINK]: Try to work around a chown
28109         function that does not dereference symlinks.
28110         * lib/lchown.c (lchown) [CHOWN_MODIFIES_SYMLINK]: Just call chown.
28111
28112         * lib/xreadlink.c: Include xreadlink.h first, to catch .h file
28113         dependency problems.
28114         (xreadlink): Accept new arg SIZE, for efficiency.
28115         All decls and uses changed.
28116         * lib/xreadlink.h: Include <stddef.h>, for size_t.
28117
28118         * lib/.cppi-disable: Add alloca_.h, allocsa.h, exit.h, getndelim2.h,
28119         gettext.h, localcharset.h, strdup.h, strndup.h, strtoul.c, time_r.h.
28120
28121         * lib/.cvsignore: Add alloca.h, fnmatch.h, poll.h, stdbool.h,
28122         sysexits.h.
28123
28124 2004-06-01  Jim Meyering  <jim@meyering.net>
28125
28126         * m4/calloc.m4: New file.
28127
28128 2004-05-31  Paul Eggert  <eggert@cs.ucla.edu>
28129
28130         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Detect _Bool bug in HP aC++/ANSI
28131         C B3910B A.05.55 [Dec 04 2003].  Problem reported by Jim Meyering.
28132         Also, fix a typo in a diagnostic.
28133
28134 2004-05-30  Paul Eggert  <eggert@cs.ucla.edu>
28135
28136         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Do not require AC_FUNC_MALLOC
28137         or AC_FUNC_REALLOC.
28138
28139 2004-05-30  Paul Eggert  <eggert@cs.ucla.edu>
28140
28141         * lib/xmalloc.c (HAVE_MALLOC, HAVE_REALLOC): Do not require these
28142         macros to be defined.
28143         (xnmalloc_inline, xnrealloc_inline, xcalloc): Do not die if
28144         the allocator returns NULL because the requested size is zero.
28145
28146 2004-05-20  Paul Eggert  <eggert@cs.ucla.edu>
28147
28148         * lib/malloc/obstack.c (_obstack) [defined _LIBC]: Bring back this
28149         var.  Add comment explaining why libc still defines it.  This
28150         merges the following patch from glibc:
28151         http://sources.redhat.com/ml/libc-alpha/2004-05/msg00157.html
28152
28153 2004-05-20  Andreas Schwab  <schwab@suse.de>
28154
28155         * m4/free.m4: Replace free if it not known to work, not the other
28156         way round.
28157
28158 2004-05-19  Paul Eggert  <eggert@cs.ucla.edu>
28159
28160         * lib/obstack.c (_obstack): Remove unused variable.  It hasn't been
28161         present in glibc since revision 1.1 of this file.
28162         * lib/obstack.h (_obstack_free, obstack_1grow, obstack_1grow_fast,
28163         obstack_alignment_mask, obstack_alloc, obstack_base,
28164         obstack_blank, obstack_blank_fast, obstack_chunk_size,
28165         obstack_copy, obstack_copy0, obstack_finish, obstack_grow,
28166         obstack_grow0, obstack_init, obstack_int_grow,
28167         obstack_int_grow_fast, obstack_make_room, obstack_memory_used,
28168         obstack_next_free, obstack_object_size, obstack_ptr_grow,
28169         obstack_ptr_grow_fast, obstack_room): Remove declarations of
28170         nonexistent functions.
28171
28172 2004-05-18  Karl Berry  <karl@gnu.org>
28173
28174         * config/srclist.txt: break link for vasnprintf.c.
28175
28176 2004-05-17  Paul Eggert  <eggert@cs.ucla.edu>
28177
28178         Port obstack to the AS/400, where pointers are 16 bytes wide and
28179         you cannot cast an integer to a valid pointer.  This patch is
28180         currently waiting to be integrated into glibc; see
28181         <http://sources.redhat.com/ml/libc-alpha/2004-05/msg00073.html>.
28182
28183         * lib/obstack.h (__PTR_TO_INT, __INT_TO_PTR): Remove.
28184         All uses of __INT_TO_PTR (PTR_TO_INT ...) replaced by __PTR_ALIGN.
28185         (__BPTR_ALIGN, __PTR_ALIGN): New macros.
28186         (struct obstack): temp member is now a union of a pointer and
28187         an integer, instead of an integer.  All integer uses changed.
28188         This does not affect the physical layout of struct obstack,
28189         except on hosts (like the AS/400) where the size or alignment of
28190         void * is greater than that of ptrdiff_t.
28191         (obstack_finish) [! (defined __GNUC__ && defined __STDC__ &&
28192         __STDC__)]: Store temporary in pointer member of union, not
28193         integer member.
28194         * lib/obstack.c: Include <stddef.h>, for offsetof.
28195         (struct fooalign): Remove; it doesn't need a name.
28196         (union fooround): Change double to long double, and add void *.
28197         (DEFAULT_ALIGNMENT): Use offsetof to compute.
28198         (DEFAULT_ALIGNMENT, DEFAULT_ROUNDING): Now an enum constant,
28199         not a macro.  Hence the values are always int; so remove all
28200         casts-to-int in uses.
28201
28202 2004-05-17  Paul Eggert  <eggert@cs.ucla.edu>
28203
28204         * config/srclist.txt: Break link for argp-help.c and argp-parse.c until
28205         we can get this patch merged into glibc.
28206
28207 2004-05-17  Derek R. Price  <derek@ximbiot.com>
28208             Paul Eggert  <eggert@cs.ucla.edu>
28209
28210         * m4/argp: Depend on alloca.
28211
28212 2004-05-17  Derek R. Price  <derek@ximbiot.com>
28213             Paul Eggert  <eggert@cs.ucla.edu>
28214
28215         * lib/argp-help.c, argp-parse.c: Assume <alloca.h> rather than
28216         freecoding.
28217
28218 2004-05-17  Bruno Haible  <bruno@clisp.org>
28219
28220         * lib/vasnprintf.c (VASNPRINTF): Correctly handle the case of a
28221         precision that consists of a '.' followed by an empty digit string.
28222         Patch by Tor Lillqvist <tml@iki.fi>.
28223
28224 2004-05-16  Paul Eggert  <eggert@cs.ucla.edu>
28225
28226         * m4/alloca.m4 (gl_FUNC_ALLOCA): Define HAVE_ALLOCA_H always,
28227         for backward compatibility with older code.  We need our own
28228         alloca.h if _AIX is defined.  Define HAVE_ALLOCA if we discover
28229         it under some other name, and our alloca.h will define it.
28230
28231 2004-05-16  Paul Eggert  <eggert@cs.ucla.edu>
28232             Derek Price  <derek@ximbiot.com>
28233
28234         * lib/alloca.c: Include <alloca.h>, to get our interface.
28235         * lib/alloca_.h: Use __alloca on AIX, so that we don't have to
28236         include <alloca.h> first.  Use C89 prototype for alloca; this
28237         requires including <stddef.h> for size_t.  Use extern "C" if C++.
28238         Use #elif for simplicity, since we can assume C89 now.
28239         Don't try to source the system alloca.h since it will not be found
28240         and to prevent recursively including its replacement.
28241         * lib/fnmatch.c: Include <alloca.h> instead of opencoding.
28242         * lib/regex.c: Likewise.
28243
28244 2004-05-16  Derek Price  <derek@ximbiot.com>
28245             Paul Eggert  <eggert@cs.ucla.edu>
28246
28247         getline cleanup.  This changes the getndelim2 API: both order of
28248         arguments, and meaning of delim2 (now uses EOF, not 0, to indicate
28249         no delimiter).
28250
28251         * lib/getline.c: Don't include stddef.h or stdio.h, since our
28252         interface does that.
28253         (getline): Always use getdelim, so that we don't have two
28254         copies of this code.
28255         * lib/getndelim2.c: Include <limits.h>, <inttypes.h>, <stdint.h>
28256         if available.
28257         (PTRDIFF_MAX, SIZE_MAX, SSIZE_MAX): Define if not defined.
28258         (GETNDELIM2_MAXIMUM): New macro.
28259         (getndelim2): Reorder arguments.  delim==EOF now means no delimiter,
28260         instead of the old practice of delim2==0.  All callers changed.
28261         Return -1 on overflow, instead of returning junk.
28262         Do not set *linesize unless allocation succeeds.
28263         * lib/getndelim2.h: Do not include stddef.h; no longer needed, now
28264         that we include sys/types.h.
28265         * lib/getnline.h: Likewise.
28266         * lib/getndelim2.h (GETNLINE_NO_LIMIT): New macro.
28267         (getndelim2): Reorder arguments.
28268         * lib/getnline.c (getnline, getndelim):
28269         Don't discard the NMAX argument.
28270         (getnline): Invoke getndelim, to avoid code duplication.
28271         * lib/getnline.h (GETNLINE_NO_LIMIT): New macro, used instead
28272         of (size_t) -1 by callers of the getnline family.
28273
28274 2004-05-13  Paul Eggert  <eggert@cs.ucla.edu>
28275
28276         * m4/gettime.m4 (gl_GETTIME): Require gl_TIMESPEC.
28277         Check for gettimeofday.
28278         * m4/settime.m4 (gl_SETTIME): Require gl_TIMESPEC.
28279         Check for settimeofday, stime.
28280
28281 2004-05-13  Paul Eggert  <eggert@cs.ucla.edu>
28282
28283         * lib/nanosleep.c (suspended): Change its type from int to
28284         sig_atomic_t volatile.
28285         (first_call): Make it private to rpl_nanosleep, and have it
28286         be zero initially as that's a bit faster.
28287         (my_usleep): Round up fractional times instead of truncating them,
28288         as this is the usual meaning for 'sleep'.
28289
28290         * lib/gettime.c (gettime): Fall back on `time' if `gettimeofday'
28291         doesn't work.
28292         * lib/settime.c: Include <unistd.h>, for stime (on Solaris 8, anyway).
28293         (ENOSYS): Define if not defined.
28294         (settime): Fall back on stime if it exists and settimeofday fails.
28295         But don't bother with fallbacks if a method fails with errno == EPERM.
28296
28297 2004-05-11  Jim Meyering  <jim@meyering.net>
28298
28299         Prior to this change, the save_cwd caller required read access to the
28300         current directory on most systems (ones with the fchdir function).
28301
28302         * lib/save-cwd.c (save_cwd) [HAVE_FCHDIR]: If opening `.' read-only
28303         fails, try write-only, and finally, resort to using xgetcwd.
28304
28305 2004-05-06  Paul Eggert  <eggert@cs.ucla.edu>
28306
28307         * lib/obstack.c, obstack.h: Import changes from libc.
28308
28309 2004-04-28  Bruno Haible  <bruno@clisp.org>
28310
28311         * lib/findprog.c (find_in_path): Treat Cygwin like Windows, since it
28312         also implicitly appends .exe to executables.
28313         * lib/localcharset.c (ISSLASH): Treat Cygwin like Windows, since it now
28314         accepts Windows pathnames.
28315         * lib/pathname.h (ISSLASH, IS_PATH_WITH_DIR, FILESYSTEM_PREFIX_LEN):
28316         Treat Cygwin like Windows, since it now accepts Windows pathnames.
28317         * lib/progreloc.c (ISSLASH, IS_PATH_WITH_DIR, FILESYSTEM_PREFIX_LEN):
28318         Treat Cygwin like Windows, since it now accepts Windows pathnames.
28319         Reported by Derek Robert Price <derek@ximbiot.com>.
28320
28321 2004-04-21  Karl Berry  <karl@gnu.org>
28322
28323         * config/srclist.txt (localcharset.c): break sync.
28324
28325 2004-04-20  Paul Eggert  <eggert@twinsun.com>
28326
28327         * m4/host-os.m4: Add a copyright notice.
28328
28329 2004-04-20  Jim Meyering  <jim@meyering.net>
28330
28331         Change UTILS_ to gl_ in AC_DEFINE'd names.
28332         Change utils_- and jm_-prefixed variables, too.
28333         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Renamed from
28334         UTILS_FUNC_MKDIR_TRAILING_SLASH.
28335         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Renamed from UTILS_FUNC_MKSTEP.
28336
28337         * m4/dirfd.m4 (gl_FUNC_DIRFD): Rename from UTILS_FUNC_DIRFD.
28338         Don't emit trailing blanks.
28339         Also rename jm_-prefixed variables to have gl_ prefix.
28340
28341         * m4/host-os.m4 (gl_HOST_OS): Rename from UTILS_HOST_OS.
28342         Also rename jm_-prefixed variables to have gl_ prefix.
28343
28344         * m4/jm-macros.m4: Reflect the renamings.
28345         * m4/prereq.m4: Likewise.
28346
28347 2004-04-20  Jim Meyering  <jim@meyering.net>
28348
28349         * lib/getndelim2.c (getndelim2): Upon realloc failure, don't leak
28350         memory.
28351
28352 2004-04-20  Jim Meyering  <jim@meyering.net>
28353             Bruno Haible  <bruno@clisp.org>
28354
28355         * lib/localcharset.c (get_charset_aliases) [!VMS && !WIN32]: Don't leak
28356         memory when realloc fails.
28357
28358 2004-04-19  Jim Meyering  <jim@meyering.net>
28359
28360         * m4/readutmp.m4 (gl_PREREQ_READUTMP): Require gl_FUNC_FREE,
28361         now that readutmp.c may call `free (0)'.
28362
28363 2004-04-19  Bruno Haible  <bruno@clisp.org>
28364
28365         * m4/mbrtowc.m4: Change jm_ to gl_ in cache variables as well.
28366         * m4/inttypes_h.m4: Likewise.
28367         * m4/stdint_h.m4: Likewise.
28368         * m4/intmax_t.m4: Likewise.
28369         * m4/uintmax_t.m4: Likewise.
28370
28371 2004-04-18  Jim Meyering  <jim@meyering.net>
28372
28373         * m4/prereq.m4: Don't forbid jm_ prefix.
28374
28375         * m4/afs.m4, m4/allocsa.m4, m4/assert.m4, m4/backupfile.m4:
28376         * m4/bison.m4, m4/check-decl.m4, m4/chown.m4, m4/d-ino.m4:
28377         * m4/d-type.m4, m4/dirname.m4, m4/dos.m4, m4/error.m4, m4/fpending.m4:
28378         * m4/fstypename.m4, m4/fsusage.m4, m4/ftruncate.m4, m4/getdate.m4:
28379         * m4/getgroups.m4, m4/gettext.m4, m4/glibc21.m4, m4/group-member.m4:
28380         * m4/human.m4, m4/intmax.m4, m4/intmax_t.m4, m4/inttostr.m4:
28381         * m4/inttypes.m4, m4/inttypes_h.m4, m4/jm-macros.m4, m4/jm-winsz1.m4:
28382         * m4/jm-winsz2.m4, m4/lchown.m4, m4/lib-check.m4, m4/link-follow.m4:
28383         * m4/localcharset.m4, m4/longlong.m4, m4/ls-mntd-fs.m4, m4/lstat.m4:
28384         * m4/makepath.m4, m4/mbrtowc.m4, m4/mbswidth.m4, m4/memchr.m4:
28385         * m4/memcmp.m4, m4/mkdtemp.m4, m4/mkstemp.m4, m4/mountlist.m4:
28386         * m4/nanosleep.m4, m4/path-concat.m4, m4/perl.m4, m4/prereq.m4:
28387         * m4/putenv.m4, m4/quotearg.m4, m4/regex.m4, m4/stat.m4:
28388         * m4/stdint_h.m4, m4/strftime.m4, m4/strtoimax.m4, m4/strtoll.m4:
28389         * m4/strtoull.m4, m4/strtoumax.m4, m4/timespec.m4, m4/uintmax_t.m4:
28390         * m4/ulonglong.m4, m4/unlink-busy.m4, m4/unlocked-io.m4, m4/uptime.m4,
28391         * m4/utimbuf.m4, m4/utime.m4, m4/utimes-null.m4, m4/vasnprintf.m4:
28392         * m4/xstrtoimax.m4, m4/xstrtol.m4, m4/xstrtoumax.m4:
28393         Change jm_ to gl_ in AC_DEFINE'd names. Update all uses.
28394
28395 2004-04-18  Jim Meyering  <jim@meyering.net>
28396
28397         * lib/readutmp.c (read_utmp) [UTMP_NAME_FUNCTION]: Upon realloc
28398         failure, don't leak memory and do call END_UTMP_ENT.
28399
28400 2004-04-16  Jim Meyering  <jim@meyering.net>
28401
28402         * m4/prereq.m4 (jm_PREREQ_STAT): Remove macro.  It is specific to
28403         coreutils' stat program.
28404         (gl_PREREQ): Don't require jm_PREREQ_STAT.
28405
28406 2004-04-11  Paul Eggert  <eggert@twinsun.com>
28407
28408         * lib/inttostr.h: Include <limits.h> unconditionally, since we assume
28409         C89.
28410         (CHAR_BIT): Remove, since we assume C89.
28411         Include <stdint.h> if available, as per current Autoconf CVS advice.
28412
28413 2004-03-31  Jim Meyering  <jim@meyering.net>
28414
28415         * m4/prereq.m4: Require AC_FUNC_MALLOC, not jm_FUNC_MALLOC.
28416         Require AC_FUNC_REALLOC, not jm_FUNC_REALLOC.
28417         * m4/xalloc.m4: Likewise.
28418
28419 2004-03-30  Paul Eggert  <eggert@twinsun.com>
28420
28421         Merge from coreutils.
28422
28423         * m4/inttostr.m4: New file.
28424         * m4/getdate.m4 (gl_GETDATE): Remove time-related stuff.
28425         Require AM_STDBOOL_H and gl_TIMESPEC instead.
28426         Require gl_CLOCK_TIME.
28427         * m4/clock_time.m4 (gl_CLOCK_TIME): Require AC_GNU_SOURCE.
28428
28429 2004-03-30  Paul Eggert  <eggert@twinsun.com>
28430
28431         * lib/cloexec.h, cloexec.c (set_cloexec_flag): Return int
28432         not bool, to be more consistent with Unix conventions.
28433         Suggested by Bruno Haible.
28434
28435         Merge from coreutils.
28436
28437         * lib/imaxtostr.c, lib/inttostr.c, lib/inttostr.h, lib/offtostr.c:
28438         * lib/umaxtostr.c: New files.
28439
28440         * lib/getdate.h: Include stdbool.h, and timespec.h instead of
28441         the usual <time.h> dance.
28442         (get_date): Change signature to support fractional time stamps.
28443         All callers changed.
28444         * lib/getdate.y: Include "getdate.h" first, as we can now
28445         assume C89 and don't need to worry about 'const'.
28446         Similarly, include "unlocked-io.h" near start, not in middle.
28447         Include <limits.h>.
28448         (textint.value): Use long int rather than int.
28449         (textint.digits): Use size_t rather than int.
28450         (BILLION, LOG10_BILLION): New constants.
28451         (parser_control): New member rel_ns.  Members day_ordinal,
28452         time_zone, month, day, hour, minutes, rel_year, rel_month,
28453         rel_day, rel_hour, rel_minutes, rel_seconds
28454         are now long int, not int.  Member seconds is now struct timespec,
28455         not int.  New member timespec_seen.  Members dates_seen, days_seen,
28456         local_zones_seen, rels_seen, times_seen, zones_seen are now size_t,
28457         not int.
28458         (%union.intval): Now long int, not int.
28459         New member timespec.
28460         (tSDECIMAL_NUMBER, tUDECIMAL_NUMBER): New tokens.
28461         (seconds, signed_seconds, unsigned_seconds): New nonterminals.
28462         (spec): Now is a timespec or an item list.
28463         (timespec, items): New nonterminals.
28464         (time, rel, relunit, number, get_date):
28465         Add support for fractional seconds.
28466         (time): Fix bug: seconds weren't cleared in "00:00 +0000" syntax.
28467         (gmtime, localtime, mktime): Remove decls; not needed with C89.
28468         (to_hour): First arg is now long int, not int.
28469         (to_year): Returns long int, not int.
28470         Don't treat year -70 like 70.
28471         (tm_diff): Returns long int, not int.
28472         (lookup_word): Use bool instead of int when appropriate.
28473         (yylex): Use size_t for count, not int.
28474         Detect overflow when parsing large integer constants.
28475         Add support for fractions.
28476         (get_date): Make pointers 'const' if possible.
28477         Use more-portable code to detect integer overflow.
28478         (main) [TEST]: Adjust to above changes.  Test for localtime failure.
28479         Don't use ctime; it's not reliable if the year has >4 digits.
28480
28481         * lib/human.c (humblock): Inspect BLOCKSIZE if BLOCK_SIZE isn't set.
28482         This is for compatibility with BSD.
28483
28484         * lib/timespec.h (ST_TIME_CMP_NS, ST_TIME_CMP): Define.
28485         (ATIME_CMP, CTIME_CMP, MTIME_CMP, TIMESPEC_NS): Likewise.
28486         From coreutils' system.h.
28487
28488         * lib/userspec.c: Don't include "posixver.h".
28489         (parse_user_spec): Fall back on USER.GROUP parsing, regardless
28490         of POSIX version, as POSIX 1003.1-2001 allows that behavior as a
28491         compatible extension.  Simplify code by removing a boolean int
28492         that was always nonzero if a string was nonnull.
28493
28494 2004-03-30  Jim Meyering  <jim@meyering.net>
28495
28496         Merge from coreutils.
28497
28498         Avoid a configure-time warning about sys/ucred.h on OSF V4.0.
28499         * m4/ls-mntd-fs.m4: Test for sys/ucred.h separately, since
28500         on some systems one must include <grp.h> before it.
28501         Reported by Christian Krackowizer.
28502
28503 2004-03-30  Jim Meyering  <jim@meyering.net>
28504
28505         Merge from coreutils.
28506
28507         * lib/mountlist.c [HAVE_SYS_UCRED_H]: Include grp.h before sys/ucred.h.
28508
28509         * lib/readtokens.c (readtoken): Don't leak 64 bytes when reading
28510         an empty input stream.
28511
28512         * lib/readtokens.c: Include <stdbool.h>.
28513         (readtoken): Use `size_t' rather than int/long.
28514         All callers adjusted.
28515         Use `bool' rather than `int' where appropriate.
28516         Use memset rather than an explicit loop.
28517         Use x2nrealloc rather than xrealloc.
28518         Allow the use of `\0' as a delimiter.
28519         (readtokens): Likewise.
28520         * lib/readtokens.h (readtoken, readtokens): Update prototypes.
28521
28522 2004-03-30  Jim Meyering  <jim@meyering.net>
28523
28524         * m4/realloc.m4: Remove file, since now it does no more than
28525         AC_REQUIRE([AC_FUNC_REALLOC]), and that can be done via
28526         the `configure.ac' section of module/realloc.
28527         * m4/malloc.m4: Likewise, but for AC_FUNC_MALLOC.
28528
28529 2004-03-30  Bruno Haible  <bruno@clisp.org>
28530
28531         * lib/getloadavg.c (getloadavg): Don't assume setlocale returns
28532         nonnull.
28533
28534 2004-03-29  Paul Eggert  <eggert@twinsun.com>
28535
28536         Merge changes to getloadavg.c from coreutils and Emacs.
28537
28538         * lib/getloadavg.c [!defined HAVE_SETLOCALE] (setlocale):
28539         Define to an expression, not to the empty string.
28540         Include cloexec.h and xalloc.h.
28541         (getloadavg): Restore LC_NUMERIC locale after setting it temporarily.
28542         Use set_cloexec_flag rather than rolling our own.
28543         * lib/cloexec.c, lib/cloexec.h: New files.
28544
28545 2004-03-29  Paul Eggert  <eggert@twinsun.com>
28546
28547         * m4/cloexec.m4: New file.
28548
28549 2004-03-18  Paul Eggert  <eggert@twinsun.com>
28550
28551         * lib/getopt.h: Sync with libc CVS.
28552
28553 2004-03-18  Paul Eggert  <eggert@twinsun.com>
28554             Bruno Haible  <bruno@clisp.org>
28555
28556         * m4/mbswidth.m4 (gl_MBSWIDTH): Also test whether <wchar.h> declares
28557         mbswidth.
28558
28559 2004-03-18  Paul Eggert  <eggert@twinsun.com>
28560             Bruno Haible  <bruno@clisp.org>
28561
28562         * lib/mbswidth.h: Include <wchar.h> only if
28563         HAVE_DECL_MBSWIDTH_IN_WCHAR_H, not on all platforms that have
28564         <wchar.h>.
28565         * lib/mbswidth.c: Include <stdio.h> and <time.h> before <wchar.h>.
28566
28567 2004-03-09  Paul Eggert  <eggert@twinsun.com>
28568
28569         * lib/argp-parse.c, getopt.c, getopt.h, getopt1.c:
28570         Sync with libc CVS.
28571         * lib/getopt_int.h: New file, also synced from libc.
28572
28573 2004-03-09  Paul Eggert  <eggert@twinsun.com>
28574
28575         * config/srclistvars.sh: Add GNUWWWLICENSES for eggert.
28576         * config/srclist.txt: Sync getopt with libc.  Add getopt_int.h.
28577         Bring back getopt.c, getopt.h, getopt1.c.
28578
28579 2004-03-07  Paul Eggert  <eggert@twinsun.com>
28580
28581         * m4/c-stack.m4 (gl_PREREQ_C_STACK): Renamed from jm_PREREQ_C_STACK.
28582         All uses changed.  Check for sa_sigaction member; this fixes
28583         a bug first reported by Jason Andrade in
28584         <http://mail.gnu.org/archive/html/bug-textutils/2003-03/msg00027.html>.
28585
28586 2004-03-07  Paul Eggert  <eggert@twinsun.com>
28587
28588         * lib/c-stack.c (SIGACTION_WORKS): New macro.  Use it instead of long
28589         '#if' expressions.  Unlike the code it replaces, it does not
28590         depend on (defined _SC_PAGESIZE).  However, it does depend on
28591         HAVE_STRUCT_SIGACTION_SA_SIGACTION; this last change fixes a bug
28592         first reported by Jason Andrade in
28593         <http://mail.gnu.org/archive/html/bug-textutils/2003-03/msg00027.html>.
28594
28595 2004-02-25  Simon Josefsson  <jas@extundo.com>
28596
28597         * m4/strdup.m4 (gl_PREREQ_STRDUP): Check whether strdup is declared.
28598
28599 2004-02-25  Simon Josefsson  <jas@extundo.com>
28600
28601         * lib/strdup.h: New file.
28602         * lib/strdup.c: Include it.
28603         * lib/path-concat.c: Include strdup.h. Drop strdup declaration.
28604         * lib/userspec.c: Include strdup.h. Drop strdup declaration.
28605
28606 2004-02-23  Karl Berry  <karl@gnu.org>
28607
28608         * doc/maintain.texi, doc/standards.texi, doc/make-stds.texi: new files
28609         (from fencepost.gnu.org:/gd/gnuorg).
28610
28611 2004-02-23  Karl Berry  <karl@gnu.org>
28612
28613         * config/srclistvars.sh (GNUORG) [karl]: redefine.
28614         * config/srclist.txt: add maintain/standards documents.
28615
28616 2004-02-18  Bruno Haible  <bruno@clisp.org>
28617
28618         * m4/xsize.m4 (gl_XSIZE): Require AC_C_INLINE.
28619         Reported by Derek Robert Price <derek@ximbiot.com>.
28620
28621 2004-02-16  Karl Berry  <karl@gnu.org>
28622
28623         * config/mkinstalldirs, install-sh: update from automake.
28624
28625 2004-02-06  Karl Berry  <karl@gnu.org>
28626
28627         * m4/po.m4: update from gettext 0.14.1.
28628
28629 2004-02-06  Karl Berry  <karl@gnu.org>
28630
28631         * lib/config.charset: update from gettext 0.14.1.
28632
28633 2004-02-05  Paul Eggert  <eggert@twinsun.com>
28634
28635         Add comments and code, prompted by suggestions from Bruno Haible
28636         for sh-quote.
28637         * lib/quotearg.h (quotearg_alloc): New decl.  Improve the comments
28638         describing the enum quoting_style values.
28639         * lib/quotearg.c (quotearg_alloc): New function.
28640         (quotearg_buffer_restyled): Treat lone { and } as special.
28641         Treat = as special.  Work around bug with older shells
28642         that "see" a '\' that is really the 2nd byte of a multibyte char.
28643         Quote empty string with shell_quoting_style.
28644
28645 2004-02-03  Bruno Haible  <bruno@clisp.org>
28646
28647         * m4/pipe.m4: New file, from GNU gettext.
28648
28649 2004-02-03  Bruno Haible  <bruno@clisp.org>
28650
28651         * lib/pipe.h: New file, from GNU gettext.
28652         * lib/pipe.c: New file, from GNU gettext.
28653
28654 2004-01-27  Bruno Haible  <bruno@clisp.org>
28655
28656         * m4/execute.m4: New file, from GNU gettext.
28657
28658 2004-01-27  Bruno Haible  <bruno@clisp.org>
28659
28660         * lib/execute.h: New file, from GNU gettext.
28661         * lib/execute.c: New file, from GNU gettext.
28662         * lib/w32spawn.h: New file, from GNU gettext.
28663
28664 2004-01-24  Paul Eggert  <eggert@twinsun.com>
28665
28666         Merge from diffutils.
28667
28668         * lib/file-type.c (file_type): Add typed memory objects.
28669         * lib/file-type.h (S_TYPEISTMO): New macro.
28670
28671         * lib/c-stack.h (c_stack_action): Remove argv argument.
28672         * lib/c-stack.c (c_stack_action): Likewise.  All uses changed.
28673         (die): Don't calculate message unless segv_action returns.
28674         (get_stack_location, min_address_from_argv, max_address_from_argv,
28675         volatile stack_base, volatile_stack_size): Remove.
28676         (segv_handler): If ! HAVE_XSI_STACK_OVERFLOW_HEURISTIC, assume
28677         that every segmentation violation is a stack overflow.  (Ouch!)
28678         See Debian bug 136249 (still outstanding) for more info about why
28679         HAVE_XSI_STACK_OVERFLOW_HEURISTIC fails on Linux kernels.
28680
28681 2004-01-24  Paul Eggert  <eggert@twinsun.com>
28682
28683         Exit-status fix from coreutils.
28684
28685         Use exit_failure consistently in place of EXIT_FAILURE,
28686         so that program exit statuses are consistent on failure.
28687
28688         * lib/argmatch.c (ARGMATCH_DIE) [! defined ARGMATCH_DIE]:
28689         Include "exitfail.h", and use exit_failure rather than EXIT_FAILURE.
28690         * lib/argmatch.h: Comment fix to match the above.
28691         * lib/obstack.c (obstack_exit_failure) [!defined _LIBC]:
28692         Now a macro referring to exit_failure, instead of a separate
28693         variable.  Include "exitfail.h" to get it.
28694         * lib/xstrtol.h: Include "exitfail.h".
28695         (STRTOL_FATAL_ERROR): Exit with status exit_failure, not 2.
28696
28697         * lib/long-options.c (parse_long_options): Use prototype
28698         for usage function arg.  Pass it EXIT_SUCCESS rather than 0,
28699         for clarity.
28700
28701 2004-01-21  Jim Meyering  <jim@meyering.net>
28702
28703         * lib/mktime.c (__mktime_internal) [!_LIBC]: Define to mktime_internal
28704         so as not to conflict with a different-sized __mktime_internal
28705         function in GNU libc.
28706         * lib/timegm.c (__mktime_internal) [!_LIBC]: Likewise.
28707         Problem building statically-linked `ls' reported by Michael Brunnbauer.
28708
28709 2004-01-20  Karl Berry  <karl@gnu.org>
28710
28711         * config/config.guess: update from config.
28712
28713         * config/srclistvars.sh: GNUWWWLICENSES for karl.
28714
28715 2004-01-20  Bruno Haible  <bruno@clisp.org>
28716
28717         Safer stack allocation.
28718         * lib/setenv.c: Include allocsa.h.
28719         (alloca): Remove fallback definition.
28720         (freea): Remove macro.
28721         (__add_to_environ) [!_LIBC]: Use allocsa instead of alloca. Use freesa
28722         instead of freea.
28723
28724 2004-01-20  Bruno Haible  <bruno@clisp.org>
28725
28726         * m4/eealloc.m4: New file, from GNU gettext.
28727
28728 2004-01-20  Bruno Haible  <bruno@clisp.org>
28729
28730         * m4/allocsa.m4: New file, from GNU gettext.
28731
28732 2004-01-20  Bruno Haible  <bruno@clisp.org>
28733
28734         * lib/xallocsa.h: New file, from GNU gettext.
28735         * lib/xallocsa.c: New file, from GNU gettext.
28736
28737 2004-01-20  Bruno Haible  <bruno@clisp.org>
28738
28739         * lib/wait-process.c: On Windows, include windows.h. Needed on mingw.
28740
28741 2004-01-20  Bruno Haible  <bruno@clisp.org>
28742
28743         * lib/wait-process.c (wait_subprocess): Add ignore_sigpipe argument.
28744         * lib/wait-process.c (wait_subprocess): Likewise. Handle SIGPIPE
28745         specially.
28746
28747 2004-01-20  Bruno Haible  <bruno@clisp.org>
28748
28749         * lib/wait-process.c (wait_process): Disable the 2003-10-31 waitid()
28750         patch.
28751
28752 2004-01-20  Bruno Haible  <bruno@clisp.org>
28753
28754         * lib/wait-process.c (cleanup_slaves): Use ANSI C declaration.
28755
28756 2004-01-20  Bruno Haible  <bruno@clisp.org>
28757
28758         * lib/eealloc.h: New file.
28759
28760 2004-01-20  Bruno Haible  <bruno@clisp.org>
28761
28762         * lib/binary-io.h: Avoid warnings on Cygwin.
28763
28764 2004-01-20  Bruno Haible  <bruno@clisp.org>
28765
28766         * lib/allocsa.h: New file, from GNU gettext.
28767         * lib/allocsa.c: New file, from GNU gettext.
28768
28769 2004-01-18  Karl Berry  <karl@gnu.org>
28770
28771         * doc/gpl.texi, doc/lgpl.texi: new files.
28772
28773 2004-01-18  Karl Berry  <karl@gnu.org>
28774
28775         * config/srclistvars.sh (GNUWWWLICENSES): new variable.
28776         * config/srclist.txt ({fdl,gpl,lgpl}.text): get from there.
28777
28778 2004-01-15  Paul Eggert  <eggert@twinsun.com>
28779
28780         Merge from coreutils.
28781
28782         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Check for uintptr_t.
28783         * m4/posixver.m4 (gl_POSIXVER): Require gl_DEFAULT_POSIX2_VERSION.
28784         (gl_DEFAULT_POSIX2_VERSION): Move
28785         the documentation from 'configure' into 'config.hin',
28786         so that 'configure --help' isn't burdened by it and
28787         we don't have to worry about its formatting there.
28788         Reword the documentation so that it's more succinct
28789         and can be run together into a single paragraph.
28790         * m4/same.m4 (gl_SAME): Check for pathconf.
28791
28792 2004-01-15  Paul Eggert  <eggert@twinsun.com>
28793
28794         Merge from coreutils.
28795
28796         * lib/posixver.c: Include posixver.h.
28797
28798         * lib/same.c: Include <stdbool.h>, <limits.h>.
28799         (_POSIX_NAME_MAX): Define if not defined.
28800         (MIN): New macro.
28801         (same_name): If file names are silently truncated, report
28802         that the file names are the same if they are the same after
28803         the silent truncation.
28804
28805         * lib/xstrtod.h (xstrtod): Accept an extra arg, specifying the
28806         conversion function.
28807         * lib/xstrtod.c (xstrtod): Likewise.  All callers changed to
28808         include c-strtod.h and use c_strtod.  Don't include stdlib.h; no
28809         longer needed.
28810
28811 2004-01-15  Jim Meyering  <jim@meyering.net>
28812
28813         Merge from coreutils.
28814
28815         * m4/clock_time.m4 (gl_CLOCK_TIME): Don't set LIB_CLOCK_GETTIME
28816         if no library is required.
28817         * m4/jm-macros.m4: Don't require UTILS_SYS_OPEN_MAX.
28818         * m4/jm-macros.m4 (jm_MACROS): Require gl_FUNC_FREE.
28819         * m4/jm-macros.m4 (jm_MACROS): Require autoconf-2.58.
28820         (AC_LANG_SOURCE): Remove definition, now that we require autoconf-2.58.
28821         * m4/jm-macros.m4 (jm_MACROS): Don't require AC_FUNC_FTW.
28822         * m4/lib-check.m4 (jm_LIB_CHECK): Do not set LIB_CRYPT to the
28823         value, $ac_cv_search_crypt, if it's "none required".
28824         * m4/posixver.m4 (gl_DEFAULT_POSIX2_VERSION): New macro.
28825         * m4/prereq.m4 (jm_PREREQ): Require AC_FUNC_GETLOADAVG,
28826         not gl_FUNC_GETLOADAVG.
28827         * m4/prereq.m4 (jm_PREREQ): Require gl_READTOKENS, gl_MD5, gl_MAKEPATH,
28828         gl_LONG_OPTIONS, and gl_IDCACHE, gl_GETUGROUPS.
28829
28830 2004-01-15  Jim Meyering  <jim@meyering.net>
28831
28832         Merge from coreutils.
28833
28834         * lib/md5.h (rol) [__GNUC__ && __i386__]: Don't use `asm' code.  These
28835         days, gcc-3.x does better all by itself.  Patch from Dean Gaudet:
28836         http://mail.gnu.org/archive/html/bug-coreutils/2003-11/msg00144.html
28837
28838         * lib/posixver.c (DEFAULT_POSIX2_VERSION): Use definition of new,
28839         optional configure-time default.
28840
28841         * lib/version-etc.c (version_etc_copyright): Update copyright date.
28842
28843         * lib/xreadlink.c (xreadlink): Correct outdated comment.
28844
28845 2004-01-15  Alexandre Duret-Lutz  <adl@gnu.org>
28846
28847         Merge from coreutils.
28848
28849         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Do not set LIB_NANOSLEEP to the
28850         value, $ac_cv_search_nanosleep, if it's "none required".
28851
28852 2004-01-14  Paul Eggert  <eggert@twinsun.com>
28853
28854         * lib/fnmatch_loop.c (ALLOCA_LIMIT): Remove macro, which collided
28855         with like-named macro in fnmatch.c.
28856         (EXT): Use an internal constant instead.
28857
28858         Merge fnmatch patches from glibc.
28859         * lib/fnmatch.c (mbsinit): Remove define.
28860         Add libc_hidden_ver (__fnmatch, fnmatch).
28861         * lib/fnmatch_loop.c (FCT): Cast to int32_t and UCHAR when appropriate.
28862         Adjust to renaming of collseq_table_lookup to __collseq_table_lookup.
28863
28864 2004-01-14  Karl Berry  <karl@gnu.org>
28865
28866         * config/install-sh: update from automake.
28867
28868 2004-01-13  Karl Berry  <karl@gnu.org>
28869
28870         * config/install-sh: update from automake.
28871
28872 2004-01-09  Karl Berry  <karl@gnu.org>
28873
28874         * config/install-sh: update from automake.
28875
28876 2004-01-05  Karl Berry  <karl@gnu.org>
28877
28878         * config/config.{sub,guess}: update from config.
28879
28880 2003-12-31  Karl Berry  <karl@gnu.org>
28881
28882         * config/depcomp: update from automake.
28883
28884 2003-12-14  Karl Berry  <karl@gnu.org>
28885
28886         * lib/config.charset: update from gettext-runtime.
28887
28888 2003-12-03  Paul Eggert  <eggert@twinsun.com>
28889
28890         * lib/getgroups.c (getgroups): xmalloc takes one argument, not two.
28891         Bug reported by Alfred M. Szmidt.
28892
28893 2003-12-03  Bruno Haible  <bruno@clisp.org>
28894
28895         * m4/gettext.m4: Upgrade from gettext-0.13.
28896         * m4/po.m4: Upgrade from gettext-0.13.
28897         * m4/size_max.m4 (gl_SIZE_MAX): Don't use the _ONCE macros here.
28898         * m4/intmax.m4: New file, from gettext-0.13.
28899         * m4/printf-posix.m4: New file, from gettext-0.13.
28900
28901 2003-11-29  Karl Berry  <karl@gnu.org>
28902
28903         * lib/argp-{help.c,parse.c,namefrob.h}, argp.h: update from libc.
28904
28905 2003-11-25  Paul Eggert  <eggert@twinsun.com>
28906             Bruno Haible  <bruno@clisp.org>
28907
28908         * lib/printf-parse.h: Don't include sys/types.h.
28909         (ARG_NONE): New macro.
28910         (char_directive): Change type of *arg_index fields to size_t.
28911         * lib/printf-parse.c: Don't include sys/types.h.
28912         (SSIZE_MAX): Remove macro.
28913         (PRINTF_PARSE): Change the type of the arg_index variables to size_t.
28914         Remove unnecessary overflow check.
28915         * lib/vasnprintf.c (VASNPRINTF): Update for type change of *arg_index
28916         fields.
28917
28918 2003-11-25  Bruno Haible  <bruno@clisp.org>
28919
28920         * modules/vasnprintf (Files): Remove m4/ssize_t.m4.
28921
28922 2003-11-25  Bruno Haible  <bruno@clisp.org>
28923
28924         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_PARSE): Don't require
28925         gt_TYPE_SSIZE_T.
28926
28927 2003-11-24  Paul Eggert  <eggert@twinsun.com>
28928
28929         * modules/alloca: Remove dependency on xalloc.
28930
28931 2003-11-24  Paul Eggert  <eggert@twinsun.com>
28932
28933         * lib/alloca.c: Remove dependency on xalloc module.
28934         (xalloc_die): Remove.
28935         (memory_full) [!defined emacs]: New macro.
28936         [!defined emacs]: Don't include xalloc.h.
28937         (alloca): Invoke memory_full, not xalloc_die, if malloc fails or
28938         address arithmetic overflows.  Change datatypes a bit to avoid
28939         unnecessary casts.
28940
28941 2003-11-22  Jim Meyering  <jim@meyering.net>
28942
28943         * lib/xmalloc.c (x2nrealloc_inline): Fix typos in comments:
28944         s/size/size_t/.
28945
28946 2003-11-21  Karl Berry  <karl@gnu.org>
28947
28948         * config/config.{sub,guess}: update from config.
28949
28950 2003-11-18  Karl Berry  <karl@gnu.org>
28951
28952         * config/config.{sub,guess}: update from config.
28953
28954         * config/(printf-{parse,args}.[ch]): sync broken, sigh.
28955
28956 2003-11-17  Paul Eggert  <eggert@twinsun.com>
28957
28958         * README: Mention that S+T cannot overflow if S is the size of
28959         an existing object and T is sufficiently small.
28960
28961 2003-11-17  Jim Meyering  <jim@meyering.net>
28962
28963         On systems without utime and without a utimes function capable of
28964         dealing with a NULL struct utimbuf* argument, this utime replacement
28965         could -- in unusual circumstances -- leak a file descriptor.
28966         * lib/utime.c: Include <unistd.h> and <errno.h>.
28967         (utime_null): Be sure to close `fd' and to preserve errno.
28968         Reported by Geoff Collyer via Arnold Robbins.
28969
28970 2003-11-17  Bruno Haible  <bruno@clisp.org>
28971
28972         * modules/vasnprintf (Files): Add m4/ssize_t.m4.
28973         (Depends-on): Add xsize.
28974
28975 2003-11-17  Bruno Haible  <bruno@clisp.org>
28976
28977         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_PARSE): Require gt_TYPE_SSIZE_T.
28978
28979 2003-11-17  Bruno Haible  <bruno@clisp.org>
28980
28981         * lib/vasnprintf.c (alloca): Remove fallback definition.
28982         (freea): Remove definition.
28983         (VASNPRINTF): Use alloca only for small sizes, say <= 4000 bytes.
28984         Reported by Paul Eggert.
28985
28986 2003-11-16  Paul Eggert  <eggert@twinsun.com>
28987             Bruno Haible  <bruno@clisp.org>
28988
28989         Protect against address arithmetic overflow.
28990         * lib/printf-args.h: Include stddef.h.
28991         (arguments): Change type of field 'count' to size_t.
28992         * lib/printf-args.c (printf_fetchargs): Use size_t instead of
28993         'unsigned int' where appropriate.
28994         * lib/printf-parse.h: Include sys/types.h.
28995         (char_directive): Change type of *arg_index fields to ssize_t.
28996         (char_directives): Change type of fields 'count', max_*_length to
28997         size_t.
28998         * lib/printf-parse.c: Include sys/types.h and xsize.h.
28999         (SSIZE_MAX): Define fallback value.
29000         (PRINTF_PARSE): Use size_t instead of 'unsigned int' and ssize_t
29001         instead of 'int' where appropriate. Check a_allocated, d_allocated
29002         against overflow. Reject %m$ argument numbers > SSIZE_MAX + 1.
29003         * lib/vasnprintf.c: Include xsize.h.
29004         (VASNPRINTF): Use size_t instead of 'unsigned int' where appropriate.
29005         Check alloca, malloc, realloc, ENSURE_ALLOCATION arguments against
29006         overflow. Avoid wraparound when converting a width or precision from
29007         decimal to binary.
29008
29009 2003-11-16  Bruno Haible  <bruno@clisp.org>
29010
29011         Update from GNU gettext.
29012         * lib/printf-parse.c: Generalize to it can be compiled for wide
29013         strings.
29014         (PRINTF_PARSE, CHAR_T, DIRECTIVE, DIRECTIVES): New macros.
29015         * lib/vasnprintf.c: Generalize to it can be compiled for wide strings.
29016         (VASNPRINTF, CHAR_T, DIRECTIVE, DIRECTIVES, PRINTF_PARSE, USE_SNPRINTF,
29017         SNPRINTF): New macros.
29018         Don't include <alloca.h> if the file is used inside libintl.
29019         (local_wcslen): New function, for Solaris 2.5.1.
29020         (VASNPRINTF): Use it instead of wcslen.
29021
29022 2003-11-16  Bruno Haible  <bruno@clisp.org>
29023
29024         * lib/xsize.h (xmax): New function.
29025         (xsum, xsum3, xsum4): Declare as "pure" functions.
29026
29027 2003-11-12  Paul Eggert  <eggert@twinsun.com>
29028
29029         * modules/xalloc (Files): Undo latest change, since xalloc.h
29030         no longer needs SIZE_MAX or PTRDIFF_MAX.
29031
29032 2003-11-12  Paul Eggert  <eggert@twinsun.com>
29033
29034         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Do not require gl_SIZE_MAX or
29035         gl_PTRDIFF_MAX.
29036
29037 2003-11-12  Paul Eggert  <eggert@twinsun.com>
29038
29039         * lib/xstrtol.c (__xstrtol): Remove "break" immediately after
29040         "return", to pacify some unknown compiler.  Problem reported
29041         by Joerg Schilling.
29042
29043 2003-11-12  Paul Eggert  <eggert@twinsun.com>
29044
29045         * lib/xalloc.h: Do not include <limits.h> or <stdint.h>.
29046         (xalloc_oversized): Use sizeof (ptrdiff_t) and sizeof (size_t) for
29047         the heuristic, rather than PTRDIFF_MAX and SIZE_MAX.  This
29048         heuristic is just as accurate as far as we know, and it removes a
29049         dependency on size_max.m4 and ptrdiff_max.m4.
29050
29051 2003-11-11  Bruno Haible  <bruno@clisp.org>
29052
29053         * modules/xsize (Files): Add m4/size_max.m4.
29054         * modules/xalloc (Files): Add m4/size_max.m4, m4/ptrdiff_max.m4.
29055
29056 2003-11-11  Bruno Haible  <bruno@clisp.org>
29057
29058         * m4/size_max.m4: New file.
29059         * m4/ptrdiff_max.m4: New file.
29060         * m4/xsize,m4 (gl_XSIZE): Require gl_SIZE_MAX.
29061         * m4/xalloc.m4 (gl_PREREQ_XALLOC): New macro.
29062         (gl_XALLOC): Invoke it.
29063
29064 2003-11-11  Bruno Haible  <bruno@clisp.org>
29065
29066         * lib/xsize.h (SIZE_MAX): Remove fallback definition.
29067         * lib/xalloc.h: Include limits.h. Assume SIZE_MAX and PTRDIFF_MAX are
29068         defined.
29069
29070 2003-11-10  Paul Eggert  <eggert@twinsun.com>
29071
29072         * lib/xalloc.h (xalloc_oversized): [! (defined PTRDIFF_MAX &&
29073         PTRDIFF_MAX < SIZE_MAX)]: Fix off-by-one error that would have
29074         rejected some allocations of exactly SIZE_MAX - 2 bytes.
29075         From Bruno Haible.
29076         [defined PTRDIFF_MAX && PTRDIFF_MAX < SIZE_MAX]: Use SIZE_MAX,
29077         not (size_t) -1, since it's defined here.
29078
29079 2003-11-09  Karl Berry  <karl@gnu.org>
29080
29081         * config/mkinstalldirs, depcomp, mdate-sh: update from automake.
29082
29083 2003-11-06  Paul Eggert  <eggert@twinsun.com>
29084
29085         * lib/xalloc.h [HAVE_STDINT_H]: Include <stdint.h>.
29086         (xalloc_oversized) [! (PTRDIFF_MAX < SIZE_MAX)]:
29087         Reject sizes of exactly SIZE_MAX bytes.
29088         * lib/xreadlink.c: Include "xalloc.h" before checking whether SIZE_MAX
29089         is defined, since "xalloc.h" now defines SIZE_MAX on modern hosts.
29090
29091 2003-11-05  Bruno Haible  <bruno@clisp.org>
29092
29093         * lib/xsize.h: Include limits.h, to avoid a possible collision with
29094         SIZE_MAX defined in <limits.h> on Solaris.
29095
29096 2003-11-04  Jim Meyering  <jim@meyering.net>
29097
29098         * modules/sysexits: Use the `$(VAR)' notation for AC_SUBST'd
29099         variable names, rather than @VAR@.
29100         * modules/poll: Likewise.
29101
29102 2003-11-04  Bruno Haible  <bruno@clisp.org>
29103
29104         * modules/xsize: New file.
29105         * modules/linebreak: Depend on xsize.
29106         * MODULES.html.sh (func_all_modules): Add xsize.
29107
29108 2003-11-04  Bruno Haible  <bruno@clisp.org>
29109
29110         * m4/xsize.m4: New file.
29111
29112 2003-11-04  Bruno Haible  <bruno@clisp.org>
29113
29114         * lib/xsize.h: New file.
29115         * lib/linebreak.c: Include xsize.h.
29116         (mbs_possible_linebreaks, mbs_width_linebreaks): Check malloc()
29117         argument for overflow.
29118         Suggested by Paul Eggert.
29119
29120 2003-11-03  Karl Berry  <karl@gnu.org>
29121
29122         * config/config.{guess,sub}: update from config.
29123
29124 2003-11-03  Jim Meyering  <jim@meyering.net>
29125
29126         * modules/userspec (lib_SOURCES): Add userspec.h.
29127         (Include): Add "userspec.h".
29128         Improve description.
29129
29130 2003-11-03  Jim Meyering  <jim@meyering.net>
29131
29132         * lib/userspec.c: Include "userspec.h".
29133         * lib/userspec.h: New file.
29134
29135 2003-11-03  Bruno Haible  <bruno@clisp.org>
29136
29137         * m4/wait-process.m4 (gl_WAIT_PROCESS): Also check for waitid.
29138
29139 2003-11-03  Bruno Haible  <bruno@clisp.org>
29140
29141         * lib/wait-process.c (wait_process): Use waitid with WNOWAIT if
29142         available, to avoid (extremely rare) race condition.
29143         Suggested by Paul Eggert.
29144
29145 2003-11-02  Karl Berry  <karl@gnu.org>
29146
29147         * config/srclist.txt (vasprintf.c): sync broken, sigh.
29148
29149 2003-10-31  Paul Eggert  <eggert@twinsun.com>
29150
29151         * lib/mountlist.h (struct mount_entry.me_type_malloced): New member.
29152         * lib/mountlist.c (SIZE_MAX): Define if not defined already.
29153         (read_filesystem_list): Set and use me_type_malloced.
29154         Use "sizeof *me" rather than "sizeof (struct mount_entry)" (or
29155         whatever the type happens to be), for brevity and consistency.
29156         Check for size calculation overflow on Alphas running OSF/1.
29157
29158 2003-10-31  Jim Meyering  <jim@meyering.net>
29159
29160         * lib/hash.c: Include "xalloc.h" for use of xalloc_oversized.
29161
29162         * lib/linebuffer.c: Include <string.h> for declaration of memset.
29163
29164 2003-10-30  Paul Eggert  <eggert@twinsun.com>
29165             Bruno Haible  <bruno@clisp.org>
29166
29167         * lib/vasprintf.c: Include <limits.h>, <stdlib.h>.
29168         (vasprintf): Fail if the resulting length doesn't fit in an 'int'.
29169
29170 2003-10-30  Paul Eggert  <eggert@cs.ucla.edu>
29171
29172         * m4/host-os.m4 (UTILS_HOST_OS): Change netbsd*-gnu pattern back to
29173         netbsd*-gnu*.  Suggested by Robert Millan.
29174
29175 2003-10-29  Paul Eggert  <eggert@twinsun.com>
29176
29177         * modules/group-member: Depend on stdbool.
29178
29179 2003-10-29  Paul Eggert  <eggert@twinsun.com>
29180
29181         * m4/xalloc.m4 (gl_XALLOC): Undo previous change.
29182
29183 2003-10-29  Paul Eggert  <eggert@twinsun.com>
29184
29185         * m4/host-os.m4 (UTILS_HOST_OS): Resurrect netbsd*-gnu.  Add comments
29186         to it, and to knetbsd*-gnu and kfreebsd*-gnu.  Remove the '*' from
29187         after the 'gnu' in these cases.  This fixes some bugs in the
29188         previous change, and is based on suggestions by Robert Millan.
29189
29190 2003-10-29  Paul Eggert  <eggert@twinsun.com>
29191
29192         * lib/xalloc.h (xalloc_oversized): Now a macro, not a function,
29193         so that it works even if SIZE_MAX < N.  Do not include <stdbool.h>;
29194         no longer needed.
29195         * lib/quotearg.c (quotearg_n_options): Use it.
29196         * lib/group-member.c: Include <stdbool.h>.
29197         (free_group_info): Arg is now const *; don't free arg.
29198         (get_group_info): Now returns bool and accepts struct group_info *,
29199         rather than returning a malloc'ed struct group_info *.
29200         All uses changed.  Check for overflow in internal size calculation.
29201
29202         * lib/getusershell.c (readname): Simplify the code by using x2nrealloc
29203         rather than xmalloc/xrealloc.
29204         * lib/linebuffer.c (initbuffer, readlinebuffer): Simplify the code by
29205         using x2realloc rather than xmalloc/xrealloc.  Also, fix a C
29206         conformance bug: the old code used a pointer after freeing the
29207         storage that it addressed.
29208         * lib/hash.c (hash_initialize): Simplify the code by using
29209         xalloc_oversized rather than doing it by hand.
29210         * lib/getgroups.c (getgroups): Don't use xrealloc, since we don't need
29211         the buffer preserved.  Use free and xmalloc instead.
29212         * lib/quotearg.c (quotearg_n_options): Likewise.
29213         Use a simpler test for size overflow.  Don't use xalloc_oversized
29214         because unsigned int might be wider than size_t (!); this suggests
29215         that we should switch from unsigned int to size_t for slot numbers.
29216
29217 2003-10-28  Paul Eggert  <eggert@twinsun.com>
29218
29219         * m4/host-os.m4 (UTILS_HOST_OS): Identify GNU/KFreeBSD and
29220         GNU/KNetBSD.  These implementations use glibc atop the FreeBSD and
29221         NetBSD kernels.  Requested by Richard Stallman.
29222
29223 2003-10-27  Paul Eggert  <eggert@twinsun.com>
29224
29225         * lib/exclude.c (new_exclude): Use xzalloc rather than xmalloc
29226         to allocate the returned structure.  Do not allocate a subarray,
29227         as x2nrealloc will do that.
29228         (add_exclude): Use x2nrealloc to reallocate ex->exclude,
29229         instead of xnrealloc.
29230         (add_exclude_file): Use x2realloc instead of malloc + xnrealloc.
29231
29232 2003-10-27  Bruno Haible  <bruno@clisp.org>
29233
29234         * lib/stdbool_.h: Better support for BeOS.
29235
29236 2003-10-26  Paul Eggert  <eggert@twinsun.com>
29237
29238         * m4/xalloc.m4 (gl_XALLOC): Requore AC_C_INLINE, since xalloc.h
29239         now uses inline.
29240
29241 2003-10-26  Paul Eggert  <eggert@twinsun.com>
29242
29243         * lib/xalloc.h (xalloc_oversized): New static inline function, for
29244         callers that want to do their own size-overflow checking.  Include
29245         <stdbool.h>, since xalloc_oversized returns bool.
29246         * lib/xalloc.c (array_size_overflow): Remove.  All callers changed
29247         to use xalloc_oversized.
29248
29249         Add two functions x2realloc, x2nrealloc, for programs that grow
29250         arrays dynamically by doubling their sizes.
29251         * lib/xalloc.h (x2realloc, x2nrealloc): New decls.
29252         * lib/xmalloc.c (x2nrealloc_inline, x2nrealloc, x2realloc):
29253         New functions.
29254
29255         Port to C99 semantics for 'inline' of external functions.
29256         Bug reported by Bruno Haible.
29257         * lib/xmalloc.c (xnmalloc_inline): New static inline function,
29258         with the old contents of xnmalloc.
29259         (xnmalloc, xmalloc): Use it.
29260         (xnrealloc_inline): New static inline function,
29261         with the old contents of xnrealloc.
29262         (xnrealloc, xrealloc): Use it.
29263
29264         * lib/alloc.c (alloca): xmalloc cannot return NULL, so don't test for
29265         that.
29266
29267 2003-10-26  Karl Berry  <karl@gnu.org>
29268
29269         * config/srclist.txt (COPYING.DOC): no longer available from
29270         /gd/gnuorg; don't know where the ultimate source is.
29271
29272 2003-10-25  Paul Eggert  <eggert@twinsun.com>
29273
29274         Fix several address-calculation bugs in the hash modules,
29275         plus some minor code cleanup.
29276
29277         * lib/hash.h: Include <stdbool.h>, for bool.
29278         * lib/hash.c: Don't include <stdbool.h>, since hash.h does it now.
29279         * lib/hash.h (Hash_hasher, hash_get_n_buckets, hash_get_n_buckets_used,
29280         hash_get_n_entries, hash_get_max_bucket_length,
29281         hash_get_entries, hash_do_for_each, hash_string, hash_initialize,
29282         hash_rehash): Use size_t rather than unsigned.
29283         * lib/hash.c (struct hash_table, hash_get_n_buckets,
29284         hash_get_n_buckets_used, hash_get_n_entries,
29285         hash_get_max_bucket_length, hash_table_ok, hash_print_statistics,
29286         hash_get_entries, hash_do_for_each, hash_string, is_prime,
29287         next_prime, hash_initialize, hash_rehash, hash_delete, hash_print):
29288         Likewise.
29289         (SIZE_MAX): Define if not defined.
29290         (hash_get_max_bucket_length, hash_table_ok, hash_lookup,
29291         hash_get_first, hash_get_next, hash_get_entries, hash_do_for_each,
29292         hash_print):
29293         Use const * when possible.
29294         (hash_string): Use (unsigned char) *P rather than *(unsigned char *) P.
29295         (check_tuning): Fix bug: if tuning parameters were very close to
29296         0 or 1, rounding errors could have caused subscript violations.
29297         (hash_initialize, allocate_entry, hash_print): Remove unnecessary cast.
29298         (hash_initialize): Add 'fail:' label
29299         to free table and return NULL, and use it to simplify code.
29300         Use calloc rather than clearing the storage ourself.
29301         (hash_initialize, hash_rehash): Check for arithmetic overflow in
29302         buffer size calculations.
29303         * lib/hash-pjw.h (hash_pjw): Use size_t, not unsigned.
29304         Include <stddef.h>, for size_t.
29305         * lib/hash-pjw.c (hash_pjw): Likewise.
29306         Switch to method described by Bruno Haible.
29307         Include <limits.h>, for CHAR_BIT.
29308         (SIZE_BITS): New macro.
29309
29310 2003-10-23  Paul Eggert  <eggert@twinsun.com>
29311
29312         * m4/getline.m4 (AM_FUNC_GETLINE):
29313         Don't include getndelim2.o twice into LIBOBJS; this breaks on some
29314         hosts.  Problem reported by Derek Robert Price in
29315         <http://mail.gnu.org/archive/html/bug-gnulib/2003-10/msg00092.html>.
29316         This patch can be withdrawn after Autoconf 2.58 is required for gnulib.
29317         * m4/getndelim2.m4 (gl_GETNDELIM2): Likewise.
29318
29319 2003-10-21  Paul Eggert  <eggert@twinsun.com>
29320
29321         * lib/getndelim2.c (getndelim2): When size calculation overflows,
29322         ceiling the allocation at NMAX bytes rather than silently
29323         discarding input bytes before NMAX is reached.  This makes
29324         a difference only if NMAX exceeds SIZE_MAX / 2.
29325
29326         * lib/obstack.c: Merge from glibc.
29327         [defined _LIBC]: Include <obstack.h>, not "obstack.h".
29328         Add libc_hidden_def (_obstack_newchunk).
29329         (_obstack_free) [! defined _LIBC]: Remove.
29330         [defined _LIBC]: Make a strong alias from obstack_free, rather than
29331         a clone of the function body.
29332         (fputs) [defined _LIBC && defined USE_IN_LIBIO]: Remove.
29333         [defined _LIBC && !defined USE_IN_LIBIO]: Include <libio/iolibio.h>.
29334
29335         * lib/obstack.h: Indenting cleanup, to make it easier to merge with
29336         glibc.
29337         (obstack_grow, obstack_grow0): Remove unnecessary parentheses around
29338         arg to memcpy.
29339
29340         * lib/obstack.h (obstack_1grow_fast): Properly parenthesize arg.
29341         (obstack_ptr_grow_fast, obstack_int_grow_fast):
29342         Don't use lvalue casts, as GCC plans to remove support for them
29343         in GCC 3.5.  Reported by Joseph S. Myers.  This bug
29344         was also present in the non-GCC version, indicating that this
29345         code had always been buggy and had never been widely used.
29346         (obstack_1grow, obstack_ptr_grow, obstack_int_grow, obstack_blank):
29347         Use the fast variant of each macro, rather than copying the
29348         definiens of the fast variant; that way, we'll be more likely to
29349         catch future bugs in the fast variants.
29350
29351 2003-10-20  Bruno Haible  <bruno@clisp.org>
29352
29353         * modules/wait-process: New file.
29354         * MODULES.html.sh (func_all_modules): Add wait-process.
29355
29356 2003-10-20  Bruno Haible  <bruno@clisp.org>
29357
29358         * m4/wait-process.m4: New file.
29359
29360 2003-10-20  Bruno Haible  <bruno@clisp.org>
29361
29362         * lib/wait-process.h: New file, from GNU gettext.
29363         * lib/wait-process.c: New file, from GNU gettext.
29364
29365 2003-10-19  Jim Meyering  <jim@meyering.net>
29366
29367         * lib/vasnprintf.c (vasnprintf): Work around losing snprintf on
29368         HPUX 10.20.
29369
29370 2003-10-18  Karl Berry  <karl@gnu.org>
29371
29372         * config/config.guess: update from config.
29373
29374 2003-10-16  Paul Eggert  <eggert@twinsun.com>
29375
29376         * lib/getgroups.c: Include <errno.h>, <stdlib.h>.
29377         (getgroups): First arg is int, not size_t.
29378         Don't let 'free' mangle errno.
29379
29380 2003-10-16  Paul Eggert  <eggert@twinsun.com>
29381
29382         * README: Mention that gnulib assumes that (foo *) NULL + 0 == NULL.
29383
29384 2003-10-16  Karl Berry  <karl@gnu.org>
29385
29386         * config/config.{guess,sub}: update from config.
29387
29388 2003-10-16  Jim Meyering  <jim@meyering.net>
29389
29390         * lib/xmalloc.c: Include <string.h>, for declarations of memset and
29391         memcpy.
29392
29393 2003-10-15  Paul Eggert  <eggert@twinsun.com>
29394
29395         * lib/exclude.c: Do not include <inttypes.h> or <stdint.h>.
29396         (SIZE_MAX): Remove.
29397         (new_exclude, add_exclude_file): Initial size no longer needs to
29398         be a power of 2.
29399         (add_exclude, add_exclude_file): Use xnrealloc instead of rolling
29400         our own address arithmetic overflow checking.
29401
29402         * lib/fnmatch.c (SIZE_MAX): Define if standard headers don't.
29403         (fnmatch): Do not alloca more than 2000 wide characters;
29404         instead, use malloc for large buffers.
29405         Check for address arithmetic overflow, and return -1
29406         with errno set to ENOMEM in that case.
29407         * lib/fnmatch_loop.c (ALLOCA_LIMIT): New macro.
29408         (NEW_PATTERN): Do not alloca more than 8000 bytes;
29409         instead, return -1.  Check for address arithmetic overflow.
29410
29411 2003-10-14  Paul Eggert  <eggert@twinsun.com>
29412
29413         Handle invalid suffixes and overflow independently, so that
29414         callers can treat them independently as needed.  Fix some bugs in
29415         suffix handling, e.g., "100k@" was not diagnosed as an invalid
29416         suffix for a human-readable blocksize.  The major caller-visible
29417         change is the addition of a new
29418         LONGINT_INVALID_SUFFIX_CHAR_WITH_OVERFLOW enum value, indicating
29419         that both overflow and suffix chars were found.
29420
29421         * lib/human.c (humblock): Don't check separately for invalid suffix
29422         char; that is xstrtoumax's job (now that its bug is fixed).
29423         * lib/xstrtoimax.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM) [defined
29424         INTMAX_MAX]: New macros.
29425         * lib/xstrtol.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM, TYPE_MINIMUM,
29426         TYPE_MAXIMUM): New macros.
29427         (bkm_scale, bkm_scale_by_power): Return strtol_error, not int.
29428         (bkm_scale, bkm_scale_by_power, __xstrtol): Return maximal values
29429         if overflow occurs, as it's what __strtol does and it's more useful
29430         in practice.
29431         (__xstrtol): If __strtol reports some error other than ERANGE,
29432         reflect it to the caller as LONGINT_INVALID.  If it reports
29433         ERANGE, continue the rest of parsing, and report LONGINT_OVERFLOW
29434         | LONGINT_INVALID_SUFFIX_CHAR if both errors occur.
29435         * lib/xstrtol.h (LONGINT_INVALID_SUFFIX_CHAR_WITH_OVERFLOW): New enum
29436         value.
29437         (_STRTOL_ERROR): Handle it.  Abort when given unknown error codes.
29438         * lib/xstrtoul.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM): New macros.
29439         * lib/xstrtoumax.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM)
29440         [defined UINTMAX_MAX]: New macros.
29441
29442 2003-10-14  Bruno Haible  <bruno@clisp.org>
29443
29444         * modules/fatal-signal: Add m4/sig_atomic_t.m4 to file list.
29445
29446 2003-10-14  Bruno Haible  <bruno@clisp.org>
29447
29448         * m4/sig_atomic_t: New file, from GNU gettext.
29449         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Require gt_TYPE_SIG_ATOMIC_T.
29450
29451 2003-10-14  Bruno Haible  <bruno@clisp.org>
29452
29453         * lib/fatal-signal.h: Improved comments. Suggested by Paul Eggert.
29454         * lib/fatal-signal.c: Use sig_atomic_t. Suggested by Paul Eggert.
29455         Also use volatile where needed.
29456
29457 2003-10-12  Paul Eggert  <eggert@twinsun.com>
29458
29459         * modules/xalloc: Do not depend on 'exit'.  Depend on 'stdbool'.
29460         Change maintainer from Bruno Haible to 'all'.
29461
29462 2003-10-12  Paul Eggert  <eggert@twinsun.com>
29463
29464         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Require AC_C_INLINE.
29465
29466 2003-10-12  Paul Eggert  <eggert@twinsun.com>
29467
29468         * lib/xalloc.h (xnmalloc, xzalloc, xnrealloc, xclone): New decls.
29469         (XMALLOC, XCALLOC, XREALLOC, XFREE, CCLONE, CLONE): Deprecate,
29470         and define in terms of the other primitives.
29471         * lib/xmalloc.c: Include stdbool.h; do not include exit.h.
29472         (SIZE_MAX): Define if not already defined.
29473         (array_size_overflow): New function.
29474         (xalloc_die): Abort instead of exiting if 'error' returns.
29475         (xnmalloc, xnrealloc, xzalloc, xclone): New functions.
29476         (xmalloc, xrealloc): Use them.
29477         (xcalloc): Check for address arithmetic overflow.
29478         * lib/xstrdup.c (xstrdup): Use xclone, since memcpy should be
29479         a bit faster than strcpy.
29480
29481 2003-10-10  Simon Josefsson  <jas@extundo.com>
29482
29483         * modules/argp (Depends-on): Add restrict and strcase.
29484
29485 2003-10-10  Simon Josefsson  <jas@extundo.com>
29486
29487         * m4/argp.m4: Add AC_C_INLINE.
29488
29489 2003-10-08  Paul Eggert  <eggert@twinsun.com>
29490
29491         Merge getpass from libc, plus a few fixes.
29492
29493         * lib/getpass.c (HAVE_STDIO_EXT) [_LIBC]: Define to 1.
29494         Include <stdbool.h>.
29495         Include <stdio_ext.h> if HAVE_STDIO_H, otherwise define
29496         __fsetlocking to empty.
29497         [_LIBC]: Do not include "getline.h" or "unlocked-io.h", but
29498         do include <bits/libc-lock.h>.
29499         Do not include <fcntl.h>; not needed.
29500         [_LIBC]: Include <wchar.h>.
29501         (NOTCANCEL_MODE): New macro.
29502         (flockfile, funlockfile) [_LIBC]: New macros.
29503         (__libc_cleanup_push, __libc_cleanup_pop, __getline, __tcgetattr)
29504         [!_LIBC]: New macros.
29505         (call_fclose): New function.
29506         (getpass): Use it.  Save tty stream separately; this simplifies the
29507         code and makes it more reliable if stdin happens to equal stdout.
29508         Invoke __fsetlocking on tty.
29509         Handle thread cancellation if needed.
29510         Namespace cleanup (use __tcgetattr, __getline).
29511         Use bool for Booleans.
29512         [USE_IN_LIBIO]: Handle wide streams.
29513         [!_LIBC]: Unconditionally do the fseek, since we don't know what
29514         stream might go where.
29515
29516         * lib/unlocked-io.h: Include <stdio.h>, so that the caller
29517         doesn't have to include <stdio.h> before us.
29518         (clearerr_unlocked, feof_unlocked, ferror_unlocked,
29519         fflush_unlocked, fgets_unlocked, fputc_unlocked, fputs_unlocked,
29520         fread_unlocked, fwrite_unlocked, getc_unlocked, getchar_unlocked,
29521         putc_unlocked, putchar_unlocked): Define to the unlocked counterpart
29522         if not declared, so that we can use getpass.c code from libc without
29523         rewriting it.
29524         (flockfile, ftrylockfile, funlockfile): New macros.
29525
29526 2003-10-08  Paul Eggert  <eggert@twinsun.com>
29527
29528         * modules/getpass: Depend on stdbool.
29529
29530 2003-10-08  Paul Eggert  <eggert@twinsun.com>
29531
29532         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for stdio_ext.h.
29533
29534 2003-10-07  Karl Berry  <karl@gnu.org>
29535
29536         * config/config.{guess,sub}: update from config.
29537
29538 2003-10-06  Jim Meyering  <jim@meyering.net>
29539             Bruno Haible  <bruno@clisp.org>
29540
29541         This lets translators provide better translations for the
29542         "Written by ..." part of --version output.
29543         * lib/version-etc.h: Include stdarg.h.
29544         (version_etc_copyright): Declare as readonly.
29545         (version_etc): Make this function variadic with a NULL-terminated list
29546         of author name strings.
29547         (version_etc_va): New declaration.
29548         * lib/version-etc.c: Include stdarg.h, stdlib.h.
29549         (version_etc_copyright): Declare as readonly.
29550         (version_etc_va): New function. Provide a different translatable string
29551         for each possible number of authors < 10. Abbreviate when there are 10
29552         authors or more.
29553         (version_etc): Make this function variadic. Call version_etc_va.
29554         Suggestion from Gary V. Vaughan.
29555
29556         * lib/long-options.h (parse_long_options): Change prototype: the
29557         authors string is moved to the end and becomes variadic.
29558         * lib/long-options.c: Include stdarg.h.
29559         (parse_long_options): Make this function variadic, too.
29560         Call version_etc_va, not version_etc.
29561
29562 2003-10-06  Bruno Haible  <bruno@clisp.org>
29563
29564         * modules/version-etc-2: Remove file.
29565         * MODULES.html.sh (func_all_modules): Remove version-etc-2.
29566
29567 2003-10-06  Bruno Haible  <bruno@clisp.org>
29568
29569         * modules/fatal-signal: New file.
29570         * MODULES.html.sh (func_all_modules): Add fatal-signal.
29571
29572 2003-10-06  Bruno Haible  <bruno@clisp.org>
29573
29574         * m4/fatal-signal.m4: New file.
29575         * m4/signalblocking.m4: New file, from GNU gettext.
29576
29577 2003-10-06  Bruno Haible  <bruno@clisp.org>
29578
29579         * lib/version-etc-2.h: Remove file.
29580         * lib/version-etc-2.c: Remove file.
29581
29582 2003-10-06  Bruno Haible  <bruno@clisp.org>
29583
29584         * lib/fatal-signal.h: New file, from GNU gettext.
29585         * lib/fatal-signal.c: New file, from GNU gettext.
29586
29587 2003-10-05  Paul Eggert  <eggert@twinsun.com>
29588
29589         * README: Rework advice for preventing empty .o files.
29590         Don't recommend ELIDE constructs.  Recommend <stddef.h>,
29591         not <sys/types.h>.
29592
29593 2003-10-04  Karl Berry  <karl@gnu.org>
29594
29595         * lib/argp*: update from libc.
29596
29597 2003-10-04  Karl Berry  <karl@gnu.org>
29598
29599         * config/config.{guess,sub}: update from config.
29600
29601 2003-10-02  Bruno Haible  <bruno@clisp.org>
29602
29603         * modules/lchown (Include): Add lchown.h.
29604         * modules/time_r (Include): Use "..." syntax.
29605         * modules/xgetdomainname (Include): Add xgetdomainname.h.
29606
29607 2003-10-01  Simon Josefsson  <jas@extundo.com>
29608
29609         * MODULES.html.sh (func_all_modules): Move gethostname from section
29610         'based on' to section 'lacking' POSIX:2001.
29611
29612 2003-10-01  Larry Jones  <lawrence.jones@eds.com>
29613
29614         * lib/getpass.c (getpass): Use a no-op fseek when switching from input
29615         to output mode on the same stream.
29616
29617 2003-09-29  Paul Eggert  <eggert@twinsun.com>
29618
29619         * lib/strftime.c (tm_diff) [! HAVE_TM_GMTOFF]:
29620         Fix arg typo in previous patch.
29621
29622 2003-09-28  Jim Meyering  <jim@meyering.net>
29623
29624         * lib/error.c: Correct cpp indentation.
29625
29626 2003-09-27  Paul Eggert  <eggert@twinsun.com>
29627
29628         * modules/free: New file.
29629
29630 2003-09-27  Paul Eggert  <eggert@twinsun.com>
29631
29632         * m4/free.m4: New file.
29633
29634 2003-09-27  Paul Eggert  <eggert@twinsun.com>
29635
29636         * lib/minmax.h (MIN, MAX)
29637         [__STDC__ && defined __GNUC__ && __GNUC__ >= 2]:
29638         Omit the special code that used __typeof__, since we worry that
29639         it could be more trouble than it's worth.  See:
29640         http://mail.gnu.org/archive/html/bug-gnulib/2003-01/msg00090.html
29641         http://mail.gnu.org/archive/html/bug-gnulib/2003-01/msg00095.html
29642
29643         * lib/free.c: New file.
29644
29645 2003-09-27  Oskar Liljeblad  <oskar@osk.mine.nu>
29646
29647         Trivial fixes to Makefile.am parts of module listings.
29648         * modules/strstr: Append strstr.h to lib_SOURCES.
29649         * modules/strcase: Likewise, for strcase.h.
29650
29651 2003-09-27  Karl Berry  <karl@gnu.org>
29652
29653         * config/mkinstalldirs: update from automake.
29654
29655 2003-09-26  Paul Eggert  <eggert@twinsun.com>
29656
29657         * lib/error.c (SIZE_MAX) [!defined SIZE_MAX]: Define.
29658         (error_tail): Do not loop, reallocating temporary buffer, since
29659         the output cannot contain more wide characters than the input
29660         contains bytes, the size must be big enough already.  This avoids
29661         one potential size overflow calculation.  Check for size overflow
29662         when calculating temporary buffer size.  Free temporary buffer
29663         when done, if it was allocated with malloc; this plugs a memory
29664         leak.  Remove casts from void * to pointers, that are no longer
29665         needed now that we're assuming C89 or better.
29666
29667         Merge error changes from glibc.
29668
29669         * lib/error.c, error.h: Update copyright notice header to match glibc.
29670         * lib/error.c [defined _LIBC]: Include <errno.h>, <bits/libc-lock.h>.
29671         (error, error_at_line) [defined _LIBC && defined __libc_ptf_call]:
29672         Disable cancellation while printing error.
29673         * lib/error.h: Prepend __ to parameter names.
29674
29675 2003-09-26  Jim Meyering  <jim@meyering.net>
29676
29677         * lib/error.c (error_tail): Move some declarations
29678         into inner scope where the local variables are used.
29679
29680 2003-09-26  Bruno Haible  <bruno@clisp.org>
29681
29682         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Add comments about the AIX
29683         stpncpy().
29684         Don't define stpncpy through config.h; it's now done through stpncpy.h.
29685
29686 2003-09-26  Bruno Haible  <bruno@clisp.org>
29687
29688         * lib/stpncpy.h (gnu_stpncpy): New declaration.
29689         (stpncpy): Define as alias for gnu_stpncpy.
29690         * lib/stpncpy.c [!_LIBC]: Define gnu_stpncpy, not stpncpy.
29691
29692 2003-09-25  Simon Josefsson  <jas@extundo.com>
29693
29694         * lib/xgetdomainname.h: New file.
29695         * lib/xgetdomainname.c: New file.
29696
29697 2003-09-25  Simon Josefsson  <jas@extundo.com>
29698             Bruno Haible  <bruno@clisp.org>
29699
29700         * modules/getdomainname: New file.
29701         * modules/xgetdomainname: New file.
29702         * MODULES.html.sh (func_all_modules): Add getdomainname,
29703         xgetdomainname.
29704
29705 2003-09-25  Simon Josefsson  <jas@extundo.com>
29706             Bruno Haible  <bruno@clisp.org>
29707
29708         * m4/getdomainname.m4: New file.
29709
29710 2003-09-25  Simon Josefsson  <jas@extundo.com>
29711             Bruno Haible  <bruno@clisp.org>
29712
29713         * lib/getdomainname.h: New file.
29714         * lib/getdomainname.c: New file.
29715
29716 2003-09-25  Karl Berry  <karl@gnu.org>
29717
29718         * lib/argp-fmtstream.c, argp-help.c: update from libc.
29719
29720 2003-09-25  Karl Berry  <karl@gnu.org>
29721
29722         * config/install-sh: update from automake.
29723
29724 2003-09-25  Bruno Haible  <bruno@clisp.org>
29725
29726         * modules/version-etc-2: New file, from modules/version-etc with
29727         modifications.
29728         * MODULES.html.sh (func_all_modules): Add version-etc-2.
29729
29730 2003-09-25  Bruno Haible  <bruno@clisp.org>
29731
29732         * lib/version-etc-2.h: New file, from version-etc.h with modifications.
29733         * lib/version-etc-2.c: New file, from version-etc.c with modifications.
29734
29735 2003-09-24  Simon Josefsson  <jas@extundo.com>
29736
29737         * modules/xgethostname: Add xgethostname.h.
29738
29739 2003-09-24  Paul Eggert  <eggert@twinsun.com>
29740
29741         * lib/linebuffer.c (freebuffer): Don't free the argument, just
29742         the buffer associated with the argument.  Bug reported by
29743         Simon Josefsson.
29744
29745 2003-09-24  Paul Eggert  <eggert@twinsun.com>
29746
29747         * README: Document assumptions that 'int' is at least 32 bits
29748         wide, that integer arithmetic is 2's complement without overflow,
29749         that there are no holes in integer values, that adding sizes of
29750         two nonoverlapping objects can't overflow, and that all-bits-zero
29751         yields scalar zero.  Fix spelling and capitalization typos.
29752
29753 2003-09-19  Karl Berry  <karl@gnu.org>
29754
29755         * lib/argp.h: update from libc.
29756
29757 2003-09-17  Paul Eggert  <eggert@twinsun.com>
29758
29759         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Call AC_BEFORE first,
29760         to avoid spurious warnings like "AC_RUN_IFELSE was called before
29761         gl_USE_SYSTEM_EXTENSIONS" from autoreconf.
29762
29763 2003-09-17  Paul Eggert  <eggert@twinsun.com>
29764
29765         * gnulib-tool: Use "test -h", not "test -L", for portability
29766         to Solaris 8 /bin/sh.  (This bug is fixed in Solaris 9.)
29767         (tags_regexp): Remove, since \| doesn't conform to POSIX.
29768         (sed_extract_prog): Issue s commands one-by-one, rather than
29769         using \| in one s command.
29770
29771 2003-09-16  Paul Eggert  <eggert@twinsun.com>
29772
29773         * lib/linebuffer.c (readlinebuffer): Return NULL immediately upon
29774         input error, instead of returning NULL the next time we are called
29775         (and therefore losing track of errno).
29776
29777 2003-09-16  Bruno Haible  <bruno@clisp.org>
29778
29779         * gnulib-tool (func_create_testdir): Warn about duplicated
29780         dependencies.
29781
29782 2003-09-15  Paul Eggert  <eggert@twinsun.com>
29783
29784         * modules/argmatch, modules/fatal, modules/obstack,
29785         modules/xalloc, modules/xgethostname: Sort dependencies by
29786         importance, not alphabetically.
29787
29788 2003-09-15  Paul Eggert  <eggert@twinsun.com>
29789
29790         * lib/getndelim2.c (getndelim2): Don't trash errno when a read
29791         fails, so that the caller gets the proper errno.
29792
29793         * lib/readutmp.c (read_utmp): Likewise.
29794         Check for fstat error.  Close stream and free storage
29795         when failing.
29796
29797 2003-09-14  Karl Berry  <karl@gnu.org>
29798
29799         * config/srclist.txt (strdup.c): disable for c89 changes.
29800
29801 2003-09-14  Jim Meyering  <jim@meyering.net>
29802
29803         * lib/getloadavg.c: Correct cpp indentation.
29804         * lib/strdup.c: Likewise.
29805         * lib/vasnprintf.c: Likewise.
29806
29807 2003-09-14  Bruno Haible  <bruno@clisp.org>
29808
29809         * modules/fwriteerror: New file.
29810         * MODULES.html.sh (func_all_modules): Add fwriteerror.
29811
29812 2003-09-14  Bruno Haible  <bruno@clisp.org>
29813
29814         * lib/fwriteerror.h: New file.
29815         * lib/fwriteerror.c: New file.
29816
29817 2003-09-12  Paul Eggert  <eggert@twinsun.com>
29818
29819         * modules/argmatch, modules/exitfail, modules/fatal, modules/obstack,
29820         modules/xgethostname, modules/xalloc: Depend on exit.
29821
29822 2003-09-12  Paul Eggert  <eggert@twinsun.com>
29823
29824         * m4/error.m4: Require AC_FUNC_STRERROR_R rather than invoking it.
29825
29826         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Require AC_AIX
29827         and AC_MINIX, too, so that their extensions are available.
29828
29829         * m4/prereq.m4 (jm_PREREQ_ADDEXT): Remove.  All uses removed.
29830         This macro has been superseded by gl_BACKUPFILE.
29831
29832         More patches to assume C89 or better.
29833
29834         * m4/error.m4 (gl_ERROR): Don't check for vprintf.
29835
29836         * m4/check-decl.m4 (jm_CHECK_DECLS): Include <string.h>, <stdlib.h>
29837         unconditionally.
29838         * m4/closeout.m4 (gl_CLOSEOUT): Don't check for stdlib.h.
29839         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER):
29840         Include <string.h>, <stdlib.h> unconditionally.
29841         * m4/lstat.m4 (gl_PREREQ_LSTAT): Don't check for stdlib.h, free.
29842         * m4/readdir.m4 (GL_FUNC_READDIR): Don't check for string.h.
29843         * m4/readutmp.m4 (gl_PREREQ_READUTMP): Don't check for standard C
29844         headers or for string.h.
29845         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Don't check for stdlib.h
29846         or strtoul.
29847
29848         * m4/mkstemp.m4 (jm_PREREQ_TEMPNAME): Do not require standard C
29849         headers.
29850         * m4/strdup.m4 (gl_PREREQ_STRDUP): Likewise.
29851         * m4/userspec.m4 (gl_USERSPEC): Likewise.
29852         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Likewise.
29853         * m4/xstrtod.m4 (gl_XSTRTOD): Likewise.
29854         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
29855         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't check for limits.h,
29856         memcpy, memset.
29857         (jm_FUNC_GNU_STRFTIME): Don't require standard C headers.
29858         * m4/strtod.m4 (gl_FUNC_STRTOD): Do not check for float.h.
29859         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Do not check for stdlib.h,
29860         strtol.
29861         * m4/strtol.m4 (gl_FUNC_STRTOL): Do not check for limits.h.
29862         * m4/userspec.m4 (gl_USERSPEC): Do not check for string.h.
29863         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Do not check for string.h, strtol,
29864         strtoul.
29865
29866 2003-09-12  Paul Eggert  <eggert@twinsun.com>
29867
29868         * lib/argmatch.c, fatal.c, xgethostname.c, xmalloc.c: Include exit.h.
29869         * lib/obstack.c [!defined _LIBC]: Likewise.
29870         * lib/argmatch.c (EXIT_FAILURE): Remove; now done by exit.h
29871         * lib/exitfail.c, fatal.c, xgethostname.c, xmalloc.c: Likewise.
29872         * lib/exitfail.c: Don't include stdlib.h; no longer needed.
29873
29874         More changes to assume C89 or better.
29875
29876         * lib/error.c (error_tail): Assume vprintf.
29877
29878         * lib/argmatch.c (getenv): Remove decl.
29879         * lib/progreloc.c (get_full_program_name): Define via prototype.
29880         * lib/setenv.c (clearenv): Likewise.
29881         * lib/stpncpy.c: Do not include <string.h> or <sys/types.h>; not
29882         needed.
29883         * lib/strdup.c: Include <stdlib.h>, <string.h> unconditionally.
29884         (malloc, memcpy): Remove decls.
29885         * lib/strftime.c (HAVE_LIMITS_H, STDC_HEADERS) [defined _LIBC]: Remove.
29886         (HAVE_MEMCPY) [defined emacs && !defined HAVE_BCOPY]: Remove.
29887         Include <limits.h>, <stddef.h>, <stdlib.h>, <string.h> unconditionally.
29888         (memcpy): Remove macro.
29889         (MEMCPY) [!defined COMPILE_WIDE]: Define to memcpy unconditionally.
29890         (__P): Remove.  All uses removed.
29891         (PTR): Remove.  All uses changed to void *.
29892         (CHAR_BIT, NULL): Remove.
29893         (spaces, zeros, memset_space, memset_zero)
29894         [!defined memset && !defined HAVE_MEMSET && !defined _LIBC]:
29895         Remove.
29896         (LOCALE_PARAM, LOCALE_PARAM_DECL): Remove.
29897         (memcpy_lowcase, memcpy_uppcase, tm_diff, iso_week_days):
29898         Define with prototype.
29899         Remove now-unnecessary prototype decl.
29900         (extra_args_spec): Assume ANSI C.  All uses changed.
29901         (extra_args_spec_iso): Remove.
29902         (my_strftime, emacs_strftimeu): Define via prototype.
29903         * lib/strtod.c: Include <float.h>, <stdlib.h>, <string.h>
29904         unconditionally.
29905         (DBL_MAX, DBL_MIN, HUGE_VAL, NULL): Remove decls.
29906         * lib/strtoimax.c: Include <stdlib.h> unconditionally.
29907         (strtoul, strtol): Remove decls.
29908         * lib/strtol.c (STDC_HEADERS, HAVE_LIMITS_H, NULL, ULONG_MAX,
29909         LONG_MAX): Remove.
29910         Include <limits.h>, <stddef.h>, <stdlib.h>, <string.h> unconditionally.
29911         (LOCALE_PARAM_DECL): Remove.  All uses changed to LOCALE_PARAM_PROTO.
29912         (LOCALE_PARAM_PROTO): New macro.
29913         (INTERNAL, INTERNAL1, WEAKNAME): Assume ANSI C, not K&R.
29914         (INTERNAL (strtol), strtol): Define with a prototype.
29915         (PARAMS): Remove.  All uses removed.
29916         * lib/tempname.c: Include <string.h> unconditionally.
29917         * lib/userspec.c: Include <stdlib.h>, <string.h> unconditionally.
29918         * lib/xgethostname.c (main): Define with a prototype.
29919         * lib/xmalloc.c: Include "xalloc.h" first, to check interface.
29920         Include <stdlib.h> unconditionally.
29921         (calloc, malloc, realloc, free): Remove decls.
29922         * lib/xstrtod.c: Include "xstrtod.h" first, to check interface.
29923         Include <stdlib.h> unconditionally.  Sort include file names.
29924         (strtod): Remove.
29925         (xstrtod): Define with a prototype.
29926         * lib/xstrtol.c: Include <stdlib.h>, <string.h> unconditionally.
29927         (strtol, strtoul): Remove decls.
29928
29929 2003-09-11  Paul Eggert  <eggert@twinsun.com>
29930
29931         More patches to assume C89 or better.
29932         * m4/strndup.m4 (gl_PREREQ_STRNDUP): Remove STDC_HEADERS check.
29933         * m4/strnlen.m4 (gl_PREREQ_STRNLEN): Don't check for memory.h,
29934         string.h, memchr, STDC_HEADERS.
29935
29936 2003-09-11  Paul Eggert  <eggert@twinsun.com>
29937
29938         * lib/strndup.c: Don't include <stdio.h>, <sys/types.h>.
29939         Include <stdlib.h>, <string.h> unconditionally.
29940         Remove now-unnecessary cast to char *.
29941         * lib/strnlen.c: Include <string.h> unconditionally.
29942         * lib/yesno.c (yesno): Define with a prototype.
29943
29944 2003-09-11  Bruno Haible  <bruno@clisp.org>
29945
29946         * config/srclist.txt (setenv.c, unsetenv.c): Disable for the moment.
29947
29948 2003-09-10  Jim Meyering  <jim@meyering.net>
29949
29950         * lib/error.c: Correct indentation of cpp directives.
29951
29952 2003-09-10  Bruno Haible  <bruno@clisp.org>
29953
29954         * m4/strcspn.m4 (gl_PREREQ_STRCSPN): Remove <string.h> check.
29955         * m4/strpbrk.m4 (gl_PREREQ_STRPBRK): Remove <string.h> check.
29956         * m4/strstr.m4 (gl_PREREQ_STRSTR): Remove <string.h> check.
29957         * m4/unicodeio.m4 (gl_UNICODEIO): Remove <string.h> check.
29958         * m4/setenv.m4 (gl_PREREQ_SETENV, gl_PREREQ_UNSETENV): Remove
29959         <stdlib.h> and <string.h> checks.
29960         * m4/xreadlink.m4 (gl_XREADLINK): Remove <stdlib.h> check.
29961         * m4/yesno.m4 (gl_YESNO): Remove <stdlib.h> check.
29962
29963 2003-09-10  Bruno Haible  <bruno@clisp.org>
29964
29965         * lib/strcspn.c: Include <string.h> unconditionally.
29966         * lib/strpbrk.c: Include <string.h> unconditionally.
29967         * lib/strstr.c: Include <string.h> unconditionally.
29968         * lib/unicodeio.c: Include <string.h> unconditionally.
29969         * lib/setenv.c: Include <stdlib.h> and <string.h> unconditionally.
29970         * lib/unsetenv.c: Likewise.
29971         * lib/xreadlink.c: Include <stdlib.h> unconditionally.
29972         * lib/yesno.c: Include <stdlib.h> unconditionally.
29973         (rpmatch): Add prototype.
29974
29975 2003-09-09  Paul Eggert  <eggert@twinsun.com>
29976
29977         More patches to assume C89 or better.
29978         * m4/getcwd.m4 (AC_FUNC_GETCWD_NULL): Don't check for stdlib.h.
29979         * m4/getopt.m4 (gl_GETOPT): Don't check for string.h.
29980         * m4/getugroups.m4 (gl_GETUGROUPS): Do not check for standard C headers
29981         or for string.h.
29982         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Do not check for
29983         stdlib.h.
29984         * m4/group-member.m4 (gl_PREREQ_GROUP_MEMBER): Do not require standard
29985         C headers.
29986         * m4/hard-locale.m4 (gl_HARD_LOCALE): Do not check for stdlib.h,
29987         string.h.
29988         * m4/hash.m4 (gl_HASH): Do not check for stdlib.h, malloc, free.
29989         * m4/human.m4 (gl_HUMAN): Do not check for stdlib.h, string.h, getenv.
29990         * m4/idcache.m4 (gl_IDCACHE): Do not check for standard C headers,
29991         or for string.h.
29992         * m4/long-options.m4 (gl_LONG_OPTIONS): Do not check for stdlib.h.
29993         * m4/makepath.m4 (gl_MAKEPATH): Do not check for string.h or standard
29994         C headers.
29995         * m4/md5.m4 (gl_MD5): Don't check for limits.h, standard C headers,
29996         memcpy.
29997         * m4/sha.m4 (gl_SHA): Don't check for standard Cheaders, memcpy.
29998         * m4/memchr.m4 (jm_PREREQ_MEMCHR): Don't check for limits.h, stdlib.h.
29999         * m4/memcmp.m4 (gl_PREREQ_MEMCMP): Don't check for string.h.
30000         * m4/memcoll.m4 (gl_MEMCOLL): Likewise.
30001         * m4/memrchr.c (gl_PREREQ_MEMRCHR): Don't check for limits.h.
30002         * m4/mkdir-slash.m4 (gl_PREREQ_MKDIR): Don't check for stdlib.h,
30003         string.h, free.
30004         * m4/mktime.m4 (gl_PREREQ_MKTIME): Don't check for standard C headers.
30005         * m4/modechange.m4 (gl_MODECHANGE): Don't check for standard C headers.
30006         * m4/mountlist.m4 (gl_PREREQ_MOUNTLIST_EXTRA): Don't check for standard
30007         C headers, or for string.h.
30008         * m4/obstack.m4 (gl_OBSTACK): Don't check for stddefe.h, string.h.
30009         (gl_PREREQ_OBSTACK): Don't check for stdlib.h.
30010         * m4/path-concat.m4 (gl_PATH_CONCAT): Don't check for standard C
30011         headers, memory.h, stdlib.h, string.h, strings.h.
30012         * m4/posixtm.m4 (gl_POSIXTM): Don't check for stdlib.h, string.h.
30013         * m4/posixver.m4 (gl_POSIXVER): Don't check for getenv.
30014         * m4/putenv.m4 (gl_PREREQ_PUTENV): Don't check for string.h, memcpy,
30015         strchr.
30016         * m4/readtokens.m4 (gl_READTOKENS): Don't check for standard C
30017         headers, memory.h, string.h.
30018         * m4/regex.m4 (jm_PREREQ_REGEX): Do not check for limits.h, string.h.
30019         * m4/rename.m4 (gl_PREREQ_RENAME): Do not check for stdlib.h, string.h,
30020         free.
30021         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Don't check for standard C
30022         headers.
30023         * m4/same.m4 (gl_SAME): Don't check for stdlib.h, string.h, free.
30024         * m4/save-cwd.m4 (gl_SAVE_CWD): Don't check for standard C headers.
30025         * m4/savedir.m4 (gl_SAVEDIR): Don't check for standard C headers.
30026         * m4/strchrnul.m4 (gl_PREREQ_STRCHRNUL): Don't check for string.h.
30027         * m4/xgetcwd.m4 (gl_XGETCWD): Don't check for stdlib.h.
30028
30029 2003-09-09  Paul Eggert  <eggert@twinsun.com>
30030
30031         More K&R removal.
30032
30033         * lib/acosl.c (main): Use a prototype.
30034         * lib/asinl.c, cosl.c, expl.c, frexpl.c, ldexpl.c, sinl.c,
30035         tanl.c: Likewise.
30036
30037         * lib/getloadavg.c (getloadavg, main): Define via prototypes.
30038
30039         * lib/getopt.h (struct option.name): Assume C89, and use 'const'.
30040         (getopt, etopt_long, getopt_long_only, _getopt_internal)
30041         [defined __GNU_LIBRARY__]: Assume C89, so we can always declare
30042         with a prototype.
30043         * lib/getopt.c (const): Remove macro.
30044         Include <string.h> unconditionally.
30045         (my_index): Remove; all uses changed to strchr.
30046         (strlen): Remove decl.
30047         (exchange): Remove forward decl; no longer needed.
30048         (exchange, _getopt_initialize, _getopt_internal, getopt, main):
30049         Define with prototype.
30050         * lib/getopt1.c (const): Remove macro.
30051         (getopt_long, getopt_long_only, main): Define with prototype.
30052
30053         * lib/getugroups.c: Include <string.h> unconditionally.
30054
30055         * lib/getusershell.c: Include <stdlib.h> unconditionally.
30056         (getusershell, setusershell, endusershell, readname, main):
30057         Define with prototypes.
30058
30059         * lib/group-member.c: Include group-member.h first.
30060         Include <stdlib.h> unconditionally.
30061
30062         * lib/hard-locale.c: Include hard-locale.h first.
30063         Include <stdlib.h>, <string.h> unconditionally.
30064
30065         * lib/hash.c (free, malloc): Remove decls.
30066         Include <stdlib.h> unconditionally.
30067
30068         * lib/human.c: Include <stdlib.h>, <string.h> unconditionally.
30069         (getenv): Do not declare.
30070
30071         * lib/idcache.c: Include <string.h> unconditionally.
30072
30073         * lib/long-options.c: Include long-options.h first, to test interface.
30074         Include <stdlib.h> unconditionally.
30075
30076         * lib/makepath.c: Include makepath.h first, to test interface.
30077         Include <stdlib.h> and <string.h> unconditionally.
30078
30079         * lib/linebuffer.c: Include <stdlib.h>.
30080         (free): Remove decl.
30081
30082         * lib/malloc.c: Include <stdlib.h>, for malloc; don't bother with
30083         stddef.h. rpl_malloc returns void *, not char *.
30084         * lib/realloc.c (rpl_realloc): Likewise.  Also, define with a
30085         prototype.
30086
30087         * lib/md5.h: Include <limits.h> unconditionally.
30088         (UINT_MAX_32_BITS): Don't worry about non-__STDC__ case.
30089         (__P): Remove; all uses removed.
30090         * lib/md5.c: Include "md5.h" first.
30091         (md5_init_ctx, md5_read_ctx, md5_finish_ctx, md5_stream,
30092         md5_buffer, md5_process_bytes, md5_process_block):
30093         Define with prototypes.
30094         * lib/sha.h (__P): Remove all uses.  (It wasn't defined??)
30095         * lib/sha.c: Include "sha.h" first.
30096         Include <stdlib.h>, <string.h> unconditionally.
30097
30098         * lib/memchr.c (__ptr_t): Remove; all uses changed to void *.
30099         * lib/memcmp.c (__ptr_t): Likewise.
30100         * lib/memrchr.c (__ptr_t): Likewise.
30101         * lib/memchr.c, memcmp.c, memcoll.c, memrchr.c:
30102         Include <string.h> unconditionally.
30103         * lib/memchr.c, memrchr.c: Include <limits.h> unconditionally.
30104         * lib/memchr.c: Include <stdlib.h> unconditionally.
30105         * lib/memchr.c (LONG_MAX): Remove.
30106         * lib/memrchr.c (LONG_MAX): Likewise.
30107         * lib/memchr.c (__memchr): Define via a prototype.
30108         * lib/memrchr.c (__memrchr): Likewise.
30109         * lib/memcmp.c (__P): Remove, and remove all uses.
30110         (memcmp_bytes, memcmp_common_alignment, memcmp_not_common_alignment):
30111         Remove forward decls; no longer needed.
30112         * lib/memcpy.c, memmove.c, memset.c: Include <stddef.h>.
30113         Use types required by C89 in prototype.
30114
30115         * lib/mkdir.c: Include <stdlib.h>, <string.h> unconditionally.
30116         * lib/savedir.c: Likewise.
30117         * lib/mkdir.c (free): Remove decl.
30118         * lib/rmdir.c (rmdir): Define with a prototype.
30119         * lib/savedir.c: Include savedir.h first, to test interface.
30120
30121         * lib/mktime.c (STDC_HEADERS): Remove.
30122         Include <stdlib.h>, <string.h> unconditionally.
30123
30124         * lib/modechange.c: Include <stdlib.h> unconditionally.
30125         (malloc): Remove decl.
30126
30127         * lib/mountlist.c: Include <stdlib.h>, <string.h> unconditionally.
30128         (free): Remove decl.
30129
30130         * lib/obstack.h (PTR_INT_TYPE) [!defined __PTRDIFF_TYPE__]:
30131         Define to ptrdiff_t, without bothering to check HAVE_STDDEF_H.
30132         (This type really should be intptr_t, but that's a C99ism.)
30133         (_obstack_memcpy): Remove: all uses changed to memcpy.
30134         Include <string.h> unconditionally.
30135         (struct obstack): Assume __STDC__ for types of members
30136         chunkfun, freefun, extra_arg.
30137         (_obstack_newchunk, _obstack_free, _obstack_begin, _obstack_begin_1,
30138         _obstack_memory_used, obstack_alloc_failed_handler, obstack_init,
30139         obstack_begin, obstack_specify_allocation,
30140         obstack_specify_allocation_with_arg, obstack_chunkfun,
30141         obstack_freefun, obstack_free) [! (defined __STDC__ && __STDC__)]:
30142         Remove unprototyped decls and the macros that use them.
30143         * lib/obstack.c (POINTER): Remove.  All uses changed to void *.
30144         (obstack_alloc_failed_handler, CALL_CHUNKFUN, CALL_FREEFUN,
30145         _obstack_begin, _obstack_begin_1, _obstack_allocated_p)
30146         (defined __STDC__ && __STDC__)]:
30147         Remove nonprototyped code.
30148         Include <stdlib.h> unconditionally.
30149         (_obstack_begin, _obstack_begin_1, _obstack_newchunk,
30150         _obstack_allocated_p, _obstack_free, obstack_free,
30151         _obstack_memory_used, print_and_abort):
30152         Define using prototypes.
30153         (obstack_1grow, obstack_1grow_fast, obstack_alloc, obstack_base,
30154         obstack_blank, obstack_blank_fast, obstack_copy, obstack_copy0,
30155         obstack_finish, obstack_grow, obstack_grow0, obstack_make_room,
30156         obstack_next_free, obstack_object_size, obstack_room) [0]:
30157         Remove unused, unprototyped code.
30158
30159         * lib/path-concat.c: Include <stdlib.h>, <string.h> unconditionally.
30160
30161         * lib/physmem.c (physmem_total, physmem_available, main): Define
30162         with prototypes.
30163
30164         * lib/posixtm.c: Include <stdlib.h>, <string.h> unconditionally.
30165         (main): Define with a prototype.
30166
30167         * lib/posixver.c (getenv): Remove decl.
30168
30169         * lib/putenv.c (malloc): Returns void *, not char *.
30170         Include <string.h> unconditionally.
30171         (strchr, memcpy, NULL): Do not define.
30172
30173         * lib/readtokens.c: Include readtokens.h first, to test interface.
30174         Include <stdlib.h>, <string.h> unconditionally.
30175         (init_tokenbuffer): Define with a prototype.
30176
30177         * lib/regex.c (PARAMS): Remove.  All uses removed.
30178         All uses of _RE_ARGS removed, too.
30179         Include <stddef.h>, <stdlib.h>, <string.h>, <limits.h>
30180         unconditionally.
30181         (bzero): Assume memset exists.
30182         (memcmp, memcpy, NULL): Remove.
30183         (SIGN_EXTEND_CHAR): Remove; all uses replaced by casts to signed
30184         char, or assignments to local vars of type signed char.
30185         (init_syntax_once, PREFIX(extract_number_and_incr),
30186         PREFIX(print_partial_compiled_pattern),
30187         PREFIX(print_compiled_pattern), PREFIX(print_double_string),
30188         convert_mbs_to_wcs, print_fastmap, re_set_syntax,
30189         PREFIX(regex_grow_registers), PREFIX(regex_compile),
30190         PREFIX(store_op1), PREFIX(store_op2), PREFIX(insert_op1),
30191         PREFIX(insert_op2), PREFIX(at_begline_loc_p),
30192         PREFIX(at_endline_loc_p), group_in_compile_stack, insert_space,
30193         wcs_compile_range, byte_compile_range, truncate_wchar,
30194         PREFIX(re_compile_fastmap), re_compile_fastmap, re_set_registers,
30195         re_search, re_search_2, PREFIX(re_search_2), re_match, re_match_2,
30196         count_mbs_length, wcs_re_match_2_internal,
30197         byte_re_match_2_internal, PREFIX(group_match_null_string_p),
30198         PREFIX(alt_match_null_string_p),
30199         PREFIX(common_op_match_null_string_p), PREFIX(bcmp_translate),
30200         re_compile_pattern, re_comp, re_exec, regcomp, regexec, regerror,
30201         regfree, PREFIX(extract_number)): Define with prototype.  Remove
30202         now-unnecessary declaration, if any.
30203         (byte_compile_range, PREFIX(regex_compile), re_comp, re_exec,
30204         regcomp, regexec):
30205         Remove now-unnecessary casts among pointer types.
30206         * lib/regex.h (_RE_ARGS): Remove.  All uses removed.
30207
30208         * lib/rename.c: Include <stdlib.h>, <string.h> unconditionally.
30209         (free): Remove decl.
30210
30211         * lib/rpmatch.c: Include <stdlib.h> unconditionally.
30212
30213         * lib/same.c: Include <stdlib.h>, <string.h> unconditionally.
30214         (free): Remove decl.
30215
30216         * lib/save-cwd.c: Include <stdlib.h> unconditionally.
30217         * lib/xgetcwd.c: Likewise.
30218
30219         * lib/stat.c: Include <stdlib.h>, <string.h> unconditionally.
30220         (free): Remove decl.
30221
30222         * lib/strchrnul.c (strchrnul): Define with a prototype.
30223         Fix bug: c_in was not converted to char before searching.
30224
30225         The following changes are not K&R related:
30226
30227         * lib/group-member.h: Include <sys/types.h>, so that this file is
30228         self-contained.
30229         * lib/makepath.h: Likewise.
30230
30231         * lib/getusershell.c (readname, default_index, line_size, readname):
30232         Use size_t, not int, for sizes.
30233         (readname): If the size overflows, report an error instead of
30234         looping forever.
30235
30236 2003-09-09  Paul Eggert  <eggert@twinsun.com>
30237
30238         * config/srclist.txt: Do not get getopt.h, getopt1.c, or regex.h from
30239         libc.
30240
30241 2003-09-09  Paul Eggert  <eggert@twinsun.com>
30242
30243         * README: New section: portability guidelines.
30244
30245 2003-09-09  Derek Robert Price  <derek@ximbiot.com>
30246
30247         * m4/getndelim2.m4 (gl_PREREQ_GETNDELIM2): Assume stdlib.h per the
30248         C89 spec.
30249
30250 2003-09-09  Derek Robert Price  <derek@ximbiot.com>
30251
30252         * lib/getndelim2.c: Assume stdlib.h per the C89 spec.
30253
30254 2003-09-08  Paul Eggert  <eggert@twinsun.com>
30255
30256         Assume C89 or better; remove K&R cruft.
30257         A few of these changes were first proposed by Derek Robert Price
30258         in <http://mail.gnu.org/archive/html/bug-gnulib/2003-07/msg00105.html>.
30259
30260         * lib/addext.c: Include <string.h> unconditionally.
30261         * lib/backupfile.c: Include <string.h>, <stdlib.h> unconditionally.
30262         Don't declare getenv or malloc.
30263
30264         * lib/alloca.c: Include <string.h>, <stdlib.h> unconditionally.
30265         (POINTER_TYPE, pointer): Remove; all uses changed to void *.
30266         (NULL): Remove.
30267         (find_stack_direction, alloca): Use prototypes.
30268
30269         * lib/atexit.c (atexit): Define using a prototype.
30270
30271         * lib/basename.c, dirname.c, stripslash.c:
30272         Include <string.h> unconditionally.
30273
30274         * lib/bcopy.c: Include <stddef.h>.
30275         (bcopy): Define with prototype, using 'const' and 'void' and 'size_t'.
30276
30277         * lib/canon-host.c: Include <stdlib.h>, <string.h> unconditionally.
30278
30279         * lib/error.h (error, error_at_line, error_print_progname)
30280         [! (defined (__STDC__) && __STDC__)]: Remove decls.
30281         * lib/error.c: Include error.h first, to check interface.
30282         Include <stdarg.h>, <stdlib.h>, <string.h> unconditionally.
30283         (VA_START): Remove; all uses changeed to va_start.
30284         (exit, strerror): Remove decls.
30285         (error_print_progname): Prototype uncondionally.
30286         Don't include <errno.h>; no longer needed.
30287         (private_strerror): Remove.
30288         (error_tail): Always define.
30289         (error, error_at_line): Assume C89 or better; always use prototypes.
30290         * lib/fatal.c: Include "fatal.h" first, to test interface.
30291         Include <stdarg.h>, <stdlib.h>, <string.h> unconditionally.
30292         (VA_START): Remove; all uses changed to va_start.
30293         [! (HAVE_VPRINTF || HAVE_DOPRNT || _LIBC)]: Remove support for
30294         this case.
30295         (exit): Remove decl.
30296         (fatal): Prototype unconditionally.  Assume va_start works.
30297         Abort at end, to pacify gcc.
30298
30299         * lib/euidaccess.c (main): Define with a prototype.
30300
30301         * lib/exclude.c: Include <stdlib.h>, <string.h> unconditionally.
30302
30303         * lib/exitfail.c: Include <stdlib.h> unconditionally.
30304
30305         * lib/fnmatch_.h (__P): Remove.  All uses changed to assume
30306         prototypes.
30307         * lib/fnmatch.c: Include fnmatch.h first, to test interface.
30308         Include <string.h>, <stddef.h>, <stdlib.h> unconditionally.
30309         (getenv): Remove decl.
30310         (fnmatch): Define using a prototype.
30311         * lib/fnmatch_loop.c (FCT): Remove forward decl; no longer needed.
30312         (FCT): Define using a prototype.
30313
30314         * lib/getdate.y: Include <stdlib.h>, <string.h> unconditionally.
30315
30316         * lib/gethostname.c: Include <stddef.h>.
30317         (gethostname): Define with prototype.  Length is size_t, not int.
30318
30319 2003-09-08  Paul Eggert  <eggert@twinsun.com>
30320
30321         Assume C89 or better; remove K&R cruft.
30322         * m4/alloca.m4 (gl_PREREQ_ALLOCA): Don't check for stdlib.h, string.h.
30323         * m4/backupfile.m4 (gl_BACKUPFILE): Don't check for stdlib.h,
30324         string.h, getenv, malloc.
30325         * m4/dirname.m4 (gl_DIRNAME): Don't check for string.h or C standard
30326         headers.
30327         * m4/canon-host.m4 (gl_CANON_HOST): Don't check for string.h, stdlib.h.
30328         * m4/error.m4 (jm_PREREQ_ERROR): Do not require STDC headers, and
30329         do not check for strerror.
30330         * m4/exclude.m4: Do not check for stdlib.h, string.h, strings.h.
30331         * m4/exitfail.m4 (gl_EXITFAIL): Do not check for stdlib.h.
30332         * m4/fatal.m4 (gl_FATAL): Do not require STDC headers, and
30333         do not check for doprnt or vprintf.
30334         * m4/fnmatch.m4 (gl_PREREQ_FNMATCH_EXTRA): Remove.  All uses removed.
30335         * m4/getdate.m4 (gl_GETDATE): Don't check for stdlib.h or string.h.
30336
30337 2003-09-08  Paul Eggert  <eggert@twinsun.com>
30338
30339         * lib/getversion.c: Remove; was migrated to backupfile.c in 1997.
30340         getversion.c should have been removed then, but was accidentally
30341         preserved.
30342
30343         * lib/utime.c [!HAVE_UTIMES_NULL]: Include <sys/stat.h>, <fcntl.h>.
30344         (utime_null): Fix typo: 'st' was sometimes called 'sb'.
30345
30346 2003-09-08  Karl Berry  <karl@gnu.org>
30347
30348         * config/config.sub, config.guess, srclistvars.sh: update from savannah
30349                 config, forget about prep.
30350
30351         * config/depcomp, missing: update from automake.
30352
30353 2003-09-07  Paul Eggert  <eggert@twinsun.com>
30354
30355         * modules/time_r: Depend on 'restrict'.  Fix from Simon Josefsson in
30356         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00028.html>.
30357
30358 2003-09-07  Paul Eggert  <eggert@twinsun.com>
30359
30360         * lib/time_r.c (gmtime_r, localtime_r): Fix silly typo: missing arg to
30361         copy_tm_result.  Bug reported by Simon Josefsson in
30362         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00028.html>.
30363
30364 2003-09-06  Paul Eggert  <eggert@twinsun.com>
30365
30366         * m4/time_r.m4: New file.
30367         * m4/mktime.m4 (gl_PREREQ_MKTIME): Remove check for limits.h.
30368         * m4/timegm.m4 (gl_FUNC_TIMEGM): Assume that timegm is buggy if mktime
30369         is. Check for timegm declaration.
30370         (gl_PREREQ_TIMEGM): Require gl_FUNC_MKTIME.
30371         Do not check for gmtime_r.
30372         Replace mktime if __mktime_internal does not exist and if mktime
30373         hasn't been replaced already.
30374
30375 2003-09-06  Paul Eggert  <eggert@twinsun.com>
30376
30377         * lib/time_r.c, lib/time_r.h: New files.
30378
30379         * lib/mktime.c (my_mktime_localtime_r): Remove; all uses changed to
30380         __localtime_r.
30381         (__localtime_r) [!defined _LIBC]: New macro.  Include <time_r.h>.
30382         (__mktime_internal) [!defined _LIBC]: Now extern, not static.
30383
30384         * lib/strftime.c (my_strftime_gmtime_r): Remove; all uses changed to
30385         __gmtime_r.
30386         (my_strftime_localtime_r): Remove; all uses changed to __localtime_r.
30387         (__gtime_r, __localtime_r) [!HAVE_TM_GMTOFF]: New macros.
30388         Include <time_r.h>.
30389
30390         * lib/timegm.c: Switch to glibc implementation, with the following
30391         changes:
30392         [defined HAVE_CONFIG_H]: Include <config.h>.
30393         [!defined _LIBC]: Include "timegm.h" rather than <time.h>.
30394         (__mktime_internal) [!defined _LIBC]: New decl.
30395         (__gmtime_r) [!defined _LIBC]: New macro and function.
30396         (timegm): Use a prototype, since gnulib assumes C89.
30397         Do not bother declaring tmp to be const, as it's not really usefu.
30398         * lib/timegm.h: Hoist "#include <time.h>" out of #ifdef.
30399         (timegm): Declare only if HAVE_DECL_TIMEGM.
30400
30401 2003-09-06  Paul Eggert  <eggert@twinsun.com>
30402
30403         * MODULES.html.sh (func_all_modules): Add time_r.
30404         * modules/time_r: New file.
30405         * modules/mktime, modules/strftime, modules/timegm: Depend on time_r.
30406         * modules/timegm: Depend on mktime.  Change maintainer to "all, glibc".
30407
30408 2003-09-03  Paul Eggert  <eggert@twinsun.com>
30409
30410         * lib/human.c (human_readable): Fix bug that rounded 10501 to 10k.
30411         Bug reported by Lute Kamstra in
30412         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00003.html>.
30413
30414         * lib/getdate.y (relative_time_table): Use tDAY_UNIT for "tomorrow",
30415         "yesterday", "today", and "now" rather than tMINUTE_UNIT.  Of
30416         course with correspondingly smaller numbers for tomorrow and
30417         yesterday.  From Tadayoshi Funaba.  Originally installed into
30418         sh-utils on 1999-08-07, but the patch got lost (I guess during the
30419         coreutils merge?).
30420
30421 2003-08-31  Simon Josefsson  <jas@extundo.com>
30422
30423         * modules/timegm: New file.
30424         * MODULES.html.sh (func_all_modules): Add timegm.
30425
30426 2003-08-31  Simon Josefsson  <jas@extundo.com>
30427
30428         * m4/timegm.m4: New file.
30429
30430 2003-08-31  Simon Josefsson  <jas@extundo.com>
30431
30432         * lib/timegm.h: New file.
30433         * lib/timegm.c: New file.  Based on
30434         wget-1.8.2/src/http.c:mktime_from_utc.
30435
30436 2003-08-31  Karl Berry  <karl@gnu.org>
30437
30438         * lib/argp.h: update from libc.
30439
30440 2003-08-28  Bruno Haible  <bruno@clisp.org>
30441
30442         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Remove AC_DEFINE of fnmatch here.
30443         This avoids havoc on compilers for which '#define fnmatch rpl_fnmatch'
30444         followed by '#define fnmatch fnmatch_posix' gives an error.
30445
30446 2003-08-28  Bruno Haible  <bruno@clisp.org>
30447
30448         * lib/binary-io.h: Undefine O_BINARY before defining it. This avoids a
30449         warning on QNX, which defines O_BINARY to 000000.
30450
30451 2003-08-27  Jim Meyering  <jim@meyering.net>
30452
30453         * m4/mkstemp.m4: Require that the system mkstemp be able to create
30454         70 temporary files, not just 30.  Tru64 V4.0F's mkstemp function
30455         would fail after 32.  Reported by Danny Levinson.  Details here:
30456         http://mail.gnu.org/archive/html/bug-coreutils/2003-08/msg00124.html
30457
30458 2003-08-24  Bruno Haible  <bruno@clisp.org>
30459
30460         * lib/binary-io.h: Include <stdio.h>, to avoid a compilation error when
30461         MSVC7 <stdio.h> is included later.
30462
30463 2003-08-22  Simon Josefsson  <jas@extundo.com>
30464
30465         * modules/strndup (Makefile.am): Add strndup.h to lib_SOURCES.
30466
30467 2003-08-20  Karl Berry  <karl@gnu.org>
30468
30469         * m4/lib-ld.m4: serial 1003 from gettext, no changes besides serial.
30470
30471 2003-08-20  Bruno Haible  <bruno@clisp.org>
30472
30473         * modules/progname: New file.
30474         * MODULES.html.sh (func_all_modules): Add progname.
30475
30476 2003-08-20  Bruno Haible  <bruno@clisp.org>
30477
30478         * lib/progname.h: New file, from GNU gettext.
30479         * lib/progname.c: New file, from GNU gettext.
30480         * lib/progreloc.c: New file, from GNU gettext.
30481
30482 2003-08-19  Jim Meyering  <jim@meyering.net>
30483
30484         * m4/lib-ld.m4: Revert yesterday's change, per Bruno's request here:
30485         http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00155.html
30486
30487 2003-08-19  Bruno Haible  <bruno@clisp.org>
30488
30489         * m4/xalloc.m4 (gl_PREREQ_XSTRDUP): Don't check for <string.h> any
30490         more.
30491
30492 2003-08-19  Bruno Haible  <bruno@clisp.org>
30493
30494         * lib/xstrdup.c: Assume <string.h> exists.
30495
30496 2003-08-18  Paul Eggert  <eggert@twinsun.com>
30497
30498         * modules/stdbool: Add BUILT_SOURCES.  Prefer $@ to target name
30499         in makefile rules.
30500
30501 2003-08-18  Jim Meyering  <jim@meyering.net>
30502
30503         * m4/getloadavg.m4: Use [\t ], not [ \t] (where \t is a literal TAB).
30504         * m4/lib-ld.m4: Likewise.
30505
30506 2003-08-18  Jim Meyering  <jim@meyering.net>
30507
30508         * lib/setenv.h: Indent nested cpp directive.
30509         * lib/vasnprintf.c: Remove trailing blanks.
30510
30511 2003-08-17  Simon Josefsson  <jas@extundo.com>
30512
30513         * modules/xstrndup: New file.
30514         * MODULES.html.sh (func_all_modules): Add xstrndup.
30515
30516 2003-08-17  Simon Josefsson  <jas@extundo.com>
30517
30518         * modules/argp: Fix autoconf macro name. Add more dependencies.
30519
30520 2003-08-17  Simon Josefsson  <jas@extundo.com>
30521
30522         * m4/xstrndup.m4: New file.
30523
30524 2003-08-17  Simon Josefsson  <jas@extundo.com>
30525
30526         * m4/argp.m4: New file.
30527
30528 2003-08-17  Simon Josefsson  <jas@extundo.com>
30529             Bruno Haible  <bruno@clisp.org>
30530
30531         * lib/xstrndup.h: New file.
30532         * lib/xstrndup.c: New file.
30533
30534 2003-08-17  Bruno Haible  <bruno@clisp.org>
30535
30536         * modules/strndup (Files, Include): Add lib/strndup.h.
30537
30538 2003-08-17  Bruno Haible  <bruno@clisp.org>
30539
30540         * modules/euidaccess (Files): Add lib/euidaccess.h.
30541
30542 2003-08-17  Bruno Haible  <bruno@clisp.org>
30543
30544         * lib/strndup.h: New file.
30545
30546 2003-08-17  Bruno Haible  <bruno@clisp.org>
30547
30548         * gnulib-tool (func_create_testdir): Handle gl_USE_SYSTEM_EXTENSIONS
30549         like AC_GNU_SOURCE.
30550         * modules/extensions (configure.ac): Comment out the invocation of
30551         gl_USE_SYSTEM_EXTENSIONS.
30552
30553 2003-08-16  Paul Eggert  <eggert@twinsun.com>
30554
30555         Merges from coreutils, etc.
30556         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Insert ':' to prevent a syntax
30557         error in gl_FUNC_MATCH.  This fixes a bug I introduced on 2003-05-28.
30558         * m4/readlink.m4 (gl_PREREQ_READLINK): Renamed from gl_PREREQ_READLINE,
30559         fixing a typo.
30560         * m4/host-os.m4 (UTILS_HOST_OS): Add GNU/NetBSD, GNU/FreeBSD.
30561         * m4/hash.m4 (gl_HASH): Use AM_STDBOOL_H, not AC_HEADER_STDBOOL.
30562
30563 2003-08-16  Paul Eggert  <eggert@twinsun.com>
30564
30565         Document merge from coreutils.
30566         * modules/alloca: Append $(ALLOCA_H) to BUILT_SOURCES.
30567         * modules/fnmatch: Append $(FNMATCH_H) to BUILT_SOURCES.
30568         * modules/utime: Add m4/utimes-null.m4.
30569
30570 2003-08-16  Paul Eggert  <eggert@twinsun.com>
30571
30572         * lib/regex.h, strdup.c, strtoll.c, strtoul.c: Do not normalize white
30573         space, undoing this 2003-08-12 change:
30574         <http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00080.html>
30575
30576 2003-08-16  Paul Eggert  <eggert@twinsun.com>
30577
30578         * config/srclist.txt: Get regex.h, strdup.c, strtoll.c,
30579         strtoul.c from libc, undoing this 2003-08-12 change:
30580         <http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00080.html>
30581
30582 2003-08-16  Jim Meyering  <jim@meyering.net>
30583
30584         Merges from coreutils.
30585         * m4/readdir.m4 (GL_FUNC_READDIR): Change name to have GL_ (not jm_)
30586         prefix.  Adjust cache variables similarly.  Create 500 rather than
30587         just 300 files, to exercise bug on Darwin6.5, too.
30588         * m4/perl.m4 (jm_PERL): Use $am_missing_run, not undefined
30589         $missing_dir.
30590         * m4/jm-winsz1.m4: Require AC_SYS_POSIX_TERMIOS, not
30591         AM_SYS_POSIX_TERMIOS.
30592         Reported by mkc@mathdogs.com.
30593         Also change use of $am_cv_sys_posix_termios
30594         to $ac_cv_sys_posix_termios.  Reported by Andreas Schwab.
30595         * m4/getgroups.m4 (jm_FUNC_GETGROUPS): Rewrite to use AC_FUNC_GETGROUPS
30596         and (if needed) to call AC_LIBOBJ and to set GETGROUPS_LIB.
30597         * m4/fsusage.m4 [__GLIBC__]: GNU libc's statvfs stats each mount point
30598         in /proc/mounts until it finds one with matching device number.  This
30599         is unnecessary when the FILE argument *is* a mount point.  No stat call
30600         is necessary in that case.  So, disable the statvfs-testing code on
30601         systems with GNU libc.  Reported by Andrei Gaponenko via Tim Waugh
30602         as RedHat bug# 84846.
30603         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Limit stack size
30604         to 1MB, so as not to render systems with no stack size limit (e.g.,
30605         linux-2.2.x) unusable.  Suggestion and code from Bruno Haible.
30606         Include <unistd.h>.  On some systems,
30607         it is required for the definition of _SC_PAGESIZE.
30608
30609 2003-08-16  Jim Meyering  <jim@meyering.net>
30610
30611         Merge from coreutils.
30612         * lib/xstrtoimax.c: #else #if -> #elif.
30613         * lib/xstrtoumax.c: Likewise.
30614
30615 2003-08-16  Jim Meyering  <jim@meyering.net>
30616
30617         * m4/utimes.m4 (gl_FUNC_UTIMES): New file.
30618         * m4/utimes.m4: Removed.
30619         * m4/utimes-null.m4: Renamed from utimes.m4.
30620
30621         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Limit stack size
30622         to 1MB, so as not to render systems with no stack size limit (e.g.,
30623         linux-2.2.x) unusable.  Suggestion and code from Bruno Haible.
30624         Include <unistd.h>.  On some systems,
30625         it is required for the definition of _SC_PAGESIZE.
30626
30627 2003-08-16  Jim Meyering  <jim@meyering.net>
30628         and Paul Eggert  <eggert@cs.ucla.edu>
30629
30630         Merges from coreutils, etc.
30631
30632         * m4/jm-macros.m4 (AC_LANG_SOURCE(C)): New macro, undefine, then define
30633         using the latest version from cvs.  This avoids problems with #line
30634         directives using a vendor (Sun) compiler.
30635         (jm_MACROS): Bump prerequisite from 2.52g to 2.57.
30636         Don't set GETGROUPS_LIB here; now it's
30637         done via getgroups.m4's wrapper function.
30638         AC_SUBST OPTIONAL_BIN_PROGS, OPTIONAL_BIN_ZCRIPTS, and MAN here,
30639         rather than just in sh-util/configure.in, so that the
30640         now-shared-by-fileutils-and-textutils lib/Makefile.am are all the
30641         same.
30642         Use AC_CONFIG_LIBOBJ_DIR(lib) to tell the new
30643         AC_FUNC_GETLOADAVG where to find getloadavg.c.
30644         Require AC_FUNC_FTW, gt_INTTYPES_PRI, gl_CLOCK_TIME,
30645         UTILS_SYS_OPEN_MAX, GL_FUNC_GETCWD_PATH_MAX, GL_FUNC_READDIR,
30646         gl_FSUSAGE, gl_MOUNTLIST, AC_FUNC_CANONICALIZE_FILE_NAME.
30647         Remove code that is now done by the newly-required macros.
30648         Append $(EXEEXT) to DF_PROG.
30649         AC_LIBOBJ fchdir-stub if fchdir doesn't exist; similarly for fchown.
30650         Do not invoke or require the following here,
30651         since prereq.m4 or some gnulib .m4 now does this for us:
30652         gl_REGEX, UTILS_FUNC_MKDIR_TRAILING_SLASH, jm_BISON, gl_FUNC_MKTIME,
30653         jm_FUNC_LSTAT, jm_FUNC_STAT, jm_FUNC_REALLOC, jm_FUNC_MALLOC,
30654         jm_FUNC_NANOSLEEP, jm_FUNC_READDIR, jm_FUNC_MEMCMP,
30655         jm_FUNC_GLIBC_UNLOCKED_IO, AC_FUNC_FNMATCH_GNU, jm_FUNC_PUTENV,
30656         jm_AC_PREREQ_XSTRTOUMAX, jm_AC_PREREQ_XSTRTOIMAX,
30657         AC_FUNC_ERROR_AT_LINE, jm_FUNC_GNU_STRFTIME, AC_FUNC_VPRINTF,
30658         vb_FUNC_RENAME, UTILS_FUNC_MKSTEP, jm_FUNC_UTIME, AM_FUNC_GETLINE,
30659         AC_FUNC_OBSTACK.
30660         Do not replace the following functions, as this is now the job
30661         of some gnulib .m4: strcasecmp, strncasecmp, dup2, gethostname,
30662         getusershell, sig2str, strcspn, stpcpy, strstr, strtol, strtoul
30663         strpbrk, euidaccess, memcmp, rmdir, rpmatch, strndup, strverscmp,
30664         atexit getpass, strdup, getpagesize.
30665         Replace 'raise'.
30666         Do not check for the following functions, as this is now the job
30667         of some gnulib .m4: bcopy, canonicalize_file_name, fchdir, ftime,
30668         getcwd, getmntinfo, resolvepath.  But check for sysctl, setreuid,
30669         setregid.
30670         (jm_CHECK_ALL_HEADERS): Do not check for fenv.h.
30671         Check for sys/sysctl.h.
30672         (jm_CHECK_ALL_TYPES): Do not require AC_STRUCT_TM, AC_STRUCT_TIMEZONE,
30673         jm_CHECK_TYPE_STRUCT_TIMESPEC.  Invoke gt_TYPE_SSIZE_T instead
30674         of checking for ssize_t ourselves.
30675
30676         * m4/prereq.m4 (jm_PREREQ): Don't invoke macros; AC_REQUIRE them.
30677         Require every macro that gnulib/modules/* suggests for us.
30678         (jm_PREREQ_ADDEXT): New macro.
30679         (jm_PREREQ_STAT): Check for 'struct statfs' on Ultrix 4.4.
30680         Require jm_AC_TYPE_LONG_LONG instead of invoking it.
30681
30682         * m4/physmem.m4 (gl_SYS__SYSTEM_CONFIGURATION): New macro.
30683         (gl_PHYSMEM): Use it.
30684         Also check for `table' function.
30685         Check for new headers and functions.
30686         Add check for sys/sysmp.h.
30687         With suggestions from Kaveh Ghazi.
30688         Ignore headers that are present but cannot be compiled.  This
30689         avoids spurious warnings on Solaris 9 sparc with Forte Developer 7
30690         C 5.4.
30691
30692 2003-08-15  Paul Eggert  <eggert@twinsun.com>
30693
30694         Document merge from coreutils.
30695         * modules/userspec: Depend on posixver.
30696         * modules/strftime: Depend on tzset.
30697
30698 2003-08-15  Paul Eggert  <eggert@twinsun.com>
30699
30700         * lib/config.charset, ref-add.sin, ref-del.sin: Use three spaces,
30701         rather than tab, after '#' in shell-script copyright notices.
30702         Suggested by Bruno Haible.
30703
30704 2003-08-15  Paul Eggert  <eggert@twinsun.com>
30705
30706         * config/srclist-update: Use three spaces, rather than tab, after '#'
30707         in shell-script copyright notices.  Suggested by Bruno Haible.
30708         Remove unnecessary parenthesization in regular expression.
30709
30710 2003-08-15  Jim Meyering  <jim@meyering.net>
30711
30712         Merge from coreutils.
30713         * lib/xgethostname.c: Include <stdlib.h>.
30714         (xghostname): Don't exit for anything other than memory-related
30715         failure; just return NULL.
30716         * lib/userspec.c: Include "posixver.h".
30717         (parse_user_spec): Accept `.' as a separator only
30718         in pre-POSIX-200112 mode.
30719         * lib/strtoimax.c: Use #elif rather than #else #if.
30720         * lib/strftime.c (my_strftime) [!_LIBC && HAVE_TZNAME && HAVE_TZSET]:
30721         Remove function, now that we can rely on a working tzset function.
30722         [!_LIBC]: Ensure that the required autoconf test has been run.
30723         [!defined _NL_CURRENT && HAVE_STRFTIME]:
30724         Use underlying_strftime for %r.
30725         * lib/sha.c: Merge in some clean-up and optimization changes from
30726         glibc.
30727         * lib/sha.c (sha_stream) [BLOCKSIZE]: Move definition to top of file.
30728         Ensure that it is a multiple of 64.
30729         Rearrange loop exit tests so as to avoid performing an
30730         additional fread after encountering an error or EOF.
30731         * lib/realloc.c: Update copyright date.
30732
30733 2003-08-15  Jim Meyering  <jim@meyering.net>
30734         and Paul Eggert  <eggert@twinsun.com>
30735
30736         Merge from coreutils.
30737         * lib/readutmp.h (HAVE_UTMPX_H): Undef if struct utmp has the ut_exit
30738         member but strut utmpx does not.  Needed for AIX 4.3.3.
30739         (UT_EXIT_E_TERMINATION, UT_EXIT_E_EXIT): Define.
30740
30741 2003-08-15  Jim Meyering  <jim@meyering.net>
30742         and Paul Eggert  <eggert@cs.ucla.edu>
30743
30744         Merges from coreutils, etc.
30745         * m4/strftime.m4 (_jm_STRFTIME_PREREQS):
30746         Require gl_FUNC_TZSET_CLOBBER.
30747         * m4/readutmp.m4 (gl_READUTMP): Check for ut_exit.ut_exit,
30748         ut_exit.e_exit, ut_exit.ut_termination, and ut_exit.e_termination
30749         members.
30750
30751 2003-08-14  Paul Eggert  <eggert@twinsun.com>
30752
30753         Help the merge from coreutils.
30754         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): New macro.
30755         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Use it.
30756         * m4/tzset.m4: Use it too.
30757
30758 2003-08-14  Paul Eggert  <eggert@twinsun.com>
30759
30760         * modules/tzset: New file.
30761
30762 2003-08-14  Jim Meyering  <jim@meyering.net>
30763
30764         Merges from coreutils.
30765         * modules/fnmatch: Use the `$(FNMATCH_H)' notation for AC_REPLACED
30766         variable names, rather than @FNMATCH_H@.
30767         * modules/alloca: Likewise for $(ALLOCA_H).
30768
30769         * modules/fnmatch (fnmatch.h): Use `$@' in the commands, in place of
30770         the three copies of the literal target, `fnmatch.h'.
30771         * modules/alloca (alloca.h): Likewise.
30772
30773 2003-08-14  Jim Meyering  <jim@meyering.net>
30774
30775         Merge from coreutils.
30776         * m4/tzset.m4: New file.
30777         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Move the
30778         MOUNTED_VMOUNT test to precede the MOUNTED_GETMNTENT1 tests, since
30779         otherwise, AIX 5.1 systems would end up using the latter.
30780         MOUNTED_GETMNTENT1 support is inadequate on such systems: 1) detecting
30781         whether a file system is remote doesn't work  2) the MOUNTED_VMOUNT
30782         code reports the HOSTNAME:/MOUNT_POINT, while the MOUNTED_GETMNTENT1
30783         code reports merely /MOUNT_POINT.  Reported by Mike Jetzer.
30784
30785 2003-08-14  Jim Meyering  <jim@meyering.net>
30786
30787         Merge from coreutils.
30788         * lib/obstack.h: Whitespace changes.
30789         * lib/mountlist.c: Remove anachronistic casts of xmalloc, xrealloc,
30790         and xcalloc return values.
30791         (read_filesystem_list) [MOUNTED_GETFSSTAT]:
30792         Use MNT_NOWAIT, rather than MNT_WAIT.  Otherwise, `df DIR' could
30793         hang on OSF/1 5.1 for DIR on both local and remote file systems.
30794         Reported by (and fix confirmed by) Nelson H. F. Beebe.
30795         (read_filesystem_list) [MOUNTED_VMOUNT]: Detect any
30796         error from mntctl.
30797         Use mntctl's return value to drive the entry-processing loop, since
30798         we can't rely on the value of the vmt_length member in the last
30799         entry.  On some systems doing so could result in exhausting
30800         virtual memory.  Based in part on a patch from Mike Jetzer.
30801
30802 2003-08-14  Jim Meyering  <jim@meyering.net>
30803         and Paul Eggert  <eggert@twinsun.com>
30804
30805         Merges from coreutils, plus other fixes.
30806         * lib/physmem.c: Merge in portability changes from gcc/libiberty
30807         to support AIX, IRIX, Tru64, and Windows.  See the ChangeLog there
30808         for credits and details.  Thanks to Kaveh Ghazi for helping
30809         to keep these files in sync.
30810         (ARRAY_SIZE): Define it.
30811         (physmem_total, physmem_available): Add comments. From Kaveh Ghazi.
30812         * lib/memcasecmp.c: Remove unnecessary parentheses after 'defined'.
30813         (memcasecmp): Don't assume size_t fits in unsigned int.
30814         Remove casts and duplicate code.
30815         * lib/md5.c: Include <string.h> and <stdlib.h> unconditionally.
30816         (memcpy): Remove definition.
30817         Merge in some clean-up and optimization changes from glibc.
30818         [BLOCKSIZE]: Move definition to top of file.
30819         Ensure that it is a multiple of 64.
30820         Rearrange loop exit tests so as to avoid performing an
30821         additional fread after encountering an error or EOF.
30822         * lib/md5.h (md5_uintptr): Define.
30823         * lib/makepath.c (CLEANUP_CWD): Report an error if we failed to
30824         return to the initial working directory.  Preserve errno
30825         for caller.
30826         * lib/idcache.c: Include "xalloc.h".
30827         (xmalloc, xrealloc): Remove decls.
30828         (getuser): Remove casts no longer required in C89.
30829         * lib/human.c: Include stdio.h, for sprintf.
30830         * lib/group-member.c: Include "xalloc.h".
30831         (xmalloc, xrealloc): Remove decls.
30832         (get_group_info): Remove casts no longer required in C89.
30833         * lib/getusershell.c (readname): Remove casts no longer required in
30834         C89.
30835         * lib/gettimeofday.c (rpl_gmtime, rpl_tzset): New functions.
30836         * lib/getline.c: Whitespace fix, from coreutils.
30837
30838 2003-08-13  Paul Eggert  <eggert@twinsun.com>
30839
30840         * m4/exclude.m4 (gl_EXCLUDE): Require AC_C_INLINE, AC_HEADER_STDC.
30841         Check for isascii.
30842
30843         * m4/gettext.m4, iconv.m4, intdiv0.m4, inttypes-pri.m4, lib-link.m4,
30844         lib-prefix.m4, longdouble.m4, po.m4, progtest.m4, signed.m4:
30845         Undo previous (whitespace-only) change.
30846
30847 2003-08-13  Paul Eggert  <eggert@twinsun.com>
30848
30849         * lib/exclude.c: Include <ctype.h>
30850         (IN_CTYPE_DOMAIN): New macro.
30851         (is_space): New fn.
30852         (add_exclude_file): If LINE_END is a space, ignore trailing spaces
30853         and empty lines.
30854
30855         * lib/argp-help.c, argp-parse.c, config.charset, getopt.h:
30856         Undo previous (whitespace-only) change.
30857
30858 2003-08-13  Paul Eggert  <eggert@twinsun.com>
30859
30860         * config/srclist-update: Change update back to the old behavior,
30861         leaving whitespace alone.  Use one 'sed' command rather than a
30862         pipeline.
30863         (fixlicense): Now a variable, not a function.
30864         (remove_trailing_blanks): Remove.
30865         (fixfile): Don't invoke unexpand or cat, or remove trailing blanks.
30866         * config/config.guess, config.sub, install-sh, missing, texinfo.tex:
30867         Undo previous (whitespace-only) change.
30868
30869 2003-08-12  Paul Eggert  <eggert@twinsun.com>
30870
30871         Merge from coreutils.
30872         * modules/euidaccess: Add lib_SOURCES, include for new
30873         file euidaccess.h
30874
30875 2003-08-12  Paul Eggert  <eggert@twinsun.com>
30876
30877         * m4/gettext.m4, iconv.m4, intdiv0.m4, inttypes-pri.m4, lib-link.m4,
30878         lib-prefix.m4, longdouble.m4, po.m4, progtest.m4, signed.m4:
30879         Normalize leading white space and remove trailing white space.
30880
30881         Merge from coreutils
30882         * m4/euidaccess.m4 (gl_FUNC_EUIDACCESS): Check for euidaccess decl.
30883
30884         * m4/lib-ld.m4, lib-link.m4, lib-prefix.m4: Regenerate from gettext
30885         0.12.1.  These files are now being upgraded automatically by
30886         ../config/srclist-update.
30887
30888 2003-08-12  Paul Eggert  <eggert@twinsun.com>
30889
30890         * lib/argp-help.c, argp-parse.c, config.charset, getopt.h:
30891         Normalize leading white space and remove trailing white space.
30892         * lib/ref-add.sin, ref-del.sin: Use '#' before empty line in copyright
30893         notice, as per ../config/srclist-update.
30894
30895         Merge from coreutils.
30896         * lib/euidaccess.h: New file.
30897         * lib/euidaccess.c: Include it.
30898         * lib/.cppi-disable: Add printf-args.h, printf-parse.h, stdbool_.h,
30899         vasnprintf.h, vasprintf.h.  Remove strdup.c, gettext.h.
30900         * lib/regex.h, strdup.c, strtoll.c, strtoul.c: Normalize white space.
30901
30902 2003-08-12  Paul Eggert  <eggert@twinsun.com>
30903
30904         * config/srclist-update: Add copyright notice.
30905         (remove_id_lines, remove_trailing_blanks): New constants.
30906         (fixfile): Use them to normalize spacing a bit in copied files.
30907         * config/config.guess, config.sub, install-sh, missing, texinfo.tex:
30908         Normalize leading white space and remove trailing white space.
30909
30910         * config/texinfo.tex: Sync with texinfo.
30911
30912         * config/srclist.txt: Don't get regex.h, strdup.c, strtoll.c,
30913         strtoul.c from libc, to merge coreutils whitespace changes.
30914
30915         * config/srclist.txt: Get the following m4 files from gettext:
30916         codeset.m4, gettext.m4, glibc21.m4, iconv.m4, intdiv0.m4,
30917         inttypes-pri.m4, lcmessage.m4, lib-ld.m4, lib-link.m4, lib-prefix.m4,
30918         longdouble.m4, nls.m4, po.m4, progtest.m4, signed.m4, wchar_t.m4,
30919         wint_t.m4.
30920
30921 2003-08-12  Karl Berry  <karl@gnu.org>
30922
30923         * config/srclist.txt: can't sync vasnprintf.c any more, changes have
30924         been made.
30925
30926 2003-08-11  Paul Eggert  <eggert@twinsun.com>
30927
30928         * modules/gnu-source, m4/gnu-source.m4:
30929         Remove; we're assuming Autoconf 2.54 or later now.
30930         Suggested by Bruno Haible.
30931         * MODULES.html.sh (func_all_modules): Remove gnu-source.
30932
30933 2003-08-11  Bruno Haible  <bruno@clisp.org>
30934
30935         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF): Also check for wcslen.
30936
30937 2003-08-11  Bruno Haible  <bruno@clisp.org>
30938
30939         * lib/vasnprintf.c (local_wcslen): New function, for Solaris 2.5.1.
30940         (vasnprintf): Use it instead of wcslen.
30941
30942 2003-08-11  Bruno Haible  <bruno@clisp.org>
30943
30944         * lib/stdbool_.h (_Bool): Undo last change; instead use a negative enum
30945         value to ensure that _Bool promotes to int. Use #define for _Bool when
30946         using the Solaris C compiler. Adds comments suggested by Paul Eggert.
30947
30948 2003-08-10  Karl Berry  <karl@gnu.org>
30949
30950         * lib/regex.h: update from libc (whitespace fix).
30951
30952 2003-08-09  Paul Eggert  <eggert@twinsun.com>
30953
30954         Merge some files from coreutils.  These changes were
30955         originally made by Jim Meyering.
30956         * lib/acl.c: Include <sys/types.h> before <sys/stat.h>;
30957         many older Unixes require this.
30958         * lib/alloca.c (alloca): Remove cast to argument of free;
30959         no longer needed in C89.
30960         * lib/alloca_.h, regex.h: Fix white space to match
30961         what GNU indent does.
30962
30963 2003-08-09  Paul Eggert  <eggert@twinsun.com>
30964
30965         * m4/regex.m4 (jm_INCLUDED_REGEX): Change "\201" to "\371";
30966         apparently Emacs's Unicode mode got confused before my 2003-08-05
30967         checkin.
30968
30969 2003-08-08  Paul Eggert  <eggert@twinsun.com>
30970
30971         * m4/extensions.m4: New file.
30972         * m4/timespec.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC):
30973         Require gl_USE_SYSTEM_EXTENSIONS.
30974         * m4/unlocked-io.m4 (jm_FUNC_GLIBC_UNLOCKED_IO):
30975         Require gl_USE_SYSTEM_EXTENSIONS rather than AC_GNU_SOURCE.
30976
30977 2003-08-08  Paul Eggert  <eggert@twinsun.com>
30978
30979         * MODULES.html.sh (func_all_modules): Add extensions, gnu-source.
30980         * modules/extensions, modules/gnu-source: New files.
30981         * modules/timespec, modules/unlocked-io: Depend on extensions.
30982
30983 2003-08-07  Paul Eggert  <eggert@twinsun.com>
30984
30985         * modules/restrict: New file.
30986         * MODULES.html.sh (func_all_modules): Add restrict.
30987         * modules/regex: Depend on restrict.
30988
30989 2003-08-07  Paul Eggert  <eggert@twinsun.com>
30990
30991         * m4/restrict.m4: New file.
30992         * m4/regex.m4 (jm_PREREQ_REGEX): Add gl_C_RESTRICT.
30993
30994 2003-08-07  Bruno Haible  <bruno@clisp.org>
30995
30996         * modules/getndelim2 (Makefile.am): Add the files to EXTRA_DIST, not
30997         lib_SOURCES, because getndelim2.m4 now uses AC_LIBOBJ(getndelim2).
30998
30999 2003-08-07  Bruno Haible  <bruno@clisp.org>
31000
31001         * m4/getndelim2.m4 (gl_GETNDELIM2): Use AC_LIBOBJ(getndelim2). This
31002         makes the module 'getndelim2' compatible with the module 'getline'.
31003
31004 2003-08-05  Paul Eggert  <eggert@twinsun.com>
31005
31006         * m4/regex.m4 (jm_INCLUDED_REGEX): Replace a single non-ASCII
31007         byte with "\201" to avoid glitches when editing that source file
31008         with multi-gnome-terminal.
31009
31010 2003-08-05  Paul Eggert  <eggert@twinsun.com>
31011
31012         * lib/bumpalloc.h: Remove.
31013
31014 2003-08-05  Paul Eggert  <eggert@twinsun.com>
31015
31016         * MODULES.html.sh (func_all_modules): Remove bumpalloc.
31017         * modules/bumpalloc: Remove.
31018
31019 2003-08-04  Paul Eggert  <eggert@twinsun.com>
31020
31021         * lib/getloadavg.c: Change copyright notice and spacing to conform to
31022         GNU coding style.
31023
31024         Merge from coreutils.
31025         * lib/error.c [!USE_IN_LIBIO]: Omit this case; assume USE_IN_LIBIO is
31026         1. From glibc.
31027         * lib/getdate.y (date): Also accept dates like May-23-2003; suggestion
31028         from Karl Berry, implemented by Jim Meyering.
31029         * lib/getgroups.c: Include "xalloc.h" instead of declaring xalloc fns;
31030         from Dmitry V. Levin.
31031         Remove anachronistic cast of xrealloc.
31032         * lib/fnmatch_.h (__const): Remove.  Use 'const'.
31033         * lib/fnmatch_loop.c (NEW_PATTERN): Cast alloca return value to proper
31034         type. Otherwise, it wouldn't compile with at least /bin/cc on
31035         ymp-cray-unicos9.0.2.X.
31036         Combine two mostly-identical uses of alloca into one.
31037         Thanks to the Cray-Cyber project for access to a Cray Y-MP.
31038
31039 2003-08-04  Dave Love  <d.love@dl.ac.uk>
31040
31041         [From Emacs.]
31042
31043         * lib/getloadavg.c: Check `__unix' as well as `unix'.  Use #ifdef, not
31044         #if.  Check HAVE_LIBKSTAT as well as LOAD_AVE_TYPE.  Check
31045         F_SETFD, not FD_SETFD.  Use HAVE_STRUCT_NLIST_N_UN_N_NAME, not
31046         obsolete NLIST_NAME_UNION.
31047         [__GNU__]: Undef BSD and FSCALE.
31048         [!NLIST_STRUCT]: Remove conditional definition of NLIST_STRUCT.
31049
31050 2003-08-03  Paul Eggert  <eggert@twinsun.com>
31051
31052         * lib/stdbool_.h (_Bool): Make it signed char, instead of
31053         an enum type, so that it's guaranteed to promote to int.  See:
31054         <http://mail.gnu.org/archive/html/bug-gnulib/2003-07/msg00124.html>
31055
31056 2003-08-03  Karl Berry  <karl@gnu.org>
31057
31058         * config/depcomp: update from automake.
31059
31060 2003-07-31  Paul Eggert  <eggert@twinsun.com>
31061
31062         * lib/strerror.c: Include config.h, limits.h.  Declare sprintf.
31063         (strerror): Don't assume that a printable int fits in 14 bytes.
31064
31065 2003-07-31  Bruno Haible  <bruno@clisp.org>
31066
31067         * modules/getpass-gnu: New file.
31068         * MODULES.html.sh (func_all_modules): Add getpass-gnu.
31069
31070 2003-07-31  Bruno Haible  <bruno@clisp.org>
31071
31072         * m4/getpass.m4 (gl_FUNC_GETPASS_GNU): New macro.
31073
31074 2003-07-24  Karl Berry  <karl@gnu.org>
31075
31076         * config/missing: update from automake.
31077
31078 2003-07-24  Derek Robert Price  <derek@ximbiot.com>
31079             Bruno Haible  <bruno@clisp.org>
31080
31081         * lib/getline.h (getline, getdelim): Change return type to ssize_t.
31082         * lib/getline.c (getline, getdelim): Likewise.
31083         Remove _GNU_SOURCE define; now it's defined in config.h through
31084         m4/getline.m4.
31085
31086 2003-07-23  Karl Berry  <karl@gnu.org>
31087
31088         * config/config.sub: update from prep.
31089
31090 2003-07-22  Paul Eggert  <eggert@twinsun.com>
31091
31092         * modules/xalloc (Depends-on): Add exitfail.
31093         * modules/xmemcoll: Likewise.
31094
31095 2003-07-22  Paul Eggert  <eggert@twinsun.com>
31096
31097         * lib/xalloc.h (XCALLOC, XREALLOC, CCLONE): Fix under- and
31098         over-parenthesization in macros.
31099
31100         Sync with coreutils.
31101
31102         * lib/xalloc.h (XMALLOC, XCALLOC, XREALLOC): Remove casts not
31103         required by C99.
31104
31105         Use `exit_failure' for xalloc and xmemcoll instead of their own
31106         private exit-failure variables.
31107         * lib/xalloc.h (xalloc_exit_failure): Remove.
31108         * lib/xmalloc.c: Likewise.  Include exitfail.h.
31109         (xalloc_die): Use exit_failure instead of xalloc_exit_failure.
31110         * lib/xmemcoll.h (xmemcoll_exit_failure): Remove.
31111         * lib/xmemcoll.c: Likewise.  Include exitfail.h.
31112         (xmemcoll): Use exit_failure instead of xalloc_exit_failure.
31113
31114 2003-07-20  Jim Meyering  <jim@meyering.net>
31115
31116         * modules/closeout (Depends-on): Add exitfail.
31117         Suggestion from Bruno Haible.
31118
31119 2003-07-19  Karl Berry  <karl@gnu.org>
31120
31121         * config/config.sub: update from prep.
31122
31123 2003-07-18  Paul Eggert  <eggert@twinsun.com>
31124
31125         * lib/closeout.h (close_stdout_set_status, close_stdout_status):
31126         Remove.
31127         * lib/closeout.c: Likewise.  Include "closeout.h" right after config.h,
31128         to test that it can stand by itself.  Include "exitfail.h".
31129         Clients should set exit_failure instead.
31130         (EXIT_FAILURE): Remove; no longer needed.  Do not include <stdlib.h>.
31131
31132 2003-07-18  Bruno Haible  <bruno@clisp.org>
31133
31134         * modules/getndelim2: New file.
31135         * modules/getline: Share files with module getndelim2.
31136         * modules/getnline: Depend on getndelim2 instead of sharing files with
31137         it. Add getnline.c to lib_SOURCES.
31138         * MODULES.html.sh (func_all_modules): Add getndelim2.
31139
31140 2003-07-18  Bruno Haible  <bruno@clisp.org>
31141
31142         * m4/getndelim2.m4: New file.
31143         * m4/getline.m4 (AM_FUNC_GETLINE): Add AC_LIBOBJ of getndelim2.c and
31144         invoke gl_PREREQ_GETNDELIM2.
31145         (gl_PREREQ_GETLINE): Drop AC_HEADER_STDC, now done by
31146         gl_PREREQ_GETNDELIM2.
31147         * m4/getnline.m4 (gl_GETNLINE): Drop AC_HEADER_STDC, now done by
31148         gl_GETNDELIM2.
31149
31150 2003-07-18  Bruno Haible  <bruno@clisp.org>
31151
31152         * lib/getndelim2.h: New file.
31153         * lib/getndelim2.c: Make into a module of its own. Include config.h,
31154         getndelim2.h.
31155         (getndelim2): Make non-static. Change return type to ssize_t.
31156         * lib/getline.h: Change argument names.
31157         * lib/getline.c: Include getndelim2.h instead of getndelim2.c.
31158         * lib/getnline.c: Include getndelim2.h.
31159
31160 2003-07-18  Andreas Schwab  <schwab@suse.de>
31161
31162         * lib/memcoll.c (memcoll) [!HAVE_STRCOLL]: Clear errno.
31163
31164 2003-07-17  Karl Berry  <karl@gnu.org>
31165
31166         * config/config.sub: update from prep.
31167
31168 2003-07-17  Bruno Haible  <bruno@clisp.org>
31169
31170         * modules/getnline: New file.
31171         * modules/getline: Add lib/getndelim2.c to source file list.
31172         * MODULES.html.sh (func_all_modules): Add getnline.
31173
31174 2003-07-17  Bruno Haible  <bruno@clisp.org>
31175
31176         * m4/getnline.m4: New file.
31177
31178 2003-07-17  Bruno Haible  <bruno@clisp.org>
31179
31180         * m4/Makefile.am.in: Remove file.
31181         * m4/Makefile.am: Remove file.
31182         * m4/Makefile.in: Remove file.
31183
31184 2003-07-17  Bruno Haible  <bruno@clisp.org>
31185
31186         * lib/getnline.h: New file.
31187         * lib/getnline.c: New file.
31188         * lib/getndelim2.c: New file, extracted from getline.c.
31189         (getndelim2): Renamed from getdelim2, with added nmax argument.
31190         * lib/getline.c: Include getndelim2.c.
31191         (getdelim2): Moved out to getndelim2.c.
31192         (getline, getdelim): Update.
31193
31194 2003-07-17  Bruno Haible  <bruno@clisp.org>
31195
31196         * lib/Makefile.am: Remove file.
31197         * lib/Makefile.in: Remove file.
31198
31199 2003-07-17  Bruno Haible  <bruno@clisp.org>
31200
31201         * configure.in: Remove file.
31202         * Makefile.in: Remove file.
31203
31204 2003-07-17  Bruno Haible  <bruno@clisp.org>
31205
31206         * MODULES.html.sh: Put the </BODY> right before </HTML>.
31207
31208 2003-07-16  Karl Berry  <karl@gnu.org>
31209
31210         * config/srclist-update: was running fixlicense twice, which caused
31211                 texinfo.tex to be nullified for some reason.  Simplify,
31212                 $gplsrc is no longer needed as far as I can see?
31213
31214 2003-07-16  Jim Meyering  <jim@meyering.net>
31215
31216         * modules/save-cwd: Depend on xgetcwd.  From Derek Price.
31217
31218 2003-07-15  Paul Eggert  <eggert@twinsun.com>
31219
31220         * config/srclist.txt: Get the following files from gettext-runtime/intl
31221         instead: config.charset, localcharset.c, localcharset.h, ref-add.sin,
31222         ref-del.sin.  From Bruno Haible.
31223         * config/srclist-update (fixfile): Change grep pattern again, since the
31224         previous fix didn't work (there was another trailing $).  Use
31225         '[$]' to escape the $s.
31226
31227 2003-07-15  Karl Berry  <karl@gnu.org>
31228
31229         * lib/vasnprintf.c: update from gettext.
31230
31231 2003-07-15  Karl Berry  <karl@gnu.org>
31232
31233         * config/srclist-update (fixfile): Change grep pattern, since 'Id'
31234         gets expanded when surrounded by '$'.
31235
31236 2003-07-15  Jim Meyering  <jim@meyering.net>
31237
31238         * modules/save-cwd: Don't depend on error.  From Derek Price.
31239
31240 2003-07-15  Jim Meyering  <jim@meyering.net>
31241
31242         * lib/makepath.c (make_path): Enclose diagnostic in _(...).
31243
31244 2003-07-14  Simon Josefsson  <jas@extundo.com>
31245
31246         * modules/mempcpy: New file.
31247         * MODULES.html.sh (func_all_modules): Add mempcpy.
31248
31249 2003-07-14  Simon Josefsson  <jas@extundo.com>
31250
31251         * m4/mempcpy.m4: New file.
31252
31253 2003-07-14  Simon Josefsson  <jas@extundo.com>
31254
31255         * lib/mempcpy.h: New file.
31256         * lib/mempcpy.c: New file.
31257
31258 2003-07-14  Paul Eggert  <eggert@twinsun.com>
31259
31260         * modules/getdate, modules/posixtm: Depend on mktime.
31261
31262 2003-07-14  Paul Eggert  <eggert@twinsun.com>
31263
31264         * lib/ceill.c, expl.c, floorl.c, frexpl.c, ldexpl.c, mathl.h,
31265         sincosl.c, sqrtl.c, trigl.c, trigl.h, poll.c, poll_.h, mkstemp.c,
31266         unicodeio.c, unicodeio.h, unlocked-io.h:
31267         Switch from LGPL to GPL.
31268
31269 2003-07-14  Paul Eggert  <eggert@twinsun.com>
31270
31271         * lib/asnprintf.c, asprintf.c, config.charset, gettext.h,
31272         localcharset.c, localcharset.h, mkdtemp.c, printf-args.c,
31273         printf-args.h, printf-parse.c, printf-parse.h, ref-add.sin,
31274         ref-del.sin, setenv.c, unsetenv.c, vasnprintf.c, vasnprintf.h,
31275         vasprintf.c, vasprintf.h: Regenerate.  These files are now being
31276         updated automatically by ../config/srclist-update.  This changes
31277         their license from LPGL to GPL.
31278
31279 2003-07-14  Paul Eggert  <eggert@twinsun.com>
31280
31281         * config/srclist.txt: Add tons more gettext files.  $GETTEXT is now
31282         assumed to refer to the root of the most recent stable gettext version.
31283         * config/srclistvars.sh: Add defaults for eggert.
31284         * config/srclist-update: Convert LGPL to GPL in shell scripts, too.
31285         Match "This program" as well as "The program".  This is needed
31286         for gettext.
31287
31288 2003-07-14  Jim Meyering  <jim@meyering.net>
31289
31290         Don't emit diagnostics.  Let callers do that.
31291         * lib/save-cwd.c: Don't include "error.h".
31292         (save_cwd): Don't call error.  Ensure that errno is valid
31293         when returning nonzero.
31294
31295         * lib/save-cwd.h (restore_cwd): Update prototype.
31296         * lib/save-cwd.c (restore_cwd): Remove two parameters.
31297         Simplify.  Don't call error upon failure.  Let callers do that.
31298         (save_cwd): Mention that Irix 5.3 has the same problem as SunOS 4
31299         when auditing is enabled.  But don't bother updating the #if.
31300
31301 2003-07-11  Alexandre Duret-Lutz  <adl@gnu.org>
31302
31303         * lib/obstack.h (__INT_TO_PTR): Revert change of 2003-03-13;
31304         it breaks C++ compilation.
31305         [!__GNUC__ || !__STDC__] (obstack_finish): Cast result to void*.
31306
31307 2003-07-10  Simon Josefsson  <jas@extundo.com>
31308
31309         * modules/strchrnul (Makefile.am): Add strchrnul.h.
31310
31311 2003-07-10  Jim Meyering  <jim@meyering.net>
31312
31313         * m4/clock_time.m4: Remove trailing blank.
31314         * m4/intmax_t.m4: Likewise.
31315
31316 2003-07-10  Jim Meyering  <jim@meyering.net>
31317
31318         * lib/vasnprintf.c: Remove trailing blanks.
31319         Make cpp indentation consistent.
31320
31321 2003-07-09  Paul Eggert  <eggert@twinsun.com>
31322
31323         * lib/alloca_.h, euidaccess.c, getpass.c, memrchr.c, obstack.h,
31324         posixver.c, strftime.c, strnlen.c, strverscmp.c:
31325         Switch from LGPL to GPL.
31326
31327 2003-07-09  Paul Eggert  <eggert@twinsun.com>
31328
31329         * config/srclist.txt: Sort sublists.  Add
31330         $LIBCSRC/sysdeps/generic/strtoul.c. In comments, add more libc files
31331         that differ from gnulib for one reason or another; we'd like this list
31332         to be smaller but for now let's document what we have.
31333
31334 2003-07-08  Paul Eggert  <eggert@twinsun.com>
31335
31336         * config/srclist-update: Port to POSIX 1003.1-2001 hosts by avoiding
31337         the use of GNU extensions.  Change "x=`eval echo $x`" to the shorter
31338         and sweeter "eval x=$x".
31339         * config/srclist.txt: Get lib/argp* from glibc.
31340
31341 2003-07-07  Paul Eggert  <eggert@twinsun.com>
31342
31343         * lib/mktime.c: Fix some boundary cases and remove need for floating
31344         point.
31345
31346         Issue a compile-time diagnostic if time_t is floating point, or if
31347         two's complement arithmetic is not in effect, or if arithmetic
31348         right shift does not propagate the sign.  These assumptions were
31349         all in the original code but they weren't checked.
31350
31351         (TIME_T_MIDPOINT, verify): New macros.
31352         (__isleap): Remove; it has integer overflow problems.
31353         (leapyear): New function, without those problems.
31354         (ydhms_tm_diff): Remove; splitting into two parts.
31355         (ydhms_diff): New function, containing the arithmetic part of
31356         the old ydhms_tm_diff function.  Issue a compile-time
31357         diagnostic if we are not using C99 integer division.
31358         Avoid casts when possible.
31359         (guess_time_tm): New function, containing the checking part of
31360         the old ydhms_tm_diff function.  Return the new value, rather than
31361         the difference between it and the old.  Accept a new argument T
31362         so that *T specifies the old value.  Check for overflow in the result.
31363
31364         (__mktime_internal): Use a time_t offset, not a long int offset.
31365         This undoes the 2003-06-04 change, which is no longer needed now
31366         that we have better overflow checking.
31367         (localtime_offset): Likewise.
31368
31369         (__mktime_internal): Avoid harmful overflow on hosts where time_t
31370         and long are 64-bit but int is only 32-bit.
31371         (ydhms_diff): Use long int to store year1 and yday1.
31372         Issue a compile-time diagnostic if long int is not wide enough.
31373
31374         (__mktime_internal): Use long int to store adjusted year and yday.
31375         Use plain C rather than preprocessor commands, if that doesn't
31376         affect efficiency.
31377         Check for overflow (and try to repair) after each probe
31378         rather than checking only at the very end.  This avoids some bugs
31379         (e.g., southern hemisphere, behind GMT, and GMT offset at minimum time
31380         does not equal GMT offset at maximum time).
31381         Use integer to check for overflow rather than floating point; this
31382         is more portable to non-IEEE hosts, and is a tad faster.
31383         When we detect that we are oscillating between two values,
31384         don't check whether tm_isdst has the requested value, since
31385         we already know the answer.  When tm_isdst has the wrong value,
31386         use a different heuristic to find the right one, based on the
31387         extreme values actually observed in practice in tz2003a,
31388         rather than the (overly optimistic) "previous 3 calendar quarters".
31389
31390         (not_equal_tm, print_tm, check_result): Use "const T" rather than
31391         "T const" to accommodate glibc style.
31392         (check_result): Use less-confusing report format.  "long" -> "long int.
31393         (main): Likewise.
31394         Don't loop if the iteration overflows time_t.
31395         Allow a negative step in the iteration.
31396
31397 2003-07-06  Karl Berry  <karl@gnu.org>
31398
31399         * config/depcomp: update from automake.
31400         * config/config.sub: update from prep.
31401
31402 2003-07-03  Karl Berry  <karl@gnu.org>
31403
31404         * config/config.guess: update from prep.
31405
31406 2003-07-01  Paul Eggert  <eggert@twinsun.com>
31407
31408         * m4/xreadlink.m4 (gl_XREADLINK): Don't check for sys/types.h, since
31409         xreadlink.c now includes it unconditionally.
31410
31411 2003-07-01  Paul Eggert  <eggert@twinsun.com>
31412
31413         * lib/xreadlink.c: Include <sys/types.h> unconditionally, instead of
31414         having it depend on HAVE_SYS_TYPES_H.
31415
31416 2003-07-01  Bruno Haible  <bruno@clisp.org>
31417
31418         * m4/ssize_t.m4 (gt_TYPE_SSIZE_T): Don't include <unistd.h>.
31419         <sys/types.h> should be sufficient.
31420         Reported by Paul Eggert.
31421
31422 2003-06-26  Karl Berry  <karl@gnu.org>
31423
31424         * config/depcomp: update from automake.
31425
31426 2003-06-26  Bruno Haible  <bruno@clisp.org>
31427
31428         * modules/human: Depend on module stdbool.
31429
31430 2003-06-25  Bruno Haible  <bruno@clisp.org>
31431
31432         * modules/readlink: New file.
31433         * modules/xreadlink: Depend on it.
31434         * MODULES.html.sh (func_all_modules): Add readlink.
31435
31436 2003-06-25  Bruno Haible  <bruno@clisp.org>
31437
31438         * m4/readlink.m4: New file.
31439
31440 2003-06-25  Bruno Haible  <bruno@clisp.org>
31441
31442         * lib/readlink.c: New file.
31443
31444 2003-06-22  Karl Berry  <karl@gnu.org>
31445
31446         * config/srclist.txt: update mkinstalldirs from automake.
31447         * config/mkinstalldirs: update.
31448
31449 2003-06-22  Bruno Haible  <bruno@clisp.org>
31450
31451         Portability to mingw32.
31452         * m4/ssize_t.m4: New file, from GNU gettext.
31453         * m4/safe-read.m4 (gl_PREREQ_SAFE_READ): Require gt_TYPE_SSIZE_T.
31454         * m4/xreadlink.m4 (gl_XREADLINK): Require gt_TYPE_SSIZE_T.
31455
31456 2003-06-22  Bruno Haible  <bruno@clisp.org>
31457
31458         * modules/safe-read: Add m4/ssize_t.m4.
31459         * modules/xreadlink: Add m4/ssize_t.m4.
31460
31461 2003-06-20  Bruno Haible  <bruno@clisp.org>
31462
31463         Assume C89, so PARAMS isn't needed.
31464         * lib/unicodeio.h (PARAMS): Remove.
31465         * lib/unicodeio.c: Don't use PARAMS.
31466
31467 2003-06-18  Karl Berry  <karl@gnu.org>
31468
31469         * config/config.{guess,sub}: update from prep.
31470
31471 2003-06-18  Jim Meyering  <jim@meyering.net>
31472
31473         Merge changes from coreutils.
31474         * lib/readutmp.c: Include <string.h> and <stdlib.h> unconditionally.
31475         Remove explicit declarations of xmalloc and realloc.
31476         Include xalloc.h.
31477         (read_utmp): Remove anachronistic cast of xmalloc.
31478
31479 2003-06-17  Paul Eggert  <eggert@twinsun.com>
31480
31481         Assume C89, so PARAMS isn't needed.
31482         * lib/backupfile.h (PARAMS): Remove.  All uses removed.
31483         * lib/closeout.h, lib/dirname.h, lib/filemode.h, lib/fsusage.h,
31484         lib/getdate.h, lib/getline.h, lib/group-member.h, lib/hard-locale.h,
31485         lib/hash.h, lib/linebuffer.h, lib/long-options.h, lib/makepath.h,
31486         lib/memcasecmp.h, lib/memcoll.h, lib/modechange.h, lib/mountlist.h,
31487         lib/path-concat.h, lib/physmem.h, lib/posixtm.h, lib/quote.h,
31488         lib/readutmp.h, lib/same.h, lib/save-cwd.h, lib/savedir.h,
31489         lib/stdio-safer.h, lib/strtoimax.c, lib/strverscmp.h,
31490         lib/unistd-safer.h, lib/version-etc.h, lib/xalloc.h, lib/xreadlink.h,
31491         lib/xstrtod.h, lib/xstrtol.h: Likewise.
31492         * lib/filemode.h, lib/hard-locale.h, lib/memcoll.h, lib/modechange.h,
31493         lib/physmem.h, lib/same.h, lib/strverscmp.h: Do not include config.h;
31494         no longer needed. Anyway, config.h should always be included before any
31495         other file.
31496
31497 2003-06-11  Simon Josefsson  <jas@extundo.com>
31498
31499         * modules/sysexits: New file.
31500         * MODULES.html.sh (func_all_modules): Add sysexits.
31501
31502 2003-06-11  Simon Josefsson  <jas@extundo.com>
31503
31504         * lib/sysexit_.h: New file.
31505
31506 2003-06-11  Derek Price  <derek@ximbiot.com>
31507
31508         * lib/stat.c [LSTAT]: Compile/use slash_aware_lstat only if it is
31509         necessary.
31510
31511 2003-06-11  Bruno Haible  <bruno@clisp.org>
31512
31513         * m4/sysexits.m4: New file.
31514
31515 2003-06-10  Simon Josefsson  <jas@extundo.com>
31516
31517         * lib/argp.h: New file, from glibc.
31518         * lib/argp-ba.c: New file, from glibc.
31519         * lib/argp-eexst.c: New file, from glibc.
31520         * lib/argp-fmtstream.c: New file, from glibc.
31521         * lib/argp-fmtstream.h: New file, from glibc.
31522         * lib/argp-fs-xinl.c: New file, from glibc.
31523         * lib/argp-help.c: New file, from glibc.
31524         * lib/argp-namefrob.h: New file, from glibc.
31525         * lib/argp-parse.c: New file, from glibc.
31526         * lib/argp-pv.c: New file, from glibc.
31527         * lib/argp-pvh.c: New file, from glibc.
31528         * lib/argp-xinl.c: New file, from glibc.
31529
31530 2003-06-10  Simon Josefsson  <jas@extundo.com>
31531
31532         * modules/strchrnul: New file.
31533
31534 2003-06-10  Simon Josefsson  <jas@extundo.com>
31535
31536         * modules/argp: New file.
31537
31538 2003-06-10  Simon Josefsson  <jas@extundo.com>
31539
31540         * m4/strchrnul.m4: New file.
31541
31542 2003-06-10  Simon Josefsson  <jas@extundo.com>
31543
31544         * lib/strchrnul.h: New file.
31545         * lib/strchrnul.c: New file.
31546
31547 2003-06-10  Bruno Haible  <bruno@clisp.org>
31548
31549         * MODULES.html.sh (func_all_modules): Add strchrnul and argp.
31550
31551 2003-06-07  Karl Berry  <karl@gnu.org>
31552
31553         * config/config.{guess,sub}: update from prep.
31554
31555 2003-06-07  Jim Meyering  <jim@meyering.net>
31556
31557         * modules/strtod: Use $(...) notation, not @...@ for
31558         AC_REPLACE'd variables.
31559         * modules/localcharset: Likewise.
31560
31561 2003-06-07  Jim Meyering  <jim@meyering.net>
31562
31563         * lib/readtokens.h: Put `Free Software Foundation, Inc.'
31564         in place of my name in the copyright comment.
31565         Remove definition and uses of __P.
31566
31567         From coreutils.
31568         * lib/stat.c: Don't declare xmalloc explicitly.
31569         Instead, include "xalloc.h".
31570         * lib/readtokens.c (readtokens): Remove anachronistic casts of xmalloc,
31571         xrealloc, and xcalloc return values.
31572         * lib/xgetcwd.c (xgetcwd): Include "xgetcwd.h".
31573         Improve comment.
31574         * lib/xgetcwd.h: Remove definition/uses of PARAMS.
31575
31576 2003-06-07  Bruno Haible  <bruno@clisp.org>
31577
31578         * modules/poll (Makefile.am): Use explicit creation rule for poll.h, to
31579         avoid AC_CONFIG_LINKS.
31580         * modules/fnmatch (Makefile.am): Use explicit creation rule for
31581         fnmatch.h, to avoid AC_CONFIG_LINKS.
31582         * modules/alloca (Makefile.am): Make creation of alloca.h Ctrl-C safe.
31583
31584 2003-06-07  Bruno Haible  <bruno@clisp.org>
31585
31586         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH, gl_FUNC_FNMATCH_POSIX,
31587         gl_FUNC_FNMATCH_GNU): Set FNMATCH_H instead of invoking
31588         AC_CONFIG_LINKS. Needed to allow for a different name of the lib
31589         directory.
31590         * m4/poll.m4 (gl_FUNC_POLL): Set POLL_H instead of invoking
31591         AC_CONFIG_LINKS. Needed to allow for a different name of the lib
31592         directory.
31593
31594 2003-06-06  Jim Meyering  <jim@meyering.net>
31595
31596         Merge from coreutils.
31597         * lib/same.c: (same_name): Declare *_basename locals to be `const'.
31598         Consolidate declarations and initializations of *_base* locals.
31599
31600         Merge from coreutils.
31601         This avoids a core dump on systems without GNU putenv,
31602         when running `env -u SOME_ALREADY_UNSET_VARIABLE'.
31603         * lib/putenv.c (__set_errno, LOCK, UNLOCK): Define.
31604         (unsetenv): New static function, from GNU libc.
31605         (rpl_putenv): Use it.
31606
31607         * lib/modechange.c: Remove trailing blanks.
31608
31609         Merge from coreutils.
31610         * lib/fsusage.c: Remove declaration of statfs.
31611         It conflicted with one from OSF/1 5.1 in <sys/mount.h>.
31612
31613         * lib/posixtm.c: Include <stdbool.h> unconditionally.
31614
31615 2003-06-06  Jim Meyering  <jim@meyering.net>
31616
31617         * lib/stdbool_.h: Renamed from stdbool.h.in.
31618
31619 2003-06-06  Jim Meyering  <jim@meyering.net>
31620             Bruno Haible  <bruno@clisp.org>
31621
31622         * modules/stdbool: Reflect renaming: stdbool.h.in -> stdbool_.h.
31623         Adjust Makefile.am snippet not to redirect directly to target.
31624         Use $(STDBOOL_H) notation, not @STDBOOL_H@ for AC_REPLACE'd variables.
31625
31626 2003-06-05  Paul Eggert  <eggert@twinsun.com>
31627
31628         * lib/mktime.c (__mktime_internal): When resolving a tm_isdst
31629         mismatch, look in future quarters as well as past.  This fixes a
31630         bug when processing fall-backwards gaps immediately after a long
31631         period of daylight-saving time.
31632
31633         * lib/mktime.c: Assume freestanding C89 or better.
31634         (HAVE_LIMITS_H): Remove.  Assume it's 1.
31635         (__P): Remove; not used.
31636         (CHAR_BIT, INT_MIN, INT_MAX): Remove; <limits.h> defines them.
31637         (mktime, not_equal_tm, print_tm, check_result,
31638         main): Use prototypes.  Use const * where appropriate.
31639         (main): Fix typo in testing code that uncovered by above changes.
31640         (Local Variables): Remove -DHAVE_LIMITS_H from compile-command.
31641
31642 2003-06-04  Paul Eggert  <eggert@twinsun.com>
31643
31644         * m4/human.m4 (gl_HUMAN): Require AM_STDBOOL_H.  Check for
31645         locale.h, localeconv.  This merges changes from coreutils.
31646
31647         * m4/mktime.m4 (AC_FUNC_MKTIME): New macro, taken from Autoconf CVS.
31648         It can be removed after the next Autoconf is released.
31649         * m4/exclude.m4 (gl_EXCLUDE): Don't check for sys/types.h; no loner
31650         needed.
31651
31652 2003-06-04  Paul Eggert  <eggert@twinsun.com>
31653
31654         * lib/mktime.c: Fix Debian bug 177940
31655         <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=177940>.
31656         (localtime_offset): Now long int, not time_t, because we want it
31657         to be guaranteed to be signed.  All uses changed.
31658         (__mktime_internal): If overflow would occur when adding offset,
31659         don't add it.
31660
31661         Merge 'human' changes from coreutils.  Rewrite to support
31662         locale-specific notations like thousands separators.
31663         * lib/human.c: Simplify authorship notice.
31664         Include human.h immediately after config.h.
31665         <sys/types.h>, <stdio.h>: Do not include; no longer needed.
31666         <limits.h>: Do not include, since human.h does.
31667         (SIZE_MAX, UINTMAX_MAX): New macros.
31668         <strings.h>: Include if HAVE_STRINGS_H, not if !HAVE_STRING_H.
31669         <locale.h>: Include if HAVE_LOCALE_H and HAVE_LOCALECONV.
31670         (HUMAN_READABLE_SUFFIX_LENGTH_MAX): New macro.
31671         (power_letter): Renamed from suffixes.
31672         (generate_suffix_backwards): Remove.
31673         (adjust_value): Now takes int style (because of human.h changes)
31674         and long double value (for greater precision on some platforms).
31675         (group_number): New function.
31676         (human_readable): Use it.  Use integer options, not enum.
31677         Put the options before the sizes in the arg list.
31678         Support all the new options.
31679         The old human_readable function has been removed;
31680         use inttostr.h instead.
31681         (human_readable, default_block_size, humblock):
31682         Use uintmax_t, not int, for block sizes.
31683         (human_readable_inexact, block_size_types): Remove.
31684         (block_size_opts): New constant.
31685         (human_options): Renamed from human_block_size, with new signature
31686         that allows block sizes up to UINTMAX_MAX.  All callers changed.
31687         * lib/human.h: Add copyright and authorship notice.
31688         Include <limits.h> and <stdbool.h> unconditionally.
31689         (PARAMS): Remove.  All uses removed.
31690         (LONGEST_HUMAN_READABLE): Add support for thousands separator.
31691         (enum human_inexact_style): Remove tag; now a nameless enum.
31692         (human_floor, human_ceiling, human_round_to_even): Now have
31693         values 2, 0, 1 rather than -1, 1, 0.
31694         (human_group_digits, human_suppress_point_zero, human_autoscale,
31695         human_base_1024, human_SI, human_B): New constants.
31696         (human_readable_inexact, human_block_size): Remove.
31697         (human_readable): Size args are now uintmax_t, not int.
31698         (human_options): New decl.
31699
31700         * lib/exclude.c: (new_exclude, add_exclude): Remove casts that are
31701         unnecessary now that we assume C89 or better.  This change
31702         imported from coreutils.
31703
31704         * lib/mktime.c (__mktime_internal): Do not reject negative timestamps
31705         arbitrarily.  This is the same patch as 2003-05-28, but it got lost
31706         in the 2003-05-30 sync from glibc.
31707
31708         .h files should stand alone, but we shouldn't include <sys/types.h>
31709         if we can get away with just <stddef.h>.
31710
31711         * lib/__fpending.h, addext.c, backupfile.c, exclude.c, getline.c,
31712         malloc.c, putenv.c, realloc.c, strcasecmp.c: Include <stddef.h>
31713         rather than <sys/types.h>, as we merely need size_t.
31714         * lib/dirname.h, memcoll.h, xalloc.h, xmemcoll.h: Include <stddef.h>,
31715         to get size_t.
31716         * lib/hash.h, linebuffer.h, readtokens.h, stdio-safer.h, version-etc.h:
31717         Include <stdio.h>, to get FILE.
31718         * lib/memcasecmp.c: Don't include <sys/types.h>, as we can assume
31719         memcasecmp.h has included <stddef.h> and all we need is size_t.
31720         * lib/memcoll.c: Include "memcoll.h", which gets us size_t and checks
31721         our interface, instead of including <sys/types.h>
31722
31723 2003-06-04  Paul Eggert  <eggert@twinsun.com>
31724
31725         * config/srclist.txt ($LIBCSRC/time/mktime.c lib gpl): Comment out for
31726         now, as glibc mktime is buggy on non-glibc systems.
31727
31728 2003-06-03  Karl Berry  <karl@gnu.org>
31729
31730         * config/config.sub: update from prep.
31731
31732 2003-06-02  Paul Eggert  <eggert@twinsun.com>
31733
31734         [from coreutils]
31735         Fix some minor time-related bugs with POSIX time arguments.
31736         Some valid time stamps were being rejected (notably -1, and
31737         time stamps before 1900 on 64-bit hosts).  And some invalid
31738         time stamps were being accepted, e.g. September 31.
31739
31740         * lib/posixtm.h (posixtime): Return bool instead of time_t, so
31741         that we can return (time_t) -1 successfully.
31742         * lib/posixtm.c: Likewise.
31743         [HAVE_STDBOOL_H]: Include <stdbool.h>.
31744         (bool, false, true) [!HAVE_STDBOOL_H]: New type.
31745         (t): Remove static var.
31746         (year, posix_time_parse): Now takes struct tm * arg to modify, instead
31747         of static var.  All uses changed.
31748         (year): Do not reject years before 1900; they can occur with
31749         64-bit time_t.
31750         (posix_time_parse): Do not check for out-of-range components;
31751         that is now the caller's responsibility, since our checks were
31752         only approximations.
31753         (posixtime): Use mktime to check for out-of-range components,
31754         since it knows them exactly.
31755         If mktime returns (time_t) -1, check whether an error actually occurred
31756         by invoking localtime on -1.
31757         (main) [TEST_POSIXTIME]: Check for input data errors, and report
31758         posixtime failures better.
31759         Improve the test data (in comments only).
31760
31761 2003-06-02  Karl Berry  <karl@gnu.org>
31762
31763         * config/mkinstalldirs (version): new variable.
31764         (--version): new option.
31765         (usage): improve message.
31766
31767 2003-05-30  Karl Berry  <karl@gnu.org>
31768
31769         * lib/mktime.c: update from libc.
31770
31771 2003-05-30  Bruno Haible  <bruno@clisp.org>
31772
31773         * modules/gettext: Add files m4/nls.m4 and m4/po.m4.
31774         * config/config.rpath: Upgrade to gettext-0.12.1.
31775
31776 2003-05-30  Bruno Haible  <bruno@clisp.org>
31777
31778         * m4/gettext.m4: Upgrade to gettext-0.12.1.
31779         * m4/nls.m4: New file, from gettext-0.12.1.
31780         * m4/po.m4: New file, from gettext-0.12.1.
31781         * m4/progtest.m4: Upgrade to gettext-0.12.1.
31782
31783 2003-05-30  Bruno Haible  <bruno@clisp.org>
31784
31785         * lib/config.charset: Upgrade to gettext-0.12.1 and libiconv-1.9.1.
31786         * lib/localcharset.h: Likewise.
31787         * lib/localcharset.c: Likewise.
31788
31789 2003-05-29  Karl Berry  <karl@gnu.org>
31790
31791         * config/config.rpath: update from gettext.
31792
31793 2003-05-28  Paul Eggert  <eggert@twinsun.com>
31794
31795         Assume the headers required for C89 freestanding compilers.
31796         * m4/backupfile.m4 (gl_BACKUPFILE): Don't check for limits.h.
31797         * m4/fsusage.m4 (gl_PREREQ_FSUSAGE_EXTRA): Likewise.
31798         * m4/human.m4 (gl_HUMAN): Likewise.
31799         * m4/pathmax.m4 (gl_PATHMAX): Likewise.
31800         * m4/rpmatch.m4 (gl_FUNC_RPMATCH): Likewise.
31801         * m4/userspec.m4 (gl_USERSPEC): Likewise.
31802         * m4/xreadlink.m4 (gl_XREADLINK): Likewise.
31803         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
31804         * m4/quote.m4 (gl_QUOTE): Don't check for stddef.h.
31805
31806 2003-05-28  Paul Eggert  <eggert@twinsun.com>
31807
31808         Assume the headers required for C89 freestanding compilers.
31809         * lib/addext.c, lib/backupfile.c, lib/fsusage.c, lib/human.c,
31810         lib/pathmax.h, lib/rpmatch.c, lib/userspec.c, lib/xreadlink.c,
31811         lib/xstrtol.c: Include <limits.h> without checking for HAVE_LIMITS_H.
31812         * lib/backupfile.c, lib/fsusage.c, lib/hash.c, lib/human.c,
31813         lib/safe-read.c, lib/userspec.c, lib/xstrtol.c (CHAR_BIT): Don't
31814         define, since <limits.h> is guaranteed to do that.
31815         * lib/fatal.c: Include <stdarg.h> without checking for __STDC__.
31816         * lib/exclude.c: Include <stdbool.h> unconditionally.
31817         * lib/tempname.c: Include <stddef.h> unconditionally.
31818         * lib/hash.c: Include <limits.h>, since we no longer define CHAR_BIT.
31819         * lib/modechange.c, rpmatch.c (NULL): Don't define, since
31820         <stddef.h> does that.
31821         * lib/quote.c: Dont include <stddef.h> or <sys/types.h>; not needed.
31822         * lib/safe-read.c (INT_MAX): Don't define, since <limits.h> does that.
31823         * lib/safe-read.c (TYPE_MINIMUM, TYPE_MAXIMUM): Remove; no longer
31824         needed.
31825         * lib/xstrtol.c: Likewise.
31826         * lib/safe-read.c: Remove TYPE_SIGNED; no longer needed.
31827         * lib/savedir.c: Include <stddef.h> instead of defining NULL.
31828
31829         * lib/addext.c (addext): Use assignment rather than cast, to avoid
31830         warnings on some platforms.
31831
31832         * lib/mktime.c (__mktime_internal): Do not reject negative timestamps
31833         arbitrarily.
31834
31835 2003-05-26  Jim Meyering  <jim@meyering.net>
31836
31837         Merge in a change from coreutils:
31838         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Test the cache variable, not one
31839         that is guaranteed to be `no'.  Use `no_such_member' to indicate
31840         that condition, rather than `-1' which is slightly misleading.
31841         Change the name of the cache variable to have the gl_ prefix.
31842         Prompted by a patch from Richard Dawe for DJGPP.
31843
31844 2003-05-24  Karl Berry  <karl@gnu.org>
31845
31846         * config/config.guess: update from prep.
31847
31848 2003-05-22  Karl Berry  <karl@gnu.org>
31849
31850         * gnulib-tool (func_usage): =LIBRARY not =libRARY in help msg.
31851
31852 2003-05-20  Karl Berry  <karl@gnu.org>
31853
31854         * config/config.guess: update from prep.
31855
31856 2003-05-18  Karl Berry  <karl@gnu.org>
31857
31858         * config/srclistvars.sh (TEXMF): use TEXMFROOT instead, since TEXMF
31859         might actually be set by the user.
31860
31861         * config/depcomp, install-sh, mdate-sh: update from automake.
31862
31863 2003-05-17  Bruno Haible  <bruno@clisp.org>
31864
31865         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Fix a quoting bug leading to an
31866         invalid expansion for AC_EGREP_CPP.
31867         * m4/strtoimax.m4 (gl_FUNC_STRTOIMAX): Likewise.
31868         * m4/strtoumax.m4 (gl_FUNC_STRTOUMAX): Likewise.
31869         Suggested by Akim Demaille <akim@epita.fr> in
31870         http://mail.gnu.org/archive/html/bug-autoconf/2003-05/threads.html
31871
31872 2003-05-12  Jim Meyering  <jim@meyering.net>
31873
31874         * lib/strftime.c (my_strftime): Let the `-' (no-pad) flag affect
31875         the space-padded-by-default conversion specifiers, %e, %k, %l.
31876
31877 2003-05-12  Bruno Haible  <bruno@clisp.org>
31878
31879         * lib/linebreak.c (iconv_string_length): Don't return -1 just because
31880         the string is longer than 4 KB.
31881
31882 2003-05-11  Karl Berry  <karl@gnu.org>
31883
31884         * config/config.{guess,sub}: update from prep.
31885
31886 2003-05-09  Bruno Haible  <bruno@clisp.org>
31887
31888         * modules/error: Add m4/strerror_r.m4 to file list.
31889
31890 2003-05-03  Bruno Haible  <bruno@clisp.org>
31891
31892         Upgrade to Unicode-4.0.
31893         * lib/linebreak.c (nonspacing_table_data): Change width of U+00AD,
31894         U+0350..U+0357, U+035D..U+035F, U+0600..U+0603, U+0610..U+0615,
31895         U+0656..U+0658, U+0A01, U+0AE2..U+0AE3, U+0CBC, U+17B4..U+17B5,
31896         U+17DD, U+1920..U+1922, U+1927..U+192B, U+1932, U+1939..U+193B
31897         from 1 to 0. Change width of U+0CBF, U+0CC6, U+180E from 0 to 1.
31898         (uc_width): Change width of U+4DC0..U+4DFF from 2 to 1. Change width
31899         of U+2A6D7..U+2F7FF, U+2FA1E..U+2FFFD, U+30000..U+3FFFD from 1 to 2.
31900         Change width of U+E0100..U+E01EF from 1 to 0.
31901
31902 2003-04-25  Jim Meyering  <jim@meyering.net>
31903
31904         * lib/copy-file.c (copy_file_preserving): Declare buf_size to be
31905         of type size_t, not int.
31906
31907 2003-04-25  Bruno Haible  <bruno@clisp.org>
31908
31909         * lib/copy-file.c: Include <stddef.h>, for size_t.
31910
31911 2003-04-21  Paul Eggert  <eggert@twinsun.com>
31912
31913         * m4/error.m4 (gl_ERROR): Do not put under dynamic conditions some
31914         code which expansion is under static control.  Patch imported from
31915         Akim Demaille's patch to Bison; see
31916         <http://mail.gnu.org/archive/html/bison-patches/2003-03/msg00057.html>.
31917
31918 2003-04-14  Bruno Haible  <bruno@clisp.org>
31919
31920         * m4/error.m4 (jm_PREREQ_ERROR): Use AC_FUNC_VPRINTF.
31921
31922 2003-04-11  Jim Meyering  <jim@meyering.net>
31923
31924         Merge changes from Coreutils.
31925
31926         2003-03-22  Jim Meyering  <jim@meyering.net>
31927
31928         * lib/strftime.c (widen): Cast alloca return value to proper type.
31929
31930         2003-01-19  Ulrich Drepper  <drepper@redhat.com>
31931
31932         From GNU libc.
31933         * lib/strftime.c (my_strftime): Handle very large width
31934         specifications for numeric values correctly.  Improve checks for
31935         overflow.
31936
31937         2003-01-19  Jim Meyering  <jim@meyering.net>
31938
31939         * lib/strftime.c (widen) [COMPILE_WIDE]: Merge nearly-identical
31940         definitions.
31941         (nl_get_alt_digit) [! defined my_strftime]: Define.
31942         (my_strftime) [_NL_CURRENT]: Merge nearly-identical uses of
31943         _nl_get_alt_digit and _nl_get_walt_digit.
31944
31945         * lib/strftime.c (my_strftime): Merge in locale-related changes from
31946         libc. These changes have no effect outside of _LIBC.
31947
31948 2003-04-10  Bruno Haible  <bruno@clisp.org>
31949
31950         * modules/findprog: New file.
31951         * MODULES.html.sh (func_all_modules): Add it.
31952
31953 2003-04-10  Bruno Haible  <bruno@clisp.org>
31954
31955         * m4/findprog.m4: New file.
31956         * m4/eaccess.m4: New file.
31957
31958 2003-04-10  Bruno Haible  <bruno@clisp.org>
31959
31960         * lib/findprog.h: New file, from GNU gettext.
31961         * lib/findprog.c: New file, from GNU gettext.
31962
31963 2003-04-05  Jim Meyering  <jim@meyering.net>
31964
31965         Merge changes from Coreutils.
31966
31967         * lib/exclude.h (PARAMS): Remove definition and uses.
31968         * lib/exclude.c: Remove uses of `PARAMS'.
31969
31970         * lib/dirname.c [TEST_DIRNAME]: Update build instructions for test.
31971         Add test-cases for DOS filenames. Declare program_name.
31972         (main): Set up program_name.  Patch by Rich Dawe.
31973
31974         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Detect any
31975         error from mntctl.
31976         Use mntctl's return value to drive the entry-processing loop, since
31977         we can't rely on the value of the vmt_length member in the last
31978         entry.  On some systems doing so could result in exhausting
31979         virtual memory.  Based in part on a patch from Mike Jetzer.
31980
31981 2003-04-04  Bruno Haible  <bruno@clisp.org>
31982
31983         * modules/linebreak: New file.
31984         * MODULES.html.sh (func_all_modules): Add it.
31985
31986 2003-04-04  Bruno Haible  <bruno@clisp.org>
31987
31988         * m4/linebreak.m4: New file.
31989
31990 2003-04-04  Bruno Haible  <bruno@clisp.org>
31991
31992         * lib/linebreak.h: New file, from GNU gettext.
31993         * lib/linebreak.c: New file, from GNU gettext with slight
31994         modifications.
31995         * lib/lbrkprop.h: New file, from GNU gettext.
31996
31997 2003-04-03  Bruno Haible  <bruno@clisp.org>
31998
31999         * modules/utf8-ucs4: New file.
32000         * modules/utf16-ucs4: New file.
32001         * modules/ucs4-utf8: New file.
32002         * modules/ucs4-utf16: New file.
32003         * MODULES.html.sh (func_all_modules): Add them.
32004
32005 2003-04-03  Bruno Haible  <bruno@clisp.org>
32006
32007         * m4/utf-ucs4.m4: New file.
32008         * m4/ucs4-utf.m4: New file.
32009
32010 2003-04-03  Bruno Haible  <bruno@clisp.org>
32011
32012         * lib/utf8-ucs4.h: New file, from GNU gettext.
32013         * lib/utf16-ucs4.h: New file, from GNU gettext.
32014         * lib/ucs4-utf8.h: New file, from GNU gettext.
32015         * lib/ucs4-utf16.h: New file, from GNU gettext.
32016
32017 2003-04-02  Bruno Haible  <bruno@clisp.org>
32018
32019         * modules/binary-io: New file.
32020         * MODULES.html.sh (func_all_modules): Add it.
32021
32022 2003-04-02  Bruno Haible  <bruno@clisp.org>
32023
32024         * lib/binary-io.h: New file, from GNU gettext.
32025
32026 2003-04-01  Bruno Haible  <bruno@clisp.org>
32027
32028         * modules/pathname: New file.
32029         * MODULES.html.sh (func_all_modules): Add it.
32030
32031 2003-04-01  Bruno Haible  <bruno@clisp.org>
32032
32033         * lib/pathname.h: New file, from GNU gettext.
32034         * lib/concatpath.c: New file, from GNU gettext.
32035
32036 2003-03-30  Bruno Haible  <bruno@clisp.org>
32037
32038         * m4/copy-file.m4 (gl_COPY_FILE): Add check for chown().
32039
32040 2003-03-30  Bruno Haible  <bruno@clisp.org>
32041
32042         * lib/copy-file.c (copy_file_preserving): Don't set owner if the
32043         function chown() doesn't exist.
32044
32045 2003-03-28  Bruno Haible  <bruno@clisp.org>
32046
32047         * modules/copy-file: New file.
32048         * MODULES.html.sh (func_all_modules): Add it.
32049
32050 2003-03-28  Bruno Haible  <bruno@clisp.org>
32051
32052         * m4/copy-file.m4: New file.
32053
32054 2003-03-28  Bruno Haible  <bruno@clisp.org>
32055
32056         * lib/copy-file.h: New file, from GNU gettext.
32057         * lib/copy-file.c: New file, from GNU gettext.
32058
32059 2003-03-18  Jim Meyering  <jim@meyering.net>
32060
32061         * lib/quote.c (quote_n): Fix typo in comment.
32062
32063 2003-03-18  Bruno Haible  <bruno@clisp.org>
32064
32065         * m4/onceonly.m4: Use m4_defn instead of defn, for better error
32066         checking.
32067         * m4/onceonly_2_57.m4: Likewise.
32068
32069 2003-03-17  Bruno Haible  <bruno@clisp.org>
32070
32071         * m4/onceonly.m4: Require autoconf 2.54 or newer.
32072         (m4_quote): Remove macro.
32073         * m4/onceonly_2_57.m4: Require autoconf 2.54 or newer.
32074
32075 2003-03-14  Jim Meyering  <jim@meyering.net>
32076
32077         Merge changes from Coreutils.
32078         * lib/obstack.h (obstack_object_size): Declare temporary, __o,
32079         to be const, in order to avoid warnings.
32080         (obstack_room): Likewise.
32081         (obstack_empty_p): Likewise.
32082
32083 2003-03-14  Bruno Haible  <bruno@clisp.org>
32084
32085         * m4/onceonly_2_57.m4 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE,
32086         AC_CHECK_DECLS_ONCE): Quote AC_FOREACH variable-expansions properly.
32087
32088 2003-03-13  Paul Eggert  <eggert@twinsun.com>
32089
32090         Merge changes from Bison.
32091         * lib/obstack.h: (__INT_TO_PTR) [__STDC__]: Cast result to
32092         (void *) to avoid diagnostic with native c89 on SGI IRIX 6.5
32093         when compiling Bison 1.875's `bitset bset = obstack_alloc
32094         (bobstack, bytes);'.  Problem reported by Nelson H. F. Beebe.
32095         * lib/hash.c: Include <stdbool.h> unconditionally.
32096
32097 2003-03-13  Paul Eggert  <eggert@twinsun.com>
32098
32099         * m4/onceonly.m4 (m4_quote): New macro.
32100         (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE, AC_CHECK_DECLS_ONCE):
32101         Quote AC_FOREACH variable-expansions properly.
32102
32103 2003-03-13  Paul Eggert  <eggert@twinsun.com>
32104
32105         * doc/COPYING.DOC, fdl.texi: Sync with latest FSF version.
32106
32107 2003-03-09  Paul Eggert  <eggert@twinsun.com>
32108
32109         * lib/argmatch.c (EXIT_FAILURE): Define if the system doesn't.
32110         Reported by Bruce Becker; see:
32111         http://mail.gnu.org/archive/html/bug-bison/2003-03/msg00017.html
32112
32113 2003-03-03  Paul Eggert  <eggert@twinsun.com>
32114             Bruno Haible  <bruno@clisp.org>
32115
32116         * lib/mbswidth.h: Include <wchar.h>. Needed for UnixWare 7.1.1.
32117         Reported by John Hughes, see
32118         http://mail.gnu.org/archive/html/bug-bison/2003-02/msg00030.html
32119
32120 2003-02-20  Bruno Haible  <bruno@clisp.org>
32121
32122         * MODULES.html.sh (func_all_modules): Add poll.
32123
32124 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
32125
32126         * modules/poll: New file.
32127
32128 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
32129
32130         * lib/poll_.h: New file.
32131         * lib/poll.c: New file.
32132
32133 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
32134
32135         * m4/poll.m4: New file.
32136
32137 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
32138
32139         * modules/mathl: New file.
32140
32141 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
32142
32143         * lib/mathl.h: New file.
32144         * lib/acosl.c: New file.
32145         * lib/asinl.c: New file.
32146         * lib/atanl.c: New file.
32147         * lib/ceill.c: New file.
32148         * lib/cosl.c: New file.
32149         * lib/expl.c: New file.
32150         * lib/floorl.c: New file.
32151         * lib/frexpl.c: New file.
32152         * lib/ldexpl.c: New file.
32153         * lib/logl.c: New file.
32154         * lib/sincosl.c: New file.
32155         * lib/sinl.c: New file.
32156         * lib/sqrtl.c: New file.
32157         * lib/tanl.c: New file.
32158         * lib/trigl.c: New file.
32159         * lib/trigl.h: New file.
32160
32161 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
32162
32163         * m4/mathl.m4: New file.
32164
32165 2003-02-18  Bruno Haible  <bruno@clisp.org>
32166
32167         * MODULES.html.sh (func_all_modules): Add mathl.
32168
32169 2003-02-17  Bruno Haible  <bruno@clisp.org>
32170
32171         * modules/mkdtemp: New module.
32172         * MODULES.html.sh (func_all_modules): Add it.
32173
32174 2003-02-17  Bruno Haible  <bruno@clisp.org>
32175
32176         * m4/mkdtemp.m4: New file, from GNU gettext with modifications.
32177
32178 2003-02-17  Bruno Haible  <bruno@clisp.org>
32179
32180         * lib/mkdtemp.h: New file, from GNU gettext.
32181         * lib/mkdtemp.c: New file, from GNU gettext.
32182
32183 2003-02-02  Jim Meyering  <jim@meyering.net>
32184
32185         * m4/regex.m4 (jm_INCLUDED_REGEX): Detect broken re_search in
32186         e.g. glibc-2.2.93.
32187
32188 2003-01-31  Bruno Haible  <bruno@clisp.org>
32189
32190         * m4/rename.m4 (vb_FUNC_RENAME): Add a redirection from 'rename' to
32191         'rpl_rename'.
32192         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Add a redirection from 'strnlen' to
32193         'rpl_strnlen'.
32194         * m4/strtod.m4 (gl_FUNC_STRTOD): Add a redirection from 'strtod' to
32195         'rpl_strtod'.
32196         * m4/utime.m4 (jm_FUNC_UTIME): Add a redirection from 'utime' to
32197         'rpl_utime'.
32198
32199 2003-01-31  Bruno Haible  <bruno@clisp.org>
32200
32201         * lib/rename.c: #undef rename before defining rpl_rename.
32202         * lib/strnlen.c: #undef strnlen, define rpl_strnlen instead of strnlen.
32203
32204 2003-01-30  Bruno Haible  <bruno@clisp.org>
32205
32206         * modules/vasnprintf, modules/vasprintf: New modules.
32207         * MODULES.html.sh (func_all_modules): Add them.
32208
32209 2003-01-30  Bruno Haible  <bruno@clisp.org>
32210
32211         * m4/signed.m4: New file, from GNU gettext.
32212         * m4/longdouble.m4: New file, from GNU gettext.
32213         * m4/wchar_t.m4: New file, from GNU gettext.
32214         * m4/wint_t.m4: New file, from GNU gettext.
32215         * m4/vasnprintf.m4: New file.
32216         * m4/vasprintf.m4: New file.
32217
32218 2003-01-30  Bruno Haible  <bruno@clisp.org>
32219
32220         * lib/printf-args.h: New file, from GNU gettext.
32221         * lib/printf-args.c: New file, from GNU gettext.
32222         * lib/printf-parse.h: New file, from GNU gettext.
32223         * lib/printf-parse.c: New file, from GNU gettext.
32224         * lib/vasnprintf.h: New file, from GNU gettext.
32225         * lib/vasnprintf.c: New file, from GNU gettext.
32226         * lib/asnprintf.c: New file, from GNU gettext.
32227         * lib/vasprintf.h: New file, from GNU gettext with modifications.
32228         * lib/vasprintf.c: New file, from GNU gettext.
32229         * lib/asprintf.c: New file, from GNU gettext.
32230
32231 2003-01-29  Bruno Haible  <bruno@clisp.org>
32232
32233         * modules/stpncpy: New module.
32234         * MODULES.html.sh (func_all_modules): Add it.
32235
32236 2003-01-29  Bruno Haible  <bruno@clisp.org>
32237
32238         * m4/stpncpy.m4: New file.
32239
32240 2003-01-29  Bruno Haible  <bruno@clisp.org>
32241
32242         * lib/stpncpy.h: New file, from GNU gettext with modifications.
32243         * lib/stpncpy.c: New file, from GNU gettext with modifications.
32244
32245 2003-01-28  Bruno Haible  <bruno@clisp.org>
32246
32247         * modules/c-ctype: New module.
32248         * MODULES.html.sh (func_all_modules): Add it.
32249
32250 2003-01-28  Bruno Haible  <bruno@clisp.org>
32251
32252         * lib/c-ctype.h: New file, from GNU gettext, with changes suggested by
32253         Paul Eggert.
32254         * lib/c-ctype.c: New file, from GNU gettext, with changes suggested by
32255         Paul Eggert.
32256
32257 2003-01-27  Bruno Haible  <bruno@clisp.org>
32258
32259         * modules/xsetenv: New module.
32260         * MODULES.html.sh (func_all_modules): Add it.
32261
32262 2003-01-27  Bruno Haible  <bruno@clisp.org>
32263
32264         * lib/xsetenv.h: New file, from GNU gettext.
32265         * lib/xsetenv.c: New file, from GNU gettext.
32266
32267 2003-01-23  Jim Meyering  <jim@meyering.net>
32268
32269         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Correct typo: s/-1/no/ that kept this
32270         from working on systems without dirfd (at least Irix and OSF1/Tru64).
32271
32272 2003-01-23  Bruno Haible  <bruno@clisp.org>
32273
32274         * modules/minmax: New module.
32275         * MODULES.html.sh (func_all_modules): Add it.
32276
32277 2003-01-23  Bruno Haible  <bruno@clisp.org>
32278
32279         * lib/minmax.h: New file, from GNU gettext, with comments from Paul
32280         Eggert.
32281
32282 2003-01-22  Bruno Haible  <bruno@clisp.org>
32283
32284         * modules/exit: New module.
32285         * MODULES.html.sh (func_all_modules): Add it.
32286
32287 2003-01-22  Bruno Haible  <bruno@clisp.org>
32288
32289         * lib/exit.h: New file, from GNU gettext.
32290
32291 2003-01-19  Bruno Haible  <bruno@clisp.org>
32292
32293         * gnulib-tool: Recognize option --extract-maintainer.
32294         (func_get_maintainer): New function.
32295         * modules/*: Add Maintainer entry.
32296
32297 2003-01-16  Jim Meyering  <jim@meyering.net>
32298
32299         * m4/regex.m4: The `regex' struct is both input and output.
32300         Initialize it before each use.  Patch by Tim Waugh.
32301
32302 2003-01-16  Bruno Haible  <bruno@clisp.org>
32303
32304         * MODULES.html.sh: Add a table of contents. Add the module name as
32305         leftmost column. Add hyperlinks.
32306
32307 2003-01-15  Bruno Haible  <bruno@clisp.org>
32308
32309         * m4/md5.m4 (gl_MD5): Require AC_C_INLINE.
32310
32311 2003-01-15  Bruno Haible  <bruno@clisp.org>
32312
32313         * m4/longlong.m4 (jm_AC_TYPE_LONG_LONG): Also test the LL suffix.
32314         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Also test the ULL
32315         suffix.
32316
32317 2003-01-15  Bruno Haible  <bruno@clisp.org>
32318
32319         * m4/alloca.m4 (gl_FUNC_ALLOCA): Invoke AC_EGREP_CPP prerequisites.
32320
32321 2003-01-15  Bruno Haible  <bruno@clisp.org>
32322
32323         * lib/stpcpy.h (stpcpy): Use ANSI C function declarations.
32324         * lib/strcase.h (strcasecmp, strncasecmp): Likewise.
32325
32326 2003-01-14  Jim Meyering  <jim@meyering.net>
32327
32328         * lib/same.c (same_name): Tweak a comment.
32329
32330 2003-01-14  Bruno Haible  <bruno@clisp.org>
32331
32332         * lib/same.c (same_name): Reorder tests so as to avoid calling stat()
32333         when a string comparison is sufficient.
32334
32335 2003-01-14  Bruno Haible  <bruno@clisp.org>
32336
32337         * lib/readtokens.c (readtoken): Cast character to 'unsigned char', not
32338         'unsigned int'.
32339
32340 2003-01-14  Bruno Haible  <bruno@clisp.org>
32341
32342         * lib/hash-pjw.c: Add comment about low quality of this function.
32343
32344 2003-01-13  Bruno Haible  <bruno@clisp.org>
32345
32346         * modules/stpcpy: Distribute lib/stpcpy.h.
32347         * modules/setenv: Depend on alloca. Distribute lib/setenv.h.
32348
32349 2003-01-13  Bruno Haible  <bruno@clisp.org>
32350
32351         * modules/*: Add a description.
32352         * modules/strpbrk: Fix Makefile.am snippet.
32353         * modules/strtoimax: Fix dependencies.
32354         * modules/strtoumax: Likewise.
32355
32356 2003-01-13  Bruno Haible  <bruno@clisp.org>
32357
32358         * gnulib-tool (func_create_testdir): Substitute lib_OBJECTS.
32359         * modules/alloca (Makefile.am): All object files depend on alloca.h.
32360         * modules/stdbool (Makefile.am): All object files depend on stdbool.h.
32361
32362 2003-01-13  Bruno Haible  <bruno@clisp.org>
32363
32364         * gnulib-tool (func_create_testdir): Store config/* files in the main
32365         directory.
32366         * config.rpath: Move to ...
32367         * config/config.rpath: ... here.
32368         * modules/gettext: Contains config/config.rpath, not config.rpath.
32369         * modules/iconv: Likewise.
32370
32371 2003-01-12  Paul Eggert  <eggert@twinsun.com>
32372
32373         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
32374         to avoid collisions with libcurses and libreadline.
32375
32376         * m4/getstr.m4: Remove.
32377         * m4/getline.m4 (gl_PREREQ_GETLINE): Require AC_HEADER_STDC.
32378
32379 2003-01-12  Paul Eggert  <eggert@twinsun.com>
32380
32381         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
32382         to avoid collisions with libcurses and libreadline.
32383
32384         * lib/Makefile.am (libfetish_a_SOURCES): Remove getstr.c, getstr.h.
32385         * lib/getstr.h, getstr.c: Remove.
32386         * lib/getline.c: Include "getline.h", to check interface.
32387         Move body of old getstr.c here: this defines MIN_CHUNK and
32388         declares getdelim2, which is renamed from getstr.
32389         (getline, getdelim): Adjust to renaming of getstr -> getdelim2.
32390
32391         * lib/linebuffer.c (readlinebuffer): Renamed from readline.
32392         All uses changed.
32393         * lib/linebuffer.h: Likewise.
32394         (readline): Remove backward-compatibility macro.
32395
32396 2003-01-12  Paul Eggert  <eggert@twinsun.com>
32397
32398         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
32399         to avoid collisions with libcurses and libreadline.
32400         * getstr: Remove.
32401         * MODULES.html.sh: Remove getstr.
32402         * modules/getline: Depend on unlocked-io, not getstr.
32403
32404 2003-01-12  Jim Meyering  <jim@meyering.net>
32405
32406         * lib/makepath.c: Don't test HAVE_ERRNO_H.  It's not necessary.
32407
32408 2003-01-10  Bruno Haible  <bruno@clisp.org>
32409
32410         * modules/alloca: Change Makefile.am requirements. Simplify Include
32411         requirements. Add lib/alloca_.h to file list.
32412
32413 2003-01-10  Bruno Haible  <bruno@clisp.org>
32414
32415         * m4/alloca.m4 (gl_FUNC_ALLOCA): Also define ALLOCA_H.
32416
32417 2003-01-10  Bruno Haible  <bruno@clisp.org>
32418
32419         * lib/alloca_.h: New file.
32420         * lib/getdate.y: Unconditionally include alloca.h.
32421         * lib/makepath.c: Likewise.
32422         * lib/setenv.c: Likewise.
32423         * lib/userspec.c: Likewise.
32424
32425 2003-01-09  Karl Berry  <karl@gnu.org>
32426
32427         * MODULES.html.sh: include `dirname $0` in PATH, to find
32428         gnulib-tool.
32429
32430 2003-01-09  Bruno Haible  <bruno@clisp.org>
32431
32432         * modules/stdbool: Change configure.ac, Makefile.am requirements.
32433         Simplify Include requirements. Add lib/stdbool.h.in to file list.
32434
32435 2003-01-09  Bruno Haible  <bruno@clisp.org>
32436
32437         * m4/stdbool.m4 (AM_STDBOOL_H): New macro.
32438
32439 2003-01-09  Bruno Haible  <bruno@clisp.org>
32440
32441         * lib/stdbool.h.in: New file.
32442
32443 2003-01-09  Bruno Haible  <bruno@clisp.org>
32444
32445         * gnulib-tool (func_all_modules): Ignore files ending in ~.
32446         * MODULES.html.sh: Likewise.
32447
32448 2003-01-08  Jim Meyering  <jim@meyering.net>
32449
32450         * lib/full-write.c: Undefine and define-away `const' after inclusion
32451         of errno.h, not before.  Suggestion from Bruno Haible.
32452
32453 2003-01-08  Bruno Haible  <bruno@clisp.org>
32454
32455         * modules/full-read: Depend on full-write.
32456
32457 2003-01-08  Bruno Haible  <bruno@clisp.org>
32458
32459         * lib/safe-read.c: Include specification header first, to ensure its
32460         selfcontainedness.
32461         * lib/full-write.c: Likewise.
32462
32463 2003-01-07  Jim Meyering  <jim@meyering.net>
32464
32465         * lib/full-write.c: Rework so that it may serve to define full_read,
32466         too.
32467         * lib/full-read.c: Simply #define FULL_READ and include full-write.c.
32468
32469 2003-01-07  Bruno Haible  <bruno@clisp.org>
32470
32471         * lib/strtoimax.c: Include <stdint.h> as an alternative to
32472         <inttypes.h>.
32473         * lib/xstrtol.h: Likewise.
32474         * lib/xstrtoimax.c: Likewise.
32475         * lib/xstrtoumax.c: Likewise.
32476         * lib/human.h: Likewise.
32477
32478         * lib/tempname.c: Include <inttypes.h> too. Avoids a compilation error
32479         on systems that have <inttypes.h> but not <stdint.h>.
32480
32481 2003-01-07  Bruno Haible  <bruno@clisp.org>
32482
32483         * MODULES.html.sh: Add copyright notice.
32484         (missed_files): Omit CVS directory entries.
32485         (func_module): Make it work with sed-3.02.
32486         * MODULES.txt: Remove file.
32487
32488 2003-01-06  Jim Meyering  <jim@meyering.net>
32489
32490         * lib/version-etc.c: Update year in translatable copyright string.
32491
32492 2003-01-03  Karl Berry  <karl@gnu.org>
32493
32494         * config/config.{guess,sub}: update from prep.
32495
32496 2003-01-02  Karl Berry  <karl@gnu.org>
32497
32498         * doc/COPYING.DOC: belatedly updated to 1.2.
32499
32500 2003-01-01  Karl Berry  <karl@gnu.org>
32501
32502         * gnulib-tool (func_verify_module): report module name $module in
32503         error message, not $1.
32504         * gnulib-tool (create-testdir): don't complain if destdir couldn't
32505         be created, only if it doesn't exist.
32506         * gnulib-tool (last_checkin_date): don't expand the $Date here.
32507
32508 2002-12-31  Paul Eggert  <eggert@twinsun.com>
32509
32510         * m4/memcoll.m4 (gl_MEMCOLL): Require AC_FUNC_MEMCMP.
32511
32512 2002-12-31  Paul Eggert  <eggert@twinsun.com>
32513
32514         * lib/memcoll.c (memcoll): Fall back on a simple algorithm using
32515         memcmp if strcoll doesn't work.
32516
32517 2002-12-31  Bruno Haible  <bruno@clisp.org>
32518
32519         * lib/utime.c (utime_null): No need to call ftruncate if the file was
32520         nonempty.
32521
32522 2002-12-31  Bruno Haible  <bruno@clisp.org>
32523
32524         * lib/memcoll.c (STRCOLL): New macro.
32525         (memcoll): Use it.
32526
32527 2002-12-31  Bruno Haible  <bruno@clisp.org>
32528
32529         * lib/localcharset.h: New file.
32530         * lib/localcharset.c: Include it.
32531         * lib/unicodeio.c: Likewise.
32532
32533 2002-12-31  Bruno Haible  <bruno@clisp.org>
32534
32535         * lib/getstr.h (getstr): Define, to avoid clash with libcurses.
32536         * lib/linebuffer.h (readline): Define, to avoid clash with libreadline.
32537
32538 2002-12-31  Bruno Haible  <bruno@clisp.org>
32539
32540         * lib/getline.h: Include <stddef.h>, for size_t.
32541
32542         * lib/unicodeio.h: Include <stddef.h>, for size_t.
32543         * lib/unicodeio.c: Don't include <stddef.h>.
32544
32545 2002-12-31  Bruno Haible  <bruno@clisp.org>
32546
32547         * lib/getdate.y (get_date): Test HAVE_STRUCT_TM_TM_ZONE, not
32548         HAVE_TM_ZONE.
32549
32550 2002-12-24  Karl Berry  <karl@gnu.org>
32551
32552         * config/config.guess: update from prep.
32553
32554 2002-12-24  Bruno Haible  <bruno@clisp.org>
32555
32556         General infrasructure.
32557         * m4/README: Rewritten.
32558         * m4/onceonly.m4: New file.
32559         * m4/onceonly_2_57.m4: New file.
32560
32561         Module atexit.
32562         * m4/atexit.m4: New file.
32563
32564         Module strtod.
32565         * m4/strtod.m4: New file.
32566
32567         Module strtol.
32568         * m4/strtol.m4: New file.
32569
32570         Module strtoul.
32571         * m4/strtoul.m4: New file.
32572
32573         Module memchr.
32574         * m4/memchr.m4: New file.
32575
32576         Module memcmp.
32577         * m4/memcmp.m4 (gl_PREREQ_MEMCMP): New macro.
32578         (jm_FUNC_MEMCMP): Invoke it.
32579
32580         Module memcpy.
32581         * m4/memcpy.m4: New file.
32582
32583         Module memmove.
32584         * m4/memmove.m4: New file.
32585
32586         Module memset.
32587         * m4/memset.m4: New file.
32588
32589         Module strcspn.
32590         * m4/strcspn.m4: New file.
32591
32592         Module strpbrk.
32593         * m4/strpbrk.m4: New file.
32594
32595         Module strstr.
32596         * m4/strstr.m4: New file.
32597
32598         Module strerror.
32599         * m4/strerror.m4: New file.
32600
32601         Module mktime.
32602         * m4/mktime.m4: Renamed from jm-mktime.m4.
32603         (gl_PREREQ_MKTIME): New macro.
32604         (gl_FUNC_MKTIME): Renamed from jm_FUNC_MKTIME. Invoke gl_PREREQ_MKTIME.
32605
32606         Module malloc.
32607         * m4/malloc.m4 (gl_PREREQ_MALLOC): New macro.
32608         (jm_FUNC_MALLOC): Use AC_FUNC_MALLOC. Invoke gl_PREREQ_MALLOC.
32609         Don't define HAVE_DONE_WORKING_MALLOC_CHECK, since nothing uses it.
32610
32611         Module realloc.
32612         * m4/realloc.m4 (gl_PREREQ_REALLOC): New macro.
32613         (jm_FUNC_REALLOC): Use AC_FUNC_REALLOC. Invoke gl_PREREQ_REALLOC.
32614         Don't define HAVE_DONE_WORKING_REALLOC_CHECK, since nothing uses it.
32615
32616         Module strftime.
32617         * m4/tm_gmtoff.m4: New file, extracted from strftime.m4.
32618         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Use AC_FUNC_STRFTIME.
32619         Don't test for bcopy (we are not emacs). Invoke AC_TYPE_MBSTATE_T and
32620         gl_TM_GMTOFF.
32621         (_jm_STRFTIME_PREREQS, jm_FUNC_GNU_STRFTIME): Use onceonly macros.
32622
32623         Module xalloc.
32624         * m4/xalloc.m4: New file.
32625
32626         Module alloca.
32627         * m4/alloca.m4: New file.
32628
32629         Module putenv.
32630         * m4/putenv.m4 (gl_PREREQ_PUTENV): New macro.
32631         (jm_FUNC_PUTENV): Invoke it.
32632
32633         Module setenv.
32634         * m4/setenv.m4 (gt_FUNC_SETENV): New macro.
32635         (gt_CHECK_VAR_DECL): Fix quoting error that led to infinite loop in m4
32636         when invoked twice.
32637         (gt_PREREQ_SETENV, gt_PREREQ_UNSETENV): New macros, replacing old
32638         gt_FUNC_SETENV.
32639
32640         Module memrchr.
32641         * m4/memrchr.m4: New file.
32642
32643         Module stpcpy.
32644         * m4/stpcpy.m4: New file.
32645
32646         Module strcase.
32647         * m4/strcase.m4: New file.
32648
32649         Module strdup.
32650         * m4/strdup.m4: New file.
32651
32652         Module strnlen.
32653         * m4/strnlen.m4: New file.
32654
32655         Module strndup.
32656         * m4/strndup.m4: New file.
32657
32658         Module xstrtod.
32659         * m4/xstrtod.m4: New file.
32660
32661         Module xstrtol.
32662         * m4/xstrtol.m4: New file.
32663
32664         Module getdate.
32665         * m4/getdate.m4: New file.
32666
32667         Module unlocked-io.
32668         * m4/unlocked-io.m4: Renamed from jm-glibc-io.m4.
32669         (jm_FUNC_GLIBC_UNLOCKED_IO): Invoke AC_GNU_SOURCE. Use onceonly macros.
32670         * m4/jm-glibc-io.m4n: Remove file.
32671
32672         Module long-options.
32673         * m4/long-options.m4: New file.
32674
32675         Module md5.
32676         * m4/md5.m4: New file.
32677
32678         Module sha.
32679         * m4/sha.m4: New file.
32680
32681         Module getstr.
32682         * m4/getstr.m4: New file.
32683
32684         Module getline.
32685         * m4/getline.m4 (gl_PREREQ_GETLINE): New macro.
32686         (AM_FUNC_GETLINE): Invoke AC_GNU_SOURCE. Use <stdlib.h>, not
32687         <sys/types.h>, for size_t. Use the function name gnu_getline, not
32688         simply getline. Infoke gl_PREREQ_GETLINE.
32689
32690         Module obstack.
32691         * m4/obstack.m4: New file.
32692
32693         Module hash.
32694         * m4/hash.m4: New file.
32695
32696         Module readtokens.
32697         * m4/readtokens.m4: New file.
32698
32699         Module strverscmp.
32700         * m4/strverscmp.m4: New file.
32701
32702         Module stdbool.
32703         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Add test for _Bool. Needed for
32704         OSF/1.
32705
32706         Module strtoll.
32707         * m4/strtoll.m4: New file.
32708
32709         Module strtoull.
32710         * m4/strtoull.m4: New file.
32711
32712         Module strtoimax.
32713         * m4/strtoimax.m4: New file.
32714
32715         Module strtoumax.
32716         * m4/strtoumax.m4: New file.
32717
32718         Module xstrtoimax.
32719         * m4/xstrtoimax.m4 (jm_XSTRTOIMAX): Renamed from
32720         jm_AC_PREREQ_XSTRTOIMAX.
32721         Moved the strtol prerequisites to strtol.m4.
32722         Moved the strtoll prerequisites to strtoll.m4.
32723         Moved the strtoimax prerequisites to strtoimax.m4.
32724
32725         Module xstrtoumax.
32726         * m4/xstrtoumax.m4 (jm_XSTRTOUMAX): Renamed from
32727         jm_AC_PREREQ_XSTRTOUMAX.
32728         Moved the strtoul prerequisites to strtoul.m4.
32729         Moved the strtoull prerequisites to strtoull.m4.
32730         Moved the strtoumax prerequisites to strtoumax.m4.
32731
32732         Module chown.
32733         * m4/chown.m4 (gl_PREREQ_CHOWN): New macro.
32734         (jm_FUNC_CHOWN): Use AC_FUNC_CHOWN. Invoke gl_PREREQ_CHOWN.
32735
32736         Module dup2.
32737         * m4/dup2.m4: New file.
32738
32739         Module ftruncate.
32740         * m4/ftruncate.m4 (gl_PREREQ_FTRUNCATE): New macro.
32741         (jm_FUNC_FTRUNCATE): Use AC_REPLACE_FUNCS. Invoke gl_PREREQ_FTRUNCATE.
32742
32743         Module getgroups.
32744         * m4/getgroups.m4 (gl_PREREQ_GETGROUPS): New macro.
32745         (jm_FUNC_GETGROUPS): Use AC_FUNC_GETGROUPS. Invoke gl_PREREQ_GETGROUPS.
32746
32747         Module gettimeofday.
32748         * m4/gettimeofday.m4 (gl_PREREQ_GETTIMEOFDAY): New macro.
32749         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Use onceonly macros. Invoke
32750         gl_PREREQ_GETTIMEOFDAY.
32751
32752         Module mkdir.
32753         * m4/mkdir-slash.m4 (gl_PREREQ_MKDIR): New macro.
32754         (UTILS_FUNC_MKDIR_TRAILING_SLASH): Invoke gl_PREREQ_MKDIR.
32755
32756         Module mkstemp.
32757         * m4/mkstemp.m4 (gl_PREREQ_MKSTEMP): New macro.
32758         (jm_PREREQ_TEMPNAME): New macro, from prereq.m4. Also invoke
32759         jm_AC_TYPE_UINTMAX_T.
32760         (UTILS_FUNC_MKSTEMP): Invoke gl_PREREQ_MKSTEMP and jm_PREREQ_TEMPNAME.
32761
32762         Module stat.
32763         * m4/stat.m4 (gl_PREREQ_STAT): New macro.
32764         (jm_FUNC_STAT): Use AC_FUNC_STAT. Invoke gl_PREREQ_STAT.
32765
32766         Module lstat.
32767         * m4/lstat.m4 (gl_PREREQ_LSTAT): New macro.
32768         (jm_FUNC_LSTAT): Use AC_FUNC_LSTAT. Invoke gl_PREREQ_LSTAT.
32769
32770         Module timespec.
32771         * m4/timespec.m4 (gl_TIMESPEC): New macro.
32772         (jm_CHECK_TYPE_STRUCT_TIMESPEC): Add check for <sys/time.h>.
32773         * m4/st_mtim.m4: Indentation.
32774
32775         Module nanosleep.
32776         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): New macro.
32777         (jm_FUNC_NANOSLEEP): Add check for <sys/time.h>. Invoke
32778         gl_PREREQ_NANOSLEEP.
32779
32780         Module regex.
32781         * m4/regex.m4 (jm_PREREQ_REGEX): New macro.
32782         (jm_INCLUDED_REGEX): Invoke jm_PREREQ_REGEX.
32783         (gl_REGEX): New macro.
32784
32785         Module rename.
32786         * m4/rename.m4 (gl_PREREQ_RENAME): New macro.
32787         (vb_FUNC_RENAME): Invoke gl_PREREQ_RENAME.
32788
32789         Module rmdir.
32790         * m4/rmdir.m4: New file.
32791
32792         Module utime.
32793         * m4/utimbuf.m4 (jm_CHECK_TYPE_STRUCT_UTIMBUF): Use onceonly macros.
32794         * m4/utime.m4 (gl_PREREQ_UTIME): New macro.
32795         (jm_FUNC_UTIME): Invoke gl_PREREQ_UTIME.
32796
32797         Module dirname.
32798         * m4/dirname.m4: New file.
32799
32800         Module getopt.
32801         * m4/getopt.m4: New file.
32802
32803         Module unistd-safer.
32804         * m4/unistd-safer.m4: New file.
32805
32806         Module fnmatch.
32807         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Include <stdlib.h>, for exit()
32808         declaration.
32809         (gl_PREREQ_FNMATCH_EXTRA): New macro.
32810         (gl_FUNC_FNMATCH_POSIX): New macro.
32811         (gl_FUNC_FNMATCH_GNU): Renamed from AC_FUNC_FNMATCH_GNU. Invoke
32812         gl_PREREQ_FNMATCH_EXTRA. Use the function name gnu_fnmatch, not
32813         simply fnmatch.
32814
32815         Module exclude.
32816         * m4/exclude.m4: New file.
32817
32818         Module human.
32819         * m4/human.m4: New file.
32820
32821         Module acl.
32822         * m4/acl.m4: Nop.
32823
32824         Module backupfile.
32825         * m4/backupfile.m4: New file.
32826         * m4/d-ino.m4: Indentation.
32827
32828         Module fsusage.
32829         * m4/fsusage.m4 (gl_FSUSAGE): New macro.
32830         (jm_STATFS_TRUNCATES): New macro, from coreutils-4.5.4/configure.ac.
32831         (gl_PREREQ_FSUSAGE_EXTRA): New macro.
32832
32833         Module dirfd.
32834         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Invoke some AC_EGREP_CPP
32835         requirements.
32836
32837         Module euidaccess.
32838         * m4/euidaccess.m4: New file.
32839
32840         Module file-type.
32841         * m4/file-type.m4: New file.
32842
32843         Module fileblocks.
32844         * m4/fileblocks.m4: New file.
32845
32846         Module filemode.
32847         * m4/filemode.m4: New file.
32848
32849         Module isdir.
32850         * m4/isdir.m4: New file.
32851
32852         Module lchown.
32853         * m4/lchown.m4 (gl_PREREQ_LCHOWN): New macro.
32854         (jm_FUNC_LCHOWN): Invoke gl_PREREQ_LCHOWN.
32855
32856         Module makepath.
32857         * m4/makepath.m4: New file.
32858
32859         Module modechange.
32860         * m4/modechange.m4: New file.
32861
32862         Module mountlist.
32863         * m4/mountlist.m4: New file.
32864         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Use onceonly macros.
32865         Indentation.
32866
32867         Module path-concat.
32868         * m4/path-concat.m4: New file.
32869
32870         Module pathmax.
32871         * m4/pathmax.m4: New file.
32872
32873         Module same.
32874         * m4/same.m4: New file.
32875
32876         Module save-cwd.
32877         * m4/save-cwd.m4: New file.
32878
32879         Module savedir.
32880         * m4/savedir.m4: New file.
32881
32882         Module xgetcwd.
32883         * m4/xgetcwd.m4: New file.
32884         * m4/getcwd.m4 (AC_FUNC_GETCWD_NULL): Use onceonly macros.
32885
32886         Module xreadlink.
32887         * m4/xreadlink.m4: New file.
32888
32889         Module safe-read.
32890         * m4/safe-read.m4: New file.
32891
32892         Module safe-write.
32893         * m4/safe-write.m4: New file.
32894
32895         Module closeout.
32896         * m4/closeout.m4: New file.
32897
32898         Module stdio-safer.
32899         * m4/stdio-safer.m4: New file.
32900
32901         Module getpass.
32902         * m4/getpass.m4: New file.
32903
32904         Module getugroups.
32905         * m4/getugroups.m4: New file.
32906
32907         Module group-member.
32908         * m4/group-member.m4 (gl_PREREQ_GROUP_MEMBER): New macro.
32909         (jm_FUNC_GROUP_MEMBER): Invoke AC_GNU_SOURCE, gl_PREREQ_GROUP_MEMBER.
32910
32911         Module idcache.
32912         * m4/idcache.m4: New file.
32913
32914         Module userspec.
32915         * m4/userspec.m4: New file.
32916
32917         Module gettime.
32918         * m4/clock_time.m4: New file.
32919         * m4/gettime.m4: New file.
32920
32921         Module settime.
32922         * m4/settime.m4: New file.
32923
32924         Module posixtm.
32925         * m4/posixtm.m4: New file.
32926
32927         Module gethostname.
32928         * m4/gethostname.m4: New file.
32929
32930         Module canon-host.
32931         * m4/canon-host.m4: New file.
32932
32933         Module gettext.
32934         * m4/codeset.m4: New file, from gettext-0.11.5.
32935         * m4/gettext.m4: New file, from gettext-0.11.5.
32936         * m4/glibc21.m4: New file, from gettext-0.11.5.
32937         * m4/iconv.m4: New file, from gettext-0.11.5.
32938         * m4/intdiv0.m4: New file, from gettext-0.11.5.
32939         * m4/inttypes-pri.m4: New file, from gettext-0.11.5.
32940         * m4/inttypes.m4: New file, from gettext-0.11.5.
32941         * m4/inttypes_h.m4: New file, from gettext-0.11.5 with modifications.
32942         * m4/isc-posix.m4: New file, from gettext-0.11.5.
32943         * m4/lcmessage.m4: New file, from gettext-0.11.5.
32944         * m4/lib-ld.m4: New file, from gettext-0.11.5.
32945         * m4/lib-link.m4: New file, from gettext-0.11.5.
32946         * m4/lib-prefix.m4: New file, from gettext-0.11.5.
32947         * m4/progtest.m4: New file, from gettext-0.11.5.
32948         * m4/stdint_h.m4: New file, from gettext-0.11.5 with modifications.
32949         * m4/uintmax_t.m4: New file, from gettext-0.11.5 with modifications.
32950         * m4/ulonglong.m4: New file, from gettext-0.11.5 with modifications.
32951
32952         Module localcharset.
32953         * m4/localcharset.m4: New file.
32954
32955         Module hard-locale.
32956         * m4/hard-locale.m4: New file.
32957
32958         Module mbswidth.
32959         * m4/mbswidth.m4 (gl_MBSWIDTH): Renamed from jm_PREREQ_MBSWIDTH. Use
32960         onceonly macros.
32961         * m4/mbrtowc.m4: Add comment.
32962
32963         Module memcasecmp.
32964         * m4/memcasecmp.m4: New file.
32965
32966         Module memcoll.
32967         * m4/memcoll.m4: New file.
32968
32969         Module unicodeio.
32970         * m4/unicodeio.m4: New file.
32971
32972         Module rpmatch.
32973         * m4/rpmatch.m4: New file.
32974
32975         Module yesno.
32976         * m4/yesno.m4: New file.
32977
32978         Module exitfail.
32979         * m4/exitfail.m4: New file.
32980
32981         Module c-stack.
32982         * m4/c-stack.m4 (gl_C_STACK): New macro.
32983         (jm_PREREQ_C_STACK): Check for <sys/time.h>. Use onceonly macros.
32984
32985         Module error.
32986         * m4/error.m4 (gl_ERROR): New macro.
32987         (jm_PREREQ_ERROR): Use onceonly macros.
32988
32989         Module fatal.
32990         * m4/fatal.m4: New file.
32991
32992         Module getloadavg.
32993         * m4/getloadavg.m4 (AC_FUNC_GETLOADAVG): Use onceonly macros.
32994         (gl_FUNC_GETLOADAVG, gl_PREREQ_GETLOADAVG): New macros.
32995
32996         Module getpagesize.
32997         * m4/getpagesize.m4: New file.
32998
32999         Module getusershell.
33000         * m4/getusershell.m4: New file.
33001
33002         Module physmem.
33003         * m4/physmem.m4: New file.
33004
33005         Module posixver.
33006         * m4/posixver.m4: New file.
33007
33008         Module quotearg.
33009         * m4/quotearg.m4: New file.
33010
33011         Module quote.
33012         * m4/quote.m4: New file.
33013
33014         Module readutmp.
33015         * m4/readutmp.m4: New file, based on jm_PREREQ_READUTMP from prereq.m4.
33016
33017         Module sig2str.
33018         * m4/sig2str.m4: New file.
33019
33020         Other.
33021         * m4/longlong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Remove, moved to
33022         ulonglong.m4.
33023         * m4/intmax_t.m4: New file.
33024         * m4/d-type.m4: Indentation.
33025         * m4/jm-macros.m4: Update.
33026         * m4/prereq.m4 (jm_PREREQ): Update.
33027         (jm_PREREQ_ADDEXT): Remove, obsoleted by backupfile.m4.
33028         (jm_PREREQ_CANON_HOST): Remove, obsoleted by canon-host.m4.
33029         (jm_PREREQ_DIRNAME): Remove, obsoleted by dirname.m4.
33030         (jm_PREREQ_EXCLUDE): Remove, obsoleted by exclude.m4.
33031         (jm_PREREQ_GETPAGESIZE): Remove, obsoleted by getpagesize.m4.
33032         (jm_PREREQ_HARD_LOCALE): Remove, obsoleted by hard-locale.m4.
33033         (jm_PREREQ_HASH): Remove, obsoleted by hash.m4.
33034         (jm_PREREQ_HUMAN): Remove, obsoleted by human.m4.
33035         (jm_PREREQ_MEMCHR): Remove, obsoleted by memchr.m4.
33036         (jm_PREREQ_PHYSMEM): Remove, obsoleted by physmem.m4.
33037         (jm_PREREQ_POSIXVER): Remove, obsoleted by posixver.m4.
33038         (jm_PREREQ_QUOTEARG): Remove, obsoleted by quotearg.m4.
33039         (jm_PREREQ_READUTMP): Remove, obsoleted by readutmp.m4.
33040         (jm_PREREQ_REGEX): Remove, obsoleted by regex.m4.
33041         (jm_PREREQ_STRNLEN): Remove, obsoleted by strnlen.m4.
33042         (jm_PREREQ_TEMPNAME): Remove, obsoleted by mkstemp.m4.
33043         (jm_PREREQ_XGETCWD): Remove, obsoleted by xgetcwd.m4.
33044         (jm_PREREQ_XREADLINK): Remove, obsoleted by xreadlink.m4.
33045         * m4/readdir.m4 (jm_FUNC_READDIR): Use onceonly macros.
33046
33047 2002-12-24  Bruno Haible  <bruno@clisp.org>
33048
33049         * MODULES.txt: Update according to m4/ changes.
33050
33051         Module gettext.
33052         * config.rpath: New file, from gettext-0.11.5.
33053
33054         * modules/*: New module descriptions.
33055         * gnulib-tool: New file.
33056         * MODULES.html.sh: New file.
33057
33058 2002-12-21  Karl Berry  <karl@gnu.org>
33059
33060         * doc/fdl.texi: update to version 1.2.
33061
33062 2002-12-19  Karl Berry  <karl@gnu.org>
33063
33064         * config/config.guess: update from prep.
33065
33066 2002-12-18  Bruno Haible  <bruno@clisp.org>
33067
33068         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't test for localtime_r.
33069         * m4/jm-mktime.m4 (jm_FUNC_MKTIME): Likewise.
33070
33071 2002-12-17  Bruno Haible  <bruno@clisp.org>
33072
33073         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Remove checks for limits.h,
33074         stdlib.h, string.h.
33075
33076 2002-12-17  Bruno Haible  <bruno@clisp.org>
33077
33078         * lib/canon-host.c (strdup): Remove unused declaration.
33079
33080         * lib/fsusage.c: Include full_read.h.
33081         (get_fs_usage): Use full_read instead of safe_read.
33082
33083         * lib/utime.c (utime_null): Use SAFE_READ_ERROR.
33084
33085 2002-12-12  Karl Berry  <karl@gnu.org>
33086
33087         * config/config.guess: update from prep.
33088
33089 2002-12-11  Bruno Haible  <bruno@clisp.org>
33090
33091         * m4/setenv.m4: New file, from gettext-0.11.5.
33092
33093 2002-12-11  Bruno Haible  <bruno@clisp.org>
33094
33095         * lib/setenv.h: Rewritten to cope with systems that have setenv() but
33096         not unsetenv().
33097         * lib/setenv.c, unsetenv.c: Taken from glibc-2.2.4 with the following
33098         modifications:
33099
33100         2002-12-11  Bruno Haible  <bruno@clisp.org>
33101
33102                 * setenv.c (alloca): Fall back to malloc.
33103                 (freea): New macro.
33104                 (setenv): Use freea() to free memory allocated with alloca().
33105
33106         2002-11-13  Bruno Haible  <bruno@clisp.org>
33107
33108                 * setenv.c (compar_fn_t, __add_to_environ, setenv): Use ANSI C
33109                 function declarations.
33110                 * unsetenv.c (unsetenv): Likewise.
33111
33112         2002-03-04  Bruno Haible  <bruno@clisp.org>
33113
33114                 Portability to AIX 4.3.3.
33115                 * unsetenv.c: New file, extracted from setenv.c.
33116                 * setenv.c: Move the unsetenv() function to unsetenv.c.
33117
33118         2001-12-20  Bruno Haible  <bruno@clisp.org>
33119
33120                 * setenv.c (__add_to_environ): Don't call realloc(NULL,...),
33121                 use malloc instead. For SunOS 4.
33122
33123         2001-12-11  Bruno Haible  <bruno@clisp.org>
33124
33125                 * setenv.c: Declare alloca.
33126                 (compar_fn_t): New typedef.
33127                 (KNOWN_VALUE, STORE_VALUE): Use it.
33128
33129         * lib/Makefile.am (libfetish_a_SOURCES): Add setenv.c, unsetenv.c,
33130         setenv.h.
33131
33132 2002-12-10  Paul Eggert  <eggert@twinsun.com>
33133
33134         Port exclude.c and exclude.h to more non-GNU systems, e.g. Solaris 7.
33135         * lib/exclude.h (EXCLUDE_ANCHORED, EXCLUDE_INCLUDE, EXCLUDE_WILDCARDS):
33136         Choose values that are less likely to collide with system fnmatch
33137         options.
33138         * lib/exclude.c (FNM_CASEFOLD, FNM_LEADING_DIR): Define to 0 if not
33139         defined (e.g., a pure POSIX system).
33140         (EXCLUDE_macros_do_not_collide_with_FNM_macros): Use FNM_PATHNAME
33141         instead of FNM_FILE_NAME, for compatibility with pure POSIX sytems.
33142
33143 2002-12-06  Paul Eggert  <eggert@twinsun.com>
33144
33145         Undo the 2001-07-02 change for jm-glibc-io, as it was too much of
33146         a pain in practice to deal with generated m4 files.  This change
33147         goes together with the 2002-12-04 unlocked-io.h change in ../lib.
33148
33149         * m4/Makefile.am.in (Makefile.am): Don't mention jm-glibc-io.m4n
33150         and jm-glibc-io.m4, as they are no longer a special case.
33151         * m4/jm-glibc-io.m4: Rename from jm-glibc-io.m4n, and remove the
33152         kludge and the auto-generation stuff.  Check only whether the
33153         functions are declared, not whether they exist, since older hosts
33154         that don't declare the functions can't use the optimization anyway.
33155
33156 2002-12-06  Jim Meyering  <jim@meyering.net>
33157
33158         * lib/error.c: Be consistent: change `#ifndef _LIBC' to `#if !_LIBC'.
33159
33160         Merge in changes from libc's misc/error.c, in preparation
33161         for the merge of gnulib's changes back into libc.
33162
33163         * lib/error.c (_): Define only if not already defined.
33164         Move definition to follow all #include directives.
33165         Include unlocked-io.h only if !_LIBC.
33166         [_LIBC]: Include <libio/libioP.h>.
33167         [USE_IN_LIBIO]: Include <libio/iolibio.h>
33168         (fflush): Tweak definition to use INTUSE.
33169         (putc): Define.
33170
33171 2002-12-05  Paul Eggert  <eggert@twinsun.com>
33172
33173         * lib/alloca.c [defined emacs]: Include "lisp.h".
33174         (xalloc_die) [defined emacs]: New macro.
33175         (free) [defined emacs && defined EMACS_FREE]: Define to EMACS_FREE.
33176         [! defined emacs]: Include <xalloc.h>.
33177         (POINTER_TYPE) [!defined POINTER_TYPE]: New macro.
33178         (pointer): Typedef to POINTER_TYPE *.
33179         (malloc): Remove decl; we now always use xmalloc.
33180         (alloca): Use old-style definition, since Emacs needs this.
33181         Check for arithmetic overflow when computing combined size.
33182
33183 2002-12-04  Paul Eggert  <eggert@twinsun.com>
33184
33185         Do not generate unlocked-io.h automatically, since it's easier to
33186         maintain it by hand.
33187
33188         * lib/unlocked-io.h: New file, from GNU diffutils,
33189         but with proper copyright notice and attribution.
33190         * lib/gen-uio: Remove.
33191         * lib/Makefile.am: Add copyright notice.
33192         (libfetish_a_SOURCES): Add unlocked-io.h.
33193         (BUILT_SOURCES, all-local): Remove unlocked-io.h.
33194         (DISTCLEANFILES, io_functions): Remove macros.
33195         (EXTRA_DIST): Remove gen_uio.
33196         (unlocked-io.h): Remove rule.
33197
33198 2002-12-04  Jim Meyering  <jim@meyering.net>
33199
33200         Reflect the fact that stat.c and lstat.c are no longer generated.
33201         * lib/Makefile.am (BUILT_SOURCES): Remove stat.c and lstat.c.
33202         (DISTCLEANFILES): Likewise.
33203         (EXTRA_DIST): Likewise.
33204         (all_local): Don't depend on stat.c or lstat.c.
33205         (stat.c, lstat.c): Remove rules.
33206         (EXTRA_DIST): Remove xstat.in.
33207
33208         * lib/xstat.in: Remove file.  Contents moved into stat.c.
33209         * lib/stat.c: New file.  Contents mostly from xstat.in.
33210         * lib/stat.c: Rework so that it may serve to define rpl_lstat, too.
33211         * lib/lstat.c: New file. Simply #define LSTAT and include stat.c.
33212
33213         * lib/safe-read.c: Rework so that it may serve to define safe_write,
33214         too.
33215         * lib/safe-write.c: Simply #define SAFE_WRITE and include safe-read.c.
33216
33217 2002-12-03  Jim Meyering  <jim@meyering.net>
33218
33219         * lib/safe-read.c, safe-write.c: Change variable names and comments,
33220         but not semantics, to minimize the differences between these two files.
33221         (safe_read): Change comment to mention SAFE_READ_ERROR.
33222
33223         * lib/safe-read.c (IS_EINTR): Define.
33224         (safe_read): Use IS_EINTR in place of in-function cpp directives.
33225
33226 2002-12-02  Jim Meyering  <jim@meyering.net>
33227
33228         * lib/safe-read.c (EINTR): Define.
33229         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Define.
33230         (INT_MAX): Provide fallback.
33231         (safe_read): Rewrite to iterate IFF the read fails with EINTR.
33232
33233         * lib/safe-read.h (SAFE_READ_ERROR): Define.
33234
33235 2002-12-02  Bruno Haible  <bruno@clisp.org>
33236
33237         * lib/safe-write.c (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM):
33238         Define, taken from safe-read.c.
33239         (INT_MAX): Provide fallback.
33240         (safe_write): Rewrite to iterate IFF the write fails with EINTR.
33241         * lib/safe-write.h (SAFE_WRITE_ERROR): Define.
33242
33243         * lib/safe-read.c (EINTR): Remove definition.
33244         (safe_read): Don't use EINTR if it is absent.
33245
33246 2002-12-01  Jim Meyering  <jim@meyering.net>
33247
33248         * lib/safe-read.c: (safe_read): Also exit the loop when read returns
33249         zero.
33250         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM, INT_MAX): Define.
33251
33252 2002-11-27  Paul Eggert  <eggert@twinsun.com>
33253
33254         * lib/hash.c (hash_lookup, hash_get_first, hash_get_next,
33255         hash_find_entry, hash_rehash): Replace `if (limit <= value) abort ();'
33256         with `if (! (value < limit)) abort ();', for readability.
33257
33258 2002-11-26  Karl Berry  <karl@gnu.org>
33259
33260         * lib/strdup.c: copy from libc again, with jim's ok.
33261         * lib/.cppi-disable: re-add strdup.c
33262
33263 2002-11-25  Karl Berry  <karl@gnu.org>
33264
33265         * lib/strtoll.c: copy from libc, meaning we now #include <strtol.c>
33266         instead of "strtol.c".
33267
33268 2002-11-25  Karl Berry  <karl@gnu.org>
33269
33270         * config/install-sh: update from automake for variable quoting, $0 in
33271         error msgs, etc.
33272
33273         * config/srclist.txt ($LIBCSRC/time/mktime.c lib gpl): new entry.
33274         * config/srclist.txt ($LIBCSRC/sysdeps/generic/strtoll.c lib gpl): new
33275         entry.
33276
33277 2002-11-25  Jim Meyering  <jim@meyering.net>
33278
33279         * lib/mktime.c: Sync from libc, now that it has the latest fix.
33280
33281 2002-11-24  Karl Berry  <karl@gnu.org>
33282
33283         * lib/error.c, getopt.c, getopt.h, getopt1.c, obstack.c, regex.c,
33284         regex.h, strdup.c, strtoll.c, tempname.c: change license to gpl.
33285
33286 2002-11-24  Jim Meyering  <jim@meyering.net>
33287
33288         Update from coreutils:
33289
33290         * lib/mktime.c: Merge in changes from libc.
33291
33292         Avoid a link-time failure on some Linux systems.
33293         * lib/mktime.c (STATIC): Define to be empty (_LIBC) or `static'
33294         (otherwise).
33295         (__mon_yday): Declare with the STATIC attribute.
33296         (__mktime_internal): Likewise.
33297         Based on a report from Greg Schafer.
33298
33299 2002-11-23  Jim Meyering  <jim@meyering.net>
33300
33301         * lib/sig2str.c (str2signum, sig2str): Avoid a warning from gcc:
33302         Use `unsigned', not `int', as type of index.
33303
33304         * lib/xstat.in [@BEGIN_LSTAT_ONLY@]: Include <string.h>.
33305
33306         * lib/fsusage.c: Remove unneeded parentheses around operands of
33307         `defined'.
33308
33309 2002-11-22  Paul Eggert  <eggert@twinsun.com>
33310
33311         * lib/quotearg.h: Allow multiple inclusion by surrounding with
33312         "#ifndef QUOTEARG_H_".  Include <stddef.h>, for size_t,
33313         so that we can be included first.
33314         (PARAMS): Remove; we now assume C89 or later.  All uses removed.
33315         * lib/quotearg.c: Include quotearg.h immediately after config.h.
33316         No need to include stddef.h or sys/types.h any more.
33317         Surround local include files with "", not "<>".
33318         Assume HAVE_LIMITS_H unconditionally, as we assume C89.
33319         Similarly, assume HAVE_C_BACKSLASH_A, CHAR_BIT, UCHAR_MAX, UINT_MAX,
33320         HAVE_STDLIB_H, HAVE_STRING_H, STDC_HEADERS.
33321         (HAVE_MBSINIT): Undef if !HAVE_MBRTOWC.
33322         (mbsinit): Define to 1 if !defined mbsinit && !HAVE_MBSINIT.
33323         (ISPRINT): Remove; no longer needed now that we assume C89.
33324
33325         (clone_quoting_options, quotearg_buffer, quotearg_n_options):
33326         Preserve errno.
33327
33328         (quotearg_buffer_restyled, quotearg_n, quotearg_n_style,
33329         quotearg_char): Use SIZE_MAX rather than
33330         (size_t) -1 when we are talking about "infinity".
33331
33332         (quotearg_buffer_restyled): Fix bug when quoting trigraphs.
33333
33334 2002-11-22  Paul Eggert  <eggert@twinsun.com>
33335
33336         * lib/hash.c: Avoid use of <assert.h>, as the GNU Coding Standards
33337         hint that one should use `if (! x) abort ();' rather than `assert
33338         (x);', and anyway it's one less thing to worry about configuring.
33339         (hash_lookup, hash_get_first, hash_get_next, hash_find_entry,
33340         hash_rehash, hash_insert): Use abort rather than assert.
33341
33342 2002-11-22  Bruno Haible  <bruno@clisp.org>
33343
33344         * lib/safe-read.h: Assume C89. Add comments.
33345         (safe_read): Change return type to size_t.
33346         * lib/safe-read.c (safe_read): Change return type to size_t. Handle
33347         byte counts > SSIZE_MAX correctly.
33348         * lib/safe-write.h: New file.
33349         * lib/safe-write.c: New file.
33350         * lib/full-read.h: New file.
33351         * lib/full-read.c: New file.
33352         * lib/full-write.h: Assume C89. Add comments.
33353         * lib/full-write.c: Include safe-write.h.
33354         (full_write): Rewritten to use safe_write.
33355         Suggested by Jim Meyering and Paul Eggert.
33356
33357 2002-11-21  Jim Meyering  <jim@meyering.net>
33358
33359         * lib/strdup.c (strdup): Tweak comment and initial #if/#include.
33360
33361         Merge in changes from the coreutils.
33362
33363         2002-09-25  Paul Eggert  <eggert@twinsun.com>
33364         * lib/fsusage.c [! HAVE_INTTYPES_H && HAVE_STDINT_H] Include
33365         <stdint.h>.
33366         (UINTMAX_MAX) [!defined UINTMAX_MAX]: New macro.
33367         (PROPAGATE_ALL_ONES): Work even if X is unsigned and narrower than
33368         int.  Work more efficiently if X is the same width as uintmax_t.
33369         Do not compare X to -1, to avoid bogus compiler warning.
33370         (get_fs_usage): (uintmax_t) -1 -> UINTMAX_MAX to avoid a cast.
33371         Don't assume that f_frsize and f_bsize are the same type.
33372
33373         * lib/mountlist.c: #undef MNT_IGNORE before defining it, to avoid
33374         warning on FreeBSD.
33375
33376         * lib/makepath.c (make_path): Restore umask *before* creating the final
33377         component.
33378         (make_path): Minor reformatting.
33379
33380         * lib/xmalloc.c: Adjust to work with new autoconf macros,
33381         AC_FUNC_MALLOC and AC_FUNC_REALLOC: test #ifndef
33382         HAVE_MALLOC/HAVE_REALLOC.
33383
33384         * lib/mountlist.h (ME_DUMMY): Don't count entries of type `auto' as
33385         dummy ones.  At least on GNU/Linux systems, `auto' means something
33386         else.
33387         From Michael Stone.
33388
33389 2002-11-21  Bruno Haible  <bruno@clisp.org>
33390
33391         Remove case insensitive option matching.
33392         * lib/argmatch.h (argcasematch): Remove declaration.
33393         (ARGCASEMATCH): Remove macro.
33394         (__xargmatch_internal): Remove case_sensitive argument.
33395         (XARGMATCH): Update.
33396         (XARGCASEMATCH): Remove macro.
33397         * lib/argmatch.c (argmatch): Renamed from __argmatch_internal. Remove
33398         case_sensitive argument.
33399         (argcasematch): Remove function.
33400         (__xargmatch_internal): Remove case_sensitive argument.
33401         (main): Use XARGMATCH instead of XARGCASEMATCH.
33402
33403         * lib/xmalloc.c: Change compile-time error message. Add comment about
33404         required autoconf version.
33405
33406 2002-11-20  Paul Eggert  <eggert@twinsun.com>
33407
33408         Merge argmatch cleanups from Bison.  Assume C89.
33409
33410         * lib/argmatch.c: Include config.h here, not in argmatch.h.
33411         Include stdlib.h, for EXIT_FAILURE.
33412         Always include <string.h>, since we assume C89.
33413         (EXIT_FAILURE): Remove pre-C89 bug workaround.
33414         * lib/argmatch.h: Do not include <config.h> or <sys/types.h>.
33415         Include <stddef.h> instead, since it's all we need for size_t.
33416         (PARAMS): Remove.  All uses removed.
33417         (ARRAY_CARDINALITY): Do not bother to #undef.
33418         (ARRAY_CARDINALITY, ARGMATCH, ARGCASEMATCH, invalid_arg,
33419         ARGMATCH_VALID, XARGMATCH, XARGCASEMATCH):
33420         Remove unnecessary parentheses.
33421         (ARGMATCH_VALID, XARGMATCH, XARGCASEMATCH):
33422         Insert necessary parentheses.
33423         (ARGMATCH_CONSTRAINT, ARGMATCH_VERIFY): New macros.
33424         (ARGMATCH_ASSERT): Use ARGMATCH_CONSTRAINT.
33425
33426 2002-11-19  Bruno Haible  <bruno@clisp.org>
33427
33428         * lib/mbswidth.c: Include mbswidth.h right at the beginning.
33429         * lib/mbswidth.h: Include <stddef.h>, for size_t.
33430
33431         * lib/mbswidth.h (PARAMS): Remove macro.
33432         (mbswidth, mbsnwidth): Use ANSI C function declarations.
33433         * lib/mbswidth.c (mbswidth, mbsnwidth): Likewise.
33434
33435         * lib/gcd.h (PARAMS): Remove macro.
33436         (gcd): Use ANSI C function declarations.
33437         * lib/gcd.c (gcd): Likewise.
33438
33439 2002-11-15  Bruno Haible  <bruno@clisp.org>
33440
33441         * lib/strcspn.c: Include <stddef.h>.
33442         (strcspn): Use ANSI C function declaration. Change return type to
33443         size_t. Use NULL.
33444         * lib/strpbrk.c: Minimize diffs to glibc. Include <stddef.h>.
33445         (strpbrk): Use NULL.
33446         * lib/strpbrk.h (PARAMS): Remove macro.
33447         (strpbrk): Use ANSI C function declaration.
33448         * lib/strstr.c: Don't include <sys/types.h>.
33449         * lib/strstr.h (PARAMS): Remove macro.
33450         (strstr): Use ANSI C function declarations.
33451
33452 2002-11-14  Karl Berry  <karl@gnu.org>
33453
33454         * config/mkinstalldirs: `do' on separate line, instead of
33455         `for var; do'.
33456
33457 2002-11-06  Bruno Haible  <bruno@clisp.org>
33458
33459         * lib/gcd.h (gcd): Change argument type to 'unsigned long'.
33460         * lib/gcd.c (gcd): Likewise.
33461
33462 2002-11-05  Bruno Haible  <bruno@clisp.org>
33463
33464         * lib/gcd.h: New file, from gettext-0.11.5.
33465         * lib/gcd.c: New file, from gettext-0.11.5.
33466
33467 2002-11-05  Bruno Haible  <bruno@clisp.org>
33468
33469         * lib/error.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
33470         * lib/getopt.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
33471         * lib/obstack.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
33472         * lib/regex.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
33473
33474         * lib/argmatch.c: Include gettext.h instead of <locale.h> and
33475         <libintl.h>.
33476         * lib/makepath.c: Include gettext.h instead of <locale.h> and
33477         <libintl.h>.
33478
33479         * lib/closeout.c: Include gettext.h instead of <libintl.h>.
33480         * lib/human.c: Include gettext.h instead of <libintl.h>.
33481         * lib/quotearg.c: Include gettext.h instead of <libintl.h>.
33482         * lib/rpmatch.c: Include gettext.h instead of <libintl.h>.
33483         * lib/unicodeio.c: Include gettext.h instead of <libintl.h>.
33484         * lib/userspec.c: Include gettext.h instead of <libintl.h>.
33485         * lib/version-etc.c: Include gettext.h instead of <libintl.h>.
33486         * lib/xmalloc.c: Include gettext.h instead of <libintl.h>.
33487         (textdomain): Remove definition.
33488         * lib/xmemcoll.c: Include gettext.h instead of <libintl.h>.
33489
33490         * lib/long-options.c: Remove include of <libintl.h> and definition of
33491         _.
33492         * lib/same.c: Remove include of <libintl.h> and definition of _.
33493
33494 2002-11-04  Owen Taylor  <otaylor@redhat.com>
33495
33496         * lib/config.charset: A few additions for Solaris.
33497
33498 2002-11-04  Bruno Haible  <haible@clisp.cons.org>
33499
33500         Make it possible to build libcharset with CC=gcc CFLAGS="-x c++".
33501         * lib/localcharset.c (locale_charset): Declare as extern "C".
33502
33503 2002-11-04  Bruno Haible  <haible@clisp.cons.org>
33504
33505         * lib/config.charset: msdos in uk_UA uses CP1125.
33506
33507 2002-11-04  Bruno Haible  <bruno@clisp.org>
33508
33509         * lib/stpcpy.h: New file, from GNU gettext-0.11.5.
33510         * lib/strcase.h: New file, from GNU gettext-0.11.5.
33511         * lib/strpbrk.h: New file, from GNU gettext-0.11.5.
33512         * lib/strstr.h: New file, from GNU gettext-0.11.5.
33513         * lib/xgetcwd.h: New file, from GNU gettext-0.11.5.
33514
33515 2002-11-04  Bruno Haible  <bruno@clisp.org>
33516
33517         * lib/localcharset.c (locale_charset): Don't return an empty string.
33518
33519 2002-11-04  Bruno Haible  <bruno@clisp.org>
33520
33521         * lib/localcharset.c (get_charset_aliases): Add more Windows specific
33522         aliases.
33523
33524 2002-11-04  Bruno Haible  <bruno@clisp.org>
33525
33526         * lib/config.charset: Update for newest glibc. Add canonical names
33527         ISO-8859-14, KOI8-T, TCVN5712-1, GEORGIAN-PS.
33528
33529 2002-11-04  Bruno Haible  <bruno@clisp.org>
33530
33531         * lib/config.charset: Add support for NetBSD.
33532
33533 2002-11-04  Bruno Haible  <bruno@clisp.org>
33534
33535         * lib/config.charset [msdosdjgpp]: For Russian, use CP866.
33536
33537 2002-11-01  Bruno Haible  <bruno@clisp.org>
33538
33539         * configure.in: Add AC_CONFIG_AUX_DIR call.
33540         (AC_OUTPUT): Add m4/Makefile, lib/Makefile. Remove doc/Makefile,
33541         test/Makefile.
33542         * Makefile.in (subdirs): Add m4, lib. Remove doc, test.
33543
33544 2002-09-28  Karl Berry  <karl@gnu.org>
33545
33546         * config/srclist.txt: can't copy install-sh/mkinstalldirs from
33547         installed automake until the next release, since changes have been
33548         made.
33549
33550 2002-09-25  Karl Berry  <karl@gnu.org>
33551
33552         * lib/strdup.c: copy from libc/string (via ../config/srclist*).
33553         * lib/getopt*: copy from libc/posix.
33554         * lib/gettext.h: copy from gettext.
33555         * lib/.cppi-disable: add strdup.c, gettext.h.
33556
33557 2002-09-25  Karl Berry  <karl@gnu.org>
33558
33559         * config/srclist.txt: enable gettext.h check.
33560         * config/config.{guess,sub}: update from prep.
33561         * config/depcomp, install-sh, mdate-sh, missing, mkinstalldirs: update
33562                 from automake 1.6.3.
33563         See srclist*.
33564
33565 2002-08-23  Stefan Monnier  <monnier@cs.yale.edu>
33566
33567         * regex.c (PATFETCH): Remove the translating fetch.
33568         (PATFETCH_RAW): Rename to PATFETCH.
33569         (set_image_of_range): New fun.
33570         (SET_RANGE_TABLE_WORK_AREA): Use it.
33571         (regex_compile): Don't translate the pattern chars so eagerly.
33572         Only do it when inserting an `exactn' bytecode or when handling
33573         a char-range.
33574         (mutually_exclusive_p): Avoid empty statement.
33575
33576 2002-07-06  Jim Meyering  <meyering@lucent.com>
33577
33578         * m4/README: Don't mention Makefile.am.in.
33579         Outline how I've tested changes to .m4 files.  Yep, it's a pain.
33580
33581 2002-07-01  Jim Meyering  <meyering@lucent.com>
33582
33583         * lib/c-stack.c: Include sys/time.h.
33584         From Volker Borchert.
33585
33586 2002-06-26  Paul Eggert  <eggert@twinsun.com>
33587
33588         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for btowc.
33589
33590 2002-06-26  Paul Eggert  <eggert@twinsun.com>
33591
33592         * lib/fnmatch.c, fnmatch_loop.c (WIDE_CHAR_SUPPORT):
33593         New macro.  Use it uniformly instead of
33594         (defined HAVE_WCTYPE_H && defined HAVE_WCHAR_H).
33595         It also uses HAVE_BTOWC, to fix a porting bug on Solaris 2.5.1
33596         reported by Vin Shelton.
33597
33598 2002-06-22  Paul Eggert  <eggert@twinsun.com>
33599
33600         * lib/c-stack.h (segv_handler, c_stack_action) [! defined SA_SIGINFO]:
33601         Do not assume SA_SIGINFO behavior.
33602         Bug reported by Jim Meyering on NetBSD 1.5.2.
33603
33604 2002-06-22  Jim Meyering  <meyering@lucent.com>
33605
33606         * m4/c-stack.m4: New file, from diffutils-2.8.2.
33607         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_C_STACK.
33608
33609         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Don't require AC__GNU_SOURCE,
33610         now that configure.ac uses AC_GNU_SOURCE.
33611         (jm_MACROS): Rename: jm_FUNC_FNMATCH to AC_FUNC_FNMATCH_GNU.
33612         * m4/prereq.m4 (jm_PREREQ_EXCLUDE): Likewise, wrt jm_FUNC_FNMATCH.
33613
33614         Update to latest tools.  Suggestions from Paul Eggert.
33615         * m4/stdbool.m4: New file, from diffutils-2.8.2.
33616         * m4/gnu-source.m4: Update from diffutils-2.8.2.
33617         * m4/fnmatch.m4: Likewise.
33618         * m4/prereq.m4: Change each use of AC_CHECK_HEADERS(stdbool.h)
33619         to AC_HEADER_STDBOOL
33620
33621 2002-06-22  Jim Meyering  <meyering@lucent.com>
33622
33623         * lib/fnmatch.c (ISASCII, ISPRINT): Undefine, to avoid warning about
33624         redefinition due to Solaris 2.6's definition in /usr/include/sys/euc.h.
33625
33626 2002-06-22  Jim Meyering  <meyering@lucent.com>
33627
33628         * lib/c-stack.c, lib/c-stack.h: New files, from diffutils-2.8.2.
33629
33630         * lib/exitfail.c, exitfail.h: Likewise.
33631         * lib/Makefile.am (libfetish_a_SOURCES): Add exitfail.c and exitfail.h.
33632
33633         * lib/Makefile.am (libfetish_a_SOURCES): Add fnmatch_.h in place
33634         of fnmatch.h.
33635         (EXTRA_DIST): Add fnmatch_loop.c.
33636         (libfetish_a_SOURCES): Add c-stack.c and c-stack.h.
33637
33638         * lib/fnmatch_loop.c: New file, from diffutils-2.8.2.
33639         * lib/fnmatch.c: Update from diffutils-2.8.2.
33640         * lib/fnmatch_.h: New file.  From diffutils-2.8.2.
33641         * lib/fnmatch.h: Remove file.
33642
33643 2002-06-21  Jim Meyering  <meyering@lucent.com>
33644
33645         * m4/c-bs-a.m4: Add comment, from diffutils-2.8.2.
33646         * m4/mbrtowc.m4: Likewise.
33647
33648         * m4/mbstate_t.m4: Update from diffutils-2.8.2.
33649         * m4/mbswidth.m4: Reflect name change:
33650         s/AC_MBSTATE_T/AC_TYPE_MBSTATE_T.
33651         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Likewise.
33652
33653         * m4/lib-link.m4: Update from gettext-0.11.2.
33654         * m4/gettext.m4: Likewise.
33655
33656         * m4/jm-macros.m4 (jm_CHECK_ALL_HEADERS): Check for hurd.h.
33657         From Alfred M. Szmidt.
33658
33659 2002-06-18  Paul Eggert  <eggert@twinsun.com>
33660
33661         * lib/file-type.h: Report an error if neither S_ISREG nor
33662         S_IFREG is defined, instead of using a test specific to glibc
33663         2.2.  This should be safe, since POSIX requires S_ISREG and
33664         Unix Version 7 had S_IFREG.  We don't need to check for
33665         <sys/types.h> since we don't use any symbols that it defines.
33666
33667 2002-06-15  Richard Dawe  <richdawe@bigfoot.com>
33668
33669         * lib/Makefile.am (lstat.c, stat.c, .sin.sed): Use t-$@, rather than
33670         $@-t, so that each temporary file name is unique and valid in the first
33671         8 characters, for operation under DOS.
33672
33673 2002-06-15  Paul Eggert  <eggert@twinsun.com>
33674
33675         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Check for st_author.
33676
33677 2002-06-15  Jim Meyering  <meyering@lucent.com>
33678
33679         Work even with DJGPP 2.03, which lacks support for symlinks.
33680         From Richard Dawe.
33681         * lib/xstat.in (S_ISLNK): Define to 0 if neither S_ISLNK nor S_IFLNK
33682         is defined.
33683         * lib/lchown.c (S_ISLNK): Likewise.
33684
33685 2002-06-15  Jim Meyering  <meyering@lucent.com>
33686
33687         * lib/file-type.h (FILE_TYPE_H): Guard entire contents with #ifndef.
33688         For GNU libc 2.2 and newer, ensure that <sys/types.h> and <sys/stat.h>
33689         have been included before this file.
33690
33691 2002-06-14  Jim Meyering  <meyering@lucent.com>
33692
33693         * lib/file-type.h: Use the version from diffutils-2.8.2.
33694         * lib/file-type.c: Likewise.
33695
33696 2002-06-07  Jim Meyering  <meyering@lucent.com>
33697
33698         * m4/prereq.m4 (jm_PREREQ_STAT): Check for sys/param.h and sys/mount.h.
33699         They're needed at least for NetBSD 1.5.2.
33700         ($statxfs_includes): Include those same headers.
33701         ($statxfs_includes): Include sys/vfs.h if available.
33702         ($statxfs_includes): Likewise for sys/statvfs.h.
33703         Check for the following members in both structs statfs and statvfs:
33704         f_basetype, f_type, f_fsid.__val, f_namemax, f_namelen.
33705
33706 2002-06-01  Jim Meyering  <meyering@lucent.com>
33707
33708         * m4/d-type.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Rename macro:
33709         s/D_TYPE_IN_DIRENT/HAVE_STRUCT_DIRENT_D_TYPE/.
33710
33711 2002-05-28  Jim Meyering  <meyering@lucent.com>
33712
33713         * m4/readdir.m4 (jm_FUNC_READDIR): Undefine `mkdir', not `rmdir'.
33714         Reported by Volker Borchert.
33715
33716 2002-05-27  Jim Meyering  <meyering@lucent.com>
33717
33718         Fix a problem seen only on nonconforming systems whereby ls.c's
33719         use of localtime, and then of gettimeofday would cause trouble:
33720         the localtime call used to initialize rpl_gettimeofday's save
33721         mechanism would clobber ls's current local time information so
33722         that in any long listing the first file would always be listed
33723         with date 1970-01-01.  Analysis by Volker Borchert.
33724
33725         * lib/gettimeofday.c (localtime): Undefine.
33726         (rpl_localtime): New function.
33727
33728 2002-05-27  Jim Meyering  <meyering@lucent.com>
33729
33730         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER): Also replace
33731         localtime.
33732
33733         * m4/readdir.m4 (jm_FUNC_READDIR): Undefine `rmdir' so we don't try to
33734         use the replacement function; it wouldn't resolve at link time.
33735         Reported by Volker Borchert.
33736
33737 2002-05-22  Jim Meyering  <meyering@lucent.com>
33738
33739         * lib/Makefile.am (libfetish_a_SOURCES): Add file-type.c and
33740         file-type.h.
33741         * lib/file-type.h: New file.
33742         * lib/file-type.c (file_type): New file/function.  Extracted from
33743         diffutils.
33744
33745 2002-04-30  Jim Meyering  <meyering@lucent.com>
33746
33747         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_STAT.
33748
33749 2002-04-29  Paul Eggert  <eggert@twinsun.com>
33750
33751         * m4/prereq.m4 (jm_PREREQ_SIG2STR): Remove; all callers changed.
33752
33753 2002-04-29  Paul Eggert  <eggert@twinsun.com>
33754
33755         * m4/prereq.m4 (jm_PREREQ_HARD_LOCALE): Check for stdlib.h.
33756         Do not check for alloca.h (no longer used) or stdbool.h (was never
33757         used?).  Add AM_C_PROTOTYPES since hard-locale.h uses it.
33758
33759 2002-04-29  Paul Eggert  <eggert@twinsun.com>
33760
33761         * lib/hard-locale.c: Upgrade to version used in GNU Diffutils 2.8.1.
33762
33763 2002-04-29  Jim Meyering  <meyering@lucent.com>
33764
33765         * m4/jm-macros.m4 (jm_MACROS): Remove use of AC_FUNC_STRNLEN.
33766         * m4/prereq.m4: Add jm_PREREQ_STRNLEN.
33767         Use AC_FUNC_STRNLEN here instead.
33768
33769         * m4/jm-macros.m4: Don't AC_REQUIRE([AC_PROG_CC_STDC]).
33770         With autoconf-2.53a, it's part of AC_PROG_CC.
33771
33772 2002-04-28  Paul Eggert  <eggert@twinsun.com>
33773
33774         * m4/jm-macros.m4 (jm_MACROS): Add AC_REPLACE_FUNCS(sig2str).
33775         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_SIG2STR.
33776
33777 2002-04-28  Paul Eggert  <eggert@twinsun.com>
33778
33779         * lib/sig2str.h, lib/sig2str.c: New files.
33780         * lib/Makefile.am (libfetish_a_SOURCES): Add sig2str.h.
33781
33782 2002-04-28  Paul Eggert  <eggert@twinsun.com>
33783
33784         * lib/sig2str.h (SIGNUM_BOUND): Do not use WTERMSIG, to avoid
33785         depending on <sys/wait.h> and WTERMSIG.  Default to 64 instead
33786         of 127, since 64 is the largest conceivable number for ancient
33787         nonstandard hosts.
33788         * lib/sig2str.c: Do not include <sys/wait.h>; no longer needed.
33789
33790 2002-04-28  Jim Meyering  <meyering@lucent.com>
33791
33792         * lib/sig2str.c (WTERMSIG): Remove definition (unused).
33793
33794 2002-04-24  Jim Meyering  <meyering@lucent.com>
33795
33796         * m4/prereq.m4 (jm_PREREQ_HARD_LOCALE): New macro.
33797         (jm_PREREQ): Use it.
33798
33799         * m4/getloadavg.m4: Check for these headers: locale.h unistd.h
33800         mach/mach.h fcntl.h.
33801         Check for this function: setlocale.
33802
33803 2002-04-24  Jim Meyering  <meyering@lucent.com>
33804
33805         * lib/gettext.h: New file, from Gettext.
33806         * lib/Makefile.am (INCLUDES): Remove -I../intl.
33807         (libfetish_a_SOURCES): Add gettext.h.
33808
33809 2002-04-16  Jim Meyering  <meyering@lucent.com>
33810
33811         * m4/prereq.m4 (jm_PREREQ_READUTMP): Also check for these members:
33812         ut_pid, ut_id, ut_exit.
33813
33814 2002-04-16  Jim Meyering  <meyering@lucent.com>
33815
33816         * lib/readutmp.h (UT_TYPE): Remove definition (now in who.c).
33817         (HAVE_STRUCT_XTMP_UT_EXIT, HAVE_STRUCT_XTMP_UT_ID): Define.
33818         (HAVE_STRUCT_XTMP_UT_PID, HAVE_STRUCT_XTMP_UT_TYPE): Define.
33819
33820 2002-04-12  Jim Meyering  <meyering@lucent.com>
33821
33822         * m4/ls-mntd-fs.m4 (checking for getmntinfo function...): Remove
33823         now-bogus check for f_type in sys/mount.h.  Instead, just test for the
33824         existence of the getmntinfo function.  Needed for Darwin 5.3.
33825
33826         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Also detect when dirfd is a macro.
33827         This is necessary at least on Darwin 5.3.
33828
33829         * m4/jm-macros.m4: Don't AC_REPLACE(strnlen), now that we use
33830         AC_FUNC_STRNLEN.  Otherwise, we'd end up putting two copies of
33831         strnlen.o in the library, and that makes some versions of ranlib
33832         object.
33833
33834 2002-04-12  Jim Meyering  <meyering@lucent.com>
33835
33836         * lib/dirfd.h (dirfd): Elide prototype if dirfd is a macro.
33837
33838 2002-04-09  Jim Meyering  <meyering@lucent.com>
33839
33840         * m4/malloc.m4: (jm_FUNC_MALLOC): Change the `checking ...' message
33841         to be more precise.  Rather than saying we're checking whether the
33842         function `works', say what we're testing.
33843         * m4/realloc.m4 (jm_FUNC_REALLOC): Likewise.
33844         Reported by Bruno Haible.
33845
33846 2002-03-10  Jim Meyering  <meyering@lucent.com>
33847
33848         * lib/makepath.c (make_path): Remove a comma from a diagnostic.
33849         Suggestion from Santiago Vila.
33850
33851 2002-03-08  Jim Meyering  <meyering@lucent.com>
33852
33853         * lib/rename.c: Mention that this wrapper is needed also on
33854         mips-dec-ultrix4.4 systems.
33855
33856 2002-03-02  Jim Meyering  <meyering@lucent.com>
33857
33858         * lib/gettime.c (gettime): Test HAVE_CLOCK_GETTIME,
33859         not HAVE_CLOCK_SETTIME.
33860
33861 2002-02-27  Paul Eggert  <eggert@twinsun.com>
33862
33863         * m4/jm-macros.m4 (jm_MACROS): Do not replace stime; no longer used.
33864         Check for clock_settime.
33865
33866 2002-02-27  Paul Eggert  <eggert@twinsun.com>
33867
33868         * lib/nanosleep.h: Rename to....
33869         * lib/timespec.h: New name for nanosleep.h.  All uses changed.
33870
33871         * lib/gettime.c: New file.
33872         * lib/settime.c: New file.
33873         * lib/stime.c: Remove.
33874
33875         * lib/Makefile.am (libfetish_a_SOURCES): Add gettime.c, settime.c,
33876         timespec.h.  Remove nanosleep.h.
33877
33878 2002-02-25  Paul Eggert  <eggert@twinsun.com>
33879
33880         * m4/acl.m4: New file.
33881         * m4/jm-macros.m4 (jm_MACROS): Require AC_FUNC_ACL.
33882         Do not check for acl or sys/acl.h, as AC_FUNC_ACL does that now.
33883
33884 2002-02-25  Paul Eggert  <eggert@twinsun.com>
33885
33886         * lib/acl.c, lib/acl.h: New files.
33887         * lib/Makefile.am (libfetish_a_SOURCES): Add acl.h, acl.c.
33888
33889 2002-02-24  Jim Meyering  <meyering@lucent.com>
33890
33891         * lib/strnlen.c (strnlen): Define-away/undef so that an inconsistent
33892         prototype in string.h (on at least AIX4.3.2.0 w/gcc-2.95.3) doesn't
33893         cause trouble.  Reported by Nelson Beebe.
33894
33895 2002-02-23  Paul Eggert  <eggert@twinsun.com>
33896
33897         * lib/path-concat.c (xpath_concat): Reorder code to pacify
33898         compilers that don't know that xalloc_die never returns.
33899
33900 2002-02-20  Jim Meyering  <meyering@lucent.com>
33901
33902         * lib/getdate.c: Regenerate using bison-1.33.
33903
33904 2002-02-17  Jim Meyering  <meyering@lucent.com>
33905
33906         * config/config.guess (main): Don't use `head -1'; it's no longer
33907         portable. Use `sed 1q' instead.
33908
33909 2002-02-16  gettextize  <bug-gnu-gettext@gnu.org>
33910
33911         * m4/codeset.m4: Upgrade to gettext-0.11.
33912         * m4/gettext.m4: Upgrade to gettext-0.11.
33913         * m4/glibc21.m4: Upgrade to gettext-0.11.
33914         * m4/iconv.m4: Upgrade to gettext-0.11.
33915         * m4/isc-posix.m4: Upgrade to gettext-0.11.
33916         * m4/lcmessage.m4: Upgrade to gettext-0.11.
33917         * m4/lib-ld.m4: New file, from gettext-0.11.
33918         * m4/lib-link.m4: New file, from gettext-0.11.
33919         * m4/lib-prefix.m4: New file, from gettext-0.11.
33920         * m4/progtest.m4: Upgrade to gettext-0.11.
33921
33922 2002-02-15  Paul Eggert  <eggert@twinsun.com>
33923
33924         * m4/prereq.m4 (jm_PREREQ_POSIXVER): New macro.
33925         (jm_PREREQ): Use it.
33926
33927 2002-02-15  Paul Eggert  <eggert@twinsun.com>
33928
33929         * lib/posixver.c, lib/posixver.h: New files.
33930         * lib/Makefile.am (libfetish_a_SOURCES): Add them.
33931
33932 2002-02-02  Paul Eggert  <eggert@twinsun.com>
33933             Bruno Haible  <bruno@clisp.org>
33934
33935         * lib/unicodeio.h (print_unicode_char): Add exit_on_error argument.
33936         (fwrite_success_callback): New declaration.
33937         * lib/unicodeio.c (unicode_to_mb): New function, extracted from
33938         print_unicode_char. Call failure callback instead of error.
33939         (fwrite_success_callback): New function.
33940         (exit_failure_callback): New function.
33941         (fallback_failure_callback): New function.
33942         (print_unicode_char): Call unicode_to_mb.
33943
33944 2002-01-26  Jim Meyering  <meyering@lucent.com>
33945
33946         * m4/jm-macros.m4 (jm_MACROS): Require autoconf-2.52g.
33947         * m4/strnlen.m4: Remove file, now that it's part of autoconf.
33948
33949 2002-01-26  Jim Meyering  <meyering@lucent.com>
33950
33951         * lib/Makefile.am (getdate$U.o): Depend on unlocked-io.h.
33952
33953 2002-01-22  Paul Eggert  <eggert@twinsun.com>
33954
33955         * m4/jm-macros.m4 (jm_MACROS): Require AC_FUNC_FSEEKO.
33956
33957 2002-01-22  Jim Meyering  <meyering@lucent.com>
33958
33959         * lib/Makefile.am (Makefile): Don't depend on $(BUILT_SOURCES).
33960         Otherwise, some versions of automake would omit the rule that makes
33961         Makefile from Makefile.in.
33962
33963 2002-01-21  Paul Eggert  <eggert@twinsun.com>
33964
33965         * lib/xmemcoll.h, lib/xmemcoll.c: New files.
33966         * lib/Makefile.am (libfetish_a_SOURCES): Add them.
33967         * lib/memcoll.c: Include errno.h, and declare errno if not defined.
33968         (memcoll): Set errno to zero if there is no error.
33969
33970         * lib/quotearg.c (quotearg_buffer_restyled):
33971         Fix bug with quoting buffers containing NUL when backslashing escapes.
33972         This bug was exposed by the other changes in this patch.
33973         (quotearg_n_options): New arg ARGSIZE.
33974         All callers changed.
33975         (quoting_options_from_style): New function.
33976         (quotearg_n_style): Use it.
33977         (quotearg_n_style_mem): New function.
33978
33979         * lib/quotearg.h (quotearg_n_style_mem): New function.
33980
33981 2002-01-19  Jim Meyering  <meyering@lucent.com>
33982
33983         * m4/jm-macros.m4 (jm_MACROS): Use AC_FUNC_STRNLEN.
33984         Remove useless quotes: DF_PROG="df".
33985         * m4/strnlen.m4: New file.
33986
33987 2002-01-16  Paul Eggert  <eggert@twinsun.com>
33988
33989         * lib/backupfile.c (ISDIGIT): Comment fix.
33990         * lib/getdate.y (ISDIGIT): Likewise.
33991         * lib/posixtm.c (ISDIGIT, year): Likewise.
33992         * lib/strverscmp.c (ISDIGIT): Likewise.
33993         * lib/userspec.c (ISDIGIT): Likewise.
33994
33995 2002-01-16  Jim Meyering  <meyering@lucent.com>
33996
33997         * lib/getdate.y: Add three semicolons, each just before a closing
33998         brace. Bison (as of version 1.31) no longer papers over that mistake.
33999
34000 2002-01-05  Jim Meyering  <meyering@lucent.com>
34001
34002         * lib/version-etc.c (version_etc_copyright): Update copyright year.
34003
34004 2001-12-19  Paul Eggert  <eggert@twinsun.com>
34005
34006         * lib/closeout.c (close_stdout_status): If ferror (stdout), do
34007         not silently exit merely because the output buffer happens to
34008         have nothing pending.
34009
34010 2001-12-18  Paul Eggert  <eggert@twinsun.com>
34011
34012         See the big note in ../ChangeLog.
34013         * lib/human.c (suffixes): Prefer K to k for 1024.
34014         (generate_suffix_backwards): New function.
34015         (human_readable_inexact): Use it.
34016         * lib/xstrtol.c (__xstrtol): If there is no number but there
34017         is a valid suffix, assume 1.  "MB" now means decimal, "MiB" binary.
34018         Accept 'K' as well as 'k'.
34019
34020 2001-12-15  Jim Meyering  <meyering@lucent.com>
34021
34022         * lib/regex.h (__restrict_arr): Update from libc.
34023
34024         * lib/mountlist.h (ME_REMOTE): Recognize file systems of type smbfs
34025         as `remote' if the name starts with `//'.  Suggested by Michael Stone.
34026         (STREQ): Define.
34027
34028 2001-12-14  Jim Meyering  <meyering@lucent.com>
34029
34030         * m4/jm-macros.m4 (jm_MACROS): Check for iswspace.
34031         Suggestion from Bruno Haible.
34032
34033 2001-12-10  Jim Meyering  <meyering@lucent.com>
34034
34035         * lib/linebuffer.c: Remove explicit declarations of xmalloc and
34036         xrealloc, Instead, include "xalloc.h".
34037         (initbuffer): Don't cast xmalloc return value to char*.
34038         (readline): Reword comment.
34039         Don't cast xrealloc return value to char*
34040         Return NULL, not 0.
34041
34042 2001-12-09  Jim Meyering  <meyering@lucent.com>
34043
34044         * lib/modechange.c (mode_compile): Add cast to avoid pedantic warning
34045         about `signed and unsigned type in conditional expression'.
34046         * lib/posixtm.c (posix_time_parse): Likewise.
34047
34048         * lib/xreadlink.c (xreadlink): Add cast to avoid a pedantic warning.
34049
34050         * lib/readtokens.c (readtoken): Declare an index to be of type unsigned
34051         to avoid a pedantic warning.
34052
34053         * lib/getstr.c: Don't include assert.h.
34054         (getstr): Remove warning-evoking assertions.
34055         Return -1 if offset parameter is out of bounds.
34056         Change the type of a local from int to size_t.
34057
34058         * lib/strftime.c (my_strftime_localtime_r): Include this function
34059         definition in the `#if ! HAVE_TM_GMTOFF' block.
34060
34061         * lib/xgethostname.c: Remove declarations of xmalloc and xrealloc.
34062         Include xalloc.h instead.
34063
34064 2001-12-02  Jim Meyering  <meyering@lucent.com>
34065
34066         * lib/tempname.c: Don't declare getenv, thus reverting the change of
34067         2001-11-18.  It's no longer necessary, now that stdlib.h is always
34068         included.
34069
34070         * lib/regex.c [!__BOUNDED_POINTERS__]: Define away __bounded,
34071         __unbounded, and __ptrvalue.  Reported by Uwe H. Steinfeld.
34072
34073 2001-11-30  Akim Demaille  <akim@epita.fr>
34074
34075         * lib/xstrdup.c: Include xalloc.h, so that xstrdup is declared
34076         before being defined.
34077
34078 2001-11-27  Paul Eggert  <eggert@twinsun.com>
34079
34080         * lib/quotearg.h (quotearg_n, quotearg_n_style):
34081         First arg is int, not unsigned.
34082         * lib/quotearg.c (quotearg_n, quotearg_n_style): Likewise.
34083         (SIZE_MAX, UINT_MAX): New macros.
34084         (quotearg_n_options): Abort if N is negative.
34085         Avoid overflow check on hosts where size_t is 64 bits and int
34086         is 32 bits, as overflow is impossible there.
34087         Fix off-by-one typo that caused unnecessary reallocation.
34088
34089 2001-11-27  Jim Meyering  <meyering@lucent.com>
34090
34091         * lib/tempname.c: Merge with version from libc.
34092         * lib/regex.c: Likewise.
34093
34094         * lib/tempname.c: Include stdlib.h unconditionally.  On some old
34095         systems for which STDC_HEADERS is 0, it was not included, resulting in
34096         a warning about an integer-to-pointer conversion problem with getenv.
34097         Reported by Volker Borchert.
34098
34099 2001-11-26  Jim Meyering  <meyering@lucent.com>
34100
34101         * lib/gtod.h: Remove file.
34102         * lib/Makefile.am (libfetish_a_SOURCES): Remove gtod.h.
34103         * lib/gettimeofday.c: Don't include gtod.h.
34104         (GTOD_init): Remove function.
34105         (rpl_gettimeofday): Do its job here instead, rather than aborting.
34106         Suggestion from Volker Borchert.
34107
34108 2001-11-23  Jim Meyering  <meyering@lucent.com>
34109
34110         * lib/hash.h (struct hash_table): Don't define here.  Merely declare
34111         it.
34112         * lib/hash.c (struct hash_table): Define it here instead.
34113
34114 2001-11-22  Jim Meyering  <meyering@lucent.com>
34115
34116         * lib/hash.h: Bracket contents of file with #ifndef HASH_H_ ... #endif.
34117
34118 2001-11-20  Jim Meyering  <meyering@lucent.com>
34119
34120         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Update comment to reflect that
34121         SunOS 4.1.4 and Solaris 2.5.1 lose, too.
34122
34123 2001-11-19  Jim Meyering  <meyering@lucent.com>
34124
34125         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Don't bother with a temporary
34126         directory.  Use "conftestXXXXXX" as the template.
34127         Suggestion from Paul Eggert.
34128
34129         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Close each descriptor
34130         immediately, so the test doesn't mistakenly hit the max-open-files
34131         limit.
34132
34133 2001-11-18  Paul Eggert  <eggert@twinsun.com>
34134
34135         * lib/tempname.c (TMP_MAX): Remove; no longer needed.
34136         (TEMPORARIES): New macro.
34137         (__gen_tempname): Use TEMPORARIES rather than TMP_MAX.  This
34138         removes an artificial limitation (e.g. HP-UX 10.20, where
34139         TMP_MAX is 17576).
34140
34141 2001-11-18  Jim Meyering  <meyering@lucent.com>
34142
34143         * m4/prereq.m4 (jm_PREREQ_TEMPNAME): Check for declaration of getenv.
34144
34145 2001-11-18  Jim Meyering  <meyering@lucent.com>
34146
34147         * lib/tempname.c [!HAVE_DECL_GETENV]: Declare getenv to avoid warning
34148         on SunOS 4.
34149
34150         * lib/Makefile.am (Makefile): Depend on $(BUILT_SOURCES), so those
34151         files will be created before anything else.
34152
34153 2001-11-17  Paul Eggert  <eggert@twinsun.com>
34154
34155         * m4/jm-winsz1.m4 (jm_WINSIZE_IN_PTEM): Do not define
34156         WINSIZE_IN_PTEM if <termios.h> defines struct winsize.
34157
34158 2001-11-17  Jim Meyering  <meyering@lucent.com>
34159
34160         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): New file and macro.
34161         Prompted by a report from Bob Proulx.
34162
34163         * m4/jm-macros.m4 (jm_MACROS): Don't test for mkstemp here.
34164         Instead, require UTILS_FUNC_MKSTEMP.
34165
34166 2001-11-17  Jim Meyering  <meyering@lucent.com>
34167
34168         * m4/jm-macros.m4 (jm_MACROS): Remove code to set POW_LIBM.
34169         Now, that's done as part of AC_FUNC_STRTOD.
34170
34171 2001-11-17  Jim Meyering  <meyering@lucent.com>
34172
34173         * lib/modechange.c (mode_adjust): Fix error introduced on 1999-04-26
34174         that made e.g., `chmod a=,o=w,g=o F' cause F to be group readable
34175         rather than group writable.  Patch by Juan F. Codagnone.
34176
34177         * lib/readtokens.c: Remove explicit declarations of xmalloc and
34178         xrealloc, Instead, include "xalloc.h".
34179
34180         * lib/mountlist.c: Include unlocked-io.h after all system headers.
34181         Remove explicit declarations of xmalloc, xrealloc,
34182         and xstrdup.  Instead, include "xalloc.h".
34183
34184         * lib/argmatch.c, closeout.c, error.c, exclude.c: Include
34185         unlocked-io.h.
34186         * lib/fatal.c, getdate.y, getpass.c, getstr.c, getusershell.c:
34187         Likewise.
34188         * lib/mountlist.c, posixtm.c, readtokens.c, readutmp.c: Likewise.
34189
34190         * lib/regex.c, sha.c, version-etc.c, yesno.c: Likewise.
34191         Reported by Padraig Brady.
34192
34193         * lib/mkstemp.c: #undef mkstemp.
34194         Include config.h.
34195         (rpl_mkstemp): Rename from mkstemp.
34196         Protoize.
34197
34198 2001-11-16  Jim Meyering  <meyering@lucent.com>
34199
34200         * lib/physmem.c [HAVE_SYS_PSTAT_H]: Include <sys/pstat.h>.
34201         (physmem_total) [HAVE_PSTAT_GETSTATIC]: If sysconf couldn't be used to
34202         determine the amount of total physical memory, use pstat_getstatic.
34203         HPUX-11 doesn't define _SC_PHYS_PAGES.
34204         (physmem_available) [HAVE_PSTAT_GETSTATIC && HAVE_PSTAT_GETDYNAMIC]:
34205         If sysconf couldn't be used to determine the amount of available
34206         physical memory, use both pstat_getstatic and pstat_getdynamic.
34207         Based on a patch from Bob Proulx.
34208
34209 2001-11-10  Jim Meyering  <meyering@lucent.com>
34210
34211         * m4/prereq.m4 (jm_PREREQ_PHYSMEM): New function.
34212         (jm_PREREQ): Use it.
34213
34214 2001-11-09  Jim Meyering  <meyering@lucent.com>
34215
34216         * m4/jm-macros.m4: Require autoconf-2.52f.
34217         (AC_FUNC_ERROR_AT_LINE, AC_FUNC_OBSTACK, AC_FUNC_STRTOD):
34218         Use these AC_-prefixed names, not the AM_-prefixed ones.
34219
34220         * m4/afs.m4 (jm_AFS): Quote the body.  Patch by Akim Demaille.
34221
34222 2001-11-05  Jim Meyering  <meyering@lucent.com>
34223
34224         * lib/xstat.in (slash_aware_lstat): Correct a misleading comment.
34225
34226 2001-11-04  Jim Meyering  <meyering@lucent.com>
34227
34228         * m4/fpending.m4: Remove unused cruft that saved, set, and restored
34229         $DEFS.
34230
34231 2001-11-03  Jim Meyering  <meyering@lucent.com>
34232
34233         * m4/jm-glibc-io.m4n (jm_FUNC_GLIBC_UNLOCKED_IO): Quote first arg
34234         of AC_DEFUN.
34235
34236         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Rework so dirfd.c doesn't have to
34237         know the name of the variable in the macro definition.
34238
34239 2001-11-03  Jim Meyering  <meyering@lucent.com>
34240
34241         * lib/argmatch.h (ARGMATCH_TO_ARGUMENT): Remove casts of first two args
34242         in argmatch_to_argument call.
34243
34244         * lib/dirfd.c (dirfd): Reflect the fact that DIR_TO_FD now takes an
34245         argument.
34246
34247         * lib/hash.c (hash_clear): Fix a bug that could lead to an infloop or
34248         e.g., a fault due to an attempt to free a NULL pointer.
34249
34250 2001-11-01  Jim Meyering  <meyering@lucent.com>
34251
34252         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): New macro.
34253         * m4/jm-macros.m4 (jm_MACROS): Require UTILS_FUNC_DIRFD.
34254
34255 2001-11-01  Jim Meyering  <meyering@lucent.com>
34256
34257         * lib/dirfd.c, lib/dirfd.h: New files.
34258         * lib/Makefile.am (libfetish_a_SOURCES): Add dirfd.h.
34259
34260         * lib/hash.c (hash_print) [TESTING]: Clean up.
34261
34262 2001-10-22  Paul Eggert  <eggert@twinsun.com>
34263
34264         * lib/hard-locale.c (alloca): Define to __builtin_alloca if __GNUC__,
34265         to avoid a warning if -Wall.
34266
34267 2001-10-22  Jeff Bailey  <jbailey@outpost.dnsalias.org>
34268
34269         * README: New file
34270         * doc/*: Add COPYING, COPYING.LIB, COPYING.DOC, fdl.texi
34271         (per RMS's instructions, this is now the canonical source)
34272         * lgpl/, gpl/: New directories.
34273
34274 2001-10-21  Paul Eggert  <eggert@twinsun.com>
34275
34276         * lib/regex.c (uintptr_t): Remove macro and decl; it's config.h's job.
34277
34278 2001-10-21  Jim Meyering  <meyering@lucent.com>
34279
34280         * lib/obstack.c (_): Honor the setting of ENABLE_NLS.  Otherwise,
34281         this code would end up calling gettext even in packages built
34282         with --disable-nls.
34283         * lib/getopt.c (_): Likewise.
34284         * lib/regex.c (_): Likewise.
34285
34286 2001-10-20  Paul Eggert  <eggert@twinsun.com>
34287
34288         * m4/error.m4 (jm_PREREQ_ERROR):
34289         Do not invoke AC_CHECK_FUNCS with strerror_r, as
34290         AC_FUNC_STRERROR_R does that.
34291         Check for strerror declaration.
34292
34293         * m4/strerror_r.m4: Add copyright notice, as nontrivial m4 files
34294         are supposed to have them these days.
34295         (AC_FUNC_STRERROR_R): Always do char* test, so that it gets cached.
34296         Merge changes from latest Autoconf CVS.
34297         Rename ac_cv_func_strerror_r_works to ac_cv_func_strerror_r_char_p,
34298         and rename HAVE_WORKING_STRERROR_R to STRERROR_R_CHAR_P, since
34299         POSIX decided to standardize on the int flavor of strerror_r.
34300
34301 2001-10-20  Paul Eggert  <eggert@twinsun.com>
34302
34303         * lib/error.c (strerror_r): Do not declare unless !_LIBC.
34304         Do not check for HAVE_DECL_STRERROR_R missing unless STRERROR_R_CHAR_P.
34305         Use strerror_r that is only a macro, even if it is not a function.
34306         (strerror): Check for HAVE_DECL_STRERROR before declaring.
34307         (private_strerror): Use prototypes, not old-style function definition.
34308         (print_errno_message): New function.
34309         Support the POSIX 'int'-flavored strerror_r, as well as the traditional
34310         char*-flavored one.
34311         (error_tail, error, error_at_line): Use it.
34312
34313 2001-10-11  Jim Meyering  <meyering@lucent.com>
34314
34315         * lib/argmatch.c (argmatch_invalid): Use quotearg_n_style (0, ...
34316         and quote_n (1, ... to avoid clobbering a buffer.
34317
34318 2001-10-05  Jim Meyering  <meyering@lucent.com>
34319
34320         * lib/Makefile.am: (libfetish_a_SOURCES): Add hash-pjw.c and
34321         hash-pjw.h.
34322         * lib/hash-pjw.c: New file (factored out of fileutils' remove.c).
34323         * lib/hash-pjw.h: New file.
34324
34325 2001-09-30  Jim Meyering  <meyering@lucent.com>
34326
34327         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): See if
34328         `struct fsstat' has the `f_fstypename' member.
34329         Use that to define FS_TYPE, which is now used to make
34330         the getfsstat link test tighter.
34331
34332 2001-09-30  Jim Meyering  <meyering@lucent.com>
34333
34334         * lib/mountlist.c [MOUNTED_GETFSSTAT]:
34335         Include <sys/ucred.h>, for Apple Darwin.
34336         Include sys/mount.h and sys/fs_types.h only if available.
34337         (FS_TYPE): Define.
34338         (read_filesystem_list): Use FS_TYPE.
34339
34340 2001-09-29  Paul Eggert  <eggert@twinsun.com>
34341
34342         * lib/exclude.c (excluded_filename): 0 -> false, since it's
34343         a boolean context.
34344
34345 2001-09-29  Jim Meyering  <meyering@lucent.com>
34346
34347         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS)
34348         [one-argument getmntent function]): Include stdio.h before mntent.h.
34349         SunOS 4.1.x needs it for the declaration of `FILE'.
34350         Patch by Volker Borchert.
34351
34352         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS)
34353         Check for these headers: sys/param.h sys/ucred.h sys/mount.h
34354         sys/fs_types.h, and make the link-test for getfsstat guard #include
34355         directives with appropriate #if HAVE_*_H tests so that we can
34356         detect getfsstat on Apple Darwin1.3.7 systems.
34357         Reported by Nelson Beebe.
34358         Fix harmless typo in cache variable name: s/getsstat/getfsstat/.
34359
34360 2001-09-28  Paul Eggert  <eggert@twinsun.com>
34361
34362         Fix bug reported by Petter Reinholdtsen for HP-UX 10.20, which
34363         #defines strtoimax.  Also treat the other strto* functions
34364         like strtoimax.
34365
34366         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX):
34367         Check for strtoul and strtoumax,
34368         as those declarations are made even in the signed case.
34369         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX):
34370         Likewise, for strtol and strtoimax.
34371
34372 2001-09-28  Paul Eggert  <eggert@twinsun.com>
34373
34374         Fix bug reported by Petter Reinholdtsen for HP-UX 10.20, which
34375         #defines strtoimax.  Also treat the other strto* functions
34376         like strtoimax.
34377
34378         * lib/xstrtol.c (strtol): Do not declare if HAVE_DECL_STRTOL.
34379         (strtoul): Do not declare if HAVE_DECL_STRTOUL.
34380         (strtoimax, strtoumax): Do not declare if already defined as a macro.
34381
34382 2001-09-26  Jim Meyering  <meyering@lucent.com>
34383
34384         Most macros in unlocked-io.h had the wrong number of arguments.
34385         * lib/gen-uio: New script.
34386         (USE_UNLOCKED_IO): Define to 1 if not already defined.
34387         * lib/unlocked-io.hin: Remove file.
34388         * lib/Makefile.am (unlocked-io.h): Rewrite to use a separate script,
34389         rather than trying to embed it here.
34390         (EXTRA_DIST): Add gen-uio.  Remove unlocked-io.hin
34391         Reported by Padraig Brady.
34392
34393 2001-09-25  Volker Borchert  <bt@teknon.de>
34394
34395         * lib/gettimeofday.c (rpl_gettimeofday): Declare local variable
34396         `result'.
34397
34398 2001-09-24  Jim Meyering  <meyering@lucent.com>
34399
34400         * m4/gettext.m4: Use the version from gettext-0.10.40, not CVS.
34401
34402 2001-09-23  Jim Meyering  <meyering@lucent.com>
34403
34404         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Add a compile-test
34405         instead of the mere test for existence of mntent.h.  The latter
34406         would get a false-positive on AIX 3.4 systems.
34407         In the outer getmntent if-block, don't die if neither of the getmntent
34408         tests succeeds.  Instead, just fall through and continue with the
34409         remaining tests.
34410
34411 2001-09-23  Jim Meyering  <meyering@lucent.com>
34412
34413         * lib/mountlist.c: Remove useless parentheses in #if directives.
34414         (MOUNTED) [!defined MOUNTED]: Define to _PATH_MOUNTED, for when
34415         the deprecated MOUNTED symbol is no longer defined in mntent.h.
34416
34417 2001-09-22  Jim Meyering  <meyering@lucent.com>
34418
34419         * m4/gettext.m4: New file.  From gettext.
34420         * m4/lcmessage.m4: Sync with gettext -- this changes only comments.
34421         * m4/progtest.m4: Likewise
34422         * m4/isc-posix.m4: Decrement serial number to sync with gettext.
34423         * m4/glibc21.m4: Likewise.
34424
34425         * m4/libintl.m4: Remove.  No longer used.
34426
34427 2001-09-22  Jim Meyering  <meyering@lucent.com>
34428
34429         * lib/localcharset.c: Update from latest gettext.
34430         * lib/config.charset: Likewise.
34431
34432 2001-09-20  Jim Meyering  <meyering@lucent.com>
34433
34434         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX): Check for declaration of
34435         strtoimax.
34436         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Check for declaration of
34437         strtoumax.
34438
34439 2001-09-20  Jim Meyering  <meyering@lucent.com>
34440
34441         * lib/xstrtol.c (strtoimax): Guard declaration with
34442         `#if !HAVE_DECL_STRTOIMAX', rather than just `#ifndef strtoimax'.
34443         The latter fails because some systems (at least rs6000-ibm-aix4.3.3.0)
34444         have their own, conflicting declaration of strtoimax in sys/inttypes.h.
34445         (strtoumax): Likewise, for completeness (it wasn't necessary).
34446
34447 2001-09-17  Paul Eggert  <eggert@twinsun.com>
34448
34449         * lib/strtoimax.c (HAVE_LONG_LONG):
34450         Redefine to HAVE_UNSIGNED_LONG_LONG if unsigned.
34451         (strtoimax): Use sizeof (long), not sizeof strtol (ptr, endptr, base),
34452         to work around bug in IBM C compiler.
34453
34454 2001-09-17  Jim Meyering  <meyering@lucent.com>
34455
34456         * m4/chown.m4, fstypename.m4, getgroups.m4, gettimeofday.m4,
34457         * m4/jm-mktime.m4, lstat.m4, malloc.m4, memcmp.m4, mkdir-slash.m4,
34458         * m4/nanosleep.m4, putenv.m4, readdir.m4, realloc.m4, rename.m4,
34459         * m4/st_dm_mode.m4, stat.m4, strerror_r.m4, timespec.m4, utimbuf.m4,
34460         * m4/utimes.m4: Use AC_DEFINE rather than AC_DEFINE_UNQUOTED,
34461         whenever the right hand side need not be expanded by the shell.
34462
34463 2001-09-16  Paul Eggert  <eggert@twinsun.com>
34464
34465         * m4/fnmatch.m4 (jm_FUNC_FNMATCH): Remove test for GNU C
34466         library.  It's not correct, as some older glibcs are buggy.
34467         fnmatch wasn't fixed until glibc 2.2.
34468
34469         Use AC_DEFINE, not AC_DEFINE_UNQUOTED, as there's no
34470         special shell magic here.
34471
34472 2001-09-16  Jim Meyering  <meyering@lucent.com>
34473
34474         * m4/mkdir-slash.m4 (UTILS_FUNC_MKDIR_TRAILING_SLASH): New file/macro.
34475         * m4/jm-macros.m4: Require it.
34476
34477 2001-09-16  Jim Meyering  <meyering@lucent.com>
34478
34479         * lib/mkdir.c: New file.
34480
34481 2001-09-15  Jim Meyering  <meyering@lucent.com>
34482
34483         * m4/jm-macros.m4: Check for help2man.
34484
34485 2001-09-11  Jim Meyering  <meyering@lucent.com>
34486
34487         * m4/host-os.m4 (UTILS_HOST_OS): New file/macro.
34488         The body, by Paul Eggert, was moved here from configure.in.
34489         * m4/jm-macros.m4: Require UTILS_HOST_OS.
34490
34491 2001-09-04  Paul Eggert  <eggert@twinsun.com>
34492
34493         * m4/prereq.m4 (jm_PREREQ_XREADLINK): New macro.
34494         (jm_PREREQ): Use it.
34495
34496 2001-09-04  Paul Eggert  <eggert@twinsun.com>
34497
34498         * lib/xreadlink.c (xreadlink): Omit size_t* arg.  All uses changed.
34499         Use ssize_t, not int, to store result of readlink.
34500         Check for ssize_t overflow as well as size_t overflow,
34501         as POSIX says the result of readlink is implementation-defined
34502         when ssize_t overflows.
34503         Remove unnecessary cast to char*.
34504         Use free+malloc instead of realloc, as the storage doesn't need
34505         to be preserved and it's clearer and can be more efficient that way.
34506         (SIZE_MAX, SSIZE_MAX): New macros, if <limits.h> doesn't declare.
34507         * lib/xreadlink.h (xreadlink): Update prototype.
34508
34509 2001-09-04  Paul Eggert  <eggert@twinsun.com>
34510
34511         * lib/xgetcwd.c: Revert some of the previous change; intead,
34512         fix the HAVE_GETCWD_NULL code to behave more like the
34513         !HAVE_GETCWD_NULL code used to.
34514
34515         Include "xalloc.h".
34516         (xgetcwd): Do not return NULL when memory is exhausted; instead,
34517         invoke xalloc_die.
34518
34519 2001-09-03  Paul Eggert  <eggert@twinsun.com>
34520
34521         * m4/prereq.m4 (jm_PREREQ_XGETCWD): Check for limits.h and
34522         sys/param.h, as pathmax.h includes them.
34523
34524 2001-09-03  Paul Eggert  <eggert@twinsun.com>
34525
34526         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_XGETCWD.
34527         (jm_PREREQ_XGETCWD): New macro.
34528
34529         * m4/getcwd.m4: New file.
34530
34531 2001-09-03  Paul Eggert  <eggert@twinsun.com>
34532
34533         * lib/xgetcwd.c: Fix the !HAVE_GETCWD_NULL code to behave more
34534         like the HAVE_GETCWD_NULL code.
34535         Include pathmax.h if not HAVE_GETCWD.
34536         Do not include xalloc.h.
34537         (INITIAL_BUFFER_SIZE): New symbol.
34538         Do not use xmalloc / xrealloc, since the caller is responsible for
34539         handling errors.  Preserve errno around `free' during failure.
34540         Do not overrun buffer when using getwd.
34541
34542 2001-09-03  Paul Eggert  <eggert@twinsun.com>
34543
34544         * lib/xgetcwd.c (xgetcwd): Use HAVE_GETCWD_NULL, not (defined
34545         __GLIBC__ && __GLIBC__ >= 2), to decide whether to use
34546         getcwd (NULL, 0).
34547
34548 2001-09-03  Paul Eggert  <eggert@twinsun.com>
34549
34550         * lib/exclude.c (fnmatch_no_wildcards): Fix confusion between
34551         usage of FNM_CASEFOLD and FNM_LEADING_DIR.  The bug was
34552         spotted by Jim Meyering.
34553
34554 2001-09-03  Jim Meyering  <meyering@lucent.com>
34555
34556         * lib/xreadlink.c (xreadlink): Preserve errno around `free' during
34557         failure.
34558
34559 2001-09-02  Jim Meyering  <meyering@lucent.com>
34560
34561         * lib/error.c: Update from GNU libc.
34562
34563 2001-09-01  Jim Meyering  <meyering@lucent.com>
34564
34565         * m4/jm-macros.m4 (jm_MACROS): Check for canonicalize_file_name.
34566         Used by df.
34567
34568 2001-09-01  Jim Meyering  <meyering@lucent.com>
34569
34570         * lib/xreadlink.c: New file.
34571         * lib/xreadlink.h: New file.
34572         * lib/Makefile.am (libfetish_a_SOURCES): Add xreadlink.c and
34573         xreadlink.h.
34574
34575         * lib/regex.c (uintptr_t) [!_LIBC]: Define to private_uintptr_t, so it
34576         doesn't conflict with sparc Solaris 7's definition in
34577         /usr/include/sys/int_types.h.
34578
34579         * lib/exclude.c: Use `""', not `<>' to #include non-system header
34580         files.
34581         (fnmatch_no_wildcards): Rewrite not to use function names, strcasecmp
34582         and strncasecmp as r-values.  Unixware didn't have declarations.
34583
34584 2001-08-31  Paul Eggert  <eggert@twinsun.com>
34585
34586         * lib/xstrtol.h: Add copyright notice.
34587         (_DECLARE_XSTRTOL): Improve quality of diagnostic for
34588         LONGINT_INVALID_SUFFIX_CHAR.
34589
34590 2001-08-31  Paul Eggert  <eggert@twinsun.com>
34591
34592         * lib/xstrtol.c (strtoimax): New decl.
34593
34594 2001-08-31  Paul Eggert  <eggert@twinsun.com>
34595
34596         * lib/xgetcwd.c: Don't include pathmax.h.
34597         Include stdlib.h and unistd.h if available.
34598         Include xalloc.h.
34599         (xmalloc, xstrdup, free): Remove decls.
34600         (xgetcwd): Don't assume sizes fit in unsigned.
34601         Check for overflow when computing sizes.
34602         Simplify reallocation code.
34603
34604 2001-08-31  Paul Eggert  <eggert@twinsun.com>
34605
34606         * lib/savedir.c (savedir): Remove size parameter, as POSIX says that
34607         a directory's st_size can have an arbitrary value, so the old
34608         usage could waste an arbitrary amount of memory.  All uses
34609         changed.
34610         * lib/savedir.h: Update prototype.
34611
34612 2001-08-31  Paul Eggert  <eggert@twinsun.com>
34613
34614         * lib/Makefile.am (libfetish_a_SOURCES): Remove strtoxmax.c.
34615
34616         * lib/strtoimax.c: Renamed from strtoxmax.c, removing the
34617         old strtoimax.c.
34618
34619         Also, make the following further changes to make this file's
34620         configuration more similar to that of strtol.c:
34621         (UNSIGNED): Renamed from STRTOUXMAX_UNSIGNED.  All uses changed.
34622         (strtoumax, uintmax_t, strtoull, strtol): Remove.
34623         (intmax_t, strtoimax, strtol, strtoll): New macros, if UNSIGNED.
34624         (strtoimax): Renamed from strtoumax.  All uses of unsigned values
34625         changed to signed values.
34626
34627         And make the following changes as well:
34628         Fix copyright notice, as 1999 was missing.
34629         (verify): New macro.
34630         (strtoimax): Check sizes at compile-time, not run-time.
34631         Prefer strtol to strtoll if both work.
34632         (main): Remove; it was not that useful and was a pain to maintain.
34633
34634         * lib/strtoumax.c: Include strtoimax.c, not strtouxmax.c.
34635
34636 2001-08-31  Jim Meyering  <meyering@lucent.com>
34637
34638         * lib/xgetcwd.c (xgetcwd): Reorganize to avoid some duplication.
34639         Use an initial, malloc'd, buffer of length 128 rather than
34640         a statically allocated one of length 1024.
34641
34642 2001-08-30  Paul Eggert  <eggert@twinsun.com>
34643
34644         Simplify code, partly by assuming autoconf 2.52 semantics.
34645
34646         * m4/Makefile.am (EXTRA_DIST): Remove uintmax_t.m4.
34647
34648         * m4/inttypes.m4 (AC_PREREQ): Bump to 2.52.
34649         (jm_AC_HEADER_INTTYPES_H): Remove; now done by autoconf in 2.52.
34650         All uses removed.
34651         (jm_AC_TYPE_INTMAX_T, jm_AC_TYPE_UINTMAX_T):
34652         Move AC_REQUIRE to next-to-top level, to avoid confusion.
34653         Use 2.52's AC_CHECK_TYPE instead of merely looking for the header.
34654         * m4/prereq.m4 (jm_PREREQ_HUMAN): Don't require
34655         jm_AC_HEADER_INTTYPES_H.
34656         * m4/jm-macros.m4 (jm_MACROS): Likewise.
34657
34658         * m4/uintmax_t.m4: Remove, as it duplicates inttypes.m4.
34659
34660         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX):
34661         Quote first arg of AC_DEFUN.
34662         Require jm_AC_TYPE_UINTMAX_T and jm_AC_TYPE_UNSIGNED_LONG_LONG
34663         since they are needed to parse the include file even if we need
34664         only xstrtoimax.  Simplify logic behind the args to AC_REPLACE.
34665         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Likewise,
34666         but with opposite signedness.
34667
34668 2001-08-30  Paul Eggert  <eggert@twinsun.com>
34669
34670         Merge 'exclude' changes from tar 1.13.22.
34671         This fixes one or two unlikely storage allocation overflow bugs,
34672         but doesn't change user-visible behavior otherwise.
34673
34674 2001-08-30  Paul Eggert  <eggert@twinsun.com>
34675
34676         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_EXCLUDE.
34677         (jm_PREREQ_EXCLUDE): New macro.
34678
34679 2001-08-30  Paul Eggert  <eggert@twinsun.com>
34680
34681         * lib/quotearg.c: BSD/OS 4.1 wchar.h requires FILE and struct
34682         tm to be declared.
34683
34684 2001-08-30  Paul Eggert  <eggert@twinsun.com>
34685
34686         * lib/hash.c: Remove '2001' from copyright notice.
34687
34688 2001-08-30  Paul Eggert  <eggert@twinsun.com>
34689
34690         * lib/full-write.h: New file.
34691         * lib/Makefile.am (libfetish_a_SOURCES): Add full-write.h.
34692         * lib/full-write.c: Correct credits, as cccp.c no longer
34693         exists and anyway it was so heavily changed from the old cccp
34694         code as to be unrecognizable.  Include full-write.h.
34695         (full_write) Return size_t, with short writes meaning failure.
34696         All callers changed.  This fixes a bug with large buffers
34697         on 64-bit hosts.
34698         * lib/utime.c: Include full-write.h.
34699
34700 2001-08-30  Paul Eggert  <eggert@twinsun.com>
34701
34702         * lib/exclude.c (bool): Declare, perhaps by including stdbool.h.
34703         (<sys/types.h>): Include only if HAVE_SYS_TYPES_H.
34704         (<stdlib.h>, <string.h>, <strings.h>, <inttypes.h>, <stdint.h>):
34705         Include if available.
34706         (<xalloc.h>): Include
34707         (SIZE_MAX): Define if <stdint.h> or <inttypes.h> doesn't.
34708         (verify): New macro.  Use it to verify that EXCLUDE macros do not
34709         collide with FNM macros.
34710         (struct patopts): New struct.
34711         (struct exclude): Use it, as exclude patterns now come with options.
34712         (new_exclude): Support above changes.
34713         (new_exclude, add_exclude_file):
34714         Initial size must now be a power of two to simplify overflow checking.
34715         (free_exclude, fnmatch_no_wildcards): New function.
34716         (excluded_filename): No longer requires options arg, as the options
34717         are determined by add_exclude.  Now returns bool, not int.
34718         (excluded_filename, add_exclude):
34719         Add support for the fancy new exclusion options.
34720         (add_exclude, add_exclude_file): Now takes int options arg.
34721         Check for arithmetic overflow when computing sizes.
34722         (add_exclude_file): xrealloc might modify errno, so don't
34723         realloc until after errno might be used.
34724
34725         * lib/exclude.h (EXCLUDE_ANCHORED, EXCLUDE_INCLUDE,EXCLUDE_WILDCARDS):
34726         New macros.
34727         (free_exclude): New decl.
34728         (add_exclude, add_exclude_file): Now takes int options arg.
34729         (excluded_filename): No longer requires options arg, as the options
34730         are determined by add_exclude.  Now returns bool, not int.
34731
34732 2001-08-30  Paul Eggert  <eggert@twinsun.com>
34733
34734         * lib/alloca.c (alloca): Arg is of type size_t, not unsigned.
34735
34736 2001-08-27  Jim Meyering  <meyering@lucent.com>
34737
34738         * lib/Makefile.am (libfetish_a_SOURCES): Add strtoxmax.c
34739
34740         * lib/version-etc.c (N_): Remove definition.
34741         Revert most of last change.
34742         Instead, simply don't mark the `Copyright...' string for translation.
34743         Based on advice from Paul Eggert.
34744
34745         * lib/strtoxmax.c: Tweak comment.
34746
34747 2001-08-26  Jim Meyering  <meyering@lucent.com>
34748
34749         * m4/jm-macros.m4: Require jm_AC_PREREQ_XSTRTOIMAX.
34750
34751         * m4/xstrtoimax.m4: New file.
34752         * m4/xstrtoumax.m4: Add comments explaining why we
34753         AC_REPLACE_FUNCS(strtol).
34754
34755 2001-08-26  Jim Meyering  <meyering@lucent.com>
34756
34757         * lib/version-etc.c (version_etc_copyright_fmt): Replace literal year
34758         of copyright with `%s' so translators don't get an untranslated
34759         message in 2002.
34760         (COPYRIGHT_YEAR): Define.
34761         (version_etc): Use fprintf rather than fputs.
34762         Suggestion from Ulrich Drepper.
34763
34764         * lib/Makefile.am (libfetish_a_SOURCES): Add xstrtoimax.c.
34765
34766         * lib/strtoll.c: New file, from GNU libc.
34767         * lib/xstrtoimax.c: New file.
34768
34769         * lib/xstrtol.h: Add xstrtoimax.
34770         * lib/strtoumax.c: New file.  Simply include "strtoumax.c".
34771         * lib/strtoimax.c: New file.  Likewise, but first define
34772         STRTOUXMAX_SIGNED.
34773
34774         * lib/strtoumax.c: Factor to work both for unsigned and signed types,
34775         ...
34776         * lib/strtoxmax.c: ... then renamed to this.
34777
34778 2001-08-18  Paul Eggert  <eggert@twinsun.com>
34779
34780         * m4/inttypes.m4: Add AC_PREREQ(2.13).
34781         (jm_AC_HEADER_INTTYPES_H): Test for intmax_t, too.
34782         (jm_AC_TYPE_INTMAX_T): New macro.
34783         (jm_AC_TYPE_UINTMAX_T): Moved here from uintmax_t.m4.
34784
34785         * m4/longlong.m4 (jm_AC_TYPE_LONG_LONG): New macro.
34786
34787         * m4/longlong.m4: Renamed from ulonglong.m4.
34788         * m4/inttypes.m4: Renamed from inttypes_h.m4.
34789         * m4/uintmax_t.m4: Removed.
34790
34791 2001-08-13  Paul Eggert  <eggert@twinsun.com>
34792
34793         * lib/Makefile.am (unlocked-io.h): Do not append "_unlocked" twice.
34794         Port to Solaris 8, where 'sed' requires a space after the 'r'
34795         command, and where sh dislikes "$/".  Clean up the spacing a bit.
34796         Redirect output to $tmp just once.
34797
34798 2001-08-12  Paul Eggert  <eggert@sic.twinsun.com>
34799
34800         * lib/addext.c (<errno.h>): Include.
34801         (errno): Declare if not defined.
34802         (addext): Work correctly when pathconf returns -1 and leaves
34803         errno alone because there is no limit.  Also, work even if
34804         pathconf returns a value greater than SIZE_MAX.
34805
34806 2001-08-12  Jim Meyering  <meyering@lucent.com>
34807
34808         * m4/afs.m4, assert.m4, bison.m4, check-decl.m4, chown.m4, d-ino.m4,
34809         d-type.m4, dos.m4, error.m4, fnmatch.m4, fpending.m4, fstypename.m4,
34810         fsusage.m4, ftruncate.m4, getgroups.m4, glibc.m4, gnu-source.m4,
34811         group-member.m4, jm-glibc-io.m4, jm-macros.m4, jm-mktime.m4,
34812         jm-winsz1.m4, jm-winsz2.m4, lchown.m4, lib-check.m4, libintl.m4,
34813         link-follow.m4, ls-mntd-fs.m4, lstat.m4, malloc.m4, mbrtowc.m4,
34814         mbstate_t.m4, mbswidth.m4, memcmp.m4, nanosleep.m4, perl.m4,
34815         prereq.m4, putenv.m4, readdir.m4, realloc.m4, regex.m4, rename.m4,
34816         rmdir-errno.m4, search-libs.m4, st_dm_mode.m4, st_mtim.m4, stat.m4,
34817         strftime.m4, timespec.m4, unlink-busy.m4, uptime.m4, utimbuf.m4,
34818         utime.m4, utimes.m4, xstrtoumax.m4:
34819         Quote the first argument in each use of AC_DEFUN.
34820
34821 2001-08-12  Jim Meyering  <meyering@lucent.com>
34822
34823         * lib/xgetcwd.c (xgetcwd) [defined __GLIBC__ && __GLIBC__ >= 2]:
34824         Simply `return getcwd (NULL, 0);'.
34825         [! (defined __GLIBC__ && __GLIBC__ >= 2)]:
34826         Use 1300 as initial value for length, not PATH_MAX.
34827
34828         * lib/pathmax.h: Clean up cpp syntax.
34829
34830 2001-08-12  Jim Meyering  <meyering@lucent.com>
34831
34832         * lib/gettimeofday.c: New file.
34833         * lib/gtod.h: New file.
34834         * lib/Makefile.am (libfetish_a_SOURCES): Add gtod.h.
34835
34836 2001-08-05  Jim Meyering  <meyering@lucent.com>
34837
34838         * m4/jm-macros.m4: Require autoconf-2.52.
34839
34840 2001-08-04  Jim Meyering  <meyering@lucent.com>
34841
34842         * lib/error.h (__attribute__): Remove `|| __STRICT_ANSI__' from #if
34843         stmt, to get in sync with glibc.
34844
34845 2001-08-03  Paul Eggert  <eggert@twinsun.com>
34846
34847         The following changes are from gettext 0.10.39 as maintained by
34848         Bruno Haible.
34849
34850         * lib/mbswidth.h (MBSW_REJECT_UNPRINTABLE, MBSW_REJECT_INVALID):
34851         Renamed from MBSW_ACCEPT_UNPRINTABLE and MBSW_ACCEPT_INVALID
34852         with inverted sense.  All uses changed.
34853
34854         * lib/mbswidth.c: Don't include <limits.h>.
34855         Include <stdlib.h> and <string.h> unconditionally.
34856         (iswcntrl, mbsinit, ISCNTRL): New macros.
34857         (mbsnwidth): Use K&R style function declarations.
34858         Don't bother checking for MB_LEN_MAX == 1, since the compiler
34859         can optimize it when MB_CUR_MAX == 1.
34860         The width of control characters is zero, not 1.
34861
34862 2001-08-03  Paul Eggert  <eggert@twinsun.com>
34863
34864         The following changes are from gettext 0.10.39 as maintained by
34865         Bruno Haible, except that getline.m4 continues to use AC_LIBOBJ.
34866
34867         * m4/codeset.m4: Upgrade to serial AM1.
34868         (AM_LANGINFO_CODESET): Renamed from jm_LANGINFO_CODESET;
34869         all uses changed.  Quote first arg of AC_DEFUN.
34870         (am_cv_langinfo_codeset): Renamed from jm_cv_langinfo_codeset.
34871
34872         * m4/iconv.m4: Upgrade to serial AM2.
34873         (AM_ICONV): Renamed from jm_ICONV; all uses changed.
34874         Add --with-libconv-prefix.
34875         Quote first arg of AC_DEFUN.  Add description for ICONV_CONST.
34876         (am_cv_func_iconv): Renamed from jm_cv_func_iconv.
34877         (am_cv_lib_iconv): Renamed from jm_cv_lib_iconv.
34878         (am_cv_proto_iconv): Renamed from jm_cv_proto_iconv.
34879         * m4/jm-macros.m4 (jm_MACROS): Reflect s/jm_/AM_/ renamings.
34880
34881         * m4/c-bs-a.m4 (AC_C_BACKSLASH_A): Quote first arg of AC_DEFUN.
34882         * m4/getline.m4 (AM_FUNC_GETLINE): Likewise.
34883         * m4/glibc21.m4 (jm_GLIBC21): Likewise.
34884         * m4/inttypes_h.m4 (jm_AC_HEADER_INTTYPES_H): Likewise.
34885         * m4/isc-posix.m4 (AC_ISC_POSIX): Likewise.
34886         * m4/lcmessage.m4 (AM_LC_MESSAGES): Likewise.
34887         * m4/progtest.m4 (AM_PATH_PROG_WITH_TEST): Likewise.
34888         * m4/uintmax_t.m4 (jm_AC_TYPE_UINTMAX_T): Likewise.
34889         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Likewise.
34890
34891         * m4/getline.m4 (AM_FUNC_GETLINE): Don't bother checking for
34892         string.h any more.
34893
34894         * m4/progtest.m4 (AM_PATH_PROG_WITH_TEST): If not found, print "no",
34895         not the default value.
34896
34897         2001-06-25  Bruno Haible  <haible@clisp.cons.org>
34898         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Don't require AM_C_PROTOTYPES.
34899         Also check for mbsinit.  Needed for SCO 3.2v5.0.2.
34900         Also include <string.h>; this is where AIX 3.2.5 declares wcwidth.
34901         Also check for iswcntrl, used for wcwidth fallback.
34902         Use AC_TRY_COMPILE to emulate AC_CHECK_DECLS, for portability
34903         to Autoconf 2.13.
34904
34905 2001-08-03  Jim Meyering  <meyering@lucent.com>
34906
34907         * m4/mbrtowc.m4 (jm_FUNC_MBRTOWC): Use `#include', not `@%:@include',
34908         as it was in the original.  Reported by Paul Eggert.
34909
34910 2001-07-16  Jim Meyering  <meyering@lucent.com>
34911
34912         * m4/gettimeofday.m4: New file.
34913         Prompted by a report from Bernhard Baehr.
34914
34915 2001-07-15  Jim Meyering  <meyering@lucent.com>
34916
34917         * m4/Makefile.am.in (Makefile.am): Remove most of the unlocked-io.h
34918         stuff. Now it's in ../Makefile.cfg.
34919
34920 2001-07-15  Jim Meyering  <meyering@lucent.com>
34921
34922         * lib/Makefile.am (EXTRA_DIST): Add unlocked-io.hin.
34923         (BUILT_SOURCES): Add unlocked-io.h.
34924         (io_functions): Define.
34925         (unlocked-io.h): New rule.
34926         (DISTCLEANFILES): Add unlocked-io.h.
34927         (all-local): Depend on unlocked-io.h, to ensure it is created.
34928
34929         * lib/unlocked-io.hin: New file
34930
34931         * lib/regex.c: Update from glibc.
34932
34933 2001-07-05  Jim Meyering  <meyering@lucent.com>
34934
34935         * lib/Makefile.am (noinst_HEADERS): Remove definition, per new automake
34936         recommendation.
34937         (libfetish_a_SOURCES): Put all .h files here instead.
34938         Remove a thus-exposed (better checks in automake) duplicate and
34939         two unnecessary .h files.
34940
34941 2001-07-04  Jim Meyering  <meyering@lucent.com>
34942
34943         * m4/Makefile.am.in (glibc-io.struct): New target.  Rework the code
34944         that generates jm-glibc-io.m4 so that it doesn't trigger any make
34945         distcheck failure.
34946
34947 2001-07-02  Jim Meyering  <meyering@lucent.com>
34948
34949         The following changes were prompted by suggestions from Bruno Haible.
34950
34951         * m4/jm-glibc-io.m4n: New file, the template from which jm-glibc-io.m4
34952         is now generated.
34953         * m4/Makefile.am.in (Makefile.am): Include jm-glibc-io.m4n in emitted
34954         definition of EXTRA_DIST.
34955         (Makefile.am): Emit the dependency, `all-local: jm-glibc-io.m4' to
34956         ensure that the generated file is created/updated whenever the list
34957         of $(unlocked_functions) is changed.
34958         (jm-glibc-io.m4): New rule.
34959         (unlocked-io.h): New rule -- currently unused.
34960
34961 2001-06-24  Jim Meyering  <meyering@lucent.com>
34962
34963         * m4/regex.m4 (jm_INCLUDED_REGEX): Use a quadrigraph to represent an
34964         unmatched right bracket, rather than kludging it with an extra,
34965         falsely-matching quote in a comment.  Patch by Akim Demaille.
34966
34967 2001-06-11  Jim Meyering  <meyering@lucent.com>
34968
34969         * lib/regex.c: Update from GNU libc.
34970
34971 2001-05-27  Jim Meyering  <meyering@lucent.com>
34972
34973         * m4/prereq.m4 (jm_PREREQ_READUTMP): Check for ut_type in struct utmpx.
34974         Check for ut_type in struct utmp.
34975
34976 2001-05-27  Jim Meyering  <meyering@lucent.com>
34977
34978         * lib/readutmp.h (UT_TYPE): Define.
34979
34980 2001-05-24  Jim Meyering  <meyering@lucent.com>
34981
34982         * lib/argmatch.c: Include "quote.h".
34983         (argmatch_invalid): Remove explicit `' quotes.  Instead, use the
34984         quote function.  Reported by Göran Uddeborg.
34985
34986 2001-05-22  Jim Meyering  <meyering@lucent.com>
34987
34988         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't use AC_LIBOBJ(strftime),
34989         now that we use the package-supplied version unconditionally.
34990         (jm_FUNC_STRFTIME): Don't replace strftime, for the same reason.
34991
34992 2001-05-21  Jim Meyering  <meyering@lucent.com>
34993
34994         * m4/regex.m4: Change a couple backticks to single quotes to avoid
34995         shell syntax errors.
34996
34997 2001-05-21  Alexandre Duret-Lutz  <duret_g@epita.fr>
34998
34999         * m4/dos.m4 (jm_AC_DOS): Check for _WIN32, __WIN32__, and __MSDOS__.
35000
35001 2001-05-20  Paul Eggert  <eggert@twinsun.com>
35002
35003         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME):
35004         Don't bother to check library strftime, since
35005         we'll be using our own my_strftime function anyway.
35006         Define my_strftime instead of strftime.
35007
35008 2001-05-20  Alexandre Duret-Lutz  <duret_g@epita.fr>
35009
35010         * lib/dirname.c (dir_name): Compute append_dot using path, not newpath
35011         which is not yet declared.
35012
35013 2001-05-15  Jim Meyering  <meyering@lucent.com>
35014
35015         * m4/regex.m4: Use proper quoting so brackets appear in the test
35016         program.
35017         Reported by, and with help from, Bruno Haible.
35018
35019 2001-05-13  Jim Meyering  <meyering@lucent.com>
35020
35021         * m4/jm-macros.m4 (major_t, minor_t): Define to unsigned int if
35022         undefined.
35023
35024 2001-05-11  Paul Eggert  <eggert@twinsun.com>
35025
35026         dirname code cleanup.  base_name now behaves more compatibly
35027         with POSIX basename when given file names that have trailing
35028         slashes, and similarly for dir_name.  Add new primitives
35029         base_len and dir_len.  Put the directory-name-related decls
35030         into dirname.h.
35031
35032         * lib/addext.c (ISSLASH, base_name): Remove; now in dirname.h.
35033         * lib/backupfile.c (base_name): Likewise.
35034         * lib/basename.c (FILESYSTEM_PREFIX_LEN, PARAMS, ISSLASH): Likewise.
35035         * lib/dirname.c (FILESYSTEM_PREFIX_LEN, ISSLASH): Likewise.
35036         * lib/makepath.c (strip_trailing_slashes): Likewise.
35037         * lib/path-concat.c (DIRECTORY_SEPARATOR, FILESYSTEM_PREFIX_LEN,
35038         ISSLASH): Likewise.
35039         * lib/rename.c (strip_trailing_slashes): Likewise.
35040         * lib/same.c (base_name): Likewise.
35041         * lib/stripslash.c (ISSLASH): Likewise.
35042
35043         * lib/addext.c: Include <dirname.h> after size_t is defined.
35044         * lib/backupfile.c: Likewise.
35045
35046         * lib/addext.c (addext): Use base_len to trim redundant
35047         trailing slashes instead of doing it ourselves.
35048         But do not trim the last slash if it is not redundant.
35049
35050         * lib/backupfile.c (find_backup_file_name,
35051         max_backup_version): Use base_len instead of rolling it ourselves.
35052         Handle the case of "" and (on DOS) "C:" correctly.
35053
35054         * lib/basename.c: Do not include <stdio.h>, <assert.h>; no longer
35055         needed. Include <string.h>, <dirname.h>.
35056         (base_name): Allow file names ending in slashes, other than names
35057         that are all slashes.  In this case, return the basename followed
35058         by the slashes.  This is more general, and can be used in places
35059         where the original base_name purposely had an assertion failure.
35060         (base_len): New function.
35061
35062         * lib/dirname.c: Include <string.h> instead of <stdlib.h>.
35063         Do not include <assert.h>; no longer needed.
35064         Include xalloc.h.
35065         (memrchr): Remove decl.
35066         (dir_name_r): Remove.
35067         (dir_len): Renamed from dirlen.  All callers changed.
35068         Rewrite in terms of base_name, for simplicity and consistency.
35069         (dir_name): Never return NULL.  All callers changed.
35070         Do not include <stdlib.h> in test program; no longer needed.
35071         return 0; is fine for test program.
35072
35073         * lib/dirname.h (DIRECTORY_SEPARATOR, ISSLASH, FILESYSTEM_PREFIX_LEN):
35074         New macros.
35075         (base_name, base_len, dir_len, strip_trailing_slashes): New decls.
35076
35077         * lib/path-concat.c (path_concat): Use base_len to compute
35078         base length, not strlen; this means we cannot rely on memcpy
35079         to null-terminate.
35080
35081         * lib/same.c (STREQ): Remove.
35082         (same_name): Handle the case where the basename ends in trailing '/'.
35083
35084         * lib/stripslash.c (strip_trailing_slashes): Return nonzero if
35085         a slash was stripped.  Do not strip the last slash after a
35086         file system prefix.
35087
35088 2001-05-11  Paul Eggert  <eggert@twinsun.com>
35089
35090         * lib/Makefile.am (libfetish_a_SOURCES):
35091         Add strftime.c, since we now compile it on all hosts.
35092
35093         * lib/strftime.c (my_strftime):
35094         Define to nstrftime if emacs, but only if my_strftime is not defined.
35095         (extra_args, extra_args_spec, extra_args_spec_iso): Rename from
35096         ut_argument, ut_argument_spec, ut_argument_spec_iso, respectively.
35097         Add one more extra argument: a nanoseconds value.
35098         All uses changed.
35099         (ns): New macro.
35100         (my_strftime function): Add %N format.
35101         (emacs_strftimeu): Renamed from emacs_strftime,
35102         with extra ut argument.
35103
35104 2001-05-09  Paul Eggert  <eggert@twinsun.com>
35105
35106         * m4/jm-macros.m4 (jm_MACROS): Do not check for fseeko; no longer used.
35107
35108 2001-04-21  Jim Meyering  <meyering@lucent.com>
35109
35110         * m4/rmdir-errno.m4: Write to a new file, so that a restrictive umask
35111         doesn't interfere.
35112
35113 2001-04-21  Alexandre Duret-Lutz  <duret_g@epita.fr>
35114
35115         * m4/ftruncate.m4: Check for chsize.
35116         Link with ftruncate.o unconditionally if ftruncate is missing.
35117         This was required when cross-compiling to i586-mingw32msvc.
35118
35119 2001-04-08  Jim Meyering  <meyering@lucent.com>
35120
35121         * lib/getdate.y (get_date): Set tm_isdst to -1 to ensure that it is
35122         recomputed; that's necessary when the offset spans a DST transition.
35123         Patch by David J. MacKenzie.  Reported by Hon-Yin Kok.
35124
35125 2001-04-02  Jim Meyering  <meyering@lucent.com>
35126
35127         * lib/regex.h, regex.c: Update from GNU libc.
35128
35129 2001-03-24  Jim Meyering  <meyering@lucent.com>
35130
35131         * m4/jm-macros.m4: Require autoconf-2.49d.
35132
35133 2001-03-20  Bruno Haible  <haible@clisp.cons.org>
35134
35135         * m4/iconv.m4 (jm_ICONV): Recommend GNU libiconv.
35136
35137 2001-03-19  Paul Eggert  <eggert@twinsun.com>
35138
35139         * lib/version-etc.c (version_etc_copyright): Update to 2001.
35140
35141 2001-03-17  Jim Meyering  <meyering@lucent.com>
35142
35143         * m4/memcmp.m4 (jm_AC_FUNC_MEMCMP): Remove my copy of AC_FUNC_MEMCMP,
35144         now that the version in autoconf is equivalent.
35145         (jm_FUNC_MEMCMP): Adjust to use AC_FUNC_MEMCMP.
35146
35147         * m4/error.m4 (jm_PREREQ_ERROR): Invoke AC_FUNC_STRERROR_R.
35148         Suggestion from Akim Demaille.
35149
35150         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_TEMPNAME.
35151         (jm_PREREQ_TEMPNAME): New function.
35152
35153 2001-03-16  Paul Eggert  <eggert@twinsun.com>
35154
35155         * lib/tempname.c (uint64_t): Define to uintmax_t if
35156         not defined, and if UINT64_MAX is not defined.
35157         Required at least for Vax Ultrix4.3, which doesn't define uint64_t.
35158         Reported by John David Anglin.
35159
35160 2001-03-15  Bruno Haible  <haible@clisp.cons.org>
35161
35162         * lib/localcharset.c (locale_charset): Allow wildcard syntax. Also
35163         resolve alias if codeset is empty.
35164         * lib/config.charset (BeOS): Use wildcard syntax.
35165
35166 2001-03-13  Jim Meyering  <meyering@lucent.com>
35167
35168         * lib/path-concat.c (path_concat)
35169         [FILESYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX]: Don't insert a backslash when
35170         concatenating e.g., `C:' and `foo'.
35171         From Bruno Haible.
35172
35173 2001-03-06  Bruno Haible  <haible@clisp.cons.org>
35174
35175         * lib/localcharset.c (locale_charset): Don't use
35176         setlocale(LC_CTYPE,NULL). Don't return NULL.
35177         * lib/unicodeio.c (print_unicode_char): Simplify accordingly.
35178
35179 2001-03-06  Bruno Haible  <haible@clisp.cons.org>
35180
35181         * lib/config.charset: Update for FreeBSD 4.2 and OSF/1 5.1. Add
35182         support for DOS/DJGPP.
35183
35184 2001-03-01  Paul Eggert  <eggert@twinsun.com>
35185
35186         * m4/jm-macros.m4 (jm_MACROS): Use mkstemp replacement if the system
35187         lacks mkstemp.  Compile our own tempname.c if we compile our own
35188         mkstemp.c, as mkstemp relies on tempname.
35189
35190 2001-03-01  Jim Meyering  <meyering@lucent.com>
35191
35192         * m4/dos.m4 (jm_AC_DOS): Remove extra backslashes, now that
35193         AH_VERBATIM really does output its argument verbatim.
35194
35195 2001-02-28  Paul Eggert  <eggert@twinsun.com>
35196
35197         * lib/Makefile.am (libfetish_a_SOURCES):
35198         Add dup-safer.c, fopen-safer.c.
35199         (noinst_HEADERS): Add stdio-safer.h, unistd-safer.h.
35200
35201         * lib/dup-safer.c, lib/fopen-safer.c, lib/stdio-safer.h:
35202         * lib/unistd-safer.h: New files.
35203
35204 2001-02-25  Paul Eggert  <eggert@twinsun.com>
35205
35206         The mkstemp replacement is taken from glibc 2.2.2, with some
35207         portability fixes for use outside glibc, as follows:
35208
35209         * lib/tempname.c (struct_stat64): New macro.
35210         (direxists, __gen_tempname): Use it.
35211         This avoids a portability problem with Solaris 8.
35212
35213         * lib/tempname.c (<config.h>): Include if HAVE_CONFIG_H.
35214         (<stddef.h>, <stdint.h>, <string.h>):
35215         Include only if STDC_HEADERS || _LIBC.
35216         (<fcntl.h>): Include only if HAVE_FCNTL_H || _LIBC.
35217         (<unistd.h>): Include only if HAVE_UNISTD_H || _LIBC.
35218         (<sys/time.h>): Include only if HAVE_SYS_TIME_H || _LIBC.
35219         (__set_errno): Define this macro if <errno.h> doesn't.
35220         (P_tmpdir, TMP_MAX, __GT_FILE, __GT_BIGFILE, __GT_DIR, __GT_NOCREATE):
35221         Define these macros if <stdio.h> doesn't.
35222         (S_ISDIR, S_IRUSR, S_IWUSR, S_IXUSR):
35223         Define these macros if <sys/stat.h>
35224         doesn't.  Ignore <sys/stat.h> S_ISDIR if STAT_MACROS_BROKEN.
35225         (stat64, __getpid, __gettimeofday, __mkdir, __open, __open64, lxstat64,
35226         __xstat64): Define if not _LIBC.
35227         (__secure_getenv): Define if ! (HAVE___SECURE_GETENV || _LIBC).
35228         (__gen_tempname): Invoke gettimeofday only if
35229         HAVE_GETTIMEOFDAY || _LIBC;
35230         otherwise, fall back on plain "time".
35231         Use macros like S_IRUSR | S_IWUSR rather than octal values like 0600.
35232
35233         * lib/mkstemp.c (__GT_FILE): Define to zero if not defined.
35234
35235         * lib/mkstemp.c, lib/tempname.c: New files, taken from glibc 2.2.2.
35236
35237 2001-02-18  Paul Eggert  <eggert@twinsun.com>
35238
35239         * m4/jm-macros.m4 (jm_CHECK_ALL_HEADERS): Check for sys/resource.h.
35240
35241 2001-02-17  Paul Eggert  <eggert@twinsun.com>
35242
35243         * m4/mbrtowc.m4: New file, defining jm_FUNC_MBRTOWC.
35244         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH):
35245         Use jm_FUNC_MBRTOWC, not AC_CHECK_FUNCS(mbrtowc).
35246         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Likewise.
35247
35248 2001-02-17  Paul Eggert  <eggert@twinsun.com>
35249
35250         * lib/mbswidth.c, quotearg.c (mbrtowc, mbsinit):
35251         Remove workaround macros for hosts that have mbrtowc but not
35252         mbstate_t, as we now insist on proper declarations for both
35253         before using mbrtowc.
35254
35255 2001-02-17  Jim Meyering  <meyering@lucent.com>
35256
35257         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Don't check for
35258         getmntent via AC_CHECK_FUNCS, since that would get a `no' and disrupt
35259         further attempts by AC_FUNC_GETMNTENT to check with e.g., -lgen on
35260         UnixWare 7.1.1.
35261
35262         * m4/mbrtowc.m4 (jm_FUNC_MBRTOWC): Adapt to use AC_CACHE_CHECK etc.,
35263         rather than AC_CACHE_VAL.
35264
35265 2001-02-17  Jim Meyering  <meyering@lucent.com>
35266
35267         * lib/strtoul.c: Sync from GNU libc.  Use double quotes, not <...>
35268         around included file name.
35269
35270         * lib/strnlen.c (__strnlen): Merge in a change from GNU libc.
35271
35272         * lib/strftime.c: Update from GNU libc (the only changes were to
35273         comments).
35274
35275 2001-02-17  Jim Meyering  <meyering@lucent.com>
35276
35277         * lib/regex.c: Update from libc.
35278
35279 2001-02-17  Bruno Haible  <haible@clisp.cons.org>
35280
35281         * lib/mbswidth.h (mbswidth): Also define as macro, to avoid prototype
35282         clash.
35283
35284 2001-02-16  Paul Eggert  <eggert@twinsun.com>
35285
35286         * lib/alloca.c (malloc): Undef before defining, since stdlib.h
35287         may have defined it.  Needed for Encore Umax-3.0.9.16b systems.
35288         Reported by Mark Hounschell via Paul Eggert.
35289
35290 2001-02-07  Jim Meyering  <meyering@lucent.com>
35291
35292         * m4/regex.m4 (jm_INCLUDED_REGEX): Add a test for the latest bug.
35293
35294 2001-02-05  Jim Meyering  <meyering@lucent.com>
35295
35296         * m4/jm-macros.m4: Require autoconf-2.14d (not yet released), because
35297         it includes the patch required for `large file' support with at least
35298         HP-UX's 10.20 /bin/cc.
35299
35300 2001-02-03  Jim Meyering  <meyering@lucent.com>
35301
35302         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Restore prior use of
35303         AS_IF, now that it works once again (mysteriously).
35304         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Likewise.
35305
35306 2001-01-30  Jim Meyering  <meyering@lucent.com>
35307
35308         Don't use filenames that are 8.3-equivalent to "conftest" on DOS.
35309         * m4/chown.m4: Rename conftestchown to conftest.chown.
35310         * m4/rename.m4: s/conftestdir/conftest.d1/ and
35311         s/conftestdir2/conftest.d2/.
35312         * m4/utimes.m4: s/conftestdata/conftest.data/
35313         Inspired by Pavel Roskin's change in autoconf.
35314
35315 2001-01-30  Bruno Haible  <haible@clisp.cons.org>
35316
35317         * lib/config.charset: Update for FreeBSD 4.2.
35318
35319 2001-01-27  Jim Meyering  <meyering@lucent.com>
35320
35321         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Open-code what was
35322         a use of AS_IF.
35323         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Likewise.
35324
35325 2001-01-26  Jim Meyering  <meyering@lucent.com>
35326
35327         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Check for stddef.h, now that
35328         quotearg.c includes it.
35329
35330 2001-01-26  Jim Meyering  <meyering@lucent.com>
35331
35332         * lib/quotearg.c: Include stddef.h.
35333         * lib/quote.c: Include stddef.h.
35334         Reported by Axel Kittenberger.
35335
35336         * lib/xmalloc.c [HAVE_DONE_WORKING_MALLOC_CHECK]: Enclose error-evoking
35337         line in double quotes so that it evokes a better diagnostic.
35338         [HAVE_DONE_WORKING_REALLOC_CHECK]: Likewise.
35339         Reported by Axel Kittenberger.
35340
35341 2001-01-24  Stefan Monnier  <monnier@cs.yale.edu>
35342
35343         * regex.c (mutually_exclusive_p): Don't blindly handle `charset_not'
35344         as if it was a `charset'.
35345
35346 2001-01-21  Bruno Haible  <haible@clisp.cons.org>
35347
35348         * m4/iconv.m4 (jm_ICONV): Also check whether the iconv declaration
35349         has const.
35350
35351 2001-01-21  Bruno Haible  <haible@clisp.cons.org>
35352
35353         * lib/unicodeio.c (print_unicode_char): Cast the second iconv() arg,
35354         to avoid a warning.  Add back 'const' to inptr.
35355
35356 2001-01-20  Jim Meyering  <meyering@lucent.com>
35357
35358         Be sure that headers are checked before used in code compiled
35359         for the type checks.
35360         * m4/jm-macros.m4 (jm_MACROS): Remove all header checks.
35361         In place of that, invoke jm_CHECK_ALL_TYPES.
35362         (jm_CHECK_ALL_HEADERS): New functions with the above checks.
35363         (jm_CHECK_ALL_TYPES): Require jm_CHECK_ALL_HEADERS.
35364         Alan Iwi reported a build failure on an f300-fujitsu-uxpv4.1_ES;
35365         The check for ssize_t was mistakenly run before the test for unistd.h.
35366
35367         The configure-time check for stdbool.h was missing.
35368         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_HASH.
35369         (jm_PREREQ_HASH): New function.
35370
35371 2001-01-17  Jim Meyering  <meyering@lucent.com>
35372
35373         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Use AS_IF, not AS_IFELSE,
35374         for autoconf-2.49c.
35375         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Likewise.
35376
35377 2001-01-16  Jim Meyering  <meyering@lucent.com>
35378
35379         * lib/basename.c: Include <stdio.h>, needed by assert on SunOS 4.
35380         From Bruno Haible.
35381
35382 2001-01-14  Jim Meyering  <meyering@lucent.com>
35383
35384         * m4/rename.m4: Use temporary directories named conftestdir{,2}, not
35385         foo and bar.  Create conftestdir/ in the script, not in the C code.
35386         Remove directories in the script, not in the C code.
35387         Remove conftestdir{,2} before trying to create the directory.
35388         Make the entire configure script fail if the mkdir fails.
35389
35390 2001-01-14  Jim Meyering  <meyering@lucent.com>
35391
35392         * lib/rename.c: New file.  From Volker Borchert.
35393         Include stdlib.h, string.h or strings.h, and xalloc.h.
35394         Use strip_trailing_slashes rather than open-coding it.
35395
35396 2001-01-03  Paul Eggert  <eggert@twinsun.com>
35397
35398         * lib/strftime.c: Sync with glibc time/strftime.c 1.81.
35399
35400 2001-01-03  Jim Meyering  <meyering@lucent.com>
35401
35402         * lib/unicodeio.c (print_unicode_char): Remove `const' from declaration
35403         of local `inptr' to avoid warning with some system declarations of
35404         iconv.
35405
35406 2001-01-02  Volker Borchert  <bt@teknon.de>
35407
35408         * m4/rename.m4: New file.
35409         * m4/jm-macros.m4 (jm_MACROS): Require vb_FUNC_RENAME.
35410
35411 2001-01-01  Jim Meyering  <meyering@lucent.com>
35412
35413         * m4/prereq.m4 (jm_PREREQ_READUTMP): Include utmp.h (if available),
35414         even on systems with utmpx.h.  It's necessary for the declaration of
35415         utmp's ut_user member.  Reported by Andreas Jaeger.
35416
35417         * m4/check-decl.m4 (jm_CHECK_DECLS): Include grp.h and pwd.h if
35418         available. They are required for the declarations of getgrgid and
35419         getpwuid resp.
35420         (_jm_DECL_HEADERS): Check for grp.h and pwd.h.
35421         Reported by Andreas Jaeger.
35422
35423 2001-01-01  Alexandre Duret-Lutz  <duret_g@epita.fr>
35424
35425         * m4/libintl.m4 (AM_GNU_GETTEXT): Define MKINSTALLDIRS by
35426         expanding the value of $ac_aux_dir, as in AM_MISSING_HAS_RUN,
35427         so `make install' also works in VPATH builds.
35428
35429 2000-12-31  Alexandre Duret-Lutz  <duret_g@epita.fr>
35430
35431         * m4/libintl.m4 (AM_WITH_NLS): When using AC_CONFIG_AUX_DIR,
35432         prepend $(top_srcdir) to the value of MKINSTALLDIRS so that it
35433         can be used in subdirectories.
35434
35435 2000-12-29  Paul Eggert  <eggert@twinsun.com>
35436
35437         * lib/modechange.c: Do not assume that mode_t uses the
35438         traditional octal encoding.  E.g. "chmod 1 FOO" should set
35439         the other-execute bit of FOO even if S_IXOTH != 1.
35440
35441         (SUID, SGID, SVTX, RUSR, WUSR, XUSR, RGRP, WGRP, XGRP, ROTH,
35442         WOTH, XOTH, ALLM): New macros.
35443         (S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR,
35444          S_IRGRP, S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH):
35445         Use them.
35446         (S_ISGID): Fix typo; it was defaulting to the same value as S_ISUID.
35447         (S_IRWXU, S_IRWXG, S_IRWXO): Specify defaults in terms of the above.
35448         (mode_compile):
35449         No need to use uintmax_t; unsigned long is long enough.
35450         Don't bother to get suffix since we don't use it.
35451
35452 2000-12-26  Jim Meyering  <meyering@lucent.com>
35453
35454         * m4/dos.m4 (jm_AC_DOS): Rewrite (though it's still a stub) to work
35455         better with autoheader.
35456
35457 2000-12-24  Jim Meyering  <meyering@lucent.com>
35458
35459         * lib/hash.c (is_prime): Return explicit boolean values.
35460         (hash_get_first): Return NULL to appease Irix5.6's 89.
35461         Reported by Nelson Beebe.
35462
35463 2000-12-19  Bruno Haible  <haible@clisp.cons.org>
35464
35465         * lib/localcharset.c (locale_charset): Add support for Win32.
35466
35467 2000-12-18  Paul Eggert  <eggert@twinsun.com>
35468
35469         * lib/physmem.h, lib/physmem.c: New files.
35470
35471         * lib/Makefile.am (libfetish_a_SOURCES): Add physmem.c.
35472         (noinst_HEADERS): Add physmem.h.
35473
35474         * lib/xstrtol.c (__xstrtol): Add undocumented suffixes 'g' and
35475         't' for compatibility with Solaris 8 sort.
35476
35477 2000-12-18  Bruno Haible  <haible@clisp.cons.org>
35478
35479         * lib/config.charset: Add support for BeOS.
35480
35481 2000-12-17  Jim Meyering  <meyering@lucent.com>
35482
35483         * m4/dos.m4 (jm_AC_DOS): New file and macro.
35484         * m4/jm-macros.m4 (jm_MACROS): Require jm_AC_DOS.
35485
35486 2000-12-16  Jim Meyering  <meyering@lucent.com>
35487
35488         This bug had a serious impact on chown: `chown N:M FILE' (for integer
35489         N and M) would have treated it like `chown N:N FILE'.
35490
35491         * lib/userspec.c (parse_user_spec): Fix typo: s/u/g/.
35492
35493 2000-12-16  Jim Meyering  <meyering@lucent.com>
35494
35495         * lib/getusershell.c [!SHELLS_FILE && __DJGPP__]: Define
35496         SHELLS_FILE to a file name that's useful on djgpp systems.
35497         Include stdlib.h.
35498         (ADDITIONAL_DEFAULT_SHELLS): Define.
35499         (default_shells): Prepend ADDITIONAL_DEFAULT_SHELLS.
35500         Based mostly on a patch from Prashant TR.
35501
35502 2000-12-16  Bruno Haible  <haible@clisp.cons.org>
35503
35504         * lib/config.charset: Add ISO-8859-3, BIG5HKSCS, GB18030, JOHAB,
35505         VISCII, CP874, CP949, CP950, CP1250, CP1253, CP1254, CP1255, CP1256,
35506         CP1257 to the list of canonical encodings. Rename EUC-CN to GB2312.
35507
35508 2000-12-08  Andreas Schwab  <schwab@suse.de>
35509
35510         * lib/mbswidth.c (mbsnwidth): Don't loop endlessly when called with an
35511         invalid mulitbyte sequence and with the MBSW_ACCEPT_INVALID flag set.
35512
35513 2000-12-07  Jim Meyering  <meyering@lucent.com>
35514
35515         * lib/stripslash.c (ISSLASH): Define.
35516         (strip_trailing_slashes): Use ISSLASH rather than comparing against
35517         `/'.
35518         From Prashant TR.
35519
35520         * lib/dirname.c (FILESYSTEM_PREFIX_LEN): Define.
35521         (dir_name_r): Declare this function as static.
35522         [BACKSLASH_IS_PATH_SEPARATOR]: Fix a bug that'd
35523         manifest itself on a name containing a mix of slashes and
35524         backslashes.
35525         Make this function work with names starting with a DOS-style
35526         drive letter and colon prefix.
35527         (dir_name): Append `.' if necessary.
35528         Based mostly on patches from Prashant TR and Eli Zaretskii.
35529
35530         * lib/dirname.h (dir_name_r): Remove prototype.
35531
35532 2000-12-06  Paul Eggert  <eggert@twinsun.com>
35533
35534         * m4/off_t-format.m4: Remove this file.
35535         * m4/jm-macros.m4 (jm_MACROS): Remove jm_SYS_OFF_T_PRINTF_FORMAT.
35536
35537 2000-12-06  Jim Meyering  <meyering@lucent.com>
35538
35539         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): If we need the
35540         replacement strtoull, we may well need the replacement strtoul, too.
35541         Check for declarations of strtoul and strtoull.
35542         Check for strtol.  Mainly as a cue to cause automake to include
35543         strtol.c -- that file is included by each of strtoul.c and strtoull.c.
35544         Check for limits.h -- strtol.c needs it.
35545
35546 2000-12-05  Jim Meyering  <meyering@lucent.com>
35547
35548         * lib/dirname.c (dir_name_r): Add `const' in a few local declarations.
35549
35550 2000-12-04  Jim Meyering  <meyering@lucent.com>
35551
35552         * lib/path-concat.c: [!HAVE_DECL_MALLOC]: Declare malloc.
35553         Also include memory.h, stdlib.h, unistd.h if appropriate.
35554         Reported by Andreas Jaeger (conflicting declaration of malloc).
35555
35556 2000-12-02  Jim Meyering  <meyering@lucent.com>
35557
35558         * m4/off_t-format.m4 (OFF_T_PRINTF_FORMAT_STRING): New file/macro.
35559         * m4/jm-macros.m4 (jm_MACROS): require it.
35560
35561 2000-12-02  Jim Meyering  <meyering@lucent.com>
35562
35563         * lib/closeout.h: Make idempotent, to avoid some obscure warnings.
35564
35565 2000-12-01  Paul Eggert  <eggert@twinsun.com>
35566
35567         * lib/memrchr.c: Include <config.h> before any system include file.
35568
35569 2000-11-30  Jim Meyering  <meyering@lucent.com>
35570
35571         * m4/jm-macros.m4 (jm_MACROS): Check for stdint.h.
35572
35573 2000-11-30  Jim Meyering  <meyering@lucent.com>
35574
35575         * m4/getloadavg.m4: s/ifval/m4_ifval/ to accommodate new autoconf.
35576
35577 2000-11-29  Paul Eggert  <eggert@twinsun.com>
35578
35579         * lib/dirname.c (dir_name_r): Fix typo: int -> size_t.
35580
35581 2000-11-26  Jim Meyering  <meyering@lucent.com>
35582
35583         * lib/memcoll.c: Include sys/types.h.  From Werner Almesberger.
35584
35585 2000-11-22  Paul Eggert  <eggert@twinsun.com>
35586
35587         * lib/strftime.c (my_strftime): Do not invoke mbrlen with a
35588         size of (size_t) -1; it's not portable.
35589
35590 2000-11-17  Jim Meyering  <meyering@lucent.com>
35591
35592         * lib/strstr.c: Update from GNU libc.
35593
35594 2000-11-17  Akim Demaille  <akim@epita.fr>
35595
35596         * lib/obstack.h: Formatting changes.
35597         (obstack_grow, obstack_grow0): Don't cast WHERE at all: that would
35598         prevent type checking.
35599         (obstack_ptr_grow, obstack_ptr_grow_fast): When assigning, don't
35600         cast the value to (void *): assigning a `foo *' to a `void *'
35601         variable is valid.
35602         (obstack_int_grow, obstack_int_grow_fast): Don't cast AINT to int.
35603
35604 2000-11-16  Jim Meyering  <meyering@lucent.com>
35605
35606         * lib/strverscmp.c: Incorporate weak-alias-related changes from glibc.
35607
35608 2000-11-11  Jim Meyering  <meyering@lucent.com>
35609
35610         * lib/error.c: Add a couple #includes, merging from GNU libc version.
35611
35612 2000-11-10  Jim Meyering  <meyering@lucent.com>
35613
35614         * lib/obstack.h: Update from GNU libc.
35615         * lib/obstack.c: Likewise.
35616
35617 2000-11-08  Bruno Haible  <haible@clisp.cons.org>
35618
35619         * m4/jm-macros.m4 (jm_MACROS): Add test for wcrtomb.
35620
35621 2000-11-06  Paul Eggert  <eggert@twinsun.com>
35622
35623         * lib/getusershell.c (setusershell): Use rewind rather than
35624         fseek/fseeko, to avoid configuration hassles with fseeko.
35625         Don't bother opening SHELLS_FILE if shellstream is NULL;
35626         it's not necessary.
35627
35628 2000-11-05  Jim Meyering  <meyering@lucent.com>
35629
35630         * lib/makepath.h (make_dir): Declare.
35631         * lib/makepath.c (make_dir): Remove `static' attribute.
35632         Tweak a comment.
35633
35634 2000-11-04  Jim Meyering  <meyering@lucent.com>
35635
35636         * m4/regex.m4: Use the `m4_' prefix on `syscmd' and `m4_sysval'.
35637
35638 2000-11-04  Alexandre Duret-Lutz  <duret_g@epita.fr>
35639
35640         * lib/hash.c (hash_get_next): Fix a thinko:  when ENTRY is the
35641         last one in a bucket, advance to the next bucket.
35642
35643 2000-11-02  Vesselin Atanasov  <vesselin@bgnet.bg>
35644
35645         * lib/fnmatch.c: Do not comment out all the code if we are using
35646         the GNU C library, because in some cases we are replacing buggy
35647         code in the GNU C library itself.
35648
35649 2000-10-30  Stefan Monnier  <monnier@cs.yale.edu>
35650
35651         * regex.c (re_iswctype, re_wctype_to_bit): Fix braino.
35652         (regex_compile): Catch bogus \(\1\).
35653
35654 2000-10-30  Paul Eggert  <eggert@twinsun.com>
35655
35656         * lib/fnmatch.c (FOLD): Do not assume that characters are unsigned.
35657         (fnmatch): Fix some FNM_FILE_NAME and FNM_LEADING_DIR bugs,
35658         e.g. fnmatch("d*/*1", "d/s/1", FNM_FILE_NAME) incorrectly yielded zero.
35659
35660 2000-10-30  Paul Eggert  <eggert@twinsun.com>
35661
35662         * lib/error.h, getline.h, modechange.h:
35663         Remove "2000" from Copyright line, as the file hasn't been
35664         changed this year other than in the copyright notice.
35665
35666         * lib/xalloc.h: Add "2000" to Copyright line, as this file
35667         was changed this year.
35668
35669 2000-10-29  Jim Meyering  <meyering@lucent.com>
35670
35671         * m4/fsusage.m4: s/AC_SHELL_IFELSE/AS_IFELSE/ to match autoconf
35672         renaming.
35673         * m4/ls-mntd-fs.m4: Likewise
35674
35675 2000-10-29  Jim Meyering  <meyering@lucent.com>
35676
35677         * lib/xstat.in: Fix grammar in comment.
35678
35679 2000-10-29  Greg Louis  <glouis@dynamicro.on.ca>
35680
35681         * lib/regex.h (__restrict_arr): Move definition out of #ifndef block.
35682         Required because egcs-2.91.66 (aka 1.1.2) defines __restrict, but
35683         doesn't define __restrict_arr.
35684
35685 2000-10-28  Jim Meyering  <meyering@lucent.com>
35686
35687         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_MEMCHR.
35688         (jm_PREREQ_MEMCHR): New function.
35689
35690 2000-10-28  Jim Meyering  <meyering@lucent.com>
35691
35692         * lib/memchr.c: Update from libc.
35693         Adjust for portability:
35694         [HAVE_STDLIB_H]: Include stdlib.h.
35695         [HAVE_BP_SYM_H || _LIBC]: Guard inclusion of bp-sym.h.
35696         Undef __memchr, too.
35697         [!weak_alias]: Define __memchr to memchr.
35698
35699         * lib/regex.c: Update from libc.
35700         * lib/regex.h: Likewise.
35701         * lib/getopt1.c: Likewise.
35702         * lib/memcmp.c: Likewise.
35703
35704         * lib/getusershell.c (setusershell) [HAVE_FSEEKO]: Use fseeko.
35705         Avoid using fseek, when possible -- it's broken by design.
35706         Patch by Ulrich Drepper.
35707
35708 2000-10-27  Stefan Monnier  <monnier@cs.yale.edu>
35709
35710         * regex.c (POP_FAILURE_REG_OR_COUNT, re_match_2_internal)
35711         (re_match_2_internal, re_match_2_internal, re_match_2_internal):
35712         Giving in to popular pressure to shut up the compiler with casts.
35713
35714 2000-10-26  Jim Meyering  <meyering@lucent.com>
35715
35716         * lib/strftime.c: Update from libc.
35717
35718 2000-10-25  Stefan Monnier  <monnier@cs.yale.edu>
35719
35720         * regex.c: More `unsigned char' -> `re_char' changes.
35721         Also change several `int' into `re_wchar_t'.
35722         (PATTERN_STACK_EMPTY, PUSH_PATTERN_OP, POP_PATTERN_OP): Remove.
35723         (PUSH_FAILURE_POINTER): Don't cast any more.
35724         (POP_FAILURE_REG_OR_COUNT): Remove the cast that strips `const'.
35725         We want GCC to complain, since this piece of code makes
35726         re_match non-reentrant, which *should* be fixed.
35727         (GET_BUFFER_SPACE): Use size_t rather than unsigned long.
35728         (EXTEND_BUFFER): Use RETALLOC.
35729         (SET_LIST_BIT): Don't cast.
35730         (re_wchar_t): New type.
35731         (re_iswctype, re_wctype_to_bit): Make it crystal clear to GCC
35732         that those two functions will always properly return.
35733         (IMMEDIATE_QUIT_CHECK): Cast to void.
35734         (analyse_first): Use recursion rather than an explicit stack.
35735         (re_compile_fastmap): Can't fail anymore.
35736         (re_search_2): Don't check re_compile_fastmap for failure.
35737         (PUSH_NUMBER): Renamed from PUSH_FAILURE_COUNT.
35738         Now also sets the new value (passed in a new argument).
35739         (re_match_2_internal): Use it.
35740         Also, use a new var `reg' of type size_t when looping through regs
35741         rather than reuse the inappropriate `mcnt'.
35742
35743 2000-10-25  Jim Meyering  <meyering@lucent.com>
35744
35745         * lib/obstack.c: Update from libc.
35746
35747 2000-10-24  Kenichi Handa  <handa@etl.go.jp>
35748
35749         * regex.c (regex_compile): Change the way of handling a range from
35750         a char less than 256 to a char not less than 256.
35751
35752 2000-10-24  Andrew Innes  <andrewi@gnu.org>
35753
35754         * regex.c (IMMEDIATE_QUIT_CHECK): New macro, which does QUIT on
35755         NT-Emacs only.
35756         (re_match_2_internal): Use IMMEDIATE_QUIT_CHECK instead of QUIT,
35757         so that re_search functions only quit when callers expect them to.
35758
35759 2000-10-23  Jim Meyering  <meyering@lucent.com>
35760
35761         * lib/hard-locale.c (hard_locale): Revert last change -- it was simply
35762         wrong.  That set_locale call must not have any side effects.
35763         From Paul Eggert.
35764
35765 2000-10-22  Jim Meyering  <meyering@lucent.com>
35766
35767         * lib/md5.c (md5_process_block) [OP]: Use `rol', not CYCLIC.
35768         [CYCLIC]: Remove now-unused definition.
35769
35770         * lib/save-cwd.c (O_DIRECTORY): Define, if needed.
35771         (save_cwd) [HAVE_FCHDIR]: Use O_DIRECTORY when opening ".".
35772         Suggestion from Ulrich Drepper.
35773
35774 2000-10-21  Jim Meyering  <meyering@lucent.com>
35775
35776         * m4/check-decl.m4 (jm_CHECK_DECLS): Also check for memrchr.
35777         * m4/prereq.m4 (jm_PREREQ_DIRNAME): New macro.
35778         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memrchr.
35779
35780 2000-10-21  Jim Meyering  <meyering@lucent.com>
35781
35782         * lib/dirname.c (memrchr): Declare if necessary.
35783         (dir_name): Remove the restriction that there be no
35784         trailing slashes.  Now, this code skips past them, effectively
35785         ignoring them.
35786         [TEST_DIRNAME] (main): New unit tests.
35787
35788         * lib/memrchr.c: New file from GNU libc.
35789         Undef __memrchr, too.
35790         [!weak_alias]: Define __memrchr to memrchr.
35791         Guard weak_alias use with `#ifdef weak_alias'.
35792
35793 2000-10-21  Jim Meyering  <meyering@lucent.com>
35794
35795         * lib/dirname.c (dir_name_r): New function, factored out of dir_name.
35796         (dir_name): Use dir_name_r.
35797         * lib/dirname.h (dir_name_r): Declare it.
35798
35799 2000-10-17  Jim Meyering  <meyering@lucent.com>
35800
35801         * lib/quote.h (PARAMS): Define and use.
35802         Reported by Akim Demaille.
35803
35804         * lib/getopt.c: Update from libc.
35805
35806 2000-10-16  Jim Meyering  <meyering@lucent.com>
35807
35808         * lib/hard-locale.c (hard_locale): Use "", not 0 as 2nd arg to
35809         setlocale.
35810         From Jan Fedak.
35811
35812 2000-10-15  Stefan Monnier  <monnier@cs.yale.edu>
35813
35814         * regex.c (WIDE_CHAR_SUPPORT): Define if _LIBC as well.
35815
35816 2000-09-25  Jim Meyering  <meyering@lucent.com>
35817
35818         * lib/md5.h (rol): Define (from GnuPG).
35819
35820         * lib/sha.c: Give credit (GnuPG) where due.
35821         (M): Use rol rather than open-coding it.
35822         Add a FIXME comment.
35823
35824 2000-09-21  Jim Meyering  <meyering@lucent.com>
35825
35826         * lib/userspec.c (parse_user_spec): Remove debugging printf I'd added.
35827         Reported by Michael Stone.
35828
35829 2000-09-20  Jim Meyering  <meyering@lucent.com>
35830
35831         * lib/Makefile.am (libfetish_a_SOURCES): Add sha.c.
35832         (noinst_HEADERS): Add sha.h.
35833         Based on code from Scott G. Miller and from GnuPG.
35834
35835 2000-09-18  Jim Meyering  <meyering@lucent.com>
35836
35837         * m4/getloadavg.m4 (AC_FUNC_GETLOADAVG): Restore the initial value of
35838         LIBS. Otherwise, everyone ends up linking with -lelf for some
35839         configurations.
35840         Reported by Mike Stone.
35841
35842 2000-09-15  Jim Meyering  <meyering@lucent.com>
35843
35844         * lib/regex.c: Update from libc.
35845
35846 2000-09-10  Jim Meyering  <meyering@lucent.com>
35847
35848         * lib/getopt.c (_getopt_internal): Update from glibc.
35849
35850 2000-09-09  Jim Meyering  <meyering@lucent.com>
35851
35852         * lib/quotearg.c: Rename ISASCII to IN_CTYPE_DOMAIN, so people don't
35853         think it should be used as a general replacement for isascii.
35854         * lib/fnmatch.c: Likewise.
35855         * lib/mbswidth.c: Likewise
35856         * lib/regex.c: Likewise.
35857
35858         Don't use atoi.
35859         * lib/userspec.c: Include sys/param.h and limits.h.
35860         Include xstrtol.h.
35861         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Define.
35862         (UID_T_MAX, GID_T_MAX, MAXUID, MAXGID): Define.
35863         (parse_user_spec): Use xstrtoul, not atoi when converting numeric
35864         UID, GID.  Check range.
35865
35866 2000-09-06  Jim Meyering  <meyering@lucent.com>
35867
35868         * lib/getopt.c (_getopt_internal): Update from glibc.
35869
35870 2000-08-30  Jim Meyering  <meyering@lucent.com>
35871
35872         * lib/strftime.c: Merge in changes from GNU libc.
35873
35874 2000-08-26  Jim Meyering  <meyering@lucent.com>
35875
35876         * m4/jm-macros.m4: Use jm_FUNC_FPENDING.
35877         * m4/fpending.m4: New file.
35878
35879 2000-08-26  Jim Meyering  <meyering@lucent.com>
35880
35881         * lib/closeout.c: Include "__fpending.h".
35882         (close_stdout_status): Return right away if there's nothing to flush.
35883
35884         * lib/Makefile.am (noinst_HEADERS): Add __fpending.h.
35885         * lib/__fpending.c: New file.
35886         * lib/__fpending.h: New file.
35887
35888 2000-08-20  Jim Meyering  <meyering@lucent.com>
35889
35890         * m4/check-decl.m4: Include utmp.h `#if HAVE_UTMP_H', rather than
35891         `#if !HAVE_UTMPX_H'.  The latter would lose on systems with neither
35892         utmp.h nor utmpx.h.  Reported by Eli Zaretskii.
35893
35894 2000-08-11  J. David Anglin  <dave@hiauly1.hia.nrc.ca>
35895
35896         Improve fileutils installation on systems where running
35897         programs (like install) can't be unlinked.
35898         * m4/unlink-busy.m4 (jm_FUNC_UNLINK_BUSY_TEXT): New file/macro.
35899         * m4/jm-macros.m4: Use jm_FUNC_UNLINK_BUSY_TEXT.
35900
35901 2000-08-07  Paul Eggert  <eggert@twinsun.com>
35902
35903         Standardize on "memory exhausted" instead of "Memory exhausted"
35904         or "virtual memory exhausted".
35905         * lib/obstack.c (print_and_abort): Use "memory exhausted", not
35906         "virtual memory exhausted".
35907         * lib/same.c (same_name): Invoke xalloc_die instead of printing
35908         our own message.
35909         * lib/userspec.c (parse_user_spec): Likewise.
35910         * lib/bumpalloc.h: comment fix
35911         * lib/same.c, userspec.c: Include xalloc.h.
35912
35913         * lib/xalloc.h (xalloc_msg_memory_exhausted): Now char const[],
35914         not char *const and pointing to a constant array.
35915         * lib/xmalloc.c (xalloc_msg_memory_exhausted): Likewise.
35916         (xrealloc): Comment fix.
35917
35918         * lib/userspec.c (parse_user_spec):
35919         Don't translate a message until just before returning,
35920         to avoid unnecessary translation.
35921
35922 2000-08-07  Jim Meyering  <meyering@lucent.com>
35923
35924         * lib/addext.c, argmatch.c, argmatch.h, backupfile.h, bumpalloc.h,
35925         chown.c, diacrit.h, dirname.h, dup2.c, exclude.h, fileblocks.c,
35926         fnmatch.c, fnmatch.h, fsusage.c, fsusage.h, getdate.h,
35927         getgroups.c, gethostname.c, getopt.h, group-member.c,
35928         hard-locale.c, hash.h, isdir.c, lchown.c, linebuffer.c,
35929         linebuffer.h, long-options.h, malloc.c, md5.c, md5.h, memchr.c,
35930         memcmp.c, memcoll.c, memset.c, mktime.c, modechange.h, obstack.h,
35931         pathmax.h, realloc.c, rmdir.c, safe-read.c, save-cwd.c, stime.c,
35932         stpcpy.c, strcasecmp.c, strcspn.c, strdup.c, stripslash.c,
35933         strstr.c, strtod.c, strtol.c, strtoul.c, strtoull.c, strtoumax.c,
35934         utime.c, version-etc.h, xalloc.h, xstrdup.c, xstrtoumax.c,
35935         yesno.c: Back out Copyright date changes for each file with no change
35936         this year.  This eases coordination with other programs using the same
35937         source code modules.  From Paul Eggert.
35938
35939 2000-08-06  Paul Eggert  <eggert@twinsun.com>
35940
35941         * m4/mbstate_t.m4 (AC_MBSTATE_T): Define mbstate_t to be int,
35942         not char, for compatibility with glibc 2.1.3 strftime.c.
35943
35944 2000-08-03  Greg McGary  <greg@mcgary.org>
35945
35946         * lib/regex.c (SET_HIGH_BOUND, MOVE_BUFFER_POINTER,
35947         ELSE_EXTEND_BUFFER_HIGH_BOUND): New macros.
35948         (EXTEND_BUFFER): Use them.
35949
35950 2000-08-01  Jim Meyering  <meyering@lucent.com>
35951
35952         * lib/dirname.c (ISSLASH): Define.
35953         (BACKSLASH_IS_PATH_SEPARATOR): Define.
35954         (dir_name) [BACKSLASH_IS_PATH_SEPARATOR]: Handle the case in which
35955         both `\' and `/' may be use as path separators.
35956         Based on a patch from Prashant TR.
35957
35958 2000-07-31  Paul Eggert  <eggert@twinsun.com>
35959
35960         * lib/quotearg.c (quotearg_n_options): Don't make the initial
35961         slot vector a constant, since it might get modified.
35962
35963 2000-07-31  Jim Meyering  <meyering@lucent.com>
35964
35965         * lib/xmalloc.c: Use `virtual memory exhausted', not
35966         `Memory exhausted'.
35967         * lib/obstack.c (print_and_abort): Likewise.
35968
35969 2000-07-30  Paul Eggert  <eggert@twinsun.com>
35970
35971         * lib/quotearg.c (quotearg_n_options): Preallocate a slot 0
35972         buffer, so that the caller can always quote one small
35973         component of a "memory exhausted" message in slot 0.
35974         From a suggestion by Jim Meyering.
35975
35976 2000-07-30  Jim Meyering  <meyering@lucent.com>
35977
35978         * lib/makepath.c (make_path): Quote the other instance, too.
35979
35980         * lib/quotearg.c (N_STATIC_SLOTVECS): Define.
35981         (STATIC_BUF_SIZE): Define.
35982         (quotearg_n_options): Use only statically allocated storage when
35983         N < N_STATIC_SLOTVECS and the length of the quoted result is smaller
35984         than STATIC_BUF_SIZE.
35985
35986 2000-07-29  Jim Meyering  <meyering@lucent.com>
35987
35988         * lib/diacrit.c (diacrit_diac): Use __MSDOS__ in favor of MSDOS.
35989         * lib/dirname.c (dir_name): Likewise.
35990
35991         * lib/basename.c (base_name): Use ISSLASH rather than comparing against
35992         `/'.
35993
35994         * lib/dirname.c (dir_name) [MSDOS]: Declare `lim' to be const.
35995         (dir_name): Assert that there are no trailing slashes.
35996
35997 2000-07-29  Bruno Haible  <haible@clisp.cons.org>
35998
35999         * lib/mbswidth.h (mbswidth): Add a flags argument.
36000         (mbswidth): New declaration.
36001         (MBSW_ACCEPT_INVALID, MBSW_ACCEPT_UNPRINTABLE): New macros.
36002         * lib/mbswidth.c (mbswidth): Add a flags argument.
36003         (mbsnwidth): New function.
36004
36005 2000-07-24  Jim Meyering  <meyering@lucent.com>
36006
36007         * lib/mbswidth.c: Remove useless #else.  From Bruno Haible.
36008
36009 2000-07-23  Paul Eggert  <eggert@twinsun.com>
36010
36011         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Check for wcwidth declaration.
36012
36013 2000-07-23  Paul Eggert  <eggert@twinsun.com>
36014
36015         * lib/quotearg.c: Streamline by invoking multibyte code only if needed.
36016         <wchar.h>: Include only if HAVE_MBRTOWC && 1 < MB_LEN_MAX.
36017         (MB_CUR_MAX): Redefine to 1 if ! (HAVE_MBRTOWC && 1 < MB_LEN_MAX).
36018         (quotearg_buffer_restyled): If a unibyte locale, don't bother to
36019         invoke multibyte primitives.
36020
36021 2000-07-23  Paul Eggert  <eggert@twinsun.com>
36022
36023         * lib/quotearg.c:
36024         Include <wchar.h> even if ! (HAVE_MBRTOWC && 1 < MB_LEN_MAX),
36025         so that mbstate_t is always defined.
36026
36027         Do not inspect MB_LEN_MAX, since it's incorrectly defined to
36028         be 1 in at least one GCC installation, and this configuration
36029         error is likely to be common.  Ignoring MB_LEN_MAX hurts
36030         performance on hosts that have mbrtowc but have only unibyte
36031         locales, but I assume these hosts are rare.
36032
36033 2000-07-23  Paul Eggert  <eggert@twinsun.com>
36034
36035         * lib/mbswidth.c (_XOPEN_SOURCE):
36036         Don't define; this causes problems on Solaris 7.
36037         (wcwidth) [!HAVE_DECL_WCWIDTH]: Declare.
36038
36039 2000-07-23  Jim Meyering  <meyering@lucent.com>
36040
36041         * m4/check-decl.m4 (jm_CHECK_DECLS): Check for declarations of these,
36042         too: getgrgid, getpwuid, getuid.
36043
36044 2000-07-23  Jim Meyering  <meyering@lucent.com>
36045
36046         * lib/basename.c (base_name): Add an assertion.
36047
36048 2000-07-23  Bruno Haible  <haible@clisp.cons.org>
36049
36050         * lib/quotearg.c: When the system forces us to redefine mbstate_t,
36051         shadow its mbsinit function.
36052
36053 2000-07-17  Bruno Haible  <haible@clisp.cons.org>
36054
36055         * lib/mbswidth.h: New file.
36056         * lib/mbswidth.c: New file.
36057         * lib/Makefile.am (libfetish_a_SOURCES): Add mbswidth.c.
36058         (noinst_HEADERS): Add mbswidth.h.
36059
36060 2000-07-17  Bruno Haible  <haible@clisp.cons.org>
36061
36062         * lib/config.charset: Add support for FreeBSD. Improve support for
36063         HP-UX and IRIX 6.
36064
36065 2000-07-16  Bruno Haible  <haible@clisp.cons.org>
36066
36067         * m4/mbswidth.m4: New file.
36068         * m4/prereq.m4 (jm_PREREQ): Call jm_PREREQ_MBSWIDTH.
36069
36070 2000-07-15  Jim Meyering  <meyering@lucent.com>
36071
36072         * lib/makepath.c: Include quote.h.
36073         (make_path): Convert "`%s'" in format strings to "%s", and wrap each
36074         corresponding argument in a `quote (...)' call.
36075         Give better diagnostics.
36076
36077         * lib/Makefile.am (libfetish_a_SOURCES): Add quote.c.
36078         (noinst_HEADERS): Add quote.h.
36079
36080         * lib/quote.c (quote, quote_n): New file.  Two functions taken verbatim
36081         from tar's src/misc.c.
36082         * lib/quote.h: New file.  Prototypes for same.
36083
36084 2000-07-14  Paul Eggert  <eggert@twinsun.com>
36085
36086         From a suggestion by Bruno Haible.
36087         * lib/quotearg.c (mbrtowc): Do not use HAVE_WCHAR_H in the definition.
36088         Use defined mbstate_t, not HAVE_MBSTATE_T_OBJECT,
36089         to decide whether to define the BeOS workaround macro;
36090         this adjusts to the change to AC_MBSTATE_T.
36091
36092 2000-07-14  Jim Meyering  <meyering@lucent.com>
36093
36094         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Require
36095         jm_AC_TYPE_UINTMAX_T.
36096
36097 2000-07-13  Paul Eggert  <eggert@twinsun.com>
36098
36099         * lib/quotearg.h (enum quoting style): New enum clocale_quoting_style.
36100
36101         * lib/quotearg.c (quoting_style_args, quoting_style_vals,
36102         quotearg_buffer_restyled): Add support for
36103         clocale_quoting_style.  Undo previous change to
36104         locale_quoting_style behavior, and undo the "{LEFT QUOTATION MARK}"
36105         and "{RIGHT QUOTATION MARK}" msgids.
36106
36107 2000-07-10  Paul Eggert  <eggert@twinsun.com>
36108
36109         From a suggestion by Bruno Haible.
36110         * m4/mbstate_t.m4 (AC_MBSTATE_T):
36111         Renamed from AC_MBSTATE_T_OBJECT.  All uses changed.
36112         Change from a two-part test, which defines both HAVE_MBSTATE_T_OBJECT
36113         and mbstate_t, to a single-part test that simply defines mbstate_t.
36114         * m4/prereq.m4 (jm_PREREQ_QUOTEARG):
36115         s/AC_MBSTATE_T_OBJECT/AC_MBSTATE_T/.
36116
36117 2000-07-10  Jim Meyering  <meyering@lucent.com>
36118
36119         * m4/strerror_r.m4: Mirror the correction made in autoconf.
36120
36121         * m4/gnu-source.m4: Output to confdefs.h directly.
36122         Suggestion from Akim Demaille.
36123
36124 2000-07-09  Paul Eggert  <eggert@twinsun.com>
36125
36126         The old behavior of quoting `like this' doesn't look good with
36127         newer, ISO-style fonts.  See:
36128         http://www.cl.cam.ac.uk/~mgk25/ucs/quotes.html
36129
36130         Instead, quote "like this" by default.  Let the translator
36131         tailor the locale-specific quoting behavior by providing
36132         translations for {LEFT QUOTATION MARK} and {RIGHT QUOTATION MARK}.
36133
36134         * lib/quotearg.c (N_): New macro.
36135         (gettext_default): New function.
36136         (quotearg_buffer_restyled): Use
36137         gettext_default ("{LEFT QUOTATION MARK}", "\"") for left quote, and
36138         gettext_default ("{RIGHT QUOTATION MARK}", "\"") for right quote.
36139
36140 2000-07-09  Jim Meyering  <meyering@lucent.com>
36141
36142         * m4/jm-macros.m4 (jm_MACROS): Add a test to see if -lm is required
36143         to link seq.  If so, set SEQ_LIBM to -lm.  From Bruno Haible.
36144
36145         * m4/gnu-source.m4 (AC__GNU_SOURCE): New file/macro.
36146         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require it.
36147
36148 2000-07-09  Jim Meyering  <meyering@lucent.com>
36149
36150         * lib/Most files: Update copyright dates to include 2000.
36151
36152 2000-07-08  Jim Meyering  <meyering@lucent.com>
36153
36154         * lib/xgethostname.c (ENAMETOOLONG): Define to an unlikely value
36155         if not defined.
36156         (xgethostname): Remove now-unnecessary #ifdef.
36157         Move declaration of `err' into loop where it's used.
36158
36159 2000-07-05  Paul Eggert  <eggert@twinsun.com>
36160         and Bruno Haible  <haible@clisp.cons.org>
36161
36162         * m4/mbstate_t.m4 (AC_MBSTATE_T_OBJECT): Test for mbstate_t
36163         only if the test for an object-type mbstate_t fails.  This
36164         prevents us from mistakenly reporting that mbstate_t is a
36165         system object type after we "#define mbstate_t int" to work
36166         around its lack.
36167
36168 2000-07-05  Paul Eggert  <eggert@twinsun.com>
36169         and Bruno Haible  <haible@clisp.cons.org>
36170
36171         * lib/quotearg.c (mbrtowc): Declare returned type, since BeOS doesn't.
36172
36173 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
36174
36175         * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Pass a reasonably large buffer
36176         to strerror_r.
36177         Include <ctype.h> for use of isalpha.
36178
36179 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
36180
36181         * lib/xgethostname.c (xgethostname): Protect against the SunOS 5.5 bug
36182         by allocating a larger buffer. Test the gethostname return value for
36183         being >= 0, not == 0, for BeOS.  Don't exhaust memory if gethostname
36184         returns an error and ENAMETOOLONG isn't defined.
36185
36186 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
36187
36188         * lib/quotearg.c (struct quoting_options): Simplify quote_these_too
36189         dimension.
36190
36191 2000-07-04  Jim Meyering  <meyering@lucent.com>
36192
36193         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Use plain old `echo' instead
36194         of the deprecated AC_CHECKING.
36195
36196 2000-07-04  Jim Meyering  <meyering@lucent.com>
36197
36198         * lib/strndup.c: [!HAVE_DECL_STRNLEN]: Declare strnlen.
36199         Reported by Bruno Haible.
36200
36201 2000-07-04  Jim Meyering  <meyering@lucent.com>
36202
36203         * lib/quotearg.c: Make inclusion of <wchar.h> independent of whether
36204         HAVE_MBRTOWC is set.  Required at least for irix-5.6, which
36205         lacks mbrtowc.
36206
36207 2000-07-03  Paul Eggert  <eggert@twinsun.com>
36208
36209         * m4/mbstate_t.m4 (AC_MBSTATE_T_OBJECT): Port to autoconf 2.13.
36210         Add AC_CHECK_HEADERS(stdlib.h), since we use HAVE_STDLIB_H.
36211
36212 2000-07-03  Paul Eggert  <eggert@twinsun.com>
36213         and Bruno Haible  <haible@clisp.cons.org>
36214
36215         * lib/quotearg.c (mbrtowc):
36216         Assign to *pwc, and return 1 only if result is nonzero.
36217         (iswprint): Use ISPRINT when substituting our own mbrtowc.
36218
36219 2000-07-03  Jim Meyering  <meyering@lucent.com>
36220
36221         * m4/check-decl.m4 (AC_CHECK_DECLS): Add strnlen.
36222
36223 2000-07-03  Jim Meyering  <meyering@lucent.com>
36224
36225         * lib/readutmp.h: [HAVE_UTMPX_H]: Include <utmp.h> if HAVE_UTMP_H.
36226         This is necessary to get a definition of e.g., UTMP_FILE on
36227         HP-UX 10.20.
36228         From Bob Proulx.
36229
36230 2000-07-02  Jim Meyering  <meyering@lucent.com>
36231
36232         * m4/mbstate_t.m4: Also define mbstate_t, if necessary.
36233
36234         * m4/chown.m4: Replace each use of AC_SUBST(LIBOBJS)/LIBOBJS=... with
36235         AC_LIBOBJ(function_name).
36236         * m4/chown.m4: Likewise.
36237         * m4/fnmatch.m4: Likewise.
36238         * m4/ftruncate.m4: Likewise.
36239         * m4/getgroups.m4: Likewise.
36240         * m4/getline.m4: Likewise.
36241         * m4/group-member.m4: Likewise.
36242         * m4/jm-macros.m4: Likewise.
36243         * m4/lstat.m4: Likewise.
36244         * m4/malloc.m4: Likewise.
36245         * m4/memcmp.m4: Likewise.
36246         * m4/nanosleep.m4: Likewise.
36247         * m4/putenv.m4: Likewise.
36248         * m4/realloc.m4: Likewise.
36249         * m4/regex.m4: Likewise.
36250         * m4/stat.m4: Likewise.
36251         * m4/strftime.m4: Likewise.
36252
36253 2000-07-02  Jim Meyering  <meyering@lucent.com>
36254
36255         * lib/quotearg.c (mbstate_t): Don't define here.
36256
36257 2000-07-02  Jim Meyering  <meyering@lucent.com>
36258
36259         * lib/nanosleep.c (SIGCONT): Define if not already defined.
36260
36261 2000-07-01  Jim Meyering  <meyering@lucent.com>
36262
36263         * m4/uptime.m4: Put double quotes around use of $cross_compiling.
36264
36265 2000-07-01  Jim Meyering  <meyering@lucent.com>
36266
36267         * m4/ls-mntd-fs.m4: Remove a `FIXME' comment and fix the associated
36268         problem.
36269
36270 2000-07-01  Bruno Haible  <haible@clisp.cons.org>
36271
36272         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Rename BeOS specific
36273         macro from MOUNTED_NEXT_DEV to MOUNTED_FS_STAT_DEV.
36274
36275 2000-07-01  Bruno Haible  <haible@clisp.cons.org>
36276
36277         * lib/mountlist.c: Use MOUNTED_FS_STAT_DEV instead of MOUNTED_NEXT_DEV,
36278         per change in ../m4/ls-mntd-fs.m4.
36279         (read_filesystem_list): Ignore symbolic links.
36280
36281 2000-06-29  Jim Meyering  <meyering@lucent.com>
36282
36283         * lib/same.c: Include <string.h> or <strings.h>, as appropriate,
36284         for declaration of strcmp.
36285
36286         * lib/long-options.c: Include <stdlib.h>, for declaration of exit.
36287
36288         * lib/mountlist.c (fsp_to_string) [HAVE_F_FSTYPENAME_IN_STATFS]:
36289         Avoid warning by casting result to `char *' to remove `const'.
36290
36291 2000-06-28  Jim Meyering  <meyering@lucent.com>
36292
36293         * m4/mbstate_t.m4: Use stdlib.h, not stdio.h.  The latter is not
36294         included by quotearg.c, for which we perform this test.  From
36295         Bruno Haible.
36296
36297 2000-06-27  Bruno Haible  <haible@clisp.cons.org>
36298
36299         * m4/check-decl.m4 (_jm_DECL_HEADERS): Check for utmp.h as well.
36300         * m4/prereq.m4 (jm_PREREQ_READUTMP): Likewise. If either <utmp.h> or
36301         <utmpx.h> exists, put readutmp.o into LIBOBJS.
36302
36303 2000-06-27  Bruno Haible  <haible@clisp.cons.org>
36304
36305         * lib/Makefile.am (libfetish_a_SOURCES): Remove readutmp.c.
36306
36307 2000-06-26  Paul Eggert  <eggert@twinsun.com>
36308
36309         savedir now sets errno on failure and invokes xmalloc to get memory.
36310         Fix a couple of other minor bugs while we're at it.
36311
36312         * lib/savedir.c (<unistd.h>): Do not include; there's no need.
36313         (NAMLEN): Remove macro.
36314         (malloc, realloc): Remove decls.
36315         (stpcpy): Likewise.
36316         ("xalloc.h"): Include.
36317         (NAME_SIZE_DEFAULT): New macro.
36318         (savedir): Use xmalloc / xrealloc to allocate memory.
36319         Use NAME_SIZE_DEFAULT if name_size is negative or overflows to zero.
36320         Skip "" directory entries.
36321         Use strlen to calculate directory entry length, since the old method
36322         is rarely used these days and isn't worth supporting.
36323         Don't use a pointer after freeing it.
36324         Check for integer overflow when calculating allocation size.
36325         Use memcpy to copy entries, instead of stpcpy.
36326         Set errno properly when returning NULL.
36327         Check for readdir error.
36328
36329 2000-06-26  Jim Meyering  <meyering@lucent.com>
36330
36331         * lib/posixtm.c [HAVE_STDLIB_H]: Include stdlib.h, for decl of abort.
36332
36333 2000-06-25  Jim Meyering  <meyering@lucent.com>
36334
36335         * m4/mbstate_t.m4: Include stdio.h before wchar.h to work around
36336         Linux header bug when _XOPEN_SOURCE is defined to 500.
36337
36338 2000-06-25  Bruno Haible  <haible@clisp.cons.org>
36339
36340         * lib/unicodeio.c (print_unicode_char): Work around ansi2knr
36341         deficiency.
36342
36343 2000-06-25  Bruno Haible  <haible@clisp.cons.org>
36344
36345         * lib/getusershell.c (xmalloc, xrealloc): Remove functions.
36346         Include xalloc.h.
36347         Don't include <stdlib.h>.  Don't declare malloc, realloc.
36348
36349 2000-06-24  Jim Meyering  <meyering@lucent.com>
36350
36351         * m4/strerror_r.m4: Revive this file -- to try out an experimental
36352         version of AC_FUNC_STRERROR_R that may work even on BeOS, a system
36353         for which strerror does return char*, but which lacks a conveniently
36354         accessible declaration of the function.  If the compile-test says
36355         strerror_r doesn't work, then resort to a `run'-test that works on
36356         BeOS and segfaults on DEC Unix.
36357
36358 2000-06-24  Jim Meyering  <meyering@lucent.com>
36359
36360         * lib/error.c [!HAVE_DECL_STRERROR_R]: Declare strerror_r.
36361
36362 2000-06-23  Paul Eggert  <eggert@twinsun.com>
36363
36364         * m4/mbstate_t.m4: New file, defining AC_MBSTATE_T_OBJECT.
36365         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Use it.  Add check for iswprint.
36366
36367 2000-06-23  Paul Eggert  <eggert@twinsun.com>
36368
36369         * lib/quotearg.c: Include <wctype.h> after <wchar.h>, for Solaris 2.5.
36370         (mbrtowc, mbstate_t): Define substitutes if
36371         HAVE_MBRTOWC && HAVE_WCHAR_H && !HAVE_MBSTATE_T_OBJECT.
36372         (iswprint): Define to 1 if !defined iswprint && !HAVE_ISWPRINT,
36373         not if ! (HAVE_MBRTOWC && HAVE_WCHAR_H).
36374
36375 2000-06-23  Jim Meyering  <meyering@lucent.com>
36376
36377         * m4/afs.m4: Add missing AC_MSG_RESULT.
36378         Reported by Bruno Haible.
36379
36380         * m4/fsusage.m4: s/AC_MSG_CHECKING/AC_CHECKING/.
36381         Suggestion from Bruno Haible.
36382
36383 2000-06-23  Jim Meyering  <meyering@lucent.com>
36384
36385         * lib/getpass.c: New file, from Bruno Haible.  Required for BeOS.
36386
36387 2000-06-21  Jim Meyering  <meyering@lucent.com>
36388
36389         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add getpass.
36390
36391 2000-06-21  Jim Meyering  <meyering@lucent.com>
36392
36393         * lib/Makefile.am (libfetish_a_SOURCES): Add getstr.c.
36394         (noinst_HEADERS): Add getstr.h.
36395
36396         * lib/getline.c (getstr): Move into a separate file.
36397         * lib/getstr.c (getstr): New file, extracted from getline.c, with
36398         the following changes: new parameter, delim2; both delim[12]
36399         parameters have type `int', not `char'.  The latter would lose
36400         with 8-bit delimiters.
36401         * lib/getstr.h: New file.
36402
36403 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
36404
36405         * lib/xgetcwd.c (xgetcwd): If the required pathname length is smaller
36406         than 1024, return a memory chunk of least possible size, instead
36407         of size PATH_MAX + 2. In the loop, increment the size proportionally.
36408         Use free/xmalloc instead of xrealloc to avoid copying for very long
36409         paths.
36410
36411 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
36412
36413         * lib/path-concat.c (path_concat): Don't access dir[-1] if dir is
36414         the empty string.
36415
36416 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
36417
36418         * lib/canon-host.c (canon_host): Use malloc and memcpy to copy an
36419         address, not strdup.  Include <stdlib.h> and don't declare free().
36420
36421 2000-06-19  Jim Meyering  <meyering@lucent.com>
36422
36423         * lib/getloadavg.c [HAVE_NLIST_H] (NLIST_STRUCT): Define.
36424
36425 2000-06-18  Jim Meyering  <meyering@lucent.com>
36426
36427         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Remove mkdir.
36428
36429         * m4/link-follow.m4 (jm_AC_FUNC_LINK_FOLLOWS_SYMLINK): Change the
36430         `checking whether...' message to be consistent with that of the
36431         lstat test.
36432
36433 2000-06-18  Jim Meyering  <meyering@lucent.com>
36434
36435         * lib/mkdir.c: Remove file, due mainly to copyright incompatibility.
36436         Besides, these days every porting target provides a mkdir function.
36437
36438         * lib/strnlen.c: Include memory.h, string.h, and/or strings.h as
36439         needed. (this snippet comes from src/system.h).
36440
36441 2000-06-16  Bruno Haible  <haible@clisp.cons.org>
36442
36443         * m4/glibc21.m4 (jm_GLIBC21): Define GLIBC21 for Makefiles, not for C.
36444
36445 2000-06-15  Paul Eggert  <eggert@twinsun.com>
36446
36447         * lib/human.c (adjust_value): New function.
36448         (human_readable_inexact): Apply rounding style even when
36449         printing approximate values.
36450
36451 2000-06-14  Paul Eggert  <eggert@twinsun.com>
36452
36453         * lib/human.c (human_readable_inexact): Allow an input block
36454         size that is not a multiple of the output block size, and vice versa.
36455         Reported by Piergiorgio Sartor.
36456
36457 2000-06-14  Paul Eggert  <eggert@twinsun.com>
36458
36459         * lib/getdate.y (get_date): Apply relative times after time
36460         zone indicator, not before.  Reported by Todd A. Jacobs.
36461
36462 2000-06-13  Jim Meyering  <meyering@lucent.com>
36463
36464         * lib/Makefile.am (all-local): Depend on lstat.c and stat.c.
36465
36466         * lib/xstat.in [!HAVE_DECL_FREE]: Declare free in lstat.c.
36467
36468 2000-06-12  Paul Eggert  <eggert@twinsun.com>
36469
36470         * lib/xstat.in: Include <stdlib.h> in lstat, to declare "free".
36471
36472 2000-06-12  Jim Meyering  <meyering@lucent.com>
36473
36474         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Replace with
36475         AC_FUNC_GETLOADAVG from autoconf, and tweak the latter to accept an
36476         optional argument.
36477         * m4/jm-macros.m4: s/AM_FUNC_GETLOADAVG/AC_FUNC_GETLOADAVG/, and supply
36478         the optional argument, `lib'.
36479
36480 2000-06-08  Jim Meyering  <meyering@lucent.com>
36481
36482         * m4/largefile.m4: Remove file (now that it's part of autoconf).
36483
36484 2000-06-04  Paul Eggert  <eggert@twinsun.com>
36485
36486         Rewrite largefile configuration so that we don't need to run
36487         getconf and don't need AC_CANONICAL_HOST.  [I'm leaving the use of
36488         AC_CANONICAL_HOST in configure.in -- jmm]
36489
36490         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS,
36491         AC_SYS_LARGEFILE_SPACE_APPEND): Remove.
36492         (AC_SYS_LARGEFILE_TEST_INCLUDES): New macro.
36493         (AC_SYS_LARGEFILE_MACRO_VALUE): Change arguments from
36494         CODE-TO-SET-DEFAULT to VALUE, INCLUDES, FUNCTION-BODY.
36495         All uses changed.
36496         Instead of inspecting the output of getconf, try to compile the
36497         test program without and with the macro definition.
36498         (AC_SYS_LARGEFILE): Do not require AC_CANONICAL_HOST or check
36499         for getconf.  Instead, check for the needed flags by compiling
36500         test programs.
36501
36502 2000-06-04  Paul Eggert  <eggert@twinsun.com>
36503
36504         * lib/strnlen.c: Include <config.h> if HAVE_CONFIG_H.
36505
36506 2000-06-04  Jim Meyering  <meyering@lucent.com>
36507
36508         * lib/getugroups.c (getugroups): Cast -1 to gid_t, for systems like
36509         SunOS 4.1.4 for which gid_t is an unsigned type.
36510
36511 2000-06-03  Jim Meyering  <meyering@lucent.com>
36512
36513         * m4/prereq.m4 (jm_PREREQ_HUMAN): Use []-quoted list in AC_CHECK_DECLS,
36514         now that autoconf requires that.
36515
36516         * m4/jm-glibc-io.m4: Add a kludge to make autoheader emit the required
36517         #undefs.  E.g., #undef HAVE_DECL_FERROR_UNLOCKED.
36518         Use []-quoted list in AC_CHECK_DECLS, now that autoconf requires that.
36519
36520 2000-06-03  Jim Meyering  <meyering@lucent.com>
36521
36522         * lib/strnlen.c [!HAVE_DECL_MEMCHR]: Declare memchr.
36523
36524 2000-06-03  Bruno Haible  <haible@clisp.cons.org>
36525
36526         * m4/glibc21.m4: New file.
36527         * m4/jm-macros.m4 (jm_MACROS): Call jm_GLIBC21.
36528
36529 2000-06-03  Bruno Haible  <haible@clisp.cons.org>
36530
36531         * lib/Makefile.am (install-exec-local): On systems with glibc-2.1 or
36532         newer, don't install charset.alias.
36533         * lib/config.charset: Change the Linux/glibc rules so they become empty
36534         on glibc-2.1 or newer.
36535
36536 2000-06-02  Jim Meyering  <meyering@lucent.com>
36537
36538         * lib/mountlist.c: Back out last change.  Instead, do this...
36539         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Set the
36540         me_dummy member using the same `ignore'-testing code.
36541         * lib/mountlist.h (ME_DUMMY): Add `autofs' to the list of ignored
36542         fs_type strings.
36543         From Mark D. Roth.
36544
36545 2000-05-29  Jim Meyering  <meyering@lucent.com>
36546
36547         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Ignore
36548         mounts with the `ignore' attribute.  Based on a patch from
36549         Mark D. Roth.
36550
36551 2000-05-28  Jim Meyering  <meyering@lucent.com>
36552
36553         * m4/jm-macros.m4 (AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK): Rename from
36554         jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
36555         * m4/stat.m4: Likewise.
36556         * m4/lstat.m4: Likewise.
36557         * m4/lstat-slash.m4: Remove file (absorbed into autoconf).
36558
36559         * m4/jm-macros.m4 (AC_FUNC_STRERROR_R): Rename from jm_FUNC_STRERROR_R.
36560         * m4/strerror_r.m4: Remove file (absorbed into autoconf).
36561
36562 2000-05-26  Jim Meyering  <meyering@lucent.com>
36563
36564         * m4/uptime.m4: Use `$cross_compiling', not `$ac_cv_prog_cc_cross'.
36565
36566 2000-05-24  Jim Meyering  <meyering@lucent.com>
36567
36568         * m4/prereq.m4: Use []-quoted list in AC_CHECK_MEMBERS, now that
36569         autoconf requires that.
36570         * m4/lib-check.m4: Likewise.
36571         * m4/jm-macros.m4: Likewise.
36572         * m4/strftime.m4: Likewise.
36573
36574         * m4/check-decl.m4 (jm_CHECK_DECLS): Use []-quoted list in
36575         AC_CHECK_DECLS, now that autoconf requires that.
36576
36577 2000-05-22  Jim Meyering  <meyering@lucent.com>
36578
36579         * m4/stat.m4: Require jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
36580         * m4/lstat.m4: Likewise.
36581
36582 2000-05-22  Jim Meyering  <meyering@lucent.com>
36583
36584         * lib/makepath.c: Remove old, now-unnecessary `#ifdef __MSDOS__' block.
36585
36586 2000-05-20  Jim Meyering  <meyering@lucent.com>
36587
36588         * m4/prereq.m4 (jm_PREREQ_HUMAN): New macro.
36589         (jm_PREREQ): Use it.
36590
36591 2000-05-18  Jim Meyering  <meyering@lucent.com>
36592
36593         * lib/hash.c (hash_rehash): Fix a nasty bug: copy the free entry list
36594         back, too, since it may have been modified by allocate_entry.
36595         (hash_delete): Rewrite to use neither the assignment operator
36596         nor the comma operator in an if-expression.
36597
36598 2000-05-15  Paul Eggert  <eggert@twinsun.com>
36599
36600         * lib/closeout.c:
36601         <sys/stat.h>, <sys/types.h>, <unistd.h>, (STDOUT_FILENO):
36602         Remove; no longer needed.
36603         "quotearg.h": Add include.
36604         (file_name): Do not bother to explicitly initialize to NULL; it's less
36605         efficient on some hosts.
36606         (close_stdout_status): Remove test as to whether stdout was already
36607         closed; it breaks for the case "echo x | sort >&-".
36608         Quote file name colons.
36609         Do not assume that _("write error") lacks format strings.
36610
36611 2000-05-15  Jim Meyering  <meyering@lucent.com>
36612
36613         * lib/version-etc.c (version_etc_copyright): Update the copyright
36614         string used in all --version output.
36615
36616 2000-05-14  Jim Meyering  <meyering@lucent.com>
36617
36618         * lib/closeout.c (close_stdout_set_file_name): New function.
36619         (close_stdout_status): Use new file-scoped global.
36620         Return right away if fstat says the stdout file descriptor is invalid.
36621         * lib/closeout.h (close_stdout_set_file_name): Declare.
36622
36623 2000-05-10  Jim Meyering  <meyering@lucent.com>
36624
36625         * lib/closeout.c [default_exit_status]: New file-scoped variable.
36626         (close_stdout_set_status): New function.
36627         * lib/closeout.h (close_stdout_set_status): Declare.
36628
36629 2000-05-09  Jim Meyering  <meyering@lucent.com>
36630
36631         * m4/gettext.m4: Rename this...
36632         * m4/libintl.m4: ...to this.
36633
36634 2000-05-08  Jim Meyering  <meyering@lucent.com>
36635
36636         * lib/long-options.c: Don't include closeout.h.
36637         (parse_long_options): Don't call close_stdout for --version.
36638
36639 2000-05-06  Paul Eggert  <eggert@twinsun.com>
36640
36641         * m4/largefile.m4 (AC_SYS_LARGEFILE): Define _XOPEN_SOURCE to
36642         be 500, instead of _GNU_SOURCE to be 1, to work around glibc
36643         2.1.3 bug.  This avoids a clash when files like regex.c define
36644         _GNU_SOURCE.
36645
36646 2000-05-06  Jim Meyering  <meyering@lucent.com>
36647
36648         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add atexit.
36649         (AC_REPLACE_FUNCS): Add strnlen.
36650
36651         * m4/rmdir-errno.m4 (fetish_FUNC_RMDIR_NOTEMPTY): New macro and file.
36652         * m4/jm-macros.m4: Require fetish_FUNC_RMDIR_NOTEMPTY.
36653
36654         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Save and restore LIBS around
36655         AC_SEARCH_LIBS call for nanosleep.
36656         (LIB_NANOSLEEP): Set and AC_SUBST.
36657
36658 2000-05-06  Jim Meyering  <meyering@lucent.com>
36659
36660         * lib/strnlen.c: Undefine __strnlen and strnlen.
36661         [!weak_alias]: Define __strnlen to strnlen.
36662
36663         * lib/atexit.c: New file, from libiberty.
36664
36665 2000-05-06  Jim Meyering  <meyering@lucent.com>
36666
36667         * lib/closeout.c (close_stdout_status): Also check for errors on the
36668         stderr stream.
36669
36670 2000-05-05  Jim Meyering  <meyering@lucent.com>
36671
36672         * m4/jm-macros.m4 (jm_MACROS): Save and restore LIBS around
36673         AC_SEARCH_LIBS call for clock_gettime.
36674         (LIB_CLOCK_GETTIME): Set and AC_SUBST.
36675
36676         * m4/search-libs.m4: Update from autoconf.
36677
36678         su doesn't work on Solaris 2.6.
36679         * m4/lib-check.m4: When checking for struct spwd.sp_pwdp, also include
36680         <shadow.h>.  Reported by Dragos Harabor.
36681
36682 2000-05-05  Bruno Haible  <haible@clisp.cons.org>
36683
36684         * lib/localcharset.c (get_charset_aliases): Use malloc, realloc and
36685         memcpy instead of xmalloc, xrealloc, path_concat.
36686         (locale_charset): Treat empty environment variables as absent.
36687         (DIRECTORY_SEPARATOR, ISSLASH): New macros.
36688
36689 2000-05-04  Jim Meyering  <meyering@lucent.com>
36690
36691         * lib/getopt.c: Update from glibc.
36692         * lib/obstack.c: Likewise.
36693         * lib/obstack.h: Likewise.
36694         * lib/regex.c: Likewise.  NB: K&R compiler support is dropped for this
36695         file
36696
36697         * lib/regex.h: Likewise.
36698         * lib/strndup.c: Likewise.
36699         * lib/strnlen.c: New file, from glibc.
36700
36701 2000-05-03  Jim Meyering  <meyering@lucent.com>
36702
36703         * m4/check-decl.m4 (AC_CHECK_DECLS): Add strndup.
36704
36705 2000-05-02  Paul Eggert  <eggert@twinsun.com>
36706
36707         * m4/largefile.m4 (AC_SYS_LARGEFILE): Define _GNU_SOURCE if
36708         this is needed to make ftello visible (e.g. glibc 2.1.3).  Use
36709         compile-time test, rather than inspecting host and OS, to
36710         decide whether to define _LARGEFILE_SOURCE.
36711
36712 2000-05-01  Jim Meyering  <meyering@lucent.com>
36713
36714         * m4/fsusage.m4: Use AC_MSG_CHECKING instead of obsolete AC_CHECKING.
36715
36716         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Add BeOS support.
36717         Based on a patch from Bruno Haible.
36718
36719 2000-05-01  Jim Meyering  <meyering@lucent.com>
36720
36721         * lib/full-write.c (full_write): Remove `FIXME' part of comment.
36722
36723 2000-04-29  Jim Meyering  <meyering@lucent.com>
36724
36725         * lib/path-concat.c: Declare strdup only if it's not defined.
36726         * lib/canon-host.c: Likewise.
36727
36728 2000-04-28  Jim Meyering  <meyering@lucent.com>
36729
36730         * lib/rpmatch.c [HAVE_LIMITS_H]: Include limits.h before regex.h to
36731         avoid redefinition warning on some systems (HPUX).  Otherwise, regex.h
36732         is included first, then limits.h is included by locale.h by libintl.h.
36733         From John David Anglin.
36734
36735 2000-04-25  Jim Meyering  <meyering@lucent.com>
36736
36737         * lib/makepath.c (S_IRWXUGO): Define.
36738         (make_path): Always perform explicit chmod if MODE specifies any
36739         of the `special' permission bits.  Prompted by a bug report against
36740         install from Mate Wierdl and Joost van Baal.
36741
36742 2000-04-18  Jim Meyering  <meyering@lucent.com>
36743
36744         * m4/prereq.m4 (jm_PREREQ_GETPAGESIZE): New macro.
36745         (jm_PREREQ): Use it.
36746
36747 2000-04-18  Jim Meyering  <meyering@lucent.com>
36748
36749         * lib/README: New file.
36750
36751         * lib/getpagesize.h [!getpagesize && HAVE_OS_H && B_PAGE_SIZE]: Define
36752         getpagesize.  For BeOS.  Based on a patch from Bruno Haible.
36753
36754 2000-04-17  Jim Meyering  <meyering@lucent.com>
36755
36756         Get it right :-)
36757         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Emit the
36758         actual #define via AH_VERBATIM.  Don't need separate AC_DEFINE.
36759         Suggestion from Akim Demaille.
36760
36761 2000-04-17  Jim Meyering  <meyering@lucent.com>
36762
36763         * lib/strftime.c (my_strftime) [strftime]: Declare strftime here, since
36764         the definition of it to rpl_strftime also defined-away the system's
36765         declaration.
36766
36767 2000-04-15  Jim Meyering  <meyering@lucent.com>
36768
36769         Use `C' to denote so-called `contiguous' files, the same way
36770         that tar does.
36771         * lib/filemode.c (S_ISCTG) [!S_ISCTG && S_IFCTG]: Define.
36772         (ftypelet): Use S_ISCTG.
36773         From Michael Deutschmann.
36774
36775 2000-04-14  Jim Meyering  <meyering@lucent.com>
36776
36777         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Use the one-arg
36778         form of AC_DEFINE.  Otherwise, the #ifndef in AH_VERBATIM gets
36779         clobbered.
36780
36781 2000-04-14  Jim Meyering  <meyering@lucent.com>
36782
36783         * lib/strftime.c (my_strftime) [#ifdef strftime]: Declare strftime.
36784
36785 2000-04-13  Jim Meyering  <meyering@lucent.com>
36786
36787         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Use new
36788         AH_VERBATIM to insert required #ifndef into config.h.in.
36789         Suggestion from Akim Demaille.
36790
36791 2000-04-12  Jim Meyering  <meyering@lucent.com>
36792
36793         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Use AC_CHECK_HEADERS, not
36794         `AC_CHECK_HEADER' to check for locale.h.  Thanks to a report from
36795         Christian Krackowizer.
36796
36797         More code moved from ../configure.in into (jm_CHECK_ALL_TYPES).
36798         * m4/jm-macros.m4 (_GNU_SOURCE): Define.
36799         (AC_SYS_LARGEFILE): Require.
36800         (AM_C_PROTOTYPES): Require.
36801
36802 2000-04-08  Jim Meyering  <meyering@lucent.com>
36803
36804         * lib/Makefile.am (charset.alias): Use t-$@, not $@-t so the DOS 8.3
36805         names don't conflict.  Reported by Eli Zaretskii.
36806
36807 2000-04-07  Jim Meyering  <meyering@lucent.com>
36808
36809         * lib/putenv.c: Move inclusion of errno.h so it follows that of
36810         sys/types.h, to work around system header problems on AIX 3.2.5.
36811         From Bruno Haible.
36812
36813 2000-04-07  Bruno Haible  <haible@clisp.cons.org>
36814
36815         * lib/unicodeio.c (print_unicode_char): Avoid triggering Solaris iconv
36816         bug.  Deal with the different error behavior of Irix iconv.
36817
36818 2000-04-05  Paul Eggert  <eggert@twinsun.com>
36819
36820         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Don't use -n32 on
36821         IRIX if the installer said otherwise.
36822
36823 2000-04-05  Jim Meyering  <meyering@lucent.com>
36824
36825         Portability tweaks required for ultrix4.3.
36826         * m4/check-decl.m4 [!HAVE_UTMPX_H] (headers): Include <utmp.h>.
36827         (jm_CHECK_DECLS): Add getutent to the list of functions.
36828         (_jm_DECL_HEADERS): Add utmpx.h.
36829         From John David Anglin.
36830
36831         * m4/strftime.m4: Back out the 2000-04-02 change.
36832         Instead of that change, simply undefine putenv in the test program.
36833
36834 2000-04-05  Jim Meyering  <meyering@lucent.com>
36835
36836         Portability tweaks required for ultrix4.3.
36837         * lib/readutmp.h [HAVE_UTMPX_H && !HAVE_DECL_GETUTENT]: Declare
36838         getutent.
36839         * lib/readutmp.c: Include sys/types.h before sys/stat.h.
36840         * lib/canon-host.c: Declare strdup.
36841         * lib/path-concat.c: Likewise.
36842         From John David Anglin.
36843
36844 2000-04-04  Jim Meyering  <meyering@lucent.com>
36845
36846         Be more DOS 8.3-friendly.
36847         * lib/ref-add.sin: Renamed from ref-add.sed.in.
36848         * lib/ref-del.sin: Renamed from ref-del.sed.in.
36849         * lib/Makefile.am: Reflect renaming.
36850         Reported by Eli Zaretskii.
36851
36852         Use a temporary file name that won't clash with `charset.alias'
36853         in the DOS 8.3 name space.
36854         * lib/Makefile.am (charset_tmp): Define.
36855         (install-exec-local): Use $(charset_tmp) instead of $(charset_alias)-t.
36856         (uninstall-local): Likewise.
36857         Reported by Eli Zaretskii.
36858
36859 2000-04-03  Jim Meyering  <meyering@lucent.com>
36860
36861         * m4/gettext.m4: Fix typo in comment.
36862
36863         * m4/codeset.m4 (AC_CHECK_HEADERS): Add langinfo.h (moved here from
36864         textutils/configure.in).  Suggestion from Paul Eggert.
36865         (AC_CHECK_FUNCS): Add nl_langinfo.  (also from textutils/configure.in)
36866
36867 2000-04-02  Paul Eggert  <eggert@twinsun.com>
36868
36869         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME): Set TZ environment
36870         variable in the shell rather than using putenv, which isn't
36871         portable.  This avoids the configure-time inter-test dependency
36872         on the potentially-renamed putenv function.
36873
36874 2000-03-30  Paul Eggert  <eggert@twinsun.com>
36875
36876         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Include <sys/stat.h>
36877         before checking struct stat.st_blksize, so that
36878         HAVE_STRUCT_STAT_ST_BLKSIZE is defined correctly.
36879
36880 2000-03-29  Paul Eggert  <eggert@twinsun.com>
36881
36882         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Check for strftime,
36883         since strftime.c uses HAVE_STRFTIME to decide whether to use
36884         the underlying strftime.
36885
36886 2000-03-29  Paul Eggert  <eggert@twinsun.com>
36887
36888         * lib/time/strftime.c (my_strftime): Make sure we call the system
36889         strftime, not ourselves, when invoking the underlying strftime.
36890
36891 2000-03-24  Jim Meyering  <meyering@lucent.com>
36892
36893         * lib/Makefile.am (EXTRA_DIST): Add ref-add.sed.in and ref-del.sed.in.
36894         (charset_alias): Define.
36895         (install-exec-local): Factor out common code.
36896         (uninstall-local): Split lines longer than 80.
36897         (ref-add.sed, ref-del.sed): Remove rules... (do the following instead)
36898         (SUFFIXES): Define.
36899         (.sed.in.sed): New rule.  Don't redirect directly to $@.
36900         (CLEANFILES): Add ref-add.sed and ref-del.sed.
36901
36902 2000-03-19  Bruno Haible  <haible@clisp.cons.org>
36903
36904         * lib/config.charset: Output a line containing "Packages using this
36905         file".
36906         * lib/ref-add.sed.in, lib/ref-del.sed.in: New files.
36907         * lib/Makefile.am (install-exec-local, uninstall-local, ref-add.sed,
36908         ref-del.sed): New rules.
36909
36910 2000-03-17  Jim Meyering  <meyering@lucent.com>
36911
36912         * lib/unicodeio.c (<string.h>): Include only #if HAVE_STRING_H.
36913         Otherwise, include <strings.h>
36914
36915 2000-03-17  Bruno Haible  <haible@clisp.cons.org>
36916
36917         * lib/unicodeio.c (utf8_wctomb): New function.
36918         (print_unicode_char): Pass the Unicode character to iconv in UTF-8
36919         format instead of in UCS-4 with platform dependent endianness.
36920
36921 2000-03-10  Jim Meyering  <meyering@lucent.com>
36922
36923         * m4/lib-check.m4: Look for getspnam in -lgen, too.
36924         From Marco Franzen.
36925
36926 2000-03-07  Paul Eggert  <eggert@twinsun.com>
36927
36928         * lib/savedir.c (savedir): Work even if directory size is
36929         negative; this can happen with some screwy NFS configurations.
36930
36931 2000-03-06  Jim Meyering  <meyering@lucent.com>
36932
36933         * lib/localcharset.c (get_charset_aliases): Don't try to free file_name
36934         if it's NULL (because we ran out of memory).  From Bruno Haible.
36935
36936 2000-03-05  Jim Meyering  <meyering@lucent.com>
36937
36938         * lib/localcharset.c ("path-concat.h"): Include.
36939         (get_charset_aliases): Use path_concat instead of ANSI string
36940         concatenation.
36941
36942         * lib/unicodeio.h (PARAMS): Define.
36943         Use it to guard prototype.
36944
36945 2000-03-04  Jim Meyering  <meyering@lucent.com>
36946
36947         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require AC_C_VOLATILE,
36948         for lib/localcharset.c.
36949
36950 2000-03-04  Jim Meyering  <meyering@lucent.com>
36951
36952         * lib/Makefile.am (install-exec-local): Create $(libdir) before
36953         installing into it.
36954         (uninstall-local): Uncomment this rule so `make distcheck' works
36955         once again.
36956
36957         * lib/unicodeio.c (<errno.h>): Include it.
36958         (errno): Declare if not defined.
36959
36960         * lib/localcharset.c: Add Bruno's comment justifying use of volatile.
36961
36962         * lib/config.charset: New version, incorporating remarks from a linux
36963         i18n mailing list.  From Bruno Haible.
36964
36965 2000-03-04  Bruno Haible  <haible@clisp.cons.org>
36966
36967         * m4/codeset.m4: New file.
36968         * m4/iconv.m4: New file.
36969         * m4/jm-macros.m4 (jm_MACROS): Call jm_LANGINFO_CODESET and jm_ICONV.
36970
36971 2000-03-03  Jim Meyering  <meyering@lucent.com>
36972
36973         * m4/regex.m4: Make sure re_compile_pattern accepts patterns like `{1'.
36974
36975 2000-03-02  Jim Meyering  <meyering@lucent.com>
36976
36977         * m4/timespec.m4: Require AC_HEADER_TIME before the cache check so
36978         the messages come out on separate lines.
36979
36980         * m4/jm-glibc-io.m4 (jm_FUNC_GLIBC_UNLOCKED_IO): Use AC_CHECK_DECLS,
36981         rather than jm_CHECK_DECLARATIONS.
36982         * m4/decl.m4: Remove now-unused file.
36983
36984         * m4/check-decl.m4 (AC_CHECK_DECLS): Add getlogin, ttyname, and
36985         geteuid.
36986
36987 2000-03-02  Jim Meyering  <meyering@lucent.com>
36988
36989         * lib/Makefile.am (EXTRA_DIST): Add config.charset.
36990
36991 2000-03-01  Jim Meyering  <meyering@lucent.com>
36992
36993         * lib/localcharset.c: Guard some #includes with `#if HAVE_...'.
36994         * lib/unicodeio.c: Likewise.
36995
36996 2000-03-01  Bruno Haible  <haible@clisp.cons.org>
36997
36998         * lib/config.charset: New file.
36999         * lib/localcharset.c: New file.
37000         * lib/unicodeio.h, lib/unicodeio.c: New files.
37001         * lib/Makefile.am (DEFS): Add -DLIBDIR=...
37002         (libfetish_a_SOURCES): Add localcharset.c and unicodeio.c.
37003         (noinst_HEADERS): Add unicodeio.h.
37004         (all-local, install-exec-local, charset.alias): New targets.
37005
37006 2000-02-28  Paul Eggert  <eggert@twinsun.com>
37007
37008         * lib/quotearg.c (ALERT_CHAR): New macro.
37009         (quotearg_buffer_restyled): Use it.
37010
37011 2000-02-27  Jim Meyering  <meyering@lucent.com>
37012
37013         * m4/check-decl.m4: Add getenv to the list.
37014
37015 2000-02-27  Jim Meyering  <meyering@lucent.com>
37016
37017         * lib/strtoumax.c: Fix typo in decl of strtoul: s/long long/long/.
37018         Guard declaration of strtoull also with `&& HAVE_UNSIGNED_LONG_LONG'.
37019
37020         * lib/backupfile.c: Guard inclusion of stdlib.h with
37021         `#if HAVE_STDLIB_H', not `#if STDC_HEADERS'.
37022         Declare malloc if needed.
37023
37024         * lib/backupfile.c: Use `#if !HAVE_DECL...' instead of
37025         `#ifndef HAVE_DECL..'
37026         now that autoconf always defines the HAVE_DECL_ symbols.
37027         * lib/human.c: Likewise.
37028         * lib/same.c: Likewise.
37029         * lib/strtoumax.c: Likewise.
37030
37031         * lib/backupfile.c: Arrange for cpp to fail if the configure-time
37032         declaration check was not run.
37033         * lib/hash.c: Likewise.
37034         * lib/human.c: Likewise.
37035         * lib/same.c: Likewise.
37036         * lib/strtoumax.c: Likewise.
37037
37038         * lib/userspec.c (parse_user_spec): If there is no `:' but there is a
37039         `.', then first look up the entire `.'-containing string as a login
37040         name.
37041
37042 2000-02-23  Jim Meyering  <meyering@lucent.com>
37043
37044         * m4/check-decl.m4: Now that we have the new AC_CHECK_DECLS, use it
37045         in place of my hack.
37046
37047 2000-02-18  Paul Eggert  <eggert@twinsun.com>
37048
37049         * lib/getdate.y: Handle two-digit years with leading zeros correctly.
37050         (textint): New typedef.
37051         (parser_control): Member year changed from int to textint.
37052         All uses changed.
37053         (YYSTYPE): Removed; replaced by %union with int and textint members.
37054         (tDAY, tDAY_UNIT, tDAYZONE, tHOUR_UNIT, tID, tLOCAL_ZONE, tMERIDIAN,
37055         tMINUTE_UNIT, tMONTH, tMONTH_UNIT tSEC_UNIT, tSNUMBER, tUNUMBER,
37056         tYEAR_UNIT, tZONE, o_merid): Now of type <intval>.
37057         (tSNUMBER, tUNUMBER): Now of type <textintval>.
37058         (date, number, to_year): Use width of number in digits, not its value,
37059         to determine whether it's a 2-digit year, or a 2-digit time.
37060         (yylex): Store number of digits of numeric tokens.
37061         Reported by John Kendall.
37062
37063         (parser_control): Changed from struct parser_control to typedef (for
37064         consistency).  All uses changed.
37065
37066         (tID): Removed; not used.
37067         (yylex): Return '?' for unknown identifiers, rather than (unused) tID.
37068
37069 2000-02-14  Paul Eggert  <eggert@twinsun.com>
37070
37071         * lib/getpagesize.h (getpagesize): Port to VMS for Alpha;
37072         adapted from changes to grep getpagesize.h by Martin P.J. Zinser.
37073
37074 2000-02-12  Jim Meyering  <meyering@lucent.com>
37075
37076         * lib/userspec.c (ISDIGIT): Define it.
37077         (isdigit): Remove definition.
37078         (is_number): Use ISDIGIT, not isdigit.
37079         <libintl.h>: Include.
37080         (_ and N_): Define.
37081         (parse_user_spec): Mark translatable strings.
37082
37083 2000-02-10  Jim Meyering  <meyering@lucent.com>
37084
37085         With these changes, nanosleep.[ch] are finally enough like the other
37086         lib/* replacement files to compile on a few more losing systems.
37087
37088         * lib/nanosleep.h: Don't include config.h.
37089         Remove prototype from declaration of nanosleep.
37090         (PARAMS): Remove now-unneeded definition.
37091         * lib/nanosleep.c: #undef nanosleep.
37092         (rpl_nanosleep): Rename from nanosleep.
37093
37094 2000-02-10  Jim Meyering  <meyering@lucent.com>
37095
37096         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Rename replacement function from
37097         gnu_nanosleep to rpl_nanosleep.
37098
37099 2000-02-09  Jim Meyering  <meyering@lucent.com>
37100
37101         * m4/lib-check.m4 (jm_LIB_CHECK): Fix typo: check for sp_pwdp in
37102         struct spwd, rather than in struct passwd.  Reported by Gaël Quéri.
37103
37104 2000-02-08  Akim Demaille  <akim@epita.fr>
37105
37106         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Quote square brackets with
37107         `[' and `]' and remove uses of `changequote'.
37108         (AC_SYS_LARGEFILE_MACRO_VALUE): Likewise.
37109         (AC_SYS_LARGEFILE): Likewise.
37110         * m4/gettext.m4 (AM_GNU_GETTEXT): Likewise.
37111         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME): Remove now-unnecessary use
37112         of changequote.
37113         * m4/regex.m4 (jm_INCLUDED_REGEX): Likewise.
37114         * m4/readdir.m4 (jm_FUNC_READDIR): Likewise
37115         * m4/memcmp.m4 (jm_AC_FUNC_MEMCMP): Likewise, and add `int' for main.
37116         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Likewise.
37117
37118 2000-02-05  Jim Meyering  <meyering@lucent.com>
37119
37120         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require most macros.
37121         Remove explicit use of AC_HEADER_TIME.  It is required by
37122         jm_CHECK_TYPE_STRUCT_TIMESPEC.  Using AC_HEADER_TIME and
37123         `AC_REQUIRE'ing jm_CHECK_TYPE_STRUCT_TIMESPEC provoked a but
37124         in autoconf whereby the expansion of the latter ended up preceding
37125         the expansion of its prerequisite, AC_HEADER_TIME.
37126         Reported by Volker Borchert.
37127
37128 2000-02-03  Jim Meyering  <meyering@lucent.com>
37129
37130         * m4/prereq.m4 (jm_PREREQ_READUTMP): Check for utmpxname.
37131
37132 2000-02-03  Jim Meyering  <meyering@lucent.com>
37133
37134         * lib/readutmp.c (read_utmp): Guard with `#ifdef UTMP_NAME_FUNCTION',
37135         rather than with `#if HAVE_UTMPNAME'.
37136
37137 2000-02-02  Jim Meyering  <meyering@lucent.com>
37138
37139         * m4/prereq.m4 (jm_PREREQ_ADDEXT): Fix typo that resulted in no
37140         definition of HAVE_PATHCONF: s/AC_CHECK_FUNC/AC_CHECK_FUNCS/.
37141         Reported by Eli Zaretskii.
37142
37143 2000-02-01  Jim Meyering  <meyering@lucent.com>
37144
37145         * lib/readutmp.h (UT_USER): Add parens.  From Andreas Schwab.
37146
37147 2000-01-31  Jim Meyering  <meyering@lucent.com>
37148
37149         * m4/check-decl.m4 (jm_CHECK_DECLS): Add nanosleep to the list of
37150         functions.  Add the time.h and sys/time.h headers along with the
37151         AC_REQUIRE'ment of AC_HEADER_TIME.
37152
37153 2000-01-31  Jim Meyering  <meyering@lucent.com>
37154
37155         * lib/nanosleep.h (nanosleep): Guard declaration with
37156         `#if ! HAVE_DECL_NANOSLEEP'.
37157         Without this, OFS gets a redeclaration error for rpl_nanosleep, due to
37158         the declaration in that vendor's sys/timers.h.
37159         Reported by Christian Krackowizer.
37160
37161         * lib/quotearg.c (ISASCII): Add #undef and move definition to follow
37162         inclusion of wctype.h to work around Solaris 2.6 namespace pollution.
37163         (ISPRINT): Likewise.
37164         Reported by Tom Tromey.
37165
37166 2000-01-30  Jim Meyering  <meyering@lucent.com>
37167
37168         * m4/lib-check.m4: Clean up some kludgy old shadow password tests.
37169
37170         * m4/prereq.m4 (utmp_includes): Define.
37171         Check for ut_user and ut_name members in both struct utmpx
37172         and struct utmp.
37173
37174 2000-01-30  Jim Meyering  <meyering@lucent.com>
37175
37176         * lib/readutmp.c (extract_trimmed_name): Use UT_USER instead of
37177         hard-coding uses of ->ut_name.  The latter doesn't work with new Linux
37178         header files where only utmpx.ut_user is declared.
37179
37180         * lib/readutmp.h (UT_USER): Define.
37181
37182 2000-01-29  Jim Meyering  <meyering@lucent.com>
37183
37184         * m4/lib-check.m4: New file containing library-related checks from
37185         fileutils and sh-utils (textutils had none).
37186
37187 2000-01-28  Jim Meyering  <meyering@lucent.com>
37188
37189         * m4/perl.m4: Change format of warning message to look more like that
37190         from the missing script.  Suggestion from François Pinard.
37191
37192 2000-01-25  Jim Meyering  <meyering@lucent.com>
37193
37194         * m4/timespec.m4: Require AC_HEADER_TIME, and include sys/time.h as
37195         well as time.h in the compile check.
37196         * m4/nanosleep.m4: Require AC_HEADER_TIME rather than simply using it.
37197         Fix typo in cross-compiling case: s/yes/no/.
37198
37199 2000-01-23  Jim Meyering  <meyering@lucent.com>
37200
37201         * m4/jm-macros.m4: Move df-related tests here from
37202         fileutils/configure.in
37203
37204         * m4/ls-mntd-fs.m4: s/list_mounted_fs/ac_list_mounted_fs/
37205         (jm_LIST_MOUNTED_FILESYSTEMS): Take two parameters.
37206
37207         * m4/fsusage.m4: New file.  Extracted from fileutils/configure.in.
37208         s/space/ac_fsusage_space/.
37209         (jm_FILE_SYSTEM_USAGE): Take two parameters.
37210
37211         * m4/ftruncate.m4: New file (derived from part of
37212         fileutils/configure.in).
37213         * m4/jm-macros.m4 (jm_FUNC_FTRUNCATE): AC_REQUIRE it.
37214         (jm_CHECK_ALL_TYPES): Require AC_HEADER_MAJOR and AC_HEADER_DIRENT.
37215
37216         * m4/jm-macros.m4 (OPTIONAL_BIN_PROGS, OPTIONAL_BIN_ZCRIPTS, MAN):
37217         AC_SUBST these here, rather than just in sh-util/configure.in, so
37218         that the now-shared-by-fileutils-and-textutils lib/Makefile.am are
37219         all the same.
37220         (AM_FUNC_OBSTACK): Add (from fileutils/configure.in).
37221         (AC_CHECK_FUNCS): Merge all checks from fileutils, textutils, sh-utils.
37222         (AM_FUNC_STRTOD): Added (from textutils', sh-utils' configure.in).
37223         (AC_SUBST(POW_LIBM)): Likewise.
37224         (AC_SUBST(DF_PROG)): Moved from fileutils/configure.in.
37225
37226 2000-01-23  Jim Meyering  <meyering@lucent.com>
37227
37228         * lib/Makefile.am (libfetish_a_SOURCES): Remove explicit mention of
37229         obstack.c.
37230
37231 2000-01-22  Jim Meyering  <meyering@lucent.com>
37232
37233         * m4/jm-macros.m4: Call AC_PROG_CC_STDC just before AC_C_CONST.
37234
37235         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Add wctype.h.
37236
37237         * m4/jm-macros.m4 (AC_CHECK_HEADERS): Add checks from fileutils'
37238         configure.in
37239         (AC_CHECK_HEADERS): Likewise for sh-utils.
37240         (AC_CHECK_HEADERS): Likewise for textutils.
37241         Merge the three lists of headers.
37242
37243         * m4/prereq.m4 (jm_PREREQ_ADDEXT): New macro.  Parts moved here
37244         from fileutils' configure.in.
37245
37246         * m4/decl.m4: Remove kludgy `test -z $ac_...AC_CHECK_HEADERS(...)'
37247         code. Moved tests into their own function (_jm_DECL_HEADERS) in
37248         check-decl.m4.
37249
37250         * m4/check-decl.m4: Use #if rather than #ifdef.
37251         Add HAVE_DECL_STRTOUL and HAVE_DECL_STRTOULL.
37252         (jm_CHECK_DECLARATIONS): Add strtoul strtoull.
37253         (_jm_DECL_HEADERS): Define new function.
37254         (jm_CHECK_DECLARATIONS): Require it.
37255
37256 2000-01-22  Jim Meyering  <meyering@lucent.com>
37257
37258         * lib/strtoumax.c: [! HAVE_DECL_STRTOUL]: Declare strtoul.
37259         [! HAVE_DECL_STRTOULL]: Declare strtoull.
37260         Required for some AIX systems.  Reported by Christian Krackowizer.
37261         [TESTING] (main): New function.
37262
37263         1997-10-17  Eli Zaretskii  <eliz@is.elta.co.il>
37264         * lib/dirname.c (dir_name): Support for DOS-style file names with drive
37265         letters.
37266
37267         * lib/quotearg.c [HAVE_WCTYPE_H]: Include <wctype.h> for decl of
37268         iswprint.
37269
37270         * lib/strverscmp.c (ISDIGIT): Define.
37271         (strverscmp): Use ISDIGIT, not isdigit.
37272
37273 2000-01-19  Jim Meyering  <meyering@lucent.com>
37274
37275         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Include <sys/time.h>, too.
37276         Use AC_HEADER_TIME.  Volker Borchert reported that OpenBSD-2.3/sparc
37277         defines `struct timespec' in <sys/time.h>
37278
37279         * m4/c-bs-a.m4: Remove uses of changequote altogether.
37280         Thanks to Akim for explaining.
37281
37282 2000-01-17  Paul Eggert  <eggert@twinsun.com>
37283
37284         * lib/nanosleep.c (nanosleep):
37285         Don't use SA_INTERRUPT to decide whether to call sigaction, as
37286         POSIX.1 doesn't require SA_INTERRUPT and some systems
37287         (e.g. Solaris 7) don't define it.  Use SA_NOCLDSTOP instead;
37288         it's been part of POSIX.1 since day 1 (in 1988).
37289
37290 2000-01-17  Jim Meyering  <meyering@lucent.com>
37291
37292         * lib/interlock: Remove unused file.  Reported by François Pinard.
37293
37294 2000-01-16  Paul Eggert  <eggert@twinsun.com>
37295
37296         * lib/quotearg.c (quotearg_buffer_restyled): Do not quote
37297         alert, backslash, formfeed, and vertical tab unnecessarily in
37298         shell quoting style.
37299
37300 2000-01-16  Jim Meyering  <meyering@lucent.com>
37301
37302         * m4/jm-macros.m4: Require jm_FUNC_GROUP_MEMBER, jm_FUNC_PUTENV,
37303         AM_FUNC_ERROR_AT_LINE, jm_FUNC_GNU_STRFTIME, jm_FUNC_MKTIME,
37304         jm_FUNC_GETGROUPS AC_FUNC_VPRINTF, AC_FUNC_ALLOCA,
37305         AM_FUNC_GETLOADAVG, and jm_SYS_PROC_UPTIME.
37306
37307 2000-01-16  Jim Meyering  <meyering@lucent.com>
37308
37309         * m4/c-bs-a.m4: Use `changequote(<<,>>)', rather than `changequote(, )'
37310         because the latter didn't work.
37311
37312 2000-01-15  Jim Meyering  <meyering@lucent.com>
37313
37314         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add gethostname and getusershell.
37315         (AC_REPLACE_FUNCS): Add memcpy and memset.
37316         Add these, too: stime strcspn stpcpy strstr strtol strtoul.
37317         Add strpbrk.
37318         Add these: euidaccess memcmp mkdir rmdir rpmatch strndup strverscmp.
37319
37320 2000-01-12  Jim Meyering  <meyering@lucent.com>
37321
37322         * m4/prereq.m4 (jm_PREREQ_CANON_HOST): New macro.
37323         (jm_PREREQ): Use it.
37324         (jm_PREREQ_READUTMP): New macro.
37325         (jm_PREREQ): Use it.
37326
37327 2000-01-11  Paul Eggert  <eggert@twinsun.com>
37328
37329         Quote multibyte characters correctly.
37330         * m4/c-bs-a.m4: New file.
37331         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): New macro.
37332         (jm_PREREQ): Use it.
37333
37334 2000-01-11  Paul Eggert  <eggert@twinsun.com>
37335
37336         * m4/uintmax_t.m4: Port to autoconf 2.13.
37337
37338 2000-01-08  Jim Meyering  <meyering@ascend.com>
37339
37340         * m4/strerror_r.m4 (jm_FUNC_STRERROR_R): New file/macro.
37341         * m4/jm-macros.m4 (jm_FUNC_STRERROR_R): Require it.
37342
37343 2000-01-04  Jim Meyering  <meyering@ascend.com>
37344
37345         * m4/d-type.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Rename from
37346         jm_STRUCT_DIRENT_D_TYPE.
37347         * m4/d-ino.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_INO): Rename from
37348         jm_STRUCT_DIRENT_D_INO.
37349         * m4/utimbuf.m4 (jm_CHECK_TYPE_STRUCT_UTIMBUF): Rename from
37350         jm_STRUCT_UTIMBUF.
37351         * m4/jm-macros.m4: Reflect s/jm_STRUCT_/jm_CHECK_TYPE_STRUCT_/
37352         renamings.
37353         * m4/utime.m4: Likewise.
37354
37355         * m4/timespec.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC): New file, macro.
37356         * m4/jm-macros.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC): Require it.
37357
37358 2000-01-03  Paul Eggert  <eggert@twinsun.com>
37359
37360         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Search for nanosleep in -lrt
37361         (for Solaris 7) and in -lposix4 (for Solaris 2.5.1).
37362
37363 2000-01-02  Jim Meyering  <meyering@ascend.com>
37364
37365         * m4/search-libs.m4: Escape `$' in $3 of dnl comment.  I no longer
37366         remember if this is necessary.
37367
37368 1999-12-26  Jim Meyering  <meyering@ascend.com>
37369
37370         * m4/jm-macros.m4: Use it here.
37371         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): New file/macro.
37372
37373 1999-12-23  Jim Meyering  <meyering@ascend.com>
37374
37375         * m4/jm-macros.m4: Check for clock_gettime (moved from
37376         fileutils/configure.in)
37377         Check for gettimeofday.
37378
37379 1999-12-20  Jim Meyering  <meyering@ascend.com>
37380
37381         * m4/strftime.m4: Remove kludge, now that I'm using the fixed
37382         autoconf-2.14a-1999-12-20.
37383
37384 1999-12-19  Jim Meyering  <meyering@ascend.com>
37385
37386         * m4/lstat-slash.m4: New file.
37387         * m4/jm-macros.m4: Use the new macro:
37388         jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
37389
37390 1999-12-07  Jim Meyering  <meyering@ascend.com>
37391
37392         * m4/perl.m4: Require that File::Compare be available, too.
37393         Too many systems seem to lack it.
37394
37395         * m4/strftime.m4: Add checks for most of the cpp macros tested in
37396         GNU's strftime.c.  Prompted by a patch from Paul Eggert.
37397
37398 1999-11-18  Paul Eggert  <eggert@twinsun.com>
37399
37400         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Work around a
37401         problem with the QNX 4.25 shell, which doesn't propagate exit
37402         status of failed commands inside shell assignments.
37403
37404 1999-11-17  Jim Meyering  <meyering@ascend.com>
37405
37406         * m4/gettext.m4: Use new AC_CONFIG_LINKS in place of AC_LINK_FILES.
37407
37408 1999-11-07  Jim Meyering  <meyering@ascend.com>
37409
37410         * m4/getloadavg.m4: Add `, 1, [FIXME]' to each use of AC_DEFINE.
37411
37412 1999-11-06  Jim Meyering  <meyering@ascend.com>
37413
37414         * m4/link-follow.m4 (jm_AC_FUNC_LINK_FOLLOWS_SYMLINK): New file/macro.
37415         * m4/jm-macros.m4 (jm_MACROS): Use it here.
37416
37417 1999-11-05  Jim Meyering  <meyering@ascend.com>
37418
37419         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Move some tests from
37420         configure.in of textutils, fileutils, and sh-utils into this one
37421         (shared between those packages) file.
37422         Use `AC_CHECK_MEMBERS((struct stat.st_blksize))' instead of deprecated
37423         AC_STRUCT_ST_BLKSIZE.
37424
37425 1999-11-03  Jim Meyering  <meyering@ascend.com>
37426
37427         * m4/ssize_t.m4: Remove file.  No longer needed since the new version
37428         of AC_CHECK_TYPE checks includes unistd.h.
37429         * m4/jm-macros.m4: Use straight `AC_CHECK_TYPE(ssize_t, int)'.
37430         Suggestion from Akim Demaille.
37431
37432 1999-10-30  Jim Meyering  <meyering@ascend.com>
37433
37434         * m4/uintmax_t.m4: Require 2.14a.  Remove backslash before backtick in
37435         m4-quoted string.
37436         * m4/ls-mntd-fs.m4: Likewise.
37437         * m4/jm-macros.m4: Likewise.  Also, use AC_TYPE_SSIZE_T instead
37438         * m4/jm-winsz1.m4: Likewise.
37439
37440         * m4/const.m4: Remove file, since the fix made it into the experimental
37441         version of autoconf.
37442         * m4/mktime.m4: Likewise.
37443
37444         * m4/check-type.m4: Remove file, now that the latest version of
37445         AC_CHECK_TYPE takes a third arg to specify additional #includes.
37446
37447         * m4/ssize_t.m4: New file, requires experimental version of autoconf.
37448         * m4/jm-macros.m4: Use new AC_TYPE_SSIZE_T instead of my hacked
37449         AC_CHECK_TYPE.
37450
37451 1999-10-04  Jim Meyering  <meyering@ascend.com>
37452
37453         * m4/jm-macros.m4: Don't require autoconf-2.14.1.
37454
37455 1999-09-22  Paul Eggert  <eggert@twinsun.com>
37456
37457         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Work around GCC
37458         2.95.1 bug with HP-UX 10.20.
37459
37460 1999-09-17  Jim Meyering  <meyering@ascend.com>
37461
37462         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add strdup.
37463         Paul Nevai reported a link failure on a NeXT CUBE with NeXTSTEP 3.3
37464         due to missing strdup (against sh-utils-2.0).
37465
37466 1999-08-29  Jim Meyering  <meyering@ascend.com>
37467
37468         * m4/jm-macros.m4: Require jm_BISON.
37469         * m4/bison.m4: New file.
37470
37471 1999-08-17  Paul Eggert  <eggert@twinsun.com>
37472
37473         * m4/largefile.m4 (AC_SYS_LARGEFILE): Fix typo: missing comma
37474         in value for _FILE_OFFSET_BITS, which broke ports to HP-UX 10.20.
37475
37476 1999-08-05  Jim Meyering  <meyering@ascend.com>
37477
37478         * m4/getline.m4: Rename test file from conftestdata to conftest.data
37479         to avoid conflicts with `conftest' on 8+3 filesystems.
37480         Suggestion from Eli Zaretskii.
37481
37482 1999-08-04  Jim Meyering  <meyering@ascend.com>
37483
37484         * m4/jm-macros.m4: Move a 4-line block of code from the configure.in of
37485         fileutils and sh-utils (textutils's getline test was inadequate).
37486         (AM_FUNC_GETLINE): Run this test.
37487         (AC_CHECK_FUNCS): Check for getdelim.
37488         Reported by Bob Proulx.
37489
37490 1999-08-02  Jim Meyering  <meyering@ascend.com>
37491
37492         * m4/jm-macros.m4: Add a comment.
37493
37494 1999-08-01  Paul Eggert  <eggert@twinsun.com>
37495
37496         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Check whether
37497         <inttypes.h> defines strtoumax as a macro (and not as a
37498         function).
37499
37500 1999-08-01  Paul Eggert  <eggert@twinsun.com>
37501
37502         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Make sure
37503         that we can shift, multiply and divide unsigned long long
37504         values; Ultrix cc can't do it.
37505
37506 1999-08-01  Paul Eggert  <eggert@twinsun.com>
37507
37508         * m4/mktime.m4: New file, which is a preview of what should appear
37509         in the next public autoconf release.
37510
37511 1999-08-01  Paul Eggert  <eggert@twinsun.com>
37512
37513         * m4/lfs.m4: Remove this file.
37514         * m4/largefile.m4: New file.  It contains the old contents of
37515         lfs.m4, except that all names with prefix AC_LFS have been
37516         changed to use the prefix AC_SYS_LARGEFILE instead, to be
37517         compatible with future autoconf versions.  Also, some minor m4
37518         quoting problems have been fixed.
37519
37520 1999-08-01  Paul Eggert  <eggert@twinsun.com>
37521
37522         * m4/gettext.m4 (AM_WITH_NLS): Remove unnecessary lines.
37523         Fix typo: $nls_cv_header_intl was misspelled as $nsl_cv_header_intl.
37524         (AM_GNU_GETTEXT): Fix problem with brackets and m4 quoting,
37525         and simplify the shell code.
37526
37527 1999-08-01  Jim Meyering  <meyering@ascend.com>
37528
37529         * m4/mktime.m4 (AC_FUNC_MKTIME): Undefine to avoid syntax errors from
37530         m4.
37531
37532 1999-07-20  Jim Meyering  <meyering@ascend.com>
37533
37534         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memmove.
37535
37536 1999-07-15  Jim Meyering  <meyering@ascend.com>
37537
37538         * m4/jm-macros.m4 (AC_CHECK_FUNCS): Check for getpagesize.
37539
37540 1999-05-22  Jim Meyering  <meyering@ascend.com>
37541
37542         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memchr.
37543
37544 1999-05-20  Jim Meyering  <meyering@ascend.com>
37545
37546         * m4/search-libs.m4 [AC_SEARCH_LIBS]: Quote name in undefine.
37547         Add a colon after each `then' in case $4 is empty.
37548
37549 1999-05-16  Jim Meyering  <meyering@ascend.com>
37550
37551         * m4/search-libs.m4: New file to override autoconf's AC_SEARCH_LIBS.
37552
37553 1999-05-10  Jim Meyering  <meyering@ascend.com>
37554
37555         * m4/jm-mktime.m4: Reflect renaming: AM_FUNC_MKTIME -> AC_FUNC_MKTIME.
37556
37557         * m4/jm-macros.m4: Require 2.14.1, since we use newly-renamed
37558         AC_FUNC_MKTIME.
37559
37560 1999-05-10  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
37561
37562         * m4/jm-mktime.m4, putenv.m4: Fix typos in config.h comments.
37563
37564 1999-05-04  Paul Eggert  <eggert@twinsun.com>
37565
37566         * m4/lfs.m4 (AC_LFS): -n32, -o32, and -n64 should be in CFLAGS,
37567         not CPPFLAGS, so that linking works correctly in IRIX.
37568
37569 1999-04-30  Paul Eggert  <eggert@twinsun.com>
37570
37571         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add dup2.
37572
37573 1999-04-20  Paul Eggert  <eggert@twinsun.com>
37574
37575         * m4/uintmax_t.m4 (jm_AC_TYPE_UINTMAX_T): Move unsigned long
37576         long check into new jm_AC_TYPE_UNSIGNED_LONG_LONG macro.
37577         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require
37578         jm_AC_TYPE_UNSIGNED_LONG_LONG.
37579         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): New file/macro.
37580
37581         * m4/lfs.m4: Port to AIX and HP-UX.  Support cross-compilation.
37582
37583 1999-04-20  Jim Meyering  <meyering@ascend.com>
37584
37585         * m4/xstrtoumax.m4: Require jm_AC_TYPE_UNSIGNED_LONG_LONG.
37586         AC_REPLACE xstroull if necessary.  From Paul Eggert.
37587         (AC_CHECK_FUNCS): Remove strtoull, strtoumax, strtouq.
37588
37589 1999-04-18  Jim Meyering  <meyering@ascend.com>
37590
37591         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): New file/macro.
37592         * m4/jm-macros.m4: Use it.
37593
37594 1999-04-06  Jim Meyering  <meyering@ascend.com>
37595
37596         * m4/strftime.m4: Remove test for %f.
37597
37598 1999-03-29  Jim Meyering  <meyering@ascend.com>
37599
37600         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): New macro, contains the
37601         superset of the AC_TYPE_* checks in the textutils, fileutils,
37602         and sh-utils, plus AC_TYPE_PID_T.  Paul Eggert suggested adding
37603         AC_TYPE_PID_T.
37604
37605 1999-03-28  Jim Meyering  <meyering@ascend.com>
37606
37607         * m4/jm-macros.m4: Define GNU_PACKAGE here.
37608         Be sure to AC_SUBST it, once again, so that @GNU_PACKAGE@ is
37609         replaced e.g., in the *.sh files of the sh-utils.
37610
37611 1999-03-20  Jim Meyering  <meyering@ascend.com>
37612
37613         * m4/jm-macros.m4: s/jm_WITH_REGEX/jm_INCLUDED_REGEX/.
37614         * m4/regex.m4 (jm_INCLUDED_REGEX): Rename from jm_WITH_REGEX.
37615         Don't depend on AM_GLIBC.  Suggestions from Alain Magloire.
37616
37617 1999-03-19  Jim Meyering  <meyering@ascend.com>
37618
37619         * m4/jm-winsz1.m4 (jm_WINSIZE_IN_PTEM): New macro.
37620
37621 1999-03-12  Jim Meyering  <meyering@ascend.com>
37622
37623         * m4/jm-macros.m4: Use AC_FUNC_SETVBUF_REVERSED.
37624
37625 1999-03-07  Jim Meyering  <meyering@ascend.com>
37626
37627         * m4/jm-glibc-io.m4: Use only those *_unlocked macros that are
37628         declared.
37629
37630 1999-02-17  Jim Meyering  <meyering@ascend.com>
37631
37632         * m4/gettext.m4 (AM_GNU_GETTEXT): Do `changequote' around use of
37633         brackets in macro definition.  From Eli Zaretskii and Alain Magloire.
37634
37635 1999-02-07  Jim Meyering  <meyering@ascend.com>
37636
37637         * m4/group-member.m4: New file -- extracted from sh-utils'
37638         configure.in.
37639
37640         1999-02-05  Eli Zaretskii  <eliz@is.elta.co.il>
37641         * m4/gettext.m4: Support DOS-style d:/foo/bar absolute file names.
37642
37643 1999-02-06  Jim Meyering  <meyering@ascend.com>
37644
37645         * m4/chown.m4: Use `AC_SUBST(LIBOBJS)' since we set LIBOBJS.
37646         * m4/fnmatch.m4: Likewise.
37647         * m4/getgroups.m4: Likewise.
37648         * m4/lstat.m4: Likewise.
37649         * m4/malloc.m4: Likewise.
37650         * m4/putenv.m4: Likewise.
37651         * m4/realloc.m4: Likewise.
37652         * m4/regex.m4: Likewise.
37653         * m4/stat.m4: Likewise.
37654         * m4/strftime.m4: Likewise.
37655         Suggestion from Alain Magloire.
37656
37657         * m4/chown.m4: Use `.$ac_objext', not `.o'.
37658         * m4/fnmatch.m4: Likewise.
37659         * m4/getgroups.m4: Likewise.
37660         * m4/getline.m4: Likewise.
37661         * m4/lstat.m4: Likewise.
37662         * m4/malloc.m4: Likewise.
37663         * m4/memcmp.m4: Likewise.
37664         * m4/putenv.m4: Likewise.
37665         * m4/realloc.m4: Likewise.
37666         * m4/regex.m4: Likewise.
37667         * m4/stat.m4: Likewise.
37668         * m4/strftime.m4: Likewise.
37669         Suggestion from Alain Magloire.
37670
37671         * m4/jm-macros.m4: Actually invoke jm_WITH_REGEX now that it requires
37672         an argument.
37673
37674         * m4/regex.m4: Add a run-time Test for proper operation of
37675         re_compile_pattern.
37676
37677 1999-01-31  Jim Meyering  <meyering@ascend.com>
37678
37679         * m4/getloadavg.m4: Check for locale.h and the function, setlocale.
37680
37681 1999-01-30  Jim Meyering  <meyering@ascend.com>
37682
37683         * m4/check-type.m4: Use 3-arg form of AC_DEFINE.
37684
37685         * m4/jm-mktime.m4: Make this a wrapper around the official
37686         AM_FUNC_MKTIME rather than my private copy, now that the official one
37687         is up to date.
37688         * m4/mktime.m4: Remove file.
37689
37690         * m4/getloadavg.m4: Use 3-arg form of AC_DEFINE.
37691         * m4/uptime.m4: Likewise.
37692         * m4/uintmax_t.m4: Likewise.
37693
37694 1999-01-28  Jim Meyering  <meyering@ascend.com>
37695
37696         * m4/jm-macros.m4: Use jm_AFS.
37697         * m4/afs.m4: New file (from fileutils' configure.in).
37698
37699         * m4/assert.m4: Use the 3-argument forms of AC_DEFINE* macros.
37700         * m4/chown.m4: Likewise.
37701         * m4/d-ino.m4: Likewise.
37702         * m4/d-type.m4: Likewise.
37703         * m4/fnmatch.m4: Likewise.
37704         * m4/getgroups.m4: Likewise.
37705         * m4/gettext.m4: Likewise.
37706         * m4/jm-mktime.m4: Likewise.
37707         * m4/jm-winsz2.m4: Likewise.
37708         * m4/lcmessage.m4: Likewise.
37709         * m4/ls-mntd-fs.m4: Likewise.
37710         * m4/malloc.m4: Likewise.
37711         * m4/memcmp.m4: Likewise.
37712         * m4/putenv.m4: Likewise.
37713         * m4/realloc.m4: Likewise.
37714         * m4/st_mtim.m4: Likewise.
37715         * m4/strftime.m4: Likewise.
37716
37717 1999-01-16  Jim Meyering  <meyering@ascend.com>
37718
37719         * m4/jm-macros.m4 (ARGMATCH_DIE): Define.
37720         (ARGMATCH_DIE_DECL): Define.
37721
37722 1999-01-12  Jim Meyering  <meyering@ascend.com>
37723
37724         * m4/Makefile.am.in: Rewrite to avoid using fmt.
37725         Reported by Lars Hecking.
37726
37727 1999-01-10  Jim Meyering  <meyering@ascend.com>
37728
37729         * m4/fstypename.m4: Use the new 3-arg form of AC_DEFINE instead of my
37730         gross kludge.
37731         * m4/inttypes_h.m4: Likewise.
37732         * m4/lstat.m4: Likewise.
37733         * m4/malloc.m4: Likewise.
37734         * m4/readdir.m4: Likewise.
37735         * m4/realloc.m4: Likewise.
37736         * m4/st_dm_mode.m4: Likewise.
37737         * m4/stat.m4: Likewise.
37738         * m4/utimbuf.m4: Likewise.
37739         * m4/utimes.m4: Likewise.
37740
37741         * m4/check-decl.m4: Use the new 3-arg form of AC_DEFINE instead of the
37742         AC_CHECK_FUNCS hack.  Now, it's still a hack, but at least the
37743         comments in config.h.in are meaningful.
37744
37745         * m4/jm-macros.m4: Require autoconf-2.13 here.
37746
37747         * m4/regex.m4: By default, don't use the included regex.c on systems
37748         with glibc 2.  Suggestion from Uli Drepper.
37749
37750 1999-01-02  Jim Meyering  <meyering@ascend.com>
37751
37752         * m4/jm-macros.m4: Replace strcasecmp and strncasecmp.
37753
37754 1998-12-18  Jim Meyering  <meyering@ascend.com>
37755
37756         * m4/Makefile.am.in (Makefile.am): Simplify rule.
37757         Based on a suggestion from Lars Hecking.
37758
37759 1998-11-16  Paul Eggert  <eggert@twinsun.com>
37760
37761         * m4/lfs.m4 (AC_LFS): Add support for HP-UX 10.20 and HP-UX 11.
37762
37763 1998-11-16  Jim Meyering  <meyering@ascend.com>
37764
37765         * m4/lfs.m4: Double-quote the `uname...` expression.
37766
37767 1998-11-14  Jim Meyering  <meyering@ascend.com>
37768
37769         * m4/lstat.m4: Correct comment.  POSIX does not permit it to succeed.
37770         * m4/stat.m4: Likewise.
37771
37772 1998-11-03  Jim Meyering  <meyering@ascend.com>
37773
37774         * m4/stat.m4: Rewrite to set HAVE_STAT_EMPTY_STRING_BUG.
37775         * m4/lstat.m4: Rewrite to set HAVE_LSTAT_EMPTY_STRING_BUG.
37776
37777 1998-10-18  Jim Meyering  <meyering@ascend.com>
37778
37779         * m4/check-decl.m4 (jm_CHECK_DECL_LOCALTIME_R): Remove macro.
37780
37781 1998-10-17  Jim Meyering  <meyering@ascend.com>
37782
37783         * m4/decl.m4 (jm_CHECK_DECLARATION): Don't hard-code which headers to
37784         include, though we still hard-code the `require'-like AC_CHECK_HEADERS
37785         calls for those previously hard-coded headers.  Instead, take a new
37786         parameter.
37787         (jm_CHECK_DECLARATIONS): Reflect interface change.
37788         * m4/check-decl.m4 (jm_CHECK_DECLS): Likewise.
37789         (jm_CHECK_DECL_LOCALTIME_R): New macro.
37790
37791         * m4/mktime.m4: Test for spring-forward gap before long-running test.
37792
37793 1998-10-14  Jim Meyering  <meyering@ascend.com>
37794
37795         * m4/mktime.m4: Use the more portable "TZ=PST8PDT,M4.1.0,M10.5.0"
37796         instead of "TZ=America/Vancouver".  From Paul Eggert.
37797
37798 1998-10-11  Jim Meyering  <meyering@ascend.com>
37799
37800         * m4/mktime.m4 (jm_AM_FUNC_MKTIME): New file and macro.
37801         This adds a test for a recently added compatibility fix for mktime.c.
37802         * m4/jm-mktime.m4: Require jm_AM_FUNC_MKTIME, not AM_FUNC_MKTIME.
37803
37804 1998-09-27  Jim Meyering  <meyering@ascend.com>
37805
37806         * m4/jm-macros.m4 (jm_MACROS): Require jm_FUNC_FNMATCH.
37807
37808         * m4/fnmatch.m4 (jm_FUNC_FNMATCH): New file/macro.  Extracted from
37809         ../configure.in, including a change from Gordon Matzigkeit to allow
37810         cross-compiling for the Hurd.
37811
37812         * m4/glibc.m4: New file/macro to test for the GNU C Library
37813         versions 1 and 2.  From Gordon Matzigkeit.
37814         Indent.
37815
37816 1998-09-21  Jim Meyering  <meyering@ascend.com>
37817
37818         * m4/chown.m4: Declare locals: before, after.  From Andries Brouwer.
37819
37820 1998-08-18  Paul Eggert  <eggert@twinsun.com>
37821
37822         Port nanosecond-resolution times to UnixWare 2.1.2 and
37823         pedantic Solaris 2.6.
37824
37825         * m4/st_mtim.m4 (AC_STRUCT_ST_MTIM_NSEC): Renamed from
37826         AC_STRUCT_ST_MTIM.
37827         * m4/st_mtim.m4 (AC_STRUCT_ST_MTIM_NSEC):
37828         Generate name of ns member, instead of just 1 or undef.
37829         Allow for UnixWare 2.1.2 and Solaris 2.6 if in pedantic mode.
37830
37831 1998-08-15  Jim Meyering  <meyering@ascend.com>
37832
37833         * m4/ssize_t.m4 (jm_TYPE_SSIZE_T): Remove file.
37834         * m4/check-type.m4: New file.  Replacement for AC_CHECK_TYPE.
37835         * m4/jm-macros.m4: Use the new AC_CHECK_TYPE(ssize_t, int)
37836         instead of jm_TYPE_SSIZE_T.
37837
37838 1998-08-12  Jim Meyering  <meyering@ascend.com>
37839
37840         * m4/st_dm_mode.m4: New file.  From Johan Danielsson.
37841
37842 1998-08-02  Jim Meyering  <meyering@ascend.com>
37843
37844         * m4/st_mtim.m4: Use hack to avoid having to put #undef HAVE_ST_MTIM
37845         in acconfig.h manually.
37846
37847 1998-07-31  Paul Eggert  <eggert@twinsun.com>
37848
37849         * m4/st_mtim.m4: New file.
37850
37851 1998-07-28  Jim Meyering  <meyering@ascend.com>
37852
37853         * m4/utimes.m4: Undef stat.
37854
37855 1998-07-25  Jim Meyering  <meyering@ascend.com>
37856
37857         * m4/utime.m4 (jm_FUNC_UTIME): New file and macro.
37858         * m4/utimes.m4 (jm_FUNC_UTIMES_NULL): New file and macro.
37859
37860 1998-07-09  Manfred Hollstein  <manfred@s-direktnet.de>
37861
37862         * m4/chown.m4 (jm_FUNC_CHOWN): Add a check to verify that the
37863         uid and gid actually remain unchanged.
37864
37865 1998-07-07  Jim Meyering  <meyering@ascend.com>
37866
37867         * m4/jm-glibc-io.m4: Remove fclose_unlocked.
37868
37869 1998-07-04  Jim Meyering  <meyering@ascend.com>
37870
37871         * m4/regex.m4: Use syscmd, ifelse, and sysval.  Mainly as an exercise
37872         to prove that this macro can be used in packages without regex.c.
37873
37874 1998-07-04  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
37875
37876         * m4/gettext.m4 (AM_WITH_NLS): Remove intl/libintl.h if <libintl.h>
37877         is to be used.
37878
37879 1998-07-03  Jim Meyering  <meyering@ascend.com>
37880
37881         * m4/gettext.m4: Add -lintl if it's found to be necessary.
37882
37883         * m4/gettext.m4: New file -- from gettext-0.10.35.
37884         * m4/lcmessage.m4: Likewise.
37885         * m4/progtest.m4: Likewise.
37886
37887         * m4/regex.m4 (jm_WITH_REGEX): New file and macro.
37888         * m4/jm-macros.m4: Require the new macro.
37889
37890 1998-06-29  Jim Meyering  <meyering@ascend.com>
37891
37892         * m4/fstypename.m4: Include sys/param.h.  NetBSD 1.3.1 requires this
37893         for the definition of NGROUPS (used in a system header included
37894         by sys/mount.h).
37895
37896 1998-06-28  Jim Meyering  <meyering@ascend.com>
37897
37898         * m4/ls-mntd-fs.m4: New file.
37899         * m4/fstypename.m4: New file.
37900
37901         * m4/jm-macros.m4: Require the new macro.
37902         * m4/jm-glibc-io.m4: New file.
37903
37904 1998-05-19  Jim Meyering  <meyering@ascend.com>
37905
37906         * m4/jm-macros.m4: Add jm_FUNC_LCHOWN.
37907         * m4/lchown.m4: New file.
37908
37909         * m4/Makefile.am.in: New file.
37910         * m4/Makefile.am (Makefile.am): Depend on Makefile.am.in.
37911
37912 1998-05-14  Jim Meyering  <meyering@ascend.com>
37913
37914         * m4/Makefile.am (EXTRA_DIST): Add them.
37915         * m4/jm-macros.m4: New file.
37916         * m4/utimbuf.m4: New file.
37917
37918 1998-05-12  Jim Meyering  <meyering@ascend.com>
37919
37920         * m4/Makefile.am (EXTRA_DIST): Add isc-posix.m4.
37921
37922 1998-05-11  Jim Meyering  <meyering@ascend.com>
37923
37924         * m4/isc-posix.m4: New file.
37925
37926 1998-05-10  Jim Meyering  <meyering@ascend.com>
37927
37928         * m4/jm-mktime.m4: Use AM_FUNC_MKTIME, now that it's up to date.
37929
37930 1998-05-09  Jim Meyering  <meyering@ascend.com>
37931
37932         * m4/Makefile.am (EXTRA_DIST): Add ssize_t.m4.
37933         (EXTRA_DIST): Remove mktime.m4, now that the new version is included
37934         with automake.
37935
37936         * m4/ssize_t.m4: New file.
37937         * m4/mktime.m4: Remove file -- the new automake has this now.
37938
37939 1998-04-26  Jim Meyering  <meyering@ascend.com>
37940
37941         * m4/assert.m4: New file.
37942         * m4/Makefile.am (EXTRA_DIST): Add assert.m4.
37943
37944 1998-04-05  Jim Meyering  <meyering@ascend.com>
37945
37946         * m4/prereq.m4 (jm_PREREQ_REGEX): New macro.
37947         (jm_PREREQ): Use it here.
37948
37949 1998-03-23  Jim Meyering  <meyering@eng.ascend.com>
37950
37951         * m4/inttypes_h.m4: Kludges so I don't have to add HAVE_INTTYPES_H
37952         in acconfig.h.
37953
37954 1998-03-15  Jim Meyering  <meyering@eng.ascend.com>
37955
37956         * m4/prereq.m4: New file.
37957         * m4/error.m4: New file.
37958         * m4/Makefile.am (EXTRA_DIST): Add error.m4 and prereq.m4.
37959
37960 1998-02-07  Jim Meyering  <meyering@eng.ascend.com>
37961
37962         * m4/getline.m4: Don't set am_cv_func_working_getline before the
37963         cache-check for the same variable -- that defeated the purpose of
37964         the test; the test program was never run.  This was a problem only
37965         on systems with losing getline functions -- HP-UX 10.20 is one.
37966         Reported by Bjorn Helgaas.
37967
37968 1998-02-06  Jim Meyering  <meyering@eng.ascend.com>
37969
37970         * m4/Makefile.am (EXTRA_DIST): Add perl.m4.
37971
37972 1998-01-10  Jim Meyering  <meyering@na-net.ornl.gov>
37973
37974         * m4/Makefile.am (EXTRA_DIST): Add const.m4.
37975
37976         * m4/const.m4: New file.  Use an initializer in this declaration
37977         typedef int charset[2]; const charset x;
37978         Reported by Bob Glickstein.
37979
37980 1997-12-21  Jim Meyering  <meyering@na-net.ornl.gov>
37981
37982         * m4/chown.m4: Fix reversed types on -1 args to chown.
37983         From Kaveh Ghazi.
37984
37985 1997-12-14  Jim Meyering  <meyering@na-net.ornl.gov>
37986
37987         * m4/check-decl.m4: s/DECLARATION_/DECL_/g.
37988         Add lseek and memchr.
37989
37990         * m4/decl.m4: s/HAVE_DECLARATION_/HAVE_DECL_/g.
37991         T.E.Dickey <dickey@clark.net> said that some older preprocessors
37992         have a 20-character limit on names.
37993
37994 1997-11-30  Jim Meyering  <meyering@na-net.ornl.gov>
37995
37996         * m4/inttypes_h.m4: New file.
37997         * m4/uintmax_t.m4: New file.
37998         * m4/Makefile.am (EXTRA_DIST): Add inttypes_h.m4 and uintmax_t.m4.
37999
38000 Copyright (C) 1997-2008 Free Software Foundation, Inc.
38001 Copying and distribution of this file, with or without modification,
38002 are permitted provided the copyright notice and this notice are preserved.