Make pwd and readlink work also when run with an unreadable parent dir
[pspp] / ChangeLog
1 2007-02-03  Jim Meyering  <jim@meyering.net>
2
3         Make pwd and readlink work also when run with an unreadable parent dir
4         on systems with openat support.
5         * lib/getcwd.c (__getcwd) [HAVE_PARTLY_WORKING_GETCWD]: Use the system
6         provided getcwd function, even when we have openat support.
7         Reported by Dmitry V. Levin in <http://bugzilla.redhat.com/227168>.
8
9 2007-02-02  Bruno Haible  <bruno@clisp.org>
10
11         * lib/string_.h (memmem, mempcpy, memrchr, stpcpy, stpncpy, strchrnul,
12         strdup, strndup, strnlen, strpbrk, strsep, strtok_r): Provoke a link
13         error only if GNULIB_POSIXCHECK is defined. Needed to avoid artificial
14         portability problems if one of these functions is only used on specific
15         platforms.
16         Reported by Paul Eggert.
17
18 2007-02-02  Paul Eggert  <eggert@cs.ucla.edu>
19
20         Avoid mempcpy in the regex code, as the string.h mempcpy stuff
21         is causing more trouble than it's curing.
22         * lib/regex_internal.h (__mempcpy): Remove.
23         * lib/regcomp.c (regerror): Rewrite to avoid the need for mempcpy
24         (and make the code a tad smaller to boot).
25         * m4/regex.m4 (gl_PREREQ_REGEX): Don't check for mempcpy.
26
27 2007-02-02  Jim Meyering  <jim@meyering.net>
28
29         * modules/arpa_inet: Put AC_PROG_MKDIR_P in the configure.ac:
30         section, not in the Makefile.am: one.
31
32 2007-02-02  Eric Blake  <ebb9@byu.net>
33
34         * lib/strchrnul.c: Always include config.h first.
35
36         * modules/mountlist (Depends-on): Revert 2007-01-31 change,
37         gnulib strstr is not necessary here.
38
39 2007-02-02  Simon Josefsson  <simon@josefsson.org>
40
41         * m4/socklen.m4: Fix typo.
42
43 2007-02-02  Eric Blake  <ebb9@byu.net>
44
45         * modules/arpa_inet (Makefile.am): Use MKDIR_P to avoid races.
46         * modules/netinet_in (Makefile.am): Likewise.
47
48 2007-02-01  Bruno Haible  <bruno@clisp.org>
49
50         * lib/string_.h (GL_LINK_WARNING): New macro.
51         (strcasecmp, strstr, strcasestr): If provided by the system,
52         conditionally define as a macro that leads to a warning instead of to
53         an error.
54         (strncasecmp): Conditionally define as a macro that leads to a warning.
55
56 2007-02-01  Jim Meyering  <jim@meyering.net>
57
58         Give tools a better chance to allocate space for very large buffers.
59         * lib/xalloc.h (x2nrealloc): Use 3/2, not 2, as buffer size factor.
60
61 2007-02-01  Karl Berry  <karl@gnu.org>
62
63         * config/srclist.txt (strtok_r.c): lose sync, no more strtok_r.h.
64
65 2007-02-01  Bruno Haible  <bruno@clisp.org>
66
67         * MODULES.html.sh (Unicode string functions): Update after 2007-01-27
68         renamings.
69
70 2007-02-01  Eric Blake  <ebb9@byu.net>
71
72         * modules/regex (Depends-on): Revert dependence on mempcpy.
73         * lib/regex_internal.h [! _LIBC && !__mempcpy]: Undo string
74         module's definition of mempcpy.
75         Reported by Paul Eggert.
76
77 2007-02-01  Paul Eggert  <eggert@cs.ucla.edu>
78
79         * lib/string_.h: If the gnulib module XYZ is not present, undefine
80         the symbol XYZ before redefining it.  This fixes a problem with
81         programs that don't use XYZ, when compiled on systems that define
82         XYZ to something else.
83
84 2007-01-31  Paul Eggert  <eggert@cs.ucla.edu>
85
86         * lib/mkdir-p.c (make_dir_parents): Close a race condition that
87         occurs when "mkdir -m foo" creates a setgid directory that is (1)
88         writeable to group or other and (2) is intended to have a special
89         mode bit that is set or cleared.  In such a case, the directory
90         should be neither group- nor other-writeable until the special
91         mode bits are right.
92
93 2007-01-31  Eric Blake  <ebb9@byu.net>
94
95         * modules/mountlist (Depends-on): Add strstr.
96
97         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR): Correct m4 usage
98         bug.
99         * modules/string (Makefile.am): Remove redundant replacement.
100         * modules/regex (Depends-on): Add mempcpy.
101
102 2007-01-31  Bruno Haible  <bruno@clisp.org>
103
104         New module description field 'Link'.
105         * gnulib-tool (func_usage): Document --extract-link-directive.
106         (sed_extract_prog): Recognize 'Link' directive.
107         (func_get_link_directive): New function.
108         (func_import): Show summary of link directives.
109         Handle --extract-link-directive option.
110         * modules/acl (Link): New section.
111         * modules/clock-time (Link): New section.
112         * modules/euidaccess (Link): New section.
113         * modules/gettext (Link): New section.
114         * modules/iconv (Link): New section.
115         * modules/lock (Link): New section.
116         * modules/nanosleep (Link): New section.
117         * modules/readline (Link): New section.
118
119 2007-01-27  Bruno Haible  <bruno@clisp.org>
120
121         Enforce the use of gnulib modules for unportable <string.h> functions.
122         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR): New macro.
123         (gl_STRING_MODULE_INDICATOR_DEFAULTS): New macro.
124         (gl_HEADER_STRING_H_BODY): Require it.
125         * lib/string_.h: If the gnulib module XYZ is not present, redefine
126         the symbol XYZ to one that gives a link error.
127         * modules/string (Makefile.am): Also substitute the GNULIB_* variables.
128         * modules/memmem (configure.ac): Invoke gl_STRING_MODULE_INDICATOR.
129         * modules/mempcpy (configure.ac): Likewise.
130         * modules/memrchr (configure.ac): Likewise.
131         * modules/stpcpy (configure.ac): Likewise.
132         * modules/stpncpy (configure.ac): Likewise.
133         * modules/strcase (configure.ac): Likewise.
134         * modules/strcasestr (configure.ac): Likewise.
135         * modules/strchrnul (configure.ac): Likewise.
136         * modules/strdup (configure.ac): Likewise.
137         * modules/strndup (configure.ac): Likewise.
138         * modules/strnlen (configure.ac): Likewise.
139         * modules/strpbrk (configure.ac): Likewise.
140         * modules/strsep (configure.ac): Likewise.
141         * modules/strstr (configure.ac): Likewise.
142         * modules/strtok_r (configure.ac): Likewise.
143
144 2007-01-31  Jean-Louis Martineau  <martineau@zmanda.com>  (tiny change)
145
146         * lib/gai_strerror.c (values): Add EAI_OVERFLOW.
147
148 2007-01-30  Jim Meyering  <jim@meyering.net>
149
150         * lib/mpsort.c (mpsort): Remove spurious "return" in void function.
151
152 2007-01-29  Bruno Haible  <bruno@clisp.org>
153
154         * lib/allocsa.h: Use '#if HAVE_*' instead of '#ifdef HAVE_*'.
155         * lib/execute.c: Likewise.
156         * lib/pipe.c: Likewise.
157         * lib/printf-args.h: Likewise.
158         * lib/printf-args.c: Likewise.
159         * lib/printf-parse.c: Likewise.
160         * lib/vasnprintf.c: Likewise.
161
162 2007-01-29  Eric Blake  <ebb9@byu.net>
163
164         * lib/memrchr.c: Assume <string.h> unconditionally, to pull in
165         declaration.
166
167 2007-01-29  Paul Eggert  <eggert@cs.ucla.edu>
168
169         * lib/strptime.h (strptime): Use 'restrict' for args where
170         POSIX requires this.
171         * lib/strptime.c (strptime): Likewise.
172         Change license notice from LGPL to GPL, since gnulib-tool will
173         change this as needed.
174         Include <config.h> if _LIBC is not defined, not if HAVE_CONFIG_H is
175         defined.
176         Include "strptime.h" first, to check interface.
177         Do not #undef _LIBC and _NL_CURRENT.
178         Do not include <stdlib.h>; no longer needed.
179         Include "time_r.h" and declare ptime_locale_status
180         only if _LIBC is not defined.
181         (__P): Remove unused macro.
182         (match_string): Bring back glibc version, but use it only if _LIBC
183         is defined.
184         (__strptime_internal): Compile tm_gmtoff code if _LIBC is defined, too.
185         Remove unnecessary assertion and abort() call.
186         Use #ifdef _NL_CURRENT rather than #if 0, for benefit of glibc.
187         * m4/strptime.m4: Fix serial number comment.
188         (gl_FUNC_STRPTIME): Require AC_C_RESTRICT, gl_TM_GMTOFF.
189         * modules/strptime (Files): Add m4/tm_gmtoff.m4.
190         (Depends-on): Add time_r.
191
192 2007-01-29  Bruno Haible  <bruno@clisp.org>
193
194         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
195         strptime.
196         * modules/strptime (Depends-on): Add stdbool.
197         * lib/strptime.h: Include <time.h> always. Add comments.
198
199 2007-01-29  Yoann Vandoorselaere  <yoann@prelude-ids.org>
200
201         * modules/strptime: New file.
202         * lib/strptime.h: New file.
203         * lib/strptime.c: New file.
204         * m4/strptime.m4: New file.
205
206 2007-01-28  Paul Eggert  <eggert@cs.ucla.edu>
207
208         * MODULES.html.sh: New module mpsort.
209         * lib/mpsort.c, lib/mpsort.h, m4/mpsort.m4, modules/mpsort: New files.
210
211         * lib/regex.h (_Restrict_): Renamed from __restrict, to avoid
212         a circularity problem with HP-UX ia64 reported by Bob Proulx in
213         <http://lists.gnu.org/archive/html/bug-gnulib/2007-01/msg00394.html>.
214         All uses changed.
215         (_Restrict_arr_): Renamed from __restrict_arr, for similar reasons.
216         All uses changed.
217         * lib/regcomp.c, lib/regexec.c: Change all uses from __restrict
218         to _Restrict_.
219         * lib/regexec.c (regexec): Declare pmatch with _Restrict_arr_, so that
220         the parameter matches the prototype.
221
222 2007-01-28  Jim Meyering  <jim@meyering.net>
223
224         * modules/sys_time (Makefile.am) [MOSTLYCLEANFILES]: Do use
225         sys/time.h here, reverting that part of the previous patch:
226         <http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/8959>.
227
228 2007-01-28  Bruno Haible  <bruno@clisp.org>
229
230         * modules/sys_time (Makefile.am): Build sys/time.h only when it's the
231         value of $(SYS_TIME_H).
232         [MOSTLYCLEANFILES]: Now that sys/time.h is created only when needed,
233         remove it conditionally, too. [added by Jim Meyering]
234         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Set SYS_TIME_H.
235         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY):
236         (gl_FUNC_GETTIMEOFDAY_CLOBBER): Set SYS_TIME_H when setting
237         GETTIMEOFDAY_REPLACEMENT to 1.
238
239 2007-01-28  Bruno Haible  <bruno@clisp.org>
240
241         * m4/unistd_h.m4 (gl_HEADER_UNISTD_DEFAULTS): New macro.
242         (gl_HEADER_UNISTD): Require it. Don't set UNISTD_H to empty here.
243         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Require gl_HEADER_UNISTD_DEFAULTS.
244         Set UNISTD_H instead of UNISTD_H2.
245         * modules/fchdir (BUILT_SOURCES): Drop $(UNISTD_H2).
246
247 2007-01-28  Bruno Haible  <bruno@clisp.org>
248
249         * modules/mbchar (Makefile.am): Add mbchar.c to lib_SOURCES.
250         * m4/mbchar.m4 (gl_MBCHAR): Remove AC_LIBOBJ invocation.
251
252 2007-01-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
253
254         * gnulib-tool (func_emit_lib_Makefile_am, func_add_or_update)
255         (func_create_testdir): Ensure C locale for `grep' and `tr'
256         character ranges.
257         (func_create_megatestdir): Avoid one `grep'.  Fix bug in
258         ACLOCAL_AMFLAGS parsing state machine.
259
260 2007-01-27  Bruno Haible  <bruno@clisp.org>
261
262         * modules/unistr/base: Update.
263
264 2007-01-27  Bruno Haible  <bruno@clisp.org>
265
266         Rename u32-mbtouc -> u32-mbtouc-unsafe, u32-mbtouc-safe -> u32-mbtouc,
267         u32_mbtouc -> u32_mbtouc_unsafe, u32_mbtouc_safe -> u32_mbtouc.
268         * modules/unistr/u32-mbtouc-unsafe: Renamed from
269         modules/unistr/u32-mbtouc.
270         * lib/unistr/u32-mbtouc-unsafe.c: Renamed from lib/unistr/u32-mbtouc.c.
271         * lib/unistr.h: Update.
272         * lib/linebreak.c: Update.
273         * modules/unistr/u32-mbtouc: Renamed from
274         modules/unistr/u32-mbtouc-safe.
275         * lib/unistr/u32-mbtouc.c: Renamed from lib/unistr/u32-mbtouc-safe.c.
276         * lib/unistr.h: Update.
277         * lib/unistr/u32-to-u8.c: Update.
278         * lib/unistr/u32-to-u16.c: Update.
279
280 2007-01-27  Bruno Haible  <bruno@clisp.org>
281
282         Rename utf16-ucs4 -> utf16-ucs4-unsafe, utf16-ucs4-safe -> utf16-ucs4,
283         u16_mbtouc -> u16_mbtouc_unsafe, u16_mbtouc_safe -> u16_mbtouc.
284         * modules/utf16-ucs4-unsafe: Renamed from modules/utf16-ucs4.
285         * lib/utf16-ucs4-unsafe.h: Renamed from lib/utf16-ucs4.h.
286         * lib/unistr/utf16-ucs4-unsafe.c: Renamed from lib/unistr/utf16-ucs4.c.
287         * modules/unistr/u16-mbtouc-unsafe: Renamed from
288         modules/unistr/u16-mbtouc.
289         * lib/unistr/u16-mbtouc-unsafe.c: Renamed from lib/unistr/u16-mbtouc.c.
290         * lib/unistr.h: Update.
291         * lib/linebreak.c: Update.
292         * modules/linebreak: Update.
293         * modules/utf16-ucs4: Renamed from modules/utf16-ucs4-safe.
294         * lib/utf16-ucs4.h: Renamed from lib/utf16-ucs4-safe.h.
295         * lib/unistr/utf16-ucs4.c: Renamed from lib/unistr/utf16-ucs4-safe.c.
296         * modules/unistr/u16-mbtouc: Renamed from
297         modules/unistr/u16-mbtouc-safe.
298         * lib/unistr/u16-mbtouc.c: Renamed from lib/unistr/u16-mbtouc-safe.c.
299         * lib/unistr.h: Update.
300         * lib/unistr/u16-to-u8.c: Update.
301         * modules/unistr/u16-to-u8: Update.
302         * lib/unistr/u16-to-u32.c: Update.
303         * modules/unistr/u16-to-u32: Update.
304
305 2007-01-27  Bruno Haible  <bruno@clisp.org>
306
307         Rename utf8-ucs4 -> utf8-ucs4-unsafe, utf8-ucs4-safe -> utf8-ucs4,
308         u8_mbtouc -> u8_mbtouc_unsafe, u8_mbtouc_safe -> u8_mbtouc.
309         * modules/utf8-ucs4-unsafe: Renamed from modules/utf8-ucs4.
310         * lib/utf8-ucs4-unsafe.h: Renamed from lib/utf8-ucs4.h.
311         * lib/unistr/utf8-ucs4-unsafe.c: Renamed from lib/unistr/utf8-ucs4.c.
312         * modules/unistr/u8-mbtouc-unsafe: Renamed from
313         modules/unistr/u8-mbtouc.
314         * lib/unistr/u8-mbtouc-unsafe.c: Renamed from lib/unistr/u8-mbtouc.c.
315         * lib/unistr.h: Update.
316         * lib/striconveh.c: Update.
317         * modules/striconveh: Update.
318         * lib/linebreak.c: Update.
319         * modules/linebreak: Update.
320         * modules/utf8-ucs4: Renamed from modules/utf8-ucs4-safe.
321         * lib/utf8-ucs4.h: Renamed from lib/utf8-ucs4-safe.h.
322         * lib/unistr/utf8-ucs4.c: Renamed from lib/unistr/utf8-ucs4-safe.c.
323         * modules/unistr/u8-mbtouc: Renamed from modules/unistr/u8-mbtouc-safe.
324         * lib/unistr/u8-mbtouc.c: Renamed from lib/unistr/u8-mbtouc-safe.c.
325         * lib/unistr.h: Update.
326         * lib/striconveh.c: Update.
327         * modules/striconveh: Update.
328         * lib/unistr/u8-to-u16.c: Update.
329         * modules/unistr/u8-to-u16: Update.
330         * lib/unistr/u8-to-u32.c: Update.
331         * modules/unistr/u8-to-u32: Update.
332
333 2007-01-27  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
334
335         Sync from Libtool.
336         * lib/argz.c: Do not include strings.h nor memory.h, include
337         string.h unconditionally.  Patch by Simon Josefsson.
338
339 2007-01-27  Bruno Haible  <bruno@clisp.org>
340
341         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): New macro, extracted
342         from gl_HEADER_STRING_H_BODY.
343         (gl_HEADER_STRING_H_BODY): Require it.
344         * m4/memmem.m4 (gl_FUNC_MEMMEM): Require gl_HEADER_STRING_H_DEFAULTS.
345         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Likewise.
346         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Likewise.
347         * m4/stpcpy.m4 (gl_FUNC_STPCPY): Likewise.
348         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Likewise.
349         * m4/strcase.m4 (gl_FUNC_STRCASECMP, gl_FUNC_STRNCASECMP): Likewise.
350         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
351         * m4/strchrnul.m4 (gl_FUNC_STRCHRNUL): Likewise.
352         * m4/strdup.m4 (gl_FUNC_STRDUP): Likewise.
353         * m4/strndup.m4 (gl_FUNC_STRNDUP): Likewise.
354         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Likewise.
355         * m4/strpbrk.m4 (gl_FUNC_STRPBRK): Likewise.
356         * m4/strsep.m4 (gl_FUNC_STRSEP): Likewise.
357         * m4/strstr.m4 (gl_FUNC_STRSTR): Likewise.
358         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Likewise.
359
360 2007-01-27  Bruno Haible  <bruno@clisp.org>
361
362         * gnulib-tool (func_emit_lib_Makefile_am): If $for_test is true, turn
363         check_PROGRAMS into noinst_PROGRAMS.
364         (func_emit_tests_Makefile_am): Likewise. Also don't initialize
365         check_PROGRAMS in this case.
366         (func_import): Set for_test to false.
367         (func_create_testdir): Set for_test to true.
368
369 2007-01-27  Yoann Vandoorselaere <yoann.v@prelude-ids.com>
370             Bruno Haible  <bruno@clisp.org>
371
372         * modules/strcasestr (Files): Remove lib/strcasestr.h.
373         (Depends-on): Add string.
374         (Includes): Use <string.h> instead of strcasestr.h.
375         * modules/string (Makefile.am): Also substitute the value of
376         REPLACE_STRCASESTR.
377         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Don't define strcasestr here;
378         assume strcasestr is declared in <string.h> not <strings.h>. Also
379         set REPLACE_STRCASESTR.
380         * m4/string_h.m4 (gl_HEADER_STRING_H_BODY): Provide a default value for
381         REPLACE_STRCASESTR.
382         * lib/strcasestr.h: Remove file.
383         * lib/strcasestr.c: Include <string.h> instead of strcasestr.h.
384         * lib/string_.h (strcasestr): New declaration.
385
386 2007-01-27  Bruno Haible  <bruno@clisp.org>
387
388         * lib/string_.h: Use 'extern'.
389
390 2007-01-27  Jim Meyering  <jim@meyering.net>
391
392         * lib/regex_internal.c (re_string_reconstruct): Remove declaration
393         of set-but-not-used local, "q".
394
395         * lib/mempcpy.c: Include <config.h> before <string.h>.
396         This fixes a compilation error on HP-UX, due to the system's
397         "restrict"-using mempcpy prototype.
398
399 2007-01-26  Bruno Haible  <bruno@clisp.org>
400
401         Small optimization.
402         * lib/javacomp.c: Include c-strstr.h.
403          (is_envjavac_gcj): Use c_strstr instead of strstr.
404         * modules/javacomp (Depends-on): Add c-strstr, remove strstr.
405
406 2007-01-26  Bruno Haible  <bruno@clisp.org>
407
408         * MODULES.html.sh (Unicode string functions): Add the new modules.
409
410         * modules/uniconv/u32-strconv-to-locale: New file.
411         * lib/uniconv/u32-strconv-to-locale.c: New file.
412
413         * modules/uniconv/u16-strconv-to-locale: New file.
414         * lib/uniconv/u16-strconv-to-locale.c: New file.
415
416         * modules/uniconv/u8-strconv-to-locale: New file.
417         * lib/uniconv/u8-strconv-to-locale.c: New file.
418
419         * modules/uniconv/u32-strconv-from-locale: New file.
420         * lib/uniconv/u32-strconv-from-locale.c: New file.
421
422         * modules/uniconv/u16-strconv-from-locale: New file.
423         * lib/uniconv/u16-strconv-from-locale.c: New file.
424
425         * modules/uniconv/u8-strconv-from-locale: New file.
426         * lib/uniconv/u8-strconv-from-locale.c: New file.
427
428         * modules/uniconv/u32-strconv-to-enc: New file.
429         * lib/uniconv/u32-strconv-to-enc.c: New file.
430         * modules/uniconv/u32-strconv-to-enc-tests: New file.
431         * tests/uniconv/test-u32-strconv-to-enc.c: New file.
432
433         * modules/uniconv/u16-strconv-to-enc: New file.
434         * lib/uniconv/u16-strconv-to-enc.c: New file.
435         * lib/uniconv/u-strconv-to-enc.h: New file.
436         * modules/uniconv/u16-strconv-to-enc-tests: New file.
437         * tests/uniconv/test-u16-strconv-to-enc.c: New file.
438
439         * modules/uniconv/u8-strconv-to-enc: New file.
440         * lib/uniconv/u8-strconv-to-enc.c: New file.
441         * modules/uniconv/u8-strconv-to-enc-tests: New file.
442         * tests/uniconv/test-u8-strconv-to-enc.c: New file.
443
444         * modules/uniconv/u32-strconv-from-enc: New file.
445         * lib/uniconv/u32-strconv-from-enc.c: New file.
446         * modules/uniconv/u32-strconv-from-enc-tests: New file.
447         * tests/uniconv/test-u32-strconv-from-enc.c: New file.
448
449         * modules/uniconv/u16-strconv-from-enc: New file.
450         * lib/uniconv/u16-strconv-from-enc.c: New file.
451         * modules/uniconv/u16-strconv-from-enc-tests: New file.
452         * tests/uniconv/test-u16-strconv-from-enc.c: New file.
453
454         * modules/uniconv/u8-strconv-from-enc: New file.
455         * lib/uniconv/u8-strconv-from-enc.c: New file.
456         * lib/uniconv/u-strconv-from-enc.h: New file.
457         * modules/uniconv/u8-strconv-from-enc-tests: New file.
458         * tests/uniconv/test-u8-strconv-from-enc.c: New file.
459
460         * modules/uniconv/u32-conv-from-enc: New file.
461         * lib/uniconv/u32-conv-from-enc.c: New file.
462         * modules/uniconv/u32-conv-from-enc-tests: New file.
463         * tests/uniconv/test-u32-conv-from-enc.c: New file.
464
465         * modules/uniconv/u16-conv-from-enc: New file.
466         * lib/uniconv/u16-conv-from-enc.c: New file.
467         * lib/uniconv/u-conv-from-enc.h: New file.
468         * modules/uniconv/u16-conv-from-enc-tests: New file.
469         * tests/uniconv/test-u16-conv-from-enc.c: New file.
470
471         * modules/uniconv/u8-conv-from-enc: New file.
472         * lib/uniconv/u8-conv-from-enc.c: New file.
473         * modules/uniconv/u8-conv-from-enc-tests: New file.
474         * tests/uniconv/test-u8-conv-from-enc.c: New file.
475
476         * modules/uniconv/base: New file.
477         * lib/uniconv.h: New file.
478
479 2007-01-26  Paul Eggert  <eggert@cs.ucla.edu>
480
481         * doc/gnulib-tool.texi (Initial import): Update to match current
482         behavior with strdup module.
483         * lib/.cppi-disable: Remove strcase.h, strdup.h, strndup.h, strnlen.h.
484         * lib/memmem.h: Remove; all uses removed.  This is now done
485         by <string.h>.
486         * lib/mempcpy.h: Likewise.
487         * lib/memrchr.h: Likewise.
488         * lib/stpcpy.h: Likewise.
489         * lib/stpncpy.h: Likewise.
490         * lib/strcase.h: Likewise.
491         * lib/strchrnul.h: Likewise.
492         * lib/strdup.h: Likewise.
493         * lib/strndup.h: Likewise.
494         * lib/strnlen.h: Likewise.
495         * lib/strpbrk.h: Likewise.
496         * lib/strsep.h: Likewise.
497         * lib/strstr.h: Likewise.
498         * lib/strtok_r.h: Likewise.
499         * lib/string_.h: New file.
500         * lib/argp-namefrob.h: Don't include no-longer-existent include files.
501         Rely on <string.h> instead.
502         * lib/canon-host.c: Likewise.
503         * lib/chdir-long.c: Likewise.
504         * lib/concatpath.c: Likewise.
505         * lib/exclude.c: Likewise.
506         * lib/fchdir.c: Likewise.
507         * lib/getaddrinfo.c: Likewise.
508         * lib/getcwd.c: Likewise.
509         * lib/getsubopt.c: Likewise.
510         * lib/glob.c: Likewise.
511         * lib/hard-locale.c: Likewise.
512         * lib/iconvme.c: Likewise.
513         * lib/javacomp.c: Likewise.
514         * lib/mempcpy.c: Likewise.
515         * lib/memrchr.c: Likewise.
516         * lib/regex_internal.h: Likewise.
517         * lib/stpncpy.c: Likewise.
518         * lib/strcasecmp.c: Likewise.
519         * lib/strchrnul.c: Likewise.
520         * lib/strdup.c: Likewise.
521         * lib/striconv.c: Likewise.
522         * lib/striconveh.c: Likewise.
523         * lib/striconveha.c: Likewise.
524         * lib/strncasecmp.c: Likewise.
525         * lib/strndup.c: Likewise.
526         * lib/strnlen.c: Likewise.
527         * lib/strsep.c: Likewise.
528         * lib/strstr.c: Likewise.
529         * lib/strtok_r.c: Likewise.
530         * lib/userspec.c: Likewise.
531         * lib/w32spawn.h: Likewise.
532         * lib/xstrndup.c: Likewise.
533         * lib/mountlist.c (strstr): Remove decl.
534         * m4/string_h.m4: New file.
535         * m4/memmem.m4 (gl_FUNC_MEMMEM): Set HAVE_DECL_MEMMEM if necessary.
536         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Set HAVE_MEMPCPY if necessary.
537         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Set HAVE_MEMRCHR
538         * m4/stpcpy.m4 (gl_FUNC_STPCPY): Set HAVE_STPCPY if necessary.
539         * m4/stpncpy.m4 (gl_PREREQ_STPNCPY): Set HAVE_STPNCPY if necessary.
540         * m4/strcase.m4 (gl_FUNC_STRCASECMP):
541         Set REPLACE_STRCASECMP if necessary.
542         (gl_FUNC_STRNCASECMP): Set HAVE_DECL_STRNCASECMP if necessary.
543         * m4/strchrnul.m4 (gl_FUNC_STRCHRNUL): Set HAVE_STRCHRNUL if necessary.
544         * m4/strdup.m4 (gl_FUNC_STRDUP): Set HAVE_DECL_STRDUP if necessary.
545         * m4/strndup.m4 (gl_FUNC_STRNDUP): Set HAVE_DECL_STRNLEN and
546         HAVE_DECL_STRDUP if necessary.
547         (gl_PREREQ_STRNLEN): Don't bother to check for strnlen decl,
548         since gl_FUNC_STRNDUP does that now.
549         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Set HAVE_DECL_STRNLEN if necessary.
550         Check for decl here...
551         (gl_PREREQ_STRNLEN): ... not here.
552         * m4/strpbrk.m4 (gl_FUNC_STRPBRK): Set HAVE_STRPBRK if necessary.
553         * m4/strsep.m4 (gl_FUNC_STRSEP): Set HAVE_STRSEP if necessary.
554         * m4/strstr.m4 (gl_FUNC_STRSTR): Set REPLACE_STRSTR if necessary.
555         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Set HAVE_DECL_STRTOK_R if
556         necessary.
557         * modules/string: New file.
558         * modules/memmem (Files): Remove special-purpose include file.
559         (Depends-on): Add string.
560         (Include): Include <string.h>, not the removed file.
561         * modules/mempcpy: Likewise.
562         * modules/memrchr: Likewise.
563         * modules/stpcpy: Likewise.
564         * modules/stpncpy: Likewise.
565         * modules/strcase: Likewise.
566         * modules/strchrnul: Likewise.
567         * modules/strdup: Likewise.
568         * modules/strndup: Likewise.
569         * modules/strnlen: Likewise.
570         * modules/strpbrk: Likewise.
571         * modules/strsep: Likewise.
572         * modules/strstr: Likewise.
573         * modules/strtok_r: Likewise.
574         * tests/test-dirname.c: Don't include "strdup.h", since
575         <string.h> now suffices.
576         * tests/test-memmem.c: Don't include "memmem.h", since
577         <string.h> now suffices.
578
579 2007-01-25  Bruno Haible  <bruno@clisp.org>
580
581         * lib/striconveh.c (mem_cd_iconveh_internal): Ignore *lengthp if
582         *resultp is 0.
583
584         * lib/unistr/u16-to-u8.c (u16_to_u8): Fix u8_uctomb invocation.
585         * lib/unistr/u32-to-u8.c (u32_to_u8): Likewise.
586         * lib/unistr/u8-to-u16.c (u8_to_u16): Fix u16_uctomb invocation.
587         * lib/unistr/u32-to-u16.c (u32_to_u16): Likewise.
588
589         * modules/unistr/u8-to-u16 (Depends-on): Add missing modules.
590         * modules/unistr/u8-to-u32 (Depends-on): Add missing modules.
591         * modules/unistr/u16-to-u8 (Depends-on): Add missing modules.
592         * modules/unistr/u16-to-u32 (Depends-on): Add missing modules.
593         * modules/unistr/u32-to-u8 (Depends-on): Add missing modules.
594         * modules/unistr/u32-to-u16 (Depends-on): Add missing modules.
595
596 2007-01-24  Bruno Haible  <bruno@clisp.org>
597
598         Don't AC_REQUIRE autoconf macros that invoke AC_LIBOBJ. See
599         <http://lists.gnu.org/archive/html/bug-gnulib/2006-10/msg00279.html>.
600         * m4/argp.m4 (gl_ARGP): Invoke, don't require, gl_GETOPT_SUBSTITUTE.
601         * m4/fts.m4 (gl_FUNC_FTS, gl_FUNC_FTS_LGPL): Invoke, don't require,
602         gl_FUNC_FTS_CORE.
603         (gl_FUNC_FTS_CORE): Invoke, don't require, gl_FUNC_OPENAT.
604         * m4/lstat.m4 (gl_FUNC_LSTAT): Invoke, don't require,
605         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
606         * m4/memcmp.m4 (gl_FUNC_MEMCMP): Invoke, don't require, AC_FUNC_MEMCMP.
607         * m4/mktime.m4 (gl_FUNC_MKTIME): Invoke, don't require, AC_FUNC_MKTIME.
608         * m4/openat.m4 (gl_FUNC_OPENAT): Invoke, don't require,
609         gl_FUNC_FCHOWNAT.
610         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME): Invoke, don't require,
611         gl_FUNC_STRFTIME.
612         * m4/strtod.m4 (gl_FUNC_STRTOD): Invoke, don't require, AC_FUNC_STRTOD.
613         Reported by Ralf Wildenhues.
614
615 2007-01-24  Bruno Haible  <bruno@clisp.org>
616
617         Drop AC_REQUIRE calls that are redundant with the module dependencies.
618         * m4/canon-host.m4 (gl_PREREQ_CANON_HOST): Don't require
619         gl_GETADDRINFO.
620         * m4/chdir-long.m4 (gl_PREREQ_CHDIR_LONG): Don't require AM_STDBOOL_H,
621         gl_FUNC_MEMPCPY, gl_FUNC_OPENAT, gl_FUNC_MEMRCHR.
622         * m4/openat.m4 (gl_PREREQ_OPENAT): Don't require gl_SAVE_CWD.
623
624 2007-01-24  Paul Eggert  <eggert@cs.ucla.edu>
625
626         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Add test for glibc bug 361.
627         Don't use 'exit'; just return from 'main'.
628         (_AC_LIBOBJ_FNMATCH): Check for headers and functions just once.
629
630         * lib/fnmatch_.h: Readjust white space and comments to match
631         glibc, to avoid spurious diffs.
632
633 2007-01-23  Paul Eggert  <eggert@cs.ucla.edu>
634
635         * lib/fnmatch_loop.c (internal_fnmatch) [!_LIBC]: #if-out the
636         2004-12-01 change by Jakub Jelinek, since this code won't compile
637         if !LIBC.  Problem reported by Bob Proulx.
638
639 2007-01-23  Bruno Haible  <bruno@clisp.org>
640
641         * lib/striconveh.c: Include c-strcaseeq.h.
642         (mem_iconveh, str_iconveh): Use STRCASEEQ instead of c_strcasecmp.
643         * modules/striconveh (Depends-on): Add c-strcaseeq.
644
645 2007-01-23  Bruno Haible  <bruno@clisp.org>
646
647         * MODULES.html.sh (String handling): Add streq, c-strcaseeq.
648
649         * modules/c-strcaseeq: New file.
650         * lib/c-strcaseeq.h: New file.
651
652         * modules/streq: New file.
653         * lib/streq.h: New file.
654
655 2007-01-23  Bruno Haible  <bruno@clisp.org>
656
657         * modules/striconveha-tests: New file.
658         * tests/test-striconveha.c: New file.
659
660         * lib/striconveha.h: Include <stdbool.h>.
661         (mem_iconveha, str_iconveha): Add 'transliterate' argument.
662         * lib/striconveha.c: Include allocsa.h, strdup.h, c-strcase.h.
663         (mem_iconveha_notranslit): Renamed from mem_iconveha.
664         (mem_iconveha): New function.
665         (str_iconveha_notranslit): Renamed from str_iconveha.
666         (str_iconveha): New function.
667         * modules/striconveha (Depends-on): Add stdbool, allocsa, strdup,
668         c-strcase.
669
670 2007-01-23  Bruno Haible  <bruno@clisp.org>
671
672         * lib/striconveha.c (mem_iconveha): Fix endless recursion. Try all
673         encodings without forgiving before trying any encoding with handler.
674         (str_iconveha): Try all encodings without forgiving before trying any
675         encoding with handler.
676
677 2007-01-23  Paul Eggert  <eggert@cs.ucla.edu>
678
679         Import the following changes from libc.
680
681         2005-10-14  Ulrich Drepper  <drepper@redhat.com>
682
683         * lib/fnmatch_loop.c: Adjust for changed secondary hash function.
684
685         2004-12-01  Jakub Jelinek  <jakub@redhat.com>
686
687         * lib/fnmatch_loop.c (internal_fnmatch): Clear is_seqval after
688         normal_bracket label.
689
690         2004-09-01  Jakub Jelinek  <jakub@redhat.com>
691
692         [BZ #361]
693         * lib/fnmatch_loop.c (FCT): For backslash between brackets, branch
694         to normal_bracket after fetching the next character.
695
696 2007-01-22  Bruno Haible  <bruno@clisp.org>
697
698         * lib/striconveh.h (mem_cd_iconveh, mem_iconveh): Add 'offsets'
699         argument.
700         * lib/striconveh.c (iconv_carefully_1): New function.
701         (mem_cd_iconveh_internal, mem_cd_iconveh, mem_iconveh): Add 'offsets'
702         argument.
703         (str_cd_iconveh): Update.
704         * lib/striconveha.h (mem_iconveha): Add 'offsets' argument.
705         * lib/striconveha.c (mem_iconveha): Add 'offsets' argument.
706         * tests/test-striconveh.c (MAGIC): New macro.
707         (new_offsets): New function.
708         (main): Test call with and without offsets.
709
710 2007-01-22  Bruno Haible  <bruno@clisp.org>
711
712         * modules/sys_stat (Makefile.am): Use @MKDIR_P@ instead of $(MKDIR_P).
713         * modules/sys_select (Makefile.am): Likewise.
714         * modules/sys_socket (Makefile.am): Likewise.
715         * modules/sys_time (Makefile.am): Likewise.
716
717 2007-01-22  Paul Eggert  <eggert@cs.ucla.edu>
718
719         * modules/gettimeofday (License): Change from GPL to LGPL, since
720         gettimeofday is a library function.
721
722 2007-01-22  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
723
724         * lib/poll.c (rpl_poll): Don't check against FD_SETSIZE under Win32.
725
726 2007-01-21  Bruno Haible  <bruno@clisp.org>
727
728         * m4/gnulib-common.m4 (AC_PROG_MKDIR_P): New macro.
729
730 2007-01-21  Bruno Haible  <bruno@clisp.org>
731
732         * modules/striconveha: New file.
733         * lib/striconveha.h: New file.
734         * lib/striconveha.c: New file.
735         * MODULES.html.sh (Internationalization functions): Add striconveha.
736         * lib/striconv.c (str_iconv): Optimize the case of an empty input
737         string.
738         * lib/striconveh.c (mem_iconveh, str_iconveh): Likewise.
739
740 2007-01-21  Bruno Haible  <bruno@clisp.org>
741
742         * lib/striconv.c (str_iconv): Guarantee errno is set when strdup fails.
743         * lib/striconveh.c (str_iconveh): Likewise.
744
745 2007-01-21  Bruno Haible  <bruno@clisp.org>
746
747         * lib/striconveh.h (mem_iconveh): New declaration.
748         * lib/striconveh.c (mem_iconveh): New function.
749         * tests/test-striconveh.c (main): Add tests for mem_iconveh.
750
751 2007-01-21  Bruno Haible  <bruno@clisp.org>
752
753         * lib/xstriconv.h (xmem_cd_iconv): Change specification.
754
755         * lib/striconveh.h (mem_cd_iconveh): Change specification.
756         * lib/striconveh.c (mem_cd_iconveh): Don't free the user-supplied
757         original result buffer.
758         (str_cd_iconveh): Update.
759         * tests/test-striconveh.c (main): Update.
760
761         * lib/striconv.h (mem_cd_iconv): Change specification.
762         * lib/striconv.c (mem_cd_iconv): Don't free the user-supplied original
763         result buffer.
764         (str_cd_iconv): Update.
765         * tests/test-striconv.c (main): Update.
766
767 2007-01-21  Bruno Haible  <bruno@clisp.org>
768
769         * gnulib-tool: Fix test whether sed is GNU sed supporting --posix.
770
771 2007-01-20  Jim Meyering  <jim@meyering.net>
772
773         * lib/userspec.c (parse_with_separator): If a user or group string
774         starts with "+", skip the corresponding name-to-ID look-up, since
775         such a look-up must fail: user and group names may not include "+".
776
777 2007-01-19  Paul Eggert  <eggert@cs.ucla.edu>
778
779         * lib/poll.c: Include sys/time.h and time.h unconditionally,
780         since we now assume the sys_time module.
781         * m4/poll.m4 (gl_PREREQ_POLL): Don't require AC_HEADER_TIME or
782         check for sys/time.h; no longer needed.
783         * modules/poll (Depends-on): Depend on sys_time.
784
785 2007-01-18  Bruno Haible  <bruno@clisp.org>
786
787         * m4/mktime.m4 (AC_FUNC_MKTIME): Remove test for <sys/time.h>.
788         * m4/strftime.m4 (gl_FUNC_STRFTIME): Likewise.
789
790         * m4/tempname.m4 (gl_PREREQ_TEMPNAME): Remove tests for sys/time.h and
791         gettimeofday.
792
793         * tests/test-gettimeofday.c: Include <time.h>.
794         (dummy): Remove variable.
795
796         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Renamed from
797         gl_HEADER_SYS_TIME_H.
798         (gl_HEADER_SYS_TIME_H): New macro.
799
800         * lib/sys_time_.h: Test GETTIMEOFDAY_REPLACEMENT instead of
801         HAVE_GETTIMEOFDAY_POSIX_SIGNATURE and GETTIMEOFDAY_CLOBBERS_LOCALTIME.
802         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY,
803         gl_FUNC_GETTIMEOFDAY_CLOBBER): Set GETTIMEOFDAY_REPLACEMENT instead of
804         HAVE_GETTIMEOFDAY_POSIX_SIGNATURE and GETTIMEOFDAY_CLOBBERS_LOCALTIME.
805         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H): Initialize
806         GETTIMEOFDAY_REPLACEMENT instead of HAVE_GETTIMEOFDAY_POSIX_SIGNATURE
807         and GETTIMEOFDAY_CLOBBERS_LOCALTIME.
808         * modules/sys_time (sys/time.h): Substitute GETTIMEOFDAY_REPLACEMENT
809         instead of HAVE_GETTIMEOFDAY_POSIX_SIGNATURE and
810         GETTIMEOFDAY_CLOBBERS_LOCALTIME.
811
812         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Undo the
813         last change; it caused a compilation error when cross-compiling to
814         Cygwin.
815
816 2007-01-18  Jim Meyering  <jim@meyering.net>
817
818         Use "$(MKDIR_P) sys", not race-prone "test -d sys || mkdir sys".
819         * modules/sys_stat (Makefile.am): Use "$(MKDIR_P) sys", rather
820         than the race-prone "test -d sys || mkdir sys".
821         (configure.ac): Use AC_PROG_MKDIR_P.
822         * modules/sys_select: Likewise.
823         * modules/sys_socket: Likewise.
824         * modules/sys_time: Likewise.
825
826 2007-01-18  Eric Blake  <ebb9@byu.net>
827
828         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Also
829         replace gettimeofday.
830         * lib/gettimeofday.c (rpl_gettimeofday): Declare with replacement
831         name, to avoid infinite recursion.
832
833 2007-01-17  Paul Eggert  <eggert@cs.ucla.edu>
834
835         * MODULES.html.sh (Support for systems lacking POSIX:2001): New
836         module sys_time.
837         * lib/gethrxtime.c: Include <sys/time.h>, since we can no longer
838         assume timespec.h defines struct timeval.
839         * lib/settime.c: Likewise.
840         * lib/utimens.c: Likewise.
841         * lib/gettime.c (gettime): Remove test against HAVE_GETTIMEOFDAY,
842         since we now assume the gettimeofday module.
843         * lib/tempname.c (__gen_tempname): Likewise.
844         * lib/gettimeofday.h: Remove.
845         * lib/gettimeofday.c: Include <sys/time.h> instead of "gettimeofday.h".
846         Don't include <sys/types.h> and <stdlib.h>; shouldn't be needed.
847         Include <time.h>, for 'time()'.
848         (localtime_buffer_addr): Also use this workaround if
849         TZSET_CLOBBERS_LOCALTIME.  Set to a dummy static variable by default,
850         to simplify the uses.  All uses changed.
851         (localtime, gmtime, tzset, gettimeofday): Reformat slightly so
852         that #undef is inside {}, and 'const' follows type name consistently.
853         (tzset): Define replacement only if TZSET_CLOBBERS_LOCALTIME.
854         (gettimeofday): Do not use the maximum possible value for
855         tv->tv_usec, since that might break usages other than ls.c.
856         Instead, we'll leave ls.c alone.  This undoes today's patch
857         by Bruno.  Add a compile-time warning for 1s-clock resolution;
858         we've never observed the problem but might as well keep the
859         canary.
860         * lib/nanosleep.c: Include timespec.h first, for interface check.
861         * lib/nanosleep.c: Include <sys/time.h> unconditionally, since we
862         now assume the sys_time module.
863         * lib/tempname.c: Likewise.
864         * lib/timespec.h: Likewise.
865         * lib/nanosleep.c: Don't worry about TIME_WITH_SYS_TIME; no longer
866         needed.
867         * lib/strftime.c: Likewise.
868         * lib/timespec.h: Likewise.
869         * lib/posixtm.c: Include posixtm.h first, for interface check.
870         Don't worry about TM_IN_SYS_TIME; that's wayyy obsolete.
871         * lib/posixtm.h: Include stdbool.h and time.h, for proper interface.
872         * lib/strftime.c: Don't include <sys/types.h>; shouldn't be needed.
873         * lib/sys_time_.h: New file.
874         * lib/timespec.h (struct timespec): Use long int, not long.
875         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY):
876         (gl_FUNC_GETTIMEOFDAY_CLOBBER, gl_PREREQ_GETTIMEOFDAY):
877         Remove obsolescent call to AC_HEADER_TIME.
878         * m4/mktime.m4 (AC_FUNC_MKTIME): Likewise.
879         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
880         * m4/strftime.m4 (gl_FUNC_STRFTIME): Likewise.
881         * m4/timespec.m4 (gl_TIMESPEC, gl_CHECK_TYPE_STRUCT_TIMESPEC):
882         Likewise.
883         * m4/tzset.m4 (gl_FUNC_TZSET_CLOBBER): Likewise.
884         * m4/utimbuf.m4 (gl_CHECK_TYPE_STRUCT_UTIMBUF): Likewise.
885         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY): Move sys/time.h tests
886         into the sys_time module.  Check for gettimeofday just once.
887         Prefix our variables with gl_, not with ac_ or jm_.  Tighten test
888         for gettimeofday signature to just check the signature.  Merely
889         compile it, since linking doesn't test signature.  Improve test for
890         whether gettimeofday.o is actually needed.
891         (gl_FUNC_GETTIMEOFDAY_CLOBBER): Renamed from
892         AC_FUNC_GETTIMEOFDAY_CLOBBER.  All uses changed.  Use
893         AC_RUN_IFELSE rather than AC_TRY_RUN.  If clobbering, set
894         and define GETTIMEOFDAY_CLOBBERS_LOCALTIME.
895         (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Don't define
896         GETTIMEOFDAY_CLOBBERS_LOCALTIME; that's gl_FUNC_GETTIMEOFDAY_CLOBBER's
897         job.  Don't define tzset; that's gl_FUNC_TZSET_CLOBBER's job.
898         * m4/mktime.m4 (AC_FUNC_MKTIME): Just include <time.h> rather
899         than worrying about sys/time.h.
900         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP):
901         Don't bother worrying about TIME_WITH_SYS_TIME.
902         * m4/stat-time.m4 (gl_STAT_TIME): Likewise.
903         * m4/posixtm.m4 (gl_POSIXTM): Remove obsolescent call to AC_STRUCT_TM.
904         * m4/sys_time_h.m4: New file.
905         * m4/tzset.m4 (gl_FUNC_TZSET_CLOBBER): Require gl_HEADER_SYS_TIME_H.
906         Don't include sys/time.h.  Return from main rather than exiting.
907         Define TZSET_CLOBBERS_LOCALTIME, for consistency with other names;
908         all uses changed.
909         * modules/gethrxtime (Depends-on): Add sys_time.
910         * modules/gettime (Depends-on): Likewise.
911         * modules/gettimeofday (Depends-on): Likewise.
912         * modules/nanosleep (Depends-on): Likewise.
913         * modules/settime (Depends-on): Likewise.
914         * modules/tempname (Depends-on): Likewise.
915         * modules/utimens (Depends-on): Likewise.
916         * modules/gettimeofday (Files): Remove lib/gettimeofday.h.
917         (Include:) Change back to <sys/time.h>.
918         (Maintainer:) Add self.
919         * modules/sys_time: New file.
920         * modules/tempname (Depends-on): Add gettimeofday.
921         * tests/test-gettimeofday.c: Include <sys/time.h>
922         rather than gettimeofday.h.
923
924 2007-01-17  Bruno Haible  <bruno@clisp.org>
925
926         * gnulib-tool (func_get_license): Revert last patch. Instead, let
927         the license default to GPL.
928         (func_create_testdir): Don't complain if a module is LGPL and its
929         tests module depends on GPLed modules.
930
931 2007-01-17  Bruno Haible  <bruno@clisp.org>
932
933         * lib/gettimeofday.c (gettimeofday): Add code for the case
934         HAVE_GETTIMEOFDAY && !GETTIMEOFDAY_CLOBBERS_LOCALTIME. Use the
935         maximum possible value for tv->tv_usec, rather than the minimum one.
936
937 2005-10-08  Martin Lambers  <marlam@marlam.de>
938 2005-10-08  Paul Eggert  <eggert@cs.ucla.edu>
939 2007-01-16  Bruno Haible  <bruno@clisp.org>
940
941         * modules/gettimeofday (Files): Add lib/gettimeofday.h.
942         (configure.ac): Remove AC_FUNC_GETTIMEOFDAY_CLOBBER. Add
943         gl_FUNC_GETTIMEOFDAY.
944         (Include): Add gettimeofday.h.
945         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY): New macro.
946         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Don't invoke gl_PREREQ_GETTIMEOFDAY.
947         (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Define
948         GETTIMEOFDAY_CLOBBERS_LOCALTIME. Invoke gl_PREREQ_GETTIMEOFDAY here.
949         (gl_PREREQ_GETTIMEOFDAY): Check for <sys/timeb.h> and _ftime.
950         * lib/gettimeofday.h: New file.
951         * lib/gettimeofday.c: Include <sys/timeb.h>.
952         (localtime_buffer_addr, rpl_localtime, rpl_gmtime, rpl_tzset): Define
953         only if GETTIMEOFDAY_CLOBBERS_LOCALTIME.
954         (rpl_gettimeofday) [!HAVE_GETTIMEOFDAY]: Use _ftime() when available;
955         fall back on time().
956
957         * tests/test-gettimeofday.c: New file.
958         * modules/gettimeofday-tests: New file.
959
960 2007-01-16  Eric Blake  <ebb9@byu.net>
961
962         * modules/fnmatch (Depends-on): Depend on wchar.
963         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Assume <wchar.h>.
964         * m4/fnmatch.m4: Likewise.
965         * modules/mbchar (Makefile.am): Assume <wchar.h>.
966         * m4/mbchar.m4: Likewise.
967         * modules/mbswidth (Depends-on): Depend on wchar.
968         * lib/mbswidth.c: Assume <wchar.h>.
969         * m4/mbswidth.m4: Likewise.
970         * modules/quotearg (Depends-on): Depend on wchar.
971         * lib/quotearg.c: Assume <wchar.h>.
972         * m4/quotearg.m4: Likewise.
973         * modules/regex (Depends-on): Depend on wchar.
974         * lib/regex_internal.h: Assume <wchar.h>.
975         * m4/regex.m4: Likewise.
976         * modules/stdint (Depends-on): Depend on wchar.
977         * lib/stdint_.h [!defined WCHAR_MIN]: Assume <wchar.h>.
978         * m4/stdint.m4: Likewise.
979         * tests/test-stdint.c [HAVE_WINT_T]: Likewise.
980         * modules/strftime (Depends-on): Depend on wchar.
981         * lib/strftime.c (DO_MULTIBYTE): Assume <wchar.h>.
982         * modules/strtol (Depends-on): Depend on wchar.
983         * lib/strtol.c: Assume <wchar.h>.
984         * modules/wcwidth (Depends-on): Depend on wchar.
985         * lib/wcwidth.h: Assume <wchar.h>.
986         * m4/wcwidth.m4: Likewise.
987
988 2007-01-16  Bruno Haible  <bruno@clisp.org>
989
990         * modules/csharpexec-script: New, created from...
991         * modules/csharpexec: ... this.
992
993 2007-01-16  Paolo Bonzini  <bonzini@gnu.org>
994
995         * modules/javaexec-script: New, created from...
996         * modules/javaexec: ... this.
997
998 2007-01-16  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
999
1000         * modules/poll (Dependencies): Add sys_select.
1001
1002 2007-01-15  Jim Meyering  <jim@meyering.net>
1003
1004         * m4/readutmp.m4 (gl_READUTMP): Work around AIX 4.3 struct-
1005         redefinition bug when using both <utmp.h> and <utmpx.h> headers.
1006         * lib/readutmp.h: Likewise.  Reported by Daniel Richard G. in
1007         <http://article.gmane.org/gmane.comp.gnu.core-utils.bugs/9415>.
1008
1009 2007-01-15  Bruno Haible  <bruno@clisp.org>
1010
1011         * modules/striconveh: New file.
1012         * lib/striconveh.h: New file.
1013         * lib/striconveh.c: New file.
1014         * MODULES.html.sh (Internationalization functions): Add striconveh.
1015
1016         * modules/striconveh-tests: New file.
1017         * tests/test-striconveh.c: New file.
1018
1019 2007-01-15  Bruno Haible  <bruno@clisp.org>
1020
1021         * lib/striconv.c (str_cd_iconv): Use the first algorithm if iconv is
1022         not from GNU libiconv or GNU libc.
1023
1024 2007-01-15  Bruno Haible  <bruno@clisp.org>
1025
1026         * doc/gnulib-intro.texi (Copyright): Explain the different license
1027         terms for module descriptions, autoconf macros, tests, documentation.
1028
1029 2007-01-14  Bruno Haible  <bruno@clisp.org>
1030
1031         * modules/striconv-tests: New file.
1032         * tests/test-striconv.c: New file.
1033
1034 2007-01-14  Bruno Haible  <bruno@clisp.org>
1035
1036         * modules/iconv-tests: New file.
1037         * tests/test-iconv.c: New file.
1038
1039 2007-01-14  Bruno Haible  <bruno@clisp.org>
1040
1041         * gnulib-tool (func_get_license): For test modules, use the license of
1042         the main module.
1043
1044 2007-01-14  Bruno Haible  <bruno@clisp.org>
1045
1046         * modules/iconv (Include): Clarify that <iconv.h> can only be included
1047         if iconv is found to exist.
1048
1049 2007-01-14  Bruno Haible  <bruno@clisp.org>
1050
1051         * modules/c-ctype-tests: New file.
1052         * tests/test-c-ctype.c: New file.
1053
1054 2007-01-14  Bruno Haible  <bruno@clisp.org>
1055
1056         * modules/binary-io-tests: New file.
1057         * tests/test-binary-io.sh: New file.
1058         * tests/test-binary-io.c: New file.
1059
1060 2007-01-14  Bruno Haible  <bruno@clisp.org>
1061
1062         * modules/array-oset-tests: New file.
1063         * tests/test-array_oset.c: New file.
1064
1065 2007-01-14  Bruno Haible  <bruno@clisp.org>
1066
1067         * modules/array-list-tests: New file.
1068         * tests/test-array_list.c: New file.
1069
1070 2007-01-14  Bruno Haible  <bruno@clisp.org>
1071
1072         * gnulib-tool (func_create_testdir): Don't unnecessarily run configure
1073         and make.
1074         Reported by Simon Josefsson in
1075         <http://lists.gnu.org/archive/html/bug-gnulib/2007-01/msg00139.html>
1076
1077 2007-01-14  Bruno Haible  <bruno@clisp.org>
1078
1079         * modules/allocsa-tests: New file.
1080         * tests/test-allocsa.c: New file.
1081
1082 2007-01-14  Bruno Haible  <bruno@clisp.org>
1083
1084         * modules/fchdir (Depends-on): Add absolute-header.
1085         * modules/unistd (Depends-on): Likewise.
1086
1087 2006-12-30  Bruno Haible  <bruno@clisp.org>
1088
1089         * modules/fchdir: New file.
1090         * modules/unistd (Files): Add lib/unistd_.h.
1091         (Makefile.am): Generate unistd.h from unistd_.h.
1092         * lib/fchdir.c: New file.
1093         * lib/dirent_.h: New file.
1094         * lib/unistd_.h: New file.
1095         * lib/fcntl_.h (open) [FCHDIR_REPLACEMENT]: New replacement.
1096         * m4/fchdir.m4: New file.
1097         * m4/unistd_h.m4 (gl_PREREQ_UNISTD): New macro.
1098         (gl_HEADER_UNISTD): Invoke it.
1099         * lib/dup-safer.c (dup_safer) [FCHDIR_REPLACEMENT]: Use the dup
1100         function.
1101         * lib/backupfile.c (opendir, closedir): Undefine.
1102         * lib/chown.c (open, close): Undefine.
1103         * lib/clean-temp.c (open, close): Undefine.
1104         * lib/copy-file.c (open, close): Undefine.
1105         * lib/execute.c (open, close): Undefine.
1106         * lib/fsusage.c (open, close): Undefine.
1107         * lib/gc-gnulib.c (open, close): Undefine.
1108         * lib/getcwd.c (opendir, closedir): Undefine.
1109         * lib/glob.c (opendir, closedir): Undefine.
1110         * lib/javacomp.c (open, close): Undefine.
1111         * lib/mountlist.c (open, close, opendir, closedir): Undefine.
1112         * lib/openat-proc.c (open, close): Undefine.
1113         * lib/pagealign_alloc.c (open, close): Undefine.
1114         * lib/pipe.c (open, close): Undefine.
1115         * lib/progreloc.c (open, close): Undefine.
1116         * lib/savedir.c (opendir, closedir): Undefine.
1117         * lib/utime.c (open, close): Undefine.
1118         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add fchdir.
1119
1120 2007-01-10  Bruno Haible  <bruno@clisp.org>
1121
1122         * lib/striconv.c (mem_cd_iconv): Align the temporary buffer.
1123
1124 2007-01-12  Eric Blake  <ebb9@byu.net>
1125
1126         Provide a robust <wchar.h>.  Further simplifications are now
1127         possible in other modules, but not included here.
1128         * modules/wchar: New module.
1129         * m4/wchar.m4: New file.
1130         * lib/wchar_.h: Likewise.
1131         * modules/mbchar (Depends-on): Depend on wchar, as the first use
1132         of the new module.
1133         * MODULES.html.sh (Extended multibyte and wide character utilities):
1134         New section.
1135
1136 2007-01-12  Paul Eggert  <eggert@cs.ucla.edu>
1137
1138         * lib/xreadlink.c (SYMLINK_MAX) [!defined SYMLINK_MAX]: Define
1139         to a reasonable default for memory allocation.
1140         (xreadlink): Don't allocate a huge buffer, to work around a buggy
1141         file system that reports garbage st_size values for symlinks.
1142         Problem reported by Liyang Hu.
1143
1144 2007-01-11  Simon Josefsson  <simon@josefsson.org>
1145
1146         * gnulib-tool (func_all_modules): Exclude all .* files (e.g.,
1147         Emacs .#* auto-save files).
1148
1149 2007-01-11  Bruno Haible  <bruno@clisp.org>
1150
1151         * gnulib-tool (func_all_modules): Exclude all files inside the CVS
1152         directory.
1153
1154 2007-01-10  Paul Eggert  <eggert@cs.ucla.edu>
1155
1156         Use @...@ consistently in lib/wctype_.h.
1157         * lib/wctype_.h [HAVE_WINT_T]: Go back to using @...@, but rely
1158         on it being set to 1 or 0.
1159         * m4/wctype.m4 (gl_WCTYPE_H): Set HAVE_WINT_T to 1 or 0, and
1160         go back to AC_SUBSTing it.
1161         * modules/wctype (Makefile.am): Undo previous change.
1162
1163 2007-01-10  Eric Blake  <ebb9@byu.net>
1164
1165         * lib/wctype_.h [HAVE_WINT_T]: Rely on AC_DEFINE.
1166         * m4/wctype.m4 (gl_WCTYPE_H): No need to AC_SUBST(HAVE_WINT_T).
1167         * modules/wctype (Makefile.am): Likewise.
1168         Reported by Chris McGuire.
1169
1170 2007-01-10  Jim Meyering  <jim@meyering.net>
1171
1172         fts.c: a small readability/maintainability improvement
1173         * lib/fts.c (fts_read): Make this code slightly more readable and
1174         maintainable by hoisting the "sp->fts_cur = p" assignments to
1175         immediately follow the statements that set P.  Derived from
1176         the patch by Miloslav Trmac in http://bugzilla.redhat.com/222089.
1177
1178 2007-01-10  Eric Blake  <ebb9@byu.net>
1179
1180         * lib/wctype_.h [HAVE_WINT_T]: Include <stddef.h> before
1181         <wchar.h>, to work around BSDI bug in BSD/OS 4.0.1.
1182         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Likewise.
1183         * m4/wint_t.m4 (gt_TYPE_WINT_T): Likewise.
1184         Reported by Chris McGuire.
1185
1186 2007-01-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1187
1188         * gnulib-tool (func_all_modules): Use POSIX conforming escaping
1189         in sed script.
1190
1191 2007-01-09  Bruno Haible  <bruno@clisp.org>
1192
1193         * MODULES.html.sh: Accept options --cvs-urls, --git-urls.
1194         (repo_url_prefix, repo_url_suffix, repo_url_suffix_repl): New
1195         variables.
1196         (func_module): Use them.
1197
1198 2007-01-09  Bruno Haible  <bruno@clisp.org>
1199
1200         * modules/unistr/base: New file.
1201         * lib/unistr.h: New file.
1202
1203         * modules/unistr/u8-to-u16: New file.
1204         * lib/unistr/u8-to-u16.c: New file.
1205
1206         * modules/unistr/u8-to-u32: New file.
1207         * lib/unistr/u8-to-u32.c: New file.
1208
1209         * modules/unistr/u16-to-u8: New file.
1210         * lib/unistr/u16-to-u8.c: New file.
1211
1212         * modules/unistr/u16-to-u32: New file.
1213         * lib/unistr/u16-to-u32.c: New file.
1214
1215         * modules/unistr/u32-to-u8: New file.
1216         * lib/unistr/u32-to-u8.c: New file.
1217
1218         * modules/unistr/u32-to-u16: New file.
1219         * lib/unistr/u32-to-u16.c: New file.
1220
1221         * modules/unistr/u8-check: New file.
1222         * modules/unistr/u16-check: New file.
1223         * modules/unistr/u32-check: New file.
1224         * lib/unistr/u8-check.c: New file.
1225         * lib/unistr/u16-check.c: New file.
1226         * lib/unistr/u32-check.c: New file.
1227
1228         * modules/unistr/u8-chr: New file.
1229         * modules/unistr/u16-chr: New file.
1230         * modules/unistr/u32-chr: New file.
1231         * lib/unistr/u8-chr.c: New file.
1232         * lib/unistr/u16-chr.c: New file.
1233         * lib/unistr/u32-chr.c: New file.
1234
1235         * modules/unistr/u8-cmp: New file.
1236         * modules/unistr/u16-cmp: New file.
1237         * modules/unistr/u32-cmp: New file.
1238         * lib/unistr/u8-cmp.c: New file.
1239         * lib/unistr/u16-cmp.c: New file.
1240         * lib/unistr/u32-cmp.c: New file.
1241
1242         * modules/unistr/u8-cpy: New file.
1243         * modules/unistr/u16-cpy: New file.
1244         * modules/unistr/u32-cpy: New file.
1245         * lib/unistr/u8-cpy.c: New file.
1246         * lib/unistr/u16-cpy.c: New file.
1247         * lib/unistr/u32-cpy.c: New file.
1248         * lib/unistr/u-cpy.h: New file.
1249
1250         * modules/unistr/u8-cpy-alloc: New file.
1251         * modules/unistr/u16-cpy-alloc: New file.
1252         * modules/unistr/u32-cpy-alloc: New file.
1253         * lib/unistr/u8-cpy-alloc.c: New file.
1254         * lib/unistr/u16-cpy-alloc.c: New file.
1255         * lib/unistr/u32-cpy-alloc.c: New file.
1256         * lib/unistr/u-cpy-alloc.h: New file.
1257
1258         * modules/unistr/u8-endswith: New file.
1259         * modules/unistr/u16-endswith: New file.
1260         * modules/unistr/u32-endswith: New file.
1261         * lib/unistr/u8-endswith.c: New file.
1262         * lib/unistr/u16-endswith.c: New file.
1263         * lib/unistr/u32-endswith.c: New file.
1264         * lib/unistr/u-endswith.h: New file.
1265
1266         * modules/unistr/u8-mblen: New file.
1267         * modules/unistr/u16-mblen: New file.
1268         * modules/unistr/u32-mblen: New file.
1269         * lib/unistr/u8-mblen.c: New file.
1270         * lib/unistr/u16-mblen.c: New file.
1271         * lib/unistr/u32-mblen.c: New file.
1272
1273         * modules/unistr/u8-mbtouc: New file.
1274         * modules/unistr/u16-mbtouc: New file.
1275         * modules/unistr/u32-mbtouc: New file.
1276         * lib/unistr/u8-mbtouc.c: New file.
1277         * lib/unistr/u16-mbtouc.c: New file.
1278         * lib/unistr/u32-mbtouc.c: New file.
1279
1280         * modules/unistr/u8-mbtouc-safe: New file.
1281         * modules/unistr/u16-mbtouc-safe: New file.
1282         * modules/unistr/u32-mbtouc-safe: New file.
1283         * lib/unistr/u8-mbtouc-safe.c: New file.
1284         * lib/unistr/u16-mbtouc-safe.c: New file.
1285         * lib/unistr/u32-mbtouc-safe.c: New file.
1286
1287         * modules/unistr/u8-move: New file.
1288         * modules/unistr/u16-move: New file.
1289         * modules/unistr/u32-move: New file.
1290         * lib/unistr/u8-move.c: New file.
1291         * lib/unistr/u16-move.c: New file.
1292         * lib/unistr/u32-move.c: New file.
1293         * lib/unistr/u-move.h: New file.
1294
1295         * modules/unistr/u8-next: New file.
1296         * modules/unistr/u16-next: New file.
1297         * modules/unistr/u32-next: New file.
1298         * lib/unistr/u8-next.c: New file.
1299         * lib/unistr/u16-next.c: New file.
1300         * lib/unistr/u32-next.c: New file.
1301
1302         * modules/unistr/u8-prev: New file.
1303         * modules/unistr/u16-prev: New file.
1304         * modules/unistr/u32-prev: New file.
1305         * lib/unistr/u8-prev.c: New file.
1306         * lib/unistr/u16-prev.c: New file.
1307         * lib/unistr/u32-prev.c: New file.
1308
1309         * modules/unistr/u8-set: New file.
1310         * modules/unistr/u16-set: New file.
1311         * modules/unistr/u32-set: New file.
1312         * lib/unistr/u8-set.c: New file.
1313         * lib/unistr/u16-set.c: New file.
1314         * lib/unistr/u32-set.c: New file.
1315         * lib/unistr/u-set.h: New file.
1316
1317         * modules/unistr/u8-startswith: New file.
1318         * modules/unistr/u16-startswith: New file.
1319         * modules/unistr/u32-startswith: New file.
1320         * lib/unistr/u8-startswith.c: New file.
1321         * lib/unistr/u16-startswith.c: New file.
1322         * lib/unistr/u32-startswith.c: New file.
1323         * lib/unistr/u-startswith.h: New file.
1324
1325         * modules/unistr/u8-stpcpy: New file.
1326         * modules/unistr/u16-stpcpy: New file.
1327         * modules/unistr/u32-stpcpy: New file.
1328         * lib/unistr/u8-stpcpy.c: New file.
1329         * lib/unistr/u16-stpcpy.c: New file.
1330         * lib/unistr/u32-stpcpy.c: New file.
1331         * lib/unistr/u-stpcpy.h: New file.
1332
1333         * modules/unistr/u8-stpncpy: New file.
1334         * modules/unistr/u16-stpncpy: New file.
1335         * modules/unistr/u32-stpncpy: New file.
1336         * lib/unistr/u8-stpncpy.c: New file.
1337         * lib/unistr/u16-stpncpy.c: New file.
1338         * lib/unistr/u32-stpncpy.c: New file.
1339         * lib/unistr/u-stpncpy.h: New file.
1340
1341         * modules/unistr/u8-strcat: New file.
1342         * modules/unistr/u16-strcat: New file.
1343         * modules/unistr/u32-strcat: New file.
1344         * lib/unistr/u8-strcat.c: New file.
1345         * lib/unistr/u16-strcat.c: New file.
1346         * lib/unistr/u32-strcat.c: New file.
1347         * lib/unistr/u-strcat.h: New file.
1348
1349         * modules/unistr/u8-strchr: New file.
1350         * modules/unistr/u16-strchr: New file.
1351         * modules/unistr/u32-strchr: New file.
1352         * lib/unistr/u8-strchr.c: New file.
1353         * lib/unistr/u16-strchr.c: New file.
1354         * lib/unistr/u32-strchr.c: New file.
1355
1356         * modules/unistr/u8-strcmp: New file.
1357         * modules/unistr/u16-strcmp: New file.
1358         * modules/unistr/u32-strcmp: New file.
1359         * lib/unistr/u8-strcmp.c: New file.
1360         * lib/unistr/u16-strcmp.c: New file.
1361         * lib/unistr/u32-strcmp.c: New file.
1362
1363         * modules/unistr/u8-strcpy: New file.
1364         * modules/unistr/u16-strcpy: New file.
1365         * modules/unistr/u32-strcpy: New file.
1366         * lib/unistr/u8-strcpy.c: New file.
1367         * lib/unistr/u16-strcpy.c: New file.
1368         * lib/unistr/u32-strcpy.c: New file.
1369         * lib/unistr/u-strcpy.h: New file.
1370
1371         * modules/unistr/u8-strcspn: New file.
1372         * modules/unistr/u16-strcspn: New file.
1373         * modules/unistr/u32-strcspn: New file.
1374         * lib/unistr/u8-strcspn.c: New file.
1375         * lib/unistr/u16-strcspn.c: New file.
1376         * lib/unistr/u32-strcspn.c: New file.
1377         * lib/unistr/u-strcspn.h: New file.
1378
1379         * modules/unistr/u8-strdup: New file.
1380         * modules/unistr/u16-strdup: New file.
1381         * modules/unistr/u32-strdup: New file.
1382         * lib/unistr/u8-strdup.c: New file.
1383         * lib/unistr/u16-strdup.c: New file.
1384         * lib/unistr/u32-strdup.c: New file.
1385         * lib/unistr/u-strdup.h: New file.
1386
1387         * modules/unistr/u8-strlen: New file.
1388         * modules/unistr/u16-strlen: New file.
1389         * modules/unistr/u32-strlen: New file.
1390         * lib/unistr/u8-strlen.c: New file.
1391         * lib/unistr/u16-strlen.c: New file.
1392         * lib/unistr/u32-strlen.c: New file.
1393         * lib/unistr/u-strlen.h: New file.
1394
1395         * modules/unistr/u8-strmblen: New file.
1396         * modules/unistr/u16-strmblen: New file.
1397         * modules/unistr/u32-strmblen: New file.
1398         * lib/unistr/u8-strmblen.c: New file.
1399         * lib/unistr/u16-strmblen.c: New file.
1400         * lib/unistr/u32-strmblen.c: New file.
1401
1402         * modules/unistr/u8-strmbtouc: New file.
1403         * modules/unistr/u16-strmbtouc: New file.
1404         * modules/unistr/u32-strmbtouc: New file.
1405         * lib/unistr/u8-strmbtouc.c: New file.
1406         * lib/unistr/u16-strmbtouc.c: New file.
1407         * lib/unistr/u32-strmbtouc.c: New file.
1408
1409         * modules/unistr/u8-strncat: New file.
1410         * modules/unistr/u16-strncat: New file.
1411         * modules/unistr/u32-strncat: New file.
1412         * lib/unistr/u8-strncat.c: New file.
1413         * lib/unistr/u16-strncat.c: New file.
1414         * lib/unistr/u32-strncat.c: New file.
1415         * lib/unistr/u-strncat.h: New file.
1416
1417         * modules/unistr/u8-strncmp: New file.
1418         * modules/unistr/u16-strncmp: New file.
1419         * modules/unistr/u32-strncmp: New file.
1420         * lib/unistr/u8-strncmp.c: New file.
1421         * lib/unistr/u16-strncmp.c: New file.
1422         * lib/unistr/u32-strncmp.c: New file.
1423
1424         * modules/unistr/u8-strncpy: New file.
1425         * modules/unistr/u16-strncpy: New file.
1426         * modules/unistr/u32-strncpy: New file.
1427         * lib/unistr/u8-strncpy.c: New file.
1428         * lib/unistr/u16-strncpy.c: New file.
1429         * lib/unistr/u32-strncpy.c: New file.
1430         * lib/unistr/u-strncpy.h: New file.
1431
1432         * modules/unistr/u8-strnlen: New file.
1433         * modules/unistr/u16-strnlen: New file.
1434         * modules/unistr/u32-strnlen: New file.
1435         * lib/unistr/u8-strnlen.c: New file.
1436         * lib/unistr/u16-strnlen.c: New file.
1437         * lib/unistr/u32-strnlen.c: New file.
1438         * lib/unistr/u-strnlen.h: New file.
1439
1440         * modules/unistr/u8-strpbrk: New file.
1441         * modules/unistr/u16-strpbrk: New file.
1442         * modules/unistr/u32-strpbrk: New file.
1443         * lib/unistr/u8-strpbrk.c: New file.
1444         * lib/unistr/u16-strpbrk.c: New file.
1445         * lib/unistr/u32-strpbrk.c: New file.
1446         * lib/unistr/u-strpbrk.h: New file.
1447
1448         * modules/unistr/u8-strrchr: New file.
1449         * modules/unistr/u16-strrchr: New file.
1450         * modules/unistr/u32-strrchr: New file.
1451         * lib/unistr/u8-strrchr.c: New file.
1452         * lib/unistr/u16-strrchr.c: New file.
1453         * lib/unistr/u32-strrchr.c: New file.
1454
1455         * modules/unistr/u8-strspn: New file.
1456         * modules/unistr/u16-strspn: New file.
1457         * modules/unistr/u32-strspn: New file.
1458         * lib/unistr/u8-strspn.c: New file.
1459         * lib/unistr/u16-strspn.c: New file.
1460         * lib/unistr/u32-strspn.c: New file.
1461         * lib/unistr/u-strspn.h: New file.
1462
1463         * modules/unistr/u8-strstr: New file.
1464         * modules/unistr/u16-strstr: New file.
1465         * modules/unistr/u32-strstr: New file.
1466         * lib/unistr/u8-strstr.c: New file.
1467         * lib/unistr/u16-strstr.c: New file.
1468         * lib/unistr/u32-strstr.c: New file.
1469         * lib/unistr/u-strstr.h: New file.
1470
1471         * modules/unistr/u8-strtok: New file.
1472         * modules/unistr/u16-strtok: New file.
1473         * modules/unistr/u32-strtok: New file.
1474         * lib/unistr/u8-strtok.c: New file.
1475         * lib/unistr/u16-strtok.c: New file.
1476         * lib/unistr/u32-strtok.c: New file.
1477         * lib/unistr/u-strtok.h: New file.
1478
1479         * modules/unistr/u8-uctomb: New file.
1480         * modules/unistr/u16-uctomb: New file.
1481         * modules/unistr/u32-uctomb: New file.
1482         * lib/unistr/u8-uctomb.c: New file.
1483         * lib/unistr/u16-uctomb.c: New file.
1484         * lib/unistr/u32-uctomb.c: New file.
1485
1486         * MODULES.html.sh (Unicode string functions): Add the new modules.
1487
1488 2007-01-08  Bruno Haible  <bruno@clisp.org>
1489
1490         * gnulib-tool (func_all_modules): Use find, not ls, to traverse the
1491         modules directory. Filter out CVS, ChangeLog, COPYING, README also from
1492         subdirectories.
1493
1494 2007-01-08  Karl Berry  <karl@gnu.org>
1495
1496         * doc/error.texi: mention that main() fns must set program_name
1497         when progname is used.
1498
1499 2007-01-08  Paul Eggert  <eggert@cs.ucla.edu>
1500
1501         * m4/wctype.m4 (gl_WCTYPE_H): Compute ABSOLUTE_WCTYPE_H even if
1502         WCTYPE_H is empty, for the benefit of builds from non-distclean
1503         directories.  Problem reported by Eric Blake in
1504         <http://lists.gnu.org/archive/html/bug-gnulib/2007-01/msg00157.html>.
1505
1506 2007-01-08  Bruno Haible  <bruno@clisp.org>
1507
1508         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME): Remove
1509         PROVIDE_CANONICALIZE_FILENAME_MODE macro definition.
1510         * lib/canonicalize.h: Test GNULIB_CANONICALIZE instead of
1511         PROVIDE_CANONICALIZE_FILENAME_MODE.
1512         * modules/canonicalize (configure.ac): Use gl_MODULE_INDICATOR.
1513
1514 2007-01-08  Bruno Haible  <bruno@clisp.org>
1515
1516         * m4/fts.m4 (gl_FUNC_FTS_LGPL): Remove _LGPL_PACKAGE macro definition.
1517         * lib/fts_.h (_LGPL_PACKAGE): Remove macro.
1518         Use !GNULIB_FTS instead of _LGPL_PACKAGE.
1519         * lib/fts.c: Likewise.
1520         * modules/fts (configure.ac): Use gl_MODULE_INDICATOR.
1521
1522 2006-12-25  Bruno Haible  <bruno@clisp.org>
1523
1524         * modules/utf8-ucs4-safe: New file.
1525         * lib/utf8-ucs4-safe.h: New file.
1526         * lib/unistr/utf8-ucs4-safe.c: New file.
1527
1528         * modules/utf16-ucs4-safe: New file.
1529         * lib/utf16-ucs4-safe.h: New file.
1530         * lib/unistr/utf16-ucs4-safe.c: New file.
1531
1532         * MODULES.html.sh (Unicode string functions): Add the new modules.
1533
1534 2007-01-08  Bruno Haible  <bruno@clisp.org>
1535
1536         * modules/utf8-ucs4 (Files, lib_SOURCES): Add unistr/utf8-ucs4.c.
1537         (Depends-on): Add unitypes.
1538         * lib/utf8-ucs4.h: Add double-inclusion guard. Include unitypes.h.
1539         (u8_mbtouc_aux): Move out to separate file.
1540         (u8_mbtouc): Use ucs4_t, uint8_t types.
1541         * lib/unistr/utf8-ucs4.c: New file.
1542
1543         * modules/utf16-ucs4 (Files, lib_SOURCES): Add unistr/utf16-ucs4.c.
1544         (Depends-on): Add unitypes.
1545         * lib/utf16-ucs4.h: Add double-inclusion guard. Include unitypes.h.
1546         (u16_mbtouc_aux): Move out to separate file.
1547         (u16_mbtouc): Use ucs4_t, uint16_t types.
1548         * lib/unistr/utf16-ucs4.c: New file.
1549
1550         * modules/ucs4-utf8 (Files, lib_SOURCES): Add unistr/ucs4-utf8.c.
1551         (Depends-on): Add unitypes.
1552         * lib/ucs4-utf8.h: Add double-inclusion guard. Include unitypes.h.
1553         (u8_uctomb_aux): Move out to separate file.
1554         (u8_uctomb): Use ucs4_t, uint8_t types.
1555         * lib/unistr/ucs4-utf8.c: New file.
1556
1557         * modules/ucs4-utf16 (Files, lib_SOURCES): Add unistr/ucs4-utf16.c.
1558         (Depends-on): Add unitypes.
1559         * lib/ucs4-utf16.h: Add double-inclusion guard. Include unitypes.h.
1560         (u16_uctomb_aux): Move out to separate file.
1561         (u16_uctomb): Use ucs4_t, uint16_t types.
1562         * lib/unistr/ucs4-utf16.c: New file.
1563
1564 2006-12-25  Bruno Haible  <bruno@clisp.org>
1565
1566         * modules/unitypes: New file.
1567         * lib/unitypes.h: New file.
1568         * MODULES.html.sh (func_all_modules): New section "Unicode string
1569         functions". Move ucs4-utf8, ucs4-utf16, utf8-ucs4, utf16-ucs4 to
1570         this section. Add unitypes.
1571
1572 2007-01-08  Bruno Haible  <bruno@clisp.org>
1573
1574         Avoid variable names that conflict with those from libtool.
1575         * m4/lib-link.m4 (AC_LIB_RPATH, AC_LIB_LINKFLAGS_BODY,
1576         AC_LIB_LINKFLAGS_FROM_LIBS): Rename libext to acl_libext,
1577         shlibext to acl_shlibext, libname_spec to acl_libname_spec,
1578         library_names_spec to acl_library_names_spec, hardcode_* to
1579         acl_hardcode_*.
1580         Reported by Ralf Wildenhues.
1581
1582 2007-01-08  Bruno Haible  <bruno@clisp.org>
1583
1584         * m4/gc-arcfour.m4 (gl_GC_ARCFOUR): Remove GC_USE_ARCFOUR macro
1585         definition.
1586         * m4/gc-arctwo.m4 (gl_GC_ARCTWO): Remove GC_USE_ARCTWO macro
1587         definition.
1588         * m4/gc-des.m4 (gl_GC_DES): Remove GC_USE_DES macro definition.
1589         * m4/gc-hmac-md5.m4 (gl_GC_HMAC_MD5): Remove GC_USE_HMAC_MD5 macro
1590         definition.
1591         * m4/gc-hmac-sha1.m4 (gl_GC_HMAC_SHA1): Remove GC_USE_HMAC_SHA1 macro
1592         definition.
1593         * m4/gc-md2.m4 (gl_GC_MD2): Remove GC_USE_MD2 macro definition.
1594         * m4/gc-md4.m4 (gl_GC_MD4): Remove GC_USE_MD4 macro definition.
1595         * m4/gc-md5.m4 (gl_GC_MD5): Remove GC_USE_MD5 macro definition.
1596         * m4/gc-random.m4 (gl_GC_RANDOM): Remove GC_USE_RANDOM macro
1597         definition.
1598         * m4/gc-rijndael.m4 (gl_GC_RIJNDAEL): Remove GC_USE_RIJNDAEL macro
1599         definition.
1600         * m4/gc-sha1.m4 (gl_GC_SHA1): Remove GC_USE_SHA1 macro definition.
1601         * lib/gc-gnulib.c: Use GNULIB_GC_<algorithm> instead of
1602         GC_USE_<algorithm>.
1603         * lib/gc-libgcrypt.c: Likewise.
1604         * modules/gc-arcfour (configure.ac): Use gl_MODULE_INDICATOR.
1605         * modules/gc-arctwo (configure.ac): Likewise.
1606         * modules/gc-des (configure.ac): Likewise.
1607         * modules/gc-hmac-md5 (configure.ac): Likewise.
1608         * modules/gc-hmac-sha1 (configure.ac): Likewise.
1609         * modules/gc-md2 (configure.ac): Likewise.
1610         * modules/gc-md4 (configure.ac): Likewise.
1611         * modules/gc-md5 (configure.ac): Likewise.
1612         * modules/gc-random (configure.ac): Likewise.
1613         * modules/gc-rijndael (configure.ac): Likewise.
1614         * modules/gc-sha1 (configure.ac): Likewise.
1615
1616 2007-01-08  Bruno Haible  <bruno@clisp.org>
1617
1618         * m4/close-stream.m4 (gl_CLOSE_STREAM): Remove GNULIB_CLOSE_STREAM
1619         macro definition.
1620         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Remove GNULIB_FCNTL_SAFER macro
1621         definition.
1622         * m4/stdio-safer.m4 (gl_FOPEN_SAFER): Remove GNULIB_FOPEN_SAFER macro
1623         definition.
1624         * modules/close-stream (configure.ac): Invoke gl_MODULE_INDICATOR.
1625         * modules/fcntl-safer (configure.ac): Likewise.
1626         * modules/fopen-safer (configure.ac): Likewise.
1627         * modules/fwriteerror (configure.ac): Likewise. Remove explicit
1628         GNULIB_FWRITEERROR macro definition.
1629
1630 2007-01-08  Bruno Haible  <bruno@clisp.org>
1631
1632         * m4/gnulib-common.m4: New file.
1633         * gnulib-tool (func_get_autoconf_snippet): Undo last change.
1634         (func_get_filelist): Add m4/gnulib-common.m4.
1635
1636 2007-01-08  Bruno Haible  <bruno@clisp.org>
1637
1638         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Simplify the sorting
1639         command.
1640
1641 2007-01-08  Jim Meyering  <jim@meyering.net>
1642
1643         Use a more robust test for a "can't happen" condition.
1644         * lib/fts.c (fts_read): Revert the change of 2006-11-22, since it
1645         narrowed the st_size value.  Presuming the "can't happen" condition
1646         is true, that narrowing could conceivably convert an invalid st_size
1647         value into a valid one.  Instead, use a change based on Matthew
1648         Woehlke's original patch.
1649
1650         Slight readability improvement: use an assert-like macro
1651         in place of literal "abort ()" uses.
1652         * lib/fts.c (fts_assert): Define.
1653         (fts_set_stat_required, cwd_advance_fd, fts_read, fd_ring_check):
1654         Use this macro instead of a bare 'abort'.
1655
1656 2007-01-05  Paul Eggert  <eggert@cs.ucla.edu>
1657
1658         Don't worry about using IRIX 5.3's wctype.h broken definitions;
1659         simply work around them.
1660         * lib/wctype_.h: Remove test for HAVE_WCTYPE_CTMP_BUG.
1661         (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit, iswgraph, iswlower):
1662         (iswprint, iswpunct, iswspace, iswupper, iswxdigit): Undef before declaring.
1663         Don't bother to define as macros, since the standard doesn't require it.
1664         * m4/wctype.m4 (WCTYPE_H, ABSOLUTE_WCTYPE_H): Simplify, since we no
1665         longer worry about IRIX 5.3.
1666         (HAVE_WCTYPE_CTMP_BUG): Remove.
1667
1668 2007-01-04  Paul Eggert  <eggert@cs.ucla.edu>
1669
1670         * lib/wctype_.h (_ctmp_) [HAVE_WCTYPE_CTMP_BUG]: Now of type wchar_t,
1671         not wint_t.  Also, include <ctype.h>, to fix another IRIX bug.
1672         * m4/wctype.m4 (gl_WCTYPE_H): Likewise.
1673         Problems reported by Georg Schwarz for IRIX 5.3.
1674
1675         * gnulib-tool (autoconf_minversion): Take the maximum version number
1676         found, not the minimum.  Problem reported by James Youngman.
1677
1678 2007-01-03  Karl Berry  <karl@gnu.org>
1679
1680         * doc/error.texi: new file, explaining interaction with progname.
1681         * doc/gnulib.texi: include it.  Update copyright.
1682
1683 2007-01-03  Simon Josefsson  <simon@josefsson.org>
1684
1685         * gnulib-tool (func_create_testdir): Run AC_CANONICAL_BUILD and
1686         AC_CANONICAL_HOST, to improve autobuild outputs.
1687
1688 2007-01-03  Paolo Bonzini  <bonzini@gnu.org>
1689             Yoann Vandoorselaere <yoann.v@prelude-ids.com>
1690
1691         * lib/poll.c (poll): Use recv on Mac OS X to distinguish connected
1692         sockets, server sockets, and other file descriptors.  Count errors
1693         to compute the return value.  Reorder the code a bit to be easier
1694         to follow.  Don't set event bits that were not requested (except
1695         POLLERR and POLLHUP).
1696
1697 2007-01-01  Bruno Haible  <bruno@clisp.org>
1698
1699         * modules/lchmod (Include): Require lchmod.h, not lchown.h.
1700
1701 2007-01-03  Jim Meyering  <jim@meyering.net>
1702
1703         * modules/fts-lgpl (Depends-on): Add i-ring.  Reported by Bruno Haible.
1704
1705 2007-01-02  Bruno Haible  <bruno@clisp.org>
1706
1707         * modules/settime (Include): Require timespec.h.
1708         * modules/nanosleep (Include): Likewise.
1709
1710 2007-01-01  Bruno Haible  <bruno@clisp.org>
1711
1712         * gnulib-tool (func_emit_copyright_notice): Bump year.
1713         (func_get_autoconf_snippet): Emit a GNULIB_<modulename> macro.
1714
1715 2007-01-01  Bruno Haible  <bruno@clisp.org>
1716
1717         Improve support for OpenBSD.
1718         * build-aux/config.rpath (libname_spec): Export.
1719         (library_names_spec): New variable. Export.
1720         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Extract libname_spec and
1721         library_names_spec from the config.rpath output. Locate shared library
1722         through the name pattern in library_names_spec.
1723
1724 2007-01-01  Eric Blake  <ebb9@byu.net>
1725
1726         * lib/version-etc.c (COPYRIGHT_YEAR): Bump for new year.
1727
1728 2006-12-30  Paul Eggert  <eggert@cs.ucla.edu>
1729
1730         * gnulib-tool (SORT): Remove, since we no longer assume GNU sort.
1731         Rewrite so as not to assume GNU sort or "tail -1".  Also, don't
1732         assume the C locale, and avoid an "eval" that could cause trouble.
1733         Problem with SORT reported by Bob Proulx.
1734
1735         * lib/getpagesize.h (getpagesize) [defined __amigaos4__]:
1736         Define.  Trivial patch from Henning Nielsen Lund, originally
1737         sent to bug-grep@gnu.org today.
1738
1739 2006-12-29  Paul Eggert  <eggert@cs.ucla.edu>
1740
1741         * lib/acl.h: Include sys/types.h and sys/stat.h, for mode_t and
1742         struct stat.  Problem reported by Henning Nielsen Lund.
1743         * lib/acl.c: Include acl.h first, to check interface.  Don't
1744         bother to include sys/types.h and sys/stat.h again.
1745
1746 2006-12-28  Paul Eggert  <eggert@cs.ucla.edu>
1747
1748         Import the following change from libc; problem reported by
1749         Sven Verdoolaege.
1750
1751         2005-10-13  Ulrich Drepper  <drepper@redhat.com>
1752
1753         [BZ #1373]
1754         * lib/argp.h: Remove __NTH for __argp_usage inline function.
1755
1756 2006-12-28  Jim Meyering  <jim@meyering.net>
1757
1758         * build-aux/announce-gen: Do not assume that the package
1759         builds any of tar.gz, tar.bz2, and .xdelta files.
1760         Suggestion from Simon Josefsson.
1761
1762 2006-12-28  Simon Josefsson  <simon@josefsson.org>
1763
1764         * modules/announce-gen: New file.
1765
1766 2006-12-27  Paul Eggert  <eggert@cs.ucla.edu>
1767
1768         * lib/mbchar.h: Just include <wctype.h>; the wctype module
1769         handles its gotchas now.
1770         * lib/mbswidth.c: Likewise.
1771         * lib/wcwidth.h: Likewise.
1772         * m4/mbchar.m4 (gl_MBCHAR): Don't bother checking for wctype.h
1773         and iswcntrl; the wctype module does this stuff now.
1774         * m4/mbswidth.m4 (gl_MBSWIDTH): Likewise.
1775         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Likewise.
1776         * modules/mbchar (Depends-on): Add wctype.
1777         * modules/mbswidth (Depends-on): Likewise.
1778         * modules/wcwidth (Depends-on): Likewise.
1779
1780 2006-12-27  Eric Blake  <ebb9@byu.net>
1781
1782         * lib/fnmatch.c: Reinstate inclusion of <wchar.h>, since this
1783         module uses more than what <wctype.h> is required to provide.
1784
1785 2006-12-26  Eric Blake  <ebb9@byu.net>
1786
1787         * gnulib-tool (sed_extract_prog): Avoid space-tab.
1788
1789 2006-12-26  Eric Blake  <ebb9@byu.net>
1790
1791         * modules/absolute-header: New module.
1792         * modules/fcntl (Depends-on): Depend on it.
1793         * modules/inttypes (Depends-on): Likewise.
1794         * modules/stdint (Depends-on): Likewise.
1795         * modules/sys_stat (Depends-on): Likewise.
1796         * modules/wctype (Depends-on): Likewise.
1797         * MODULES.html.sh (Support for building libraries and
1798         executables): Document it.
1799
1800 2006-12-25  Paul Eggert  <eggert@cs.ucla.edu>
1801
1802         * gnulib-tool (SED): Remove, undoing previous change.
1803         The problem was that it broke coreutils on Solaris, because
1804         "sed --posix" leaked into a makefile.
1805         (sed): New alias, if 'alias' and GNU sed.
1806
1807 2006-12-24  Jim Meyering  <jim@meyering.net>
1808
1809         Work around an fchownat bug in glibc-2.4:
1810         http://lists.ubuntu.com/archives/ubuntu-users/2006-September/093218.html
1811         This bug would cause "chown -RP ... DIR" to follow symlinks in DIR,
1812         in spite of the -P option.
1813         * m4/openat.m4 (gl_FUNC_FCHOWNAT, gl_FUNC_FCHOWNAT_DEREF_BUG):
1814         New macros.
1815         (gl_PREREQ_OPENAT): Require gl_FUNC_FCHOWNAT.
1816         * modules/openat (Files): Add lib/fchownat.c.
1817         * lib/openat.c (fchownat): Don't define here.  Move to...
1818         * lib/fchownat.c: ...this new file.
1819
1820 2006-12-23  Paul Eggert  <eggert@cs.ucla.edu>
1821
1822         Fix bug reported by Bruno Haible in
1823         <http://lists.gnu.org/archive/html/bug-gnulib/2006-12/msg00228.html>
1824         where quotearg.c didn't compile on Mac OS X 10.2 because it
1825         lacks <wchar.h> and wint_t.
1826         * lib/wctype_.h (__wctype_wint_t): New type.
1827         Include <stdio.h>, <time.h>, <wchar.h> only if HAVE_WINT_T.
1828         (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit, iswgraph):
1829         (iswlower, iswprint, iswpunct, iswspace, iswupper, ixwxdigit):
1830         Arg is now of type __wctype_wint_t, not wint_t.
1831         * m4/wctype.m4 (gl_WCTYPE_H): Require gt_TYPE_WINT_T, and
1832         substitute HAVE_WINT_T.
1833         * modules/wctype (Files): Add m4/wint_t.m4.
1834         (wctype.h): Substitute HAVE_WINT_T.
1835
1836 2006-12-23  Bruno Haible  <bruno@clisp.org>
1837
1838         * lib/safe-read.h [C++]: Wrap declarations in extern "C".
1839
1840 2006-12-23  Bruno Haible  <bruno@clisp.org>
1841
1842         * lib/canonicalize-lgpl.c (__realpath): Test HAVE_READLINK instead of
1843         S_ISLNK.
1844         Needed because gnulib's sys/stat.h replacement defines S_ISLNK on
1845         mingw.
1846
1847 2006-12-22  Bruno Haible  <bruno@clisp.org>
1848
1849         * lib/copy-file.c: Include acl.h.
1850         (copy_file_preserving) [USE_ACL]: Use copy_acl instead of chmod.
1851         Close the file descriptors only after being done with copy_acl.
1852         * modules/copy-file (Depends-on): Add acl.
1853
1854 2006-12-22  Bruno Haible  <bruno@clisp.org>
1855
1856         * gnulib-tool (SED): New variable.
1857         Use $SED instead of sed everywhere.
1858
1859 2006-12-22  Bruno Haible  <bruno@clisp.org>
1860
1861         * modules/no-c++: New file.
1862         * m4/no-c++.m4: New file.
1863         * MODULES.html.sh (Support for building libraries and executables):
1864         Add no-c++.
1865
1866 2006-12-22  Paul Eggert  <eggert@cs.ucla.edu>
1867
1868         * m4/mktime.m4 (AC_FUNC_MKTIME): Sync from Autoconf.
1869         Include <limits.h>, and use its INT_MAX to rewrite the
1870         j loop so that it does not overflow 'int'.  Problem reported by
1871         Ralf Wildenhues in
1872         <http://lists.gnu.org/archive/html/bug-gnulib/2006-12/msg00084.html>.
1873         Play it safe by shifting left by 1 rather than multiplying by 2,
1874         as GCC is less likely to optimize this away when the value
1875         is signed (when it assumes overflow leads to undefined behavior).
1876         Also, don't assume time_t uses two's complement.
1877
1878 2006-12-21  Paul Eggert  <eggert@cs.ucla.edu>
1879
1880         * MODULES.html.sh: New module wctype.
1881         * lib/wctype_.h, m4/wctype.m4, modules/wctype: New files.
1882         * lib/fnmatch.c: Don't bother to include <wchar.h> before
1883         <wctype.h>, since the new wctype module should fix this.
1884         * lib/quotearg.c: Include <wctype.h> unconditionally, since
1885         the wctype module should arrange for it.
1886         * lib/regex_internal.h: Likewise.
1887         * m4/quotearg.m4 (gl_QUOTEARG): Don't check for wctype.h or iswprint,
1888         since the wctype module should handle this now.
1889         * m4/regex.m4 (gl_PREREQ_REGEX): Don't check for wctype.h.
1890         * modules/fnmatch (Depends-on): Add wctype.
1891         * modules/quotearg (Depends-on): Likewise.
1892         * modules/regex (Depends-on): Likewise.
1893
1894 2006-12-19  Bruno Haible  <bruno@clisp.org>
1895
1896         * lib/strdup.h [C++]: Wrap definitions in extern "C".
1897         Suggested by Lorenzo Bettini <bettini@dsi.unifi.it>.
1898
1899 2006-12-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1900
1901         * modules/savewd (Depends-on): Fix dependency on fcntl.
1902
1903 2006-12-18  Paul Eggert  <eggert@cs.ucla.edu>
1904
1905         * m4/stdint.m4 (gl_STDINT_H): Set STDINT_H to empty if stdint.h
1906         conforms to C99, rather than relying on the user's environment
1907         setting of STDINT_H.
1908
1909 2006-12-18  Paul Eggert  <eggert@cs.ucla.edu>
1910         and Eric Blake  <ebb9@byu.net>
1911
1912         * lib/dirname.h (DOUBLE_SLASH_IS_DISTINCT_ROOT): Default to 0, not 1.
1913         This is more consistent with the other defines here.
1914         * m4/double-slash-root.m4 (gl_DOUBLE_SLASH_ROOT):
1915         Port to z/OS.  Problem reported by Paul Gilmartin.
1916         Change local vars to use gl_ prefix rather than ac_.
1917         Don't define DOUBLE_SLASH_IS_DISTINCT_ROOT to 0, for consistency
1918         with other defines.
1919         * modules/double-slash-root: New module.
1920         * modules/dirname (Files): Remove m4/double-slash-root.m4.
1921         (Depends-on): Add double-slash-root.
1922         * MODULES.html.sh (File system functions): Mention new module.
1923
1924 2006-12-14  Paul Eggert  <eggert@cs.ucla.edu>
1925
1926         * lib/yesno.c [!ENABLE_NLS]: Don't include getline.h.
1927         (yesno) [!ENABLE_NLS]: Don't invoke getline or rpmatch.
1928         This is for the benefit of gzip, which doesn't do i18n.
1929
1930 2006-12-12  Jim Meyering  <jim@meyering.net>
1931
1932         * m4/acl.m4 (gl_ACL_GET_FILE): Fix logic error.
1933         Reported by Andreas Schwab <schwab@suse.de>.
1934
1935 2006-12-12  Bruno Haible  <bruno@clisp.org>
1936
1937         Merge these changes.
1938         2006-09-05  Bruno Haible  <bruno@clisp.org>
1939         * lib/iconvme.c (iconv_string): No need to save and restore errno when
1940         iconv_alloc succeeded.
1941         (iconv_alloc): Don't assume that malloc() or realloc(), when failing,
1942         sets errno to ENOMEM. (malloc on GNU/kFreeBSD doesn't.) No need to
1943         test for " && dest " at the end - dest is always != NULL there. Call
1944         iconv with 4xNULL arguments initially, to reset the state. Call iconv
1945         with 2xNULL arguments, also to flush the state storage. Handle the
1946         IRIX iconv behaviour. Realloc the final result, to throw away unused
1947         memory.
1948
1949 2006-12-11  Paul Eggert  <eggert@cs.ucla.edu>
1950
1951         * m4/openat.m4 (gl_FUNC_OPENAT): Don't compile mkdirat
1952         and fchmodat unconditionally, since glibc 2.4 has them.
1953         Problem reported by Arkadiusz Miskiewicz.
1954
1955 2006-12-10  Bruno Haible  <bruno@clisp.org>
1956
1957         * gnulib-tool (func_import): Show the include files only for those
1958         modules that are copied and specified.
1959         Reported by Karl Berry.
1960
1961 2006-12-08  Jim Meyering  <jim@meyering.net>
1962
1963         * build-aux/announce-gen ($VERSION): Don't use of $Revision...$.
1964         Instead, use Emacs' time-stamp write hook.  Note that the time is UTC.
1965
1966         * build-aux/announce-gen: Add two new options, both optional:
1967         --bootstrap-tools=TOOL_LIST
1968               a comma-separated list of tools, e.g.,
1969               autoconf,automake,bison,gnulib
1970         --gnulib-snapshot-date=DATE
1971               if gnulib is in the bootstrap tool list,
1972               then report this as the snapshot date.
1973               If not specified, use the current date/time.
1974               If you specify a date here, be sure it's UTC.
1975
1976 2006-12-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1977
1978         * tests/test-argp-2.sh: Fix test to match actual output.
1979         (func_compare): Fix sed script to be portable.
1980
1981 2006-12-05  Paul Eggert  <eggert@cs.ucla.edu>
1982
1983         * lib/utimens.c (futimens) [HAVE_BUGGY_NFS_TIME_STAMPS]: Add a
1984         workaround for this case.  It is not autoconfigured now; offhand
1985         it's hard to see how to autoconfigure it.
1986
1987 2006-12-03  Paul Eggert  <eggert@cs.ucla.edu>
1988
1989         * lib/mkdir-p.c (make_dir_parents): Fix race condition when making
1990         a directory that is about to be chowned.  Such a directory's
1991         initial file permissions should permit the owner only and this
1992         should not be changed until after the chown, since the group and
1993         other bits would be incorrect if they granted permission before
1994         the chown.
1995
1996         Fix porting problem for iswctype reported by Georg Schwarz in:
1997         http://lists.gnu.org/archive/html/bug-coreutils/2006-12/msg00017.html
1998         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Require HAVE_ISWCTYPE, too.
1999         * lib/regex_internal.h (RE_ENABLE_I18N): Likewise.
2000         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for iswctype, too.
2001         * m4/regex.m4 (gl_PREREQ_REGEX): Likewise.
2002
2003 2006-12-03  Jim Meyering  <jim@meyering.net>
2004
2005         * lib/fts.c (fts_load): Don't set sp->fts_dev here, since
2006         p->fts_statp may not yet be defined.
2007         (fts_read): Instead, set it in the caller, once p->fts_statp is
2008         sure to be defined, and corresponds to a top-level directory.
2009         This bug made du -x fail.  Here's the coreutils test case:
2010         http://git.sv.gnu.org/gitweb/?p=coreutils.git;a=commit;h=ba45154d8e9f
2011         Reported by Mike Frysinger.
2012
2013 2006-12-01  Jim Meyering  <jim@meyering.net>
2014
2015         * modules/savewd (Depends-on): Add fcntl_h to avoid self-test
2016         build failure due to missing definition of HAVE_WORKING_O_NOFOLLOW.
2017         Reported by Simon Josefsson.
2018
2019 2006-11-30  Jim Meyering  <jim@meyering.net>
2020
2021         * m4/warning.m4: Use the all-permissive copyright notice
2022         recommended by RMS (rather than LGPL).
2023         * m4/vararrays.m4: Likewise.
2024         * m4/flexmember.m4: Likewise.
2025
2026 2006-11-29  Bruno Haible  <bruno@clisp.org>
2027
2028         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
2029         noinst_LIBRARIES. Augment noinst_LIBRARIES and noinst_LTLIBRARIES
2030         using +=.
2031         Reported by Simon Josefsson <simon@josefsson.org>.
2032
2033 2006-11-28  James Youngman <jay@gnu.org>
2034
2035         * README: Advise users that they might find the bug-gnulib@gnu.org
2036         and autotools-announce@gnu.org mailing lists useful.
2037
2038 2006-11-28  Bruno Haible  <bruno@clisp.org>
2039
2040         * m4/ptrdiff_max.m4: Remove file.
2041
2042 2006-11-21  Bruno Haible  <bruno@clisp.org>
2043
2044         * m4/eoverflow.m4 (gl_EOVERFLOW): Use AC_COMPUTE_INT instead of
2045         _AC_COMPUTE_INT.
2046         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
2047         * m4/ptrdiff_max.m4 (gl_PTRDIFF_MAX): Use AC_COMPUTE_INT instead of
2048         _AC_COMPUTE_INT.
2049         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
2050         * m4/size_max.m4 (gl_SIZE_MAX): Use AC_COMPUTE_INT instead of
2051         _AC_COMPUTE_INT.
2052         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
2053
2054 2006-11-28  Jim Meyering  <jim@meyering.net>
2055
2056         * lib/regcomp.c (parse_branch): Rename local, exp->expr, to avoid
2057         warning from "gcc -Wshadow" about shadowing the builtin.
2058
2059 2006-11-27  Bruno Haible  <bruno@clisp.org>
2060
2061         * m4/stdint.m4 (gl_STDINT_BITSIZEOF): Use AC_COMPUTE_INT instead of
2062         _AC_COMPUTE_INT.
2063         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
2064
2065 2006-11-27  Bruno Haible  <bruno@clisp.org>
2066             Paul Eggert  <eggert@cs.ucla.edu>
2067
2068         * lib/regex.h (__restrict_arr): Redo logic of #if, for clarity.
2069
2070 2006-11-26  Bruno Haible  <bruno@clisp.org>
2071
2072         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
2073         noinst_LTLIBRARIES.
2074
2075 2006-11-27  Paul Eggert  <eggert@cs.ucla.edu>
2076             Bruno Haible  <bruno@clisp.org>
2077
2078         * lib/gettext.h (_LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS): Define to 0
2079         if compiling with "gcc -ansi".
2080
2081 2006-11-26  Paul Eggert  <eggert@cs.ucla.edu>
2082
2083         Fix some incompatibilities with gcc -ansi -pedantic.
2084         * lib/regex.h (__restrict_arr): Don't use the [restrict] syntax
2085         if compiling pedantically with GCC, unless it's C99 or later.
2086         Don't trust sys/cdefs.h's definition of __restrict_arr, either, as
2087         it mishandles gcc -ansi -pedantic as well.
2088         * lib/regex_internal.h (re_token_t): Don't use enum bitfields
2089         if gcc -pedantic.
2090         * lib/regexec.c (check_node_accept_bytes): Don't use auto
2091         initializers for struct if -pedantic, unless it's C99 or later.
2092
2093 2006-11-25  Nix  <nix@esperi.org.uk>  (tiny change)
2094
2095         * m4/fcntl_h.m4 (gl_FCNTL_H): Test the atime, not the mtime.
2096         Don't close an fd more than once. Identical atimes indicate
2097         success, not failure.
2098
2099 2006-11-22  Robinson Mittmann <bob@hoplon.com>  (tiny change)
2100
2101         * lib/sincosl.c (kernel_sinl): Fix typo in threshold.
2102
2103 2006-11-23  Jim Meyering  <jim@meyering.net>
2104
2105         * build-aux/announce-gen: New file.  From coreutils.
2106
2107 2006-11-22  Jim Meyering  <jim@meyering.net>
2108
2109         Work around a compile-time error from the HP-UX 11.00 /bin/cc.
2110         * lib/fts.c (enum Fts_stat): Give this previously-anon enum a name.
2111         (fts_read): Use a temporary to narrow the overused st_size member
2112         before using it in a switch statement.  Reported by Matthew Woehlke.
2113
2114         * m4/clock_time.m4 (gl_CLOCK_TIME): Quote AC_SUBST argument.
2115         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Likewise.
2116
2117 2006-11-20  Bruno Haible  <bruno@clisp.org>
2118
2119         * gettext.m4 (AM_GNU_GETTEXT): Revert 2005-07-28 patch: Use
2120         changequote instead of pairs of brackets.
2121         Reported by Andreas Schwab <schwab@suse.de>.
2122
2123 2006-11-21  Jim Meyering  <jim@meyering.net>
2124
2125         * lib/fts.c (fts_safe_changedir): Move a declaration "up",
2126         so as to remain compatible with older compilers.
2127         Patch from Michael Deutschmann.
2128
2129 2006-11-20  Paul Eggert  <eggert@cs.ucla.edu>
2130
2131         * MODULES.html.sh (File system functions): Add openat.
2132
2133         * lib/openat.h (rpl_fstatat): New macro, if
2134         [HAVE_OPENAT && ! LSTAT_FOLLOWS_SLASHED_SYMLINK.
2135         (fstatat): Define to rpl_fstatat under the same conditions,
2136         unless COMPILING_FSTATAT.
2137         * m4/openat.m4 (gl_FUNC_OPENAT): Compile fstatat.c too, if fstatat
2138         seems to have the bug.
2139         * lib/fstatat.c: New file.
2140         * modules/openat (Files): Add it.
2141
2142 2006-11-20  Bruno Haible  <bruno@clisp.org>
2143
2144         * Makefile: New file.
2145
2146 2006-11-20  Jim Meyering  <jim@meyering.net>
2147
2148         The beginnings of syntax-related checks for gnulib.
2149         * lib/Makefile: New file.
2150         * lib/t-idcache: New script.  Ensure that the two halves of
2151         idcache.c stay in sync.
2152
2153         * lib/idcache.c: Adjust comments in user- and group- portions to
2154         be more accurate, and to be consistent with one another.
2155
2156 2006-11-20  Jim Meyering  <jim@meyering.net>
2157
2158         * lib/idcache.c: Restore most of the 2006-11-06 patch, so as to
2159         continue using the flexible array member (thus, this module performs
2160         half as many malloc calls), with the addition that...
2161         (getgroup, getuser): Consistently record a non-match via an empty
2162         "name" string, and map an empty string match to a NULL return value.
2163         * modules/idcache (Depends-on): Re-add flexmember.
2164
2165         * lib/idcache.c (getuser): Remove all uses of the register keyword.
2166         (getuidbyname, getgroup, getgidbyname): Likewise.
2167
2168         Use cleaner syntax: NULL rather than 0.
2169         * lib/idcache.c (getuidbyname, getgidbyname): Return NULL, not 0.
2170
2171 2006-11-20  Paul Eggert  <eggert@cs.ucla.edu>
2172
2173         * lib/idcache.c: Undo most recent patch, dated 2006-11-06.
2174         It mishandled the case where the group was missing.
2175         Problem reported by Greg Schafer.
2176         * modules/idcache: Likewise.
2177
2178 2006-11-18  Jim Meyering  <jim@meyering.net>
2179
2180         * check-module (%exempt_header): Add exception for some
2181         conditionally-included headers.
2182
2183         * modules/i-ring (Depends-on): Add verify.
2184         (License): Change to LGPL.
2185
2186 2006-11-16  Paul Eggert  <eggert@cs.ucla.edu>
2187
2188         * modules/getaddinfo (Depends-on): Remove inttostr; add snprintf.
2189         * lib/getaddrinfo.c: Include snprintf.h rather than intprops.h
2190         and inttostr.h.  Use snprintf rather than uinttostr, so that
2191         LGPLed code doesn't depend on GPLed.
2192
2193 2006-11-17  Paul Eggert  <eggert@cs.ucla.edu>
2194
2195         * modules/inline (License): Change from GPL to LGPL.
2196
2197 2006-11-17  Jim Meyering  <jim@meyering.net>
2198
2199         * modules/d-type (License): Switch to LGPL.
2200
2201 2006-11-15  Bruno Haible  <bruno@clisp.org>
2202
2203         * m4/alloca.m4 (gl_FUNC_ALLOCA): Fix the AC_CACHE_CHECK message.
2204
2205 2006-11-15  Eric Blake  <ebb9@byu.net>
2206
2207         * m4/allocsa.m4 (gl_ALLOCSA): Don't invoke macro already picked up by
2208         the module dependency.
2209
2210 2006-11-15  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
2211             Bruno Haible  <bruno@clisp.org>
2212
2213         * gnulib-tool (func_create_testdir): Add license consistency check.
2214
2215 2006-11-15  Eric Blake  <ebb9@byu.net>
2216
2217         * m4/alloca.m4 (gl_FUNC_ALLOCA): Use AC_CACHE_CHECK to avoid a
2218         random "(cached)" in configure output.
2219
2220 2006-11-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2221
2222         * m4/inttypes.m4 (gl_INTTYPES_H): Use AC_CACHE_CHECK so that the
2223         test for conforming inttypes.h is both announced and cached.
2224
2225         * MODULES.html.sh (seen_modules, seen_files): New variables.
2226         (func_module): Rewrite to use a few less gnulib-tool and sed
2227         invocations.  Avoid a couple of quadratic algorithms for ...
2228         (missed_modules, missed_files): ... these, with ...
2229         (func_append, func_tmpdir): ... these new functions, from
2230         gnulib-tool.  Analogously, install traps for cleanup.
2231
2232         * tests/test-gc.c (main): Remove unused variables.
2233         * tests/test-read-file.c: Include stdlib.h, for 'free'.
2234
2235 2006-11-14  Paul Eggert  <eggert@cs.ucla.edu>
2236
2237         * modules/inttostr (License): Change to LGPL.
2238
2239 2006-11-14  Eric Blake  <ebb9@byu.net>
2240
2241         * modules/tempname (License): Change to LGPL.
2242
2243 2006-11-14  Eric Blake  <ebb9@byu.net>
2244
2245         * doc/functions.texi (Function Portability): *printf functions on
2246         Cygwin now understand all POSIX size specifiers.
2247
2248 2006-11-14  Bruno Haible  <bruno@clisp.org>
2249
2250         * modules/c-ctype (License): Change to LGPL.
2251
2252 2006-11-12  Bruno Haible  <bruno@clisp.org>
2253
2254         * m4/lib-link.m4 (AC_LIB_LINKFLAGS, AC_LIB_HAVE_LINKFLAGS,
2255         AC_LIB_LINKFLAGS_BODY): Also set a LIB${NAME}_PREFIX variable. Needed
2256         for GNOME libraries, for which the include files are installed in
2257         subdirectories of $prefix/include.
2258
2259 2006-11-12  Bruno Haible  <bruno@clisp.org>
2260
2261         * m4/lib-link.m4: Require at least autoconf-2.54.
2262         (AC_LIB_LINKFLAGS_BODY) [autoconf < 2.61]: Turn dots into the library
2263         name to underscores for the --with option.
2264
2265 2006-11-13  Bruno Haible  <bruno@clisp.org>
2266
2267         * gnulib-tool (func_create_testdir): Set gl_source_base correctly in
2268         the tests directory.
2269         Reported by Ralf Wildenhues.
2270
2271 2006-11-13  Bruno Haible  <bruno@clisp.org>
2272
2273         * gnulib-tool (func_emit_initmacro_start): Also override AC_LIBSOURCES.
2274         (func_emit_initmacro_end): Undo the override here.
2275         (func_emit_initmacro_done): Emit a definition for gl_LIBSOURCES.
2276         Works around the famous automake error in coreutils.
2277
2278 2006-11-13  Eric Blake  <ebb9@byu.net>
2279
2280         * lib/gl_anytree_oset.h (gl_tree_search_atleast): Return the
2281         element, not its node.
2282
2283 2006-11-12  Bruno Haible  <bruno@clisp.org>
2284
2285         * gnulib-tool (func_emit_lib_Makefile_am): Replace occurrences of
2286         '$(top_srcdir)/build-aux/', taking into account the real auxdir.
2287
2288 2006-11-12  Bruno Haible  <bruno@clisp.org>
2289
2290         * gnulib-tool: New option --local-symlink.
2291         (func_usage): Document it.
2292         (lsymbolic): New variable.
2293         (func_import, func_create_testdir): If --symlink was not specified,
2294         test whether --local-symlink was specified and the file comes from
2295         the local_gnulib_dir.
2296
2297 2006-11-12  Bruno Haible  <bruno@clisp.org>
2298
2299         * gnulib-tool (func_ln): New function.
2300         (func_ln_if_changed, func_create_testdir): Use it instead of "ln -s".
2301
2302 2006-11-12  Bruno Haible  <bruno@clisp.org>
2303
2304         Finish support for source files in subdirectories.
2305         * gnulib-tool (func_emit_lib_Makefile_am): If some of the source files
2306         are in subdirectories, set uses_subdirs and add 'subdir-objects' to
2307         AUTOMAKE_OPTIONS.
2308         (func_import, func_create_testdir): Invoke AM_PROG_CC_C_O in this case.
2309
2310 2006-11-12  Bruno Haible  <bruno@clisp.org>
2311
2312         * gnulib-tool (func_get_automake_snippet): Synthesize also an
2313         EXTRA_lib_SOURCES augmentation.
2314         (func_emit_lib_Makefile_am): Initialize EXTRA_lib..._SOURCES to empty.
2315
2316 2006-11-12  Jim Meyering  <jim@meyering.net>
2317
2318         Make fts (in FTS_CWDFD mode) more efficient by caching a few open
2319         file descriptors.  This also averts a failure on systems with
2320         native openat support when a traversed directory lacks "x" access.
2321         * lib/fts_.h: Include "i-ring.h"
2322         (struct FTS) [fts_fd_ring]: New member.
2323         * lib/fts.c (RESTORE_INITIAL_CWD): Also call fd_ring_clear.
2324         (FCHDIR): Add parentheses.
2325         (fd_ring_check, fd_ring_print) [!FTS_DEBUG]: Define away.
2326         (cwd_advance_fd): Add a 3rd parameter.  Adjust all callers.
2327         When descending, rather than simply closing the previous
2328         fts_cwd_fd value, push that file descriptor onto the ring.
2329         (same_fd, fd_ring_print, fd_ring_check) [FTS_DEBUG]: New functions.
2330         (fts_open): Initialize the new fd_ring member.
2331         (fts_close): Clear the ring.
2332         (fts_safe_changedir): When possible, use our new fd_ring to skip
2333         the diropen and fstat and dev/ino comparison that would normally
2334         accompany a virtual `chdir ("..")'.
2335
2336         * modules/fts (Depends-on): Add i-ring.
2337         * modules/i-ring: New module.
2338         * lib/i-ring.c, lib/i-ring.h, lib/i-ring-test.c: New files.
2339         * m4/i-ring.m4: New file.
2340
2341 2006-11-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2342
2343         * gnulib-tool (func_create_testdir): Fix replacement of
2344         `build-aux' in configure.ac.  Run autotools in gltests
2345         subdirectory.
2346         (func_create_testdir, func_create_megatestdir, test): There is
2347         no need for '--force' in most autotool invocations in a new
2348         tree.  Actually fail the whole test if any of the tools, or the
2349         configure or make stages fail.
2350
2351         Sync from Automake.
2352         * build-aux/gnupload: Revert last change.  Add pointer to upload
2353         instructions of the GNU Maintenance Instructions.
2354         Suggestion by Karl Berry.
2355
2356 2006-11-10  Jim Meyering  <jim@meyering.net>
2357
2358         * lib/fts.c [FTS_DEBUG]: Don't try to print a pointer via %s.
2359
2360 2006-11-09  Paul Eggert  <eggert@cs.ucla.edu>
2361
2362         * lib/gettext.h (dgettext, dcgettext, ngettext) [! ENABLE_NLS]:
2363         (dngettext, dcngettext, bindtextdomain) [! ENABLE_NLS]:
2364         (bind_textdomain_codeset) [! ENABLE_NLS]:
2365         Evaluate all the arguments.  That way, callers get compatible behavior
2366         if the arguments have side effects.  Also, it avoids some GCC
2367         diagnostics in some cases; Joel E. Denny reported problems when Bison
2368         was configured with --enable-gcc-warnigs.
2369
2370 2006-11-10  Jim Meyering  <jim@meyering.net>
2371
2372         * m4/inline.m4 (gl_INLINE): Check with the compiler, not cpp, so that
2373         relevant options in CFLAGS (like -O, -fno-inline) are taken into
2374         account.
2375
2376 2006-11-10  Jim Meyering  <jim@meyering.net>
2377
2378         * modules/inline: New file/module.
2379         * modules/xalloc (Files): Remove m4/inline.m4.
2380         (Depends-on): Add inline, instead.
2381         * modules/oset: Likewise.
2382         * modules/list: Likewise.
2383
2384 2006-11-09  Paul Eggert  <eggert@cs.ucla.edu>
2385
2386         * lib/stdint_.h (uintmax_t): Fix typo: int64_t -> uint64_t.
2387         Problem reported by Matthew Woehlke.
2388
2389 2006-11-09  Bruno Haible  <bruno@clisp.org>
2390
2391         * lib/tempname.c (gen_tempname): Remove variant that invokes
2392         __gen_tempname.
2393         * m4/tempname.m4 (gl_FUNC_GEN_TEMPNAME): Don't test for
2394         __gen_tempname.
2395
2396 2006-11-08  Bruno Haible  <bruno@clisp.org>
2397
2398         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Set ac_cv_type_long_long_int
2399         to 'yes' instead of 'cross-compiling'.
2400
2401 2006-11-08  Paul Eggert  <eggert@cs.ucla.edu>
2402
2403         * lib/quotearg.h (quotearg_free): New decl.
2404         * lib/quotearg.c (quotearg_free): New function.
2405         (slot0, nslots, slotvec0, slotvec):
2406         Now file-scope so that quotearg_free can get at them.
2407
2408 2006-11-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2409
2410         Sync from Automake.
2411         * build-aux/gnupload: Add missing 'gnu' to example URL.
2412         Report by Karl Berry.
2413
2414 2006-11-08  Bruno Haible  <bruno@clisp.org>
2415
2416         * m4/inline.m4 (gl_INLINE): Also test __NO_INLINE__.
2417         Suggested by Paul Eggert.
2418
2419 2006-11-08  Jim Meyering  <jim@meyering.net>
2420
2421         * lib/fts.c [!_LGPL_PACKAGE]: Don't include fcntl--.h twice.
2422         It's already included if !_LIBC.
2423         (fts_safe_changedir): Add a comment.
2424
2425 2006-11-07  Paul Eggert  <eggert@cs.ucla.edu>
2426
2427         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Detect bug in
2428         Tandem NonStop Kernel (OSS) cc -O circa 2004, reported by
2429         Matthew Woehlke.
2430
2431         * lib/xalloc.h (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): Move
2432         definitions up, to avoid colliding with change below.
2433         (static_inline) [HAVE_INLINE]: New macro.
2434         (xnmalloc, xnrealloc, x2nrealloc, xcharalloc):
2435         Provide extern decls when !HAVE_INLINE.  Do not define unless
2436         static_inline is defined, either by us or by xmalloc.c.  Use
2437         static_inline rather than static inline.
2438         (XCALLOC): Optimize sizeof(T) = 1 case.
2439         * lib/xmalloc.c (static_inline) [!HAVE_INLINE]: New macro.
2440
2441 2006-11-07  Bruno Haible  <bruno@clisp.org>
2442
2443         * lib/xalloc.h (XNMALLOC): Restore optimization of sizeof(T) = 1 case.
2444         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Require gl_INLINE instead of
2445         AC_C_INLINE.
2446         * modules/xalloc (Files): Add m4/inline.m4.
2447
2448 2006-11-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2449
2450         * README: Fix typo.
2451         * doc/gnulib.texi (Miscellaneous Notes): Likewise, rename...
2452         (Miscellanous Notes): ...from this.
2453
2454 2006-11-07  Paul Eggert  <eggert@cs.ucla.edu>
2455
2456         * m4/flexmember.m4 (AC_C_FLEXIBLE_ARRAY_MEMBER):
2457         Mention that offsetof should be used instead of sizeof.
2458         From Bruno Haible.
2459
2460 2006-11-07  Bruno Haible  <bruno@clisp.org>
2461
2462         * lib/w32spawn.h (prepare_spawn): Use XNMALLOC instead of xmalloc.
2463
2464 2006-11-06  Paul Eggert  <eggert@cs.ucla.edu>
2465
2466         Simplify xmalloc expressions. Add overflow check in xmalloc arguments.
2467         * lib/gl_anyavltree_list2.h (create_subtree_with_contents):
2468         (gl_tree_create, gl_tree_add_first, gl_tree_add_last):
2469         (gl_tree_add_before, gl_tree_add_after):
2470         Use XMALLOC instead of xmalloc, and XCALLOC instead of xzalloc.
2471         * lib/gl_anyhash_list2.h (hash_resize): Likewise.
2472         * lib/gl_anylinked_list2.h (gl_linked_create_empty, gl_linked_create):
2473         (gl_linked_add_first, gl_linked_add_last, gl_linked_add_before):
2474         (gl_linked_add_after, gl_linked_add_at): Likewise.
2475         * lib/gl_anyrbtree_list2.h (create_subtree_with_contents):
2476         (gl_tree_create, gl_tree_add_first, gl_tree_add_last):
2477         (gl_tree_add_before, gl_tree_add_after): Likewise.
2478         * lib/gl_anytree_list2.h (gl_tree_create_empty): Likewise.
2479         * lib/gl_anytree_oset.h (gl_tree_create_empty): Likewise.
2480         * lib/gl_anytreehash_list1.h (add_to_bucket): Likewise.
2481
2482 2006-11-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2483
2484         * lib/gl_oset.h: Use C comment style, not C++ comment style.
2485
2486 2006-11-06  Bruno Haible  <bruno@clisp.org>
2487
2488         * m4/inline.m4: New file.
2489         * m4/gl_list.m4 (gl_LIST): Require gl_INLINE.
2490         * modules/list (Files): Add m4/inline.m4.
2491         * modules/oset (Files): Likewise.
2492
2493 2006-11-06  Paul Eggert  <eggert@cs.ucla.edu>
2494
2495         * lib/idcache.c: Include <stddef.h>, for offsetof.
2496         (struct userid.name): Change from char * to a flexible array member.
2497         All uses changed.
2498         * modules/idcache (Depends-on): Add flexmember.
2499
2500         * MODULES.html.sh (Core language properties): New module flexmember.
2501         * modules/flexmember, m4/flexmember.m4: New files.
2502
2503         * lib/xalloc.h (xnmalloc, xnrealloc, x2nrealloc): Now static
2504         inline functions that are identical with the old xnmalloc_inline,
2505         xnrealloc_inline, x2nrealloc_inline of lib/xmalloc.c.  This is so
2506         that we can avoid some unnecessary integer multiplications and
2507         divisions in the common case where the element size is known at
2508         compile time.
2509         (XNMALLOC) [HAVE_INLINE]: Remove special case, which is no longer
2510         needed.
2511         (xnboundedmalloc): Remove.
2512         (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): Use lower-case letters for
2513         arguments, for consistency with rest of this header.
2514         (xcharalloc): Rewrite using XNMALLOC.
2515         * lib/xmalloc.c (xnmalloc_inline, xnmalloc, xnrealloc_inline):
2516         (xnrealloc, x2nrealloc_inline, x2nrealloc): Remove.  The *_inline
2517         versions have been moved to lib/xalloc.h and renamed to be the
2518         non-*_inline versions.
2519         (xmalloc, xrealloc): Implement without reference to the xnmalloc
2520         and xnrealloc functions, since those functions are now inline and
2521         now call us.
2522         (x2realloc): Invoke x2realloc, not x2realloc_inline, to accommodate
2523         renaming described above.
2524         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Remove AC_C_INLINE since
2525         xmalloc.c no longer uses inline directly.  gl_PREREQ_XALLOC now
2526         captures the dependency in AC_C_INLINE.
2527
2528         New module canonicalize-lgpl, proposed by Charles Wilson in
2529         <http://lists.gnu.org/archive/html/bug-gnulib/2006-11/msg00020.html>
2530         with a few small changes afterwards.
2531         * MODULES.html.sh (File system functions): New module
2532         canonicalize-lgpl.
2533         * lib/canonicalize.h: Add comments for canonicalize_filename_mode
2534         and canonicalize_file_name.
2535         * lib/canonicalize-lgpl.c, m4/canonicalize-lgpl.m4:
2536         * modules/canonicalize-lgpl: New files.
2537
2538 2006-11-05  Bruno Haible  <bruno@clisp.org>
2539
2540         * gnulib-tool (func_import, func_create_testdir): Create directories
2541         also for files in subdirectories of lib/.
2542
2543 2006-11-05  Bruno Haible  <bruno@clisp.org>
2544
2545         * lib/gl_array_list.c (gl_array_iterator_next): Make pointer decrement
2546         ANSI C compliant.
2547
2548 2006-11-03  Bruno Haible  <bruno@clisp.org>
2549
2550         Simplify xmalloc expressions. Add overflow check in xmalloc arguments.
2551         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Require AC_C_INLINE.
2552         * lib/xalloc.h (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): New macros.
2553         (xnboundedmalloc): New inline function.
2554         * lib/classpath.c (new_classpath): Use XNMALLOC instead of xmalloc.
2555         * lib/clean-temp.c (create_temp_dir): Use XNMALLOC, XMALLOC instead of
2556         xmalloc.
2557         * lib/concatpath.c (concatenated_pathname): Use XNMALLOC instead of
2558         xmalloc.
2559         * lib/fatal-signal.c (at_fatal_signal): Use XNMALLOC instead of xmalloc.
2560         * lib/findprog.c (find_in_path): Use XNMALLOC instead of xmalloc.
2561         * lib/gl_array_list.c (gl_array_create_empty): Use XMALLOC instead of
2562         xmalloc.
2563         (gl_array_create): Use XNMALLOC, XMALLOC instead of xmalloc.
2564         * lib/gl_array_oset.c (gl_array_create_empty): Use XNMALLOC instead of
2565         xmalloc.
2566         * lib/gl_avltree_oset.c (gl_tree_add_first, gl_tree_add_before,
2567         gl_tree_add_after): Use XMALLOC instead of xmalloc.
2568         * lib/gl_carray_list.c (gl_carray_create_empty): Use XMALLOC instead of
2569         xmalloc.
2570         (gl_carray_create): Use XNMALLOC, XMALLOC instead of xmalloc.
2571         * lib/gl_rbtree_oset.c (gl_tree_add_first, gl_tree_add_before,
2572         gl_tree_add_after): Use XMALLOC instead of xmalloc.
2573         * lib/gl_sublist.c (gl_sublist_create): Use XMALLOC instead of xmalloc.
2574         * lib/pagealign_alloc.c (new_memnode): Use XMALLOC instead of xmalloc.
2575         * lib/sh-quote.c (shell_quote_argv): Use XNMALLOC instead of xmalloc.
2576         * lib/xvasprintf.c (xstrcat): Use XNMALLOC instead of xmalloc.
2577
2578 2006-11-03  Bruno Haible  <bruno@clisp.org>
2579
2580         * lib/c-ctype.h [C++]: Define functions without name mangling.
2581         * lib/fwriteerror.h [C++]: Likewise.
2582         * lib/gcd.h [C++]: Likewise.
2583         * lib/linebreak.h [C++]: Likewise.
2584
2585 2006-11-03  Paul Eggert  <eggert@cs.ucla.edu>
2586
2587         * lib/canonicalize.h: (canonicalize_mode_t, CAN_EXISTING):
2588         (CAN_ALL_BUT_LAST, CAN_MISSING, canonicalize_filename_mode):
2589         Define only if PROVIDE_CANONICALIZE_FILENAME_MODE is defined.
2590         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME):
2591         Check for functions and headers just once.
2592         Check for declaration of canonicalize_file_name.
2593         Define PROVIDE_CANONICALIZE_FILENAME_MODE.
2594
2595 2006-11-02  Charles Wilson  <cygwin@cwilson.fastmail.fm>
2596
2597         * gnulib-tool (func_import): Fix typo in actioncmd.
2598
2599 2006-11-02  Bruno Haible  <bruno@clisp.org>
2600
2601         * gnulib-tool (func_get_automake_snippet): Interpret a backslash-
2602         newline sequence in the Makefile.am snippet as a space, like "make"
2603         does.
2604         Reported by Roger Persson <perrog@gmail.com>.
2605
2606 2006-11-01  Bruno Haible  <bruno@clisp.org>
2607
2608         * m4/strcase.m4 (gl_FUNC_STRNCASECMP): Check whether strncasecmp is
2609         already declared in <string.h>.
2610         * lib/strcase.h (strncasecmp): Don't declare it if yes.
2611
2612 2006-11-01  Bruno Haible  <bruno@clisp.org>
2613
2614         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Don't define strcasecmp here.
2615         * lib/strcase.h: Include <string.h>.
2616         (strcasecmp): Define to rpl_strcasecmp here.
2617
2618 2006-11-01  Bruno Haible  <bruno@clisp.org>
2619
2620         * lib/printf-parse.c (PRINTF_PARSE): Cast malloc/realloc results.
2621
2622 2006-11-01  Eric Blake  <ebb9@byu.net>
2623
2624         * lib/mkstemp-safer.c (mkstemp_safer): Allow C++ compilation.
2625
2626         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Allow C++ configuration.
2627
2628 2006-10-29  Bruno Haible  <bruno@clisp.org>
2629
2630         Make it compile in C++ mode.
2631         * lib/full-write.c (full_rw): Add a cast.
2632
2633 2006-11-01  Bruno Haible  <bruno@clisp.org>
2634
2635         * gnulib-tool (func_get_automake_snippet): Change sed_combine_lines to
2636         be POSIX compliant.
2637         Reported by Roger Persson <perrog@gmail.com>.
2638
2639 2006-11-01  Eric Blake  <ebb9@byu.net>
2640
2641         * lib/getopt_.h: Fix comments.
2642
2643 2006-10-31  Eric Blake  <ebb9@byu.net>
2644
2645         * modules/tmpdir (Depends-on): Add sys_stat.
2646         * modules/mkdtemp (Depends-on): Add tempname, drop unistd.
2647         * lib/mkdtemp.c (gen_tempname): Remove; tempname covers this.
2648         * lib/tmpdir.c (S_ISDIR): Simplify, thanks to sys_stat.
2649         * m4/mkdtemp.m4 (gl_PREREQ_MKDTEMP): Simplify, thanks to
2650         tempname.
2651
2652 2006-10-31  Paul Eggert  <eggert@cs.ucla.edu>
2653
2654         Avoid some C++ diagnostics reported by Bruno Haible.
2655         * lib/quotearg.c (clone_quoting_options): Use xmemdup rather than
2656         xmalloc.
2657         (quotearg_alloc): Use xcharalloc rather than xmalloc.
2658         (struct slotvec): Move to top level.
2659         (quotearg_n_options): Rewrite to avoid xmalloc.
2660         * lib/xalloc.h (xcharalloc): New function.
2661         * (xrealloc, xnrealloc, x2realloc, x2nrealloc, xmemdup):
2662         [defined __cplusplus]: Add function template that provides result
2663         type propagation.  This part of the change is from Bruno Haible.
2664
2665 2006-10-29  Bruno Haible  <bruno@clisp.org>
2666
2667         Make it compile in C++ mode.
2668         * lib/striconv.c (mem_cd_iconv): Cast malloc/realloc result.
2669         * lib/strnlen1.c (strnlen1): Cast memchr result.
2670         * lib/mbchar.h (mb_copy): Rename arguments to 'new_mbc', 'old_mbc'.
2671         * lib/clean-temp.c (string_equals, string_hash): Add casts.
2672         (create_temp_dir): Rename local variable 'template'.
2673         (compile_csharp_using_sscli): Add cast.
2674         * lib/fatal-signal.c (at_fatal_signal): Cast xmalloc result.
2675         * lib/findprog.c (find_in_path): Likewise.
2676         * lib/linebreak.c (mbs_width_linebreaks): Cast malloc result.
2677         * lib/wait-process.c (register_slave_subprocess): Likewise.
2678
2679 2006-10-22  Bruno Haible  <bruno@clisp.org>
2680
2681         * modules/tsearch: New file.
2682         * lib/tsearch.h: New file.
2683         * lib/tsearch.c: New file, from glibc-2.5 with small modifications.
2684         * m4/tsearch.m4: New file.
2685         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add tsearch.
2686
2687 2006-10-29  Eric Blake  <ebb9@byu.net>
2688
2689         * lib/arcfour.c: Assume config.h.
2690         * lib/arctwo.c: Likewise.
2691         * lib/base64.c: Likewise.
2692         * lib/check-version.c: Likewise.
2693         * lib/crc.c: Likewise.
2694         * lib/des.c: Likewise.
2695         * lib/gc-gnulib.c: Likewise.
2696         * lib/gc-libgcrypt.c: Likewise.
2697         * lib/gc-pbkdf2-sha1.c: Likewise.
2698         * lib/getaddrinfo.c: Likewise.
2699         * lib/getdelim.c: Likewise.
2700         * lib/getline.c: Likewise.
2701         * lib/hmac-md5.c: Likewise.
2702         * lib/hmac-sha1.c: Likewise.
2703         * lib/iconvme.c: Likewise.
2704         * lib/md2.c: Likewise.
2705         * lib/md4.c: Likewise.
2706         * lib/memxor.c: Likewise.
2707         * lib/read-file.c: Likewise.
2708         * lib/readline.c: Likewise.
2709         * lib/rijndael-alg-fst.c: Likewise.
2710         * lib/rijndael-api-fst.c: Likewise.
2711         * lib/xgetdomainname.c: Likewise.
2712
2713 2006-10-28  Eric Blake  <ebb9@byu.net>
2714
2715         * lib/xstrndup.c: Assume config.h.
2716
2717 2006-10-27  Paul Eggert  <eggert@cs.ucla.edu>
2718
2719         Move stat.h-substitute stuff from lib/stat-macros.h to lib/stat_.h.
2720         stat-macros.h is now for our own macros, whereas stat_h is for
2721         macros in the <sys/stat.h> name space.
2722         * lib/stat-macros.h: Remove copyright notice, as this file is now tiny.
2723         (STAT_MACROS_H): Remove.
2724         (S_IFMT, S_ISBLK, S_ISCHR, S_ISDIR, S_ISFIFO, S_ISLNK, S_ISNAM):
2725         (S_ISMPB, S_ISMPC, S_ISNWK, S_ISREG, S_ISSOCK, S_ISDOOR, S_ISPORT):
2726         (S_TYPEISMQ, S_TYPEISTMO, S_TYPEISSEM, S_TYPEISSHM, S_ISCTG, S_ISOFD):
2727         (S_ISOFL, S_ISWHT, S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IRGRP):
2728         (S_IROTH, S_IWUSR, S_IWGRP, S_IWOTH, S_IXUSR, S_IXGRP, S_IXOTH):
2729         (S_IRWXU, S_IRWXG, S_IRWXO, S_IXUGO, S_IRWXUGO):
2730         Move these macros to ...
2731         * lib/stat_.h: here.  Don't include stat-macros.h.
2732         * lib/canonicalize.c: Don't include stat-macros.h.
2733         * lib/chown.c: Likewise.
2734         * lib/euidaccess.c: Likewise.
2735         * lib/file-type.c: Likewise.
2736         * lib/filemode.c: Likewise.
2737         * lib/glob.c: Likewise.
2738         * lib/isapipe.c: Likewise.
2739         * lib/lchown.c: Likewise.
2740         * lib/lstat.c: Likewise.
2741         * lib/mkdir-p.c: Likewise.
2742         * lib/rmdir.c: Likewise.
2743         * m4/lchown.m4 (gl_FUNC_LCHOWN): Don't require gl_STAT_MACROS.
2744         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Don't check for io.h
2745         unless mkdir isn't declared, to speed up 'configure'.
2746         Always create sys/stat.h, since it's unlikely any real sys/stat.h
2747         would define all the S_* symbols.
2748         * modules/canonicalize (Depends-on):
2749         Depend on sys_stat, not stat-macros.
2750         * modules/chown: Likewise.
2751         * modules/euidaccess: Likewise.
2752         * modules/filemode: Likewise.
2753         * modules/file-type: Likewise.
2754         * modules/glob: Likewise.
2755         * modules/isapipe: Likewise.
2756         * modules/lchown: Likewise.
2757         * modules/lstat: Likewise.
2758         * modules/mkancesdirs: Likewise.
2759         * modules/rmdir: Likewise.
2760         * modules/mkdir-p (Depends-on): Also depend on sys_stat.
2761         * modules/modechange: Likewise.
2762         * modules/stat-macros (Files): Remove m4/stat-macros.m4.
2763         (configure.ac): Remove gl_STAT_MACROS.
2764         * modules/sys_stat (Depends-on): Remove stat-macros.
2765
2766 2006-10-27  Bruno Haible  <bruno@clisp.org>
2767
2768         * m4/signed.m4: Remove file.
2769         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_ARGS_: Remove bh_C_SIGNED
2770         invocation.
2771         * modules/vasnprintf (Files): Remove m4/signed.m4.
2772
2773 2006-10-27  Bruno Haible  <bruno@clisp.org>
2774
2775         Update to GNU gettext 0.16.
2776         * modules/gettext (Files): Add m4/intl.m4, m4/intldir.m4. Remove
2777         m4/inttypes-h.m4, m4/signed.m4.
2778         * m4/gettext.m4: Update to GNU gettext 0.16.
2779         * m4/intl.m4: New file, from GNU gettext.
2780         * m4/intldir.m4: New file, from GNU gettext.
2781         * config/srclist.txt: Update
2782
2783 2006-10-27  Eric Blake  <ebb9@byu.net>
2784
2785         * MODULES.html.sh: Document tempname.
2786         * modules/mkstemp (Depends-on): Add tempname, and drop transitive
2787         dependencies.
2788         (Files): Move lib/tempname.c...
2789         * modules/tempname: ...to this new module.
2790         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Remove tempname checks.
2791         (gl_PREREQ_TEMPNAME): Move...
2792         * m4/tempname.m4: ...to this new file.
2793         * lib/mkstemp.c (includes) [!_LIBC]: Use tempname.h.
2794         * modules/sys_stat (Depends-on): Add stat-macros.
2795         * lib/stat_.h (includes): Pick up stat macros.
2796         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Replace <sys/stat.h>
2797         if stat macros are broken.
2798         * lib/tempname.c (includes): No need to include "stat-macros.h".
2799         (__gen_tempname) [!_LIBC]: Expose as gen_tempname.
2800         (direxists, __path_search) [!_LIBC]: Don't compile these in
2801         gnulib; the tmpdir module covers that.
2802         * lib/tempname.h: New file.
2803
2804 2006-10-26  Paul Eggert  <eggert@cs.ucla.edu>
2805
2806         * COPYING: Explain how gnulib-tool converts licence headers.
2807         Almost all wording by Eric Blake.
2808
2809 2006-10-25  Paul Eggert  <eggert@cs.ucla.edu>
2810
2811         * lib/mbchar.h (is_basic_table): Make read-only.
2812         * lib/mbchar.c (is_basic_table): Likewise.
2813         Reported by John Darrington.
2814
2815 2006-10-25  Bruno Haible  <bruno@clisp.org>
2816
2817         * lib/progname.h (set_program_name): Undefine before defining.
2818
2819 2006-10-25  Bruno Haible  <bruno@clisp.org>
2820
2821         * lib/gettext.h (_LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS): Define to
2822         false for non-gcc C++ compilers.
2823         Reported by Nelson H. F. Beebe <beebe@math.utah.edu>.
2824
2825 2006-10-24  Bruno Haible  <bruno@clisp.org>
2826
2827         * lib/striconv.c (mem_cd_iconv, str_cd_iconv): Treat all non-GNU
2828         iconv implementations like Irix iconv.
2829
2830 2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
2831
2832         * modules/vararrays: New file.
2833         * m4/vararrays.m4: New file, taken from diffutils.
2834         * MODULES.html.sh: New module vararrays.
2835
2836 2006-10-24  Karl Berry  <karl@gnu.org>
2837
2838         * doc/gnulib-intro.texi: --- instead of --; non-naive naive.
2839         Don't call GNU Unix.
2840
2841 2006-10-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2842
2843         * users.txt: Add Libtool.
2844
2845         Sync from Libtool:
2846
2847         2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
2848
2849         * lib/argz.c: Remove check for HAVE_CONFIG_H, to conform
2850         to gnulib's policy of including config.h unconditionally.
2851
2852 2006-10-24  Bruno Haible  <bruno@clisp.org>
2853
2854         * modules/wcwidth (Files): Add m4/wint_t.m4.
2855         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Require gt_TYPE_WINT_T.
2856         * lib/wcwidth.h (iswprint): Use 'int' if 'wint_t' is not defined.
2857
2858 2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
2859
2860         * lib/getdate.y (yyerror): Make the arguments pointer-to-const,
2861         to pacify GCC with some -W flags enabled.  Problem reported by
2862         Bruno Haible.
2863
2864 2006-10-24  Jim Meyering  <jim@meyering.net>
2865
2866         * MODULES.html.sh: Remove uinttostr.  It's not a module.
2867         Reported by Karl Berry.
2868
2869 2006-10-23  Bruno Haible  <bruno@clisp.org>
2870
2871         * lib/fts.c (fts_build): Move variable declaration, for C89 compliance.
2872
2873 2006-10-24  Bruno Haible  <bruno@clisp.org>
2874
2875         * lib/gl_list.h: Use C comment style, not C++ comment style.
2876
2877 2006-10-23  Eric Blake  <ebb9@byu.net>
2878
2879         * lib/getaddrinfo.c (includes): Add missing include.
2880
2881 2006-10-23  Bruno Haible  <bruno@clisp.org>
2882             Paul Eggert  <eggert@cs.ucla.edu>
2883
2884         Ability to rename obstack_free.
2885         * lib/obstack.h (__obstack_free): New macro. Declare instead of
2886         obstack_free.
2887         (obstack_free): Invoke the __obstack_free macro.
2888         * lib/obstack.c (obstack_free): Use __obstack_free macro.
2889
2890 2006-10-23  Bruno Haible  <bruno@clisp.org>
2891             Paul Eggert  <eggert@cs.ucla.edu>
2892
2893         * lib/argp.h (argp_parse, __argp_parse): Comment out the identifiers
2894         __argc, __argv from the declaration. (They are defined as macros on
2895         mingw.)
2896
2897 2006-10-22  Bruno Haible  <bruno@clisp.org>
2898
2899         * doc/gnulib-intro.texi: New file.
2900         * doc/gnulib.texi: Include it.
2901
2902 2006-10-21  Bruno Haible  <bruno@clisp.org>
2903
2904         * doc/gnulib.texi: Split the chapter "Gnulib" into 3 chapters
2905         "Introduction", "Miscellanous Notes", "Particular Modules".
2906
2907 2006-10-21  Bruno Haible  <bruno@clisp.org>
2908
2909         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
2910         Change mostlyclean-local rule to avoid sh syntax error from bash
2911         versions 2.00..2.05 when $(MOSTLYCLEANDIRS) is empty.
2912
2913 2006-10-23  Jim Meyering  <jim@meyering.net>
2914
2915         * lib/getaddrinfo.c (getnameinfo): Use new lightweight uinttostr,
2916         in place of snprintf.
2917
2918         * modules/inttostr (Files): Add lib/uinttostr.c.
2919         * lib/uinttostr.c (inttostr): New file/function.
2920         * lib/inttostr.h (uinttostr): Declare.
2921         * m4/inttostr.m4: Add AC_LIBOBJ([uinttostr]).
2922         * MODULES.html.sh (Numeric conversion functions <stdlib.h>):
2923         Add uinttostr.
2924         * modules/getaddrinfo (Depends-on): Remove snprintf.  Add inttostr.
2925
2926 2006-10-21  Paul Eggert  <eggert@cs.ucla.edu>
2927
2928         * lib/canonicalize.c (ELOOP): Define if not already defined.
2929         Problem reported by Bruno Haible in
2930         <http://lists.gnu.org/archive/html/bug-gnulib/2006-10/msg00282.html>.
2931
2932 2006-10-21  Paul Eggert  <eggert@cs.ucla.edu>
2933
2934         * lib/stdint_.h [defined _AIX]: Don't include <sys/types.h>.
2935         Problem reported by Perry Smith and Ville Laurikari.
2936
2937         * lib/getndelim2.c (SSIZE_MAX): Use same defn that getdelim.c
2938         uses.
2939
2940 2006-10-19  Bruno Haible  <bruno@clisp.org>
2941
2942         * lib/getndelim2.c (SSIZE_MAX): Provide fallback definition. Needed
2943         for mingw.
2944
2945 2006-10-19  Bruno Haible  <bruno@clisp.org>
2946
2947         * lib/openat-priv.h (EOPNOTSUPP): Provide fallback definition.
2948         Needed for mingw.
2949
2950 2006-10-19  Bruno Haible  <bruno@clisp.org>
2951
2952         * m4/size_max.m4 (gl_SIZE_MAX): Cache the result.
2953
2954 2006-10-19  Bruno Haible  <bruno@clisp.org>
2955
2956         * m4/allocsa.m4 (gl_ALLOCSA): Invoke gl_FUNC_ALLOCA, don't AC_REQUIRE
2957         it.
2958
2959 2006-10-19  Bruno Haible  <bruno@clisp.org>
2960
2961         * m4/alloca.m4 (gl_FUNC_ALLOCA): Cache the result of the AC_EGREP_CPP
2962         invocation.
2963
2964 2006-10-19  Bruno Haible  <bruno@clisp.org>
2965
2966         * gnulib-tool (func_create_testdir): Don't include ftruncate and
2967         mountlist by default.
2968
2969 2006-10-16  Bruno Haible  <bruno@clisp.org>
2970
2971         * lib/c-strstr.c: Include c-strstr.h.
2972
2973 2006-10-18  Charles Wilson  <cygwin@cwilson.fastmail.fm>
2974
2975         * gnulib-tool: Don't clobber $sourcebase when $local_gnulib_dir ends
2976         in a slash.
2977
2978 2006-10-18  Bruno Haible  <bruno@clisp.org>
2979
2980         * lib/lock.h [C++]: Wrap definitions in extern "C".
2981
2982 2006-10-18  Bruno Haible  <bruno@clisp.org>
2983
2984         * gnulib-tool (func_emit_initmacro_end): Remove duplicates from the
2985         gl_LIBOBJS list.
2986
2987 2006-10-18  Bruno Haible  <bruno@clisp.org>
2988
2989         * lib/findprog.c (find_in_path): Avoid "gcc -Wwrite-strings" warning.
2990
2991 2006-10-19  Paul Eggert  <eggert@cs.ucla.edu>
2992
2993         * lib/xstrtol.h: Include gettext.h.
2994         (_STRTOL_ERROR): Wrap English-language formats inside gettext.
2995         Problem reported by Eric Blake.
2996         * modules/xstrtol (Depends-on): Add gettext-h.
2997
2998 2006-10-19  Paul Eggert  <eggert@cs.ucla.edu>  (tiny change)
2999
3000         * lib/strftime.c (advance): New macro.
3001         (add): Use it to avoid adding 0 to a FILE *.  FILE can be an
3002         incomplete type, so you can't add 0 to it.  Problem and patch
3003         reported by Eelco Dolstra for dietlibc.
3004
3005 2006-10-18  Jim Meyering  <jim@meyering.net>
3006
3007         * lib/readutmp.c (desirable_utmp_entry): Use "bool" as the
3008         type for a local, and rename it: s/up/user_proc/.
3009
3010 2006-10-18  Sergey Poznyakoff  <gray@gnu.org.ua>
3011
3012         * lib/readutmp.c (desirable_utmp_entry): Implement new flag:
3013         READ_UTMP_USER_PROCESS.
3014         * lib/readutmp.h (READ_UTMP_USER_PROCESS): New flag
3015
3016 2006-10-17  Paul Eggert  <eggert@cs.ucla.edu>
3017
3018         * lib/localcharset.c: Do not check HAVE_SETLOCALE.
3019         * m4/localcharset.m4 (gl_LOCALCHARSET): Don't check for setlocale.
3020
3021 2006-10-17  Eric Blake  <ebb9@byu.net>
3022
3023         * lib/sigprocmask.c (sigprocmask): Fix typo.
3024
3025         * m4/signalblocking.m4 (gl_PREREQ_SIGPROCMASK): Fix typo.
3026
3027         * modules/clean-temp (Makefile.am): Don't add to make output...
3028         (configure.ac): ...instead define SIGNAL_SAFE_LIST inside
3029         config.h.
3030
3031 2006-10-17  Bruno Haible  <bruno@clisp.org>
3032
3033         * lib/gettext.h (gettext, ngettext, pgettext, npgettext): Define
3034         differently if DEFAULT_TEXT_DOMAIN is set.
3035
3036 2006-10-16  Bruno Haible  <bruno@clisp.org>
3037
3038         * lib/clean-temp.c: Include fwriteerror.h.
3039
3040 2006-10-16  Bruno Haible  <bruno@clisp.org>
3041
3042         * getndelim2.m4 (gl_GETNDELIM2): Remove 2003-10-23 hack.
3043
3044 2006-10-16  Bruno Haible  <bruno@clisp.org>
3045
3046         * m4/signalblocking.m4 (gl_PREREQ_SIGPROCMASK): Also test for sigset_t.
3047         * lib/sigprocmask.h: Include <sys/types.h>.
3048         (sigset_t): Use the system's definition if present.
3049
3050 2006-10-17  Eric Blake  <ebb9@byu.net>
3051
3052         * lib/xvasprintf.c (includes): Assume config.h.
3053         * lib/xasprintf.c (includes): Likewise.
3054
3055 2006-10-16  Paul Eggert  <eggert@cs.ucla.edu>
3056
3057         * lib/fsusage.c (PROPAGATE_ALL_ONES): Don't assume uintmax_t is
3058         at least as wide as intmax_t.
3059
3060 2006-10-16  Alexandre Duret-Lutz  <adl@gnu.org>
3061
3062         (Imported from Automake.)
3063         * build-aux/gnupload: Update to version 1.1 of directive file.
3064
3065 2006-10-16  Eric Blake  <ebb9@byu.net>
3066
3067         * modules/configmake (Makefile.am): Add pkglibexecdir support, to
3068         match Automake 1.10a.
3069
3070 2006-10-14  Bruno Haible  <bruno@clisp.org>
3071
3072         * modules/sigprocmask: New file.
3073         * lib/sigprocmask.h: New file.
3074         * lib/sigprocmask.c: New file.
3075         * m4/signalblocking.m4 (gl_SIGNALBLOCKING): Renamed from
3076         gt_SIGNALBLOCKING. When not defining HAVE_POSIX_SIGNALBLOCKING,
3077         request sigprocmask.o.
3078         (gl_PREREQ_SIGPROCMASK): New macro.
3079         * modules/fatal-signal (Files): Remove m4/signalblocking.m4.
3080         (Depends-on): Add sigprocmask.
3081         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Don't require
3082         gt_SIGNALBLOCKING. Test for 'raise' only once.
3083         * lib/fatal-signal.c: Include sigprocmask.h.
3084         (fatal_signal_set, init_fatal_signal_set, block_fatal_signals,
3085         unblock_fatal_signals): Define always.
3086         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
3087         sigprocmask.
3088
3089 2006-10-14  Paul Eggert  <eggert@cs.ucla.edu>
3090
3091         Sync from Automake.
3092         * build-aux/install-sh (posix_mkdir): Reject FreeBSD 6.1 mkdir -p -m,
3093         which incorrectly sets the mode of an existing destination
3094         directory.  In some cases the unpatched install-sh could do the
3095         equivalent of "chmod 777 /" or "chmod 0 /" on a buggy FreeBSD
3096         system.  We hope this is rare in practice, but it's clearly worth
3097         fixing.  Problem reported by Alex Unleashed in
3098         <http://lists.gnu.org/archive/html/bug-autoconf/2006-10/msg00012.html>.
3099         Also, don't bother to check for -m bugs unless we're using -m;
3100         suggested by Stepan Kasal.
3101
3102 2006-10-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3103
3104         Sync from Automake.
3105         * build-aux/depcomp (gcc3): Put dependency extraction flags before the
3106         `-c' flag, so they appear at the same position as in %FASTDEP%
3107         mode in depend2.am.  Fixes build failure for FreeBSD's c89,
3108         which ignores unknown options only after the first non-option.
3109         Bug report against M4 by Nelson H. F. Beebe.
3110
3111 2006-10-13  Jim Meyering  <jim@meyering.net>
3112
3113         Fix a bug in yesterday's change.
3114         * lib/fts.c (fts_open): When using FTS_XDEV|FTS_NOSTAT,
3115         p->fts_statp->st_dev would be used uninitialized.
3116         Ensures that we always call fts_stat on the very first entry.
3117         Miklos Szeredi reported that find -xdev stopped working.
3118
3119 2006-10-12  Bruno Haible  <bruno@clisp.org>
3120
3121         * gnulib-tool (func_get_automake_snippet): Append an automatically
3122         computed EXTRA_DIST augmentation.
3123         * modules/acl (Makefile.am): Remove EXTRA_DIST augmentation.
3124         * modules/alloca-opt (Makefile.am): Likewise.
3125         * modules/allocsa (Makefile.am): Likewise.
3126         * modules/arcfour (Makefile.am): Likewise.
3127         * modules/arctwo (Makefile.am): Likewise.
3128         * modules/argmatch (Makefile.am): Likewise.
3129         * modules/argz (Makefile.am): Likewise.
3130         * modules/atexit (Makefile.am): Likewise.
3131         * modules/backupfile (Makefile.am): Likewise.
3132         * modules/byteswap (Makefile.am): Likewise.
3133         * modules/c-strtod (Makefile.am): Likewise.
3134         * modules/c-strtold (Makefile.am): Likewise.
3135         * modules/calloc (Makefile.am): Likewise.
3136         * modules/canon-host (Makefile.am): Likewise.
3137         * modules/canonicalize (Makefile.am): Likewise.
3138         * modules/chdir-long (Makefile.am): Likewise.
3139         * modules/chdir-safer (Makefile.am): Likewise.
3140         * modules/check-version (Makefile.am): Likewise.
3141         * modules/chown (Makefile.am): Likewise.
3142         * modules/cloexec (Makefile.am): Likewise.
3143         * modules/close-stream (Makefile.am): Likewise.
3144         * modules/closeout (Makefile.am): Likewise.
3145         * modules/crc (Makefile.am): Likewise.
3146         * modules/csharpexec (Makefile.am): Likewise.
3147         * modules/cycle-check (Makefile.am): Likewise.
3148         * modules/des (Makefile.am): Likewise.
3149         * modules/dev-ino (Makefile.am): Likewise.
3150         * modules/dirfd (Makefile.am): Likewise.
3151         * modules/dirname (Makefile.am): Likewise.
3152         * modules/dup2 (Makefile.am): Likewise.
3153         * modules/eealloc (Makefile.am): Likewise.
3154         * modules/error (Makefile.am): Likewise.
3155         * modules/euidaccess (Makefile.am): Likewise.
3156         * modules/exclude (Makefile.am): Likewise.
3157         * modules/exitfail (Makefile.am): Likewise.
3158         * modules/fcntl-safer (Makefile.am): Likewise.
3159         * modules/fcntl (Makefile.am): Likewise.
3160         * modules/file-type (Makefile.am): Likewise.
3161         * modules/fileblocks (Makefile.am): Likewise.
3162         * modules/filemode (Makefile.am): Likewise.
3163         * modules/filenamecat (Makefile.am): Likewise.
3164         * modules/fnmatch (Makefile.am): Likewise.
3165         * modules/fopen-safer (Makefile.am): Likewise.
3166         * modules/fpending (Makefile.am): Likewise.
3167         * modules/fprintftime (Makefile.am): Likewise.
3168         * modules/free (Makefile.am): Likewise.
3169         * modules/fsusage (Makefile.am): Likewise.
3170         * modules/ftruncate (Makefile.am): Likewise.
3171         * modules/fts (Makefile.am): Likewise.
3172         * modules/gc-arcfour (Makefile.am): Likewise.
3173         * modules/gc-des (Makefile.am): Likewise.
3174         * modules/gc-hmac-md5 (Makefile.am): Likewise.
3175         * modules/gc-hmac-sha1 (Makefile.am): Likewise.
3176         * modules/gc-md4 (Makefile.am): Likewise.
3177         * modules/gc-pbkdf2-sha1 (Makefile.am): Likewise.
3178         * modules/gc-sha1 (Makefile.am): Likewise.
3179         * modules/gc (Makefile.am): Likewise.
3180         * modules/getaddrinfo (Makefile.am): Likewise.
3181         * modules/getcwd (Makefile.am): Likewise.
3182         * modules/getdelim (Makefile.am): Likewise.
3183         * modules/getdomainname (Makefile.am): Likewise.
3184         * modules/getgroups (Makefile.am): Likewise.
3185         * modules/gethostname (Makefile.am): Likewise.
3186         * modules/gethrxtime (Makefile.am): Likewise.
3187         * modules/getline (Makefile.am): Likewise.
3188         * modules/getloadavg (Makefile.am): Likewise.
3189         * modules/getlogin_r (Makefile.am): Likewise.
3190         * modules/getndelim2 (Makefile.am): Likewise.
3191         * modules/getopt (Makefile.am): Likewise.
3192         * modules/getpagesize (Makefile.am): Likewise.
3193         * modules/getpass-gnu (Makefile.am): Likewise.
3194         * modules/getpass (Makefile.am): Likewise.
3195         * modules/getsubopt (Makefile.am): Likewise.
3196         * modules/gettime (Makefile.am): Likewise.
3197         * modules/gettimeofday (Makefile.am): Likewise.
3198         * modules/getugroups (Makefile.am): Likewise.
3199         * modules/getusershell (Makefile.am): Likewise.
3200         * modules/glob (Makefile.am): Likewise.
3201         * modules/group-member (Makefile.am): Likewise.
3202         * modules/hard-locale (Makefile.am): Likewise.
3203         * modules/hash (Makefile.am): Likewise.
3204         * modules/hmac-md5 (Makefile.am): Likewise.
3205         * modules/hmac-sha1 (Makefile.am): Likewise.
3206         * modules/human (Makefile.am): Likewise.
3207         * modules/idcache (Makefile.am): Likewise.
3208         * modules/imaxabs (Makefile.am): Likewise.
3209         * modules/imaxdiv (Makefile.am): Likewise.
3210         * modules/inet_ntop (Makefile.am): Likewise.
3211         * modules/inet_pton (Makefile.am): Likewise.
3212         * modules/intprops (Makefile.am): Likewise.
3213         * modules/inttostr (Makefile.am): Likewise.
3214         * modules/inttypes (Makefile.am): Likewise.
3215         * modules/isapipe (Makefile.am): Likewise.
3216         * modules/javaversion (Makefile.am): Likewise.
3217         * modules/lchmod (Makefile.am): Likewise.
3218         * modules/lchown (Makefile.am): Likewise.
3219         * modules/localcharset (Makefile.am): Likewise.
3220         * modules/long-options (Makefile.am): Likewise.
3221         * modules/lstat (Makefile.am): Likewise.
3222         * modules/malloc (Makefile.am): Likewise.
3223         * modules/mathl (Makefile.am): Likewise.
3224         * modules/mbchar (Makefile.am): Likewise.
3225         * modules/md2 (Makefile.am): Likewise.
3226         * modules/md4 (Makefile.am): Likewise.
3227         * modules/md5 (Makefile.am): Likewise.
3228         * modules/memcasecmp (Makefile.am): Likewise.
3229         * modules/memchr (Makefile.am): Likewise.
3230         * modules/memcmp (Makefile.am): Likewise.
3231         * modules/memcoll (Makefile.am): Likewise.
3232         * modules/memcpy (Makefile.am): Likewise.
3233         * modules/memmem (Makefile.am): Likewise.
3234         * modules/memmove (Makefile.am): Likewise.
3235         * modules/mempcpy (Makefile.am): Likewise.
3236         * modules/memrchr (Makefile.am): Likewise.
3237         * modules/memset (Makefile.am): Likewise.
3238         * modules/memxor (Makefile.am): Likewise.
3239         * modules/mkancesdirs (Makefile.am): Likewise.
3240         * modules/mkdir-p (Makefile.am): Likewise.
3241         * modules/mkdir (Makefile.am): Likewise.
3242         * modules/mkdtemp (Makefile.am): Likewise.
3243         * modules/mkstemp (Makefile.am): Likewise.
3244         * modules/mktime (Makefile.am): Likewise.
3245         * modules/modechange (Makefile.am): Likewise.
3246         * modules/mountlist (Makefile.am): Likewise.
3247         * modules/nanosleep (Makefile.am): Likewise.
3248         * modules/obstack (Makefile.am): Likewise.
3249         * modules/openat (Makefile.am): Likewise.
3250         * modules/pagealign_alloc (Makefile.am): Likewise.
3251         * modules/pathmax (Makefile.am): Likewise.
3252         * modules/physmem (Makefile.am): Likewise.
3253         * modules/poll (Makefile.am): Likewise.
3254         * modules/posixtm (Makefile.am): Likewise.
3255         * modules/posixver (Makefile.am): Likewise.
3256         * modules/putenv (Makefile.am): Likewise.
3257         * modules/quote (Makefile.am): Likewise.
3258         * modules/quotearg (Makefile.am): Likewise.
3259         * modules/raise (Makefile.am): Likewise.
3260         * modules/read-file (Makefile.am): Likewise.
3261         * modules/readline (Makefile.am): Likewise.
3262         * modules/readlink (Makefile.am): Likewise.
3263         * modules/readtokens (Makefile.am): Likewise.
3264         * modules/readutmp (Makefile.am): Likewise.
3265         * modules/realloc (Makefile.am): Likewise.
3266         * modules/regex (Makefile.am): Likewise.
3267         * modules/rename-dest-slash (Makefile.am): Likewise.
3268         * modules/rename (Makefile.am): Likewise.
3269         * modules/rijndael (Makefile.am): Likewise.
3270         * modules/rmdir (Makefile.am): Likewise.
3271         * modules/rpmatch (Makefile.am): Likewise.
3272         * modules/safe-read (Makefile.am): Likewise.
3273         * modules/safe-write (Makefile.am): Likewise.
3274         * modules/same-inode (Makefile.am): Likewise.
3275         * modules/same (Makefile.am): Likewise.
3276         * modules/save-cwd (Makefile.am): Likewise.
3277         * modules/savedir (Makefile.am): Likewise.
3278         * modules/setenv (Makefile.am): Likewise.
3279         * modules/settime (Makefile.am): Likewise.
3280         * modules/sha1 (Makefile.am): Likewise.
3281         * modules/sig2str (Makefile.am): Likewise.
3282         * modules/snprintf (Makefile.am): Likewise.
3283         * modules/stat-macros (Makefile.am): Likewise.
3284         * modules/stat-time (Makefile.am): Likewise.
3285         * modules/stdbool (Makefile.am): Likewise.
3286         * modules/stdint (Makefile.am): Likewise.
3287         * modules/stdlib-safer (Makefile.am): Likewise.
3288         * modules/stpcpy (Makefile.am): Likewise.
3289         * modules/stpncpy (Makefile.am): Likewise.
3290         * modules/strcase (Makefile.am): Likewise.
3291         * modules/strcasestr (Makefile.am): Likewise.
3292         * modules/strchrnul (Makefile.am): Likewise.
3293         * modules/strcspn (Makefile.am): Likewise.
3294         * modules/strdup (Makefile.am): Likewise.
3295         * modules/strerror (Makefile.am): Likewise.
3296         * modules/strftime (Makefile.am): Likewise.
3297         * modules/strndup (Makefile.am): Likewise.
3298         * modules/strnlen (Makefile.am): Likewise.
3299         * modules/strpbrk (Makefile.am): Likewise.
3300         * modules/strsep (Makefile.am): Likewise.
3301         * modules/strstr (Makefile.am): Likewise.
3302         * modules/strtod (Makefile.am): Likewise.
3303         * modules/strtoimax (Makefile.am): Likewise.
3304         * modules/strtok_r (Makefile.am): Likewise.
3305         * modules/strtol (Makefile.am): Likewise.
3306         * modules/strtoll (Makefile.am): Likewise.
3307         * modules/strtoul (Makefile.am): Likewise.
3308         * modules/strtoull (Makefile.am): Likewise.
3309         * modules/strtoumax (Makefile.am): Likewise.
3310         * modules/strverscmp (Makefile.am): Likewise.
3311         * modules/sys_socket (Makefile.am): Likewise.
3312         * modules/sys_stat (Makefile.am): Likewise.
3313         * modules/sysexits (Makefile.am): Likewise.
3314         * modules/time_r (Makefile.am): Likewise.
3315         * modules/timegm (Makefile.am): Likewise.
3316         * modules/timespec (Makefile.am): Likewise.
3317         * modules/tmpfile-safer (Makefile.am): Likewise.
3318         * modules/trim (Makefile.am): Likewise.
3319         * modules/unistd-safer (Makefile.am): Likewise.
3320         * modules/unlinkdir (Makefile.am): Likewise.
3321         * modules/unlocked-io (Makefile.am): Likewise.
3322         * modules/userspec (Makefile.am): Likewise.
3323         * modules/utime (Makefile.am): Likewise.
3324         * modules/utimecmp (Makefile.am): Likewise.
3325         * modules/utimens (Makefile.am): Likewise.
3326         * modules/vasnprintf (Makefile.am): Likewise.
3327         * modules/vasprintf (Makefile.am): Likewise.
3328         * modules/vsnprintf (Makefile.am): Likewise.
3329         * modules/xalloc (Makefile.am): Likewise.
3330         * modules/xgetcwd (Makefile.am): Likewise.
3331         * modules/xnanosleep (Makefile.am): Likewise.
3332         * modules/xreadlink (Makefile.am): Likewise.
3333         * modules/xstrtod (Makefile.am): Likewise.
3334         * modules/xstrtol (Makefile.am): Likewise.
3335         * modules/xstrtold (Makefile.am): Likewise.
3336         * modules/yesno (Makefile.am): Likewise.
3337         * modules/getdate (Makefile.am): Don't add getdate.h to EXTRA_DIST.
3338
3339 2006-10-12  Paul Eggert  <eggert@cs.ucla.edu>
3340
3341         * modules/error (Makefile.am): Distribute files through
3342         EXTRA_DIST, not lib_SOURCES.
3343
3344 2006-10-12  Eric Blake  <ebb9@byu.net>
3345
3346         * modules/error (Makefile.am): Distribute files in /lib.
3347         * modules/obstack (Makefile.am): Likewise.
3348
3349 2006-10-12  Bruno Haible  <bruno@clisp.org>
3350
3351         * modules/acl (Makefile.am): Distribute all files in lib/ through
3352         EXTRA_DIST.
3353         * modules/arcfour (Makefile.am): Likewise.
3354         * modules/arctwo (Makefile.am): Likewise.
3355         * modules/argmatch (Makefile.am): Likewise.
3356         * modules/argz (Makefile.am): Likewise.
3357         * modules/atexit (Makefile.am): Likewise.
3358         * modules/backupfile (Makefile.am): Likewise.
3359         * modules/c-strtod (Makefile.am): Likewise.
3360         * modules/c-strtold (Makefile.am): Likewise.
3361         * modules/calloc (Makefile.am): Likewise.
3362         * modules/canon-host (Makefile.am): Likewise.
3363         * modules/canonicalize (Makefile.am): Likewise.
3364         * modules/chdir-long (Makefile.am): Likewise.
3365         * modules/chdir-safer (Makefile.am): Likewise.
3366         * modules/check-version (Makefile.am): Likewise.
3367         * modules/chown (Makefile.am): Likewise.
3368         * modules/cloexec (Makefile.am): Likewise.
3369         * modules/close-stream (Makefile.am): Likewise.
3370         * modules/closeout (Makefile.am): Likewise.
3371         * modules/crc (Makefile.am): Likewise.
3372         * modules/cycle-check (Makefile.am): Likewise.
3373         * modules/des (Makefile.am): Likewise.
3374         * modules/dirfd (Makefile.am): Likewise.
3375         * modules/dirname (Makefile.am): Likewise.
3376         * modules/dup2 (Makefile.am): Likewise.
3377         * modules/euidaccess (Makefile.am): Likewise.
3378         * modules/exclude (Makefile.am): Likewise.
3379         * modules/exitfail (Makefile.am): Likewise.
3380         * modules/fcntl-safer (Makefile.am): Likewise.
3381         * modules/file-type (Makefile.am): Likewise.
3382         * modules/fileblocks (Makefile.am): Likewise.
3383         * modules/filemode (Makefile.am): Likewise.
3384         * modules/filenamecat (Makefile.am): Likewise.
3385         * modules/fnmatch (Makefile.am): Likewise.
3386         * modules/fopen-safer (Makefile.am): Likewise.
3387         * modules/fpending (Makefile.am): Likewise.
3388         * modules/fprintftime (Makefile.am): Likewise.
3389         * modules/free (Makefile.am): Likewise.
3390         * modules/fsusage (Makefile.am): Likewise.
3391         * modules/ftruncate (Makefile.am): Likewise.
3392         * modules/fts (Makefile.am): Likewise.
3393         * modules/gc (Makefile.am): Likewise.
3394         * modules/gc-pbkdf2-sha1 (Makefile.am): Likewise.
3395         * modules/getaddrinfo (Makefile.am): Likewise.
3396         * modules/getcwd (Makefile.am): Likewise.
3397         * modules/getdelim (Makefile.am): Likewise.
3398         * modules/getdomainname (Makefile.am): Likewise.
3399         * modules/getgroups (Makefile.am): Likewise.
3400         * modules/gethostname (Makefile.am): Likewise.
3401         * modules/gethrxtime (Makefile.am): Likewise.
3402         * modules/getline (Makefile.am): Likewise.
3403         * modules/getloadavg (Makefile.am): Likewise.
3404         * modules/getlogin_r (Makefile.am): Likewise.
3405         * modules/getopt (Makefile.am): Likewise.
3406         * modules/getpass (Makefile.am): Likewise.
3407         * modules/getpass-gnu (Makefile.am): Likewise.
3408         * modules/getsubopt (Makefile.am): Likewise.
3409         * modules/gettime (Makefile.am): Likewise.
3410         * modules/gettimeofday (Makefile.am): Likewise.
3411         * modules/getugroups (Makefile.am): Likewise.
3412         * modules/getusershell (Makefile.am): Likewise.
3413         * modules/glob (Makefile.am): Likewise.
3414         * modules/group-member (Makefile.am): Likewise.
3415         * modules/hard-locale (Makefile.am): Likewise.
3416         * modules/hash (Makefile.am): Likewise.
3417         * modules/hmac-md5 (Makefile.am): Likewise.
3418         * modules/hmac-sha1 (Makefile.am): Likewise.
3419         * modules/human (Makefile.am): Likewise.
3420         * modules/idcache (Makefile.am): Likewise.
3421         * modules/imaxabs (Makefile.am): Likewise.
3422         * modules/imaxdiv (Makefile.am): Likewise.
3423         * modules/inet_ntop (Makefile.am): Likewise.
3424         * modules/inet_pton (Makefile.am): Likewise.
3425         * modules/inttostr (Makefile.am): Likewise.
3426         * modules/isapipe (Makefile.am): Likewise.
3427         * modules/lchown (Makefile.am): Likewise.
3428         * modules/long-options (Makefile.am): Likewise.
3429         * modules/lstat (Makefile.am): Likewise.
3430         * modules/malloc (Makefile.am): Likewise.
3431         * modules/mathl (Makefile.am): Likewise.
3432         * modules/mbchar (Makefile.am): Likewise.
3433         * modules/md2 (Makefile.am): Likewise.
3434         * modules/md4 (Makefile.am): Likewise.
3435         * modules/md5 (Makefile.am): Likewise.
3436         * modules/memcasecmp (Makefile.am): Likewise.
3437         * modules/memchr (Makefile.am): Likewise.
3438         * modules/memcmp (Makefile.am): Likewise.
3439         * modules/memcoll (Makefile.am): Likewise.
3440         * modules/memcpy (Makefile.am): Likewise.
3441         * modules/memmem (Makefile.am): Likewise.
3442         * modules/memmove (Makefile.am): Likewise.
3443         * modules/mempcpy (Makefile.am): Likewise.
3444         * modules/memrchr (Makefile.am): Likewise.
3445         * modules/memset (Makefile.am): Likewise.
3446         * modules/memxor (Makefile.am): Likewise.
3447         * modules/mkancesdirs (Makefile.am): Likewise.
3448         * modules/mkdir (Makefile.am): Likewise.
3449         * modules/mkdir-p (Makefile.am): Likewise.
3450         * modules/mkdtemp (Makefile.am): Likewise.
3451         * modules/mkstemp (Makefile.am): Likewise.
3452         * modules/mktime (Makefile.am): Likewise.
3453         * modules/modechange (Makefile.am): Likewise.
3454         * modules/mountlist (Makefile.am): Likewise.
3455         * modules/nanosleep (Makefile.am): Likewise.
3456         * modules/openat (Makefile.am): Likewise.
3457         * modules/pagealign_alloc (Makefile.am): Likewise.
3458         * modules/physmem (Makefile.am): Likewise.
3459         * modules/poll (Makefile.am): Likewise.
3460         * modules/posixtm (Makefile.am): Likewise.
3461         * modules/posixver (Makefile.am): Likewise.
3462         * modules/putenv (Makefile.am): Likewise.
3463         * modules/quote (Makefile.am): Likewise.
3464         * modules/quotearg (Makefile.am): Likewise.
3465         * modules/raise (Makefile.am): Likewise.
3466         * modules/read-file (Makefile.am): Likewise.
3467         * modules/readline (Makefile.am): Likewise.
3468         * modules/readlink (Makefile.am): Likewise.
3469         * modules/readtokens (Makefile.am): Likewise.
3470         * modules/readutmp (Makefile.am): Likewise.
3471         * modules/realloc (Makefile.am): Likewise.
3472         * modules/regex (Makefile.am): Likewise.
3473         * modules/rename (Makefile.am): Likewise.
3474         * modules/rename-dest-slash (Makefile.am): Likewise.
3475         * modules/rijndael (Makefile.am): Likewise.
3476         * modules/rmdir (Makefile.am): Likewise.
3477         * modules/rpmatch (Makefile.am): Likewise.
3478         * modules/safe-read (Makefile.am): Likewise.
3479         * modules/safe-write (Makefile.am): Likewise.
3480         * modules/same (Makefile.am): Likewise.
3481         * modules/save-cwd (Makefile.am): Likewise.
3482         * modules/savedir (Makefile.am): Likewise.
3483         * modules/setenv (Makefile.am): Likewise.
3484         * modules/settime (Makefile.am): Likewise.
3485         * modules/sha1 (Makefile.am): Likewise.
3486         * modules/sig2str (Makefile.am): Likewise.
3487         * modules/snprintf (Makefile.am): Likewise.
3488         * modules/stdlib-safer (Makefile.am): Likewise.
3489         * modules/stpcpy (Makefile.am): Likewise.
3490         * modules/stpncpy (Makefile.am): Likewise.
3491         * modules/strcase (Makefile.am): Likewise.
3492         * modules/strcasestr (Makefile.am): Likewise.
3493         * modules/strchrnul (Makefile.am): Likewise.
3494         * modules/strcspn (Makefile.am): Likewise.
3495         * modules/strdup (Makefile.am): Likewise.
3496         * modules/strerror (Makefile.am): Likewise.
3497         * modules/strftime (Makefile.am): Likewise.
3498         * modules/strndup (Makefile.am): Likewise.
3499         * modules/strnlen (Makefile.am): Likewise.
3500         * modules/strpbrk (Makefile.am): Likewise.
3501         * modules/strsep (Makefile.am): Likewise.
3502         * modules/strstr (Makefile.am): Likewise.
3503         * modules/strtod (Makefile.am): Likewise.
3504         * modules/strtoimax (Makefile.am): Likewise.
3505         * modules/strtok_r (Makefile.am): Likewise.
3506         * modules/strtol (Makefile.am): Likewise.
3507         * modules/strtoll (Makefile.am): Likewise.
3508         * modules/strtoul (Makefile.am): Likewise.
3509         * modules/strtoull (Makefile.am): Likewise.
3510         * modules/strtoumax (Makefile.am): Likewise.
3511         * modules/strverscmp (Makefile.am): Likewise.
3512         * modules/time_r (Makefile.am): Likewise.
3513         * modules/timegm (Makefile.am): Likewise.
3514         * modules/tmpfile-safer (Makefile.am): Likewise.
3515         * modules/unistd-safer (Makefile.am): Likewise.
3516         * modules/unlinkdir (Makefile.am): Likewise.
3517         * modules/userspec (Makefile.am): Likewise.
3518         * modules/utime (Makefile.am): Likewise.
3519         * modules/utimecmp (Makefile.am): Likewise.
3520         * modules/utimens (Makefile.am): Likewise.
3521         * modules/vasnprintf (Makefile.am): Likewise.
3522         * modules/vasprintf (Makefile.am): Likewise.
3523         * modules/vsnprintf (Makefile.am): Likewise.
3524         * modules/xalloc (Makefile.am): Likewise.
3525         * modules/xgetcwd (Makefile.am): Likewise.
3526         * modules/xnanosleep (Makefile.am): Likewise.
3527         * modules/xreadlink (Makefile.am): Likewise.
3528         * modules/xstrtod (Makefile.am): Likewise.
3529         * modules/xstrtol (Makefile.am): Likewise.
3530         * modules/xstrtold (Makefile.am): Likewise.
3531         * modules/yesno (Makefile.am): Likewise.
3532
3533 2006-10-12  Jim Meyering  <jim@meyering.net>
3534
3535         * m4/getloadavg.m4: Revert the change below.
3536
3537         * m4/getloadavg.m4 (gl_GETLOADAVG): Test for the existence of
3538         lib/getloadavg.c using "ls -L", not "test -f".  The latter would
3539         fail with a symlink, which is what coreutils' ./bootstrap now
3540         creates by default.
3541
3542 2006-10-12  Bruno Haible  <bruno@clisp.org>
3543
3544         * lib/inttypes_.h (_LONG_LONG_FORMAT_PREFIX): Don't define for MSVC or
3545         mingw.
3546         (_PRI64_PREFIX, _PRIu64_PREFIX, _SCN64_PREFIX, _SCNu64_PREFIX): Handle
3547         MSVC and mingw explicitly.
3548
3549 2006-10-11  Simon Josefsson  <jas@extundo.com>
3550             Bruno Haible  <bruno@clisp.org>
3551
3552         Add support for multiple gnulib-tool invocations in the scope of a
3553         single configure.ac file.
3554         * gnulib-tool (func_emit_lib_Makefile_am): In the _LIBADD variable,
3555         use a private [LT]LIBOBJS variant. Define a _DEPENDENCIES variable
3556         with the same contents as the _LIBADD variable.
3557         (func_emit_initmacro_start, func_emit_initmacro_end,
3558         func_emit_initmacro_done): New functions.
3559         (func_import, func_create_testdir): Invoke them. Allow the identifiers
3560         gl_LIBOBJS and gl_LTLIBOBJS.
3561
3562 2006-10-11  Bruno Haible  <bruno@clisp.org>
3563
3564         * gnulib-tool (GETTEXTPATH, AUTOHEADER, AUTOPOINT): New variables.
3565         (func_create_testdir): Don't create po/Makefile.am, don't invoke
3566         autoreconf. Instead, invoke autopoint explicitly but move back the
3567         *.m4 files from gnulib.
3568
3569 2006-10-11  Bruno Haible  <bruno@clisp.org>
3570
3571         * gnulib-tool (func_usage): Make module names after --create-testdir
3572         optional.
3573         (func_create_testdir): If no module was specified, use nearly all
3574         modules.
3575
3576 2006-10-12  Jim Meyering  <jim@meyering.net>
3577
3578         Big performance improvement for fts-based tools that use FTS_NOSTAT.
3579         Avoid spurious inode-mismatch problems on non-POSIX file systems.
3580         Details: http://article.gmane.org/gmane.comp.lib.gnulib.bugs/7416
3581         * lib/fts_.h (FTS_DEFER_STAT): Define new flag.
3582         (FTS_OPTIONMASK): Extend the mask to reflect this addition.
3583         * lib/fts.c (DT_IS_KNOWN, DT_MUST_BE): Define.
3584         (FTS_NO_STAT_REQUIRED, FTS_STAT_REQUIRED): Define.
3585         (fts_set_stat_required): New function.
3586         (fts_open): Defer the calls to fts_stat, if possible or requested.
3587         Move the code that maps a command-line fts_info value FTS_DOT to FTS_D
3588         into fts_stat itself.
3589         (fts_read): Perform any required (deferred) fts_stat call.
3590         (fts_build): Likewise, for the directory we're about to open and read.
3591         In the readdir loop, carefully decide whether each entry will require
3592         an eventual call to fts_stat, using dirent.d_type info if available.
3593         (fts_stat): Move the test for whether to honor FTS_COMFOLLOW on
3594         a command line argument into this function.  Update all callers.
3595         Map a return value of FTS_DOT to FTS_D for a command line argument.
3596         * modules/fts (Depends-on): Add d-type.  Alphabetize.
3597         Thanks to Miklos Szeredi for his tenacity and for the initial
3598         bug report about "find" failing on a FUSE-based file system.
3599
3600         * lib/fts.c (fts_open): Use consistent indentation.
3601
3602 2006-10-12  Paul Eggert  <eggert@cs.ucla.edu>
3603
3604         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS): Renamed from
3605         gl_USE_SYSTEM_EXTENSIONS, to fix a coreutils bootstrap failure
3606         reported by Jim Meyering.  All uses of cache variables renamed
3607         to match Autoconf's.
3608         (gl_USE_SYSTEM_EXTENSIONS): New macro, which simply requires
3609         the other one.
3610
3611         * m4/rename-dest-slash.m4 (gl_FUNC_RENAME_TRAILING_DEST_SLASH):
3612         Fix misspelling in diagnostic.
3613
3614 2006-10-11  Paul Eggert  <eggert@cs.ucla.edu>
3615
3616         * lib/mkdir-p.c (HAVE_FCHMOD): Define to false if not already
3617         defined.  Problem reported by Matthew Woehlke.
3618
3619         * lib/inttypes_.h (_LONG_LONG_FORMAT_PREFIX): New macro.
3620         Add support for Tandem NonStop R series.
3621         (_PRI64_PREFIX, _PRIu64_PREFIX, _SCN64_PREFIX, _SCNu64_PREFIX):
3622         Use new macro.
3623
3624         * lib/rename-dest-slash.c: Include stdbool.h but not string.h.
3625         (has_trailing_slash): Omit size arg; all callers changed.
3626         Omit 'inline', since it doesn't help performance and we'd
3627         need to configure it.
3628         Don't count //, ///, etc. as having a trailing slash.
3629         As a side effect, this removes a C99ism reported by Matthew Woehlke.
3630         (rpl_rename_dest_slash): On failure, use rename's errno rather
3631         than (in some cases) an incorrect or junk errno.
3632         Simplify code by removing need to compute length; this does
3633         cause it to make two passes instead of one over the file name,
3634         but it's worth it.
3635
3636         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Undo previous
3637         change, since Autoconf's version may no longer be appropriate now
3638         that we are using CVS Autoconf's version.  Add support for Tandem.
3639
3640 2006-10-11  Paul Eggert  <eggert@cs.ucla.edu>
3641             Bruno Haible  <bruno@clisp.org>
3642
3643         * lib/allocsa.h (sa_alignment_longlong, sa_alignment_max): Test
3644         HAVE_LONG_LONG_INT instead of HAVE_LONG_LONG.
3645         * m4/allocsa.m4 (gl_ALLOCSA): Invoke AC_TYPE_LONG_LONG_INT instead of
3646         gl_AC_TYPE_LONG_LONG.
3647
3648         * lib/printf-args.h (arg_type, argument): Test HAVE_LONG_LONG_INT
3649         instead of HAVE_LONG_LONG.
3650         * lib/printf-args.c (printf_fetchargs): Likewise.
3651         * lib/printf-parse.c (PRINTF_PARSE): Likewise.
3652         * lib/vasnprintf.c (VASNPRINTF): Likewise.
3653         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_ARGS, gl_PREREQ_PRINTF_PARSE,
3654         gl_PREREQ_VASNPRINTF): Invoke AC_TYPE_LONG_LONG_INT instead of
3655         gl_AC_TYPE_LONG_LONG.
3656
3657 2006-10-11  Bruno Haible  <bruno@clisp.org>
3658
3659         * m4/longlong.m4: Add comments.
3660         * m4/ulonglong.m4: Likewise.
3661
3662 2006-10-10  Bruno Haible  <bruno@clisp.org>
3663
3664         Make it possible to #define stpcpy, strdup to aliases.
3665         * lib/stpcpy.c (stpcpy) [!_LIBC]: Don't undefine.
3666         * lib/strdup.c (strdup) [!_LIBC]: Don't undefine.
3667
3668 2006-10-10  Bruno Haible  <bruno@clisp.org>
3669
3670         Make it possible to #define gcd to an alias.
3671         * lib/gcd.c: Include config.h.
3672
3673 2006-10-10  Bruno Haible  <bruno@clisp.org>
3674
3675         Make it possible to #define c_isascii to an alias.
3676         * lib/c-ctype.h: Don't define the macros if NO_C_CTYPE_MACROS is
3677         defined. Undefine the macros before defining them, to avoid gcc
3678         warnings.
3679         * lib/c-ctype.c: Include config.h. Don't undefine the macros; instead,
3680         define NO_C_CTYPE_MACROS early.
3681
3682 2006-10-10  Bruno Haible  <bruno@clisp.org>
3683
3684         Make it possible to #define set_program_name to an alias.
3685         * lib/progname.c: Don't undefine set_program_name; instead, undefine
3686         ENABLE_RELOCATABLE early.
3687
3688 2006-10-10  Paul Eggert  <eggert@cs.ucla.edu>
3689
3690         Port to Tandem NSK OSS, which has 64-bit signed int but at most
3691         32-bit unsigned int.  Problem reported by Matthew Woehlke in:
3692         http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00062.html
3693         More generally, don't assume that 64-bit signed int is available
3694         if unsigned int is, and vice versa.
3695         * lib/inttypes_.h (_PRIu64_PREFIX, _SCNu64_PREFIX): Depend on
3696         unsigned symbols, not on their signed counterparts.
3697         * lib/stdint_.h (uint64_t, uint_least64_t, uint_fast64_t, uintmax_t):
3698         (UINT64_MAX, UINT_LEAST64_MAX, UINT_FAST64_MAX, UINTMAX_MAX):
3699         (UINT64_C, UINTMAX_C):
3700         Likewise.
3701         * lib/strtoimax.c (strtoll): Depend on signed symbols, not their
3702         unsigned counterparts.
3703         (Have_long_long, Unsigned): New macros.
3704         (Int): Renamed from INT.
3705         (strtoimax): Use the new macros.
3706         * m4/stdint.m4 (gl_STDINT_H): Require AC_TYPE_UNSIGNED_LONG_LONG_INT
3707         and substitute HAVE_UNSIGNED_LONG_LONG_INT.
3708         * modules/inttypes (inttypes.h): Substitute
3709         HAVE_UNSIGNED_LONG_LONG_INT.
3710         * modules/stdint (stdint.h): Likewise.
3711         (Files): Add m4/ulonglong.m4.
3712
3713 2006-10-10  Bruno Haible  <bruno@clisp.org>
3714
3715         Fix a gcc -Wshadow warning.
3716         * lib/gl_anyhash_list2.h (hash_resize): Rename local variable 'index'
3717         to 'bucket'.
3718         * lib/gl_anylinked_list2.h (gl_linked_search_from_to,
3719         gl_linked_indexof_from_to): Likewise.
3720         * lib/gl_linkedhash_list.c (add_to_bucket, remove_from_bucket):
3721         Likewise.
3722         * lib/gl_anytreehash_list1.h (add_to_bucket, remove_from_bucket):
3723         Likewise.
3724         * lib/gl_anytreehash_list2.h (gl_tree_search_from_to): Likewise.
3725         Reported by Eric Blake.
3726
3727 2006-10-09  Paul Eggert  <eggert@cs.ucla.edu>
3728
3729         * lib/filemode.h [HAVE_DECL_STRMODE]: Include unistd.h too,
3730         for NetBSD.  Problem reported by Bruno Haible.
3731
3732 2006-10-09  Jim Meyering  <jim@meyering.net>
3733
3734         * lib/lchown.c: Include <sys/stat.h> before "stat-macros.h".
3735         Patch from Bruno Haible.
3736
3737 2006-10-09  Jim Meyering  <jim@meyering.net>
3738
3739         * lib/fts-cycle.c (leave_dir): When "leaving" a top level directory due
3740         to FTS_SKIP, don't copy the parent's uninitialized dev/ino values.
3741         Trigger with e.g., mkdir d && valgrind ./chmod u+rwx d d
3742
3743 2006-10-08  Paul Eggert  <eggert@cs.ucla.edu>
3744
3745         Don't include <config.h> twice; this doesn't work in some cases,
3746         e.g., when config.h has "#define intmax_t long long int" and
3747         we include <config.h>, <inttypes.h>, <config.h> in that order.
3748         Problem reported by Matthew Woehlke in:
3749         http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00073.html
3750         * lib/fprintftime.c: Don't include config.h or fprintftime.h.
3751         * lib/fts-cycle.c: Don't include config.h.
3752         * lib/strftime.c: Include fprintftime.h if FPRINTFTIME is defined.
3753         * lib/xstrtoimax.c: Remove copyright notice since it's short tnow.
3754         Don't include config.h or xstrtol.h.  Define STRTOL_T_MINIMUM
3755         and STRTOL_T_MAXIMUM unconditionally, since we now assume gnulib
3756         inttypes.h.
3757         * lib/xstrtoumax.c: Likewise.
3758         * lib/xstrtol.c: Include config.h and xstrtol.h after defining
3759         __strtol and the like, so that this module is more like its siblings.
3760         (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM) [! defined STRTOL_T_MINIMUM]:
3761         Remove; no longer needed now that we assume gnulib inttypes.h.
3762
3763 2006-10-08  Bruno Haible  <bruno@clisp.org>
3764
3765         * doc/gnulib-tool.texi: Emphasize the drawbacks of the --symlink
3766         option.
3767
3768 2006-10-07  Jim Meyering  <jim@meyering.net>
3769
3770         * modules/inttypes (inttypes.h): Revert what seems to have been
3771         an inadvertent part of today's change: use "|", not "/" in the
3772         substitution for the "/"-containing string, $(ABSOLUTE_INTTYPES_H).
3773
3774 2006-10-07  Bruno Haible  <bruno@clisp.org>
3775
3776         * modules/sublist: New file.
3777
3778 2006-10-07  Bruno Haible  <bruno@clisp.org>
3779
3780         * modules/alloca-opt (alloca.h): Add a "DO NOT EDIT" comment.
3781         * modules/argz (argz.h): Likewise.
3782         * modules/arpa_inet (arpa/inet.h): Likewise.
3783         * modules/byteswap (byteswap.h): Likewise.
3784         * modules/configmake (configmake.h): Likewise.
3785         * modules/fcntl (fcntl.h): Likewise.
3786         * modules/fnmatch (fnmatch.h): Likewise.
3787         * modules/getopt (getopt.h): Likewise.
3788         * modules/glob (glob.h): Likewise.
3789         * modules/inttypes (inttypes.h): Likewise.
3790         * modules/netinet_in (netinet/in.h): Likewise.
3791         * modules/poll (poll.h): Likewise.
3792         * modules/stdbool (stdbool.h): Likewise.
3793         * modules/stdint (stdint.h): Likewise.
3794         * modules/sys_select (sys/select.h): Likewise.
3795         * modules/sys_socket (sys/socket.h): Likewise.
3796         * modules/sys_stat (sys/stat.h): Likewise.
3797         * modules/sysexits (sysexits.h): Likewise.
3798         * modules/unistd (unistd.h): Likewise.
3799         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
3800         Add a "DO NOT EDIT" comment to the generated file.
3801         (func_import): Likewise for gnulib-comp.m4.
3802
3803 2006-10-07  Bruno Haible  <bruno@clisp.org>
3804
3805         * lib/gl_sublist.h: New file.
3806         * lib/gl_sublist.c: New file.
3807
3808 2006-10-06  Paul Eggert  <eggert@cs.ucla.edu>
3809
3810         * lib/mkancesdirs.c (mkancesdirs): Pass to MAKE_DIR both the full file
3811         name (relative to the original working directory) and the file
3812         name component (relative to the temporary working directory).  All
3813         callers changed.
3814         * lib/mkancesdirs.h (mkancesdirs): Adjust prototype to match.
3815         * lib/mkdir-p.c (make_dir_parents): Likewise.
3816         * lib/mkdir-p.h (make_dir_parents): Likewise.
3817
3818 2006-10-06  Eric Blake  <ebb9@byu.net>
3819
3820         Define several macros for use by the clean-temp module.
3821         * m4/close-stream.m4 (gl_CLOSE_STREAM): Define GNULIB_CLOSE_STREAM.
3822         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Define GNULIB_FCNTL_SAFER.
3823         * m4/stdio-safer.m4 (gl_FOPEN_SAFER): Define GNULIB_FOPEN_SAFER.
3824
3825         * lib/clean-temp.h (close_stream_temp): New declaration.
3826         * lib/clean-temp.c (includes): Pull in headers according to what
3827         other modules are in use.
3828         (close_stream_temp) [GNULIB_CLOSE_STREAM]: New function.
3829
3830 2006-10-06  Bruno Haible  <bruno@clisp.org>
3831
3832         * lib/javacomp.c (write_temp_file): Use fopen_temp, fwriteerror_temp
3833         instead of fopen, fwriteerror.
3834
3835 2006-10-06  Bruno Haible  <bruno@clisp.org>
3836
3837         * lib/clean-temp.h (cleanup_temp_file, cleanup_temp_subdir,
3838         cleanup_temp_dir_contents, cleanup_temp_dir): Change return type to
3839         int.
3840         * lib/clean-temp.c (do_unlink, do_rmdir, cleanup_temp_file,
3841         cleanup_temp_subdir, cleanup_temp_dir_contents, cleanup_temp_dir):
3842         Return an error indicator.
3843         Suggested by Eric Blake.
3844
3845 2006-10-06  Bruno Haible  <bruno@clisp.org>
3846
3847         * lib/clean-temp.c (PATH_MAX): Provide a fallback for GNU Hurd.
3848         Reported by Eric Blake.
3849
3850 2006-10-06  Bruno Haible  <bruno@clisp.org>
3851
3852         * modules/closeout (Description): Mention stderr too.
3853
3854 2006-10-06  Bruno Haible  <bruno@clisp.org>
3855         and Paul Eggert  <eggert@cs.ucla.edu>
3856
3857         * lib/closeout.c (close_stdout): Also close stderr.
3858         * lib/closeout.h: Update comment.
3859
3860 2006-10-05  Paul Eggert  <eggert@cs.ucla.edu>
3861
3862         Fix some Darwin-7.9.0 porting problems reported by Bruno Haible in
3863         <http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00063.html>.
3864         * lib/dirchownmod.c: Include lchown.h.
3865         * lib/lchown.c: Don't include files that lchown.h now includes.
3866         Don't declare chown, since lchown.h now does that.
3867         * lib/lchown.h: Include errno.h, sys/types.h, unistd.h.
3868         (lchown): Define to rpl_chown if lchown is declared but
3869         does not exist.  Declare using a prototype if lchown is not
3870         declared.  Add a copyright notice.
3871         * lib/mkstemp.h: Include <unistd.h>.
3872         * lib/openat.c: Include lchown.h.
3873
3874         * lib/fcntl_.h (O_NOFOLLOW): Don't depend on O_NOFOLLOW_IS_INEFFECTIVE;
3875         we now test for that separately.
3876         * lib/fts.c (fts_safe_changedir): Inspect HAVE_WORKING_O_NOFOLLOW
3877         rather than O_NOFOLLOW, when testing whether it's possible to
3878         avoid a race condition reliably.
3879         * lib/savewd.c (savewd_chdir): Likewise.
3880
3881         Remove macros that are no longer needed now that stdint.h is
3882         reliable.
3883         * lib/fsusage.c (UINTMAX_MAX): Remove.
3884         * lib/human.c (SIZE_MAX, UINTMAX_MAX): Remove.
3885         * lib/utimecmp.c (SIZE_MAX): Remove.
3886
3887         * m4/lchown.m4 (gl_FUNC_LCHOWN): Check whether lchown is declared.
3888
3889         * m4/fcntl_h.m4 (gl_FCNTL_H): Define HAVE_WORKING_O_NOFOLLOW instead
3890         of O_NOFOLLOW_IS_INEFFECTIVE.  Define HAVE_WORKING_O_NOATIME if
3891         O_NOATIME works.
3892
3893 2006-10-05  Bruno Haible  <bruno@clisp.org>
3894
3895         * lib/gl_list.h (gl_sortedlist_search_from_to,
3896         gl_sortedlist_indexof_from_to): New declarations.
3897         (gl_list_implementation): New fields sortedlist_search_from_to,
3898         sortedlist_indexof_from_to.
3899         (gl_sortedlist_search_from_to, gl_sortedlist_indexof_from_to): New
3900         inline functions.
3901         * lib/gl_list.c (gl_sortedlist_search_from_to,
3902         gl_sortedlist_indexof_from_to): New functions.
3903         * lib/gl_array_list.c (gl_array_sortedlist_indexof_from_to): New
3904         function.
3905         (gl_array_sortedlist_indexof, gl_array_sortedlist_search): Use it.
3906         (gl_array_sortedlist_search_from_to): New function.
3907         (gl_array_list_implementation): Update.
3908         * lib/gl_carray_list.c (gl_carray_sortedlist_indexof_from_to): New
3909         function.
3910         (gl_carray_sortedlist_indexof, gl_carray_sortedlist_search): Use it.
3911         (gl_carray_sortedlist_search_from_to): New function.
3912         (gl_carray_list_implementation): Update.
3913         * lib/gl_anylinked_list2.h (gl_linked_sortedlist_search_from_to,
3914         gl_linked_sortedlist_indexof_from_to): New functions.
3915         * lib/gl_linked_list.c (gl_linked_list_implementation): Update.
3916         * lib/gl_linkedhash_list.c (gl_linkedhash_list_implementation): Update.
3917         * lib/gl_anytree_list2.h (gl_tree_sortedlist_search_from_to,
3918         gl_tree_sortedlist_indexof_from_to): New functions.
3919         * lib/gl_avltree_list.c (gl_avltree_list_implementation): Update.
3920         * lib/gl_avltreehash_list.c (gl_avltreehash_list_implementation):
3921         Update.
3922         * lib/gl_rbtree_list.c (gl_rbtree_list_implementation): Update.
3923         * lib/gl_rbtreehash_list.c (gl_avltreehash_list_implementation):
3924         Update.
3925
3926 2006-10-05  Bruno Haible  <bruno@clisp.org>
3927
3928         * lib/gl_list.h (gl_list_search_from, gl_list_search_from_to,
3929         gl_list_indexof_from, gl_list_indexof_from_to): New declarations.
3930         (struct gl_list_implementation): Add fields search_from_to,
3931         indexof_from_to. Remove fields search, indexof.
3932         (gl_list_search): Use the search_from_to method.
3933         (gl_list_search_from, gl_list_search_from_to): New functions.
3934         (gl_list_indexof): Use the indexof_from_to method.
3935         (gl_list_indexof_from, gl_list_indexof_from_to): New functions.
3936         * lib/gl_list.c (gl_list_search): Use the search_from_to method.
3937         (gl_list_search_from, gl_list_search_from_to): New functions.
3938         (gl_list_indexof): Use the indexof_from_to method.
3939         (gl_list_indexof_from, gl_list_indexof_from_to): New functions.
3940         * lib/gl_array_list.c (gl_array_indexof_from_to): Renamed from
3941         gl_array_indexof. Add start_index, end_index arguments.
3942         (gl_array_search_from_to): Renamed from gl_array_search. Add
3943         start_index, end_index arguments.
3944         (gl_array_remove, gl_array_list_implementation): Update.
3945         * lib/gl_carray_list.c (gl_carray_indexof_from_to): Renamed from
3946         gl_carray_indexof. Add start_index, end_index arguments.
3947         (gl_carray_search_from_to): Renamed from gl_carray_search. Add
3948         start_index, end_index arguments.
3949         (gl_carray_remove, gl_carray_list_implementation): Update.
3950         * lib/gl_anylinked_list2.h (gl_linked_search_from_to): Renamed from
3951         gl_linked_search. Add start_index, end_index arguments.
3952         (gl_linked_indexof_from_to): Renamed from gl_linked_indexof. Add
3953         start_index, end_index arguments.
3954         (gl_linked_remove): Update.
3955         * lib/gl_linked_list.c (gl_linked_list_implementation): Update.
3956         * lib/gl_linkedhash_list.c (gl_linkedhash_list_implementation): Update.
3957         * lib/gl_anytree_list1.h (iterstack_item_t): Change type of 'rightp'
3958         field to 'size_t'.
3959         * lib/gl_anytree_list2.h (gl_tree_search_from_to): Renamed from
3960         gl_tree_search. Add start_index, end_index arguments.
3961         (gl_tree_indexof_from_to): Renamed from gl_tree_indexof. Add
3962         start_index, end_index arguments.
3963         (gl_tree_remove): Update.
3964         * lib/gl_avltree_list.c (gl_avltree_list_implementation): Update.
3965         * lib/gl_rbtree_list.c (gl_rbtree_list_implementation): Update.
3966         * lib/gl_anytreehash_list1.h (compare_position_threshold): New
3967         function.
3968         * lib/gl_anytreehash_list2.h (gl_tree_search_from_to): Renamed from
3969         gl_tree_search. Add start_index, end_index arguments.
3970         (gl_tree_indexof_from_to): Renamed from gl_tree_indexof. Add
3971         start_index, end_index arguments.
3972         * lib/gl_avltreehash_list.c (gl_avltreehash_list_implementation):
3973         Update.
3974         * lib/gl_rbtreehash_list.c (gl_rbtreehash_list_implementation): Update.
3975
3976 2006-10-05  Bruno Haible  <bruno@clisp.org>
3977
3978         * modules/fwriteerror (configure.ac): Define GNULIB_FWRITEERROR.
3979
3980         * lib/clean-temp.h (open_temp, fopen_temp, close_temp, fclose_temp,
3981         fwriteerror_temp): New declarations.
3982         * lib/clean-temp.c (uintptr_t): Provide fallback definition.
3983         (descriptors): New variable.
3984         (cleanup): First, close the descriptors.
3985         (register_fd, unregister_fd, open_temp, fopen_temp, close_temp,
3986         fclose_temp, fwriteerror_temp): New functions.
3987
3988 2006-10-04  Jim Meyering  <jim@meyering.net>
3989
3990         * lib/fts.c (fts_open): Tiny comment change.
3991
3992 2006-10-04  Bruno Haible  <bruno@clisp.org>
3993
3994         Make it possible to invoke AC_GNU_SOURCE after gl_LOCK_EARLY.
3995         * m4/lock.m4 (gl_LOCK_EARLY_BODY): New macro, extracted code from
3996         gl_LOCK_BODY.
3997         (gl_LOCK_EARLY): Require gl_LOCK_EARLY_BODY, not gl_LOCK_BODY.
3998         (gl_LOCK_BODY): Remove settings of CPPFLAGS, now done in
3999         gl_LOCK_EARLY_BODY.
4000         (gl_LOCK): Require gl_LOCK_BODY.
4001
4002 2006-10-04  Bruno Haible  <bruno@clisp.org>
4003
4004         * lib/gl_oset.h (gl_setelement_threshold_fn): New type.
4005         (gl_oset_search_atleast): New declaration.
4006         (struct gl_oset_implementation): Add field 'search_atleast'.
4007         (gl_oset_search_atleast): New inline function.
4008         * lib/gl_oset.c (gl_oset_search_atleast): New function.
4009         * lib/gl_array_oset.c (gl_array_search_atleast): New function.
4010         (gl_array_oset_implementation): Update.
4011         * lib/gl_anytree_oset.h (gl_tree_search_atleast): New function.
4012         * lib/gl_avltree_oset.c (gl_avltree_oset_implementation): Update.
4013         * lib/gl_rbtree_oset.c (gl_rbtree_oset_implementation): Update.
4014
4015 2006-10-04  Bruno Haible  <bruno@clisp.org>
4016
4017         * lib/fatal-signal.c (fatal_signals) [WOE32]: Add the SIGBREAK signal.
4018
4019 2006-10-03  Bruno Haible  <bruno@clisp.org>
4020
4021         * lib/gl_rbtreehash_list.c (gl_rbtreehash_list_implementation): Renamed
4022         from gl_avltreehash_list_implementation.
4023
4024 2006-10-03  Bruno Haible  <bruno@clisp.org>
4025
4026         * lib/gl_oset.c (gl_oset_add): Fix return type.
4027
4028 2006-10-02  Paolo Bonzini  <bonzini@gnu.org>  (tiny change)
4029
4030         * lib/quotearg.c (mbstate_t) [!HAVE_MBRTOWC]: #define to int.
4031
4032 2006-10-02  Eric Blake  <ebb9@byu.net>
4033
4034         * modules/strnlen (Depends-on): Add extensions.
4035
4036 2006-10-02  Eric Blake  <ebb9@byu.net>
4037
4038         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Use autoconf's
4039         definition in 2.60+.
4040
4041 2006-10-02  Dmitry V. Levin  <ldv@altlinux.org>
4042
4043         * lib/fts.c (fts_close, fts_build, fts_palloc): Remove redundant
4044         checks.
4045
4046 2006-10-02  Bruno Haible  <bruno@clisp.org>
4047
4048         * gnulib-tool (func_emit_lib_Makefile_am): Don't add no-dependencies
4049         to the AUTOMAKE_OPTIONS.
4050         Reported by Jim Meyering.
4051
4052 2006-09-29  Paul Eggert  <eggert@cs.ucla.edu>
4053
4054         Work around bug in Solaris 10 /proc file system:
4055         /proc/self/fd/NNN/.. isn't the parent directory of
4056         the directory whose file descriptor is NNN.  This needs to
4057         be worked around at run time, not compile time, since a
4058         program might be built on Solaris 8, where things work, and
4059         run on Solaris 10.
4060         * lib/openat-priv.h (BUILD_PROC_NAME): Remove.  All callers changed
4061         to use the following interface instead:
4062         (OPENAT_BUFFER_SIZE): New macro.
4063         (openat_proc_name): New function.
4064         * lib/at-func.c (AT_FUNC_NAME): Adjust to above changes.
4065         * lib/openat.c (openat_permissive, openat_needs_fchdir, fdopendir):
4066         Likewise.
4067         * lib/openat-proc.c: New file.
4068         * modules/openat (Files): Add lib/openat-proc.c.
4069         (Depends-on): Add same-inode, stdbool.
4070         * m4/openat.m4 (gl_FUNC_OPENAT): Add AC_LIBOBJ(openat-proc).
4071
4072 2006-09-29  Bruno Haible  <bruno@clisp.org>
4073
4074         * lib/fwriteerror.h (fwriteerror_no_ebadf): New declaration.
4075         * lib/(do_fwriteerror): Renamed from fwriteerror. Add ignore_ebadf
4076         argument. Set stdout_closed before testing for ferror, not after.
4077         (fwriteerror, fwriteerror_no_ebadf): New functions.
4078
4079 2006-09-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4080
4081         * m4/intmax.m4 (gt_TYPE_INTMAX_T): Avoid unused variables warning.
4082
4083 2006-09-28  Paolo Bonzini  <bonzini@gnu.org>
4084
4085         * lib/poll.c (rpl_poll) [__APPLE__]: Use FIONREAD instead of MSG_PEEK.
4086         * m4/poll.m4: Look for sys/ioctl.h and sys/filio.h.
4087
4088 2006-09-28  Jim Meyering  <jim@meyering.net>
4089
4090         * lib/mkdir-p.c: Include "dirchownmod.h", not "dirchownmod.c".
4091         Include <unistd.h>.
4092
4093 2006-09-28  Bruno Haible  <bruno@clisp.org>
4094
4095         * modules/avltreehash-list (Depends-on): Add stdint, remove size_max.
4096         * modules/linkedhash-list (Depends-on): Likewise.
4097         * modules/rbtreehash-list (Depends-on): Likewise.
4098
4099 2006-09-28  Bruno Haible  <bruno@clisp.org>
4100
4101         * lib/strndup.h: Simplify the redefinition of strndup.
4102         (_GL_CONCAT, _GL_XCONCAT, __STRNDUP_ID): Remove macros.
4103         * m4/strndup.m4 (gl_FUNC_STRNDUP): Don't define __STRNDUP_PREFIX.
4104
4105 2006-09-28  Bruno Haible  <bruno@clisp.org>
4106
4107         * lib/gl_avltreehash_list.c: Include <stdint.h> instead of size_max.h.
4108         * lib/gl_linkedhash_list.c: Likewise.
4109         * lib/gl_rbtreehash_list.c: Likewise.
4110
4111 2006-09-27  Paul Eggert  <eggert@cs.ucla.edu>
4112
4113         * lib/canon-host.c (canon_host_r): Work around bug in Darwin 7.9.0
4114         getaddrinfo.
4115
4116         * lib/__fpending.h: Don't include <stdio_ext.h> unless
4117         HAVE_DECL___FPENDING.  This avoids a bug with lsbcc, where
4118         it causes <stdio_ext.h> to cause a compile-time error.
4119         Problem reported by Nelson H. F. Beebe.
4120         * lib/getpass.c: Likewise, except for HAVE_DECL___FSETLOCKING instead
4121         of HAVE_DECL___PENDING.
4122
4123         * m4/fpending.m4 (gl_FUNC_FPENDING): Check for stdio_ext at most once.
4124         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for __fsetlocking's
4125         declaration.
4126
4127 2006-09-27  Jim Meyering  <jim@meyering.net>
4128
4129         This file could end up with a definition for a function
4130         named __strndup, rather than rpl_strndup on a system with
4131         incomplete weak_alias support.
4132         * lib/strndup.c (strndup): Rename from __strndup.
4133         Remove #defines that used to map __strndup to strndup.
4134         Don't use K&R prototypes.
4135         Remove LIBC-related code, since this file is not sync'd with glibc.
4136         * lib/strndup.h: Revamp, accordingly.
4137         * m4/strndup.m4: Modernize.
4138
4139 2006-09-26  Paul Eggert  <eggert@cs.ucla.edu>
4140
4141         * modules/savewd (Depends-on): Add 'raise'.
4142         * lib/savewd.c: Include <signal.h>, for 'raise'.
4143
4144 2006-09-26  Jim Meyering  <jim@meyering.net>
4145
4146         * m4/acl.m4 (AC_FUNC_ACL): Disable ACL support altogether
4147         when we detect Darwin 8.7.0's acl_get_file bug.
4148         Rearrange to perform the new (below) run-test while $LIBS
4149         contains any acl-related library.  Set USE_ACL at the end.
4150         (gl_ACL_GET_FILE): New function.
4151
4152 2006-09-26  Eric Blake  <ebb9@byu.net>
4153
4154         * lib/verror.c: Include <config.h> unconditionally.
4155
4156 2006-09-25  Paul Eggert  <eggert@cs.ucla.edu>
4157
4158         * modules/clock-time (Maintainer): Add self.
4159         * modules/getlogin_r (Depends-on): Add extensions.
4160
4161 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4162
4163         * modules/clock-time: New module.
4164         * modules/nanosleep (Depends-on): Add clock-time.
4165         * modules/gethrxtime (Depends-on): Likewise.
4166         * modules/gettime (Depends-on): Likewise.
4167         * modules/settime (Depends-on): Likewise.
4168
4169         * modules/fts-lgpl: Depend on openat.
4170         * modules/mkancesdirs: Depend on savewd.
4171         * modules/mkdir-p: Likewise.
4172
4173 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4174
4175         * m4/host-os.m4 (gl_HOST_OS): Require AC_CANONICAL_HOST.
4176
4177         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Rename cache variable from
4178         `gl_have_arbitrary_file_name_length_limit' to
4179         `gl_cv_have_arbitrary_file_name_length_limit', so that caching
4180         actually works between configure runs.
4181
4182 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4183             Bruno Haible  <bruno@clisp.org>
4184
4185         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Include <string.h>.
4186
4187 2006-09-25  Jim Meyering  <jim@meyering.net>
4188
4189         * m4/fcntl_h.m4 (gl_FCNTL_H): Fix typo in test for failed open.
4190         This typo caused coreutils/tests/dd/misc to fail on Darwin 8.7.0.
4191
4192 2006-09-25  Eric Blake  <ebb9@byu.net>
4193
4194         * gnulib-tool (func_import, func_create_testdir): Fix typos in
4195         exec's in 2006-09-18 patch when shuffling fds.
4196
4197 2006-09-25  Bruno Haible  <bruno@clisp.org>
4198
4199         * m4/getloadavg.m4 (gl_GETLOADAVG): Fix directory in error message.
4200         Reported by Jim Meyering.
4201
4202 2006-09-24  Jim Meyering  <jim@meyering.net>
4203
4204         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Don't use '>' to
4205         compare a pointer against a literal "0".  That caused failures with
4206         at least HP-UX's hpcc.
4207
4208 2006-09-22  Simon Josefsson  <jas@extundo.com>
4209
4210         * modules/gc-sha1:
4211         * modules/gc-md4:
4212         * modules/gc-hmac-sha1:
4213         * modules/gc-hmac-md5:
4214         * modules/gc-des:
4215         * modules/gc-arcfour: Distribute more files.
4216
4217 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4218
4219         * lib/gl_anylinked_list2.h [lint] (gl_linked_iterator)
4220         (gl_linked_iterator_from_to): Initialize struct completely.
4221         * lib/gl_anytree_list2.h [lint] (gl_tree_iterator): Likewise.
4222         (gl_tree_iterator_from_to): Likewise
4223         * lib/gl_anytree_oset.h [lint] (gl_tree_iterator): Likewise.
4224         * lib/gl_array_list.c [lint] (gl_array_iterator)
4225         (gl_array_iterator_from_to): Likewise.
4226         * lib/gl_array_oset.c [lint] (gl_array_iterator): Likewise.
4227         * lib/gl_carray_list.c [lint] (gl_carray_iterator)
4228         (gl_carray_iterator_from_to): Likewise.
4229
4230         * lib/gc-gnulib.c [GC_USE_HMAC_SHA1]: include hmac.h for hmac_sha1.
4231         * lib/md4.c (md4_process_block): Remove unused variable.
4232         * lib/rijndael-api-fst.c (rijndaelBlockDecrypt): GCC suggests
4233         parentheses for clarity.
4234
4235 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4236
4237         * modules/bison-i18n (Depends-on): Add gettext.
4238
4239 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4240
4241         * m4/fsusage.m4 (gl_STATFS_TRUNCATES): Avoid unused variable.
4242         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): Likewise.
4243         * m4/jm-winsz1.m4 (gl_HEADER_TIOCGWINSZ_IN_TERMIOS_H): Likewise;
4244         also add missing comma that caused broken test.
4245         * m4/link-follow.m4 (gl_AC_FUNC_LINK_FOLLOWS_SYMLINK): Include
4246         stdlib.h, for `abort'.
4247         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Avoid unused
4248         variables.
4249         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Check for and
4250         include unistd.h if present, for `rmdir'.
4251         * m4/physmem.m4 (gl_SYS__SYSTEM_CONFIGURATION): Avoid unused
4252         variables.
4253         * m4/putenv.m4 (gl_FUNC_PUTENV): Rewrite using AC_RUN_IFELSE, and
4254         in the process include standard headers for prototypes.
4255         * m4/readutmp.m4 (gl_READUTMP): Require AC_GNU_SOURCE, so utmpxname
4256         gets declared on GNU/Linux.
4257         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Check for and include
4258         unistd.h, for `rmdir'.
4259         * m4/time_r.m4 (gl_TIME_R): Avoid unused variables.
4260
4261         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Avoid expression that is
4262         always true.
4263         * m4/strndup.m4 (gl_FUNC_STRNDUP): include stdlib.h, for `free'.
4264
4265         * m4/sockpfaf.m4 (gl_SOCKET_FAMILIES): Avoid gcc -Wall warnings.
4266
4267 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4268
4269         * gnulib-tool (func_version): Create output all at once.  This
4270         may help avoid triggering unnecessary SIGPIPEs, and at any
4271         rate it doesn't hurt.
4272
4273 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4274             Bruno Haible  <bruno@clisp.org>
4275
4276         * m4/lock.m4 (gl_LOCK_BODY): Avoid unused variables warning.
4277         * m4/mbswidth.m4 (gl_MBSWIDTH): Likewise.
4278         * m4/signed.m4 (bh_C_SIGNED): Likewise.
4279
4280         * m4/vasprintf.m4 (gl_PREREQ_VASPRINTF_H): New macro.
4281         (gl_FUNC_VASPRINTF): Invoke it.
4282
4283 2006-09-22  Bruno Haible  <bruno@clisp.org>
4284
4285         * m4/getloadavg.m4 (gl_GETLOADAVG): Expect the directory of
4286         getloadavg.c as first argument.
4287
4288 2006-09-22  Bruno Haible  <bruno@clisp.org>
4289
4290         * gnulib-tool (func_import, func_create_testdir): Set gl_source_base
4291         at the beginning of the gl_INIT macro.
4292         * modules/getloadavg (configure.ac): Pass $gl_source_base to
4293         gl_GETLOADAVG.
4294
4295 2006-09-22  Bruno Haible  <bruno@clisp.org>
4296
4297         * gnulib-tool (func_create_megatestdir): Don't include the config-h
4298         module.
4299         Suggested by Ralf Wildenhues.
4300
4301 2006-09-20  Paul Eggert  <eggert@cs.ucla.edu>
4302
4303         Import this patch from libc:
4304
4305         2006-09-06  Jakub Jelinek  <jakub@redhat.com>
4306
4307         * lib/regex_internal.c (re_string_reconstruct): Handle
4308         offset < pstr->valid_raw_len && pstr->offsets_needed case.
4309         Ensure no bytes read before raw_mbs array.  Pass a saved copy of
4310         pstr->valid_len - 1 rather than pstr->valid_raw_len - 1 to
4311         re_string_context_at.
4312
4313         * m4/regex.m4 (gl_REGEX): Check for locale.h, since the test
4314         now requires it.
4315         (gl_PREREQ_REGEX): Don't check for locale.h any more, since
4316         gl_REGEX now does it for us.
4317         (gl_REGEX): Add test taken from
4318         http://sourceware.org/ml/libc-hacker/2006-09/msg00008.html.
4319
4320         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Require AC_SYS_LARGEFILE.
4321         Check that large offsets work.  Modernize Autoconf usages.
4322         Prefer "yes" to mean a good thing rather than a bad.
4323         Don't put "#define mkstemp" in config.h, as this might interfere
4324         with standard system headers that "#define mkstemp mkstemp64".
4325
4326         * modules/mkstemp (Depends-on): Add extensions, so that
4327         mkstemp is visible on some platforms.
4328         (Makefile.am): Add mkstemp.h to EXTRA_DIST.
4329         (Include): Change to "mkstemp.h" from <stdlib.h>.
4330         (Files): Add mkstemp.h.
4331
4332         * lib/mkstemp.h: New file, since some standard headers
4333         #define mkstemp.
4334         * lib/mkstemp.c: Revamp to put the !_LIBC code together.
4335         Include "mkstemp.h".
4336         Make the _LIBC code resemble glibc original more,
4337         e.g., use K&R style.
4338         * lib/mkstemp-safer.c: Include "mkstemp.h" instead of <stdlib.h>.
4339         (mkstemp): Remove, since mkstemp.h does this for us.
4340         * lib/stdlib--.h: Include mkstemp.h.
4341
4342         Import this patch from libc:
4343
4344         2006-04-07  Ulrich Drepper  <drepper@redhat.com>
4345
4346         * lib/tempname.c (__gen_tempname): Change attempts_min
4347         into a macro.  Use preprocessor to decide how to initialize
4348         attempts [Coverity CID 67].
4349
4350 2006-09-20  Bruno Haible  <bruno@clisp.org>
4351
4352         * lib/mkdtemp.c: Import from libc.
4353         2006-04-07  Ulrich Drepper  <drepper@redhat.com>
4354                 * sysdeps/posix/tempname.c (__gen_tempname): Change
4355                 attempts_min into a macro.  Use preprocessor to decide how to
4356                 initialize attempts [Coverity CID 67].
4357         2001-11-27  Paul Eggert  <eggert@twinsun.com>
4358                 * sysdeps/posix/tempname.c (__gen_tempname): Try at least
4359                 ATTEMPTS_MIN or TMP_MAX times, whichever is greater.
4360
4361 2006-09-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4362
4363         * gnulib-tool (func_exit): New function, to allow to pass the
4364         exit status portably through the trap.  Use everywhere.
4365         (--help, --version): Signal a write error.
4366         (trap): catch SIGPIPE, for write errors.
4367         Exit at the end of the trap, with the correct exit status.
4368
4369 2006-09-19  Karl Berry  <karl@gnu.org>
4370
4371         * doc/gnulib.texi: note about the license texinfo files.
4372
4373 2006-09-19  Eric Blake  <ebb9@byu.net>
4374
4375         * gnulib-tool: Avoid space-tab.
4376
4377 2006-09-18  Paul Eggert  <eggert@cs.ucla.edu>
4378
4379         * lib/getaddrinfo.c (getaddrinfo) [defined HAVE_IPV6]: Fix typo
4380         that prevented coreutils 6.1 from building.  Problem reported
4381         by Petter Reinholdtsen.
4382
4383 2006-09-18  Paul Eggert  <eggert@cs.ucla.edu>
4384
4385         * gnulib-tool (avoidlist): Fix typo that broke options like
4386         --avoid=lock that are used by coreutils bootstrap.
4387
4388 2006-09-18  Mark D. Baushke  <mdb@gnu.org>
4389
4390         * m4/inttypes.m4 (gl_INTTYPES_H): Quote "test" args
4391         more systematically.
4392
4393 2006-09-18  Jim Meyering  <jim@meyering.net>
4394
4395         * lib/savewd.c (savewd_restore): Don't shadow: s/status/child_status/.
4396
4397 2006-09-18  Bruno Haible  <bruno@clisp.org>
4398
4399         * modules/inttypes (Files): Remove m4/inttypes-h.m4.
4400
4401 2006-09-18  Bruno Haible  <bruno@clisp.org>
4402
4403         * m4/inttypes-h.m4 (gl_HEADER_INTTYPES_H): Remove macro.
4404         * m4/inttypes-pri.m4: Require autoconf >= 2.52.
4405         (gt_INTTYPES_PRI): Invoke AC_CHECK_HEADERS on inttypes.h. Test
4406         ac_cv_header_inttypes_h instead of gl_cv_header_inttypes_h.
4407         * m4/gettext.m4: Require autoconf >= 2.52.
4408         (gt_INTL_SUBDIR_CORE): Invoke AC_CHECK_HEADERS on inttypes.h.
4409         * m4/inttypes.m4 (gl_INTTYPES_H): Test ac_cv_header_inttypes_h instead
4410         of gl_cv_header_inttypes_h.
4411
4412 2006-09-18  Bruno Haible  <bruno@clisp.org>
4413
4414         * lib/javaversion.c: Include configmake.h.
4415
4416 2006-09-18  Bruno Haible  <bruno@clisp.org>
4417
4418         * gnulib-tool (func_import, func_create_testdir): Use exec tricks to
4419         avoid that the while loops be executed in a subshell.
4420
4421 2006-09-18  Bruno Haible  <bruno@clisp.org>
4422
4423         * MODULES.html.sh (func_module): Break long lines.
4424         Suggested by Bruce Korb <bkorb@gnu.org>.
4425
4426 2006-09-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4427
4428         Speed up by a factor of 1.12.
4429         * gnulib-tool (nl): New variable.
4430         (func_import): Rewrite include directive extraction to only read each
4431         directive once.
4432
4433 2006-09-17  Bruno Haible  <bruno@clisp.org>
4434
4435         * modules/javaversion (Makefile.am): Remove DEFS setting.
4436         (Depends-on): Add configmake, for PKGDATADIR definition.
4437
4438 2006-09-17  Bruno Haible  <bruno@clisp.org>
4439
4440         * gnulib-tool (func_create_testdir): Rewrite all files at once.
4441
4442 2006-09-17  Bruno Haible  <bruno@clisp.org>
4443
4444         * gnulib-tool (func_append): New function, stolen from libtool.m4.
4445         (func_modules_transitive_closure, func_modules_add_dummy,
4446         func_modules_to_filelist, func_import, func_create_testdir,
4447         func_create_megatestdir, ...): Use it wherever possible.
4448         Suggested by Ralf Wildenhues.
4449
4450 2006-09-16  Karl Berry  <karl@gnu.org>
4451
4452         * doc/fdl.texi (ADDENDUM): switch to @heading from @appendixsubsec,
4453         to avoid sectioning errors.
4454         * doc/lgpl.texi, gpl.texi (Copying): downcase @unnumbered title.
4455         [ifinfo]: blank line after @center-ed titles.
4456         * doc/lgpl.texi (Library Copying): Rename main node to GNU LGPL.
4457         Spell FSF address consistently with others.
4458         (These changes approved by rms.)
4459
4460 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4461
4462         Speed up by a factor of 1.61.
4463         * gnulib-tool (func_modules_transitive_closure): Rewrite to not check
4464         already checked module names again.
4465
4466 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4467
4468         Speed up by a factor of 1.13.
4469         * gnulib-tool (func_import): Rewrite all old_files at once; likewise
4470         for new_files, and the input to func_add_or_update.
4471
4472 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4473
4474         * gnulib-tool (func_all_modules, func_modules_to_filelist, func_import,
4475         func_create_testdir, ...): Change 'sort | uniq' to 'sort -u'.
4476
4477 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
4478
4479         * modules/mkancesdirs (Depends-on): Add fcntl.
4480         * modules/savewd: New file.
4481         * MODULES.html.sh (File system functions): Add savewd.
4482
4483         * modules/configmake (Makefile.am): Add support for the
4484         Automake-supplied PKGLIBDIR, PKGINCLUDEDIR, PKGDATADIR.
4485
4486 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
4487
4488         * m4/savewd.m4: New file.
4489
4490 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
4491
4492         * lib/dirchownmod.c: Don't include fcntl.h; no longer needed.
4493         (dirchownmod): New arg FD.  All callers changed.
4494         Use FD rather than opening the directory ourself, as opening is
4495         now the caller's responsibility.
4496         * lib/dirchownmod.h: Likewise.
4497         * lib/mkancesdirs.c: Include <sys/types.h>, for portability to older
4498         hosts that require <sys/types.h> before <sys/stat.h>.  Include
4499         fcntl.h, savewd.h, and unistd.h, not dirname.h and stat-macros.h.
4500         (test_dir): Remove.
4501         (mkancesdirs): Return length of prefix of FILE that has already
4502         been made, or -2 if there is a child doing the work.  Redo
4503         algorithm so that it is O(N) rather than O(N**2).  Optimize away
4504         ".", and treat ".." specially since it might stray back into
4505         already-created areas.  Use a subprocess if necessary.  New arg
4506         WD; all users changed.  MAKE_DIR function should now return 1
4507         if it creates a directory that is not readable.  Return -2 if
4508         a child process is spun off.
4509         * lib/mkancesdirs.h: Include <stddef.h>, for ptrdiff_t.
4510         Adjust signature to match code.
4511         * lib/mkdir-p.c: Include dirname.h, for IS_ABSOLUTE_FILE_NAME.
4512         (make_dir_parents): Use a subprocess if necessary.  New arg WD;
4513         all users changed.
4514         * lib/savewd.c, lib/savewd.h: New files.
4515
4516 2006-09-15  Jim Meyering  <jim@meyering.net>
4517
4518         * modules/rename-dest-slash: New module.
4519         * MODULES.html.sh (posix_compat): Add it here.
4520
4521         * modules/rename: Reflect vb_FUNC_RENAME -> gl_FUNC_RENAME change.
4522
4523 2006-09-15  Jim Meyering  <jim@meyering.net>
4524
4525         * m4/rename-dest-slash.m4 (gl_FUNC_RENAME_TRAILING_DEST_SLASH): New
4526         file.
4527
4528         * m4/rename.m4 (gl_FUNC_RENAME): Rename from vb_FUNC_RENAME.
4529
4530 2006-09-15  Jim Meyering  <jim@meyering.net>
4531
4532         * lib/rename-dest-slash.c (has_trailing_slash): Use
4533         FILE_SYSTEM_PREFIX_LEN, for non-POSIX systems.
4534         (rpl_rename_dest_slash): Perform the cheaper trailing slash
4535         test before testing whether SRC is a directory.
4536         Suggestions from Bruno Haible.
4537
4538         Avoid a warning about an unused variable.
4539         * lib/regex_internal.c (re_dfa_add_node): Move declaration of "type"
4540         into the #ifdef block where it's used.
4541
4542         * lib/rename-dest-slash.c: New file.
4543
4544 2006-09-14  Bruno Haible  <bruno@clisp.org>
4545
4546         * lib/allocsa.c: Include <config.h> unconditionally.
4547         * lib/asnprintf.c: Likewise.
4548         * lib/asprintf.c: Likewise.
4549         * lib/c-strcasecmp.c: Likewise.
4550         * lib/c-strcasestr.c: Likewise.
4551         * lib/c-strncasecmp.c: Likewise.
4552         * lib/c-strstr.c: Likewise.
4553         * lib/classpath.c: Likewise.
4554         * lib/clean-temp.c: Likewise.
4555         * lib/concatpath.c: Likewise.
4556         * lib/copy-file.c: Likewise.
4557         * lib/csharpcomp.c: Likewise.
4558         * lib/csharpexec.c: Likewise.
4559         * lib/execute.c: Likewise.
4560         * lib/fatal-signal.c: Likewise.
4561         * lib/findprog.c: Likewise.
4562         * lib/fwriteerror.c: Likewise.
4563         * lib/gl_array_list.c: Likewise.
4564         * lib/gl_array_oset.c: Likewise.
4565         * lib/gl_avltree_list.c: Likewise.
4566         * lib/gl_avltree_oset.c: Likewise.
4567         * lib/gl_avltreehash_list.c: Likewise.
4568         * lib/gl_carray_list.c: Likewise.
4569         * lib/gl_linked_list.c: Likewise.
4570         * lib/gl_linkedhash_list.c: Likewise.
4571         * lib/gl_list.c: Likewise.
4572         * lib/gl_oset.c: Likewise.
4573         * lib/gl_rbtree_list.c: Likewise.
4574         * lib/gl_rbtree_oset.c: Likewise.
4575         * lib/gl_rbtreehash_list.c: Likewise.
4576         * lib/imaxabs.c: Likewise.
4577         * lib/imaxdiv.c: Likewise.
4578         * lib/javacomp.c: Likewise.
4579         * lib/javaexec.c: Likewise.
4580         * lib/javaversion.c: Likewise.
4581         * lib/linebreak.c: Likewise.
4582         * lib/localcharset.c: Likewise.
4583         * lib/lock.c: Likewise.
4584         * lib/mbchar.c: Likewise.
4585         * lib/mbswidth.c: Likewise.
4586         * lib/mkdtemp.c: Likewise.
4587         * lib/pipe.c: Likewise.
4588         * lib/printf-args.c: Likewise.
4589         * lib/printf-parse.c: Likewise.
4590         * lib/progname.c: Likewise.
4591         * lib/progreloc.c: Likewise.
4592         * lib/readlink.c: Likewise.
4593         * lib/sh-quote.c: Likewise.
4594         * lib/stpcpy.c: Likewise.
4595         * lib/stpncpy.c: Likewise.
4596         * lib/strcasecmp.c: Likewise.
4597         * lib/strcasestr.c: Likewise.
4598         * lib/strcspn.c: Likewise.
4599         * lib/striconv.c: Likewise.
4600         * lib/strncasecmp.c: Likewise.
4601         * lib/strnlen1.c: Likewise.
4602         * lib/strstr.c: Likewise.
4603         * lib/strtok_r.c: Likewise.
4604         * lib/tls.c: Likewise.
4605         * lib/tmpdir.c: Likewise.
4606         * lib/unicodeio.c: Likewise.
4607         * lib/unsetenv.c: Likewise.
4608         * lib/vasnprintf.c: Likewise.
4609         * lib/vasprintf.c: Likewise.
4610         * lib/wait-process.c: Likewise.
4611         * lib/xallocsa.c: Likewise.
4612         * lib/xsetenv.c: Likewise.
4613         * lib/xstriconv.c: Likewise.
4614
4615 2006-09-13  Simon Josefsson  <jas@extundo.com>
4616
4617         * m4/getdate.m4: Don't AC_LIBOBJ([getdate]), automake takes care of
4618         that internally, suggested by Ralf Wildenhues
4619         <Ralf.Wildenhues@gmx.de>.
4620
4621 2006-09-13  Simon Josefsson  <jas@extundo.com>
4622
4623         * gnulib-tool (func_emit_lib_Makefile_am): Use $(LIBOBJS), not
4624         @LIBOBJS@.
4625         Suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
4626
4627 2006-09-13  Paul Eggert  <eggert@cs.ucla.edu>
4628
4629         * lib/_fpending.c: Include <config.h> unconditionally, since we no
4630         longer worry about uses that don't define HAVE_CONFIG_H.
4631         * lib/acl.c, lib/alloca.c, lib/argmatch.c, lib/atexit.c:
4632         * lib/backupfile.c, lib/basename.c, lib/c-stack.c, lib/c-strtod.c:
4633         * lib/calloc.c,lib/ canon-host.c, lib/canonicalize.c, lib/chdir-long.c:
4634         * lib/chdir-safer.c, lib/chown.c, lib/cloexec.c, lib/close-stream.c:
4635         * lib/closeout.c, lib/creat-safer.c, lib/cycle-check.c, lib/diacrit.c:
4636         * lib/dirchownmod.c, lib/dirfd.c, lib/dirname.c, lib/dup-safer.c:
4637         * lib/dup2.c, lib/error.c, lib/euidaccess.c, lib/exclude.c:
4638         * lib/exitfail.c, lib/fchmodat.c, lib/fchown-stub.c, lib/fd-safer.c:
4639         * lib/file-type.c, lib/fileblocks.c, lib/filemode.c, lib/filenamecat.c:
4640         * lib/fnmatch.c, lib/fopen-safer.c, lib/fprintftime.c, lib/free.c:
4641         * lib/fsusage.c, lib/ftruncate.c, lib/fts-cycle.c, lib/fts.c:
4642         * lib/full-write.c, lib/gai_strerror.c, lib/getcwd.c, lib/getdate.y:
4643         * lib/getdomainname.c, lib/getgroups.c, lib/gethostname.c:
4644         * lib/gethrxtime.c, lib/getloadavg.c, lib/getlogin_r.c:
4645         * lib/getndelim2.c, lib/getnline.c, lib/getopt.c, lib/getopt1.c:
4646         * lib/getpass.c, lib/gettime.c, lib/gettimeofday.c, lib/getugroups.c:
4647         * lib/getusershell.c, lib/glob.c, lib/group-member.c:
4648         * lib/hard-locale.c, lib/hash-pjw.c, lib/hash.c, lib/human.c:
4649         * lib/idcache.c, lib/inet_ntop.c, lib/inet_pton.c, lib/inttostr.c:
4650         * lib/isdir.c, lib/lchown.c, lib/linebuffer.c, lib/long-options.c:
4651         * lib/lstat.c, lib/malloc.c, lib/md5.c, lib/memcasecmp.c, lib/memchr.c:
4652         * lib/memcmp.c, lib/memcoll.c, lib/memcpy.c, lib/memmove.c:
4653         * lib/memrchr.c, lib/mkancesdirs.c, lib/mkdir-p.c, lib/mkdir.c:
4654         * lib/mkdirat.c, lib/mkstemp-safer.c, lib/mkstemp.c, lib/modechange.c:
4655         * lib/mountlist.c, lib/nanosleep.c, lib/obstack.c, lib/open-safer.c:
4656         * lib/openat-die.c, lib/openat.c, lib/pagealign_alloc.c, lib/physmem.c:
4657         * lib/pipe-safer.c, lib/posixtm.c, lib/posixver.c, lib/putenv.c:
4658         * lib/quote.c, lib/quotearg.c, lib/raise.c, lib/readtokens.c:
4659         * lib/readtokens0.c, lib/readutmp.c, lib/realloc.c, lib/regex.c:
4660         * lib/rename.c, lib/rmdir.c, lib/rpmatch.c, lib/safe-read.c:
4661         * lib/same.c, lib/save-cwd.c, lib/savedir.c, lib/setenv.c:
4662         * lib/settime.c, lib/sha1.c, lib/sig2str.c, lib/snprintf.c:
4663         * lib/strdup.c, lib/strerror.c, lib/strftime.c, lib/stripslash.c:
4664         * lib/strndup.c, lib/strnlen.c, lib/strpbrk.c, lib/strtod.c:
4665         * lib/strtoimax.c, lib/strtol.c, lib/strverscmp.c, lib/tempname.c:
4666         * lib/time_r.c, lib/timegm.c, lib/tmpfile-safer.c, lib/unlinkdir.c:
4667         * lib/userspec.c, lib/utime.c, lib/utimecmp.c, lib/utimens.c:
4668         * lib/version-etc-fsf.c, lib/version-etc.c, lib/xalloc-die.c:
4669         * lib/xgetcwd.c, lib/xgethostname.c, lib/xmalloc.c, lib/xmemcoll.c:
4670         * lib/xnanosleep.c, lib/xreadlink.c, lib/xstrtod.c, lib/xstrtoimax.c:
4671         * lib/xstrtol.c, lib/xstrtoumax.c, lib/yesno.c:
4672         Likewise.
4673
4674 2006-09-13  Eric Blake  <ebb9@byu.net>
4675
4676         * lib/getopt.c: Fix typo in last commit.
4677
4678 2006-09-12  Sergey Poznyakoff  <gray@gnu.org.ua>
4679
4680         * lib/argp-help.c (argp_doc): Make sure NULL is not passed to
4681         dgettext.
4682
4683 2006-09-12  Jim Meyering  <jim@meyering.net>
4684
4685         * lib/nanosleep.c: Include <sys/types.h> before sys/select.h, to avoid
4686         compilation failure (due to use of pid_t in latter) on NetBSD 1.6.
4687         Reported by Nelson H. F. Beebe.
4688
4689 2006-09-10  Sergey Poznyakoff  <gray@gnu.org.ua>
4690
4691         * lib/argp-parse.c (__argp_parse) [!_LIBC]: Make sure
4692         program_invocation_name and program_invocation_short_name are
4693         initialized.
4694         * lib/argp-namefrob.h: Move declarations of program_invocation_name
4695         and program_invocation_short_name to argp.h, so they are visible
4696         to user programs.
4697         * lib/argp.h: Likewise
4698
4699 2006-09-10  Bruno Haible  <bruno@clisp.org>
4700
4701         * modules/mkdtemp (Files): Remove m4/ulonglong.m4, m4/stdint_h.m4,
4702         m4/inttypes_h.m4, m4/uintmax_t.m4.
4703
4704 2006-09-10  Bruno Haible  <bruno@clisp.org>
4705
4706         * m4/mkdtemp.m4 (gl_PREREQ_MKDTEMP): Don't require
4707         gl_AC_TYPE_UINTMAX_T.
4708
4709 2006-09-10  Bruno Haible  <bruno@clisp.org>
4710
4711         * lib/mkdtemp.c: Include <stdint.h> always. Don't include <inttypes.h>.
4712
4713 2006-09-09  Sergey Poznyakoff  <gray@gnu.org.ua>
4714
4715         * lib/argp.h (struct argp): Document the N_("..") "\v" N_("..")
4716         convention.  Text proposed by Bruno Haible.
4717         (struct argp_option): Document the use of N_() wrappers.
4718
4719         * lib/argp-help.c (argp_doc): Split the untranslated doc string on
4720         '\v', and translate the two parts separately, instead of feeding
4721         the whole string to gettext.  This allows to exclude
4722         '\v' from the strings visible to the translator by writing doc
4723         strings as N_("..") "\v" N_("..").
4724
4725 2006-09-09  Paul Eggert  <eggert@cs.ucla.edu>
4726
4727         * config/srclist.txt: Undo latest change; the bug was fixed.
4728
4729 2006-09-09  Bruno Haible  <bruno@clisp.org>
4730
4731         * gnulib-tool (func_emit_lib_Makefile_am): Eliminate lib_LDFLAGS
4732         assignments if building a library without libtool.
4733         (func_emit_tests_Makefile_am): Likewise. Handle lib_* variables as
4734         in func_emit_lib_Makefile_am.
4735         (func_import): When building a static library libfoo.a, arrange to
4736         define variables LIBFOO_LIBDEPS and LIBFOO_LTLIBDEPS.
4737         (func_create_testdir): Likewise.
4738         * modules/gc (configure.ac, Makefile.am): If building statically,
4739         augment gl_libdeps and gl_ltlibdeps instead of lib_LDFLAGS.
4740         * modules/iconvme (configure.ac, Makefile.am): Likewise.
4741         * modules/striconv (configure.ac, Makefile.am): Likewise.
4742         Based on a suggestion by Ralf Wildenhues.
4743
4744 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
4745
4746         * m4/mktime.m4 (AC_FUNC_MKTIME): Sync from Autoconf.
4747         Check for unistd.h too, since Autoconf doesn't assume POSIX.
4748         Also:
4749
4750         2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
4751         Add year_2050_test to catch glibc bug 2821
4752         <http://sourceware.org/bugzilla/show_bug.cgi?id=2821>.
4753
4754         2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
4755         Prefer #ifdef to #if.
4756
4757         2006-04-02  Paul Eggert  <eggert@cs.ucla.edu>
4758         Return from 'main' instead of calling 'exit'.
4759
4760 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
4761
4762         * lib/mktime.c (guess_time_tm): Fix bug where mktime
4763         returned the maximum time_t value rather than (time_t) -1.
4764         Problem originally reported by William Bardwell
4765         <http://sourceware.org/bugzilla/show_bug.cgi?id=2821>.
4766
4767         * lib/isapipe.h (HAVE_FIFO_PIPES) [!defined HAVE_FIFO_PIPES]:
4768         Moved to here ...
4769         * lib/isapipe.c (HAVE_FIFO_PIPES) [!defined HAVE_FIFO_PIPES]:
4770         ... from here.
4771
4772 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
4773
4774         * config/srclist.txt: Temporarily comment out mktime.c until glibc bug
4775         2821 is fixed.
4776
4777 2006-09-08  Jim Meyering  <jim@meyering.net>
4778
4779         Don't make generated files read-only.  That would bother too many
4780         people.  However, do retain the ability to work when targets are
4781         read-only: remove the destination and temporary files before writing
4782         them (when generated via sed or echo), or by using the -f option for
4783         both cp and mv commands.  Suggestion to use -f from Paul Eggert.
4784         * modules/alloca-opt, modules/argz, modules/arpa_inet:
4785         * modules/byteswap, modules/configmake, modules/fcntl:
4786         * modules/fnmatch, modules/getopt, modules/glob, modules/inttypes:
4787         * modules/localcharset, modules/netinet_in, modules/poll:
4788         * modules/stdbool, modules/stdint, modules/sys_select:
4789         * modules/sys_socket, modules/sys_stat, modules/sysexits:
4790
4791 2006-09-08  Jim Meyering  <jim@meyering.net>
4792
4793         Avoid new build failure on FreeBSD 6.0.
4794         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Include
4795         <sys/param.h> when testing whether getmntinfo uses statvfs.  Patch by
4796         Pavel Tsekov, in <http://savannah.gnu.org/bugs/?17643>.
4797
4798 2006-09-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4799
4800         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Don't use plain echo.
4801
4802 2006-09-07  Jim Meyering  <jim@meyering.net>
4803
4804         Fix global typo in last change: use chmod u-w, not chmod u-x.
4805         Spotted by Paul Eggert and Bruce Korb.
4806         * modules/alloca-opt, modules/argz, modules/arpa_inet:
4807         * modules/byteswap, modules/configmake, modules/fcntl:
4808         * modules/fnmatch, modules/getopt, modules/glob, modules/inttypes:
4809         * modules/localcharset, modules/netinet_in, modules/poll:
4810         * modules/stdbool, modules/stdint, modules/sys_select:
4811         * modules/sys_socket, modules/sys_stat, modules/sysexits:
4812
4813 2006-09-06  Jim Meyering  <jim@meyering.net>
4814
4815         Make generated files be read-only.
4816         * modules/alloca-opt (Makefile.am): Work also when $@ is read-only.
4817         Ensure that each generated file is now read-only.
4818         * modules/argz: Likewise.
4819         * modules/arpa_inet: Likewise.
4820         * modules/byteswap: Likewise.
4821         * modules/configmake: Likewise.
4822         * modules/fcntl: Likewise.
4823         * modules/fnmatch: Likewise.
4824         * modules/getopt: Likewise.
4825         * modules/glob: Likewise.
4826         * modules/inttypes: Likewise.
4827         * modules/netinet_in: Likewise.
4828         * modules/poll: Likewise.
4829         * modules/stdbool: Likewise.
4830         * modules/stdint: Likewise.
4831         * modules/sys_select: Likewise.
4832         * modules/sys_socket: Likewise.
4833         * modules/sys_stat: Likewise.
4834         * modules/sysexits: Likewise.
4835         * modules/localcharset: Same as above, but continue using temporary
4836         file named "t-$@" (why different?) rather than the "$@-t" used
4837         everywhere else.
4838
4839         * modules/sysexits (Makefile.am): Replace literal occurrences
4840         of "sysexit.h" more readable, and more consistent, "$@".
4841
4842 2006-09-06  Bruno Haible  <bruno@clisp.org>
4843
4844         * modules/striconv: New file.
4845         * modules/xstriconv: New file.
4846         * MODULES.html.sh (Internationalization functions): Add striconv,
4847         xstriconv.
4848
4849 2006-09-06  Bruno Haible  <bruno@clisp.org>
4850
4851         * modules/gc (Makefile.am): Augment lib_LDFLAGS, not lib_LIBADD.
4852         * modules/iconvme (Makefile.am): Likewise. Also handle the case of
4853         not using libtool correctly.
4854
4855 2006-09-06  Bruno Haible  <bruno@clisp.org>
4856
4857         * lib/striconv.h: New file.
4858         * lib/striconv.c: New file, merging iconvme.c with GNU gettext's
4859         iconvstring.c.
4860         * lib/xstriconv.h: New file.
4861         * lib/xstriconv.c: New file.
4862
4863 2006-09-06  Bruno Haible  <bruno@clisp.org>
4864
4865         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
4866         lib_..._LDFLAGS.
4867
4868 2006-09-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4869
4870         * lib/argz_.h: Sync from Libtool.
4871
4872         2006-09-04  George Bosilca <bosilca@cs.utk.edu>
4873                 and Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4874
4875         * lib/libltdl/argz_.h: It's __cplusplus, not _cplusplus.
4876
4877 2006-09-05  Davide Angelocola  <davide.angelocola@tiscali.it>
4878
4879         * modules/trim: New file.
4880
4881 2006-09-05  Davide Angelocola  <davide.angelocola@tiscali.it>
4882
4883         * lib/trim.h: New file.
4884         * lib/trim.c: New file.
4885
4886 2006-09-05  Bruno Haible  <bruno@clisp.org>
4887
4888         * MODULES.html.sh (String handling): Add trim.
4889
4890 2006-09-04  Karl Berry  <karl@gnu.org>
4891
4892         * config/srclist.txt (signed.m4, gettext.m4): changes not propagated
4893         until next release.
4894
4895 2006-09-03  Bruno Haible  <bruno@clisp.org>
4896
4897         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Locate mingw shared libraries
4898         correctly.
4899
4900 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
4901
4902         * m4/getloadavg.m4 (gl_GETLOADAVG): Use CONFIGURING_GETLOADAVG,
4903         not gl_GETLOADAVG.  Omit unneeded semicolons.
4904         Problems reported by Ralf Wildenhues in
4905         <http://lists.gnu.org/archive/html/bug-gnulib/2006-09/msg00000.html>.
4906         (gl_PREREQ_GETLOADAVG): Use AC_DEFUN, not m4_define.  Put
4907         at the end, which is the usual gnulib style.
4908
4909         * m4/fstypename.m4 (gl_FSTYPENAME): Use AC_CHECK_MEMBERS instead
4910         of doing all the work ourselves.
4911         * m4/fsusage.m4 (gl_PREREQ_FSUSAGE_EXTRA): Don't check for
4912         sys/statvfs.h since the code doesn't use HAVE_SYS_STATVFS_H.
4913
4914 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
4915
4916         * lib/getloadavg.c: Use CONFIGURING_GETLOADAVG, not gl_GETLOADAVG.
4917         Problem reported by Ralf Wildenhues in
4918         <http://lists.gnu.org/archive/html/bug-gnulib/2006-09/msg00000.html>.
4919
4920         * lib/mountlist.c: All uses of HAVE_F_FSTYPENAME_IN_STATFS replaced by
4921         HAVE_STRUCT_STATFS_F_FSTYPENAME.
4922
4923 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
4924
4925         * gnulib-tool (func_emit_lib_Makefile_am): Fix typos in
4926         yesterday's patch by changing test -n to test -z.
4927
4928 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
4929
4930         * modules/getloadavg (Files): Add m4/getloadavg.m4.
4931         (configure.ac): AC_FUNC_GETLOADAVG -> gl_GETLOADAVG, as
4932         the former is now obsolescent.
4933
4934         * modules/chdir-long (Depends-on): Add fcntl.
4935
4936 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
4937
4938         * m4/fnmatch.m4: Add comment that Autoconf AC_FUNC_FNMATCH is
4939         obsolescent, and programs should use gnulib instead.
4940         * m4/getloadavg.m4: New file, with contents taken from Autoconf
4941         but with prefixes changed.
4942
4943 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
4944
4945         * lib/getloadavg.c [defined gl_GETLOADAVG]: Don't include config.h
4946         or stdbool.h, because they might not exist while configuring.
4947
4948         * lib/chdir-long.c: Include <fcntl.h>, for O_DIRECTORY.
4949         Don't include unistd.h or limits.h; not needed, since chdir-long.h
4950         does that for us.
4951         (O_DIRECTORY): Remove.
4952
4953 2006-08-31  Eric Blake  <ebb9@byu.net>
4954
4955         * gnulib-tool: Don't let emacs change spaces to TAB.
4956
4957 2006-08-31  Bruno Haible  <bruno@clisp.org>
4958
4959         * gnulib-tool: When calling func_import more than once, do it in a
4960         subshell.
4961         Reported by Eric Blake <ebb9@byu.net>.
4962
4963 2006-08-31  Bruno Haible  <bruno@clisp.org>
4964
4965         * gnulib-tool (nl): Remove variable.
4966         (sed_transform_lib_file): Use more robust test for config-h module.
4967         (func_import): Fix typo in 2006-08-25 patch.
4968
4969 2006-08-31  Bruno Haible  <bruno@clisp.org>
4970
4971         * gnulib-tool (func_emit_lib_Makefile_am): When --makefile-name was
4972         specified, augment Makefile.am variables instead of assigning them.
4973
4974 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
4975
4976         Work around a bug in both the Linux and SunOS 64-bit kernels:
4977         nanosleep mishandles sleeps for longer than 2**31 seconds.
4978         Problem reported by Frank v Waveren in
4979         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00298.html>.
4980         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Require gl_CLOCK_TIME.
4981         Check for nanosleep bug.
4982         (LIB_NANOSLEEP): Append clock_gettime library if needed.
4983
4984 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
4985
4986         Work around a bug in both the Linux and SunOS 64-bit kernels:
4987         nanosleep mishandles sleeps for longer than 2**31 seconds.
4988         Problem reported by Frank v Waveren in
4989         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00298.html>.
4990         * lib/nanosleep.c (BILLION): New constant.
4991         (getnow) [HAVE_BUG_BIG_NANOSLEEP]: New functions.
4992         (rpl_nanosleep) [HAVE_BUG_BIG_NANOSLEEP]: Completely new
4993         implementation.
4994
4995 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
4996
4997         * modules/nanosleep (Depends-on): Add gettime.
4998
4999 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
5000         and Simon Josefsson  <jas@extundo.com>
5001         and Oskar Liljeblad  <oskar@osk.mine.nu>
5002
5003         * MODULES.html.sh (Support for building documentation): Add gpl, lgpl.
5004         * gnulib-tool (func_import): New license type 'unmodifiable license
5005         text'.
5006         * modules/fdl: Use it.  Longer description.
5007         * module/gpl, module/lgpl: New files.
5008
5009 2006-08-30  Jim Meyering  <jim@meyering.net>
5010
5011         * lib/isapipe.c (isapipe): Rename local s/fd/fd_pair/ to avoid
5012         shadowing the parameter.
5013
5014 2006-08-29  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5015
5016         Sync from Libtool:
5017
5018         2006-08-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5019
5020         * lib/libltdl/argz.c: Use `#ifdef HAVE_CONFIG_H', to facilitate code
5021         sharing with gnulib.  Report by Eric Blake.
5022
5023 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
5024
5025         * modules/isapipe: New file.
5026         * MODULES.html.sh (File descriptor based Input/Output): Add isapipe.
5027
5028 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
5029
5030         * modules/configmake (Makefile.am): Add a comment, and omit
5031         the CONFIGMAKE_ prefix from generated macro names.  Suggested
5032         by Bruno Haible.
5033
5034 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
5035
5036         * m4/isapipe.m4: New file.
5037
5038 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
5039
5040         * lib/isapipe.c, lib/isapipe.h: New files.
5041
5042 2006-08-29  Jim Meyering  <jim@meyering.net>
5043
5044         * modules/configmake (Makefile.am): Make configmake.h depend on
5045         Makefile.  Otherwise, a stale configmake.h could hang around.
5046
5047 2006-08-29  Eric Blake  <ebb9@byu.net>
5048
5049         * lib/error.c (error_at_line, print_errno_message): Match libc, after
5050         resolution of upstream bug 3044.
5051
5052 2006-08-29  Bruno Haible  <bruno@clisp.org>
5053
5054         * modules/localcharset (Depends-on): Add configmake.
5055         (Makefile.am): Remove setting of LIBDIR through DEFS.
5056
5057 2006-08-29  Bruno Haible  <bruno@clisp.org>
5058
5059         * lib/localcharset.c: Include configmake.h in order to get LIBDIR
5060         defined.
5061
5062 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
5063
5064         * modules/fcntl: New file.
5065         * modules/chdir-safer (Depends-on): Add fcntl.
5066         * modules/fts: Likewise.
5067         * modules/mkdir-p: Likewise.
5068
5069         * modules/stdint (Makefile.am): Do not substitute ABSOLUTE_INTTYPES_H.
5070         This undoes the most recent change, since we're now addressing the
5071         problem in a different way.
5072
5073         * gnulib-tool (emit_lib_Makefile_am): Don't put $makefile_name
5074         into output, since the output might be called Makefile.am even
5075         if $makefile_name is something different.
5076         (func_import): Use $makefile_am rather than
5077         ${makefile_name-Makefile.am}, to fix a bug where makefile_name was
5078         empty.
5079
5080         * modules/inttypes (Files): Add m4/inttypes-h.m4.
5081
5082 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
5083
5084         * m4/inttypes.m4 (gl_INTTYPES_H): Move ABSOLUTE_INTTYPES_H code here...
5085         * m4/stdint.m4 (gl_STDINT_H): ... from here.  This undoes the most
5086         recent change to stdint.m4, since we're now addressing the problem in a
5087         different way.
5088
5089 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
5090
5091         * m4/fcntl_h.m4: New file.
5092
5093 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
5094
5095         * lib/fcntl_.h: New file.
5096         * lib/chdir-safer.c (O_DIRECTORY, O_NOFOLLOW): Remove, now that we have
5097         the fcntl module.
5098         * lib/dirchownmod.c: Likewise.
5099         * lib/fts.c: Likewise.
5100
5101         * lib/inttypes_.h [defined _GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H]:
5102         Include @ABSOLUTE_INTTYPES_H@ if available, but do nothing else.
5103         * lib/stdint_.h (_GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H): Define
5104         just before including <inttypes.h>, to avoid circular inclusion.
5105
5106 2006-08-28  Jim Meyering  <jim@meyering.net>
5107
5108         * doc/visibility.texi: Actually read and correct the grammar of the
5109         sentence affected by yesterday's change.
5110
5111 2006-08-28  Eric Blake  <ebb9@byu.net>
5112
5113         * modules/inttypes (Makefile.am): Fix sed error when inttypes.h
5114         needs wrapper.
5115
5116 2006-08-28  Eric Blake  <ebb9@byu.net>
5117
5118         * m4/inttypes.m4 (gl_INTTYPES_H): Fix missing #endif.
5119
5120 2006-08-28  Eric Blake  <ebb9@byu.net>
5121
5122         * m4/codeset.m4 (AM_LANGINFO_CODESET): Avoid compiler warning.
5123
5124 2006-08-28  Bruno Haible  <bruno@clisp.org>
5125
5126         * modules/c-strstr: New file, from GNU gettext.
5127         * MODULES.html.sh (String handling): Add c-strstr.
5128
5129 2006-08-28  Bruno Haible  <bruno@clisp.org>
5130
5131         * m4/inttypes.m4 (gl_INTTYPES_H): Don't test for the existence of SCNX*
5132         macros.
5133         Reported by Eric Blake.
5134
5135 2006-08-28  Bruno Haible  <bruno@clisp.org>
5136
5137         * lib/vasnprintf.c (EOVERFLOW): Remove definition.
5138         (VASNPRINTF): Return a string of length > INT_MAX without failing.
5139         * lib/vasprintf.c: Include errno.h, limits.h.
5140         (EOVERFLOW): New fallback definition.
5141         (vasprintf): Test here whether the string length is > INT_MAX.
5142         * lib/vsnprintf.c: Include errno.h, limits.h.
5143         (EOVERFLOW): New fallback definition.
5144         (vsnprintf): Fix bug when generated string was too long for the buffer.
5145         Test here whether the string length is > INT_MAX.
5146
5147 2006-08-28  Bruno Haible  <bruno@clisp.org>
5148
5149         * lib/inttypes_.h (SCNX*): Remove definitions.
5150         Reported by Eric Blake.
5151
5152 2006-08-28  Bruno Haible  <bruno@clisp.org>
5153
5154         * lib/c-strstr.h: New file, from GNU gettext.
5155         * lib/c-strstr.c: New file, from GNU gettext.
5156
5157 2006-08-28  Bruno Haible  <bruno@clisp.org>
5158
5159         * gnulib-tool: Reorder some statements.
5160
5161 2006-08-28  Bruno Haible  <bruno@clisp.org>
5162
5163         * gnulib-tool: New option --makefile-name.
5164         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am): Use
5165         $makefile_name.
5166         (func_import): Write $makefile_name to the cache file, and read it from
5167         there unless explicitly specified. Use $makefile_name as file name
5168         instead of Makefile.am. Adjust the recommendations accordingly.
5169
5170 2006-08-28  Bruno Haible  <bruno@clisp.org>
5171
5172         * gnulib-tool (func_verify_module): Check against misapplying patch.
5173
5174 2006-08-28  Bruno Haible  <bruno@clisp.org>
5175
5176         * gnulib-tool (func_relativize, func_relconcat): New functions.
5177         Give an error if --local-dir is given with --update.
5178         Remove trailing slashes from $local_gnulib_dir.
5179         (func_import): Store the relativized $local_gnulib_dir in
5180         gnulib-cache.m4, and read it from there if not specified explicitly.
5181
5182 2006-08-28  Bruno Haible  <bruno@clisp.org>
5183
5184         * gnulib-tool (func_get_tests_module): Don't assume that $gnulib_dir
5185         is the current directory. Respect also $local_gnulib_dir.
5186
5187 2006-08-28  Bruno Haible  <bruno@clisp.org>
5188             Simon Josefsson  <jas@extundo.com>
5189
5190         BeOS portability.
5191         * lib/getaddrinfo.c (PF_INET, PF_UNSPEC): New macros.
5192
5193 2006-08-27  Jim Meyering  <jim@meyering.net>
5194
5195         * doc/visibility.texi: Remove duplicate word: "pointer".
5196
5197 2006-08-26  Bruno Haible  <bruno@clisp.org>
5198
5199         * modules/inttypes (Files): Add lib/inttypes_.h, remove lib/inttypes.h.
5200         Add m4/inttypes.m4, remove m4/_inttypes_h.m4 and m4/include_next.m4.
5201         (Makefile.am): Create inttypes.h from inttypes_.h.
5202         * modules/stdint (Makefile.am): Substitute also ABSOLUTE_INTTYPES_H.
5203
5204         * modules/imaxabs: New file.
5205
5206         * modules/imaxdiv: New file.
5207
5208 2006-08-26  Bruno Haible  <bruno@clisp.org>
5209
5210         * m4/inttypes.m4: New file.
5211         * m4/_inttypes_h.m4: Remove file.
5212         * m4/inttypes-pri.m4 (gt_INTTYPES_PRI): Also AC_SUBST
5213         PRI_MACROS_BROKEN.
5214         * m4/stdint.m4 (gl_STDINT_H): Define also ABSOLUTE_INTTYPES_H.
5215
5216         * m4/imaxabs.m4: New file.
5217
5218         * m4/imaxdiv.m4: New file.
5219
5220 2006-08-26  Bruno Haible  <bruno@clisp.org>
5221
5222         * lib/inttypes_.h: New file.
5223         * lib/inttypes.h: Remove file.
5224         * lib/stdint_.h: Include <inttypes.h> through its absolute filename.
5225
5226         * lib/imaxabs.c: New file.
5227
5228         * lib/imaxdiv.c: New file.
5229
5230 2006-08-25  Paul Eggert  <eggert@cs.ucla.edu>
5231
5232         New config-h module, so that "make" output needn't be cluttered
5233         by -DHAVE_CONFIG_H.
5234         * MODULES.html.sh (Support for building libraries and executables):
5235         Add config-h.
5236         * modules/config-h: New file.
5237         * gnulib-tool (nl, sed_transform_lib_file): New vars.
5238         (func_import): Turn "#ifdef HAVE_CONFIG_H" to "#if 1" if
5239         the config-h module is used.
5240
5241         New configmake module, so that "make" output needn't be cluttered
5242         by fluff like '-DLIBDIR=\"/usr/local/lib\"'.
5243         * MODULES.html.sh (Support for building libraries and executables):
5244         Add configmake.
5245         * modules/configmake: New file.
5246
5247 2006-08-25  Paul Eggert  <eggert@cs.ucla.edu>
5248
5249         * m4/config-h.m4: New file.
5250
5251 2006-08-24  Paul Eggert  <eggert@cs.ucla.edu>
5252
5253         * config/srclist.txt: Add elisp-comp.
5254
5255 2006-08-24  Paul Eggert  <eggert@cs.ucla.edu>
5256
5257         * MODULES.html.sh (Support for building libraries and executables):
5258         Add elisp-comp.
5259         * build-aux/elisp-comp: New file.
5260         * modules/elisp-comp: New file.
5261
5262 2006-08-24  Bruno Haible  <bruno@clisp.org>
5263
5264         * gnulib-tool (func_create_testdir): Use non-default values of
5265         sourcebase and m4base.
5266
5267 2006-08-24  Bruno Haible  <bruno@clisp.org>
5268
5269         * MODULES.html.sh (Compatibility checks for POSIX:2001 functions: Fix
5270         HTML structure.
5271
5272 2006-08-23  Paul Eggert  <eggert@cs.ucla.edu>
5273
5274         * modules/openat (Depends-on): Add lchown.
5275
5276 2006-08-23  Bruno Haible  <bruno@clisp.org>
5277
5278         * gnulib-tool (func_import, func_create_testdir): Emit an invocation
5279         of gl_LOCK_EARLY instead of gl_LOCK.
5280
5281 2006-08-23  Bruno Haible  <bruno@clisp.org>
5282
5283         * m4/lock.m4 (gl_LOCK_BODY): Change the default value of gl_use_threads
5284         on OSF/1 to no.
5285         Reported by Stephen Cartwright <sgcartwr@ucalgary.ca>.
5286
5287 2006-08-23  Bruno Haible  <bruno@clisp.org>
5288
5289         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Don't consider BeOS statvfs
5290         as unusable.
5291
5292         * m4/lock.m4 (gl_LOCK_EARLY): Renamed from gl_LOCK.
5293         (gl_LOCK_BODY): Remove gl_PREREQ_LOCK invocation.
5294         (gl_LOCK): New macro.
5295
5296 2006-08-22  Simon Josefsson  <jas@extundo.com>
5297
5298         * modules/gc-md5 (Makefile.am): Need to add md5.h, after changes
5299         to md5 module.
5300
5301 2006-08-22  Simon Josefsson  <jas@extundo.com>
5302
5303         * MODULES.html.sh: Add "Support for maintaining and release
5304         projects".
5305
5306         * build-aux/gnupload: New file, from coreutils.
5307
5308 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
5309
5310         Avoid the need for AC_LIBSOURCES in m4 macros.
5311         * modules/arcfour (EXTRA_DIST): Add arcfour.h.
5312         * modules/arctwo (EXTRA_DIST): Add arctwo.h.
5313         * modules/check-version (EXTRA_DIST): Add check-version.h.
5314         * modules/crc (EXTRA_DIST): Add crc.h.
5315         * modules/des (EXTRA_DIST): Add des.h.
5316         * modules/gc (EXTRA_DIST): Add gc.h.
5317         * modules/getdelim (EXTRA_DIST): Add getdelim.h.
5318         * modules/getline (EXTRA_DIST): Add getline.h.
5319         * modules/getlogin_r (EXTRA_DIST): Add getlogin_r.h.
5320         * modules/hmac-md5 (EXTRA_DIST): Add hmac.h.
5321         * modules/hmac-sha1 (EXTRA_DIST): Add hmac.h.
5322         * modules/md2 (EXTRA_DIST): Add md2.h.
5323         * modules/md4 (EXTRA_DIST): Add md4.h.
5324         * modules/pagealign_alloc (EXTRA_DIST): Add pagealign_alloc.h.
5325         * modules/read-file (EXTRA_DIST): Add read-file.h.
5326         * modules/readline (EXTRA_DIST): Add readline.h.
5327         * modules/rijndael (EXTRA_DIST): Add rijndael-alg-fst.h,
5328         rijndael-api-fst.h.
5329
5330 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
5331
5332         * m4/rijndael.m4 (gl_ARCFOUR):
5333         * m4/arctwo.m4 (gl_ARCTWO):
5334         * m4/check-version.m4 (gl_CHECK_VERSION):
5335         * m4/crc.m4 (gl_CRC):
5336         * m4/des.m4 (gl_DES):
5337         * m4/gc-pbkdf2-sha1.m4 (gl_GC_PBKDF2_SHA1):
5338         * m4/gc.m4 (gl_GC):
5339         * m4/getdelim.m4 (gl_FUNC_GETDELIM):
5340         * m4/getline.m4 (gl_FUNC_GETLINE):
5341         * m4/getlogin_r.m4 (gl_GETLOGIN_R_SUBSTITUTE):
5342         * m4/hmac-md5.m4 (gl_HMAC_MD5):
5343         * m4/hmac-sha1.m4 (gl_HMAC_SHA1):
5344         * m4/md2.m4 (gl_MD2):
5345         * m4/md4.m4 (gl_MD4):
5346         * m4/pagealign_alloc.m4 (gl_PAGEALIGN_ALLOC):
5347         * m4/read-file.m4 (gl_FUNC_READ_FILE):
5348         * m4/readline.m4 (gl_FUNC_READLINE):
5349         * m4/rijndael.m4 (gl_RIJNDAEL):
5350         Don't use AC_LIBSOURCES; instead, rely on the files in ../modules/
5351         to get the necessary .h files and whatnot.
5352
5353 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
5354
5355         * config/srclist.txt: Remove gnupload, since coreutils now syncs from
5356         gnulib rather than the other way around.
5357         * config/srclistvars.sh (COREUTILS): Remove.
5358
5359 2006-08-22  Jim Meyering  <jim@meyering.net>
5360
5361         * modules/mkdir-p (Makefile.am): Fix typo: s/lib+SOURCES/lib_SOURCES/.
5362
5363         * modules/getpass-gnu (Makefile.am): Add getpass.h to EXTRA_DIST.
5364
5365 2006-08-22  Eric Blake  <ebb9@byu.net>
5366
5367         * modules/regexprops-generic: New file.
5368         * MODULES.html.sh (Support for building documentation): List it.
5369
5370 2006-08-22  Eric Blake  <ebb9@byu.net>
5371
5372         * m4/stdint_h.m4 (gl_AC_HEADER_STDINT_H): Avoid compiler warning.
5373         * m4/inttypes_h.m4 (gl_AC_HEADER_INTTYPES_H): Likewise.
5374         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Likewise.
5375         * m4/intmax_t.m4 (gt_AC_TYPE_INTMAX_T): Likewise.
5376
5377 2006-08-22  Bruno Haible  <bruno@clisp.org>
5378
5379         * gnulib-tool (func_emit_lib_Makefile_am): Don't treat lib_LIBRARIES
5380         and lib_LTLIBRARIES like the other lib_* variables.
5381
5382 2006-08-22  Bruno Haible  <bruno@clisp.org>
5383
5384         * build-aux/x-to-1.in: New file, from GNU gettext.
5385
5386 2006-08-22  Bruno Haible  <bruno@clisp.org>
5387
5388         * m4/readutmp.m4 (gl_READUTMP): Compile readutmp.c only if <utmp.h> or
5389         <utmpx.h> exists.
5390
5391 2006-08-22  Bruno Haible  <bruno@clisp.org>
5392
5393         * lib/readutmp.h: Skip most definitions if neither <utmp.h> nor
5394         <utmpx.h> exists.
5395
5396 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
5397
5398         BeOS portability.
5399         * lib/dirchownmod.c (dirchownmod): Don't use fchmod if it doesn't
5400         exist.
5401         Problem reported by Bruno Haible.
5402
5403 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
5404
5405         Avoid the need for AC_LIBSOURCES in m4 macros.
5406         * modules/acl (EXTRA_DIST): Add acl.h.
5407         * modules/argmatch (Files): Add m4/argmatch.m4.
5408         (configure.ac): Add gl_ARGMATCH.
5409         (EXTRA_DIST): Renamed from lib_SOURCES, for
5410         consistency with the other modules.  Remove argmatch.c.
5411         * modules/backupfile (EXTRA_DIST): Add backupfile.h.
5412         * modules/c-strtod (EXTRA_DIST): Add c-strtod.h.
5413         * modules/c-strtold (EXTRA_DIST): Add c-strtod.c, c-strtod.h.
5414         * modules/canonhost (EXTRA_DIST): Add c-canonhost.h.
5415         * modules/canonicalize (EXTRA_DIST): Add canonicalize.h.
5416         * modules/chdir-long (EXTRA_DIST): Add chdir-long.h.
5417         * modules/chdir-safer (EXTRA_DIST): Add chdir-safer.h.
5418         * modules/cloexec (EXTRA_DIST): Add cloexec.h.
5419         * modules/close-stream (EXTRA_DIST): Add close-stream.h.
5420         * modules/closeout (EXTRA_DIST): Add closeout.h.
5421         * modules/cycle-check (EXTRA_DIST): Add cycle-check.h.
5422         * modules/dev-ino (EXTRA_DIST): Add dev-ino.h.
5423         * modules/dirfd (EXTRA_DIST): Add dirfd.h.
5424         * modules/dirname (EXTRA_DIST): Renamed from lib_SOURCES.  Add
5425         dirname.h; remove basename.c and stripslash.c.
5426         * modules/exclude (EXTRA_DIST): Add exclude.h.
5427         * modules/exitfail (EXTRA_DIST): Add exitfail.h.
5428         * modules/fcntl-safer (EXTRA_DIST): Add fcntl-safer.h fcntl--.h.
5429         * modules/file-type (EXTRA_DIST): Add file-type.h.
5430         * modules/filemode (EXTRA_DIST): Add filemode.h.
5431         * modules/filenamecat (EXTRA_DIST): Add filenamecat.h.
5432         * modules/fopen-safer (EXTRA_DIST): Add stdio-safer.h stdio--.h.
5433         * modules/fpending (EXTRA_DIST): Add __fpending.h.
5434         * modules/fprintftime (EXTRA_DIST): Add fprintftime.h.
5435         * modules/fsusage (EXTRA_DIST): Add fsusage.h.
5436         * modules/fts (EXTRA_DIST): Add fts_.h fts-cycle.c.
5437         * modules/getcwd (EXTRA_DIST): Add getcwd.h.
5438         * modules/getdate (EXTRA_DIST): Add getdate.c.
5439         * modules/gethrxtime (EXTRA_DIST): Add gethrxtime.h xtime.h.
5440         * modules/getpagesize (EXTRA_DIST): Add getpagesize.h.
5441         * modules/getpass (EXTRA_DIST): Add getpass.h.
5442         * modules/glob (EXTRA_DIST): Add glob_.h glob-libc.h.
5443         * modules/group-member (EXTRA_DIST): Add group-member.h.
5444         * modules/hard-locale (EXTRA_DIST): Add hard-locale.h.
5445         * modules/hash (EXTRA_DIST): Add hash.h.
5446         * modules/human (EXTRA_DIST): Add human.h.
5447         * modules/inttypes (EXTRA_DIST): Add inttypes.h.
5448         * modules/lchmod (EXTRA_DIST): Add lchmod.h.
5449         * modules/lchown (EXTRA_DIST): Add lchown.h.
5450         * modules/long-options (EXTRA_DIST): Add long-options.h.
5451         * modules/lstat (EXTRA_DIST): Add lstat.h.
5452         * modules/md5 (EXTRA_DIST): Add memcasecmp.h.
5453         * modules/memcoll (EXTRA_DIST): Add memcoll.h.
5454         * modules/mempcpy (EXTRA_DIST): Add mempcpy.h.
5455         * modules/memrchr (EXTRA_DIST): Add memrchr.h.
5456         * modules/memxor (EXTRA_DIST): Add memxor.h.
5457         * modules/mkancesdirs (EXTRA_DIST): Add mkancesdirs.h.
5458         * modules/mkdir-p (EXTRA_DIST): Add modechange.h.
5459         * modules/mountlist (EXTRA_DIST): Add mountlist.h.
5460         * modules/openat (EXTRA_DIST): Add at-func.c openat.h openat-priv.h.
5461         * modules/pathmax (EXTRA_DIST): Add pathmax.h.
5462         * modules/physmem (EXTRA_DIST): Add physmem.h.
5463         * modules/posixtm (EXTRA_DIST): Add posixtm.h.
5464         * modules/posixver (EXTRA_DIST): Add posixver.h.
5465         * modules/quote (EXTRA_DIST): Add quote.h.
5466         * modules/quotearg (EXTRA_DIST): Add quotearg.h.
5467         * modules/readtokens (EXTRA_DIST): Add readtokens.h.
5468         * modules/readutmp (EXTRA_DIST): Add readutmp.h.
5469         * modules/regex (EXTRA_DIST): Add regcomp.c regex.h regex_internal.c
5470         regex_internal.h regexec.c.
5471         * modules/safe-read (EXTRA_DIST): Add safe-read.h.
5472         * modules/safe-write (EXTRA_DIST): Add safe-write.h.
5473         * modules/same (EXTRA_DIST): Add same.h.
5474         * modules/same-inode (EXTRA_DIST): Add same-inode.h.
5475         * modules/save-cwd (EXTRA_DIST): Add save-cwd.h.
5476         * modules/savedir (EXTRA_DIST): Add savedir.h.
5477         * modules/sha1 (EXTRA_DIST): Add sha1.h.
5478         * modules/sig2str (EXTRA_DIST): Add sig2str.h.
5479         * modules/stat-macros (EXTRA_DIST): Add stat-macros.h.
5480         * modules/stat-time (EXTRA_DIST): Add stat-time.h.
5481         * modules/stdlib-safer (EXTRA_DIST): Add stdlib-safer.h stdlib--.h.
5482         * modules/strdup (EXTRA_DIST): Add strdup.h.
5483         * modules/strftime (EXTRA_DIST): Add strftime.h.
5484         * modules/strndup (EXTRA_DIST): Add strndup.h.
5485         * modules/strnlen (EXTRA_DIST): Add strnlen.h.
5486         * modules/strverscmp (EXTRA_DIST): Add strverscmp.h.
5487         * modules/time_r (EXTRA_DIST): Add time_r.h.
5488         * modules/timespec (EXTRA_DIST): Add timespec.h.
5489         * modules/tmpfile-safer (EXTRA_DIST): Add stdio-safer.h stdio--.h.
5490         * modules/unistd-safer (EXTRA_DIST): Add unistd-safer.h unistd--.h.
5491         * modules/unlinkdir (EXTRA_DIST): Add unlinkdir.h.
5492         * modules/unlocked-io (EXTRA_DIST): Add unlocked-io.h.
5493         * modules/userspec (EXTRA_DIST): Add userspec.h.
5494         * modules/utimecmp (EXTRA_DIST): Add utimecmp.h.
5495         * modules/utimens (EXTRA_DIST): Add utimens.h.
5496         * modules/xalloc (EXTRA_DIST): Add xalloc.h.
5497         * modules/xgetcwd (EXTRA_DIST): Add xgetcwd.h.
5498         * modules/xnanosleep (EXTRA_DIST): Add xnanosleep.h.
5499         * modules/xreadlink (EXTRA_DIST): Add xreadlink.h.
5500         * modules/xstrtod (EXTRA_DIST): Add xstrtod.h.
5501         * modules/xstrtol (EXTRA_DIST): Add xstrtol.h.
5502         * modules/xstrtold (EXTRA_DIST): Add xstrtod.c xstrtod.h.
5503         * modules/yesno (EXTRA_DIST): Add yesno.h.
5504
5505 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
5506
5507         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Check for fchmod.
5508
5509         * m4/argmatch.m4: New file, from coreutils with AC_LIBSOURCES removed.
5510         * m4/dev-ino.m4, same-inode.m4: Remove.
5511
5512         * m4/_inttypes_h.m4 (gl_INTTYPES_H):
5513         * m4/acl.m4 (AC_FUNC_ACL):
5514         * m4/backupfile.m4 (gl_BACKUPFILE):
5515         * m4/c-strtod.m4 (gl_C99_STRTOLD):
5516         * m4/canon-host.m4 (gl_CANON_HOST):
5517         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME):
5518         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG):
5519         * m4/chdir-safer.m4 (gl_CHDIR_SAFER):
5520         * m4/cloexec.m4 (gl_CLOEXEC):
5521         * m4/close-stream.m4 (gl_CLOSE_STREAM):
5522         * m4/closeout.m4 (gl_CLOSEOUT):
5523         * m4/dirfd.m4 (gl_FUNC_DIRFD):
5524         * m4/dirname.m4 (gl_DIRNAME):
5525         * m4/exclude.m4 (gl_EXCLUDE):
5526         * m4/exitfail.m4 (gl_EXITFAIL):
5527         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER):
5528         * m4/file-type.m4 (gl_FILE_TYPE):
5529         * m4/filemode.m4 (gl_FILEMODE):
5530         * m4/filenamecat.m4 (gl_FILE_NAME_CONCAT):
5531         * m4/fpending.m4 (gl_FUNC_FPENDING):
5532         * m4/fprintftime.m4 (gl_FPRINTFTIME):
5533         * m4/fts.m4 (gl_FUNC_FTS):
5534         * m4/getcwd.m4 (gl_FUNC_GETCWD_NULL):
5535         * m4/getdate.m4 (gl_GETDATE):
5536         * m4/gethrxtime.m4 (gl_GETHRXTIME):
5537         * m4/getpagesize.m4 (gl_GETPAGESIZE):
5538         * m4/getpass.m4 (gl_FUNC_GETPASS):
5539         * m4/gettime.m4 (gl_GETTIME):
5540         * m4/getugroups.m4 (gl_GETUGROUPS):
5541         * m4/glob.m4 (gl_GLOB_SUBSTITUTE):
5542         * m4/group-member.m4 (gl_FUNC_GROUP_MEMBER):
5543         * m4/hard-locale.m4 (gl_HARD_LOCALE):
5544         * m4/hash.m4 (gl_HASH):
5545         * m4/idcache.m4 (gl_IDCACHE):
5546         * m4/lchmod.m4 (gl_FUNC_LCHMOD):
5547         * m4/lchown.m4 (gl_FUNC_LCHOWN):
5548         * m4/long-options.m4 (gl_LONG_OPTIONS):
5549         * m4/lstat.m4 (gl_FUNC_LSTAT):
5550         * m4/md5.m4 (gl_MD5):
5551         * m4/memcasecmp.m4 (gl_MEMCASECMP):
5552         * m4/memcoll.m4 (gl_MEMCOLL):
5553         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY):
5554         * m4/memrchr.m4 (gl_FUNC_MEMRCHR):
5555         * m4/memxor.m4 (gl_MEMXOR):
5556         * m4/mkancesdirs.m4 (gl_MKANCESDIRS):
5557         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS):
5558         * m4/modechange.m4 (gl_MODECHANGE):
5559         * m4/mountlist.m4 (gl_MOUNTLIST):
5560         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP):
5561         * m4/openat.m4 (gl_FUNC_OPENAT):
5562         * m4/pathmax.m4 (gl_PATHMAX):
5563         * m4/physmem.m4 (gl_PHYSMEM):
5564         * m4/posixtm.m4 (gl_POSIXTM):
5565         * m4/posixver.m4 (gl_POSIXVER):
5566         * m4/quote.m4 (gl_QUOTE):
5567         * m4/quotearg.m4 (gl_QUOTEARG):
5568         * m4/readtokens.m4 (gl_READTOKENS):
5569         * m4/readutmp.m4 (gl_READUTMP):
5570         * m4/regex.m4 (gl_REGEX):
5571         * m4/safe-read.m4 (gl_SAFE_READ):
5572         * m4/safe-write.m4 (gl_SAFE_WRITE):
5573         * m4/same.m4 (gl_SAME):
5574         * m4/save-cwd.m4 (gl_SAVE_CWD):
5575         * m4/savedir.m4 (gl_SAVEDIR):
5576         * m4/settime.m4 (gl_SETTIME):
5577         * m4/sha1.m4 (gl_SHA1):
5578         * m4/sig2str.m4 (gl_FUNC_SIG2STR):
5579         * m4/stat-macros.m4 (gl_STAT_MACROS):
5580         * m4/stat-time.m4 (gl_STAT_TIME):
5581         * m4/stdio-safer.m4 (gl_FOPEN_SAFER):
5582         * m4/stdlib-safer.m4 (gl_STDLIB_SAFER):
5583         * m4/strdup.m4 (gl_FUNC_STRDUP):
5584         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME):
5585         * m4/strndup.m4 (gl_FUNC_STRNDUP):
5586         * m4/strnlen.m4 (gl_FUNC_STRNLEN):
5587         * m4/strverscmp.m4 (gl_FUNC_STRVERSCMP):
5588         * m4/time_r.m4 (gl_TIME_R):
5589         * m4/timespec.m4 (gl_TIMESPEC):
5590         * m4/unistd-safer.m4 (gl_UNISTD_SAFER):
5591         * m4/unlinkdir.m4 (gl_UNLINKDIR):
5592         * m4/unlocked-io.m4 (gl_FUNC_GLIBC_UNLOCKED_IO):
5593         * m4/userspec.m4 (gl_USERSPEC):
5594         * m4/utimecmp.m4 (gl_UTIMECMP):
5595         * m4/utimens.m4 (gl_UTIMENS):
5596         * m4/xalloc.m4 (gl_XALLOC):
5597         * m4/xgetcwd.m4 (gl_XGETCWD):
5598         * m4/xnanosleep.m4 (gl_XNANOSLEEP):
5599         * m4/xreadlink.m4 (gl_XREADLINK):
5600         * m4/xstrtod.m4 (gl_XSTRTOD):
5601         * m4/yesno.m4 (gl_YESNO):
5602         Don't use AC_LIBSOURCES; instead, rely on the files in ../modules/
5603         to get the necessary .h files and whatnot.
5604
5605 2006-08-21  Mark D. Baushke  <mdb@gnu.org>
5606             Bruno Haible  <bruno@clisp.org>
5607
5608         * gnulib-tool (func_verify_module): Work around Sun's non-POSIX 1003.2
5609         /bin/sh understanding of '!' conditional negation.
5610
5611 2006-08-21  Jim Meyering  <jim@meyering.net>
5612
5613         * modules/openat (Depends-on): Really alphabetize.
5614
5615         * modules/acl (Depends-on): Add error and quote.
5616
5617         * check-module (find_included_lib_files): Add at-func.c to the
5618         ok-to-include-more-than-once white list.
5619
5620         * modules/openat (Depends-on): Add lstat.  Alphabetize.
5621
5622 2006-08-21  Bruno Haible  <bruno@clisp.org>
5623
5624         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
5625         Emit a pkgdata_DATA variable only if some snippets add contents to it.
5626         Reported by Martin Lambers <marlam@marlam.de>.
5627
5628 2006-08-21  Bruno Haible  <bruno@clisp.org>
5629
5630         * gnulib-tool (func_emit_lib_Makefile_am): If the snippets already
5631         specify an installation location, don't emit a noinst_LIBRARIES or
5632         noinst_LTLIBRARIES assignment.
5633
5634 2006-08-21  Bruno Haible  <bruno@clisp.org>
5635
5636         BeOS portability.
5637         * modules/mbchar (Include): Don't test HAVE_WCTYPE_H any more, since
5638         BeOS has mbrtowc() but no <wctype.h>.
5639
5640 2006-08-21  Bruno Haible  <bruno@clisp.org>
5641
5642         BeOS portability.
5643         * m4/mbchar.m4 (gl_MBCHAR): Compile mbchar.c also if <wctype.h> doesn't
5644         exist.
5645
5646 2006-08-21  Bruno Haible  <bruno@clisp.org>
5647
5648         BeOS portability.
5649         * lib/mbchar.h: Include <wctype.h> only if it exists.
5650
5651 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
5652
5653         Remove files that are no longer needed by their respective modules.
5654         * m4/obstack.m4: Remove.
5655         * m4/strerror_r.m4: Remove.
5656         * m4/uint32_t.m4: Remove.
5657         * m4/uintptr_t.m4: Remove.
5658         * m4/ullong_max.m4: Remove.
5659         * m4/xstrtoimax.m4: Remove.
5660         * m4/xstrtoumax.m4: Remove.
5661
5662         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Do not require
5663         gl_AC_TYPE_UINTMAX_T, gl_STRUCT_DEV_INO, or gl_SAME_INODE, since gnulib
5664         dependencies now capture this.
5665
5666         * m4/cycle-check.m4 (gl_CYCLE_CHECK):
5667         Do not use AC_LIBSOURCES, since gnulib modules now do this.
5668         * m4/fsusage.m4 (gl_FSUSAGE): Likewise.
5669         * m4/human.m4 (gl_HUMAN): Likewise.
5670         * m4/inttostr.m4 (gl_INTTOSTR): Likewise.
5671         * m4/xstrtol.m4 (gl_XSTRTOL): Likewise.
5672
5673         * m4/filemode.m4 (gl_FILEMODE): Require AC_STRUCT_ST_DM_MODE.
5674
5675         * m4/filemode.m4 (gl_PREREQ_FSUSAGE_EXTRA): Do not require
5676         gl_AC_TYPE_INTMAX_T or gl_AC_TYPE_UINTMAX_T, since we now require
5677         stdint.
5678         * m4/human.m4 (gl_HUMAN): Likewise.
5679         * m4/inttostr.m4 (gl_PREREQ_INTTOSTR): Likewise.
5680         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Likewise.
5681         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Likewise.
5682         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Likewise.
5683         * m4/xstrtol (gl_XSTRTOL): Likewise.
5684
5685         * m4/gethrxtime.m4 (gl_XTIME): gl_AC_TYPE_LONG_LONG ->
5686         AC_TYPE_LONG_LONG_INT.
5687         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Likewise.
5688         * m4/strtoll.m4 (gl_FUNC_STRTOLL): Likewise.
5689         * m4/strtoull.m4 (gl_FUNC_STRTOULL): Likewise, for unsigned long.
5690         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Likewise.
5691
5692         * m4/human.m4 (gl_HUMAN): Do not require AM_STDBOOL_H since we depend
5693         on stdbool.
5694
5695         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL_H, gl_PREREQ_XSTRTOL): Remove.
5696         (gl_PREREQ_XSTRTOUL): Remove.
5697
5698         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Check for hasmntopt.
5699
5700         * m4/posixver.m4: Fix comment since head -1 now works even in POSIX
5701         mode.
5702
5703 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
5704
5705         Add and change modules to make it easier for coreutils to use
5706         gnulib-tool.
5707         * modules/backupfile (Files): Remove m4/d-ino.m4.
5708         (Depends-on): Add d-ino.
5709         * modules/cycle-check (Depends-on): Add stdint.
5710         (lib_SOURCES): Add cycle-check.h.
5711         * modules/d-ino: New module.
5712         * modules/d-type: New module.
5713         * modules/error (Files): Remove m4/strerror_r.m4.
5714         * modules/filemode (Files): Add m4/st_dm_mode.m4.
5715         * modules/fsuage (Files): Remove m4/ulonglong.m4, m4/stdint_h.m4,
5716         m4/inttypes_h.m4, m4/uintmax_t.m4.
5717         (Depends-on): Add stdint.
5718         (lib_SOURCES): Add fsusage.h.
5719         * modules/getcwd (Files): Remove d-ino.m4.
5720         (Depends-on): Add d-ino.
5721         * modules/getndelim2 (Depends-on): Add stdint.
5722         * modules/glob (Files): Remove m4/d-type.m4.
5723         (Depends-on): Add d-type.
5724         * modules/host-os: New module.
5725         * modules/human (Files):  Remove m4/ulonglong.m4, m4/stdint_h.m4,
5726         m4/inttypes_h.m4, m4/uintmax_t.m4.
5727         * Depends-on: Add stdint.
5728         (lib_SOURCES): Add human.h.
5729         * modules/inttostr (Files): Remove m4/intmax_t.m4,
5730         m4/inttostr.m4, m4/inttypes_h.m4, m4/longlong.m4, m4/stdint_h.m4,
5731         m4/uintmax_t.m4, m4/ulonglong.m4.
5732         (Depends-on): Add stdint.
5733         (EXTRA_DIST): Add inttostr.h.
5734         * modules/lchmod: New module.
5735         * modules/link-follow: New module.
5736         * modules/mkdir-p (Files): Remove lib/lchmod.h, m4/lchmod.m4.
5737         (Depends-on): Add lchmod.
5738         * modules/mkstemp (Files): Remove m4/ulonglong.m4,
5739         m4/stdint_h.m4, m4/inttypes_h.m4, m4/uintmax_t.m4.
5740         (Depends-on): Add stdint.
5741         * modules/obstack (Files): Remove m4/inttypes_h.m4, m4/obstack.m4,
5742         m4/stdint_h.m4, m4/uintmax_t.m4, m4/ulonglong.m4.
5743         (Depends-on): Add stdint.
5744         (configure.ac): Change gl_OBSTACK to AC_FUNC_OBSTACK.
5745         * modules/perl: New module.
5746         * modules/regex (Depends-on): Add stdint.
5747         * modules/rmdir-errno: New module.
5748         * modules/strtoimax (Files): Remove m4/stdint_h.m4, m4/inttypes_h.m4,
5749         m4/intmax_t.m4.
5750         (Depends-on): Add stdint.
5751         * modules/strtoumax (Files): Remove m4/stdint_h.m4, m4/inttypes_h.m4,
5752         m4/uintmax_t.m4.
5753         (Depends-on): Add stdint.
5754         * modules/unlink-busy: New module.
5755         * modules/utimecmp (Depends-on): Add stdint.
5756         * modules/uptime: New module.
5757         * modules/winsz-ioctl: New module.
5758         * modules/winsz-termios: New module.
5759         * modules/xnanosleep (Depends-on): Add nanosleep.
5760         * modules/ullong_max: Remove.
5761         * modules/xstrtoimax (Files): Remove m4/xstrtoimax.m4.
5762         (configure.ac): Remove gl_XSTRTOIMAX; no action needed now.
5763         * modules/xstrtol (Files): Remove m4/ulonglong.m4, m4/longlong.m4,
5764         m4/stdint_h.m4, m4/inttypes_h.m4, m4/uintmax_t.m4, m4/intmax_t.m4.
5765         (Depends-on): Add inttypes.
5766         (lib_SOURCES): Add xstrtol.h.
5767         * modules/xstrtoumax (Files): Remove m4/xstrtoumax.m4.
5768         (configure.ac): Remove gl_XSTRTOUMAX; no action needed now.
5769         * MODULES.html.sh: Move 'assert' into the assert section.
5770         Move 'dummy' into the linking section.
5771         Remove ullong_max.
5772         Add section for compatibility checks for POSIX:2001 functions,
5773         and put d-ino, d-type, link-follow, rmdir-errno, unlink-busy,
5774         winsz-ioctl, and winsz-termios into it.
5775         Add lchmod.
5776         Add top-level Misc section and put host-os, perl, and uptime
5777         into it.
5778
5779 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
5780
5781         * lib/cycle-check.h: Include <stdint.h> unconditionally, since we
5782         now assume the stdint module.  Do not include inttypes.h.
5783         * lib/fsusage.h: Likewise.
5784         * lib/getndelim2.c: Likewise.
5785         * lib/human.h: Likewise.
5786         * lib/inttostr.h: Likewise.
5787         * lib/obstack.c: Likewise.
5788         * lib/regex_internal.h: Likewise.
5789         * lib/tempname.c: Likewise.
5790         * lib/utimecmp.c: Likewise.
5791         * lib/xstrtol.h: Likewise.
5792
5793         * lib/stat_.h: Fix typo: HAVE_FUNC_LSTAT -> HAVE_LSTAT.
5794
5795         * lib/strtoimax.c: Adjust to macro name changes in Autoconf,
5796         e.g., HAVE_LONG_LONG -> HAVE_LONG_LONG_INT.
5797         * lib/xtime.h: Likewise.
5798
5799 2006-08-19  Paul Eggert  <eggert@cs.ucla.edu>
5800
5801         * modules/openat (Files): Add lib/fchmodat.c.
5802         Fixes problem reported by Jay Youngman.
5803
5804 2006-08-19  Paul Eggert  <eggert@cs.ucla.edu>
5805
5806         * lib/fchmodat.c: New file, from coreutils.  This was inadvertently
5807         omitted in the 2006-08-17 update.  Problem reported by Jay Youngman.
5808
5809 2006-08-18  Paul Eggert  <eggert@cs.ucla.edu>
5810             Bruno Haible  <bruno@clisp.org>
5811
5812         * m4/bison-i18n.m4 (BISON_I18N): Also handle the case where yacc exists
5813         and is a script that invokes bison. Tighten the code. Add comments.
5814
5815 2006-08-18  Jim Meyering  <jim@meyering.net>
5816
5817         * m4/gethrxtime.m4 (gl_PREREQ_GETHRXTIME): Also check for
5818         CLOCK_REALTIME, since gethrxtime may revert to using clock_gettime via
5819         gettime.c.  Gabor Z. Papp reported that gethrxtime-using programs
5820         failed to link due to unresolved clock_gettime on a linux-2.4.x system.
5821
5822 2006-08-18  Bruno Haible  <bruno@clisp.org>
5823
5824         * modules/bison-i18n: New file.
5825         * MODULES.html.sh (Internationalization functions): Add it.
5826
5827 2006-08-18  Bruno Haible  <bruno@clisp.org>
5828
5829         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Also check for
5830         sys/statvfs.h. When getmntinfo was found, check its declaration and
5831         set either MOUNTED_GETMNTINFO or MOUNTED_GETMNTINFO2 depending on it.
5832
5833 2006-08-18  Bruno Haible  <bruno@clisp.org>
5834
5835         * m4/bison-i18n.m4: New file, from bison.
5836
5837 2006-08-18  Bruno Haible  <bruno@clisp.org>
5838
5839         * lib/mountlist.c [MOUNTED_GETMNTINFO2]: Include sys/statvfs.h.
5840         (ME_DUMMY): Treat "kernfs" as a dummy.
5841         (read_file_system_list) [MOUNTED_GETMNTINFO2]: Implement.
5842
5843 2006-08-17  Paul Eggert  <eggert@cs.ucla.edu>
5844
5845         Update from coreutils.
5846
5847         2006-08-15  Jim Meyering  <jim@meyering.net>
5848
5849         * m4/openat.m4 (gl_FUNC_OPENAT): Add at-func.c via AC_LIBSOURCES.
5850
5851         2006-01-17  Jim Meyering  <jim@meyering.net>
5852
5853         * m4/fts.m4 (gl_FUNC_FTS_CORE): Depend on gl_FUNC_OPENAT.
5854
5855         2006-01-11  Jim Meyering  <jim@meyering.net>
5856
5857         * m4/openat.m4 (gl_FUNC_OPENAT): Require and compile fchmodat.c.
5858         Check for the lchmod function.
5859
5860 2006-08-17  Paul Eggert  <eggert@cs.ucla.edu>
5861
5862         Update from coreutils.
5863
5864         * lib/__fpending.h: Add copyright notice.
5865         * lib/fprintftime.h: Likewise.
5866         * lib/savedir.c: Use (C) in copyright notice.
5867         * lib/savedir.h: Likewise.
5868
5869         2006-08-15  Jim Meyering  <jim@meyering.net>
5870
5871         * lib/at-func.c: New file, with the logic of all emulated at-functions.
5872         * lib/openat-priv.h: Include <errno.h> and define ENOSYS,
5873         in support of the EXPECTED_ERRNO macro.
5874         * lib/openat.c (fstatat, unlinkat, fchownat): Remove function
5875         definitions.  Instead, define the appropriate symbols and include
5876         "at-func.c".
5877         * lib/mkdirat.c (mkdirat): Likewise.
5878         * lib/fchmodat.c (fchmodat): Likewise.
5879         (ENOSYS): Remove definition.
5880         * lib/openat.c: Don't include <errno.h>, now that "openat-priv.h" does
5881         it.  Don't include "unistd--.h" -- it wasn't ever used.
5882
5883         2006-01-17  Jim Meyering  <jim@meyering.net>
5884
5885         Rewrite fts.c not to change the current working directory,
5886         by using openat, fstatat, fdopendir, etc..
5887
5888         * lib/fts.c [! _LIBC]: Include "openat.h" and "unistd--.h".
5889         (HAVE_OPENAT_SUPPORT): Define.
5890         [_LIBC] (fchdir): Don't undef or define; no longer used.
5891         (FCHDIR): Define in terms of cwd_advance_fd rather than fchdir.
5892         Now, this `function' always succeeds, and consumes its file descriptor
5893         parameter -- so callers must not close such FDs.  Update callers.
5894         (diropen_fd, opendirat, cwd_advance_fd): New functions.
5895         (diropen): Add parameter, SP.  Adjust all callers.
5896         Implement using diropen_fd, rather than open.
5897         (fts_open): Initialize new member, fts_cwd_fd.
5898         Remove fts_rft-setting code.
5899         (fts_close): Close fts_cwd_fd, if necessary.
5900         (__opendir2): Define in terms of opendir or opendirat,
5901         depending on whether the FST_NOCHDIR flag is set.
5902         (fts_build): Since fts_safe_changedir consumes its FD, and since
5903         this code must do `closedir(dirp)', dup the dirfd(dirp) argument,
5904         and close the dup'd file descriptor upon failure.
5905         (fts_stat): Use fstatat(...AT_SYMLINK_NOFOLLOW) in place of lstat.
5906         (fts_safe_changedir): Tweak semantics to reflect that this function
5907         now calls cwd_advance_fd and hence consumes its FD argument.
5908         * lib/fts_.h [struct FTS] (fts_cwd_fd): New member.
5909         [struct FTS] (fts_rft): Remove now-unused member.
5910         [struct FTS] (fts_cycle.state): Improve comment.
5911
5912         * lib/openat.c (openat_needs_fchdir): New function.
5913         * lib/openat.h (openat_needs_fchdir): Declare it.
5914
5915 2006-08-16  Paul Eggert  <eggert@cs.ucla.edu>
5916
5917         * lib/memcoll.c (memcoll): Set errno = 0 in the shortcut case, too.
5918         Problem and fix reported by Pádraig Brady in
5919         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00099.html>.
5920
5921 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
5922
5923         * modules/cycle-check (configure.ac): Add gl_CYCLE_CHECK.
5924
5925 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
5926
5927         * lib/memcoll.c (memcoll): Optimize for the common case where the
5928         arguments are bytewise equal.
5929
5930 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
5931
5932         * doc/regexprops-generic.texi: Add a copyright notice.
5933
5934 2006-08-15  Bruno Haible  <bruno@clisp.org>
5935
5936         * modules/tmpdir (License): Change to LGPL.
5937
5938 2006-08-15  Bruno Haible  <bruno@clisp.org>
5939
5940         * gnulib-tool (func_all_modules, func_verify_module): COPYING is not a
5941         module.
5942
5943 2006-08-14  Simon Josefsson  <jas@extundo.com>
5944
5945         * config/srclist.txt: Add gnupload.
5946
5947 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
5948
5949         Change copyright notice from LGPL 2 to GPL 2, since that's the
5950         standard form used in the gnulib repository.
5951         * tests/test-lock.c: Likewise.
5952         * tests/test-stdint.c: Likewise.
5953         * tests/test-tls.c: Likewise.
5954
5955         * users.txt: Add bison, diffutils, libprelude, prelude-lml,
5956         prelude-manager.  User shorter URLs for GNU projects, without '?'.
5957         Add copyright notice.
5958
5959         * check-module: Add copyright notice.  Output a copyright
5960         notice if "--version" is specified.
5961         * modules/COPYING: New file.
5962         * tests/test-getaddrinfo.c: Add copyright notice.
5963         * tests/test-verify.c: Likewise.
5964
5965 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
5966
5967         Change copyright notice from LGPL 2 to GPL 2, since that's the
5968         standard form used in the gnulib repository.
5969         * lib/lock.c: LGPL -> GPL.
5970         * lib/lock.h: Likewise.
5971         * lib/strnlen1.c: Likewise.
5972         * lib/strnlen1.h: Likewise.
5973         * lib/tls.c: Likewise.
5974         * lib/tls.h: Likewise.
5975         * lib/tmpdir.c: Likewise.
5976
5977         * lib/TODO: Remove; this belongs only in coreutils.
5978
5979 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
5980
5981         Add copyright notices to long-enough files that lack them, since
5982         otherwise the files aren't clearly free.  Use the same notice that
5983         getdate.texi already uses.
5984         * doc/alloca-opt.texi: Add copyright notice.
5985         * doc/alloca.texi: Likewise.
5986         * doc/ctime.texi: Likewise.
5987         * doc/functions.texi: Likewise.
5988         * doc/gcd.texi: Likewise.
5989         * doc/gnulib-tool.texi: Likewise.
5990         * doc/inet_ntoa.texi: Likewise.
5991         * doc/visibility.texi: Likewise.
5992
5993         * doc/getdate.texi: Update FDL version from 1.1 to 1.2.
5994         * doc/quote.texi: Add copyright notice.
5995
5996         * doc/solaris-versions: Add SunOS 5.10, SunOS 1.x, SunOS 4.0, SunOS
5997         4.0.x, SunOS 4.1.1.1, SunOS 4.1.1_U1, SunOS 4.1.3B.  SunOS 4.1.3
5998         was Solaris 1.1A.  Remove space before B in Solaris 1.1.1B.
5999         Mention SunOS 5.11.  Mention that everything before SunOS 5.7
6000         is now obsolete, and give a pointer to the Sun list.
6001         Add copyright notice.
6002
6003 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
6004
6005         * config/srclistvars.sh: Add copyright notice.
6006
6007 2006-08-14  Eric Blake  <ebb9@byu.net>
6008
6009         Import the following change from libc:
6010
6011         2006-08-12  Ulrich Drepper  <drepper@redhat.com>
6012
6013         Upstream bug 2997.
6014         * lib/misc/error.c: Add space between program name and message if file
6015         name is missing.
6016
6017 2006-08-12  Karl Berry  <karl@gnu.org>
6018
6019         * config/srclist.txt (ssize_t.m4, sig_atomic_t.m4, signalblocking.m4):
6020         remove, these originate in gnulib now.
6021
6022 2006-08-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6023
6024         * doc/Makefile (standards.info standards.html standards.dvi):
6025         Also depend on make-stds.texi.
6026
6027 2006-08-11  Paul Eggert  <eggert@cs.ucla.edu>
6028
6029         * lib/pipe-safer.c (pipe_safer): Fix misspelling: HAVE_FUNC_PIPE ->
6030         HAVE_PIPE.  Fix a file descriptor leak when fd_safer fails.
6031
6032         * lib/regex_internal.c (re_string_skip_chars): Don't assume WEOF fits
6033         in wchar_t.  Problem reported by Eric Blake.
6034
6035         * lib/snprintf.c (snprintf): memcpy LEN bytes, not SIZE - 1, when
6036         LEN is smaller than SIZE.  Suggested by Bruno Haible.
6037         Also, help the compiler to keep LEN in a register.
6038
6039 2006-08-11  Eric Blake  <ebb9@byu.net>
6040
6041         * users.txt: Sort.  Add tar.
6042
6043 2006-08-11  Bruno Haible  <bruno@clisp.org>
6044
6045         * users.txt: New file.
6046
6047 2006-08-11  Bruno Haible  <bruno@clisp.org>
6048
6049         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Include <stdio.h> and <time.h>
6050         before <wchar.h>. Needed for OSF/1 and BSD/OS.
6051
6052 2006-08-10  Paul Eggert  <eggert@cs.ucla.edu>
6053
6054         * modules/snprintf (Depends-on): Remove minmax.
6055         (Maintainer): Add self and Bruno.
6056
6057 2006-08-10  Paul Eggert  <eggert@cs.ucla.edu>
6058
6059         * lib/.cppi-disable: Add snprintf.h, socket_.h.
6060         * lib/snprintf.c: Include <errno.h> and <limits.h>.
6061         (EOVERFLOW): Define if the system does not.
6062         Do not include "minmax.h"; it wasn't used.
6063         (snprintf): Don't assume size_t promotes to an unsigned type.
6064         Fix bug when generated string was too long for the buffer: the
6065         buffer's contents are supposed to be the initial prefix of the
6066         output.  Don't assume vasnprintf returns EOVERFLOW if the size
6067         exceeds INT_MAX; do the check ourselves.
6068
6069         Import the following changes from libc:
6070
6071         2006-06-02  Jakub Jelinek  <jakub@redhat.com>
6072
6073         * lib/posix/regex_internal.c (re_string_skip_chars): If no character
6074         has been converted at all, set *last_wc to WEOF.  If mbrtowc failed,
6075         set wc to the byte which couldn't be converted.
6076         (re_string_reconstruct): Don't clear valid_raw_len before calling
6077         re_string_skip_chars.  If wc is WEOF after re_string_skip_chars, set
6078         tip_context using re_string_context_at.
6079
6080         2006-05-02  Ulrich Drepper  <drepper@redhat.com>
6081
6082         * lib/posix/regex.h: g++ still cannot handled [restrict].
6083
6084         2006-04-21  Ulrich Drepper  <drepper@redhat.com>
6085
6086         * lib/posix/regex.h: Remove special handling for VMS.
6087
6088 2006-08-10  Jim Meyering  <jim@meyering.net>
6089
6090         * modules/same-inode: New module.
6091         * modules/dev-ino: New module.
6092         * modules/cycle-check: Depend on these modules, rather than simply
6093         including their .h files.
6094         (Makefile.am): Don't list cycle-check.[ch] here, now that they're
6095         required via m4/cycle-check.m4.
6096         * modules/same: Depend on new same-inode module, rather than
6097         including same-inode.h.
6098         * modules/chdir-safer: New file.
6099
6100         * modules/chown (Depends-on): Add stat-macros.
6101
6102 2006-08-10  Jim Meyering  <jim@meyering.net>
6103
6104         * m4/cycle-check.m4: New file.
6105         Require gl_STRUCT_DEV_INO and gl_SAME_INODE.
6106         * m4/dev-ino.m4, m4/same-inode.m4: New files.
6107
6108 2006-08-10  Eric Blake  <ebb9@byu.net>
6109
6110         * modules/verror (Depends-on): Remove bogus gl_VERROR that snuck
6111         in from original proposal.
6112
6113 2006-08-10  Eric Blake  <ebb9@byu.net>
6114         and Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
6115
6116         * gnulib-tool (func_import): Detect unexpanded macros in gnulib
6117         namespace.
6118
6119 2006-08-10  Bruno Haible  <bruno@clisp.org>
6120
6121         * gnulib-tool (func_create_testdir): Detect unexpanded macros here
6122         as well.
6123
6124 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
6125
6126         Sync from coreutils.
6127
6128         2006-07-19  Mike Frysinger  <vapier@gentoo.org>
6129
6130         * lib/mountlist.c [ME_REMOTE]: Filter out cifs.
6131         Reported by Toralf Förster in <http://bugs.gentoo.org/141012>.
6132
6133 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
6134
6135         * modules/restrict: Remove; no longer needed now that we assume
6136         Autoconf 2.59 or later.
6137         * MODULES.html.sh: Remove 'restrict'.
6138         * modules/argp (Depends-on): Remove 'restrict'.
6139         * modules/base64 (Depends-on): Likewise.
6140         * modules/gc (Depends-on): Likewise.
6141         * modules/getaddrinfo (Depends-on): Likewise.
6142         * modules/glob (Depends-on): Likewise.
6143         * modules/inet_ntop (Depends-on): Likewise.
6144         * modules/inet_pton (Depends-on): Likewise.
6145         * modules/memxor (Depends-on): Likewise.
6146         * modules/regex (Depends-on): Likewise.
6147         * modules/strtok_r (Depends-on): Likewise.
6148         * modules/time_r (Depends-on): Likewise.
6149
6150 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
6151
6152         * m4/argp.m4 (gl_ARGP): Require AC_C_RESTRICT.
6153         * m4/gc.m4 (gl_PREREQ_GC): Likewise.
6154         * m4/glob.m4 (gl_PREREQ_GLOB): Likewise.
6155         * m4/inet_ntop.m4 (gl_PREREQ_INET_NTOP): Likewise.
6156         * m4/inet_pton.m4 (gl_PREREQ_INET_PTON): Likewise.
6157         * m4/memxor.m4 (gl_MEMXOR): Likewise.
6158         * m4/restrict.m4: Remove; no longer needed.  All remaining uses of
6159         gl_C_RESTRICT replaced by AC_C_RESTRICT.
6160
6161         Merge from coreutils.
6162         * m4/regex.m4 (gl_PREREQ_REGEX): Require AC_C_RESTRICT, not
6163         gl_C_RESTRICT, now that we assume Autoconf 2.59 or later.
6164         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Likewise.
6165         * m4/time_r.m4 (gl_TIME_R): Likewise.
6166
6167 2006-08-09  Karl Berry  <karl@gnu.org>
6168
6169         * config/srclist.txt: no more gettext-tools, per Bruno.
6170
6171 2006-08-08  Eric Blake  <ebb9@byu.net>
6172
6173         * modules/verror: New module.
6174         * MODULES.html.sh: Document it.
6175
6176 2006-08-08  Eric Blake  <ebb9@byu.net>
6177
6178         * lib/verror.h, lib/verror.c: New files.
6179
6180 2006-08-08  Eric Blake  <ebb9@byu.net>
6181
6182         * lib/verror.c (verror_at_line): Work around glibc bug 2997, so that
6183         verror_at_line output complies with GNU Coding Standards even when
6184         file is NULL.
6185
6186 2006-08-07  Bruno Haible  <bruno@clisp.org>
6187
6188         * lib/allocsa.h (sa_alignof) [_AIX]: Also consider 'long long' in newer
6189         versions of AIX.
6190         Reported by Ralf Wildenhues.
6191
6192 2006-08-07  Bruno Haible  <bruno@clisp.org>
6193
6194         * gnulib-tool (func_create_testdir): Wrap the set of autoconf snippets
6195         in an AC_DEFUN. Needed so that the autoconf snippets can use
6196         AC_REQUIRE.
6197
6198 2006-08-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6199
6200         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
6201         Initialize pkgdata_DATA.
6202         * modules/javaversion (Makefile.am): Add to pkgdata_DATA, rather than
6203         overriding it.
6204
6205 2006-08-06  Eric Blake  <ebb9@byu.net>
6206
6207         * lib/error.h: Fold in some upstream changes from glibc.
6208         * lib/error.c: Likewise.
6209
6210 2006-08-04  Bruno Haible  <bruno@clisp.org>
6211
6212         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
6213         Make the mostlyclean-local rule depend on mostlyclean-generic.
6214         Reported by Jim Meyering. Solution suggested by Ralf Wildenhues.
6215
6216 2006-07-31  Bruno Haible  <bruno@clisp.org>
6217
6218         * m4/localcharset.m4 (gl_LOCALCHARSET): Remove tests for <stddef.h>,
6219         <stdlib.h>, <string.h>.
6220
6221 2006-07-30  Bruno Haible  <bruno@clisp.org>
6222
6223         * modules/readlink (License): Change to LGPL.
6224
6225 2006-07-30  Bruno Haible  <bruno@clisp.org>
6226
6227         * modules/javaversion (Makefile.am): Distribute javaversion.java and
6228         javaversion.class. Also install javaversion.class in $(pkgdatadir) and
6229         set PKGDATADIR to point to it.
6230
6231 2006-07-30  Bruno Haible  <bruno@clisp.org>
6232
6233         * modules/csharpexec (configure.ac): Comment out macro invocation.
6234         * modules/javaexec (configure.ac): Likewise.
6235         * modules/javacomp-script (configure.ac): Likewise.
6236
6237         * modules/csharpcomp-script (configure.ac): Use AC_REQUIRE.
6238
6239 2006-07-30  Bruno Haible  <bruno@clisp.org>
6240
6241         * modules/clean-temp (Depends-on): Add linkedhash-list, remove
6242         linked-list.
6243
6244 2006-07-30  Bruno Haible  <bruno@clisp.org>
6245
6246         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Assume <string.h> exists.
6247
6248 2006-07-30  Bruno Haible  <bruno@clisp.org>
6249
6250         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
6251         Initialize MOSTLYCLEANFILES to core and *.stackdump, so that core dumps
6252         get removed.
6253
6254 2006-07-29  Bruno Haible  <bruno@clisp.org>
6255
6256         Make it possible for gnulib-tool to work with locally modified or
6257         augmented gnulib repositories.
6258         * gnulib-tool (func_usage): Document --local-dir option.
6259         (local_gnulib_dir): New variable.
6260         Handle --local-dir option.
6261         (func_lookup_file): New function.
6262         (func_all_modules, func_verify_module): Look also in $local_gnulib_dir.
6263         (func_get_description, func_get_filelist, func_get_description,
6264         func_get_filelist, func_get_dependencies, func_get_autoconf_snippet,
6265         func_get_automake_snippet, func_get_include_directive,
6266         func_get_license, func_get_maintainer): Use func_lookup_file.
6267         (func_import, func_create_testdir): Use func_lookup_file.
6268
6269 2006-07-29  Bruno Haible  <bruno@clisp.org>
6270
6271         * modules/setenv (Depends-on): Add unistd.
6272
6273 2006-07-29  Bruno Haible  <bruno@clisp.org>
6274
6275         * lib/setenv.c: Undo unintended modification done on 2006-02-27.
6276
6277 2006-07-29  Bruno Haible  <bruno@clisp.org>
6278
6279         * lib/localcharset.c: Assume <stddef.h>, <stdlib.h>, <string.h> exist.
6280
6281 2006-07-29  Bruno Haible  <bruno@clisp.org>
6282
6283         * gnulib-tool (import, update): If there is no Makefile.am, look at
6284         aclocal.m4, instead of bailing out.
6285
6286 2006-07-29  Bruno Haible  <bruno@clisp.org>
6287
6288         * gnulib-tool (func_usage): Revert most of the 2006-07-15 change.
6289         Categorize the options by when they are useful.
6290
6291 2006-07-29  Bruno Haible  <bruno@clisp.org>
6292
6293         * gnulib-tool (func_usage): Document option --no-libtool.
6294         Handle option --no-libtool.
6295         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am): Update
6296         for changed semantics of $libtool variable.
6297         (func_import): Likewise. If libtool is not used, show this through
6298         an option --no-libtool.
6299         (func_create_testdir): Update.
6300
6301 2006-07-29  Bruno Haible  <bruno@clisp.org>
6302
6303         * gnulib-tool (func_import): Extend error message about missing
6304         --doc-base.
6305
6306 2006-07-29  Bruno Haible  <bruno@clisp.org>
6307
6308         * gnulib-tool (func_import): Don't create the $docbase directory if
6309         there is no file to store there.
6310
6311 2006-07-29  Bruno Haible  <bruno@clisp.org>
6312
6313         * gnulib-tool (autoconf_minversion): If a --dir option is given and
6314         relevant, look for configure.ac there, not in the current directory.
6315         Also use a simple search for AC_PREREQ, not "autoconf --trace".
6316
6317 2006-07-29  Bruno Haible  <bruno@clisp.org>
6318
6319         * gnulib-tool (SORT): New variable.
6320         (func_usage): Undocument --assume-autoconf option.
6321         Remove --assume-autoconf option handling.
6322         (autoconf_minversion): Determine from the contents of configure.ac.
6323         (func_import): Remove autoconf_minversion handling.
6324         Suggested by Eric Blake.
6325
6326 2006-07-29  Bruno Haible  <bruno@clisp.org>
6327
6328         * doc/gnulib-tool.texi (gl_LIBTOOL): Mention --no-libtool option.
6329
6330 2006-07-29  Bruno Haible  <bruno@clisp.org>
6331
6332         * config/srclist.txt (*setenv.[ch]): Remove rules.
6333
6334 2006-07-28  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
6335
6336         * m4/inet_pton.m4, inet_ntop.m4: Check for netinet/in.h too.
6337
6338 2006-07-28  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
6339
6340         * lib/inet_ntop.h, inet_pton.h: Need to include netinet/in.h before
6341         arpa/inet.h.
6342
6343 2006-07-28  Simon Josefsson  <jas@extundo.com>
6344
6345         * modules/inet_ntop (Depends-on): Depend on arpa_inet.
6346         * modules/inet_pton (Depends-on): Likewise.
6347
6348 2006-07-28  Simon Josefsson  <jas@extundo.com>
6349
6350         * m4/netinet_in_h.m4: New file.
6351
6352 2006-07-28  Simon Josefsson  <jas@extundo.com>
6353
6354         * lib/inet_ntop.h, inet_pton.h: No need to guard netinet/in.h
6355         #include's.
6356
6357 2006-07-28  Simon Josefsson  <jas@extundo.com>
6358
6359         * lib/inet_ntop.h, inet_pton.h: No need to guard arpa/inet.h
6360         #include's.
6361
6362 2006-07-28  Paul Eggert  <eggert@cs.ucla.edu>
6363
6364         * lib/modechange.c (mode_compile): Numeric modes now affect setuid and
6365         setgid on directories only if they set these bits.
6366         * lib/modechange.h: Remove obsolete comment about masks.
6367
6368 2006-07-28  Eric Blake  <ebb9@byu.net>
6369
6370         * lib/regex_internal.h (struct re_dfa_t) [!_LIBC]: Avoid invalid C89
6371         macro expansion.
6372
6373 2006-07-28  Bruno Haible  <bruno@clisp.org>
6374
6375         * lib/inet_ntop.h, inet_pton.h: Use #if HAVE* instead of #ifdef HAVE*.
6376
6377 2006-07-28  Bruno Haible  <bruno@clisp.org>
6378
6379         * m4/mbchar.m4 (gl_MBCHAR): Also test for iswcntrl.
6380
6381 2006-07-28  Bruno Haible  <bruno@clisp.org>
6382
6383         * lib/mbchar.h (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit,
6384         iswgraph, iswlower, iswprint, iswpunct, iswspace, iswupper, iswxdigit):
6385         Define fallbacks.
6386         Avoids link error on FreeBSD 4.x.
6387         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
6388
6389         * lib/wcwidth.h (iswprint): Assume an ASCII compatible wide character
6390         encoding.
6391         * lib/mbswidth.c (iswcntrl): Likewise.
6392
6393 2006-07-27  Bruno Haible  <bruno@clisp.org>
6394
6395         * m4/stdint.m4 (gl_STDINT_H): Define __STDC_CONSTANT_MACROS during the
6396         test.
6397
6398 2006-07-27  Bruno Haible  <bruno@clisp.org>
6399
6400         * lib/stdint_.h (INT*_C, UINT*_C) [C++]: Define these if
6401         __STDC_CONSTANT_MACROS is defined, not if __STDC_LIMIT_MACROS is
6402         defined.
6403
6404 2006-07-26  Eric Blake  <ebb9@byu.net>
6405
6406         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Check for missing pipe.
6407
6408 2006-07-26  Eric Blake  <ebb9@byu.net>
6409
6410         * lib/mkstemp-safer.c [! HAVE_MKSTEMP]: Add prototype for platforms
6411         like mingw that lack mkstemp.
6412         * lib/pipe-safer.c (pipe_safer) [!HAVE_FUNC_PIPE]: Provide fallback to
6413         avoid compilation warning on mingw.
6414
6415 2006-07-26  Bruno Haible  <bruno@clisp.org>
6416
6417         * m4/stdint.m4 (gl_STDINT_H): Also verify the existence of the macros
6418         INT*_MIN, INT_LEAST*_MAX, INT_LEAST*_MIN, UINT_LEAST*_MAX,
6419         INT_FAST*_MIN, INTPTR_MIN.
6420
6421 2006-07-25  Bruno Haible  <bruno@clisp.org>
6422
6423         * modules/version-etc (Depends-on): Add stdarg.
6424
6425 2006-07-25  Bruno Haible  <bruno@clisp.org>
6426
6427         * m4/stdint.m4 (gl_INTEGER_TYPE_SUFFIX): Avoid 'eval' in front of
6428         complex commands.
6429
6430 2006-07-25  Bruno Haible  <bruno@clisp.org>
6431
6432         * lib/version-etc.c (version_etc_va): Use va_copy, assumed to be
6433         defined in <stdarg.h> or config.h.
6434
6435 2006-07-24  Paul Eggert  <eggert@cs.ucla.edu>
6436
6437         * m4/stdio-safer.m4 (gl_FOPEN_SAFER, gl_TMPFILE_SAFER): New macros.
6438         (gl_STDIO_SAFER): Remove.
6439
6440 2006-07-24  Paul Eggert  <eggert@cs.ucla.edu>
6441
6442         * MODULES.html.sh (File stream based Input/Output):
6443         Add fopen-safer, tmpfile-safer; remove stdio-safer.
6444         * modules/getusershell (Depends-on): Change stdio-safer to fopen-safer.
6445         * modules/fopen-safer, modules/tmpfile-safer: New files.
6446         * modules/stdio-safer: Remove.
6447
6448 2006-07-24  Bruno Haible  <bruno@clisp.org>
6449
6450         * modules/tmpdir: New file.
6451         * MODULES.html.sh (File system functions): Add it.
6452
6453 2006-07-24  Bruno Haible  <bruno@clisp.org>
6454
6455         * modules/javacomp (Depends-on): Add unistd, javaversion, binary-io,
6456         getline, pathname, fwriteerror, clean-temp, xvasprintf, strstr.
6457
6458 2006-07-24  Bruno Haible  <bruno@clisp.org>
6459
6460         * modules/clean-temp: New file.
6461
6462 2006-07-24  Bruno Haible  <bruno@clisp.org>
6463
6464         * m4/tmpdir.m4: New file, from GNU gettext.
6465
6466 2006-07-24  Bruno Haible  <bruno@clisp.org>
6467
6468         * lib/tmpdir.h: New file, from GNU gettext.
6469         * lib/tmpdir.c: New file, from GNU gettext.
6470
6471 2006-07-24  Bruno Haible  <bruno@clisp.org>
6472
6473         * lib/clean-temp.h: New file, from GNU gettext.
6474         * lib/clean-temp.c: New file, from GNU gettext.
6475
6476 2006-07-23  Eric Blake  <ebb9@byu.net>
6477
6478         * modules/stdio-safer (Files): Add tmpfile-safer.c.
6479         (Depends-on): Add binary-io.
6480
6481 2006-07-23  Eric Blake  <ebb9@byu.net>
6482
6483         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Add tmpfile-safer.c.
6484
6485 2006-07-23  Eric Blake  <ebb9@byu.net>
6486
6487         * lib/tmpfile-safer.c: New file.
6488         * lib/stdio-safer.h (fopen_safer): Add prototype.
6489         * lib/stdio--.h (tmpfile): Make safer.
6490
6491 2006-07-23  Bruno Haible  <bruno@clisp.org>
6492
6493         * lib/gl_anylinked_list2.h (ASYNCSAFE): New macro.
6494         (gl_linked_add_first, gl_linked_add_last, gl_linked_add_before,
6495         gl_linked_add_after, gl_linked_add_at, gl_linked_remove_node,
6496         gl_linked_remove_at): Use it.
6497
6498 2006-07-22  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
6499         and Simon Josefsson <jas@extundo.com>
6500
6501         * lib/getaddrinfo.h (AI_PASSIVE): Make sure it is defined.
6502
6503         * lib/getaddrinfo.c (getaddrinfo): Support AI_PASSIVE.
6504
6505 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
6506
6507         * modules/close-stream: New file.
6508         * modules/closeout (Description): Make it clear that it exits
6509         with a diagnostic on error.
6510         (Depends-on): Add close-stream.  Remove fpending, stdbool.
6511         * MODULES.html.sh (File stream based Input/Output): Add close-stream.
6512
6513 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
6514
6515         * m4/close-stream.m4: New file.
6516
6517 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
6518
6519         * lib/close-stream.c, lib/close-stream.h: New files.
6520
6521 2006-07-22  Bruno Haible  <bruno@clisp.org>
6522
6523         Merge from GNU gettext 0.15.
6524
6525         2006-05-01  Bruno Haible  <bruno@clisp.org>
6526
6527                 * build-aux/javacomp.sh.in: Update for changed javacomp.m4.
6528
6529         2006-07-22  Bruno Haible  <bruno@clisp.org>
6530
6531                 * modules/javaversion: New file.
6532                 * MODULES.html.sh (Java): Add javaversion.
6533
6534         2006-03-12  Bruno Haible  <bruno@clisp.org>
6535
6536                 * build-aux/javaexec.sh.in: Update for changed javaexec.m4.
6537
6538         2005-12-04  Bruno Haible  <bruno@clisp.org>
6539
6540                 * build-aux/csharpexec.sh.in: Add support for 'clix' launcher
6541                 (untested).
6542
6543         2006-06-21  Bruno Haible  <bruno@clisp.org>
6544
6545                 Avoid warnings from recent versions of mcs.
6546                 * build-aux/csharpcomp.sh.in (options_mcs): Don't use options
6547                 -o, -L, -r any more. Use options documented since mcs-1.0
6548                 instead. Similarly for -g.
6549
6550         2005-12-04  Bruno Haible  <bruno@clisp.org>
6551
6552                 * build-aux/csharpcomp.sh.in: Suffix for resources is
6553                 .resources, not .resource.
6554
6555         2005-07-09  Bruno Haible  <bruno@clisp.org>
6556
6557                 * build-aux/csharpcomp.sh.in (options_csc): For -l option,
6558                 add a .dll suffix.
6559                 Reported by Mark Junker <mjscod@gmx.de>.
6560
6561         2006-07-22  Bruno Haible  <bruno@clisp.org>
6562
6563                 * modules/gettext: Upgrade to gettext-0.15.
6564                 (Files): Remove m4/isc-posix.m4. Add m4/lock.m4,
6565                 m4/visibility.m4.
6566                 Replace m4/inttypes.m4 with m4/inttypes-h.m4.
6567
6568 2006-07-22  Bruno Haible  <bruno@clisp.org>
6569
6570         Merge from GNU gettext 0.15.
6571
6572         2006-03-25  Bruno Haible  <bruno@clisp.org>
6573
6574                 * lib-link.m4 (AC_LIB_LINKFLAGS_FROM_LIBS): New macro.
6575
6576         2006-07-21  Bruno Haible  <bruno@clisp.org>
6577
6578                 * javacomp.m4 (gt_JAVACOMP): Convert target_version "null" to
6579                 "1.1".
6580
6581         2006-05-09  Bruno Haible  <bruno@clisp.org>
6582
6583                 * javacomp.m4 (gt_JAVACOMP): On Cygwin, set
6584                 CLASSPATH_SEPARATOR to a semicolon. Use CLASSPATH_SEPARATOR
6585                 for the conftestver execution.
6586
6587         2006-05-01  Bruno Haible  <bruno@clisp.org>
6588
6589                 * javacomp.m4 (gt_JAVACOMP): Accept a source-version and an
6590                 optional target-version argument. Verify that the compiler
6591                 groks source of the specified source-version, or add -source
6592                 option as necessary. Verify that the compiler produces
6593                 bytecode in the specified target-version, or add -target and
6594                 -source options as necessary. Make the result of the test
6595                 available as variable CONF_JAVAC. Also log error output in
6596                 config.log.
6597
6598         2006-03-11  Bruno Haible  <bruno@clisp.org>
6599
6600                 * javacomp.m4 (gt_JAVACOMP): Treat gcj-4.x like gcj-3.x.
6601
6602         2006-05-09  Bruno Haible  <bruno@clisp.org>
6603
6604                 * javaexec.m4 (gt_JAVAEXEC): On Cygwin, set
6605                 CLASSPATH_SEPARATOR to a semicolon.
6606
6607         2006-03-12  Bruno Haible  <bruno@clisp.org>
6608
6609                 * javaexec.m4 (gt_JAVAEXEC): Make the result of the test
6610                 available as variable CONF_JAVA, for subsequent autoconf
6611                 tests. Also log error output in config.log.
6612
6613         2006-07-19  Bruno Haible  <bruno@clisp.org>
6614
6615                 * getline.m4 (AM_FUNC_GETLINE): When cross-compiling, assume
6616                 that getline works on glibc2 systems. Needed to avoid trouble
6617                 in relocatable.c.
6618                 Reported by Nils Magnus Larsgard <nmlarsgaard@atmel.no>.
6619
6620         2005-12-04  Bruno Haible  <bruno@clisp.org>
6621
6622                 * csharpexec.m4 (gt_CSHARPEXEC): Add support for 'clix'
6623                 launcher (untested).
6624
6625         2005-12-04  Bruno Haible  <bruno@clisp.org>
6626
6627                 * csharpcomp.m4 (gt_CSHARPCOMP): Also set CSHARPCOMPFLAGS.
6628
6629         2006-07-22  Bruno Haible  <bruno@clisp.org>
6630
6631                 * gettext.m4: Update from GNU gettext-0.15.
6632                 * nls.m4: Likewise.
6633                 * po.m4: Likewise.
6634                 * inttypes-pri.m4: Likewise.
6635                 * inttypes-h.m4: Renamed from inttypes.m4.
6636                 (gl_HEADER_INTTYPES_H): Renamed from gt_HEADER_INTTYPES_H.
6637
6638 2006-07-22  Bruno Haible  <bruno@clisp.org>
6639
6640         Merge from GNU gettext 0.15.
6641
6642         2005-07-05  Bruno Haible  <bruno@clisp.org>
6643
6644                 * printf-args.c (printf_fetchargs): Work around broken
6645                 definition of wint_t on mingw.
6646
6647         2005-02-12  Bruno Haible  <bruno@clisp.org>
6648
6649                 * xallocsa.h: Add extern "C" for C++.
6650
6651         2006-05-17  Bruno Haible  <bruno@clisp.org>
6652
6653                 Cygwin portability.
6654                 * progreloc.c (WIN32_NATIVE): Renamed from WIN32.
6655
6656         2006-04-30  Bruno Haible  <bruno@clisp.org>
6657
6658                 * progreloc.c: Include <mach-o/dyld.h> if available.
6659                 (find_executable): Use _NSGetExecutablePath when possible.
6660
6661         2006-05-06  Charles Wilson  <cygwin@cwilson.fastmail.fm>
6662
6663                 * progreloc.c (maybe_executable) [CYGWIN]: Use the access()
6664                 function.
6665
6666         2005-12-29  Bruno Haible  <bruno@clisp.org>
6667
6668                 * progreloc.c (set_program_name_and_installdir): Fix
6669                 compilation error.
6670
6671         2005-12-04  Bruno Haible  <bruno@clisp.org>
6672
6673                 Cygwin portability.
6674                 * progreloc.c: Include <windows.h> also on Cygwin.
6675                 (find_executable): Add support for Cygwin.
6676                 (set_program_name_and_installdir): Handle also platforms with
6677                 nonempty EXEEXT.
6678
6679         2006-07-11  Bruno Haible  <bruno@clisp.org>
6680
6681                 * javacomp.c: Fix a comment.
6682                 Reported by Jim Meyering.
6683
6684         2006-04-30  Bruno Haible  <bruno@clisp.org>
6685
6686                 * javacomp.h (compile_java_class): Add source_version,
6687                 target_version arguments.
6688                 * javacomp.c: Rewritten to choose only a compiler that
6689                 respects the specified source_version and target_version.
6690
6691         2006-06-27  Bruno Haible  <bruno@clisp.org>
6692
6693                 Assume correct S_ISDIR macro.
6694                 * mkdtemp.c: Remove test of STAT_MACROS_BROKEN.
6695
6696         2006-07-22  Bruno Haible  <bruno@clisp.org>
6697
6698                 * javaversion.h: New file, from GNU gettext.
6699                 * javaversion.c: New file, from GNU gettext.
6700                 * javaversion.java: New file, from GNU gettext.
6701                 * javaversion.class: New file, from GNU gettext.
6702
6703         2006-05-17  Bruno Haible  <bruno@clisp.org>
6704
6705                 Cygwin portability.
6706                 * javaexec.c (execute_java_class): Test for jview program
6707                 also on Cygwin.
6708
6709         2006-04-09  Bruno Haible  <bruno@clisp.org>
6710
6711                 * fatal-signal.c: Don't include string.h.
6712                 (at_fatal_signal): Use a copying loop instead of memcpy.
6713
6714         2005-12-04  Bruno Haible  <bruno@clisp.org>
6715
6716                 * csharpexec.c: Add support for 'clix' launcher (untested).
6717                 (execute_csharp_using_sscli): New function.
6718                 (execute_csharp_program): Call it.
6719
6720         2006-06-21  Bruno Haible  <bruno@clisp.org>
6721
6722                 Avoid warnings from recent versions of mcs.
6723                 * csharpcomp.c (compile_csharp_using_mono): Don't use options
6724                 -o, -L, -r any more. Use options documented since mcs-1.0
6725                 instead. Similarly for -g.
6726
6727         2005-07-09  Bruno Haible  <bruno@clisp.org>
6728
6729                 * csharpcomp.c (compile_csharp_using_sscli): For -l option,
6730                 add a .dll suffix.
6731                 Reported by Mark Junker <mjscod@gmx.de>.
6732
6733         2006-06-17  Bruno Haible  <bruno@clisp.org>
6734
6735                 * config.charset: Update for NetBSD 3.0.
6736
6737         2006-05-17  Bruno Haible  <bruno@clisp.org>
6738
6739                 Cygwin portability.
6740                 * localcharset.c (WIN32_NATIVE): Renamed from WIN32.
6741
6742         2006-05-16  Bruno Haible  <bruno@clisp.org>
6743
6744                 * localcharset.c [CYGWIN]: Include <windows.h>.
6745                 (get_charset_aliases): For Cygwin, return the same CPxxx
6746                 aliases list as under WIN32.
6747                 (locale_charset) [CYGWIN]: Try to retrieve the encoding from
6748                 the environment variables. Fall back to GetACP().
6749
6750         2006-04-05  Bruno Haible  <bruno@clisp.org>
6751
6752                 * config.charset: Update Juan Manuel Guerrero's address.
6753
6754         2005-02-12  Bruno Haible  <bruno@clisp.org>
6755
6756                 * allocsa.h: Add extern "C" for C++.
6757
6758         2005-02-10  Bruno Haible  <bruno@clisp.org>
6759
6760                 * allocsa.h (sa_alignof): Define differently with AIX xlc, to
6761                 avoid a bug of this compiler on AIX 3.2.5 dealing with enums.
6762
6763         2006-07-22  Bruno Haible  <bruno@clisp.org>
6764
6765                 * gettext.h: Update to GNU gettext-0.15.
6766
6767 2006-07-22  Bruno Haible  <bruno@clisp.org>
6768
6769         * config/srclist.txt: Resync printf-args.c, vasnprintf.c,
6770         localcharset.c, mkdtemp.c, config.rpath, lib-ld.m4, lib-link.m4,
6771         lib-prefix.m4, longdouble.m4, ssize_t.m4.
6772
6773 2006-07-21  Eric Blake  <ebb9@byu.net>
6774
6775         * modules/stdlib-safer: New file.
6776         * MODULES.html.sh (File stream based Input/Output): Add
6777         stdlib-safer.
6778
6779 2006-07-21  Eric Blake  <ebb9@byu.net>
6780
6781         * lib/stdlib-safer.h: New file from coreutils, required by
6782         stdlib--.h.
6783
6784 2006-07-20  Paul Eggert  <eggert@cs.ucla.edu>
6785
6786         * gnulib-tool (func_usage): Document --assume-autoconf='latest-stable'.
6787
6788 2006-07-20  Bruno Haible  <bruno@clisp.org>
6789
6790         * gnulib-tool: Recognize new option --assume-autoconf.
6791         (autoconf_minversion): New variable.
6792         (func_get_filelist): Use it to decide whether to add onceonly_2_57.m4.
6793
6794 2006-07-20  Bruno Haible  <bruno@clisp.org>
6795
6796         * MODULES.html.sh (func_all_modules): Add a missing func_begin_table.
6797
6798 2006-07-19  Derek R. Price  <derek@ximbiot.com>
6799
6800         * lib/getaddrinfo.h: Don't define unimplemented AI_* flags.
6801         Reindent and repaginate.
6802
6803 2006-07-19  Derek Price  <derek@ximbiot.com>
6804
6805         * doc/gnulib.texi (Libtool and Windows):  Eliminate passive voice.
6806         Correct grammar.
6807
6808 2006-07-17  Bruno Haible  <bruno@clisp.org>
6809
6810         * modules/list: New file.
6811         * modules/array-list: New file.
6812         * modules/carray-list, modules/carray-list-tests: New files.
6813         * modules/linked-list, modules/linked-list-tests: New files.
6814         * modules/avltree-list, modules/avltree-list-tests: New files.
6815         * modules/rbtree-list, modules/rbtree-list-tests: New files.
6816         * modules/linkedhash-list, modules/linkedhash-list-tests: New files.
6817         * modules/avltreehash-list, modules/avltreehash-list-tests: New files.
6818         * modules/rbtreehash-list, modules/rbtreehash-list-tests: New files.
6819         * modules/oset: New file.
6820         * modules/array-oset: New file.
6821         * modules/avltree-oset, modules/avltree-oset-tests: New files.
6822         * modules/rbtree-oset, modules/rbtree-oset-tests: New files.
6823         * tests/test-carray_list.c: New file.
6824         * tests/test-linked_list.c: New file.
6825         * tests/test-avltree_list.c: New file.
6826         * tests/test-rbtree_list.c: New file.
6827         * tests/test-linkedhash_list.c: New file.
6828         * tests/test-avltreehash_list.c: New file.
6829         * tests/test-rbtreehash_list.c: New file.
6830         * tests/test-avltree_oset.c: New file.
6831         * tests/test-rbtree_oset.c: New file.
6832         * MODULES.html.sh (Container data structures): New section.
6833
6834 2006-07-17  Bruno Haible  <bruno@clisp.org>
6835
6836         * m4/gl_list.m4: New file.
6837
6838 2006-07-17  Bruno Haible  <bruno@clisp.org>
6839
6840         * lib/gl_list.h: New file.
6841         * lib/gl_list.c: New file.
6842         * lib/gl_array_list.h: New file.
6843         * lib/gl_array_list.c: New file.
6844         * lib/gl_carray_list.h: New file.
6845         * lib/gl_carray_list.c: New file.
6846         * lib/gl_linked_list.h: New file.
6847         * lib/gl_linked_list.c: New file.
6848         * lib/gl_anylinked_list1.h: New file.
6849         * lib/gl_anylinked_list2.h: New file.
6850         * lib/gl_avltree_list.h: New file.
6851         * lib/gl_avltree_list.c: New file.
6852         * lib/gl_anyavltree_list1.h: New file.
6853         * lib/gl_anyavltree_list2.h: New file.
6854         * lib/gl_rbtree_list.h: New file.
6855         * lib/gl_rbtree_list.c: New file.
6856         * lib/gl_anyrbtree_list1.h: New file.
6857         * lib/gl_anyrbtree_list2.h: New file.
6858         * lib/gl_anytree_list1.h: New file.
6859         * lib/gl_anytree_list2.h: New file.
6860         * lib/gl_linkedhash_list.h: New file.
6861         * lib/gl_linkedhash_list.c: New file.
6862         * lib/gl_anyhash_list1.h: New file.
6863         * lib/gl_anyhash_list2.h: New file.
6864         * lib/gl_avltreehash_list.h: New file.
6865         * lib/gl_avltreehash_list.c: New file.
6866         * lib/gl_rbtreehash_list.h: New file.
6867         * lib/gl_rbtreehash_list.c: New file.
6868         * lib/gl_anytreehash_list1.h: New file.
6869         * lib/gl_anytreehash_list2.h: New file.
6870
6871         * lib/gl_oset.h: New file.
6872         * lib/gl_oset.c: New file.
6873         * lib/gl_array_oset.h: New file.
6874         * lib/gl_array_oset.c: New file.
6875         * lib/gl_avltree_oset.h: New file.
6876         * lib/gl_avltree_oset.c: New file.
6877         * lib/gl_rbtree_oset.h: New file.
6878         * lib/gl_rbtree_oset.c: New file.
6879         * lib/gl_anytree_oset.h: New file.
6880
6881 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
6882
6883         * m4/mkancesdirs.m4: New file.
6884         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Mention dirchownmod.c,
6885         dirchownmod.h.  Don't require AC_FUNC_ALLOCA, gl_AFS, gl_CHDIR_SAFER;
6886         no longer needed.  Require gl_FUNC_LCHOWN, since dirchownmod.c needs
6887         it.
6888
6889 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
6890
6891         * lib/dirchownmod.c, lib/dirchownmod.h, lib/mkancesdirs.c:
6892         * lib/mkancesdirs.h: New files.
6893         * lib/mkdir-p.c: Don't include alloca.h, stdio.h, sys/types.h,
6894         unistd.h, string.h, chdir-safer.h, dirname.h, lchmod.h, lchown.h,
6895         save-cwd.h.  Instead, include dirchownmod.h and mkancesdirs.h.
6896         (make_dir_parents): New args MAKE_ANCESTOR, OPTIONS, ANNOUNCE,
6897         MODE_BITS.  Remove options VERBOSE_FMT_STRING, CWD_ERRNO.  All
6898         callers changed.  Revamp internals significantly, by not
6899         attempting to create directories that are temporarily more
6900         permissive than the final results.  Do not attempt to use
6901         save_cwd/restore_cwd; it isn't worth it for mkdir and install.
6902         This removes some race conditions, fixes some bugs, and simplifies
6903         things.  Use new dirchownmod function to do owner and mode changes.
6904         * lib/mkdir-p.h: Likewise.
6905         * lib/modechange.c (octal_to_mode): New function.
6906         (struct mode_change): New member mentioned.
6907         (make_node_op_equals): New arg mentioned.  All callers changed.
6908         (mode_compile): Keep track of which mode bits the user has explicitly
6909         mentioned.
6910         (mode_adjust): New arg DIR, so that we implement the X op correctly.
6911         New arg PMODE_BITS, to keep track of which mode bits the user
6912         mentioned; it treats S_ISUID and S_ISGID speciall.
6913         All callers changed.
6914         * lib/modechange.h: Likewise.
6915
6916 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
6917
6918         * MODULES.html.sh: Add mkancestors.
6919         * modules/mkancesdirs: New module.
6920         * modules/mkdir-p (Files): Remove lib/chdir-safer.c, lib/chdir-safer.h,
6921         lib/same-inode.h, m4/afs.m4, m4/chdir-safer.m4.
6922         The chdir-safer and afs files are now orphans; I'll remove them
6923         unless someone speaks up.
6924         Add lib/dirchownmod.c, lib/dirchownmod.h.
6925         (Depends-on): Remove alloca, chown, save-cwd, dirname.
6926         Add lchown, mkancesdirs.
6927         (Maintainer): Add self.
6928
6929 2006-07-15  Karl Berry  <karl@gnu.org>
6930
6931         * gnulib-tool: help message wording/arrangement.
6932
6933 2006-07-14  Simon Josefsson  <jas@extundo.com>
6934
6935         * doc/gnulib.texi (Libtool and Windows): New section.
6936
6937 2006-07-12  Simon Josefsson  <jas@extundo.com>
6938
6939         * modules/gendocs (License): Fix license, approved by Karl.
6940
6941 2006-07-12  Eric Blake  <ebb9@byu.net>
6942
6943         * MODULES.html.sh: Add gendocs.
6944
6945 2006-07-11  Eric Blake  <ebb9@byu.net>
6946
6947         * modules/fdl: New module, to install doc/fdl.texi.
6948         * MODULES.html.sh: Add new section for documentation modules.
6949         * gnulib-tool: Avoid space-tab.
6950         (--doc-base): New option, to manage files from doc.
6951
6952 2006-07-11  Eric Blake  <ebb9@byu.net>
6953
6954         * m4/absolute-header.m4: Fix comments to match recent change.
6955
6956 2006-07-11  Eric Blake  <ebb9@byu.net>
6957
6958         * gnulib-tool: List --doc-base before --tests-base.
6959
6960 2006-07-11  Derek R. Price  <derek@ximbiot.com>
6961
6962         * lib/glob.c: s/NAMLEN/_D_EXACT_NAMLEN/.
6963
6964 2006-07-11  Bruno Haible  <bruno@clisp.org>
6965
6966         * README: Mention where to put documentation.
6967
6968 2006-07-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6969
6970         * doc/functions.texi, gnulib-tool.texi, gnulib.texi: Fix some typos.
6971
6972 2006-07-10  Paul Eggert  <eggert@cs.ucla.edu>
6973
6974         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Like today's change
6975         to stdint.m4.
6976
6977 2006-07-10  Paul Eggert  <eggert@cs.ucla.edu>
6978
6979         * m4/stdint.m4 (gl_STDINT_H): Like yesterday's change to
6980         absolute-header.m4.  Also, set ABSOLUTE_STDINT_H to a string
6981         "no/such/file/stdint.h" when there is no such file, so that
6982         the resulting C code can be parsed by dodgy compilers.
6983         Problems reported by Bob Proulx.
6984
6985 2006-07-10  Derek R. Price  <derek@ximbiot.com>
6986
6987         * lib/backupfile.c, dirfd.h, fts.c, getcwd.c, glob.c, glob_.h:
6988         Ignore the obsolescent !HAVE_DIRENT_H case.  Consolidate NAMLEN
6989         macros into the GNU _D_EXACT_NAMLEN.
6990         * lib/savedir.c:  Likewise.
6991         (savedirstream): Use _D_EXACT_NAMLEN in preference to strlen.
6992
6993 2006-07-10  Derek R. Price  <derek@ximbiot.com>
6994         and Paul Eggert  <eggert@cs.ucla.edu>
6995
6996         * m4/backupfile.m4, d-ino.m4, d-type.m4, dirfd.m4, fts.m4, getcwd.m4:
6997         * m4/savedir.m4:
6998         Ignore the obsolescent !HAVE_DIRENT_H case.  Consolidate NAMLEN
6999         macros into the GNU _D_EXACT_NAMLEN.
7000
7001 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
7002
7003         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Use "" rather than <>
7004         around the absolute name, to work around a problem with the HP-UX
7005         11.23 native C compiler, reported by Bob Proulx.
7006
7007 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
7008
7009         * doc/maintain.texi, make-stds.texi: Sync from
7010         <http://savannah.gnu.org/projects/gnustandards>.
7011
7012 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
7013
7014         * build-aux/depcomp, build-aux/install-sh: Sync from Automake.
7015
7016 2006-07-09  Jim Meyering  <jim@meyering.net>
7017
7018         * m4/glob.m4: Remove a doubled word in a comment.
7019
7020 2006-07-09  Jim Meyering  <jim@meyering.net>
7021
7022         * lib/argp-pv.c: Remove a doubled word in a comment.
7023         * lib/check-version.c (check_version): Likewise.
7024         * lib/javacomp.c (compile_java_class): Likewise.
7025
7026 2006-07-08  Paul Eggert  <eggert@cs.ucla.edu>
7027
7028         * gnulib-tool (func_get_filelist): Don't echo m4/onceonly_2_57.m4,
7029         for the benefit of people using Autoconf 2.60.  If you want to
7030         support older Autoconf versions you can copy m4/onceonly_2_57.m4
7031         (or m4/onceonly.m4, if pre-2.57) manually.
7032
7033 2006-07-08  Jim Meyering  <jim@meyering.net>
7034
7035         * m4/link-follow.m4: Remove one of two adjacent "whether"s in a
7036         comment.
7037         * m4/getopt.m4: Remove one of two adjacent "your"s in a comment.
7038         * m4/regex.m4 (gl_REGEX): Remove one of two adjacent "the"s in a
7039         comment.
7040
7041 2006-07-08  Jim Meyering  <jim@meyering.net>
7042
7043         * lib/getndelim2.h (getndelim2): Remove doubled "after" in comment.
7044
7045 2006-07-07  Simon Josefsson  <jas@extundo.com>
7046
7047         * tests/test-crc.c: Change expected crc value, the test vector
7048         were probably computed using the old broken crc.c?
7049
7050 2006-07-06  Simon Josefsson  <jas@extundo.com>
7051
7052         * modules/sys_socket (Files): Add m4/sockpfaf.m4 (this module is
7053         now the canonical place for the M4 file).
7054
7055         * modules/getaddrinfo (Files): Remove m4/sockpfaf.m4, we get it
7056         from the sys_socket dependency now.
7057
7058         * modules/inet_pton (Files): Ditto.
7059
7060         * modules/inet_ntop (Files): Ditto.
7061
7062 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
7063
7064         * modules/getusershell (configure.ac): Use gl_FUNC_GETUSERSHELL,
7065         not gl_PREREQ_GETUSERSHELL.
7066
7067 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
7068
7069         * m4/_inttypes_h.m4 (gl_INTTYPES_H): Use AC_CHECK_DECLS_ONCE
7070         with only one argument, for Autoconf 2.60.
7071         * m4/fileblocks.m4 (gl_PREREQ_FILEBLOCKS): AC_CHECK_DECLS_ONCE may
7072         expand to nothing, so add a shell command to avoid syntax error.
7073         * m4/getpass.m4 (gl_PREREQ_GETPASS): Likewise.
7074
7075 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
7076
7077         * lib/strtod.c (strtod): cast the argument of tolower to unsigned char.
7078
7079 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
7080
7081         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Don't check for getenv decl;
7082         no longer needed.  Check for isblank decl.
7083         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Don't check for getenv decl.
7084         * m4/regex.m4 (gl_PREREQ_REGEX): Dheck for isblank decl instead
7085         of existence.
7086
7087 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
7088
7089         * lib/getloadavg.c: Use __VMS, not VMS.
7090         * lib/getopt.c: Likewise.
7091         * lib/getpagesize.h: Likewise.
7092         * lib/glob.c: Remove most VMS cruft; it hasn't been tested for a while
7093         and probably does not work.
7094
7095 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
7096
7097         * lib/.cppi-disable: Add wcwidth.
7098         * lib/fnmatch.c (ISBLANK): Remove.  All uses changed to isblank.
7099         (isblank) [! (defined isblank || HAVE_DECL_ISBLANK)]: New macro.
7100         (ISGRAPH): Remove.  All uses changed to isgraph.
7101         (FOLD) [!defined _LIBC]: Remove special case.
7102         * lib/getdate.y (lookup_word): Remove no-longer-needed call to islower.
7103         * lib/regex_internal.h (isblank): Depend on HAVE_DECL_ISBLANK, not
7104         HAVE_ISBLANK.
7105         * lib/strftime.c (TOLOWER, TOUPPER) [!defined _LIBC]: Remove special
7106         case.
7107
7108 2006-07-06  Jim Hyslop  <jhyslop@dreampossible.ca>  (tiny change)
7109
7110         * lib/getaddrinfo.c: Changes to compile under MSVC6: changed
7111         '#if WIN32_NATIVE' to '#ifdef' & moved WSAAPI macro inside
7112         brackets.  Other minor changes to suppress some compiler
7113         warnings.
7114
7115 2006-07-06  Derek R. Price  <derek@ximbiot.com>
7116         and Paul Eggert  <eggert@cs.ucla.edu>
7117
7118         * m4/backupfile.m4 (gl_BACKUPFILE): Check for dirent.h, instead
7119         of invoking obsolescent AC_HEADER_DIRENT macro.
7120         * m4/d-ino.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_INO): Likewise.
7121         * m4/d-type.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Likewise.
7122         * m4/dirfd.m4 (gl_FUNC_DIRFD): Likewise.
7123         * m4/fts.m4 (gl_FUNC_FTS_CORE): Likewise.
7124         * m4/getcwd.m4 (gl_PREREQ_GETCWD): Likewise.
7125         * m4/glob.m4 (gl_PREREQ_GLOB): Likewise.
7126         * m4/savedir.m4 (gl_SAVEDIR): Likewise.
7127         * m4/readdir.m4: Remove; no longer needed.
7128
7129 2006-07-06  Derek R. Price  <derek@ximbiot.com>
7130         and Paul Eggert  <eggert@cs.ucla.edu>
7131
7132         * lib/backupfile.c [HAVE_DIRENT_H && ! HAVE_NDIR_H]:
7133         Don't worry about this obsolete case any more.
7134         (HAVE_DIR): Remove.  All uses removed; we now assume you can read
7135         directories.
7136         * lib/dirfd.h [HAVE_DIRENT_H && ! HAVE_NDIR_H]: Don't
7137         worry about this obsolete case any more.
7138         * lib/fts.c: Likewise.
7139         * lib/getcwd.c: Likewise.
7140         * lib/glob.h: Likewise.
7141         * lib/savedir.c: Likewise.
7142
7143 2006-07-05  Paul Eggert  <eggert@cs.ucla.edu>
7144
7145         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Use AC_CHECK_DECLS_ONCE
7146         rather than AC_CHECK_DECLS for strtoimax and strtoumax.
7147         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Remove; no longer
7148         needed.
7149         All uses removed.
7150         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
7151         * m4/strtoul.m4 (gl_PREREQ_STRTOUL): Likewise.
7152         * m4/exclude.m4 (gl_EXCLUDE): Don't check for isascii; no longer
7153         needed.
7154         * m4/getdate.m4 (gl_GETDATE): Likewise.
7155         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Likewise.
7156         * m4/memcasecmp.m4 (gl_MEMCASECMP): Likewise.
7157         * m4/strtod.m4 (gl_FUNC_STRTOD): Likewise.
7158         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
7159         * m4/strtoul.m4 (gl_PREREQ_STRTOUL): Likewise.
7160         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
7161         * m4/exclude.m4 (gl_EXCLUDE): Don't require AC_C_INLINE; no longer
7162         needed.
7163
7164 2006-07-05  Paul Eggert  <eggert@cs.ucla.edu>
7165
7166         * lib/memcasecmp.c: Include <limits.h>.
7167         (memcasecmp): Don't assume UCHAR_MAX <= INT_MAX.
7168         * lib/strtod.c (strtod): Don't assume isspace works on negative chars.
7169         Don't assume isdigit succeeds only on '0' through '9'.
7170
7171 2006-07-05  Eric Blake  <ebb9@byu.net>
7172
7173         * modules/getaddrinfo (Depends-on): Add snprintf.
7174
7175 2006-07-05  Eric Blake  <ebb9@byu.net>
7176
7177         * m4/sockpfaf.m4 (gl_SOCKET_FAMILIES): Use gl_HEADER_SYS_SOCKET
7178         to avoid 'header present but could not be compiled' on cygwin.
7179
7180 2006-07-05  Eric Blake  <ebb9@byu.net>
7181
7182         * lib/getaddrinfo.h (NI_NUMERICHOST, NI_NUMERICSERV): Define if
7183         missing from netdb.h.
7184         * lib/getaddrinfo.c (includes): Include inet_ntop and snprintf.
7185
7186 2006-07-05  Derek R. Price  <derek@ximbiot.com>
7187
7188         * m4/calloc.m4 (_AC_FUNC_CALLOC_IF): Don't require AC_HEADER_STDC;
7189         no longer needed.
7190         * m4/exclude.m4 (gl_EXCLUDE): Likewise.
7191         * m4/getdate.m4 (gl_GETDATE): Likewise.
7192         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Likewise.
7193         * m4/memcasecmp.m4 (gl_MEMCASECMP): Likewise.
7194         * m4/strtod.m4 (gl_FUNC_STRTOD): Likewise.
7195         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
7196         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
7197
7198 2006-07-05  Derek R. Price  <derek@ximbiot.com>
7199
7200         * lib/exclude.c (IN_CTYPE_DOMAIN, is_space): Remove; no longer needed.
7201         All uses of is_space replaced by isspace.
7202         * lib/exit.h: Don't talk about STDC_HEADERS.
7203         * lib/fnmatch.c (ISASCII): Remove; no longer needed.  All uses removed.
7204         (ISPRINT, ISDIGIT, ISALNUM, ISALPHA, ISCNTRL, ISLOWER, ISPUNCT):
7205         (ISSPACE, ISUPPER, ISXDIGIT): Remove; no longer needed.  All uses
7206         replaced by isprint etc.
7207         * lib/getdate.y (IN_CTYPE_DOMAIN, ISSPACE, ISALPHA, ISLOWER): Likewise.
7208         * lib/getusershell.c (IN_CTYPE_DOMAIN, ISSPACE): Likewise.
7209         * lib/memcasecmp.c (IN_CTYPE_DOMAIN, ISLOWER, TOUPPER): Likewise.
7210         * lib/strtod.c (IN_CTYPE_DOMAIN, ISSPACE, ISDIGIT, TOLOWER): Likewise.
7211         * lib/strtol.c (IN_CTYPE_DOMAIN): Likewise.
7212         * lib/xstrtol.c (IN_CTYPE_DOMAIN, ISSPACE): Likewise.
7213
7214 2006-07-05  Bruno Haible  <bruno@clisp.org>
7215
7216         * m4/strndup.m4 (gl_FUNC_STRNDUP): When cross-compiling, check whether
7217         the function exists, before testing against AIX.
7218         Reported by Martin Lambers <marlam@marlam.de>.
7219
7220 2006-07-04  Paul Eggert  <eggert@cs.ucla.edu>
7221
7222         * modules/cycle-check (lib_SOURCES): Add same-inode.h.
7223         From Mark D. Baushke.
7224
7225 2006-07-04  Paul Eggert  <eggert@cs.ucla.edu>
7226
7227         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Prepend three slashes
7228         to the absolute name, not just one, to bypass Sun C 5.8's
7229         "warning: #include of /usr/include/... may be non-portable".
7230
7231 2006-07-04  Eric Blake  <ebb9@byu.net>
7232
7233         * modules/dirname-tests: New test module.
7234         * tests/test-dirname.c: New file, replacing dirname.c
7235         TEST_DIRNAME section that was recently deleted.
7236
7237 2006-07-04  Bruno Haible  <bruno@clisp.org>
7238
7239         Assume ANSI C header files and <ctype.h> functions.
7240         * lib/mbswidth.c (IN_CTYPE_DOMAIN, ISPRINT, ISCNTRL): Remove macros.
7241         (mbsnwidth): Use isprint, iscntrl instead.
7242
7243 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
7244
7245         Merge from coreutils.
7246         * MODULES.html.sh: Add xstrtold.
7247         * modules/xstrtold: New file.
7248         * modules/cycle-check (Files): Add lib/same-inode.h.
7249         * modules/dirname (Files): Add m4/double-slash-root.m4.
7250         * modules/getcwd (Files): Add m4/getcwd-abort-bug.m4.
7251         * modules/mkdir-p (Files): Add lib/same-inode.h.
7252         * modules/same (Files): Add lib/same-inode.h.
7253
7254 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
7255
7256         * m4/absolute-header.m4: Renamed from full-header-path.m4.
7257         This is to keep the terminology clean; POSIX talks about
7258         "absolute pathnames", not "full pathnames", but the GNU
7259         Coding Standards say to use "path" for something else;
7260         so use "absolute" to keep both sides happy.
7261         (gl_ABSOLUTE_HEADER): Renamed from gl_FULL_HEADER_PATH.
7262         Set gl_absolute_header, not gl_full_header_path.
7263         Set gl_cv_absolute_<header>, not gl_full_path_<header>.
7264         Define ABSOLUTE_<HEADER>, not FULL_PATH_<HEADER>.
7265         All uses changed.
7266
7267         Merge from coreutils.
7268
7269         2006-06-30  Paul Eggert  <eggert@cs.ucla.edu>
7270
7271         * m4/c-strtod.m4 (gl_C_STRTOLD): Add c-strtod.c to LIBSOURCES.
7272         Require gl_USE_SYSTEM_EXTENSIONS, not gl_C_STRTOD, since we don't
7273         want to require the building of c-strtod.o.
7274         * m4/lib-check.m4 (cu_LIB_CHECK): Remove SEQ_LIBM, since seq no longer
7275         needs -lm directly.
7276         * m4/xstrtod.m4 (gl_XSTRTOLD): New macro.
7277
7278         2006-06-19  Paul Eggert  <eggert@cs.ucla.edu>
7279
7280         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Prefer binutils's
7281         --as-needed option if available.  Problem reported by Albert Chin in
7282         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00114.html>.
7283         However, use -Wl,--as-needed, not bare --as-needed, since HP-UX 11.11
7284         cc merely issues a bunch of annoying warnings for --as-needed
7285         (this problem was reported by Bob Proulx).  Also, try linking with
7286         -lm to detect a bug in binutils 2.16 (this problem was reported
7287         by Ralf Wildenhues).
7288
7289         2006-06-18  Jim Meyering  <jim@meyering.net>
7290
7291         Test for a bug that causes glibc's getcwd to suffer a failed assertion.
7292         * m4/getcwd-abort-bug.m4 (gl_FUNC_GETCWD_ABORT_BUG): New file and
7293         macro.
7294         * m4/getcwd.m4 (gl_FUNC_GETCWD): If we detect support for getcwd_null,
7295         also check for glibc-2.4's abort-inducing bug.
7296
7297         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Fix typo.
7298         Low-probability clean-up should be to use rmdir to get rid of
7299         the just-created directory, not unlink.
7300
7301         * m4/ftruncate.m4 (gl_FUNC_FTRUNCATE): If ftruncate is missing, make
7302         configure fail, and request a bug report to inform us about it.
7303         Add a comment that, barring reports to the contrary, in 2007 we'll
7304         assume ftruncate is universally available.
7305
7306         2006-04-17  Paul Eggert  <eggert@cs.ucla.edu>
7307
7308         * m4/filemode.m4 (gl_FILEMODE): Check for strmode declaration.
7309
7310         2006-03-12  Jim Meyering  <jim@meyering.net>
7311
7312         * m4/chdir-safer.m4 (gl_CHDIR_SAFER): Add same-inode.h to the list.
7313         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Likewise.
7314         * m4/same.m4 (gl_SAME): Likewise.
7315         * m4/root-dev-ino.m4 (gl_ROOT_DEV_INO): Likewise.
7316
7317         2006-03-11  Eric Blake  <ebb9@byu.net>
7318
7319         * m4/double-slash-root.m4: New file, provides gl_DOUBLE_SLASH_ROOT.
7320         * m4/dirname.m4 (gl_DIRNAME): Use gl_DOUBLE_SLASH_ROOT.
7321         * m4/dos.m4 (FILE_SYSTEM_PREFIX_LEN): Move from here to dirname.h.
7322         (FILE_SYSTEM_DRIVE_PREFIX_CAN_BE_RELATIVE): New define.
7323
7324 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
7325
7326         * lib/stdint_.h: Include <sys/types.h> after @FULL_PATH_STDINT_H@, for
7327         MacOS X 10.4.6.  Don't mention <sys/int_types.h>.  Problems
7328         reported by Mark D. Baushke, one in
7329         <http://lists.gnu.org/archive/html/bug-gnulib/2006-07/msg00015.html>.
7330
7331         Merge from coreutils.
7332
7333         * lib/.cppi-disable: Add stdint_.h.
7334         * lib/.cvsignore: Add stdint.h.
7335
7336         2006-06-30  Paul Eggert  <eggert@cs.ucla.edu>
7337
7338         * lib/xstrtod.c (XSTRTOD, DOUBLE): New macros, so that we can support
7339         both double and long double versions.
7340         (XSTRTOD): Renamed from xstrtod.  Use DOUBLE internally.
7341         * lib/xstrtold.c: New file.
7342         * lib/xstrtod.h (xstrtold): New decl.
7343
7344         2006-05-22  Paul Eggert  <eggert@cs.ucla.edu>
7345
7346         * lib/filemode.c (setst): Remove.
7347         (strmode): Rewrite to avoid setst.  This makes the code shorter,
7348         (arguably) clearer, and the generated code is a bit smaller on my
7349         Debian GNU/Linux stable x86 host.
7350
7351         2006-04-17  Paul Eggert  <eggert@cs.ucla.edu>
7352
7353         * lib/filemode.c: Include "filemode.h" first, to test the interface.
7354         Assume that filemode.h includes sys/types.h and sys/stat.h.
7355         (HAVE_ST_DM_MODE): New macro, moved here from ls.c.
7356         (ftypelet): Reorder to put common cases first, for efficiency.
7357         Add 'P', 'w'.  Remove 'M', since it's now the caller's responsibility
7358         to do 'M'.
7359         (strmode): Renamed from mode_string, and now stores 12 bytes instead
7360         of 10, for compatibility with FreeBSD.  All callers changed.
7361         (filemodestring): Now stores 12 bytes instead of 10, and sets file
7362         types that can't be deduced solely from st_mode.  First arg is now a
7363         const pointer.
7364         * lib/filemode.h (HAVE_DECL_STRMODE): Include <string.h> for strmode.
7365         (strmode): Renamed from mode_string.
7366         (filemodestring): New decl.
7367         * lib/stat-macros.h: Don't undef S_ISDOOR, since it's never buggy.
7368         (S_ISDOOR): Don't bother with S_IFDOOR, since that code is never
7369         needed.
7370         (S_ISPORT, S_ISWHT): New macros, if not already defined.
7371
7372         2006-04-12  Paul Eggert  <eggert@cs.ucla.edu>
7373
7374         * lib/fsusage.c: Don't include <inttypes.h> or <stdint.h>, since
7375         fsusage.h now does that.  Include fsusage.h first, to test interface.
7376         Prefer statvfs if it works, since it's blessed by POSIX.  Attempt
7377         at most one method (the old code could have generated decls that
7378         didn't conform to C89, not that this was ever exercised).
7379         * lib/fsusage.h: Include <inttypes.h> and <stdint.h> if they exist.
7380
7381         2006-03-19  Jim Meyering  <jim@meyering.net>
7382
7383         Work even in a chroot where d_ino values for entries in "/"
7384         don't match the stat.st_ino values for the same names.
7385         * lib/getcwd.c (__getcwd): When no d_ino value matches the target inode
7386         number, iterate through all entries again, using lstat instead.
7387         Reported by Kenshi Muto in http://bugs.debian.org/355810, and by
7388         Zouhir Hafidi in https://bugzilla.redhat.com/bugzilla/190656.
7389
7390         * lib/getcwd.c (__getcwd): Clarify a comment.
7391         Use memcpy in place of a call to strcpy.
7392
7393         2006-03-12  Jim Meyering  <jim@meyering.net>
7394
7395         * lib/fts-cycle.c (leave_dir): If cycle-check's saved dev-ino pair
7396         matches that of the current directory (which we're about to chdir ".."
7397         out of), then save the dev-ino of the parent, instead.
7398
7399         * lib/same-inode.h (SAME_INODE): New file/macro.
7400         * lib/chdir-safer.c (SAME_INODE): Remove definition.
7401         Include "same-inode.h", instead.
7402         * lib/same.c: Likewise.
7403         * lib/cycle-check.h: Include "same-inode.h".
7404         (CYCLE_CHECK_REFLECT_CHDIR_UP): Define.
7405         * lib/cycle-check.c (SAME_INODE): Remove definition.
7406         * lib/root-dev-ino.h: Include "same-inode.h".
7407
7408         2006-03-11  Eric Blake  <ebb9@byu.net>
7409
7410         * lib/same.c (same_name): s/base_name/last_component/
7411         * lib/backupfile.c (check_extension, numbered_backup): Likewise.
7412         * lib/filenamecat.c (file_name_concat): Likewise.
7413
7414         2006-03-11  Eric Blake  <ebb9@byu.net>,
7415                     Paul Eggert  <eggert@cs.ucla.edu>
7416
7417         * lib/dirname.h (FILE_SYSTEM_PREFIX_LEN): Move here from dos.m4.
7418         [FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX]: Don't treat 1: as a
7419         drive prefix.
7420         (IS_ABSOLUTE_FILE_NAME): Treat all drive letters as absolute on
7421         platforms like cygwin with FILE_SYSTEM_DRIVE_PREFIX_IS_ABSOLUTE.
7422         (last_component): New method.
7423         * lib/dirname.c (dir_len): Determine when drive letters need a
7424         subsequent slash.  Preserve // when it is special.
7425         (dir_name): Don't append dot when drive letter is absolute.
7426         [TEST_DIRNAME]: Move into a full-blown gnulib test.
7427         * lib/basename.c (base_name): New semantics - malloc the result.
7428         Preserve // when it is special.  Preserve relative files that look
7429         like drive letters.
7430         (base_len): Preserve // when it is special.
7431         (last_component): New method, similar to old base_name semantics.
7432         * lib/stripslash.c (strip_trailing_slashes): Use last_component, not
7433         base_name.  Strip redundant slashes from ///.
7434
7435 2006-07-03  Jim Meyering  <jim@meyering.net>
7436
7437         * lib/cycle-check.h (CYCLE_CHECK_REFLECT_CHDIR_UP): Abort if this
7438         macro is used before the first cycle_check call.
7439
7440 2006-07-03  Eric Blake  <ebb9@byu.net>
7441
7442         * modules/dirname (Depends-on): Add xstrndup.
7443
7444 2006-07-02  Paul Eggert  <eggert@cs.ucla.edu>
7445
7446         * m4/stdint.m4 (gl_STDINT_H): Use more-mnemonic identifiers for
7447         test cases, so that config.log is a bit easier to follow.
7448
7449 2006-07-02  Paul Eggert  <eggert@cs.ucla.edu>
7450
7451         * lib/stdint_.h (intmax_t, uintmax_t): Prefer long to long long if
7452         both are 64 bits, since this seems to be the tradition, and this
7453         prevents gcc -Wformat from warning about usages with PRIuMAX.  If
7454         we ever run into a host that prefers long long to long in this
7455         case, we'll need another configure-time test.  Problem reported by
7456         Jim Meyering.
7457
7458 2006-07-02  Eric Blake  <ebb9@byu.net>
7459
7460         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Simplify by using AC_CHECK_DECLS.
7461
7462 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
7463
7464         * modules/inttypes (Depends-on): No longer depends on stdint.
7465         * modules/stdint (Description): Say more about assumptions.
7466         Say that the fast types might differ.  Say macros are used.
7467         (Files): Remove m4/size_max.m4, m4/wchar_t.m4.  Add m4/longlong.m4.
7468         (Makefile.am): Revise list of substituted symbols to match
7469         new stdint.m4.
7470         * modules/stdint-tests (Files): Add m4/wchar_t.m4, m4/wint_t.m4.
7471         (configure.ac): Add gt_TYPE_WCHAR_T, gt_TYPE_WINT_T.
7472         * tests/test-stdint.c (verify_same_types)
7473         [! (__GNUC__ >= 2 && DO_PEDANTIC)]: Put in a decl, so that
7474         the code conforms to C99/C89.
7475         Test for WCHAR_MIN and WCHAR_MAX only if HAVE_WCHAR_T.
7476         Test for WINT_MIN and WINT_MAX only if HAVE_WINT_T.
7477
7478 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
7479
7480         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Backport from Autoconf 2.60,
7481         but fix a bug, by requiring at least 64 bits.
7482         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Likewise.
7483         * m4/longlong.m4 (gl_AC_TYPE_LONG_LONG): Now just call
7484         AC_TYPE_LONG_LONG_INT.  This macro is obsolete and will go soon.
7485         * m4/ulonglong.m4 (gl_AC_TYPE_UNSIGNED_LONG_LONG) Likewise.
7486
7487         * m4/stdint.m4 (gl_STDINT_H): Rewrite to accommodate stdint_.h
7488         changes.  Make 2.59 a prerequisite.  Check and substitute for
7489         HAVE_LONG_LONG_INT.  Rely on Autoconf to check for stdint.h and
7490         inttypes.h.  Do not use special include files; just use the
7491         defaults.  Check for sys/inttypes.h and sys/bitypes.h in the usual
7492         way now.  Remove no-longer-needed tests for HAVE_LONG_64BIT,
7493         HAVE_LONG_LONG_64BIT, int8_t, int16_t, int32_t, int64_t, uint8_t,
7494         uint16_t, uint32_t uint64_t, int_least8_t, int_least16_t,
7495         int_least32_t, int_least64_t, uint_least8_t, uint_least16_t,
7496         uint_least32_t, uint_least64_t, int_fast8_t, int_fast16_t,
7497         int_fast32_t, int_fast64_t, uint_fast8_t uint_fast16_t,
7498         uint_fast32_t, uint_fast64_t, intptr_t, uintptr_t, intmax_t,
7499         uintmax_t, INT8_MIN, INT8_MAX, UINT8_MAX, INT16_MIN, INT16_MAX,
7500         UINT16_MAX, INT32_MIN, INT32_MAX, UINT32_MAX, INT64_MIN,
7501         INT64_MAX, UINT64_MAX, INT_LEAST8_MIN, INT_LEAST8_MAX,
7502         UINT_LEAST8_MAX, INT_LEAST16_MIN, INT_LEAST16_MAX,
7503         UINT_LEAST16_MAX, INT_LEAST32_MIN, INT_LEAST32_MAX,
7504         UINT_LEAST32_MAX, INT_LEAST64_MIN, INT_LEAST64_MAX,
7505         UINT_LEAST64_MAX, INT_FAST8_MIN, INT_FAST8_MAX, UINT_FAST8_MAX,
7506         INT_FAST16_MIN, INT_FAST16_MAX, UINT_FAST16_MAX, INT_FAST32_MIN,
7507         INT_FAST32_MAX, UINT_FAST32_MAX, INT_FAST64_MIN, INT_FAST64_MAX,
7508         UINT_FAST64_MAX, INTPTR_MIN, INTPTR_MAX, UINTPTR_MAX, INTMAX_MIN,
7509         INTMAX_MAX, UINTMAX_MAX, PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN,
7510         SIG_ATOMIC_MAX, SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN,
7511         WINT_MAX.  Check for C99 conformance more strictly, by detecting
7512         bugs in glibc 2.4, Solaris 10, and OpenBSD 3.9.  On the other hand do
7513         not check for things that C99 does not require, e.g., int8_t.  If
7514         a test isn't needed unless <stdint.h> isn't working, and is
7515         unlikely to be needed for any other reason, then don't do it
7516         unless <stdint.h> isn't working.  Do not check for ptrdiff_t or
7517         size_t, since we assume C89 freestanding at least.  Do not check
7518         for sig_atomic_t, wchar_t, or wint_t, since the code now does
7519         the right thing even if the types are not defined.  Instead use:
7520         (gl_STDINT_TYPE_PROPERTIES): New macro.
7521         (gl_HEADER_STDINT_H, gl_HEADER_INTTYPES_H): Remove.  Don't bother
7522         testing whether <sys/types.h> clashes, as Autoconf does this for
7523         us now.  All uses removed.
7524         (gl_STDINT_CHECK_TYPES, gl_STDINT_MISSING_BOUND):
7525         (gl_STDINT_MISSING_BOUNDS, gl_STDINT_MISSING_BOUNDS2):
7526         (gl_CHECK_TYPE_SAME):
7527         Remove; no longer needed.
7528         (gl_STDINT_BITSIZEOF): Don't bother to check whether the type
7529         exists, since we'll return 0 anyway in that case.
7530         (gl_INTEGER_TYPE_SUFFIX, gl_STDINT_INCLUDES): New macros.
7531
7532 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
7533
7534         * lib/stdint_.h (_GL_STDINT_H): Renamed from _STDINT_H, to avoid
7535         possible collision with system files.
7536         (<stdio.h>, <time.h>, <wchar.h>) [defined __cplusplus && ! defined
7537         __STDC_CONSTANT_MACROS)]: Do not include, since we don't need
7538         WCHAR_MIN and WCHAR_MAX in this case.
7539         (<stddef.h>): Do not include; no longer needed.
7540         (<sys/types.h>): Include if @HAVE_SYS_TYPES_H@, not if
7541         (defined(__OpenBSD__) || defined(__bsdi__) || defined(__sgi)).
7542         (<sys/inttypes.h>): Include if @HAVE_SYS_INTTYPES_H@ &&
7543         !@HAVE_INTTYPES_H@, not if (defined(__FreeBSD__)
7544         && (__FreeBSD__ >= 3) && (__FreeBSD__ <= 4)).
7545         (__STDINT_H__) [@HAVE_STDINT_H@ && defined __sgi && ! defined
7546         __c99]: Define, to work around IRIX <stdint.h> incompatibility.
7547         (@FULL_PATH_STDINT_H@) [!(defined(__sgi) && @HAVE_INTTYPES_H@ &&
7548         !defined(__c99))]: Include in this case too, since it's harmless
7549         now.
7550         (<inttypes.h>) [@HAVE_INTTYPES_H@]: Include, since it's no longer
7551         dangerous to do so.
7552         (@FULL_PATH_INTTYPES_H@) [(defined(__hpux) || defined(_AIX)) &&
7553         @HAVE_INTTYPES_H@]: Do not include, since we now include <inttypes.h>.
7554         (_STDINT_MIN, _STDINT_MAX): New macros.
7555         (int8_t, uint8_t, int16_t, uint16_t, int32_t, uint32_t, int64_t):
7556         (uint64_t, int_least8_t, uint_least8_t, int_least16_t):
7557         (uint_least16_t, int_least32_t, uint_least32_t, int_least64_t):
7558         (uint_least64_t, int_fast8_t, uint_fast8_t, int_fast16_t):
7559         (uint_fast16_t, int_fast32_t, uint_fast32_t, int_fast64_t):
7560         (uint_fast64_t, intptr_t, uintptr_t, intmax_t, uintmax_t): Now
7561         macros, not typedefs; this simplifies things quite a bit.
7562         Use long int for all types narrower than int64_t.
7563         (intmax_t, uintmax_t, INTMAX_C, UINTMAX_C):
7564         Define in terms of long long int or int64_t or long int,
7565         not int64_t or int32_t.  This saves some compile-time testing.
7566         (INT8_MIN, INT8_MAX, UINT8_MAX, INT16_MIN, INT16_MAX, UINT16_MAX):
7567         (INT32_MIN, INT32_MAX, UINT32_MAX, INT64_MIN, INT64_MAX):
7568         (UINT64_MAX, INT_LEAST8_MIN, INT_LEAST8_MAX, UINT_LEAST8_MAX):
7569         (INT_LEAST16_MIN, INT_LEAST16_MAX, UINT_LEAST16_MAX):
7570         (INT_LEAST32_MIN, INT_LEAST32_MAX, UINT_LEAST32_MAX):
7571         (INT_LEAST64_MIN, INT_LEAST64_MAX, UINT_LEAST64_MAX, INT_FAST8_MIN):
7572         (INT_FAST8_MAX, UINT_FAST8_MAX, INT_FAST16_MIN, INT_FAST16_MAX):
7573         (UINT_FAST16_MAX, INT_FAST32_MIN, INT_FAST32_MAX, UINT_FAST32_MAX):
7574         (INT_FAST64_MIN, INT_FAST64_MAX, UINT_FAST64_MAX, INTPTR_MIN):
7575         (INTPTR_MAX, UINTPTR_MAX, INTMAX_MIN, INTMAX_MAX, UINTMAX_MAX):
7576         (PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX):
7577         (SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN, WINT_MAX):
7578         undef any previous version and define our own version, for
7579         simplicity and consistency with the new macros for types.
7580         (PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX):
7581         (SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN, WINT_MAX):
7582         Simplify definitions by using _STDINT_MIN and _STDINT_MAX
7583         where appropriate.  Rely on new symbols @PTRDIFF_T_SUFFIX@,
7584         @SIG_ATOMIC_T_SUFFIX@, @SIZE_T_SUFFIX@, @WCHAR_T_SUFFIX@,
7585         @WINT_T_SUFFIX@ to keep things simple here.
7586         (UINT8_C, UINT16_C, UINT32_C, INT64_C, UINT64_C):
7587         Simplify by assuming typical 8/16/32/64 host, since we're
7588         already doing that elsewhere anyway.
7589         Use (LONG_MAX >> 31 >> 31 == 1) rather than @HAVE_LONG_64BIT@,
7590         and assume long long int is 64 bits if available.  This
7591         speeds up 'configure'.
7592
7593 2006-07-01  Eric Blake  <ebb9@byu.net>
7594
7595         * m4/stdarg.m4 (gl_STDARG_H): Use proper AH_VERBATIM.
7596         Reported by Andreas Buening.
7597
7598 2006-07-01  Eric Blake  <ebb9@byu.net>
7599
7600         * m4/stdarg.m4 (gl_STDARG_H): Properly parenthesize gl_va_copy.
7601
7602 2006-06-30  Jim Hyslop  <jhyslop@dreampossible.ca>  (tiny change)
7603
7604         * lib/getaddrinfo.c: fixed typo
7605
7606 2006-06-29  Jim Meyering  <jim@meyering.net>
7607
7608         * modules/strftime (Maintainer): Add my name, since with the
7609         FPRINTFTIME changes strftime.c has forked from glibc.
7610
7611 2006-06-29  Eric Blake  <ebb9@byu.net>
7612
7613         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Use AC_C_INLINE.
7614
7615 2006-06-29  Eric Blake  <ebb9@byu.net>
7616
7617         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): New file.
7618
7619 2006-06-29  Eric Blake  <ebb9@byu.net>
7620
7621         * lib/stat_.h: New file.
7622
7623 2006-06-29  Eric Blake  <ebb9@byu.net>
7624
7625         * lib/stat_.h (rpl_mkdir): Declare inline, to avoid warnings about
7626         unused static function.
7627
7628 2006-06-29  Eric Blake  <ebb9@byu.net>
7629
7630         * doc/functions.texi (Function Portability): Document missing lstat
7631         on mingw.
7632
7633 2006-06-29  Eric Blake  <ebb9@byu.net>
7634
7635         * MODULES.html.sh: Add sys_stat.
7636         * modules/sys_stat: New module.
7637         * modules/mkstemp (Depends-on): Add sys_stat.
7638
7639 2006-06-29  Derek R. Price  <derek@ximbiot.com>
7640
7641         * m4/strftime.m4: Don't call AC_FUNC_STRFTIME.
7642
7643 2006-06-29  Derek R. Price  <derek@ximbiot.com>
7644
7645         * m4/c-bs-a.m4: Removed.
7646
7647 2006-06-29  Derek R. Price  <derek@ximbiot.com>
7648
7649         * lib/strftime.c: Assume strftime() exists.
7650
7651 2006-06-29  Derek Price  <derek@ximbiot.com>
7652
7653         * modules/c-bs-a: Removed - \a is C89.
7654         * MODULES.html.sh: Remove c-bs-a.
7655
7656 2006-06-29  Bruno Haible  <bruno@clisp.org>
7657
7658         * modules/wcwidth (License): Change to LGPL.
7659
7660 2006-06-28  Simon Josefsson  <jas@extundo.com>
7661
7662         * tests/test-getaddrinfo.c: Test getnameinfo too.  Call WSAStartup
7663         on _WIN32.
7664
7665         * modules/getaddrinfo (Depends-on): Add inet_ntop, needed by
7666         getnameinfo.
7667
7668 2006-06-28  Simon Josefsson  <jas@extundo.com>
7669
7670         * m4/getaddrinfo.m4: Look for getnameinfo prototypes too.
7671
7672 2006-06-28  Simon Josefsson  <jas@extundo.com>
7673
7674         * lib/getaddrinfo.c: Try to load ws2_32.dll on Windows, to find the
7675         functions there.  It will succeed on Windows XP, but on Windows
7676         2000 and (presumably) earlier, it will fail, and use the internal
7677         re-implementation.
7678         (use_win32_p): New function.
7679         (getaddrinfo): Use strtoul on servname, to support numeric ports.
7680         Support AI_NUMERICSERV to disable getservbyname.
7681         (getnameinfo): New function, only supports
7682         NI_NUMERICHOST|NI_NUMERICSERV for now.
7683
7684         * lib/getaddrinfo.h: Test and check for AI_* flags separately, MinGW
7685         only have some of them.  Add AI_NUMERICSERV.  Add prototype for
7686         getnameinfo.
7687
7688 2006-06-28  Eric Blake  <ebb9@byu.net>
7689
7690         * modules/wcwidth: New file.
7691         * modules/mbchar (Depends-on): Add wcwidth.
7692         * modules/mbswidth (Depends-on): Add wcwidth.
7693         * MODULES.html.sh: Add wcwidth.
7694
7695 2006-06-28  Eric Blake  <ebb9@byu.net>
7696
7697         * m4/mbswidth.m4 (gl_MBSDWIDTH): Move wcwidth from here...
7698         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): ...to this new file.
7699
7700 2006-06-28  Eric Blake  <ebb9@byu.net>
7701
7702         * lib/xvasprintf.h: Fix comments.
7703
7704 2006-06-28  Eric Blake  <ebb9@byu.net>
7705
7706         * lib/mbchar.h (wcwidth): Include wcwidth.h.
7707         * lib/mbswidth.c (wcwidth): Move from here...
7708         * lib/wcwidth.h: ...to this new file.
7709
7710 2006-06-28  Derek R. Price  <derek@ximbiot.com>
7711
7712         * m4/savedir.m4: Remove AC_FUNC_CLOSEDIR_VOID requirement.
7713
7714         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Don't require AC_C_CONST, since
7715         it's obsolete.
7716         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME): Likewise.
7717
7718 2006-06-28  Derek R. Price  <derek@ximbiot.com>
7719
7720         * lib/savedir.c (CLOSEDIR): Remove.  All uses changed to closedir.
7721         Autoconf 2.60 says this stuff was obsolete.
7722
7723 2006-06-28  Bruno Haible  <bruno@clisp.org>
7724
7725         * modules/wcwidth (Files): Add m4/wchar_t.m4.
7726
7727 2006-06-28  Bruno Haible  <bruno@clisp.org>
7728
7729         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Also require AC_C_INLINE and
7730         gt_TYPE_WCHAR_T.
7731
7732 2006-06-28  Bruno Haible  <bruno@clisp.org>
7733
7734         * lib/wcwidth.h: Declare nothing if !HAVE_WCHAR_T. Provide a fallback
7735         declaration for wcwidth.
7736         * lib/mbswidth.c: Restore the includes of <wchar.h> and <wctypes.h>.
7737
7738 2006-06-28  Bruno Haible  <bruno@clisp.org>
7739
7740         * lib/mkdtemp.c [MINGW]: Include <io.h>.
7741         (mkdir): Define using _mkdir.
7742
7743 2006-06-28  Bruno Haible  <bruno@clisp.org>
7744
7745         * lib/getaddrinfo.h: Fix POSIX URL.
7746         * lib/getaddrinfo.c (WIN32_NATIVE): New macro. Use it instead of
7747         _WIN32.
7748         (use_win32_p): Make static.
7749         (getaddrinfo): Reject service name if it is empty or does not consist
7750         solely of decimal digits, or if its value is > 65535.
7751         (getnameinfo): Remove useless casts.
7752
7753 2006-06-27  Simon Josefsson  <jas@extundo.com>
7754
7755         * modules/sys_select: New file, suggested by Bruno Haible, Paul
7756         Eggert and Martin Lambers.
7757
7758 2006-06-27  Simon Josefsson  <jas@extundo.com>
7759
7760         * m4/sys_select_h.m4: New file, suggested by Bruno Haible, Paul
7761         Eggert and Martin Lambers.
7762
7763 2006-06-27  Bruno Haible  <bruno@clisp.org>
7764
7765         * m4/stdint.m4 (gl_STDINT_BITSIZEOF): For nonexistent types, set the
7766         result to 0, not to empty.
7767         Reported by Martin Neitzel <neitzel@sco.gaertner.de>.
7768
7769 2006-06-27  Bruno Haible  <bruno@clisp.org>
7770
7771         * lib/stdint_.h (intmax_t, uintmax_t): Undefine before typedef.
7772
7773 2006-06-26  Simon Josefsson  <jas@extundo.com>
7774
7775         * m4/inet_ntop.m4: Don't check for sys/types.h, we assume it is
7776         present.
7777
7778 2006-06-26  Paul Eggert  <eggert@cs.ucla.edu>
7779
7780         * lib/base64.c (B64): Use _ as the formal parameter, not x, to avoid
7781         bug in IBM C V6 for AIX.  Problem reported by Larry Jones in
7782         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00181.html>.
7783
7784 2006-06-26  Mark D. Baushke  <mdb@gnu.org>
7785
7786         * m4/stdint.m4 (gl_STDINT_H): Treat BSD/OS like OpenBSD.
7787
7788 2006-06-26  Bruno Haible  <bruno@clisp.org>
7789
7790         * modules/stdint (Makefile.am): Also substitute HAVE_WCHAR_H.
7791
7792 2006-06-26  Bruno Haible  <bruno@clisp.org>
7793
7794         * m4/stdint.m4 (gl_STDINT_H): Test also for <wchar.h>.
7795
7796 2006-06-26  Bruno Haible  <bruno@clisp.org>
7797
7798         * m4/stdint.m4 (gl_STDINT_H): Don't include <stdint.h> when using the
7799         SGI C compiler in pre-C99 mode.
7800         Suggested by Mark D. Baushke and Larry Jones.
7801
7802 2006-06-26  Bruno Haible  <bruno@clisp.org>
7803
7804         * lib/stdint_.h: Include <wchar.h> if necessary for WCHAR_MIN or
7805         WCHAR_MAX.
7806         Reported by Mark D. Baushke and Larry Jones.
7807
7808 2006-06-26  Bruno Haible  <bruno@clisp.org>
7809
7810         * lib/stdint_.h: Don't include <stdint.h> when using the SGI C compiler
7811         in pre-C99 mode.
7812         Suggested by Mark D. Baushke and Larry Jones.
7813
7814 2006-06-23  Simon Josefsson  <jas@extundo.com>
7815             Bruno Haible  <bruno@clisp.org>
7816
7817         * gnulib-tool (func_emit_lib_Makefile_am): Define MOSTLYCLEANDIRS.
7818         Emit mostlyclean-local rule.
7819         (func_emit_tests_Makefile_am): Likewise.
7820         * modules/sys_socket (Makefile.am): Use MOSTLYCLEANDIRS.
7821
7822 2006-06-23  Mark D. Baushke  <mdb@gnu.org>
7823
7824         * lib/stdint_.h: Treat BSD/OS like OpenBSD.
7825
7826 2006-06-23  Bruno Haible  <bruno@clisp.org>
7827
7828         * tests/test-stdint.c: Update to match ISO C 99 Technical
7829         Corrigendum 1.
7830
7831 2006-06-23  Bruno Haible  <bruno@clisp.org>
7832
7833         * m4/stdint.m4 (gl_STDINT_H): Treat IRIX like OpenBSD.
7834
7835 2006-06-23  Bruno Haible  <bruno@clisp.org>
7836
7837         * lib/stdint_.h: Treat IRIX like OpenBSD.
7838
7839 2006-06-23  Bruno Haible  <bruno@clisp.org>
7840
7841         * lib/stdint_.h (UINT8_C, UINT16_C, UINT32_C): Define according to
7842         ISO C 99 Technical Corrigendum 1.
7843
7844 2006-06-22  Simon Josefsson  <jas@extundo.com>
7845
7846         * m4/sockpfaf.m4: Include winsock2.h too, to make it work under
7847         MinGW.
7848
7849 2006-06-22  Paul Eggert  <eggert@cs.ucla.edu>
7850
7851         * lib/glob.c (collated_compare): Remove 'const' uses that weren't
7852         needed.  Some compiler complained about some of them.  Problem reported
7853         by Larry Jones in
7854         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00172.html>.
7855
7856 2006-06-21  Simon Josefsson  <jas@extundo.com>
7857
7858         * tests/test-getaddrinfo.c: New file.
7859
7860         * modules/getaddrinfo-tests: New file.
7861
7862         * MODULES.html.sh: Add inet_pton.
7863
7864         * modules/inet_pton: New file.
7865
7866 2006-06-21  Simon Josefsson  <jas@extundo.com>
7867
7868         * m4/getaddrinfo.m4: Don't define WINVER.  Look for gethostbyname in
7869         -lws2_32 too.  Fixes getaddrinfo on Windows 2000, with the price
7870         of using the (limited) gnulib implementation on Windows XP.
7871
7872         * m4/inet_pton.m4: New file.
7873
7874 2006-06-21  Simon Josefsson  <jas@extundo.com>
7875
7876         * lib/getaddrinfo.c (getaddrinfo): Set ai_family in the return
7877         variable.
7878
7879         * lib/socket_.h: Don't define WINVER.
7880
7881         * lib/inet_pton.h, inet_pton.c: New file, taken from glibc but
7882         slightly modified to work in gnulib.
7883
7884 2006-06-21  Simon Josefsson  <jas@extundo.com>
7885
7886         * doc/gnulib.texi (Windows sockets): Add.
7887
7888 2006-06-21  Paul Eggert  <eggert@cs.ucla.edu>
7889
7890         * lib/read-file.c (fread_file): Start with buffer allocation of
7891         0 bytes rather than 1 byte; this simplifies the code.
7892         Don't invoke feof; it's not needed.  Refactor to avoid duplicate
7893         code to free buffer and save/restore errno.
7894         (internal_read_file): Remove unused local.
7895
7896 2006-06-20  Paul Eggert  <eggert@cs.ucla.edu>
7897
7898         * lib/openat.c (openat): Use ?:, not if, to work around GCC bug 4210
7899         <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=4210>.
7900         Problem reported by Denis Excoffier in
7901         <http://lists.gnu.org/archive/html/bug-tar/2006-06/msg00023.html>.
7902
7903 2006-06-19  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
7904
7905         * modules/sys_socket, modules/socklen: Include sys/types since
7906         FreeBSD 4.x's sys/socket.h needs it.
7907
7908 2006-06-19  Simon Josefsson  <jas@extundo.com>
7909
7910         * lib/inet_ntop.c: Always build inet_ntop4, since inet_ntop6 calls it.
7911
7912 2006-06-19  Paul Eggert  <eggert@cs.ucla.edu>
7913
7914         * lib/alloca_.h (alloca) [defined alloca]: Don't define or declare.
7915
7916 2006-06-19  Bruno Haible  <bruno@clisp.org>
7917
7918         * m4/stdint.m4 (gl_STDINT_H): Enclose the values of FULL_PATH_STDINT_H
7919         and FULL_PATH_INTTYPES_H in angle brackets.
7920         Reported by Mark D. Baushke <mdb@gnu.org>.
7921
7922 2006-06-17  Eric Blake  <ebb9@byu.net>
7923
7924         * m4/rmdir-errno.m4 (gl_FUNC_FMDIR_NOTEMPTY): Assume errno.h declares
7925         errno.
7926
7927 2006-06-17  Bruno Haible  <bruno@clisp.org>
7928
7929         * m4/stdint.m4 (gl_STDINT_H) [FreeBSD >= 5]: Don't include
7930         <sys/inttypes.h>.
7931
7932 2006-06-17  Bruno Haible  <bruno@clisp.org>
7933
7934         * m4/setenv.m4 (gl_PREREQ_SETENV, gl_PREREQ_UNSETENV): Remove test
7935         whether errno is declared. Assume <errno.h> declares errno.
7936
7937 2006-06-17  Bruno Haible  <bruno@clisp.org>
7938
7939         * lib/stdint_.h [FreeBSD >= 5]: Don't include <sys/inttypes.h>.
7940
7941 2006-06-17  Bruno Haible  <bruno@clisp.org>
7942
7943         * lib/stdint_.h (_UINT8_T, _UINT32_T, _UINT64_T): New macros. Fixes a
7944         problem on Solaris 2.5.1.
7945
7946 2006-06-16  Eric Blake  <ebb9@byu.net>
7947
7948         * lib/unsetenv.c [!defined errno]: Assume errno.h declares errno.
7949         * lib/unicodeio.c [!defined errno]: Likewise.
7950         * lib/strtol.c [!defined errno]: Likewise.
7951         * lib/strtod.c [!defined errno]: Likewise.
7952
7953 2006-06-15  Eric Blake  <ebb9@byu.net>
7954
7955         * m4/ssize_t.m4 (gt_TYPE_SSIZE_T): Work in spite of -Werror.
7956
7957 2006-06-15  Eric Blake  <ebb9@byu.net>
7958
7959         * config/srclist.txt (ssize_t.m4): Lose sync.
7960
7961 2006-06-15  Bruno Haible  <bruno@clisp.org>
7962
7963         * modules/stdint (Files): Include m4/full-header-path.m4,
7964         m4/size_max.m4, m4/wchar_t.m4.
7965         (Makefile.am): Many more substitutions.
7966         * modules/stdint-tests: New file.
7967         * tests/test-stdint.c: New file.
7968
7969 2006-06-15  Bruno Haible  <bruno@clisp.org>
7970
7971         * m4/stdint.m4 (gl_STDINT_H): Rewritten to produce a complete stdint.h.
7972         (gl_HEADER_STDINT_H, gl_HEADER_INTTYPES_H, gl_STDINT_CHECK_TYPES,
7973         gl_STDINT_MISSING_BOUND, gl_STDINT_MISSING_BOUNDS,
7974         gl_STDINT_MISSING_BOUNDS2, gl_STDINT_BITSIZEOF, gl_CHECK_TYPES_SIGNED,
7975         gl_CHECK_TYPE_SAME): New macros.
7976
7977 2006-06-15  Bruno Haible  <bruno@clisp.org>
7978
7979         * m4/size_max.m4 (gl_SIZE_MAX): Make it work also when cross-compiling.
7980
7981 2006-06-15  Bruno Haible  <bruno@clisp.org>
7982
7983         * lib/stdint_.h: Rewritten to be fully auto-configured.
7984         Fixes bug on HP-UX/IA64.
7985
7986 2006-06-11  Paul Eggert  <eggert@cs.ucla.edu>
7987
7988         * lib/getdate.y (__attribute__): Don't define if already defined.
7989         Problem reported by Larry Jones.
7990         * lib/utimens.c (__attribute__): Likewise.
7991
7992 2006-06-04  Paul Eggert  <eggert@cs.ucla.edu>
7993
7994         * lib/regexec.c (group_nodes_into_DFAstates): Fix a buffer overrun
7995         reported by Andreas Schwab.
7996
7997 2006-05-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
7998             Bruno Haible  <bruno@clisp.org>
7999
8000         * m4/strndup.m4 (gl_FUNC_STRNDUP): Replace the AC_REPLACE_FUNCS with a
8001         check for the declaration of strnlen and a run test that exposes the
8002         AIX 5.1 strnlen bug.  In the failure case, #define strndup to
8003         rpl_strndup.
8004
8005 2006-05-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8006             Bruno Haible  <bruno@clisp.org>
8007
8008         * lib/strndup.c (strndup) [!_LIBC]: Don't undefine macro definition.
8009
8010 2006-05-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8011
8012         * m4/c-strtod.m4 (gl_C99_STRTOLD): Use a link test rather than a
8013         compile test, for Tru64 4.0D.
8014
8015 2006-05-28  Karl Berry  <karl@gnu.org>
8016
8017         * config/srclist.txt (printf-args.c): lose sync.
8018
8019 2006-05-26  Martin Lambers  <marlam@marlam.de>
8020
8021         * lib/getpass.c: Updates the test for the native W32 API, and adds
8022         missing includes, thus fixing compilation warnings.
8023
8024 2006-05-25  Sergey Poznyakoff  <gray@gnu.org.ua>
8025
8026         * lib/exclude.c (exclude_fnmatch): New function.
8027         (excluded_file_name): Call exclude_fnmatch.
8028         * lib/exclude.h (excluded_file_name): New prototype
8029
8030 2006-05-25  Paul Eggert  <eggert@cs.ucla.edu>
8031
8032         * lib/tempname.c (small_open, large_open): New macros.
8033         (__open, __open64) [!_LIBC]: Remove.
8034         (__gen_tempname): Use small_open and large_open instead of __open
8035         and __open64.  This fixes a portability bug on HP-UX 11.11i
8036         reported by Simon Wing-Tang in
8037         <http://lists.gnu.org/archive/html/bug-coreutils/2006-05/msg00114.html>.
8038
8039 2006-05-24  Bruno Haible  <bruno@clisp.org>
8040
8041         * lib/printf-args.c (printf_fetchargs): Turn NULL pointers for
8042         TYPE_STRING and TYPE_WIDE_STRING into a non-NULL replacement.
8043         Reported by Thorsten Maerz <torte@netztorte.de> via
8044         Aaron Stone <aaron@serendipity.cx>.
8045
8046 2006-05-19  Paul Eggert  <eggert@cs.ucla.edu>
8047
8048         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Rename cache variables to use
8049         gl_ rather than jm_.  Link, don't run, so that cross-compiles are
8050         allowed.  Check that resulting type is arithmetic.  Move AC_REQUIRE
8051         and AC_CHECK_HEADERS_ONCE outside of AC_CACHE_CHECK, since they're
8052         not really conditional on the cache.
8053         (gl_PREREQ_NANOSLEEP): Check for sys/select.h.
8054
8055 2006-05-19  Paul Eggert  <eggert@cs.ucla.edu>
8056
8057         * lib/nanosleep.c [HAVE_SYS_SELECT_H]: Include <sys/select.h>.
8058         Use the usual Autoconf way to include <time.h> and/or sys/time.h.
8059         (my_usleep): Don't mishandle maximum value.
8060
8061 2006-05-19  Jim Meyering  <jim@meyering.net>
8062
8063         * lib/getugroups.c: Correct an outdated comment.  From Bruno Haible.
8064
8065 2006-05-17  Bruno Haible  <bruno@clisp.org>
8066
8067         Cygwin portability.
8068         * lib/classpath.c (PATH_SEPARATOR) [CYGWIN]: Define as ':'.
8069
8070 2006-05-17  Bruno Haible  <bruno@clisp.org>
8071
8072         * lib/stdint_.h: Fix recognition of Cygwin.
8073
8074 2006-05-15  Bruno Haible  <bruno@clisp.org>
8075
8076         * build-aux/config.rpath: Improve support for Sun C 5.9 on Linux, based
8077         on libtool patch by Ralf Wildenhues.
8078
8079 2006-05-14  Paul Eggert  <eggert@cs.ucla.edu>
8080
8081         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Fix overly-picky
8082         test for C99 conformance; (bool) 0.5 is an integer constant
8083         expression, but (bool) -0.5 is not.  Problem reported by Fedor
8084         Sergeev in <http://forum.sun.com/jive/thread.jspa?threadID=96202>.
8085
8086 2006-05-11  Simon Josefsson  <jas@extundo.com>
8087
8088         * m4/xvasprintf.m4: Fix obvious typo.
8089
8090 2006-05-11  Jim Meyering  <jim@meyering.net>
8091
8092         * lib/sha1.c (sha1_buffer): Correct comment: s/MD5/SHA1/.  From
8093         James Lemley.
8094
8095 2006-05-10  Simon Josefsson  <jas@extundo.com>
8096
8097         * lib/md4.c: Typo fix, update copyright years.
8098         (K1, K2): Don't use L because it turn computations into 64-bit on
8099         64-bit platforms.
8100
8101 2006-05-10  Paul Eggert  <eggert@cs.ucla.edu>
8102
8103         * lib/crc.c (crc32_update): Remove unnecessary L suffix.
8104         * lib/md4.c (rol): Cast right-shift arg to uint32_t to prevent
8105         unwanted sign propagation, e.g., on hosts with 64-bit int.
8106         There still are some problems with reeelly weird theoretical hosts
8107         (e.g., 33-bit int) but it's not worth worrying about now.
8108         * lib/sha1.c (rol): Likewise.
8109         (K1, K2, K3, K4): Remove unnecessary L suffix.
8110
8111 2006-05-10  Bruno Haible  <bruno@clisp.org>
8112
8113         * lib/des.c: Cast to avoid warnings.
8114
8115 2006-05-09  Bruno Haible  <bruno@clisp.org>
8116
8117         * modules/xvasprintf (Files): Add m4/xvasprintf.m4.
8118         (Depends-on): Depend also on xsize, stdarg.
8119         (configure.ac): Add gl_XVASPRINTF.
8120
8121 2006-05-09  Bruno Haible  <bruno@clisp.org>
8122
8123         * m4/xvasprintf.m4: New file.
8124
8125 2006-05-09  Bruno Haible  <bruno@clisp.org>
8126
8127         * lib/xvasprintf.c: Include limits.h, string.h, xsize.h.
8128         (EOVERFLOW): Define fallback value.
8129         (xstrcat): New function.
8130         (xvasprintf): Recognize the special case of a string concatenation.
8131
8132 2006-05-08  Eric Blake  <ebb9@byu.net>
8133
8134         * gnulib-tool (func_version): Base copyright year on CVS date.
8135         (func_emit_copyright_notice): New function.
8136         (func_emit_lib_Makefile_am): Use it.
8137         (func_emit_tests_Makefile_am): Likewise.
8138         (func_import): Likewise.
8139
8140 2006-05-08  Bruno Haible  <bruno@clisp.org>
8141
8142         * modules/stdarg: New file.
8143         * MODULES.html.sh (func_all_modules): Add section for <stdarg.h>.
8144
8145 2006-05-08  Bruno Haible  <bruno@clisp.org>
8146
8147         * m4/stdarg.m4: New file, from GNU gettext.
8148
8149 2006-05-08  Bruno Haible  <bruno@clisp.org>
8150
8151         * config/srclist.txt (build-aux/config.rpath): different from latest
8152         release.
8153
8154 2006-05-08  Bruno Haible  <bruno@clisp.org>
8155
8156         * build-aux/config.rpath: Add support for Sun C 5.9 on Linux.
8157
8158 2006-05-05  Jim Meyering  <jim@meyering.net>
8159
8160         * m4/warning.m4: New file, derived from bison's file by the same name.
8161
8162 2006-05-03  Bruno Haible  <bruno@clisp.org>
8163
8164         * lib/stdint_.h: Shorter URL.
8165         * lib/inttypes.h: Likewise.
8166
8167 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
8168
8169         * modules/inttypes (Maintainer): Change from Derek Price to 'all'.
8170
8171 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
8172
8173         * lib/verify.h: Document the internals better.  Most of this change
8174         was written by Bruno Haible.
8175
8176 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
8177
8178         * doc/verify.texi: New file, partly based on a proposal by
8179         Bruno Haible.
8180
8181 2006-05-02  Bruno Haible  <bruno@clisp.org>
8182
8183         * m4/full-header-path.m4 (gl_FULL_HEADER_PATH): Move the include_next
8184         test from here...
8185         * m4/_inttypes_h.m4 (gl_INTTYPES_H): ... to here.
8186
8187 2006-04-29  Bruno Haible  <bruno@clisp.org>
8188
8189         * lib/gcd.c: Use WORD_T and GCD instead of unsigned long and gcd.
8190         Suggested by Oskar Liljeblad <oskar@osk.mine.nu>.
8191
8192 2006-04-29  Bruno Haible  <bruno@clisp.org>
8193
8194         * gnulib-tool: Make --update option actually work.
8195
8196 2006-04-29  Bruno Haible  <bruno@clisp.org>
8197
8198         * doc/gcd.texi: New file.
8199         * doc/gnulib.texi: Include it.
8200
8201 2006-04-25  Paul Eggert  <eggert@cs.ucla.edu>
8202
8203         * lib/getdate.y (get_date): When adding relative date, start with the
8204         initial time, not with the result of the first mktime call.
8205
8206 2006-04-25  Bruno Haible  <bruno@clisp.org>
8207
8208         * gnulib-tool (func_import): Output the include directives in three
8209         blocks, sorted separately.
8210         Reported by Ben Pfaff <blp@cs.stanford.edu>.
8211
8212 2006-04-24  Paul Eggert  <eggert@cs.ucla.edu>
8213
8214         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Use prototype
8215         to define main with arguments, for C++.  Reported by Eric Blake.
8216         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC):
8217         Prefer 'int main ()' to 'int main (void)', for C++.
8218         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Likewise.
8219         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Specify a return type
8220         for 'main', for C99 and C++.
8221
8222 2006-04-24  Paul Eggert  <eggert@cs.ucla.edu>
8223
8224         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Use return, not exit.
8225         Don't assume that exit status -1 is valid.
8226         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
8227         * m4/putenv.m4 (gl_FUNC_PUTENV): Likewise.
8228         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Likewise.
8229         * m4/readdir.m4 (GL_FUNC_READDIR): Include <stdlib.h>.
8230         * m4/rename.m4 (vb_FUNC_RENAME): Likewise.
8231         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Use AC_RUN_IFELSE,
8232         not AC_TRY_RUN.  Use return, not exit.  Don't assume that
8233         functions can be used without declaring them, or that you can
8234         exit with status -1.
8235         * m4/utimes-null.m4 (gl_FUNC_UTIMES_NULL): Likewise.
8236
8237 2006-04-24  Karl Berry  <karl@gnu.org>
8238
8239         * config/srclist.txt (longdouble.m4): sync lost.
8240
8241 2006-04-24  Eric Blake  <ebb9@byu.net>
8242
8243         * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Avoid unused variable warning.
8244
8245 2006-04-24  Bruno Haible  <bruno@clisp.org>
8246
8247         * m4/poll.m4 (gl_FUNC_POLL): When cross-compiling, reject also the
8248         poll() implementation in AIX.
8249         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
8250
8251 2006-04-24  Bruno Haible  <bruno@clisp.org>
8252
8253         * m4/poll.m4 (gl_FUNC_POLL): Rearrange code, so that POLL_H gets
8254         assigned exactly once.
8255
8256 2006-04-23  Claudio Fontana  <claudio@gnu.org>
8257             Bruno Haible  <bruno@clisp.org>
8258
8259         * modules/gettext (Makefile.am): Add a -I flag for <libintl.h>.
8260         * gnulib-tool (func_emit_lib_Makefile_am): Emit empty default value
8261         for AM_CPPFLAGS.
8262
8263 2006-04-23  Bruno Haible  <bruno@clisp.org>
8264
8265         * modules/copy-file: Depend on unistd.
8266         * modules/execute: Likewise.
8267         * modules/fatal-signal: Likewise.
8268         * modules/findprog: Likewise.
8269         * modules/mkdtemp : Likewise.
8270         * modules/pipe: Likewise.
8271         * modules/wait-process: Likewise.
8272
8273 2006-04-23  Bruno Haible  <bruno@clisp.org>
8274
8275         * lib/fwriteerror.c (fwriteerror): Call fclose also when an error
8276         condition was already detected.
8277         Reported by Ben Pfaff <blp@cs.stanford.edu>.
8278
8279 2006-04-23  Bruno Haible  <bruno@clisp.org>
8280
8281         * lib/copy-file.c: Include <unistd.h> unconditionally.
8282         * lib/execute.c: Likewise.
8283         * lib/fatal-signal.c: Likewise.
8284         * lib/findprog.c: Likewise.
8285         * lib/mkdtemp.c: Likewise.
8286         * lib/pipe.h: Likewise.
8287         * lib/pipe.c: Likewise.
8288         * lib/wait-process.h: Likewise.
8289
8290 2006-04-23  Bruno Haible  <bruno@clisp.org>
8291
8292         * gnulib-tool (func_usage): Fix --import description. Document
8293         --update.
8294         (func_import): Create temporary file in a temporary directory, if
8295         --dry-run is specified. Silence errors from 'grep' when there are no
8296         m4 files in $m4dir.
8297         (func_create_testdir): Silence errors from 'grep' when there are no
8298         m4 files in $m4dir.
8299         Reported by Karl Berry <karl@freefriends.org>.
8300
8301 2006-04-20  Bruno Haible  <bruno@clisp.org>
8302
8303         * m4/argp.m4 (gl_ARGP): Don't call AC_CHECK_DECLS_ONCE with more than
8304         one argument, so that the code will be portable to Autoconf 2.60.
8305         * m4/getlogin_r.m4 (gl_PREREQ_GETLOGIN_R): Likewise.
8306         * m4/getpass.m4 (gl_PREREQ_GETPASS): Likewise.
8307         * m4/unlocked-io.m4 (gl_FUNC_GLIBC_UNLOCKED_IO): Likewise.
8308
8309 2006-04-19  Derek Price  <derek@ximbiot.com>
8310             Eric Blake  <ebb9@byu.net>
8311
8312         * m4/full-header-path.m4 (gl_FULL_HEADER_PATH): Use </full/path.h>
8313         rather than "/full/path.h".  Update comment to match.  Shorten &
8314         generalize m4_translit call via AS_TR_CPP.
8315
8316 2006-04-19  Derek Price  <derek@ximbiot.com>
8317             Eric Blake  <ebb9@byu.net>
8318
8319         * lib/inttypes.h: Correct grammar in comment.
8320
8321 2006-04-18  Derek Price  <derek@ximbiot.com>
8322             Paul Eggert  <eggert@cs.ucla.edu>
8323
8324         * modules/inttypes: New file.
8325         * modules/strtoimax, modules/strtoumax: Depend on inttypes.
8326
8327 2006-04-18  Derek Price  <derek@ximbiot.com>
8328             Paul Eggert  <eggert@cs.ucla.edu>
8329
8330         * m4/_inttypes_h.m4, m4/full-header-path.m4, m4/include_next.m4:
8331         New files.
8332
8333 2006-04-18  Derek Price  <derek@ximbiot.com>
8334             Paul Eggert  <eggert@cs.ucla.edu>
8335
8336         * lib/inttypes.h: New file.
8337         * lib/strtoimax.c: Assume <inttypes.h>.
8338
8339 2006-04-15  Paul Eggert  <eggert@cs.ucla.edu>
8340
8341         * lib/utimens.c (futimens): glibc futimesat messes up if /proc
8342         isn't mounted.  Problem reported by Kir Kolyshkin.
8343
8344 2006-04-13  Paul Eggert  <eggert@cs.ucla.edu>
8345
8346         * lib/regcomp.c (init_dfa): Don't use wchar_t or wctype_t if
8347         RE_ENABLE_I18N is not defined.  Problem reported by Mark D. Baushke via
8348         Derek R. Price.
8349         * lib/regex.h (RE_DUP_MAX): Update comment to match current
8350         implementation.
8351
8352 2006-04-12  Eric Blake  <ebb9@byu.net>
8353
8354         * modules/time_r (Makefile.am): Remove lib_SOURCES line, as this
8355         is now done automatically by the corresponding Autoconf macro.
8356
8357 2006-04-11  Paul Eggert  <eggert@cs.ucla.edu>
8358
8359         * m4/time_r.m4 (gl_TIME_R): Add AC_LIBSOURCES for time_r.c and
8360         time_r.h.
8361
8362 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
8363
8364         Merge regex changes from libc, removing some of our
8365         POSIX-conformance changes that were rejected and redoing them in a
8366         less-intrusive way.
8367
8368         * lib/regcomp.c (re_compile_internal, init_dfa):
8369         Length arg is now size_t, not Idx.  All uses changed.
8370         (peek_token): Forward decl now says internal_function.
8371         (__re_error_msgid, __re_error_msgid_idx):
8372         Now static rather than extern with attribute_hidden.
8373         (re_compile_pattern) [!defined _LIBC]: Use K&R-style defn.
8374         For some reason libc prefers K&R style defns for external functions.
8375         (regerror) [!defined _LIBC]: Likewise.
8376         (re_set_syntax, re_compile_fastmap, regcomp, regfree, re_comp):
8377         (seek_collating_symbol_entry, lookup_collation_sequence_value):
8378         (build_range_exp, build_collating_symbol):
8379         Use K&R-style defn.
8380         (re_compile_fastmap): Use '\0' to memset, not 0.
8381         (utf8_sb_map): Make the calculations more obvious.
8382         (init_dfa, parse_bracket_exp, build_charclass_op):
8383         Call calloc and cast result, as glibc does.
8384         (init_word_char, fetch_token, peek_token, peek_token_bracket):
8385         (build_range_exp, build_collating_symbol):
8386         Now internal functions.
8387
8388         * lib/regex.c [!defined _LIBC]: Allow compiling with C++ compilers.
8389
8390         * lib/regex.h (__USE_GNU_REGEX): New macro.  Don't depend on
8391         _REGEX_SOURCE any more; depend on _GNU_SOURCE instead.
8392         Don't depend on VMS; depend on __VMS instead, for POSIX
8393         namespace cleanness.
8394         (regoff_t): Define to ssize_t, not long int.
8395
8396         Remove the REG_ macros named below.  Instead, make the old names
8397         (e.g., RE_BACKSLASH_ESCAPE_IN_LISTS) visible only if
8398         __USE_GNU_REGEX.
8399         (REG_BACKSLASH_ESCAPE_IN_LISTS):
8400         (REG_BK_PLUS_QM, REG_CHAR_CLASSES, REG_CONTEXT_INDEP_ANCHORS):
8401         (REG_CONTEXT_INDEP_OPS, REG_CONTEXT_INVALID_OPS):
8402         (REG_DOT_NEWLINE, REG_DOT_NOT_NULL, REG_HAT_LISTS_NOT_NEWLINE):
8403         (REG_INTERVALS, REG_LIMITED_OPS, REG_NEWLINE_ALT):
8404         (REG_NO_BK_BRACES, REG_NO_BK_PARENS, REG_NO_BK_REFS):
8405         (REG_NO_BK_VBAR, REG_NO_EMPTY_RANGES):
8406         (REG_UNMATCHED_RIGHT_PAREN_ORD, REG_NO_POSIX_BACKTRACKING):
8407         (REG_NO_GNU_OPS, REG_DEBUG, REG_INVALID_INTERVAL_ORD):
8408         (REG_IGNORE_CASE, REG_CARET_ANCHORS_HERE):
8409         (REG_CONTEXT_INVALID_DUP, REG_NO_SUB, REG_SYNTAX_EMACS):
8410         (REG_SYNTAX_AWK, REG_SYNTAX_GNU_AWK, REG_SYNTAX_POSIX_AWK):
8411         (REG_SYNTAX_GREP, REG_SYNTAX_EGREP, REG_SYNTAX_POSIX_EGREP):
8412         (REG_SYNTAX_ED, REG_SYNTAX_SED, _REG_SYNTAX_POSIX_COMMON):
8413         (REG_SYNTAX_POSIX_BASIC, REG_SYNTAX_POSIX_MINIMAL_BASIC):
8414         (REG_SYNTAX_POSIX_EXTENDED, REG_SYNTAX_POSIX_MINIMAL_EXTENDED):
8415         (REG_DUP_MAX, REG_UNALLOCATED, REG_REALLOCATE, REG_FIXED):
8416         (REG_NREGS):
8417         Remove.  All uses replaced by the old RE_* names.
8418         (RE_BACKSLASH_ESCAPE_IN_LISTS):
8419         (RE_BK_PLUS_QM, RE_CHAR_CLASSES, RE_CONTEXT_INDEP_ANCHORS):
8420         (RE_CONTEXT_INDEP_OPS, RE_CONTEXT_INVALID_OPS):
8421         (RE_DOT_NEWLINE, RE_DOT_NOT_NULL, RE_HAT_LISTS_NOT_NEWLINE):
8422         (RE_INTERVALS, RE_LIMITED_OPS, RE_NEWLINE_ALT):
8423         (RE_NO_BK_BRACES, RE_NO_BK_PARENS, RE_NO_BK_REFS):
8424         (RE_NO_BK_VBAR, RE_NO_EMPTY_RANGES):
8425         (RE_UNMATCHED_RIGHT_PAREN_ORD, RE_NO_POSIX_BACKTRACKING):
8426         (RE_NO_GNU_OPS, RE_DEBUG, RE_INVALID_INTERVAL_ORD):
8427         (RE_IGNORE_CASE, RE_CARET_ANCHORS_HERE):
8428         (RE_CONTEXT_INVALID_DUP, RE_NO_SUB):
8429         Don't bother having these macros be independent of each others'
8430         values, since they no longer exist in the POSIX name space.
8431
8432         Rename the following member names back to their old names,
8433         unless !__USE_GNU_REGEX.  All uses changed back.
8434         (buffer): Renamed from re_buffer.
8435         (allocated): Renamed from re_allocated.
8436         (used): Renamed from re_used.
8437         (syntax): Renamed from re_syntax.
8438         (fastmap): Renamed from re_fastmap.
8439         (translate): Renamed from re_translate.
8440         (can_be_null): Renamed from re_can_be_null.
8441         (regs_allocated): Renamed from re_regs_allocated.
8442         (fastmap_accurate): Renamed from re_fastmap_accurate.
8443         (no_sub): Renamed from re_no_sub.
8444         (not_bol): Renamed from re_not_bol.
8445         (not_eol): Renamed from re_not_eol.
8446         (newline_anchor): Renamed from re_newline_anchor.
8447         (num_regs): Renamed from rm_num_regs.
8448         (start): Renamed from rm_start.
8449         (end): Renamed from rm_end.
8450
8451         (free_state): Move up a bit.
8452
8453         * lib/regex_internal.h (inline) [__GNUC__ < 3 && defined _LIBC]:
8454         #define to be empty.
8455         (ASCII_CHARS): New macro, replacing all uses of 0x80 and/or SBC_MAX / 2
8456         when that is what is intended.
8457         (SBC_MAX): Define to UCHAR_MAX + 1, not 256.
8458         (__re_error_msgid, __re_error_msgid_idx): Remove decls; not needed.
8459         (MAX): New macro.
8460         (re_xmalloc, re_calloc, re_xrealloc, re_x2realloc): Remove.
8461         All uses changed back to re_malloc, etc.  It's now the caller's
8462         responsibility to check for overflow; all callers changed.
8463         (re_alloc_oversized, re_x2alloc_oversized, re_xnmalloc, re_xnrealloc):
8464         (re_x2nrealloc): Remove.
8465         (free_state): Remove decl.
8466
8467         * lib/regexc.c (regexec, re_match, re_search, re_match_2, re_search_2):
8468         (re_set_registers, re_exec):
8469         Use K&R-style defn.
8470
8471         2006-01-31  Roland McGrath  <roland@redhat.com>
8472
8473         * lib/regcomp.c (calc_eclosure_iter): Remove dead variables.
8474         Reported by Mike Frysinger <vapier@gentoo.org>.
8475
8476         2006-01-15  Andreas Jaeger  <aj@suse.de>
8477
8478         [BZ #1950]
8479         * lib/regex_internal.c (re_string_reconstruct): Adjust for
8480         build_wcs_upper_buffer change.
8481         (build_wcs_upper_buffer): Change return type.
8482
8483         2005-12-10  Ulrich Drepper  <drepper@redhat.com>
8484
8485         * lib/regex_internal.h: Include <stdint.h> if available.
8486
8487         2005-12-06  Paolo Bonzini  <bonzini@gnu.org>
8488
8489         * lib/regex_internal.h (SIZE_MAX): Provide a default definition.
8490
8491         2005-10-14  Ulrich Drepper  <drepper@redhat.com>
8492
8493         * lib/regcomp.c: Adjust for changed secondary hash function.
8494
8495         2005-09-30  Ulrich Drepper  <drepper@redhat.com>
8496
8497         * lib/regex.h: Pretty printing.
8498         Clean up namespace a bit.
8499
8500         2005-09-30  Jakub Jelinek  <jakub@redhat.com>
8501
8502         * lib/regexec.c (update_cur_sifted_state, check_arrival,
8503         check_arrival_add_next_nodes): Avoid using uninitialized variable.
8504
8505         2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
8506                     Ulrich Drepper  <drepper@redhat.com>
8507
8508         [BZ #1302]
8509         * lib/regex_internal.h (bitset_t): Renamed from bitset.  All uses
8510         changed.
8511         (bitset_word_t): Renamed from bitset_word.  All uses changed.
8512
8513         2005-09-22  Ulrich Drepper  <drepper@redhat.com>
8514
8515         [BZ #281]
8516         * lib/regex.h: Define RE_TRANSLATE_TYPE as unsigned char *.
8517         * lib/regcomp.c: Remove unnecessary uses of
8518         unsigned RE_TRANSLATE_TYPE.
8519         * lib/regex_internal.h: Likewise.
8520         * lib/regex_internal.c: Likewise.
8521         * lib/regexec.c: Likewise.
8522         Based on a patch by Stepan Kasal <kasal@ucw.cz>.
8523
8524         2005-09-07  Ulrich Drepper  <drepper@redhat.com>
8525
8526         * lib/regexec.c (find_recover_state): Remove unnecessary
8527         initialization.
8528         (transit_state_bkref): Make DFA a const pointer.
8529         (get_subexp): Likewise.
8530         (check_arrival): Likewise.
8531         (update_cur_sifted_state): Likewise.
8532         (re_search_internal): Likewise.
8533         (prune_impossible_nodes): Likewise.
8534         (acquire_init_state_context): Likewise.
8535         (proceed_next_node): Likewise.
8536         (set_regs): Likewise.
8537         (free_fail_stack_return): Likewise.
8538         (check_arrival_expand_ecl): Mark DFA parameter as const.
8539         (check_arrival_expand_ecl_sub): Likewise.
8540         (check_subexp_limits): Likewise.
8541         (sub_epsilon_src_nodes):  Likewise.
8542         (add_epsilon_src_nodes):  Likewise.
8543         (merge_state_array): Likewise.
8544         (update_regs): Likewise.
8545         (build_trtable): Likewise.
8546         (sift_states_backward): Mark MCTX parameter as const.
8547         (build_sifted_states): Likewise.
8548         (update_cur_sifted_state): Likewise.
8549         (sift_states_mkref): Likewise.
8550         (check_arrival_expand_ecl): Mark eclosure as const.
8551         (check_dst_limits_calc_pos_1): Likewise.
8552         * lib/regex_internal.h (re_match_context_t): Make dfa a const
8553         pointer.
8554
8555         2005-09-06  Ulrich Drepper  <drepper@redhat.com>
8556
8557         * lib/regexec.c (merge_state_with_log): Define dfa as const pointer.
8558         (transit_state_sb): Likewise.
8559         (transit_state_mb): Likewise.
8560         (sift_states_iter_mb): Likewise.
8561         (check_arrival_add_next_nodes): Likewise.
8562         (check_node_accept_bytes): Change first parameter to pointer-to-const.
8563         [_LIBC] (re_search_2_stub): Use mempcpy.
8564
8565         * lib/regex_internal.c (re_string_reconstruct): Avoid calling
8566         mbrtowc for very simple UTF-8 case.
8567
8568         * lib/regex_internal.c (re_acquire_state): Make DFA pointer arg
8569         a pointer-to-const.
8570         (re_acquire_state_context): Likewise.
8571         * lib/regex_internal.h: Adjust prototypes.
8572
8573         * lib/regex.c: Prevent using C++ compilers.
8574
8575         * lib/regex_internal.c (re_acquire_state): Minor code rearrangement.
8576         (re_acquire_state_context): Likewise.
8577
8578 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
8579
8580         * modules/regex (Depends-on): Add ssize_t.
8581
8582 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
8583
8584         * m4/regex.m4 (gl_REGEX): Check for new glibc interface to
8585         translation table.
8586
8587 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
8588
8589         * doc/gnulib-tool.texi (Modified imports): pathname -> file name.
8590
8591 2006-03-29  Mark D. Baushke  <mdb@gnu.org>
8592             Bruno Haible  <bruno@clisp.org>
8593
8594         * lib/stdint_.h: On OpenBSD, don't redefine types already included in
8595         <sys/types.h> and <inttypes.h>.
8596
8597 2006-03-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8598
8599         * m4/argz.m4 (gl_FUNC_ARGZ): If we define `error_t', also define
8600         `__error_t_defined', so argp.h will not typedef the former.
8601
8602 2006-03-25  Paul Eggert  <eggert@cs.ucla.edu>
8603
8604         * m4/regex.m4 (gl_REGEX): Don't insist on REG_SYNTAX_POSIX_EGREP,
8605         REG_SYNTAX_EMACS, and REG_IGNORE_CASE.  Settle for the traditional
8606         glibc names.  Even if glibc is changed to conform to POSIX, the
8607         traditional names will be available anyway, since regex depends on
8608         the extensions module.  Also, fix a longstanding typo in the
8609         implementation of Spencer ERE test #75 from grep 2.3.  Problems
8610         reported by Emanuele Giaquinta.  Also, change sense of cached
8611         variable, so that the message makes sense.
8612
8613 2006-03-24  Simon Josefsson  <jas@extundo.com>
8614
8615         * lib/base64.c: Fix problems reported by Eric Blake <ebb9@byu.net>,
8616         including some doc fixes.
8617         (base64_encode_alloc): Fix +1 bug on allocation failures.
8618
8619 2006-03-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8620
8621         * lib/base64.c (base64_encode): Do not read past end of array with
8622         unsanitized input on systems with CHAR_BIT > 8.
8623
8624 2006-03-24  Eric Blake  <ebb9@byu.net>
8625
8626         * lib/time_r.c (copy_string_result): Remove, as it is no longer used.
8627
8628 2006-03-22  Karl Berry  <karl@gnu.org>
8629
8630         * config/srclist.txt (*setenv.[ch]): get from coreutils.
8631         * config/srclistvars.sh (COREUTILS): new var.
8632
8633 2006-03-17  Jim Meyering  <jim@meyering.net>
8634
8635         * m4/regex.m4 (gl_REGEX): Fix typo in last change:
8636         s/_REGEX_WIDE_OFFSETS/_REGEX_LARGE_OFFSETS/.
8637
8638 2006-03-16  Paul Eggert  <eggert@cs.ucla.edu>
8639
8640         * m4/regex.m4 (gl_REGEX): Don't check for off_t, since the code
8641         no longer needs it.  Instead, check that regoff_t is as least
8642         as wide as ptrdiff_t.
8643
8644         Don't define _REGEX_WIDE_OFFSETS unless using the included regex,
8645         so that our regex.h stays compatible with the installed regex.
8646         This is helpful for installers who configure --without-included-regex.
8647         Problem reported by Emanuele Giaquinta.
8648
8649 2006-03-16  Paul Eggert  <eggert@cs.ucla.edu>
8650
8651         * lib/regex.h (regoff_t) [defined _REGEX_LARGE_OFFSETS]:
8652         Typedef to long int, not to off_, as POSIX will likely change
8653         in that direction.
8654
8655 2006-03-15  Eric Blake  <ebb9@byu.net>
8656
8657         * m4/dirfd.m4 (gl_FUNC_DIRFD): Use AC_REQUIRE for AC_HEADER_DIRENT.
8658
8659 2006-03-13  Sergey Poznyakoff  <gray@gnu.org.ua>
8660
8661         * lib/argp-help.c (validate_uparams): Fix typo
8662         * lib/argp-parse.c (argp_default_options): Consistently begin help
8663         messages with a lowercase letter.
8664
8665 2006-03-11  Paul Eggert  <eggert@cs.ucla.edu>
8666
8667         * lib/time_r.h (asctime_r, ctime_r): Remove.  These functions can
8668         overrun buffers and shouldn't be used (much as gets shouldn't be
8669         used).
8670         * lib/time_r.c (asctime_r, ctime_r): Likewise.
8671
8672 2006-03-08  Simon Josefsson  <jas@extundo.com>
8673
8674         * m4/gc-random.m4: Permit 'no' as variable values and fix warnings,
8675         suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
8676
8677 2006-03-08  Simon Josefsson  <jas@extundo.com>
8678
8679         * m4/gc-random.m4: Call AC_CANONICAL_HOST and use $host_os instead of
8680         $target, suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
8681
8682 2006-03-08  Simon Josefsson  <jas@extundo.com>
8683
8684         * lib/gc-gnulib.c (randomize): Don't open files called 'no', they
8685         signal that configure disabled the device.
8686
8687 2006-03-08  Simon Josefsson  <jas@extundo.com>
8688
8689         * build-aux/maint.mk: Fix refresh-po, to handle no translated
8690         languages.
8691
8692 2006-03-07  Simon Josefsson  <jas@extundo.com>
8693
8694         * modules/getopt (Depends-on): Add unistd.
8695
8696         * modules/unistd: New file.
8697
8698 2006-03-07  Simon Josefsson  <jas@extundo.com>
8699
8700         * modules/gc-random: New file.
8701
8702 2006-03-07  Simon Josefsson  <jas@extundo.com>
8703
8704         * m4/unistd_h.m4: New file.
8705
8706 2006-03-07  Simon Josefsson  <jas@extundo.com>
8707
8708         * m4/readline.m4 (gl_FUNC_READLINE): Rewrite the cached part of the
8709         test to be side-effect free by storing the result in the cache
8710         variable gl_cv_lib_readline, and moving the assignment of
8711         LIBREADLINE and LTLIBREADLINE outside the COMMANDS-TO-SET-IT.
8712         From Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
8713
8714 2006-03-07  Simon Josefsson  <jas@extundo.com>
8715
8716         * m4/gc-random.m4: New file, mostly from gc.m4.  Warn instead of
8717         error on missing devices (the functions will return an error).
8718
8719         * m4/gc.m4: Move random stuff to gc-random.m4
8720
8721 2006-03-07  Simon Josefsson  <jas@extundo.com>
8722
8723         * lib/unistd_.h: New file.
8724
8725 2006-03-07  Simon Josefsson  <jas@extundo.com>
8726
8727         * lib/gc-libgcrypt.c, gc-gnulib.c: Use GC_USE_RANDOM.
8728
8729 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
8730
8731         * m4/unistd_h.m4 (gl_HEADER_UNISTD): Rename, to match modules file.
8732         Problem reported by Juan Manuel Guerrero.
8733
8734 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
8735
8736         * lib/c-stack.c: Include unistd.h unconditionally, since we now assume
8737         the unistd module.
8738         * lib/getlogin_r.c: Likewise.
8739         * lib/getlogin_r.h: Likewise.
8740         * lib/glob.c: Likewise.
8741         * lib/pagealign_alloc.c: Likewise.
8742         * lib/unistd_.h: Remove; no longer needed.
8743
8744 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
8745
8746         * MODULES.html.sh (Support for systems lacking POSIX:2001):
8747         Add unistd.
8748         * modules/c-stack (Depends-on): Add unistd.
8749         * modules/getlogin_r: Likewise.
8750         * modules/glob: Likewise.
8751         * modules/pagealign_alloc: Likewise.
8752         * modules/unistd (Files): Remove lib/unistd_.h.
8753         (EXTRA_DIST): Remove.
8754         (unistd.h): Create using 'echo' rather than 'cp', so that we don't
8755         need unistd_.h.
8756         (MOSTLYCLEANFILES): Remove unistd.h-t.
8757
8758 2006-03-03  Simon Josefsson  <jas@extundo.com>
8759
8760         * build-aux/maint.mk: Add several syntax checks from CoreUtils.
8761
8762 2006-03-03  Simon Josefsson  <jas@extundo.com>
8763
8764         * build-aux/maint.mk: Add refresh-po rule, based on ideas from
8765         libidn and bison.
8766
8767 2006-03-03  Simon Josefsson  <jas@extundo.com>
8768
8769         * build-aux/maint.mk: Add indent target.
8770
8771 2006-03-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de> (tiny change)
8772
8773         * m4/poll.m4 (gl_FUNC_POLL): If we deem poll(2) unacceptable, use
8774         our replacement poll.h in any case, to avoid a differing
8775         declaration from a system header.  Seen on AIX.
8776
8777 2006-03-01  Simon Josefsson  <jas@extundo.com>
8778
8779         * lib/readline.c: Fix typo, tiny patch from Stepan Kasal
8780         <kasal@ucw.cz>.
8781
8782 2006-03-01  Paul Eggert  <eggert@cs.ucla.edu>
8783
8784         * modules/gettime (Depends-on): Add extensions module.
8785         * modules/nanosleep (Depends-on): Likewise.
8786         * modules/settime (Depends-on): Likewise.
8787
8788 2006-03-01  Paul Eggert  <eggert@cs.ucla.edu>
8789
8790         * m4/clock_time.m4 (gl_CLOCK_TIME): Require gl_USE_SYSTEM_EXTENSIONS,
8791         not merely AC_GNU_SOURCE, for the benefit of Solaris 10 when compiled
8792         pedantically.
8793         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
8794         * m4/timespec.m4 (gl_TIMESPEC): Likewise.
8795
8796         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Use "=" with "test",
8797         not "==".  Reported by Ralf Wildenhues.
8798
8799 2006-03-01  Karl Berry  <karl@gnu.org>
8800
8801         * doc/Copyright/request-*: new files, synced from gnuorg.
8802
8803 2006-03-01  Karl Berry  <karl@gnu.org>
8804
8805         * config/srclist.txt (Copyright/*): new entries.
8806
8807 2006-02-28  Simon Josefsson  <jas@extundo.com>
8808
8809         * lib/getopt.c: Protect #include of unistd.h, for MSVS.
8810
8811 2006-02-27  Simon Josefsson  <jas@extundo.com>
8812
8813         * lib/base64.h: Indent #define's.  From Jim Meyering
8814         <jim@meyering.net>.
8815
8816 2006-02-27  Jim Meyering  <jim@meyering.net>
8817
8818         Revert the change of 2006-02-24, so these files can continue
8819         to be sync'd from gettext.
8820         * lib/mkdtemp.c, setenv.c, unsetenv.c: *Un*-normalize inclusion
8821         of `config.h'.
8822
8823 2006-02-26  Paul Eggert  <eggert@cs.ucla.edu>
8824
8825         * modules/intprops: New file.
8826         * MODULES.html.sh (Numeric conversion functions <stdlib.h>):
8827         Add intprops.
8828         * modules/getloadavg (Files): Remove lib/intprops.h.
8829         (Depends-on): Add intprops.
8830         * modules/human: Likewise.
8831         * modules/inttostr: Likewise.
8832         * modules/openat: Likewise.
8833         * modules/sig2str: Likewise.
8834         * modules/userspec: Likewise.
8835         * modules/utimecmp: Likewise.
8836         * modules/xnanosleep: Likewise.
8837         * modules/xstrtol: Likewise.
8838
8839 2006-02-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny changes)
8840
8841         * modules/xstrtod: Omit xstrtod.h, xstrtod.c; they're in LIB_SOURCES.
8842         * modules/lock-tests (TESTS): Use $(EXEEXT).
8843         * modules/tls-tests: Likewise.
8844         * modules/argp-tests: Likewise.
8845         (check_PROGRAMS): New var, replacing...
8846         (noinst_PROGRAMS, test_argp_SOURCES): Remove.
8847
8848 2006-02-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8849
8850         * lib/mkdtemp.c, lib/setenv.c, lib/unsetenv.c: Normalize inclusion of
8851         `config.h'.
8852
8853 2006-02-24  Paul Eggert  <eggert@cs.ucla.edu>
8854
8855         * lib/glob.c: Say "invalid" rather than "illegal" in comments.
8856
8857 2006-02-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8858
8859         Sync from coreutils.
8860         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Require gl_FUNC_LCHMOD and
8861         gl_CHDIR_SAFER.
8862
8863 2006-02-22  Jim Meyering  <jim@meyering.net>
8864
8865         Sync from coreutils.
8866         * m4/chdir-safer.m4: New file.
8867
8868 2006-02-20  Paul Eggert  <eggert@cs.ucla.edu>
8869
8870         * lib/getcwd.c (AT_FDCWD): Work around a bug in Solaris 9 and 10, where
8871         AT_FDCWD exceeds INT_MAX.
8872         * lib/openat.h (AT_FDCWD): Likewise.
8873
8874 2006-02-17  Eric Blake  <address@hidden>
8875
8876         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Fix caching error.
8877
8878 2006-02-16  Simon Josefsson  <jas@extundo.com>
8879
8880         * modules/getaddrinfo (Depends-on): Add sys_socket.
8881
8882 2006-02-15  Simon Josefsson  <jas@extundo.com>
8883
8884         * build-aux/maint.mk: Add dsyntax-check rule.
8885
8886 2006-02-15  Eric Blake  <ebb9@byu.net>
8887
8888         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Don't attempt using
8889         winsock2.h or ws2tcpip.h when sys/socket.h is present. Fixes
8890         'present but cannot compile' warnings on cygwin.
8891         * m4/socklen.m4 (gl_TYPE_SOCKLEN_T): Use gl_HEADER_SYS_SOCKET.  Don't
8892         use ws2tcpip.h if sys/socket.h works.
8893         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Use gl_HEADER_SYS_SOCKET.
8894         (gl_GETADDRINFO): Don't use ws2tcpip.h when sys/socket.h is present.
8895
8896 2006-02-14  Simon Josefsson  <jas@extundo.com>
8897
8898         * modules/maintainer-makefile (Files): Rename.
8899
8900         * build-aux/GNUmakefile: Rename Makefile.maint to maint.mk
8901         and (the local) Makefile.cfg to maint-cfg.mk.
8902
8903         * build-aux/Makefile.maint, build-aux/maint.mk: Renamed the former
8904         to the latter.
8905
8906         * modules/maintainer-makefile: New module.
8907
8908         * build-aux/Makefile.maint: New file, from GNU CoreUtils, although
8909         severaly stripped to make it possible to build it up from scratch
8910         with reliable tests.
8911
8912         * build-aux/GNUmakefile: New file, from GNU CoreUtils with some
8913         fixes to permit overriding the default actions when configure and
8914         makefile are not available.
8915
8916 2006-02-14  Paul Eggert  <eggert@cs.ucla.edu>
8917
8918         Sync from coreutils.
8919         * modules/lstat (Depends-on): Don't depend on xalloc.
8920         (License): Change from GPL to LGPL, since this is now simply a
8921         replacement for a libc function.
8922
8923 2006-02-14  Jim Meyering  <jim@meyering.net>
8924
8925         Sync from coreutils.
8926
8927         Eliminate the unwelcome (albeit unlikely) possibility of xmalloc
8928         failure on deficient systems, and simplify gnulib lgpl dependencies.
8929         * lib/lstat.c (rpl_lstat): Rewrite to use stat() in place of the
8930         xmalloc/lstat combination.  Based on a patch from Bruno Haible.
8931
8932         * lib/xalloc-die.c: Remove unused definition of N_.
8933
8934 2006-02-14  Jim Meyering  <jim@meyering.net>
8935
8936         Sync from coreutils.
8937         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): Invoke
8938         AC_CHECK_FUNCS(getmntent) unconditionally so that tests of
8939         $ac_cv_func_getmntent (e.g., in gl_LIST_MOUNTED_FILE_SYSTEMS) need not
8940         double-quote uses of that variable, to accommodate the rare case in
8941         which getmntent is available in none of the libraries checked.  This
8942         happens at least on FreeBSD 5.0.
8943
8944 2006-02-13  Simon Josefsson  <jas@extundo.com>
8945
8946         * gnulib-tool (Usage): Fix --import, from
8947         karl@freefriends.org (Karl Berry).
8948
8949 2006-02-13  Sergey Poznyakoff  <gray@gnu.org.ua>
8950
8951         * lib/argp-fmtstream.c: Restore another bugfix lost on 2005-12-12
8952
8953 2006-02-07  Sergey Poznyakoff  <gray@gnu.org.ua>
8954
8955         * lib/argp-namefrob.h: Restore changes accidentally lost during the
8956         "autoupdate" on 2005-12-12.
8957
8958 2006-02-07  Paul Eggert  <eggert@cs.ucla.edu>
8959
8960         * modules/closeout (Depends-on): Remove atexit.
8961
8962 2006-02-07  Paul Eggert  <eggert@cs.ucla.edu>
8963
8964         * lib/closeout.c (close_stdout): Don't assume 'bool' converts nonzero
8965         ints to 0 or 1, as this isn't true for the stdbool.h substitute.
8966
8967 2006-02-05  Paul Eggert  <eggert@cs.ucla.edu>
8968
8969         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Don't #define
8970         __EXTENSIONS__ if this causes compilation to fail.  Problem
8971         reported by Nelson H. F. Beebe with Solaris 10 and Sun C 5.7
8972         c89 -D_XOPEN_SOURCE -D_XOPEN_SOURCE_EXTENDED.
8973
8974 2006-01-27  Paul Eggert  <eggert@cs.ucla.edu>
8975
8976         * lib/fnmatch.c (L_): Renamed from L, to work around a bug in
8977         Mac OS X 10.3.9 with GCC 3 reported by Claudio Fontana in
8978         <http://lists.gnu.org/archive/html/bug-gnulib/2006-01/msg00074.html>.
8979         All uses changed.
8980
8981 2006-01-26  Simon Josefsson  <jas@extundo.com>
8982
8983         * lib/socket_.h: Set WINVER to 0x0501, to make sure getaddrinfo
8984         prototype is visible on mingw32.
8985
8986         * lib/getaddrinfo.h: Define EAI_ADDRFAMILY and EAI_SYSTEM if not set,
8987         for mingw32.
8988
8989         * lib/gai_strerror.c, getaddrinfo.h: Protect netdb.h #include (for
8990         mingw32).
8991
8992 2006-01-26  Paul Eggert  <eggert@cs.ucla.edu>
8993
8994         * lib/fts.c (diropen): Open with O_NOCTTY | O_NONBLOCK too.  Don't
8995         attempt to open for write; this always fails, at least on POSIX
8996         hosts.  This reinstates the 2006-01-09 change, which was
8997         inadvertently removed.
8998
8999 2006-01-26  Bruno Haible  <bruno@clisp.org>
9000
9001         * gnulib-tool (func_import): Use "trap 'exit $?' instead of "trap :".
9002         Reported by Paul Eggert.
9003
9004 2006-01-26  Bruno Haible  <bruno@clisp.org>
9005             Paul Eggert  <eggert@cs.ucla.edu>
9006
9007         * lib/stdbool_.h (_Bool)
9008         [(! (defined __cplusplus || defined __BEOS__)
9009           && !defined __GNUC__
9010           && !(defined __HP_cc || defined __xlc__
9011                || (defined __SUNPRO_C && (__SUNPRO_C < 0x550 || __STDC__ == 1))
9012                || defined __sgi))]:
9013         #define to signed char in these cases too; this simplifies
9014         the code (so that we don't have to worry about HP-UX, AIX, SunPRO,
9015         etc., separately) and makes it more conservative.
9016
9017 2006-01-25  Simon Josefsson  <jas@extundo.com>
9018
9019         * m4/getaddrinfo.m4: Look for getaddrinfo inside ws2tcip.h and
9020         -lws2_32.  Protect sys/socket.h and netdb.h #include's.  Include
9021         ws2tcpip.h with WINVER=0x0501.  All for mingw32.
9022
9023 2006-01-25  Sergey Poznyakoff  <gray@gnu.org.ua>
9024
9025         * lib/argp-namefrob.h: Bugfix. Remove stray #
9026
9027 2006-01-25  Paul Eggert  <eggert@cs.ucla.edu>
9028
9029         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check for xlc bug if __GCC__ too,
9030         so that we test the test.
9031         Check for yet another HP-UX cc bug involving *bool |= bool.
9032
9033 2006-01-25  Karl Berry  <karl@gnu.org>
9034
9035         * config/srclist.txt (vasnprintf.c): sync lost.
9036
9037 2006-01-25  Jim Meyering  <jim@meyering.net>
9038
9039         Sync from the stable (b5) branch of coreutils:
9040
9041         * lib/fts.c (fts_children): Don't let close() clobber errno from
9042         failed fchdir().
9043
9044         * lib/fts.c (fts_stat): When following a symlink-to-directory,
9045         don't necessarily interpret stat-fails+lstat-succeeds as indicating
9046         a dangling symlink.  That can also happen at least for ELOOP.
9047         The fix: return FTS_SLNONE only when the stat errno is ENOENT.
9048         FYI, this bug predates the inclusion of fts.c in coreutils.
9049
9050         * lib/fts.c (fts_open): Put new maxarglen declaration and uses
9051         in their own block, so pre-c99 compilers don't object.
9052
9053         Avoid the double-free (first in fts_read, second in fts_close) that
9054         would occur when an `active' directory is made inaccessible (e.g.,
9055         via chmod a-x) during a traversal.
9056         * lib/fts.c (fts_read): After a failed fchdir, update sp->fts_cur
9057         before returning.  Reproduce this failure by
9058         mkdir -p a/b; cd a; chmod a-x . b
9059         Reported by Stavros Passas.
9060
9061 2006-01-25  Jim Meyering  <jim@meyering.net>
9062
9063         * lib/fileblocks.c: Remove more useless parentheses.
9064         * lib/readutmp.h: Likewise.
9065
9066 2006-01-25  Bruno Haible  <bruno@clisp.org>
9067
9068         * lib/stdbool_.h (_Bool) [IRIX cc]: Define as 'signed char', to avoid
9069         warnings.
9070         Reported by Paul Eggert.
9071
9072 2006-01-25  Bruno Haible  <bruno@clisp.org>
9073
9074         * gnulib-tool (func_import): Use "trap :" instead of "trap -" to get
9075         rid of a trap command. For Solaris sh.
9076         Reported by Mark D. Baushke <mdb@gnu.org>.
9077
9078 2006-01-24  Simon Josefsson  <jas@extundo.com>
9079
9080         * lib/socket_.h (SHUT_WR, SHUT_RDWR): Don't hardcode, suggested by
9081         Bruno.
9082
9083 2006-01-24  Karl Berry  <karl@gnu.org>
9084
9085         * config/srclist.txt (argp-namefrob.h): sync lost.
9086
9087 2006-01-24  Jim Meyering  <jim@meyering.net>
9088
9089         * modules/openat (Files): Add lib/intprops.h.
9090         From Mark D. Baushke.
9091
9092 2006-01-24  Jim Meyering  <jim@meyering.net>
9093
9094         * m4/openat.m4 (gl_FUNC_OPENAT): Add AC_LIBSOURCES([intprops.h]).
9095         Reported by Mark D. Baushke.
9096
9097 2006-01-24  Jim Meyering  <jim@meyering.net>
9098
9099         * lib/socket_.h: Remove useless parentheses in uses of cpp `defined'.
9100
9101 2006-01-24  Bruno Haible  <bruno@clisp.org>
9102
9103         * modules/strnlen (Maintainer): Change from glibc to all.
9104
9105 2006-01-24  Bruno Haible  <bruno@clisp.org>
9106
9107         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check for IBM and HP-UX bugs.
9108         Patch by Paul Eggert.
9109
9110 2006-01-24  Bruno Haible  <bruno@clisp.org>
9111
9112         * lib/stdbool_.h (_Bool) [__cplusplus]: Don't define if the compiler
9113         already has it.
9114         Report and patch by Albert Chin-A-Young  <china@thewrittenword.com> on
9115         2005-11-26.
9116
9117         * lib/stdbool_.h (_Bool) [HP-UX cc, AIX cc,xlc]: Define as
9118         'signed char' to avoid problems with the built-in _Bool type.
9119         Reported by Paul Eggert on 2005-11-26.
9120
9121 2006-01-24  Bruno Haible  <bruno@clisp.org>
9122
9123         * gnulib-tool (func_import): Avoid constructing complicated sed
9124         expressions inside backquote.
9125         Report and solution by Mark D. Baushke <mdb@gnu.org>.
9126
9127 2006-01-23  Ulrich Drepper  <drepper@redhat.com>
9128
9129         These changes imported from libc.
9130         * lib/getopt.c: Use __fxprintf instead of inline stream orientation
9131         test and two separate function calls.
9132         * lib/strndup.c (__strndup): Add libc_hidden_def.
9133
9134 2006-01-23  Simon Josefsson  <jas@extundo.com>
9135
9136         * modules/lock-tests: Use check_PROGRAMS instead of noinst_PROGRAMS.
9137         Remove the test_*_SOURCES variable: automake infers it by default.
9138         * modules/tls-tests: Likewise.
9139
9140 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
9141
9142         Work around porting bugs reported by Dieter in
9143         <http://lists.gnu.org/archive/html/bug-bison/2006-01/msg00049.html>.
9144         * lib/getopt.c (_NOPROTO): Remove; no longer needed.
9145         Include <stdlib.h> and <unistd.h> in all environments; it's safe now.
9146         Include "getopt.h" first, to check interface.
9147         (getenv): Declare only if defined HAVE_DECL_GETENV &&
9148         !HAVE_DECL_GETENV.
9149         * lib/strndup.c [!_LIBC]: Include "strndup.h" to get prototype.
9150         (__strndup): Revert to K&R-style function dfns, the glibc style.
9151         * lib/strnlen.c: Don't claim it's taken from glibc; it's not.
9152         (strnlen, __strnlen): Remove #defines and #undefs; not needed.
9153         Include strnlen.h first, to get prototype properly.
9154         (strnlen): Renamed from __strnlen.
9155         Remove weak alias.
9156
9157 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
9158
9159         * m4/getopt.m4 (gl_PREREQ_GETOPT): Check for getenv decl.
9160
9161 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
9162
9163         * config/srclist.txt: Adjust to reflect glibc reorganization.
9164         This affects only comments.
9165
9166 2006-01-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
9167
9168          * gnulib-tool, build-aux/csharpcomp.sh.in: Do not pass `-q' to mktemp.
9169          Reported by Bruce Korb <bkorb@gnu.org>.
9170
9171 2006-01-22  Paul Eggert  <eggert@cs.ucla.edu>
9172
9173         * lib/quotearg.c (quotearg_buffer_restyled): Add "default: break;"
9174         to pacify gcc -Wswitch-default.
9175
9176 2006-01-22  Bruno Haible  <bruno@clisp.org>
9177
9178         * lib/vasnprintf.c (VASNPRINTF): In the computation of the size of the
9179         temporary buffer for sprintf, take into account the precision also
9180         for 'd', 'i', 'u', 'o', 'x', 'X'.
9181
9182 2006-01-21  Sergey Poznyakoff  <gray@gnu.org.ua>
9183
9184         * modules/argp-tests: New module
9185         * tests/test-argp.c: New file
9186         * tests/test-argp-2.sh: New file
9187
9188 2006-01-21  Sergey Poznyakoff  <gray@gnu.org.ua>
9189
9190         * lib/argp-help.c (usage_long_opt): Do not print DOC options.
9191         (__argp_base_name): Removed
9192         * lib/argp-namefrob.h (__argp_basename): Removed definition. Was a
9193         typo.
9194         (__argp_base_name): Provide macro definition or extern declaration
9195         depending on the configuration
9196
9197 2006-01-20  Simon Josefsson  <jas@extundo.com>
9198
9199         * modules/inet_ntop (Depends-on): Depend on sys_socket.
9200
9201 2006-01-20  Simon Josefsson  <jas@extundo.com>
9202
9203         * lib/inet_ntop.h: Unconditionally include sys/socket.h.
9204
9205 2006-01-20  Paul Eggert  <eggert@cs.ucla.edu>
9206
9207         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Use -Wl,-z,ignore
9208         rather than -Xlinker -z -Xlinker ignore, as it's more portable.
9209         Suggested by Bruno Haible.
9210
9211 2006-01-20  Karl Berry  <karl@gnu.org>
9212
9213         * config/srclist.txt (argp-fmtstream.h, localcharset.c): comment out
9214         until changes propagate, I guess.
9215
9216 2006-01-19  Simon Josefsson  <jas@extundo.com>
9217
9218         * m4/socklen.m4: Look in ws2tcpip.h too, for mingw32.
9219
9220 2006-01-19  Simon Josefsson  <jas@extundo.com>
9221
9222         * lib/socket_.h: Map SHUT_RD, SHUT_WR, SHUT_RDWR correctly.
9223
9224 2006-01-19  Simon Josefsson  <jas@extundo.com>
9225
9226         * gnulib-tool: Set check_PROGRAMS.
9227
9228         * modules/arcfour-tests, modules/arctwo-tests, modules/crc-tests,
9229         modules/des-tests, modules/gc-arcfour-tests,
9230         modules/gc-arctwo-tests, modules/gc-des-tests,
9231         modules/gc-hmac-md5-tests, modules/gc-hmac-sha1-tests,
9232         modules/gc-md2-tests, modules/gc-md4-tests, modules/gc-md5-tests,
9233         modules/gc-pbkdf2-sha1-tests, modules/gc-rijndael-tests,
9234         modules/gc-sha1-tests, modules/gc-tests, modules/hmac-md5-tests,
9235         modules/hmac-sha1-tests, modules/md2-tests, modules/md4-tests,
9236         modules/md5-tests, modules/readline, modules/rijndael-tests: Use
9237         check_PROGRAMS instead of noinst_PROGRAMS to be able to remove
9238         test_*_SOURCES.
9239
9240 2006-01-18  Simon Josefsson  <jas@extundo.com>
9241
9242         * modules/socklen (Depends-on): Depend on sys_socket.
9243
9244 2006-01-18  Simon Josefsson  <jas@extundo.com>
9245
9246         * modules/arcfour-tests, modules/arctwo-tests, modules/crc-tests,
9247         modules/des-tests, modules/gc-arcfour-tests,
9248         modules/gc-arctwo-tests, modules/gc-des-tests,
9249         modules/gc-hmac-md5-tests, modules/gc-hmac-sha1-tests,
9250         modules/gc-md2-tests, modules/gc-md4-tests, modules/gc-md5-tests,
9251         modules/gc-pbkdf2-sha1-tests, modules/gc-rijndael-tests,
9252         modules/gc-sha1-tests, modules/gc-tests, modules/hmac-md5-tests,
9253         modules/hmac-sha1-tests, modules/md2-tests, modules/md4-tests,
9254         modules/md5-tests, modules/readline, modules/rijndael-tests: Add
9255         $(EXEEXT) to automake TESTS variable, for mingw32.
9256
9257 2006-01-17  Simon Josefsson  <jas@extundo.com>
9258
9259         * modules/socklen (Include): Need sys/socket.h.
9260
9261 2006-01-17  Bruno Haible  <bruno@clisp.org>
9262
9263         * modules/ssize_t (Include): Add <sys/types.h>.
9264
9265 2006-01-16  Paul Eggert  <eggert@cs.ucla.edu>
9266
9267         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Don't use ldd, as
9268         it's not portable and it doesn't work with cross-compiles.
9269         Problem reported by Bruno Haible.  Fix missing-$ typo in
9270         'test "gl_cv_ignore_unused_libraries" ...' that prevented
9271         -zignore from being used with Sun's C compiler.
9272
9273 2006-01-12  Simon Josefsson  <jas@extundo.com>
9274
9275         * lib/base64.c: Fix warning, reported by Bruno Haible
9276         <bruno@clisp.org> and patch by Paul Eggert <eggert@CS.UCLA.EDU>.
9277
9278 2006-01-12  Bruno Haible  <bruno@clisp.org>
9279
9280         * modules/ldd: New file.
9281         * build-aux/ldd.sh.in: New file.
9282         * MODULES.html.sh (Support for building libraries and executables): Add
9283         ldd.
9284
9285 2006-01-12  Bruno Haible  <bruno@clisp.org>
9286
9287         * m4/ldd.m4: New file.
9288
9289 2006-01-12  Bruno Haible  <bruno@clisp.org>
9290
9291         * gnulib-tool (func_import, func_create_testdir): Don't go into an
9292         endless loop while replacing $auxdir with build-aux.
9293
9294 2006-01-11  Simon Josefsson  <jas@extundo.com>
9295
9296         * lib/stdint_.h (SIZE_MAX): Add missing (.
9297
9298 2006-01-11  Paul Eggert  <eggert@cs.ucla.edu>
9299
9300         Sync from coreutils.
9301         * lib/md5.c: Fix commentary typos.
9302         (alignof, UNALIGNED_P): No need for a GCC-specific version.
9303         * lib/md5.h (__attribute__): Remove; unused.
9304         * lib/sha1.c: Fix commentary to match md5 better.
9305         * lib/sha1.h (struct sha1_ctx): Use a word buffer, not a byte buffer,
9306         so that we don't need to worry about alignment.  All uses changed.
9307         This merges the 2005-10-28 md5 change into sha1.
9308
9309 2006-01-11  Jim Meyering  <jim@meyering.net>
9310
9311         Sync from coreutils.
9312         * lib/md5.c (OP): Fix spacing.
9313
9314 2006-01-11  Bruno Haible  <bruno@clisp.org>
9315
9316         Ensure automatic ordering between gl_LOCK and gl_ARGP.
9317         * m4/lock.m4 (gl_LOCK_BODY): Renamed from gl_LOCK.
9318         (gl_LOCK): New macro, requiring gl_LOCK_BODY.
9319
9320 2006-01-11  Bruno Haible  <bruno@clisp.org>
9321
9322         Ensure automatic ordering between gl_LOCK and gl_ARGP.
9323         * gnulib-tool (func_import, func_create_testdir): Put gl_LOCK into
9324         the "early" section as well.
9325
9326 2006-01-11  Bruno Haible  <bruno@clisp.org>
9327
9328         Avoid "ar: no archive members specified" error on MacOS X.
9329         * gnulib-tool (func_modules_add_dummy): New function.
9330         (func_import, func_create_testdir): Invoke it.
9331
9332 2006-01-11  Bruno Haible  <bruno@clisp.org>
9333
9334         * gnulib-tool (func_import, func_create_testdir): Replace build-aux
9335         with $auxdir in AC_CONFIG_FILES statements.
9336
9337 2006-01-11  Bruno Haible  <bruno@clisp.org>
9338
9339         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
9340         Initialize also noinst_HEADERS to empty.
9341
9342 2006-01-11  Bruno Haible  <bruno@clisp.org>
9343
9344         * gnulib-tool (AUTOMAKEPATH, AUTOCONF, ACLOCAL, AUTOMAKE): New
9345         variables.
9346         (func_create_megatestdir): Call aclocal, autoconf, automake here, not
9347         autoreconf.
9348
9349 2006-01-11  Bruno Haible  <bruno@clisp.org>
9350
9351         * gnulib-tool (AUTOCONF, ACLOCAL, AUTOMAKE, AUTORECONF): Make
9352         overridable by the user.
9353         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
9354
9355 2006-01-10  Simon Josefsson  <jas@extundo.com>
9356
9357         * modules/sys_socket: New file.
9358
9359 2006-01-10  Simon Josefsson  <jas@extundo.com>
9360
9361         * m4/sys_socket_h.m4: New file.
9362
9363 2006-01-10  Simon Josefsson  <jas@extundo.com>
9364
9365         * lib/socket_.h: New file.
9366
9367 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
9368
9369         * modules/readutmp (Maintainer): Add myself.
9370
9371 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
9372
9373         * m4/memcoll.m4 (gl_MEMCOLL): Don't require AC_FUNC_MEMCMP, undoing
9374         the 2002-12-31 change.  Problem and fix reported by Bruno Haible.
9375         People who are still concerned with buggy memcmp implementations
9376         can invoke gl_FUNC_MEMCMP themselves.
9377
9378 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
9379
9380         * lib/regex_internal.h (BITSET_WORD_BITS):
9381         Work around a bug in 64-bit PGC (before version 6.1-2), where the
9382         preprocessor mishandles large unsigned values as if they were signed.
9383         Problem reported by Claudio Fontana in
9384         <http://lists.gnu.org/archive/html/bug-gnulib/2005-12/msg00061.html>.
9385
9386 2006-01-10  Jim Meyering  <jim@meyering.net>
9387
9388         Avoid the double-free (first in fts_read, second in fts_close) that
9389         would occur when an `active' directory is made inaccessible (e.g.,
9390         via chmod a-x) during a traversal.
9391         * lib/fts.c (fts_read): After a failed fchdir, update sp->fts_cur
9392         before returning.  Reproduce this failure by
9393         mkdir -p a/b; cd a; chmod a-x . b
9394         Reported by Stavros Passas.
9395
9396         Sync from coreutils.
9397         * lib/sha1.c: Tweak grammar in a comment.
9398
9399 2006-01-10  Jim Meyering  <jim@meyering.net>
9400
9401         * m4/fpending.m4: Also include <stdio.h>, for Dragonfly.
9402         Patch by Joerg Sonnenberger.
9403
9404 2006-01-10  Bruno Haible  <bruno@clisp.org>
9405
9406         * modules/readutmp: Depend on module free.
9407         * modules/strtok_r: Depend on module restrict.
9408
9409 2006-01-10  Bruno Haible  <bruno@clisp.org>
9410
9411         * modules/gettext (configure.ac): Add an invocation of
9412         AM_GNU_GETTEXT_VERSION. Needed since autoreconf is used by gnulib-tool.
9413
9414 2006-01-10  Bruno Haible  <bruno@clisp.org>
9415
9416         * m4/localcharset.m4 (gl_LOCALCHARSET): Also test for getc_unlocked.
9417         Reported by Werner Lemberg <wl@gnu.org>.
9418
9419 2006-01-10  Bruno Haible  <bruno@clisp.org>
9420
9421         * lib/localcharset.c: Update from GNU gettext.
9422
9423 2006-01-10  Bruno Haible  <bruno@clisp.org>
9424
9425         * lib/argp.h (__const): Remove macro. Use const instead.
9426         * lib/argp-fmtstream.h (__const): Likewise.
9427         * lib/glob_.h (__const): Remove macro.
9428         * lib/glob-libc.h: Use const instead of __const.
9429
9430 2006-01-10  Bruno Haible  <bruno@clisp.org>
9431
9432         * gnulib-tool (func_emit_tests_Makefile_am): Emit an empty SUBDIR
9433         variable.
9434         Needed to avoid an automake error regarding the 'gettext' module.
9435
9436 2006-01-09  Simon Josefsson  <jas@extundo.com>
9437
9438         * modules/inet_ntop (Depends-on): Add restrict.
9439
9440 2006-01-09  Simon Josefsson  <jas@extundo.com>
9441
9442         * modules/gc-rijndael-tests (License): Put under LGPL.
9443
9444         * modules/gc-des-tests (License): Likewise.
9445
9446         * modules/gc-arcfour-tests (License): Likewise.
9447
9448         * modules/gc-arctwo-tests (License): Likewise.
9449
9450         * modules/gc-pbkdf2-sha1-tests (License): Likewise.
9451
9452         * modules/gc-hmac-sha1-tests (Files): Likewise.
9453
9454         * modules/gc-hmac-md5-tests (License): Likewise.
9455
9456         * modules/gc-sha1-tests (License): Likewise.
9457
9458         * modules/gc-md5-tests (License): Likewise.
9459
9460         * modules/gc-md4-tests (License): Likewise.
9461
9462         * modules/gc-md2-tests (License): Likewise.
9463
9464         * modules/gc-tests (License): Likewise.
9465
9466         * modules/des-tests (License): Likewise.
9467
9468         * modules/md4-tests (License): Likewise.
9469
9470         * modules/md2-tests (License): Likewise.
9471
9472 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
9473
9474         Sync from coreutils:
9475
9476         * MODULES.html.sh (build_lib): New section, with new lib-ignore module.
9477         * modules/lib-ignore: New file.
9478         * modules/mkdir-p (Files): Add chdir-safer.c, chdir-safer.h, lchmod.h,
9479         chdir-safer.m4, lchmod.m4.
9480         * modules/openat: Add mkdirat.c, openat-priv.h.
9481
9482 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
9483
9484         Sync from coreutils.
9485         * m4/lib-ignore.m4: New file.
9486         * m4/lchmod.m4: New file.
9487
9488 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
9489
9490         Sync from coreutils.
9491         * lib/chdir-long.c (cdb_free): Don't bother trying to open directory
9492         for write access: POSIX says that must fail.
9493         * lib/fts.c (diropen): Likewise.
9494         * lib/save-cwd.c (save_cwd): Likewise.
9495         * lib/chdir-long.c (cdb_free): Open with O_NOCTTY | O_NONBLOCK as
9496         well, for minor improvements on hosts that lack O_DIRECTORY.
9497         * lib/chown.c (rpl_chown) [CHOWN_MODIFIES_SYMLINK]:
9498         Don't try O_WRONLY unless O_RDONLY failed wth EACCES.
9499         Fall back on chown if open failed with EACCES.
9500
9501         * lib/gettime.c (gettime) [!defined OK_TO_USE_1S_CLOCK]:
9502         Report an error at compile-time if only a 1-second nominal clock
9503         resolution is found.
9504
9505         * lib/lchmod.h: New file.
9506         * lib/mkdir-p.c: Include lchmod.h, lchown.h.
9507         (make_dir_parents): Use lchown rather than chown, and
9508         lchmod rather than chmod.
9509
9510         * lib/mountlist.c (ME_DUMMY): "none" and "proc" file systems are
9511         dummies too.  Problem with "none" reported by Bob Proulx.  Problem with
9512         "proc" reported by n0dalus.
9513
9514         * lib/mountlist.c: Include <limits.h>.
9515         (dev_from_mount_options)
9516         [defined MOUNTED_GETMNTENT1 || defined MOUNTED_GETMNTENT2]:
9517         New function.  It no longer assumes "dev=" has the System V meaning
9518         on Linux (since it doesn't).  It also parses "dev=" more carefully.
9519         (read_file_system_list)
9520         [defined MOUNTED_GETMNTENT1 || defined MOUNTED_GETMNTENT2]: Use it.
9521         MOUNTED_GETMNTENT2 is new here; the code didn't used to look for
9522         dev= in that case.
9523
9524         * lib/posixtm.h (PDS_PRE_2000): New macro.
9525         * lib/posixtm.c (year): Arg is now syntax_bits rather than
9526         allow_century.  All usages changed.  Reject dates outside the range
9527         1969-1999 if PDS_PRE_2000 is used.
9528
9529 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
9530
9531         Sync from coreutils.
9532         * doc/getdate.texi (General date syntax): Invalid dates are rejected.
9533         (Time of day items): Mention the possibility of leap seconds.
9534         Problem reported by Dr. David Alan Gilbert.
9535
9536 2006-01-09  Jim Meyering  <jim@meyering.net>
9537
9538         Sync from coreutils.
9539
9540         * lib/version-etc.c (COPYRIGHT_YEAR): Update to 2006.
9541
9542         * lib/chdir-safer.h, lib/chdir-safer.c: New files.
9543
9544         * lib/modechange.c (mode_compile): Reject an invalid mode string
9545         that starts with an octal digit.  From Andreas Gruenbacher.
9546
9547         * lib/openat.c: Include "fcntl--.h" and "unistd--.h", to map open
9548         and dup to open_safer and dup_safer, respectively.
9549         (openat_permissive): Fix typo in comment.
9550
9551         * lib/openat.c: Don't include <stdlib.h>, <unistd.h>, <fcntl.h>,
9552         "gettext.h"; either no longer needed or are guaranteed by openat.h.
9553         (_): Remove; no longer needed.
9554         (openat): Renamed from rpl_openat; no need for rpl_openat
9555         since openat.h renames openat for us.
9556         Replace most of the body with a call to openat_permissive,
9557         to avoid duplicate code.
9558         Port to (probably hypothetical) environments were mode_t is
9559         wider than int.
9560         (openat_permissive): Require mode arg, so that we can check
9561         types better.  Put it just after flags.  Change cwd failure
9562         indicator from pointer-to-bool to pointer-to-errno-value.
9563         All callers changed.
9564         Invoke openat_save_fail and/or openat_restore_fail if
9565         cwd_errno is null, so that openat can call us.
9566         (openat_permissive, fdopendir, fstatat, unlinkat):
9567         Simplify errno handling to avoid some duplicate code,
9568         as it's OK to set errno on success.
9569         * lib/openat.h: Revamp code so that function macros depend on
9570         __OPENAT_PREFIX only, not also on AT_FDCWD.
9571         (openat_ro): Remove.  Caller changed to use openat_permissive.
9572         (openat_permissive): Now a macro, if not a function.
9573         (openat_restore_fail, openat_save_fail): Now always functions,
9574         since mkdirat needs them even if __OPENAT_PREFIX is defined.
9575
9576         * lib/openat-priv.h: New file, defining macros used by mkdirat.c
9577         and openat.c.
9578         * lib/mkdirat.c: Include openat-priv.h.
9579         Remove definitions of macros defined therein.
9580         * lib/openat.c: Likewise.
9581
9582         * lib/mkdirat.c (mkdirat): New file and function.
9583         * lib/openat.h (mkdirat): Declare.
9584
9585         * lib/openat.c (fdopendir): Don't change errno when returning non-NULL.
9586
9587         * lib/openat.h (openat_permissive): Declare.
9588         (openat_ro): Define.
9589
9590         * lib/openat.c (EXPECTED_ERRNO): New macro.
9591         (openat_permissive): New function -- used in remove.c rewrite.
9592         (all functions): Set errno just before returning, only if there
9593         was an actual failure.
9594         Use EXPECTED_ERRNO rather than comparing against only ENOTDIR.
9595
9596         Emulate openat-family functions using Linux's procfs, if possible.
9597         Idea and some code based on Ulrich Drepper's glibc changes.
9598
9599         * lib/openat.c: (BUILD_PROC_NAME): New macro.
9600         Include <stdio.h>, <string.h>, "alloca.h" and "intprops.h".
9601         (rpl_openat): Emulate by trying to open /proc/self/fd/%d/%s,
9602         before falling back on save_cwd and restore_cwd.
9603         (fdopendir, fstatat, unlinkat): Likewise.
9604
9605         * lib/openat.c (fstatat, unlinkat): Perform the syscall directly,
9606         skipping the save_cwd...restore_cwd overhead, if FILE is absolute.
9607
9608         * lib/openat.c (rpl_openat): Use the promoted type (int), not mode_t,
9609         as second argument to va_arg.  Otherwise, some versions of gcc
9610         warn that `if this code is reached, the program will abort'.
9611
9612 2006-01-09  Jim Meyering  <jim@meyering.net>
9613
9614         Sync from coreutils.
9615         * m4/openat.m4 (gl_FUNC_OPENAT): Require and compile mkdirat.c.
9616         Require openat-priv.h.
9617
9618 2006-01-09  Bruno Haible  <bruno@clisp.org>
9619
9620         * modules/strnlen (Include): Use strnlen.h.
9621
9622 2006-01-09  Bruno Haible  <bruno@clisp.org>
9623
9624         * m4/stdint.m4 (gl_STDINT_H): Also test for <sys/bitypes.h>.
9625
9626 2006-01-09  Bruno Haible  <bruno@clisp.org>
9627
9628         * lib/sysexit_.h (EX_OK): New macro.
9629         Suggested by Martin Lambers <marlam@marlam.de>.
9630
9631 2006-01-09  Bruno Haible  <bruno@clisp.org>
9632
9633         * lib/stdint_.h: On Linux libc4 and libc5, include <sys/bitypes.h> and
9634         don't define _STDINT_H_NEED_SIGNED_INT_TYPES.
9635
9636 2006-01-09  Bruno Haible  <bruno@clisp.org>
9637
9638         * lib/stdint_.h (SIZE_MAX): Write the value without involving negative
9639         numbers.
9640
9641 2006-01-09  Bruno Haible  <bruno@clisp.org>
9642
9643         * lib/javacomp.sh.in: Move to ../build-aux/javacomp.sh.in.
9644         * lib/javaexec.sh.in: Move to ../build-aux/javaexec.sh.in.
9645         * lib/csharpcomp.sh.in: Move to ../build-aux/csharpcomp.sh.in.
9646         * lib/csharpexec.sh.in: Move to ../build-aux/csharpexec.sh.in.
9647
9648 2006-01-09  Bruno Haible  <bruno@clisp.org>
9649
9650         * build-aux/javacomp.sh.in: New file, moved from lib/.
9651         * modules/javacomp-script (Files): Update.
9652         (configure.ac): Add AC_CONFIG_FILES invocation.
9653         (EXTRA_DIST): Remove variable.
9654
9655         * build-aux/javaexec.sh.in: New file, moved from lib/.
9656         * modules/javaexec (Files): Update.
9657         (configure.ac): Add AC_CONFIG_FILES invocation.
9658         (EXTRA_DIST): Remove javaexec.sh.in.
9659
9660         * build-aux/csharpcomp.sh.in: New file, moved from lib/.
9661         * modules/csharpcomp-script (Files): Update.
9662         (configure.ac): Add AC_CONFIG_FILES invocation.
9663         (EXTRA_DIST): Remove variable.
9664
9665         * build-aux/csharpexec.sh.in: New file, moved from lib/.
9666         * modules/csharpexec (Files): Update.
9667         (configure.ac): Add AC_CONFIG_FILES invocation.
9668         (EXTRA_DIST): Remove csharpexec.sh.in.
9669
9670 2006-01-09  Andreas Gruenbacher  <agruen@suse.de>
9671
9672         Sync from coreutils.
9673
9674         Add POSIX ACL support
9675         * lib/acl.h (copy_acl, set_acl): Add declarations.
9676         * lib/acl.c (acl_entries): Add fallback implementation for POSIX ACL
9677         systems other than Linux.
9678         (chmod_or_fchmod): New function: use fchmod when possible,
9679         and chmod otherwise.
9680         (file_has_acl): Add a POSIX ACL implementation, with a
9681         Linux-specific subcase.
9682         (copy_acl): Add: copy an acl and S_ISUID, S_ISGID, and
9683         S_ISVTX from one file to another.  Fall back to fchmod/chmod when
9684         acls are unsupported.
9685         (set_acl): Add: set a file's acl and S_ISUID, S_ISGID, and
9686         S_ISVTX to a defined value.  Fall back to fchmod/chmod when acls
9687         are unsupported.
9688
9689 2006-01-09  Andreas Gruenbacher  <agruen@suse.de>
9690
9691         Sync from coreutils.
9692         * m4/acl.m4 (AC_FUNC_ACL): Add POSIX ACL and Linux-specific acl tests.
9693
9694 2006-01-07  Bruno Haible  <bruno@clisp.org>
9695
9696         * gnulib-tool (func_import): Add an AC_PROG_RANLIB dependency to
9697         gl_EARLY.
9698
9699 2006-01-04  Paul Eggert  <eggert@cs.ucla.edu>
9700
9701         * lib/strftime.c (tzname): Don't declare if it is already #defined.
9702         Problem reported for Mingw by Mark Junker.
9703
9704 2006-01-04  Paul Eggert  <eggert@cs.ucla.edu>
9705
9706         * README: Gnulib normally doesn't generate a tarball.
9707
9708 2006-01-03  Paul Eggert  <eggert@cs.ucla.edu>
9709
9710         * lib/xtime.h (xtime_make, xtime_nonnegative_nsec, xtime_nsec): Use
9711         long int, not int, for nanosecond counts, so that people who are
9712         used to POSIX struct timespec won't be surprised.  Reported by Jim
9713         Meyering.
9714
9715 2005-12-28  Bruno Haible  <bruno@clisp.org>
9716
9717         * build-aux/config.rpath: Update from GNU gettext.
9718
9719 2005-12-16  Jim Meyering  <jim@meyering.net>
9720
9721         * modules/fprintftime: New module.
9722         * MODULES.html.sh (Date and time <time.h>): Add fprintftime.
9723
9724 2005-12-16  Jim Meyering  <jim@meyering.net>
9725
9726         * m4/fprintftime.m4: New file.
9727
9728 2005-12-16  Jim Meyering  <jim@meyering.net>
9729
9730         * lib/fprintftime.c, lib/fprintftime.h: New files.
9731
9732 2005-12-15  Simon Josefsson  <jas@extundo.com>
9733
9734         * modules/socklen (configure.ac): Fix M4 macro name, to align with
9735         new m4/socklen.m4.
9736
9737 2005-12-10  Sergey Poznyakoff  <gray@gnu.org.ua>
9738
9739         * m4/argp.m4: Define HAVE_DECL_PROGRAM_INVOCATION_NAME and
9740         HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME
9741
9742 2005-12-10  Sergey Poznyakoff  <gray@gnu.org.ua>
9743
9744         * lib/argp-fmtstream.c (__argp_fmtstream_update): Fix coredump
9745         * lib/argp-help.c (fill_in_uparams): Check if the constructed
9746         struct uparams is valid. Fall back to the default values if it is
9747         not.
9748
9749 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
9750
9751         * modules/argp (Files): Add argp-pin.c
9752         (Depends-on): dirname
9753         (lib_SOURCES): Add argp-pin.c
9754
9755 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
9756
9757         * m4/argp.m4:  Check if program_invocation_name and
9758         program_invocation_short_name are declared and define appropriate
9759         macros if they are not.
9760
9761 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
9762
9763         * lib/argp-help.c (__argp_base_name): New function
9764         (__argp_short_program_name): Rewrite using __argp_base_name
9765         * lib/argp-namefrob.h: Define program_invocation_name and
9766         program_invocation_short_name if requested
9767         (__argp_base_name): Add prototype
9768         * lib/argp-parse.c (argp_def): Use gettext wrappers
9769         (argp_default_parser): Use __argp_base_name
9770         * lib/argp-pin.c: New file. Defines program_invocation_name and
9771         program_invocation_short_name on systems that lack them.
9772
9773 2005-12-07  Paul Eggert  <eggert@cs.ucla.edu>
9774
9775         * m4/stat-time.m4 (gl_STAT_TIME): Add check for
9776         TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC, to fix IRIX 5.3
9777         porting problem reported by Georg Schwarz in
9778         <http://lists.gnu.org/archive/html/bug-coreutils/2005-12/msg00083.html>.
9779
9780 2005-12-07  Paul Eggert  <eggert@cs.ucla.edu>
9781
9782         * lib/stat-time.h (STATE_TIMESPEC, STAT_TIMESPEC_NS): Add check for
9783         TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC, to fix IRIX 5.3
9784         porting problem reported by Georg Schwarz in
9785         <http://lists.gnu.org/archive/html/bug-coreutils/2005-12/msg00083.html>.
9786
9787 2005-12-05  Bruno Haible  <bruno@clisp.org>
9788
9789         * lib/csharpcomp.sh.in (options_csc): For -l option, add a .dll suffix.
9790         * lib/csharpcomp.c (compile_csharp_using_sscli): Likewise.
9791         Reported by Mark Junker <mjscod@gmx.de>.
9792
9793 2005-12-02  Paul Eggert  <eggert@cs.ucla.edu>
9794
9795         * m4/socklen.m4 (gl_TYPE_SOCKLEN_T): Renamed from gl_SOCKLEN_T.
9796         Use implementation from Albert Chin, with some
9797         comments/corrections by Stepan Kasal and myself.
9798
9799 2005-12-02  Bruno Haible  <bruno@clisp.org>
9800
9801         * gnulib-tool (func_import): Accept GPLed build tool modules when
9802         --lgpl is given.
9803         * modules/csharpcomp-script: New file.
9804         * modules/csharpcomp: Depend on it.
9805         * modules/javacomp-script: New file.
9806         * modules/javacomp: Depend on it.
9807         Suggested by Simon Josefsson.
9808
9809 2005-12-01  Paul Eggert  <eggert@cs.ucla.edu>
9810
9811         * m4/regex.m4 (gl_REGEX): Check whether off_t can be used in a switch
9812         statement, to work around an HP-UX 10.20 compiler bug reported by
9813         Peter O'Gorman.
9814
9815 2005-11-29  Paul Eggert  <eggert@cs.ucla.edu>
9816
9817         * modules/savedir (Depends-on): Add openat.
9818
9819 2005-11-29  Paul Eggert  <eggert@cs.ucla.edu>
9820
9821         * lib/stdint_.h (intmax_t) [defined intmax_t]: Do not declare.
9822         (uintmax_t) [defined uintmax_t]: Do not declare.
9823         (SIZE_MAX) [defined SIZE_MAX]: Do not define.
9824         This works around a problem if intmax_t.m4 and/or uintmax_t.m4
9825         and/or size_max.m4 are also used.  Problem reported by Mark D. Baushke.
9826         (SIZE_MAX): Define to ((size_t) -1), not (~(size_t)0), for the
9827         sake of portability to weird hosts that C allows (though we don't
9828         know of any practical examples).
9829
9830         * lib/savedir.h (fdsavedir): New decl.
9831         * lib/savedir.c (fdsavedir, savedirstream): New functions; the latter
9832         contains most of the former guts of savedir.
9833         (savedir): Use savedirstream.
9834         Include "openat.h".
9835
9836 2005-11-25  Paul Eggert  <eggert@cs.ucla.edu>
9837
9838         * modules/obstack (Files): Add m4/ulonglong.m4.
9839         Problem reported by Davide Angelocola.
9840
9841 2005-11-15  Paul Eggert  <eggert@cs.ucla.edu>
9842
9843         * lib/xstrtod.c: Don't bother with #pragma STDC FENV_ACCESS ON, as
9844         coreutils no longer futzes with rounding modes.
9845
9846 2005-11-14  Jim Meyering  <jim@meyering.net>
9847
9848         * lib/mkstemp-safer.c: Include <config.h>, required for possible
9849         replacement of mkstemp.
9850
9851 2005-11-10  Simon Josefsson  <jas@extundo.com>
9852
9853         * lib/readline.c: Remove EOL.
9854
9855 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
9856
9857         * modules/gethrxtime (Depends-on): Add gettime.
9858
9859 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
9860
9861         * m4/gethrxtime.m4 (gl_PREREQ_GETHRXTIME): Don't require AC_HEADER_TIME
9862         or gettimeofday; no longer needed.
9863
9864 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
9865
9866         * lib/gethrxtime.c: Include "timespec.h" rather than the sys/time /
9867         time business.
9868         (gethrxtime) [! (HAVE_NANOUPTIME
9869         || (defined CLOCK_MONOTONIC && HAVE_CLOCK_GETTIME)
9870         || HAVE_MICROUPTIME)]: Fall back on gettime rather than rolling
9871         our own approximation.
9872
9873 2005-11-08  Eric Blake  <ebb9@byu.net>
9874
9875         * lib/inet_ntop.h: Use #if !, not #ifndef, for AC_CHECK_DECLS.
9876
9877 2005-11-08  Eric Blake  <ebb9@byu.net>
9878
9879         * lib/getaddrinfo.h: Use #if !, not #ifndef, for AC_CHECK_DECLS.
9880
9881 2005-11-04  Bruno Haible  <bruno@clisp.org>
9882
9883         * gnulib-tool: Implement --update mode.
9884
9885 2005-10-30  Paul Eggert  <eggert@cs.ucla.edu>
9886
9887         Fix porting problem reported by Theodoros V. Kalamatianos.
9888         * lib/utimens.c (futimens) [HAVE_WORKING_UTIMES && HAVE_FUTIMES]:
9889         Don't assume that futimes failing means we must fail.
9890
9891 2005-10-30  Paul Eggert  <eggert@cs.ucla.edu>
9892
9893         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Revamp wording and local
9894         variables to suggest the intended function of the PATH_MAX check.
9895
9896 2005-10-30  Kean Johnston  <jkj@sco.com>
9897
9898         Trivial changes to support SCO systems.
9899         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Check for MAXPATHLEN as well
9900         as PATH_MAX.
9901         * m4/fpending.m4 (gl_FUNC_FPENDING): Correct check for SCO systems,
9902         where __ptr is null when no I/O is pending.
9903
9904 2005-10-29  Paul Eggert  <eggert@cs.ucla.edu>
9905
9906         * lib/getcwd.c (__getcwd): Don't assume that system calls after readdir
9907         leave errno alone.  Problem reported by Dmitry V. Levin.
9908
9909 2005-10-28  Simon Josefsson  <jas@extundo.com>
9910
9911         * tests/test-gc-md4.c, tests/test-gc-md5.c, tests/test-gc-sha1.c:
9912         Test more.
9913
9914         * tests/test-gc-md2.c, tests/test-md2.c: New files.
9915
9916         * modules/md2, modules/md2-tests: New files.
9917
9918 2005-10-28  Simon Josefsson  <jas@extundo.com>
9919
9920         * m4/inet_ntop.m4: More tests.
9921
9922         * m4/gc-md2.m4, md2.m4: New file.
9923
9924 2005-10-28  Simon Josefsson  <jas@extundo.com>
9925
9926         * lib/inet_ntop.h, inet_ntop.c: Make it work under mingw32: Add
9927         "restrict" keywords, as per POSIX.  Protect the function
9928         declaration around HAVE_DECL_INET_NTOP rather than HAVE_INET_NTOP.
9929         Don't use K&R prototypes.  Check the sprintf return values.
9930         Re-define EAFNOSUPPORT if not present.  Indent.
9931
9932         * lib/md5.h, md5.c: Simplify buffer handling visavi alignment,
9933         suggested by Bruno Haible <bruno@clisp.org>.
9934
9935         * lib/gc-gnulib.c, gc-libgcrypt.c: Check calloc return value.
9936
9937         * lib/gc.h: Add MD2 and RMD160 length defines.  Add prototypes.
9938
9939         * lib/gc-libgcrypt.c: Add MD2 (which is not available through
9940         libgcrypt).
9941
9942         * lib/gc-gnulib.c: Add MD2.  Implement gc_hash_* API.
9943
9944         * lib/md2.h, lib/md2.c: New files.
9945
9946 2005-10-28  Paul Eggert  <eggert@cs.ucla.edu>
9947
9948         * lib/savedir.c (savedir): Don't assume that xrealloc etc. leave
9949         errno alone.  Problem reported by Frederic Jolliton.
9950
9951 2005-10-27  Paul Eggert  <eggert@cs.ucla.edu>
9952
9953         * modules/verify (License): Change from GPL to LGPL.  This is a
9954         tiny module and there are apparently near-equivalents that are
9955         under the BSD license.
9956
9957 2005-10-24  Simon Josefsson  <jas@extundo.com>
9958
9959         * modules/sha1: Relicense to LGPL.
9960
9961 2005-10-24  Simon Josefsson  <jas@extundo.com>
9962
9963         * lib/md4.h: Shrink buffer size, now that we changed the type.
9964
9965 2005-10-23  Simon Josefsson  <jas@extundo.com>
9966
9967         * gnulib-tool (func_import): Fix --tests-base.
9968
9969 2005-10-22  Simon Josefsson  <jas@extundo.com>
9970
9971         * modules/arcfour (Depends-on): Need stdint.
9972
9973 2005-10-22  Simon Josefsson  <jas@extundo.com>
9974
9975         * m4/gc.m4: Don't be fooled by --disable-*random-device parameters,
9976         suggested by Bruno Haible <bruno@clisp.org>.  Fix error messages.
9977
9978 2005-10-22  Simon Josefsson  <jas@extundo.com>
9979
9980         * lib/md4.h, md4.c: Simplify buffer handling visavi alignment,
9981         suggested by Bruno Haible <bruno@clisp.org>.
9982
9983 2005-10-22  Simon Josefsson  <jas@extundo.com>
9984
9985         * lib/crc.h: Include stddef.h, for size_t.
9986
9987 2005-10-22  Simon Josefsson  <jas@extundo.com>
9988
9989         * lib/arcfour.h, arcfour.c: Use fixed size indices in the
9990         arcfour_context struct (simplify test vector testing in GNU
9991         Shishi).
9992
9993 2005-10-21  Simon Josefsson  <jas@extundo.com>
9994
9995         * modules/des, modules/des-tests: New files.
9996
9997         * modules/gc-des, modules/gc-des-tests: New files.
9998
9999         * tests/test-des.c, tests/test-gc-des.c: New file.
10000
10001 2005-10-21  Simon Josefsson  <jas@extundo.com>
10002
10003         * modules/arctwo, modules/arctwo-tests: New files.
10004
10005         * tests/test-arctwo.c: New file.
10006
10007         * modules/gc-arctwo, modules/gc-arctwo-tests: New files.
10008
10009         * tests/test-gc-arctwo.c: New file.
10010
10011 2005-10-21  Simon Josefsson  <jas@extundo.com>
10012
10013         * m4/gc.m4: Don't use libgcrypt if gcrypt.h isn't found, suggested by
10014         Bruno Haible <bruno@clisp.org>.
10015
10016         * m4/gc-des.m4: New file.
10017
10018 2005-10-21  Simon Josefsson  <jas@extundo.com>
10019
10020         * m4/arctwo.m4: New file.
10021
10022         * m4/gc-arctwo.m4: New file.
10023
10024 2005-10-21  Simon Josefsson  <jas@extundo.com>
10025
10026         * lib/rijndael-api-fst.c: Fix bugs in CBC mode for more than one
10027         block.
10028
10029 2005-10-21  Simon Josefsson  <jas@extundo.com>
10030
10031         * lib/hmac-md5.c (hmac_md5): Add comments, suggested by Bruno Haible
10032         <bruno@clisp.org>.
10033
10034         * lib/hmac-sha1.c (hmac_sha1): Likewise.
10035
10036         * lib/crc.c (crc32_update): Actually use crc parameter, suggested by
10037         Bruno Haible <bruno@clisp.org>.
10038
10039         * lib/crc.h: Include stdint.h directly, suggested by Bruno Haible
10040         <bruno@clisp.org>.
10041
10042 2005-10-21  Simon Josefsson  <jas@extundo.com>
10043
10044         * lib/gc-libgcrypt.c (gc_cipher_open): Handle ECB.
10045
10046 2005-10-21  Simon Josefsson  <jas@extundo.com>
10047
10048         * lib/gc-gnulib.c: Support ARCTWO in CBC mode.
10049
10050 2005-10-21  Simon Josefsson  <jas@extundo.com>
10051
10052         * lib/des.h, lib/des.c: New files.
10053
10054         * lib/gc-gnulib.c: Support DES.c
10055
10056 2005-10-21  Simon Josefsson  <jas@extundo.com>
10057
10058         * lib/arctwo.h, lib/arctwo.c: New files.
10059
10060         * lib/gc-gnulib.c: Support ARCTWO.
10061
10062 2005-10-21  Simon Josefsson  <jas@extundo.com>
10063
10064         * lib/arctwo.h (arctwo_setkey): Protect variable in CPP macro,
10065         suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
10066
10067 2005-10-21  Simon Josefsson  <jas@extundo.com>
10068
10069         * gnulib-tool (func_import, func_create_testdir): Define automake
10070         conditional GL_COND_LIBTOOL if libtool is used (to be used by modules
10071         Makefile.am snippet),
10072         suggested by Bruno Haible <bruno@clisp.org>.
10073
10074         * modules/gc (Makefile.am): Use it.
10075
10076 2005-10-21  Bruno Haible  <bruno@clisp.org>
10077
10078         * gnulib-tool (func_import, func_create_testdir): Add quoting to last
10079         patch.
10080
10081 2005-10-19  Simon Josefsson  <jas@extundo.com>
10082
10083         * tests/test-gc-rijndael.c: New file.
10084
10085         * modules/gc-rijndael, modules/gc-rijndael-test: New files.
10086
10087 2005-10-19  Simon Josefsson  <jas@extundo.com>
10088
10089         * tests/test-gc-md4.c, tests/test-gc-md5.c: Test gc_hash_buffer
10090         interface too.
10091
10092 2005-10-19  Simon Josefsson  <jas@extundo.com>
10093
10094         * tests/test-gc-arcfour.c: New file.
10095
10096         * modules/gc-arcfour, modules/gc-arcfour-tests: New files.
10097
10098 2005-10-19  Simon Josefsson  <jas@extundo.com>
10099
10100         * modules/gc-md4, modules/gc-md4-tests: New file.
10101
10102         * tests/test-gc-md4.c: New file.
10103
10104 2005-10-19  Simon Josefsson  <jas@extundo.com>
10105
10106         * m4/gc-md4.m4: New file.
10107
10108 2005-10-19  Simon Josefsson  <jas@extundo.com>
10109
10110         * m4/gc-hmac-md5.m4, gc-hmac-sha1.m4, gc-md4.m4,
10111         gc-md5.m4, gc-sha1.m4: Fix typo, suggested by Stepan Kasal
10112         <kasal@ucw.cz>.
10113
10114 2005-10-19  Simon Josefsson  <jas@extundo.com>
10115
10116         * m4/gc-arcfour.m4: New file.
10117
10118         * m4/gc-rijndael.m4: New file.
10119
10120 2005-10-19  Simon Josefsson  <jas@extundo.com>
10121
10122         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Support MD4.
10123
10124 2005-10-19  Simon Josefsson  <jas@extundo.com>
10125
10126         * lib/gc-gnulib.c: Support ARCFOUR.
10127
10128 2005-10-19  Simon Josefsson  <jas@extundo.com>
10129
10130         * lib/gc-gnulib.c: Implement gc_cipher_* API, currently only with AES
10131         support.
10132
10133         * lib/gc.h: Add ECB enum type.
10134
10135         * lib/hmac-md5.c, hmac-sha1.c: Include memxor.h.
10136
10137 2005-10-18  Simon Josefsson  <jas@extundo.com>
10138
10139         * tests/test-md5.c: New file.
10140
10141         * modules/md5-tests: New file.
10142
10143 2005-10-18  Simon Josefsson  <jas@extundo.com>
10144
10145         * tests/test-md4.c: New file.
10146
10147         * modules/md4, modules/md4-tests: New files.
10148
10149 2005-10-18  Simon Josefsson  <jas@extundo.com>
10150
10151         * m4/md4.m4: New file.
10152
10153 2005-10-18  Simon Josefsson  <jas@extundo.com>
10154
10155         * lib/md4.h, lib/md4.c: New files, based on md5.?.
10156
10157 2005-10-17  Stepan Kasal  <kasal@ucw.cz>
10158
10159         * gnulib-tool (func_create_testdir): Omit the second check whether
10160         BUILT_SOURCES in nonempty.
10161
10162 2005-10-17  Simon Josefsson  <jas@extundo.com>
10163
10164         * tests/test-rijndael.c: New file.
10165
10166 2005-10-17  Simon Josefsson  <jas@extundo.com>
10167
10168         * modules/sha1: Depend on stdint instead of md5.
10169
10170         * modules/md5: Depend on stdint, remove uint32_t.
10171
10172 2005-10-17  Simon Josefsson  <jas@extundo.com>
10173
10174         * modules/gc-sha1-tests: New file.
10175
10176         * tests/test-gc-sha1.c: New file.
10177
10178 2005-10-17  Simon Josefsson  <jas@extundo.com>
10179
10180         * m4/md5.m4: Remove call to uint32_t.m4.
10181
10182 2005-10-17  Simon Josefsson  <jas@extundo.com>
10183
10184         * lib/sha1.c: Use uint32_t instead of md5_uint32.t
10185
10186         * lib/sha1.h: Use stdint.h and uint32_t instead of md5_uint32 from
10187         md5.h.
10188
10189         * lib/md5.c: Use uin32_t.  Fix non-gcc UNALIGNED_P macro.
10190
10191         * lib/md5.h: Use stdint.h and uint32_t.  Doc fix.
10192
10193 2005-10-17  Simon Josefsson  <jas@extundo.com>
10194
10195         * lib/gc.h, gc-libgcrypt.c: Add more hash types/functions.
10196
10197 2005-10-17  Simon Josefsson  <jas@extundo.com>
10198
10199         * lib/gc.h, gc-libgcrypt.c: Add ciphers.
10200
10201 2005-10-17  Simon Josefsson  <jas@extundo.com>
10202
10203         * lib/gc-libgcrypt.c (gc_hmac_sha1): Fix assert.
10204
10205         * lib/gc.h (gc_nonce, gc_pseudo_random, gc_random): Add prototypes.
10206
10207 2005-10-17  Bruno Haible  <bruno@clisp.org>
10208
10209         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Change the return statement so
10210         that it can also be used in a test.
10211
10212 2005-10-16  Bruno Haible  <bruno@clisp.org>
10213
10214         * gnulib-tool (func_emit_tests_Makefile_am): Also define
10215         TESTS_ENVIRONMENT, so that individual tests can augment it.
10216
10217         * gnulib-tool (func_create_testdir): Use an intermediate target for
10218         building $(BUILT_SOURCES). Needed because BUILT_SOURCES can contain
10219         macros, like $(ALLOCA_H), which cannot be passed through the command
10220         line.
10221
10222 2005-10-15  Simon Josefsson  <jas@extundo.com>
10223
10224         * modules/rijndael-tests: New file.
10225
10226         * modules/rijndael: New file.
10227
10228 2005-10-15  Simon Josefsson  <jas@extundo.com>
10229
10230         * m4/rijndael.m4: New file.
10231
10232 2005-10-15  Simon Josefsson  <jas@extundo.com>
10233
10234         * lib/rijndael-api-fst.h, lib/rijndael-api-fst.c: New files.
10235
10236         * lib/rijndael-alg-fst.h, lib/rijndael-alg-fst.c: New files.
10237
10238 2005-10-14  Simon Josefsson  <jas@extundo.com>
10239
10240         * tests/test-arcfour.c: New file.
10241
10242         * modules/arcfour, modules/arcfour-tests: New files.
10243
10244 2005-10-14  Simon Josefsson  <jas@extundo.com>
10245
10246         * m4/arcfour.m4: New file.
10247
10248 2005-10-14  Simon Josefsson  <jas@extundo.com>
10249
10250         * lib/arcfour.h, lib/arcfour.c: New files.
10251
10252 2005-10-14  Roland McGrath  <roland@redhat.com>
10253
10254         Import from libc.  [BZ #1331]
10255         * lib/obstack.h [!__STDC__] (obstack_int_grow_fast): Fix misnamed
10256         macro argument.
10257         Reported by Matej Vela <vela@debian.org>.
10258
10259 2005-10-14  Paul Eggert  <eggert@cs.ucla.edu>
10260
10261         * lib/obstack.c [defined _LIBC && defined USE_IN_LIBIO]: Don't
10262         include <wchar.h>; no longer needed.
10263
10264 2005-10-14  Paul Eggert  <eggert@cs.ucla.edu>
10265
10266         * config/srclist.txt: Add glibc bug 321 for obstack.c, obstack.h.
10267
10268 2005-10-14  Jakub Jelinek  <jakub@redhat.com>
10269         and  Ulrich Drepper  <drepper@redhat.com>
10270
10271         Import from libc.
10272         * lib/obstack.c (print_and_abort) [defined _LIBC]: Use __fxprintf
10273         instead of inline stream orientation test and two separate
10274         function calls.  Pay no attention to USE_IN_LIBIO.
10275
10276 2005-10-13  Simon Josefsson  <jas@extundo.com>
10277
10278         * modules/gc-hmac-md5-tests: New file.
10279
10280         * tests/test-gc-hmac-sha1.c: New file.
10281
10282         * tests/test-gc.c (main): Remove MD5 and HMAC-MD5 tests.
10283
10284         * modules/gc-hmac-md5-tests: New file.
10285
10286         * tests/test-gc-md5.c: New file.
10287
10288         * modules/gc-md5-tests: New file.
10289
10290 2005-10-13  Simon Josefsson  <jas@extundo.com>
10291
10292         * lib/gc-pbkdf2-sha1.c (gc_pbkdf2_sha1): Optimize CEIL computation.
10293         Move memory allocation outside of loop.
10294
10295 2005-10-13  Paul Eggert  <eggert@cs.ucla.edu>
10296
10297         * lib/mkdir-p.c (make_dir_parents): Don't report an error if an
10298         intermediate directory is in a read-only file system.  Problem
10299         reported by Eric Blake.
10300
10301 2005-10-13  Oskar Liljeblad  <oskar@osk.mine.nu>
10302
10303         * modules/human (Depends-on): Depend on xstrtoumax, not xstrtol.
10304
10305 2005-10-12  Simon Josefsson  <jas@extundo.com>
10306
10307         * tests/test-hmac-sha1.c: New file.
10308
10309         * modules/hmac-sha1-tests: New file.
10310
10311         * modules/hmac-sha1: New file.
10312
10313 2005-10-12  Simon Josefsson  <jas@extundo.com>
10314
10315         * modules/gc-sha1: New file.
10316
10317 2005-10-12  Simon Josefsson  <jas@extundo.com>
10318
10319         * modules/gc-pbkdf2-sha1, modules/gc-pbkdf2-sha1-tests: New files.
10320
10321         * tests/test-gc-pbkdf2-sha1.c: New file.
10322
10323 2005-10-12  Simon Josefsson  <jas@extundo.com>
10324
10325         * modules/gc-md5, modules/gc-hmac-md5: New files.
10326
10327         * modules/gc (Files): Remove md5, memxor and hmac files.
10328
10329 2005-10-12  Simon Josefsson  <jas@extundo.com>
10330
10331         * m4/gc-pbkdf2-sha1.m4: New file.
10332
10333         * m4/gc-hmac-sha1.m4: New file.
10334
10335         * m4/gc-sha1: New file.
10336
10337         * m4/hmac-sha1.m4: New file.
10338
10339 2005-10-12  Simon Josefsson  <jas@extundo.com>
10340
10341         * m4/gc-md5.m4, m4/gc-hmac-md5.m4: New files.
10342
10343         * m4/gc.m4: Don't call gl_MD5, gl_MEMXOR or gl_HMAC_MD5.
10344
10345 2005-10-12  Simon Josefsson  <jas@extundo.com>
10346
10347         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Use Gc_rc for return types,
10348         suggested by Bruno Haible <bruno@clisp.org>.
10349
10350 2005-10-12  Simon Josefsson  <jas@extundo.com>
10351
10352         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Support SHA-1.
10353
10354 2005-10-12  Simon Josefsson  <jas@extundo.com>
10355
10356         * lib/gc-pbkdf2-sha1.c: New file.
10357
10358         * lib/gc.h: Add gc_pbkdf2_sha1 prototype.
10359
10360 2005-10-12  Simon Josefsson  <jas@extundo.com>
10361
10362         * lib/gc-libgcrypt.c (gc_hmac_sha1): New function.
10363
10364         * lib/gc-gnulib.c (gc_hmac_sha1): New function.
10365
10366 2005-10-12  Simon Josefsson  <jas@extundo.com>
10367
10368         * lib/gc-gnulib.c: Condition MD5 and HMAC-MD5 use on GC_USE_MD5 and
10369         GC_USE_HMAC_MD5, respectively.
10370
10371         * lib/gc-libgcrypt.c (gc_md5): Fix assert call.
10372         (gc_md5): Fix typo.
10373
10374         * lib/gc.h (gc_hash_buffer): Use gc_hash in prototype.
10375
10376         * lib/gc-libgcrypt.c (gc_hash_buffer): Ditto.
10377
10378         * lib/gc-gnulib.c (gc_hash_buffer): Ditto.
10379
10380 2005-10-12  Bruno Haible  <bruno@clisp.org>
10381
10382         * m4/stdbool.m4 (gl_STDBOOL_H): Define as an alias of AM_STDBOOL_H.
10383         Reported by Stepan Kasal <kasal@ucw.cz>.
10384
10385 2005-10-11  Simon Josefsson  <jas@extundo.com>
10386
10387         * tests/test-crc.c: New file.
10388
10389         * modules/crc, modules/crc-tests: New files.
10390
10391 2005-10-11  Simon Josefsson  <jas@extundo.com>
10392
10393         * m4/crc.m4: New file.
10394
10395 2005-10-11  Simon Josefsson  <jas@extundo.com>
10396
10397         * lib/gc.h: Add gc_hash and gc_hash_buffer.
10398
10399         * lib/gc-gnulib.c (gc_hash_buffer): Add.  Reorder #include's.
10400
10401         * lib/gc-libgcrypt.c (gc_hash_buffer): Add.
10402
10403 2005-10-11  Simon Josefsson  <jas@extundo.com>
10404
10405         * lib/crc.h, lib/crc.c: New files.
10406
10407         * lib/gc.h (gc_hash_buffer): Add doc.
10408
10409 2005-10-11  Bruno Haible  <bruno@clisp.org>
10410
10411         * modules/c-strcasestr: New file.
10412         * MODULES.html.sh (String handling <string.h>): Add c-strcasestr.
10413
10414 2005-10-11  Bruno Haible  <bruno@clisp.org>
10415
10416         * modules/c-strcase: New file.
10417         * MODULES.html.sh (String handling <string.h>): Add c-strcase.
10418
10419 2005-10-11  Bruno Haible  <bruno@clisp.org>
10420
10421         * lib/strcasecmp.c: Include limits.h.
10422         (strcasecmp): Avoid integer overflow on exotic platforms.
10423         * lib/strncasecmp.c: Include limits.h.
10424         (strncasecmp): Avoid integer overflow on exotic platforms.
10425         Reported by Paul Eggert.
10426
10427 2005-10-11  Bruno Haible  <bruno@clisp.org>
10428
10429         * lib/c-strcasestr.h: New file, from GNU gettext.
10430         * lib/c-strcasestr.c: New file, from GNU gettext.
10431
10432 2005-10-11  Bruno Haible  <bruno@clisp.org>
10433
10434         * lib/c-strcase.h: New file, from GNU gettext.
10435         * lib/c-strcasecmp.c: New file, from GNU gettext.
10436         * lib/c-strncasecmp.c: New file, from GNU gettext.
10437
10438 2005-10-10  Paul Eggert  <eggert@cs.ucla.edu>
10439
10440         * modules/mempcpy (License): GPL -> LGPL.
10441         * modules/strchrnul (License): Likewise.
10442         * modules/sysexits (License): Likewise.
10443
10444 2005-10-08  Simon Josefsson  <jas@extundo.com>
10445
10446         * config/srclist.txt: Bug 1423 is closed, but 1439 remains.
10447
10448 2005-10-07  Simon Josefsson  <jas@extundo.com>
10449
10450         * m4/memxor.m4: Remove gl_C_RESTRICT call.
10451
10452 2005-10-06  Simon Josefsson  <jas@extundo.com>
10453
10454         * tests/test-hmac-md5.c: New file.
10455
10456         * modules/hmac-md5-tests: New file.
10457
10458         * modules/hmac-md5: New file.
10459
10460 2005-10-06  Simon Josefsson  <jas@extundo.com>
10461
10462         * m4/hmac-md5.m4: New file.
10463
10464         * m4/memxor.m4: Require gl_C_RESTRICT.
10465
10466 2005-10-06  Simon Josefsson  <jas@extundo.com>
10467
10468         * lib/memxor.c (memxor): Avoid casts and warnings.
10469
10470 2005-10-06  Simon Josefsson  <jas@extundo.com>
10471
10472         * lib/hmac-md5.c: New file.
10473
10474         * lib/hmac.h: New file.
10475
10476 2005-10-06  Paul Eggert  <eggert@cs.ucla.edu>
10477
10478         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check that bool
10479         promotes to int, not unsigned int, to catch the AIX 5.3
10480         compiler bug.
10481
10482 2005-10-05  Simon Josefsson  <jas@extundo.com>
10483
10484         * modules/memxor: New file.
10485
10486         * modules/iconv (Files): Move config.rpath to havelib, it is used
10487         there.
10488
10489         * modules/havelib (Files): Add config.rpath.
10490
10491 2005-10-05  Simon Josefsson  <jas@extundo.com>
10492
10493         * m4/memxor.m4: New file.
10494
10495 2005-10-05  Simon Josefsson  <jas@extundo.com>
10496
10497         * lib/memxor.c (memxor): Fix compiler error.
10498
10499         * lib/md5.h (MD5_DIGEST_SIZE, MD5_BLOCK_SIZE): Add, see also
10500         <http://sourceware.org/bugzilla/show_bug.cgi?id=1423>.
10501
10502         * lib/memxor.h, lib/memxor.c: New files.
10503
10504         * lib/getaddrinfo.h: Don't protect sys/types.h with HAVE_SYS_TYPES_H,
10505         we assume all systems have it, suggested by Jim Meyering
10506         <jim@meyering.net>.  Remove HAVE_SYS_SOCKET_H test too, to see if
10507         any systems lack sys/socket.h; mingw32 is known to lack it, but we
10508         don't support it yet anyway.  Also remove HAVE_NETDB_H test, for
10509         same reasons.
10510
10511 2005-10-05  Simon Josefsson  <jas@extundo.com>
10512
10513         * config/srclist.txt: Add glibc bug 1423 for md5.h.
10514
10515 2005-10-05  Paul Eggert  <eggert@cs.ucla.edu>
10516
10517         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Don't check for
10518         sys/socket.h, netdb.h, sys/types.h; the checks areno longer
10519         needed, since the source code now assumes these .h files.
10520
10521 2005-10-05  Derek Price  <derek@ximbiot.com>
10522
10523         * lib/getdelim.c (SIZE_MAX): New macro, if not already defined.
10524
10525 2005-10-05  Bruno Haible  <bruno@clisp.org>
10526
10527         * modules/stdint (License): Change to LGPL.
10528
10529 2005-10-04  Simon Josefsson  <jas@extundo.com>
10530
10531         * lib/getaddrinfo.h: Move sys/types.h include first, reported by "Mark
10532         D. Baushke" <mdb@gnu.org>.
10533
10534 2005-10-04  Bruno Haible  <bruno@clisp.org>
10535
10536         * lib/verify.h (verify_true): Provide alternative definition for C++.
10537
10538 2005-10-03  Paul Eggert  <eggert@cs.ucla.edu>
10539
10540         * lib/getdelim.c: Include getdelim.h first.  Include <limits.h>.
10541         (SSIZE_MAX): New macro, if not already defined.
10542         (getdelim): Fix buffer overrun on 64-bit hosts with lines longer
10543         than 2 GiB.
10544
10545 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
10546
10547         Sync from coreutils.
10548         * m4/openat.m4 (gl_FUNC_OPENAT): Check for fdopendir.
10549         * m4/ullong_max.m4 (gl_ULLONG_MAX): Simplify so that it merely
10550         defines ULONG_MAX_LT_ULLONG_MAX.  Thomas M.Ott reports that
10551         ULLONG_MAX doesn't work with 2.7.2.1.
10552
10553 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
10554
10555         * modules/xreadlink (Makefile.am): Remove lib_SOURCES.
10556         From Ben Pfaff.
10557
10558         * modules/exclude (Depends-on): Depend on verify.
10559         * modules/strtoimax (Depends-on): Likewise.
10560         * modules/utimecmp (Depends-on): Likewise.
10561
10562 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
10563
10564         * lib/exclude.c: Include verify.h.
10565         (verify): Remove.  All callers changed to use verify.h's version.
10566         * lib/strtoimax.c: Likewise.
10567         * lib/utimecmp.c: Likewis.e
10568
10569         Sync from coreutils.
10570         * lib/.cppi-disable: Add getaddrinfo.h, getdelim.h, getline.h,
10571         getpass.c, mbchar.h, mbuiter.h, strcase.h, strnlen.h, strnlen1.h.
10572         * lib/.cvsignore: Add fts.h, search.h, t-fpending.
10573         * lib/settime.c (settime): Fix { typo in previous patch.  Also, don't
10574         bother returning ENOSYS if settimeofday or stime fails; just let
10575         them return whatever errno they want to return.
10576         * lib/utimens.c: Include unistd.h, for dup2.
10577         (futimens): Fix typo: HAVE_FUTIMESAT was misspelled in an #if.
10578         (futimens) [! HAVE_FUTIMESAT]: If !file, set errno before returning -1.
10579
10580 2005-10-02  Jim Meyering  <jim@meyering.net>
10581
10582         Sync from coreutils.
10583         * m4/utimes.m4 (gl_FUNC_UTIMES): Detect the version of utimes
10584         from glibc-2.2.5 that fails for read-only files.
10585
10586 2005-10-02  Jim Meyering  <jim@meyering.net>
10587
10588         Sync from coreutils.
10589         * lib/fts-cycle.c [HAVE_CONFIG_H]: Include <config.h>.
10590         * lib/openat-die.c: Use `#ifdef HAVE_CONFIG_H', not
10591         `#if HAVE_CONFIG_H'.
10592         * lib/openat.c (fdopendir): Do not define if HAVE_FDOPENDIR.
10593         Remove AT_FDCWD test.
10594         Do not consume the fd unless successful.
10595         * lib/openat.h (fdopendir): Do not define if HAVE_FDOPENDIR.
10596         * lib/settime.c (settime): Move the HAVE_STIME block `up' into an #elif
10597         block, so that we don't even try to compile it if settimeofday is
10598         available.  This works around a compilation failure on OSF1 V5.1,
10599         due to stime requiring a `long int*' while tv_sec is `int'.
10600
10601 2005-10-02  Alfred M. Szmidt  <ams@gnu.org>
10602
10603         Sync from coreutils.
10604         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Compare $gl_have_path...
10605         against `yes', rather than just testing for nonempty.
10606
10607 2005-10-01  Simon Josefsson  <jas@extundo.com>
10608
10609         * m4/getaddrinfo.m4: Include sys/types.h for sys/socket.h, on FreeBSD
10610         and Darwin.
10611
10612         * m4/getaddrinfo.m4: Use AC_GNU_SOURCE, GNU only declare getaddrinfo
10613         as an (POSIX) extension.  Check for sys/types.h, sys/socket.h, and
10614         netdb.h too, needed by getaddrinfo.h.  Check if getaddrinfo,
10615         freeaddrinfo and gai_strerror are declared by the POSIX headers.
10616         Check if struct addrinfo is declared.
10617
10618 2005-10-01  Simon Josefsson  <jas@extundo.com>
10619
10620         * lib/getaddrinfo.h: Protect #include's of sys/socket.h and netdb.h.
10621         Only define struct addrinfo if !HAVE_STRUCT_ADDRINFO.  Protect
10622         AI_* and EAI_* definitions.  Protect function declarations.
10623
10624 2005-10-01  Jim Meyering  <jim@meyering.net>
10625
10626         Sync from coreutils.
10627
10628         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Look for getservbyname in these
10629         libraries [inet nsl socket xnet].  Nelson Beebe reported that with
10630         native cc on Solaris 7, getaddrinfo.c requires -lsocket.
10631         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Check for gethostbyname
10632         in the inet and nsl libraries.  Required on Solaris 5.7.
10633
10634 2005-10-01  Jim Meyering  <jim@meyering.net>
10635
10636         Sync from coreutils.
10637         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Check for gethostbyname
10638         in the inet and nsl libraries.  Required on Solaris 5.7.
10639
10640 2005-10-01  Eric Blake  <ebb9@byu.net>  (tiny change)
10641
10642         * lib/getdelim.c (getdelim): Remove unused variables.
10643
10644 2005-09-29  Paul Eggert  <eggert@cs.ucla.edu>
10645
10646         * lib/xtime.h (XTIME_PRECISION): Now of type int, not long long int,
10647         so that the code works even with ancient cpp.  Portability problem
10648         with GCC 2.7.2.1 reported by Thomas M.Ott.
10649
10650 2005-09-27  Paul Eggert  <eggert@cs.ucla.edu>
10651
10652         * modules/regex (Depends-on): Add strcase.
10653
10654         * modules/gethostname (Licence): Change from GPL to LGPL, since
10655         gethostname.c is a trivial implementation of a standard library
10656         function.
10657         * modules/poll (License): Change from GPL to LGPL, since it's
10658         derived from LGPL code.
10659
10660 2005-09-27  Jim Meyering  <jim@meyering.net>
10661
10662         * lib/getcwd.c: Change #ifdef<TAB>HAVE_CONFIG_H to #ifdef
10663         HAVE_CONFIG_H.
10664
10665         * lib/intprops.h (signed_type_or_expr__): Define.
10666         (INT_STRLEN_BOUND) [__GNUC__]: Use a slightly tighter bound
10667         for unsigned types.
10668
10669 2005-09-26  Paul Eggert  <eggert@cs.ucla.edu>
10670
10671         * lib/verify.h (verify_expr): Remove, replacing with:
10672         (verify_true): New macro that returns true instead of void.
10673         (verify_type__): Remove.
10674         (verify): Use verify_true rather than verify_type__.
10675
10676 2005-09-26  Bruno Haible  <bruno@clisp.org>
10677
10678         * modules/mbchar (Include): Mention that HAVE_WCHAR_H && HAVE_WCTYPE_H
10679         is necessary.
10680         (lib_SOURCES): Remove mbchar.c.
10681         * modules/mbfile (Include): Mention that HAVE_MBRTOWC is necessary.
10682         (Files): Add m4/mbrtowc.m4.
10683         * modules/mbiter: Likewise.
10684         * modules/mbuiter: Likewise.
10685
10686 2005-09-26  Bruno Haible  <bruno@clisp.org>
10687
10688         * m4/mbchar.m4 (gl_MBCHAR): Check for wchar.h and wctype.h. Don't
10689         compile mbchar.c if they are not both present.
10690         * m4/mbfile.m4 (gl_MBFILE): Require gl_FUNC_MBRTOWC.
10691         * m4/mbiter.m4 (gl_MBITER): Likewise.
10692         * m4/strstr.m4 (gl_PREREQ_STRSTR): Use AC_REQUIRE.
10693         * m4/strcasestr.m4 (gl_PREREQ_STRCASESTR): Likewise.
10694         * m4/strcase.m4 (gl_PREREQ_STRCASECMP): Likewise.
10695
10696 2005-09-25  Jim Meyering  <jim@meyering.net>
10697
10698         * modules/inet_ntop (Depends-on): Add socklen, since inet_ntop.c
10699         also uses socklen_t.
10700
10701 2005-09-24  Paul Eggert  <eggert@cs.ucla.edu>
10702
10703         * lib/utimens.c (ENOSYS): Define if not already defined.
10704         (futimens): Support having a null PATH if the file descriptor
10705         is nonnegative.
10706
10707         * lib/regex_internal.h (__GNUC_PREREQ, always_inline, inline, pure):
10708         Remove.
10709         (__attribute): Define to empty unless GCC 3.1 or later.
10710         This works around a core dump on OpenBSD 3.4, which has GCC
10711         2.95.3, which dumps core when given __attribute__(()).  It also
10712         simplifies other tests, since we really don't want to bother with
10713         worrying about which ancient version of GCC supported what.
10714         Original problem reported by Yoann Vandoorselaere, with part of
10715         the fix suggested by Derek Price.
10716
10717 2005-09-24  Jim Meyering  <jim@meyering.net>
10718
10719         * lib/verify.h (verify_type__): Use `unsigned int' as the bitfield type
10720         so we can once again use a positive bitfield width of 1 -- now we
10721         don't have to explain why we were using a bitfield width of 2.
10722
10723 2005-09-23  Paul Eggert  <eggert@cs.ucla.edu>
10724
10725         * m4/regex.m4 (gl_REGEX): If replacing, define regcomp to rpl_regcomp,
10726         and similarly for the other external symbols.  Problem reported
10727         by James Gallager.
10728
10729         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Catch Sun Studio 10u1 on Linux
10730         bug reported by Jim Meyering.
10731
10732         * m4/utimens.m4 (gl_UTIMENS): Check for futimesat.
10733         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Undo previous change;
10734         not needed, since socklen is a prerequisite module.
10735
10736 2005-09-23  Paul Eggert  <eggert@cs.ucla.edu>
10737
10738         * lib/getaddrinfo.c [HAVE_NETINET_IN_H]: Include <netinet/in.h>.
10739         Problem reported by Eric Blake.
10740         (getaddrinfo): Initialize se so that it's not garbage.
10741         Redo internal storage allocation so that it doesn't make unportable
10742         assumptions about alignment.
10743         Fix a memory leak.
10744
10745         * lib/utimens.c (futimens): Use futimesat if available.
10746         Prefer it to futimes since it doesn't have the futimes bug.
10747
10748         * lib/verify.h (GL_CONCAT0, GL_CONCAT): Remove.
10749         (verify): Don't use the __LINE__ trick, as it doesn't work in general.
10750         Instead, declare a function that returns a pointer to an array,
10751         and use verify_type__ to declare the size of the array.
10752         Problem and germ of a solution reported by Bruno Haible.
10753         (verify_type__): Use 2, not 1, for bitfield size, to avoid
10754         a warning with Irix 6.5 cc.  Problem reported by Bruno Haible.
10755
10756 2005-09-23  Jim Meyering  <jim@meyering.net>
10757
10758         Sync from coreutils.
10759         Correct build failure (socklen_t not defined) on at least
10760         mips-sgi-irix6.5 and alphaev67-dec-osf5.1.
10761         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Require gl_SOCKLEN_T.
10762
10763 2005-09-23  Jim Meyering  <jim@meyering.net>
10764
10765         * modules/getaddrinfo (Depends-on): Add socklen.
10766
10767 2005-09-23  Bruno Haible  <bruno@clisp.org>
10768
10769         * tests/test-verify.c: New file.
10770
10771 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
10772
10773         Sync from coreutils.
10774
10775         * modules/argmatch (Depends-on): Add verify.
10776         * modules/getloadavg (Depends-on): Depend on fcntl-safer, not
10777         unistd-safer.
10778         * modules/save-cwd (Depends-on): Likewise.
10779
10780         * modules/openat (Files): Add lib/openat-die.c.
10781         (Depends-on): Remove error, exitfail.
10782         Add dirname.
10783
10784         * modules/verify: New file.
10785         * MODULES.html.sh (Diagnostics <assert.h>): New section,
10786         with "verify" module.
10787
10788 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
10789
10790         Sync from coreutils.
10791
10792         * m4/backupfile.m4, calloc.m4, chown.m4, cloexec.m4, dup2.m4:
10793         * m4/fileblocks.m4, free.m4, ftruncate.m4, getcwd.m4, getpagesize.m4:
10794         * m4/getugroups.m4, group-member.m4, idcache.m4, link-follow.m4:
10795         * m4/mkstemp.m4, mktime.m4, mountlist.m4, nanosleep.m4, pathmax.m4:
10796         * m4/physmem.m4, posixver.m4, putenv.m4, safe-read.m4, same.m4:
10797         * m4/save-cwd.m4, stdio-safer.m4, unistd-safer.m4, unlinkdir.m4:
10798         * m4/userspec.m4, xgetcwd.m4, xreadlink.m4:
10799         Don't bother checking for string.h, stdlib.h, unistd.h.
10800         * m4/fts.m4 (gl_FUNC_FTS_CORE): Don't require
10801         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK; that's now the lstat
10802         module's job.
10803         * m4/jm-macros.m4 (gl_MACROS): Likewise.
10804         * m4/prereq.m4 (gl_PREREQ): Add gl_FUNC_LSTAT.
10805
10806         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): New macro.
10807         (gl_GETDATE): Use it.
10808
10809         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Don't bother checking for unistd.h.
10810
10811 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
10812
10813         Sync from coreutils.
10814
10815         * lib/.cppi-disable: Add regcomp.c, regex_internal.c, regex_internal.h,
10816         stat-time.h.
10817         * lib/argmatch.h: Include verify.h
10818         (ARGMATCH_VERIFY): Use verify rather than rolling our own.
10819         (ARGMATCH_ASSERT): Remove; unused.
10820         * lib/canonicalize.c: Assume STDC_HEADERS.
10821         * lib/exclude.c: Include "strcase.h".
10822         * lib/regex_internal.h [!defined _LIBC]: Likewise.
10823         * lib/getusershell.c: Include stdio--.h rather than stdio.h
10824         and stdio-safer.h.
10825         (getusershell): Call fopen, not fopen_safer.
10826         * lib/save-cwd.c: Include fcntl--.h rather than fcntl.h.
10827         Do not include unistd-safer.h.
10828         (save_cwd): Don't call fd_safer; no longer needed
10829         now that we include fcntl--.h.
10830
10831         * lib/getdate.y (relative_time): New type.
10832         (RELATIVE_TIME_0): New constant.
10833         (parser_control): Use relative_time instead of doing it ourselves.
10834         (%union): Add new relative_time rel member.
10835         (tYEAR_UNIT, tMONTH_UNIT, tHOUR_UNIT, tMINUTE_UNIT, tSEC_UNIT):
10836         Now typeless.
10837         (relunit, relunit_snumber): Now of type rel.
10838         (zone, rel, relunit, get_date): Adjust to above changes.
10839
10840         * lib/getloadavg.c: Include fcntl--.h rather than fcntl.h.
10841         Do not include unistd-safer.h.
10842         (getloadavg): Don't call fd_safer; no longer needed
10843         now that we include fcntl--.h.
10844
10845         * lib/mkdir-p.c (ENOSYS): Define to EEXIST if not defined.
10846         (make_dir_parents): Treat ENOSYS like EEXIST.
10847
10848         Improve quality of diagnostics on restore_cwd failure.
10849         * lib/mkdir-p.h (make_dir): Remove.  All uses replaced by mkdir.
10850         (make_dir_parents): Last arg is now int * (for errno), not bool *.
10851         * lib/mkdir-p.c (make_dir, make_dir_parents): Likewise.
10852         Rewrite "mkdir -p" algorithm to avoid the need for "stat"
10853         each time through the loop.  Do not diagnose restore_cwd failure;
10854         that is the caller's job (and perhaps the caller does not care).
10855
10856         * lib/mkdir-p.c (CLEANUP_CWD, CLEANUP): Remove.
10857         (make_dir_parents): Revamp to avoid need for CLEANUP_CWD, CLEANUP.
10858         If the file already exists but is not a directory, don't bother
10859         to try to make its parents.
10860         Close potential file descriptor leak if we can't chdir("/") (!).
10861         Don't always return true if chdir($PWD) fails; return true only
10862         if the requested action was done successfully (except for the
10863         chdir($PWD)).
10864         Don't log final directory unless we actually made it.
10865         Refactor to avoid duplicate code to fix up permissions.
10866         Don't attempt to fix up parent permissions if chdir($PWD) fails.
10867
10868         * lib/strftime.c (my_strftime): Rewrite the previous change slightly,
10869         to make it a bit faster and (I hope) clearer.
10870         * lib/strftime.c (my_strftime): Add support for %:z, %::z, %:::z.
10871         Fix bug in formats like %2N.
10872
10873         * lib/verify.h: New file.
10874
10875 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
10876
10877         Sync from coreutils.
10878         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Check for netinet/in.h.
10879
10880 2005-09-22  Jim Meyering  <jim@meyering.net>
10881
10882         Sync from coreutils.
10883
10884         * m4/lstat.m4 (gl_FUNC_LSTAT):
10885         Use AC_LIBSOURCES to require lstat.c and lstat.h.
10886         Remove obsolete comment.
10887         * m4/xreadlink.m4: Use AC_LIBSOURCES and AC_LIBOBJ.
10888         * m4/xstrtod.m4: Likewise.
10889
10890         * m4/openat.m4 (gl_FUNC_OPENAT): Add openat-die.c.
10891
10892 2005-09-22  Jim Meyering  <jim@meyering.net>
10893
10894         Sync from coreutils.
10895
10896         * lib/backupfile.c: Use ARGMATCH_VERIFY, just in case.
10897
10898         * lib/posixtm.c (posixtime) [lint]: Initialize *all* of tm0, not just
10899         the .tm_year member, since otherwise gcc-4.0 would now warn about
10900         tm_zone, tm_gmtoff, tm_isdst, tm_yday, tm_wday.
10901
10902         * lib/quotearg.c (quotearg_n_options): Change code to be suboptimal, in
10903         order to avoid an unsuppressible warning from gcc on 64-bit systems.
10904
10905         * lib/getdate.y (get_date): Undo part of the 2005-04-04 change, so that
10906         the command "date -d'2005-03-27 +1 day'" succeeds once again, even
10907         when run in a time zone for which daylight savings time is in effect
10908         for the starting date.
10909
10910         * lib/mkdir-p.c (make_dir_parents): Don't let a failed chdir($PWD)
10911         stop us from restricting permissions of just-created absolute-named
10912         directories.
10913         * lib/mkdir-p.c (CLEANUP_CWD): Return *true*, not false when failing
10914         to restore initial working directory.
10915         * lib/mkdir-p.c (make_dir_parents): New parameter:
10916         different_working_dir, to tell caller if/when we change the working
10917         directory and are unable to return to the initial one.
10918         * lib/mkdir-p.h (make_dir_parents): Update prototype.
10919         * lib/mkdir-p.c (CLEANUP_CWD): Change one more `return 1' to
10920         `return false'.  This fixes a bug introduced on 2004-07-30.
10921
10922         * lib/openat.c (fdopendir): Be sure to close the supplied
10923         file descriptor before returning.  This makes our replacement
10924         implementation a little closer to Solaris's, where fdopendir
10925         ties the file descriptor to the returned DIR* pointer.
10926         * lib/openat.c (unlinkat): New function.
10927         * lib/openat.h (unlinkat): Add prototype.
10928         * lib/openat-die.c (openat_save_fail): Rename from openat_save_die.
10929         (openat_restore_fail): Rename from openat_restore_die.
10930         * lib/openat.c, openat.h: Reflect s/_die/_fail/ renaming.
10931
10932         Provide an alternative to exiting immediately upon save_cwd or
10933         restore_cwd failure.  Now, an application can arrange e.g.,
10934         to perform a longjump in that case.
10935         * lib/openat.c: Include dirname.h.
10936         Use IS_ABSOLUTE_FILE_NAME rather than testing for leading slash.
10937         (rpl_openat, fdopendir, fstatat): Call openat_save_die
10938         and openat_restore_die rather than calling error directly.
10939         Don't include "error.h" or "exitfail.h"; they're no longer needed.
10940
10941         * lib/openat-die.c (openat_save_die, openat_restore_die): New file.
10942         * lib/openat.h (openat_save_die, openat_restore_die): Declare and
10943         define.
10944
10945         * lib/strftime.c [FPRINTFTIME] (fprintftime): Provide a new interface:
10946         size_t fprintftime (FILE *fp, char const *fmt, struct tm const *tm,
10947                             int utc, int nanoseconds);
10948         Background:
10949         date should not have to allocate a megabyte of virtual memory to
10950         handle a format argument like +%1048575T.  When implemented with
10951         strftime, it must allocate such a buffer, use strftime to fill it
10952         in, print it, then free it.
10953         With fprintftime, it simply prints everything and exits.
10954         With no need for memory allocation, that's one fewer way to fail.
10955         * lib/strftime.c (my_strftime): Parse the colons of %:::z *after* the
10956         optional field width, not before, so we accept %9:z, not %:9z.
10957         (my_strftime): Be sure to use L_('x') for literals.
10958
10959         * lib/backupfile.c, lib/canon-host.c, lib/canonicalize.c, lib/chown.c:
10960         * lib/cloexec.c, lib/dup-safer.c, lib/dup2.c, lib/euidaccess.c:
10961         * lib/fd-safer.c, lib/fileblocks.c, lib/fopen-safer.c, lib/fsusage.c:
10962         * lib/ftruncate.c, lib/getcwd.c, lib/getcwd.h, lib/getloadavg.c:
10963         * lib/getopt_.h, lib/getpagesize.h, lib/getugroups.c:
10964         * lib/group-member.c, lib/human.h, lib/idcache.c, lib/mkdir-p.c:
10965         * lib/mountlist.c, lib/nanosleep.c, lib/pathmax.h, lib/physmem.c:
10966         * lib/posixver.c, lib/putenv.c, lib/raise.c, lib/safe-read.c:
10967         * lib/same.c, lib/save-cwd.c, lib/setenv.c, lib/settime.c:
10968         * lib/tempname.c, lib/unlinkdir.c, lib/unsetenv.c, lib/userspec.c:
10969         * lib/xgethostname.c, lib/xreadlink.c:
10970         Assume HAVE_UNISTD_H, i.e., include <unistd.h> unconditionally.
10971
10972         * lib/chown.c, lib/cloexec.c, lib/dup-safer.c, lib/dup2.c:
10973         * lib/fsusage.c, lib/getcwd.c, lib/getloadavg.c, lib/mountlist.c:
10974         * lib/openat.h, lib/save-cwd.c, lib/tempname.c:
10975         Assume HAVE_FCNTL_H (i.e., include <fcntl.h> unconditionally,
10976         and don't include <sys/file.h>).
10977
10978 2005-09-22  Eric Blake  <ebb9@byu.net>  (tiny change)
10979
10980         Sync from coreutils.
10981
10982         * lib/getloadavg.c (getloadavg) [__CYGWIN__]: Port to cygwin.
10983         [__linux__]: Allocate a big enough buffer for /proc/loadavg.
10984         [!LDAV_DONE]: Avoid unused variable warning.
10985
10986 2005-09-21  Bruno Haible  <bruno@clisp.org>
10987
10988         * lib/unicodeio.h (unicode_to_mb): New declaration.
10989
10990 2005-09-20  Derek Price  <derek@ximbiot.com>
10991
10992         * lib/getaddrinfo.c: Don't include <netdb.h> included from
10993         getaddrinfo.h.
10994
10995 2005-09-20  Bruno Haible  <bruno@clisp.org>
10996
10997         * gnulib-tool: Remove trailing slashes from the values specified for
10998         --source-base, --m4-base, --tests-base, --aux-dir.
10999         Suggested by Simon Josefsson <jas@extundo.com>.
11000
11001 2005-09-20  Bruno Haible  <bruno@clisp.org>
11002
11003         * gnulib-tool (func_all_modules, func_modules_transitive_closure,
11004         func_modules_to_filelist, func_import, func_create_testdir): Make all
11005         sorting results locale-independent, so that gnulib-cache.m4 doesn't
11006         change when gnulib-tool is invoked in a different locale.
11007
11008 2005-09-19  Simon Josefsson  <jas@extundo.com>
11009
11010         * m4/socklen.m4: Fix typo.
11011
11012 2005-09-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
11013
11014         Use a consistent style for including <config.h>.
11015         * lib/__fpending.c, lib/acl.c, lib/argmatch.c, lib/argp-help.c,
11016         lib/argp-parse.c, lib/argp-pvh.c, lib/backupfile.c, lib/basename.c,
11017         lib/c-stack.c, lib/calloc.c, lib/check-version.c, lib/cloexec.c,
11018         lib/closeout.c, lib/copy-file.c, lib/creat-safer.c, lib/cycle-check.c,
11019         lib/dirfd.c, lib/dirname.c, lib/dup-safer.c, lib/dup2.c,
11020         lib/euidaccess.c, lib/exclude.c, lib/exitfail.c, lib/fatal-signal.c,
11021         lib/fd-safer.c, lib/file-type.c, lib/fileblocks.c, lib/filemode.c,
11022         lib/filenamecat.c, lib/findprog.c, lib/fnmatch.c, lib/fopen-safer.c,
11023         lib/free.c, lib/fsusage.c, lib/ftruncate.c, lib/full-write.c,
11024         lib/fwriteerror.c, lib/getaddrinfo.c, lib/getcwd.c, lib/getdelim.c,
11025         lib/getline.c, lib/getlogin_r.c, lib/getndelim2.c, lib/getnline.c,
11026         lib/getopt1.c, lib/getpass.c, lib/group-member.c, lib/hard-locale.c,
11027         lib/hash-pjw.c, lib/hash.c, lib/human.c, lib/idcache.c,
11028         lib/inet_ntop.c, lib/isdir.c, lib/long-options.c, lib/malloc.c,
11029         lib/memcasecmp.c, lib/memcmp.c, lib/memcoll.c, lib/memcpy.c,
11030         lib/memmove.c, lib/mkdir-p.c, lib/modechange.c, lib/mountlist.c,
11031         lib/open-safer.c, lib/physmem.c, lib/pipe-safer.c, lib/pipe.c,
11032         lib/poll.c, lib/posixver.c, lib/progname.c, lib/progreloc.c,
11033         lib/putenv.c, lib/quote.c, lib/quotearg.c, lib/readline.c,
11034         lib/readlink.c, lib/realloc.c, lib/regex.c, lib/rename.c, lib/rmdir.c,
11035         lib/rpmatch.c, lib/safe-read.c, lib/same.c, lib/save-cwd.c,
11036         lib/savedir.c, lib/sig2str.c, lib/strcspn.c, lib/strerror.c,
11037         lib/stripslash.c, lib/strncasecmp.c, lib/strndup.c, lib/strnlen.c,
11038         lib/strnlen1.c, lib/strsep.c, lib/strstr.c, lib/strtod.c,
11039         lib/strtoimax.c, lib/strtol.c, lib/strverscmp.c, lib/tempname.c,
11040         lib/time_r.c, lib/userspec.c, lib/utimecmp.c, lib/version-etc-fsf.c,
11041         lib/version-etc.c, lib/wait-process.c, lib/xalloc-die.c, lib/xgetcwd.c,
11042         lib/xmalloc.c, lib/xmemcoll.c, lib/xnanosleep.c, lib/xreadlink.c,
11043         lib/xsetenv.c, lib/xstrndup.c, lib/xstrtoimax.c, lib/xstrtol.c,
11044         lib/xstrtoumax.c, lib/yesno.c:
11045         Standardize inclusion of config.h.
11046         * lib/__fpending.h, lib/dirfd.h, lib/getdate.h, lib/human.h,
11047         lib/inttostr.h:  Removed inclusion of config.h from header files.
11048         * lib/inttostr.c:  Adjusted in-tree users.
11049         * lib/timespec.h: Remove superfluous warning to include config.h.
11050         * lib/atexit.c, lib/chdir-long.c, lib/chown.c, lib/fchown-stub.c,
11051         lib/getgroups.c, lib/gettimeofday.c, lib/lchown.c, lib/lstat.c,
11052         lib/mkdir.c, lib/mkstemp.c, lib/nanosleep.c, lib/openat.c, lib/raise.c,
11053         lib/readtokens0.c, lib/readutmp.c, lib/unlinkdir.c: Guard inclusion of
11054         config.h with HAVE_CONFIG_H.
11055
11056 2005-09-19  Jim Meyering  <jim@meyering.net>
11057
11058         * modules/pathmax (License): Change to LGPL.
11059
11060 2005-09-19  Derek Price  <derek@ximbiot.com>
11061
11062         * config/srclist.txt: glibc's glob.h is now in lib/glob-libc.h.
11063
11064 2005-09-19  Bruno Haible  <bruno@clisp.org>
11065
11066         * gnulib-tool (import): Provide default for --tests-base.
11067
11068 2005-09-19  Bruno Haible  <bruno@clisp.org>
11069
11070         * doc/quote.texi: New file, extracted from gnulib.texi.
11071         * doc/ctime.texi: New file, extracted from gnulib.texi.
11072         * doc/inet_ntoa.texi: New file, extracted from gnulib.texi.
11073         * doc/gnulib-tool.texi: New file, extracted from gnulib.texi.
11074         * doc/gnulib.texi: Include them.
11075
11076 2005-09-18  Bruno Haible  <bruno@clisp.org>
11077
11078         Portability fix.
11079         * gnulib-tool (func_readlink): New function.
11080         (func_ln_if_changed): Use it.
11081
11082 2005-09-18  Bruno Haible  <bruno@clisp.org>
11083
11084         * gnulib-tool: Support --with-tests also with --import.
11085         (func_emit_tests_Makefile_am): Use variables $m4base and $testsbase.
11086         (func_import): Use variables $testsbase and $inctests. Emit a
11087         gl_TESTS_BASE form into gnulib-cache.m4. Create $testsbase/Makefile.am.
11088         Remind the user to add AC_CONFIG_FILES($testsdir/Makefile) and
11089         SUBDIRS += $testsdir.
11090         (func_create_testdir): Update.
11091
11092 2005-09-18  Bruno Haible  <bruno@clisp.org>
11093
11094         * gnulib-tool: Revise --dry-run implementation. Use variable $doit
11095         instead of $dry_run.
11096         (func_cp_if_changed, func_mv_if_changed): Remove functions.
11097         (func_ln_if_changed): Don't handle dry-run here.
11098         (func_import): In dry-run mode, detect more precisely which actions
11099         would be performed, and don't use "...ing" verbs.
11100
11101 2005-09-18  Bruno Haible  <bruno@clisp.org>
11102
11103         * gnulib-tool (func_tmpdir): New function, taken from GNU gettextize.
11104         (func_import): Use join on two temporary files instead of three nested
11105         loops, in order to determine which files are new or old.
11106
11107 2005-09-18  Bruno Haible  <bruno@clisp.org>
11108
11109         * gnulib-tool (func_import): Comment out code that spits out the
11110         new files with --dry-run.
11111
11112 2005-09-18  Bruno Haible  <bruno@clisp.org>
11113
11114         * doc/gnulib.texi (Invoking gnulib-tool): 50% rewritten.
11115
11116 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
11117
11118         * lib/stat-time.h: New file.
11119         * lib/timespec.h (ST_TIME_CMP_NS, ST_TIME_CMP, ATIME_CMP, CTIME_CMP):
11120         (MTIME_CMP, TIMESPEC_NS): Remove.  Now done by stat-time.h,
11121         in a different way.
11122         (timespec_cmp): New function.
11123         * lib/utimecmp.c: Include stat-time.h.
11124         (SYSCALL_RESOLUTION): Depend on whether various struct stat
11125         members exist, not on the obsolescent ST_MTIM_NSEC.
11126         (utimecmp): Use the new stat-time functions rater than TIMESPEC_NS.
11127
11128 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
11129
11130         * config/srclist.txt: Remove glibc bug 1033 and uncomment mktime.c.
11131
11132 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
11133
11134         * MODULES.html.sh (File system functions): Add stat-time.
11135         * modules/stat-time: New file.
11136         * modules/timespec (Files): Remove m4/st_mtim.m4; this
11137         is now done in a different way, by the stat-time module.
11138         * modules/utimecmp (Depends-on): Add stat-time.
11139
11140 2005-09-15  Paul Eggert  <eggert@cs.ucla.edu>
11141
11142         * m4/st_mtim.m4: Remove.  Superseded by...
11143         * m4/stat-time.m4: New file.
11144         * m4/timespec.m4 (gl_TIMESPEC): Require AC_C_INLINE.
11145         Do not invoke AC_STRUCT_ST_MTIM_NSEC; no longer needed.
11146
11147 2005-09-15  Derek Price  <derek@ximbiot.com>
11148
11149         * m4/strstr.m4 (gl_FUNC_STRSTR): Don't define strstr here.
11150
11151 2005-09-15  Derek Price  <derek@ximbiot.com>
11152
11153         * lib/regex_internal.h: Blank `pure' for GNUC < 3.
11154         * lib/regex_internal.c: Ditto, using this...
11155         (__GNUC_PREREQ): ...new macro.
11156         * lib/regcomp.c, regexec.c: Blank `always_inline' for GNUC < 3.1
11157         using...
11158         (__GNUC_PREREQ): ...this new macro.
11159
11160         * lib/strstr.h: Include string.h. Define strstr as a macro here.
11161
11162 2005-09-15  Derek Price  <derek@ximbiot.com>
11163             Paul Eggert  <eggert@cs.ucla.edu>
11164
11165         * lib/regcomp.c, regexec.c, regex_internal.c: Back out previous
11166         changes, consolidating in...
11167         * lib/regex_internal.h: ...this file.
11168
11169 2005-09-13  Jim Meyering  <jim@meyering.net>
11170
11171         * lib/canon-host.c: Filter through gnu indent and reword comments
11172         slightly.
11173         * lib/canon-host.h (ch_strerror_r): Tweak cpp indentation and spacing.
11174
11175 2005-09-13  Derek Price  <derek@ximbiot.com>
11176
11177         * lib/canon-host.c (canon_host_r): Set *cherror on memory allocation
11178         failure.
11179         Reported by Jim Meyering  <jim@meyering.net>.
11180
11181 2005-09-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
11182
11183         * lib/base64.c: Typo.
11184         (base64_encode): Put b64str in initialized data section.
11185
11186 2005-09-12  Paul Eggert  <eggert@cs.ucla.edu>
11187
11188         Merge glibc and coreutils changes into gnulib, plus a few
11189         extra fixes.
11190         * lib/md5.c: Use #error rather than a string.
11191         (CYCLIC): New macro, from glibc source.  Use it instead of rol.
11192         * lib/md5.h (__GNUC_PREREQ, __THROW): Define if not defined already.
11193         (__attribute__): Define to empty for non recent-GCC.
11194         (__md5_buffer, __md5_finish_ctx, __md5_init_ctx, __md5_process_block):
11195         (__md5_process_bytes, __md5_read_ctx, __md5_stream):
11196         Renamed from their non-__ counterparts, with new macros replacing
11197         them if not _LIBC.  Add __THROW attribute.
11198         (rol): Remove.
11199         (struct md5_ctx): Align buffer if using GCC.
11200         * lib/sha1.h (struct sha1_ctx): Likewise.
11201         * lib/sha1.c (SWAP): Renamed from the NOTSWAP.  All uses changed.
11202         The old name was backwards.
11203         (NOTSWAP): Remove; not used.
11204         (rol): New macro, moved here from md5.h.
11205         (sha1_process_block): Remove a FIXME that doesn't make sense.
11206
11207 2005-09-12  Derek Price  <derek@ximbiot.com>
11208
11209         Return usable errors from canon-host.
11210         * lib/canon-host.h: New file.
11211         * lib/canon-host.c (canon_host): Wrap...
11212         (canon_host_r): ...this new function, which now relies exclusively on
11213         getaddrinfo.
11214         (ch_strerror): New function.
11215         (last_cherror): New global.
11216         * lib/getaddrinfo.c: Move include of getaddrinfo.h first to test
11217         interface.
11218         (getaddrinfo): Add AI_CANONNAME functionality.  Don't do arithmetic on
11219         void *.
11220         (freeaddrinfo): Free ai->ai_canonname when set.
11221
11222 2005-09-12  Derek Price  <derek@ximbiot.com>
11223
11224         Make canon-host require getaddrinfo.
11225         * m4/canon-host.m4 (gl_CANON_HOST): Remove most dependencies.
11226         AC_LIBSOURCE canon-host.h.  Call...
11227         (gl_PREREQ_CANON_HOST): ...this new function, which requires
11228         gl_GETADDRINFO.
11229         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Compile gai_strerror when needed.
11230
11231 2005-09-12  Derek Price  <derek@ximbiot.com>
11232
11233         * modules/canon-host: Add canon-host.h.  Depend on getaddrinfo.  Make
11234         LGPL.
11235         * modules/getaddrinfo: Add link to opengroup spec.  Depend on strdup.
11236
11237 2005-09-12  Derek Price  <derek@ximbiot.com>
11238
11239         * lib/gai_strerror.c: Include config.h when available.  Include
11240         getaddrinfo.h before other headers to test interface.
11241         Reported by Larry Jones <lawrence.jones@ugs.com>.
11242
11243 2005-09-12  Derek Price  <derek@ximbiot.com>
11244             Paul Eggert  <eggert@cs.ucla.edu>
11245
11246         * modules/glob (Files): Add glob-libc.h.
11247
11248 2005-09-12  Derek Price  <derek@ximbiot.com>
11249             Paul Eggert  <eggert@cs.ucla.edu>
11250
11251         * m4/glob.m4 (gl_GLOB_SUBSTITUTE): AC_LIBSOURCES for glob.c,
11252         glob_.h, glob-libc.h.
11253         (gl_PREREQ_GLOB): Remove _SYS_CDEFS_H hack; no longer needed.
11254
11255 2005-09-12  Derek Price  <derek@ximbiot.com>
11256             Paul Eggert  <eggert@cs.ucla.edu>
11257
11258         * lib/glob-libc.h: Renamed from glob_.h.  The new version is
11259         taken from libc's glob.h, except with '#ifdef __GLOB_GNULIB'
11260         protecting things that should be done only in gnulib contexts.
11261         * lib/glob_.h: New file, containing only the glob things needed for
11262         gnulib.
11263         (GLOB_PREFIX): Remove.  All uses changed to look for __GLOB_GNULIB.
11264         (__GLOB_CONCAT, __GLOB_XCONCAT, __GLOB_ID): Remove; no longer needed.
11265         (glob, globfree, glob_pattern_p): Now defined simply in terms of
11266         rpl_glob, rpl_globfree, rpl_glob_pattern_p.
11267         (__GLOB_GNULIB): New macro, to keep the glob.h changes clearer
11268         and to respect the namespace rules better.
11269
11270 2005-09-08  Simon Josefsson  <jas@extundo.com>
11271
11272         * modules/socklen: New file.
11273
11274 2005-09-08  Simon Josefsson  <jas@extundo.com>
11275
11276         * m4/socklen.m4: New file.
11277
11278 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
11279
11280         * modules/utimens (Files): Add m4/utimbuf.m4, since
11281         m4/utimens.m4 requires gl_CHECK_TYPE_STRUCT_UTIMBUF.
11282         Reported by Sergey Poznyakoff.
11283
11284 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
11285
11286         * lib/glob.c (glob, globfree, __glob_pattern_p): Use old-style function
11287         definitions, since that's the preferred style in glibc.
11288         Fix a minor spacing issue, and update copyright notice to match
11289         glibc's.
11290
11291 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
11292
11293         * config/srclist.txt: Remove glibc bug 1061; it's been fixed.
11294
11295 2005-09-06  Simon Josefsson  <jas@extundo.com>
11296
11297         * lib/getpass.c (getpass): Fix typo, test for HAVE_TCSETATTR and not
11298         TCSETATTR.  Reported by Derek Price <derek@ximbiot.com>.
11299
11300 2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
11301
11302         * lib/regex_internal.h (bitset_not): Add parens to avoid gcc -Wall
11303         warning.
11304
11305 2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
11306
11307         * config/srclist.txt: Add glibc bug 1302.
11308
11309 2005-09-05  Paul Eggert  <eggert@cs.ucla.edu>
11310
11311         Change bitset word type from unsigned int to unsigned long int,
11312         as this has better performance on typical 64-bit hosts.
11313         Port bitset code to hosts with unusual word sizes.
11314         * lib/regcomp.c (build_equiv_class, build_charclass, build_range_exp):
11315         (build_collating_symbol):
11316         Prefer bitset to re_bitset_ptr_t in prototypes, when the actual
11317         argument is a bitset.  This is merely a style issue, but it makes
11318         it clearer that an entire array is expected.
11319         (re_compile_fastmap_iter, init_dfa, init_word_char, optimize_subexps):
11320         * lib/regcomp.c (lower_subexp, parse_bracket_exp, built_charclass_op):
11321         Port to the case where bitset_word is not the same as unsigned int.
11322         * lib/regex_internal.h (bitset_set, bitset_clear, bitset_contain):
11323         (bitset_not, bitset_merge, bitset_set_all, bitset_mask):
11324         Likewise.
11325         * lib/regexec.c (check_dst_limits_calc_pos_1,
11326         check_subexp_matching_top):
11327         (build_trtable, group_nodes_into_DFAstates):
11328         Likewise.
11329         * lib/regcomp.c (re_compile_fastmap_iter, utf8_sb_map, optimize_utf8):
11330         Don't assume that SBC_MAX is a multiple of BITSET_WORD_BITS.
11331         * lib/regex_internal.h (bitset_set_all, bitset_not): Likewise.
11332         * lib/regexec.c (group_nodes_into_DFAstates): Likewise.
11333         * lib/regcomp.c (utf8_sb_map): Don't assume UINT_MAX == 0xffffffff.
11334         * lib/regcomp.c (optimize_subexps, lower_subexp):
11335         Work even if bitset_word has holes in its bitwise representation.
11336         * lib/regex_internal.h (BITSET_WORD_BITS): Likewise.
11337         * lib/regexec.c (check_dst_limits_calc_pos_1,
11338         check_subexp_matching_top):
11339         Likewise.
11340         * lib/regex_internal.c (re_string_reconstruct):
11341         Don't assume UCHAR_MAX == 255.
11342         * lib/regex_internal.h (bitset_set_all): Likewise.
11343         * lib/regex_internal.h (BITSET_WORD_BITS): Renamed from UINT_BITS.
11344         All uses changed.
11345         (BITSET_WORDS): Renamed from BITSET_UINTS.  All uses changed.
11346         (bitset_word): New type, replacing 'unsigned int' for bitset uses.
11347         All uses changed.
11348         (BITSET_WORD_MAX): New macro.
11349         (bitset_set, bitset_clear, bitset_contain, bitset_empty):
11350         (bitset_set_all, bitset_copy):  Now inline functions, not macros.
11351         (bitset_empty, bitset_copy):
11352         Prefer sizeof (bitset) to multiplying it out ourselves.
11353         (bitset_not_merge): Remove; unused.
11354         (bitset_contain): Return bool, not unsigned int with one bit on.
11355         All callers changed.
11356         * lib/regexec.c (build_trtable): Don't assume bitset has no stricter
11357         alignment than re_node_set; do this by defining a new internal
11358         type struct dests_alloc and using it to allocate memory.
11359
11360 2005-09-05  Bruno Haible  <bruno@clisp.org>
11361
11362         * gnulib-tool (func_import): Fix comparison in handling of symbolic
11363         links.
11364
11365 2005-09-04  Martin Lambers  <marlam@marlam.de>  (tiny change)
11366
11367         * modules/size_max (Makefile.am): Add size_max.h
11368
11369 2005-09-04  Derek Price  <derek@ximbiot.com>
11370
11371         * gnulib-tool (func_import): Fix reversed $symbolic logic.
11372
11373 2005-09-03  Simon Josefsson  <jas@extundo.com>
11374
11375         * gnulib-tool: Fix typo.
11376
11377 2005-09-03  Simon Josefsson  <jas@extundo.com>
11378
11379         * config/srclist.txt: Add glibc bug 1293.
11380
11381 2005-09-03  Derek Price  <derek@ximbiot.com>
11382
11383         * m4/getlogin_r (gl_GETLOGIN_R): Fix cut & paste error.
11384         From Larry Jones <lawrence.jones@ugs.com>.
11385
11386 2005-09-02  Simon Josefsson  <jas@extundo.com>
11387
11388         * modules/socklen: New file.
11389
11390 2005-09-02  Simon Josefsson  <jas@extundo.com>
11391
11392         * modules/havelib: New module.
11393
11394         * modules/gettext, modules/iconv, modules/lock, modules/readline:
11395         Use havelib.
11396
11397 2005-09-02  Paul Eggert  <eggert@cs.ucla.edu>
11398
11399         Check for arithmetic overflow when calculating sizes, to prevent
11400         some buffer-overflow issues.  These patches are conservative, in the
11401         sense that when I couldn't determine whether an overflow was possible,
11402         I inserted a run-time check.
11403         * lib/regex_internal.h (re_xmalloc, re_xrealloc, re_x2realloc): New
11404         macros.
11405         (SIZE_MAX) [!defined SIZE_MAX]: New macro.
11406         (re_alloc_oversized, re_x2alloc_oversized, re_xnmalloc):
11407         (re_xnrealloc, re_x2nrealloc): New inline functions.
11408         * lib/regcomp.c (init_dfa, analyze, build_range_exp,
11409         parse_bracket_exp):
11410         (build_equiv_class, build_charclass): Check for arithmetic overflow
11411         in size expression calculations.
11412         * lib/regex_internal.c (re_string_realloc_buffers):
11413         (build_wcs_upper_buffer, re_node_set_add_intersect):
11414         (re_node_set_init_union, re_node_set_insert, re_node_set_insert_last):
11415         (re_dfa_add_node, register_state): Likewise.
11416         * lib/regexec.c (re_search_stub, re_copy_regs, re_search_internal):
11417         (prune_impossible_nodes, push_fail_stack, set_regs, check_arrival):
11418         (build_trtable, extend_buffers, match_ctx_init, match_ctx_add_entry):
11419         (match_ctx_add_subtop, match_ctx_add_sublast): Likewise.
11420
11421 2005-09-02  Paul Eggert  <eggert@cs.ucla.edu>
11422
11423         * modules/inttostr (Files): Add m4/inttypes_h.m4, m4/stdint_h.m4,
11424         m4/ulonglong.m4.  Problem reported by Martin Lambers.
11425
11426 2005-09-02  Bruno Haible  <bruno@clisp.org>
11427
11428         Support for lib vs. lib64 distinction on biarch platforms.
11429         * m4/lib-prefix.m4 (AC_LIB_PREPARE_MULTILIB): New macro.
11430         (AC_LIB_PREFIX): Require it. Use $acl_libdirstem instead of 'lib'.
11431         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Likewise.
11432
11433 2005-09-02  Bruno Haible  <bruno@clisp.org>
11434
11435         * gnulib-tool (import): In the other first-use case, provide defaults
11436         as well.
11437
11438 2005-09-02  Bruno Haible  <bruno@clisp.org>
11439
11440         * config/srclist.txt: lib-link.m4 and lib-prefix.m4 currently have
11441         patches not yet found in the latest gettext release.
11442
11443 2005-09-01  Paul Eggert  <eggert@cs.ucla.edu>
11444
11445         * lib/glob.c (GET_LOGIN_NAME_MAX): Renamed from LOGIN_NAME_MAX,
11446         to avoid a collision with bits/local_lim.h in glibc.
11447         All uses changed.  Problem reported by Dmitry V. Levin in
11448         <http://sources.redhat.com/bugzilla/show_bug.cgi?id=1060>.
11449
11450         * lib/regex_internal.c (build_wcs_upper_buffer): Fix portability
11451         bugs in int versus size_t comparisons.
11452         (re_string_context_at): Fix bug where the code assumed that
11453         Idx is signed.
11454
11455         Use bool where appropriate.
11456         * lib/regcomp.c (re_set_fastmap): ICASE arg is bool, not int.
11457         All callers changed.
11458         (calc_eclosure_iter): Likewise, for ROOT arg.
11459         (parse_bracket_element): Likewise, for ACCEPT_HYPHEN arg.
11460         (build_charclass_op): Likewise, for NON_MATCH arg.
11461         * lib/regex_internal.c (re_string_allocate, re_string_construct):
11462         (re_string_construct_common): Likewise, for ICASE arg.
11463         * lib/regexec.c (re_search_2_stub, re_search_stub):
11464         Likewise, for RET_LEN arg.
11465         (check_matching): Likewise, for FL_LONGEST_MATCH arg.
11466         (set_regs): Likewise, for FL_BACKTRACK arg.
11467         * lib/regcomp.c (re_compile_fastmap_iter, optimize_utf8):
11468         (duplicate_node_closure, calc_inveclosure, calc_eclosure):
11469         (calc_eclosure_iter, parse_bracket_exp):
11470         Use bool for internal variables that are booleans.
11471         * lib/regexec.c (re_search_internal, check_matching,
11472         proceed_next_node):
11473         (set_regs, build_sifted_states, sift_states_bkref):
11474         (check_arrival_add_next_nodes, check_arrival_expand_ecl_sub):
11475         (expand_bkref_cache, build_trtable, group_nodes_into_DFAstates):
11476         (find_collation_sequence_value):
11477         Likewise.
11478         * lib/regex_internal.c (re_node_set_insert, re_node_set_insert_last):
11479         (re_node_set_compare):
11480         Return bool, not int. All callers changed.
11481         * lib/regexec.c (check_halt_node_context, check_dst_limits):
11482         (build_trtable, check_node_accept): Likewise.
11483         * lib/regex_internal.h: Include stdbool.h.
11484
11485         Fix bugs uncovered when converting to bool.
11486         * lib/regcomp.c (calc_eclosure_iter): Check for storage allocation
11487         failure instead of charging ahead blindly.
11488         * lib/regex_internal.c (register_state): Likewise.
11489         * lib/regexec.c (re_search_2_stub): Use simpler method than boolean
11490         for freeing internal storage.
11491         (group_nodes_into_DFA_states): Use unsigned int, not int, for
11492         bitset pieces used as boolean, to avoid undefined behavior
11493         on hosts that do int overflow checking.
11494
11495 2005-09-01  Paul Eggert  <eggert@cs.ucla.edu>
11496
11497         * config/srclist.txt: Add glibc bugs 1285-1287.
11498
11499 2005-09-01  Jim Meyering  <jim@meyering.net>
11500
11501         * m4/lchown.m4: Require gl_FUNC_CHOWN, for the definition of
11502         CHOWN_MODIFIES_SYMLINK, which is used by lchown.c.
11503         Require gl_STAT_MACROS, too.
11504
11505 2005-09-01  Bruno Haible  <bruno@clisp.org>
11506
11507         * gnulib-tool (import): In the first-use case, provide defaults.
11508
11509 2005-09-01  Bruno Haible  <bruno@clisp.org>
11510
11511         * gnulib-tool (func_import): Remove the .tmp files.
11512
11513 2005-09-01  Bruno Haible  <bruno@clisp.org>
11514
11515         * gnulib-tool (func_import): Fix handling of symbolic links.
11516
11517 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
11518
11519         On 64-bit hosts (where size_t is 64 bits and int is 32 bits), the
11520         old glibc regex code mishandles strings longer than 2**31 bytes.
11521         This patch fixes this when the regex code is used in gnulib
11522         (i.e., outside glibc).
11523
11524         This patch should not affect the use of the regex code inside
11525         glibc.  No doubt this problem also needs to be handled for glibc
11526         as well, but the result will be an incompatible change to the
11527         glibc ABI, and the old ABI will have to be supported too.  That
11528         can be the the subject for another patch.
11529
11530         * lib/regex.h (_REGEX_LARGE_OFFSETS): New feature-test macro,
11531         governing whether the rest of this patch is active.  By default,
11532         the macro is disabled and the patch has no effect.
11533         (regoff_t) [defined _REGEX_LARGE_OFFSETS]: Define to off_t, not int.
11534         (__re_idx_t, __re_size_t, __re_long_size_t): New types.
11535         (struct re_pattern_buffer, re_search, re_search_2, re_match):
11536         (re_match_2, re_set_registers): Use the new types.
11537         * lib/regex_internal.h (Idx, re_hashval_t): New types.
11538         (REG_MISSING, REG_ERROR, REG_VALID_INDEX, REG_VALID_NONZERO_INDEX):
11539         New macros.
11540         (re_node_set, re_charset_t, re_token_t, re_string_realloc_buffers):
11541         (re_string_context_at, bin_tree_t, re_dfastate_t):
11542         (struct re_state_table_entry, state_array_t, re_sub_match_last_t):
11543         (re_sub_match_top_t, re_match_context_t, re_sift_context_t):
11544         (struct re_fail_stack_ent_t, struct re_fail_stack_t, struct re_dfa_t):
11545         (re_string_char_size_at, re_string_wchar_at):
11546         (re_string_elem_size_at):
11547         Use the new types and macros to port to 64-bit hosts.
11548         Use unsigned types for internal values, so that the code
11549         mostly works even for arrays larger than SSIZE_MAX.
11550         * lib/regcomp.c (re_compile_internal, init_dfa, duplicate_node):
11551         (search_duplicated_node, calc_eclosure_iter, fetch_number):
11552         (parse_reg_exp, parse_branch, parse_expression, parse_sub_exp):
11553         (build_equiv_class, build_charclass, re_compile_fastmap_iter):
11554         (free_dfa_content, create_initial_state, optimize_utf8, analyze):
11555         (optimize_subexps, calc_first, link_nfa_nodes, duplicate_node_closure):
11556         (calc_inveclosure, parse_dup_op, build_range_exp):
11557         (build_collating_symbol, parse_bracket_exp, build_charclass_op):
11558         (fetch_number, create_token_tree, mark_opt_subexp):
11559         Likewise.
11560         * lib/regex_internal.c (re_string_construct_common,
11561         create_ci_newstate):
11562         (create_cd_newstate, re_string_allocate, re_string_construct):
11563         (re_string_realloc_buffers, build_wcs_upper_buffer):
11564         (re_string_skip_chars, build_upper_buffer, re_string_translate_buffer):
11565         (re_string_reconstruct, re_string_peek_byte_case):
11566         (re_string_fetch_byte_case, re_string_context_at):
11567         (re_node_set_alloc, re_node_set_init_1, re_node_set_init_2):
11568         (re_node_set_init_copy, re_node_set_add_intersect):
11569         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
11570         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
11571         (re_node_set_remove_at, re_dfa_add_node, calc_state_hash):
11572         (re_acquire_state, re_acquire_state_context, register_state):
11573         Likewise.
11574         * lib/regex.c (match_ctx_init, match_ctx_add_entry,
11575         search_cur_bkref_entry):
11576         (match_ctx_add_subtop, match_ctx_add_sublast, sift_ctx_init):
11577         (re_search_internal, re_search_2_stub, re_search_stub)
11578         (re_copy_regs, check_matching, check_halt_state_context, update_regs):
11579         (push_fail_stack, sift_states_iter_mb, build_sifted_states):
11580         (update_cur_sifted_state, check_dst_limits):
11581         (check_dst_limits_calc_pos_1, check_dst_limits_calc_pos):
11582         (check_subexp_limits, sift_states_bkref, merge_state_array):
11583         (check_subexp_matching_top, get_subexp, get_subexp_sub):
11584         (find_subexp_node, check_arrival, check_arrival_add_next_nodes):
11585         (check_arrival_expand_ecl, check_arrival_expand_ecl_sub):
11586         (expand_bkref_cache, check_node_accept_bytes):
11587         (group_nodes_into_DFAstates, check_node_accept, regexec, re_match):
11588         (re_search, re_match_2, re_search_2, prune_impossible_nodes):
11589         (acquire_init_state_context, check_halt_node_context):
11590         (proceed_next_node, pop_fail_stack, set_regs, free_fail_stack_return):
11591         (sift_states_backward, clean_state_log_if_needed):
11592         (sub_epsilon_src_nodes, add_epsilone_src_nodes, merge_state_with_log):
11593         (find_recover_state, transit_state_sb, transit_state_mb):
11594         (transit_state_bkref, build_trtable, match_ctx_clean):
11595         Likewise.
11596         * lib/regcomp.c (parse_dup_op): Add an extra test if Idx is unsigned,
11597         to work around an assumption that REG_MISSING is negative.
11598
11599         * lib/regcomp.c (re_comp) [defined _REGEX_RE_COMP || defined _LIBC]:
11600         (seek_collating_symbol_entry) [defined _LIBC]:
11601         (lookup_collation_sequence_value) [defined _LIBC]:
11602         (build_range_exp, build_collating_symbol) [defined _LIBC]:
11603         Use prototypes rather than old-style function definitions.
11604         * lib/regexec.c (re_exec) [defined _REGEX_RE_COMP || defined _LIBC]:
11605         (transit_state_sb) [0]:
11606         (find_collation_sequence_value) [defined _LIBC]: Likewise.
11607
11608         * lib/regexec.c (re_search_internal): Simplify update of rm_so and
11609         rm_eo.
11610
11611         * lib/regcomp.c (re_compile_fastmap_iter, init_dfa, init_word_char):
11612         (optimize_subexps, lower_subexp):
11613         Don't assume 1<<31 has defined behavior on hosts with 32-bit int,
11614         since the signed shift might overflow.  Use 1u<<31 instead.
11615         * lib/regex_internal.h (bitset_set, bitset_clear, bitset_contain):
11616         Likewise.
11617         * lib/regexec.c (check_dst_limits_calc_pos_1,
11618         check_subexp_matching_top): Likewise.
11619
11620         * lib/regcomp.c (optimize_subexps, lower_subexp):
11621         Use CHAR_BIT rather than 8, for clarity.
11622         * lib/regexec.c (check_dst_limits_calc_pos_1):
11623         (check_subexp_matching_top): Likewise.
11624         * lib/regcomp.c (init_dfa): Make table_size unsigned, so that we don't
11625         have to worry about portability issues when shifting it left.
11626         Remove no-longer-needed test for table_size > 0.
11627         * lib/regcomp.c (parse_sub_exp): Do not shift more bits than there are
11628         in a word, as the resulting behavior is undefined.
11629         * lib/regexec.c (check_dst_limits_calc_pos_1): Likewise;
11630         in one case, a <= should have been an <, and in another case the
11631         whole test was missing.
11632         * lib/regex_internal.h (BYTE_BITS): Remove.  All uses changed to
11633         the standard name CHAR_BIT.
11634         * lib/regexec.c (match_ctx_add_entry): Don't assume that ~0 == -1;
11635         this is not true on one's complement and signed-magnitude hosts.
11636
11637         * lib/regex_internal.h (re_sub_match_top_t): Remove unused member
11638         next_last_offset.
11639         (struct re_dfa_t): Remove unused member states_alloc.
11640         * lib/regcomp.c (init_dfa): Don't initialize unused members.
11641
11642 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
11643
11644         * m4/regex.m4 (gl_REGEX): Require AC_SYS_LARGEFILE, Define
11645         _REGEX_LARGE_OFFSETS).  Test for regoff_t/off_t bug in 64-bit
11646         and large-file glibc and in 32-bit large-file Solaris.
11647
11648 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
11649
11650         * lib/regex_internal.c (re_string_reconstruct): Don't assume buffer
11651         lengths fit in regoff_t; this isn't true if regoff_t is the same
11652         width as size_t.
11653         * lib/regex.c (re_search_internal): 5th arg is LAST_START
11654         (= START + RANGE) instead of RANGE.  This avoids overflow
11655         problems when regoff_t is the same width as size_t.
11656         All callers changed.
11657         (re_search_2_stub): Check for overflow when adding the
11658         sizes of the two strings.
11659         (re_search_stub): Check for overflow when adding START
11660         to RANGE; if it occurs, substitute the extreme value.
11661
11662 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
11663
11664         * config/srclist.txt: Add glibc bugs 1273, 1278-1282, 1284.
11665
11666 2005-08-31  Jim Meyering  <jim@meyering.net>
11667
11668         * lib/regcomp.c (search_duplicated_node): Make first pointer arg
11669         a pointer-to-const.
11670         * lib/regex_internal.c (create_ci_newstate, create_cd_newstate):
11671         (register_state): Likewise.
11672         * lib/regexec.c (search_cur_bkref_entry, check_dst_limits):
11673         (check_dst_limits_calc_pos_1, check_dst_limits_calc_pos):
11674         (group_nodes_into_DFAstates): Likewise.
11675
11676 2005-08-31  Jim Meyering  <jim@meyering.net>
11677
11678         * check-module: Add a FIXME comment.
11679
11680 2005-08-31  Eric Blake  <ebb9@byu.net>
11681
11682         * modules/unistd-safer (Files): Add unistd--.h.
11683         * modules/stdio-safer (Files): Add stdio--.h.
11684
11685 2005-08-31  Derek Price  <derek@ximbiot.com>
11686
11687         * lib/getdelim.c (getdelim): Return EOF on EOF.
11688         Reported by Larry Jones <lawrence.jones@ugs.com>.
11689
11690 2005-08-31  Bruno Haible  <bruno@clisp.org>
11691
11692         Avoid unnecessary diffs in the generated lib/Makefile.am.
11693         * gnulib-tool (func_emit_lib_Makefile_am): Don't write the cmd into
11694         the generated files.
11695         (func_import): Don't set cmd.
11696
11697 2005-08-31  Bruno Haible  <bruno@clisp.org>
11698
11699         * lib/strstr.c: Include <stddef.h>, for NULL.
11700         * lib/strcasestr.c: Likewise.
11701         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
11702
11703 2005-08-31  Bruno Haible  <bruno@clisp.org>
11704
11705         * gnulib-tool: New option --macro-prefix.
11706         (func_import): Use macro_prefix.
11707         (import): Handle option --macro-prefix.
11708
11709 2005-08-31  Bruno Haible  <bruno@clisp.org>
11710
11711         * gnulib-tool (import): Rename most ac_* variables to cached_*.
11712         Also use new variables cached_lgpl, cached_libtool.
11713
11714 2005-08-31  Bruno Haible  <bruno@clisp.org>
11715
11716         * gnulib-tool (func_import): Require AC_GNU_SOURCE etc. instead of
11717         always instantiating them.
11718
11719 2005-08-31  Bruno Haible  <bruno@clisp.org>
11720
11721         * gnulib-tool (func_import): Read the previous cached settings
11722         from gnulib-cache.m4 and gnulib-comp.m4. Remove files that were
11723         earlier added by gnulib but are now dropped. Warn when a gnulib file
11724         overwrites a non-gnulib file.
11725
11726 2005-08-31  Bruno Haible  <bruno@clisp.org>
11727
11728         * gnulib-tool (func_import): Generate two files gnulib-cache.m4 and
11729         gnulib-comp.m4 instead of a single gnulib.m4, to make it easy for
11730         projects that don't keep autogenerated files in CVS. Put into
11731         actioncmd only the specified modules, not the transitive closure.
11732
11733 2005-08-31  Bruno Haible  <bruno@clisp.org>
11734
11735         * gnulib-tool (func_import): Fix defaulting of $libname and $libtool.
11736         Create directories that shall be filled.
11737         (import): Don't look for gl_* macros in configure.ac. Recurse across
11738         all directories containing a gnulib-cache.m4 files, if meaningful.
11739
11740 2005-08-31  Bruno Haible  <bruno@clisp.org>
11741
11742         * gnulib-tool (func_import): Emit also a stub for gl_LIBTOOL.
11743         (import): Set seen_libtool when we see gl_LIBTOOL.
11744
11745 2005-08-31  Bruno Haible  <bruno@clisp.org>
11746
11747         * gnulib-tool (func_import): Also copy m4/gnulib-tool.m4. Omit
11748         declaration macro definitions from generated gnulib.m4.
11749
11750 2005-08-30  Oskar Liljeblad  <oskar@osk.mine.nu>
11751
11752         * lib/iconvme.h: Add prototype for iconv_alloc.
11753
11754 2005-08-29  Simon Josefsson  <jas@extundo.com>
11755
11756         * lib/iconvme.c: Fix errno.
11757
11758 2005-08-29  Bruno Haible  <bruno@clisp.org>
11759
11760         * gnulib-tool: Enclose all occurrences of $destdir in "...", so
11761         that it works when the directory contains spaces.
11762
11763 2005-08-29  Bruno Haible  <bruno@clisp.org>
11764
11765         * gnulib-tool (import): Avoid unnecessary spaces in $avoidlist.
11766
11767 2005-08-29  Bruno Haible  <bruno@clisp.org>
11768
11769         * gnulib-tool (func_import): Emit more comments into gnulib.m4.
11770         Emit more advice.
11771
11772 2005-08-29  Bruno Haible  <bruno@clisp.org>
11773         and Stepan Kasal  <kasal@ucw.cz>
11774
11775         * check-module: If more parameters are given, check each of them
11776         separately; add more exceptions, as noted by Jim Meyering.
11777         (check_module): New procedure.
11778         (%exempt_header): Now contains all exceptions.
11779
11780 2005-08-29  Ben Pfaff  <blp@cs.stanford.edu>
11781
11782         * modules/byteswap (Makefile.am): Fix rule to not assume GNU make.
11783
11784 2005-08-29  Oskar Liljeblad  <oskar@osk.mine.nu>
11785
11786         * lib/iconvme.c: Split iconv_string into iconv_alloc.
11787
11788 2005-08-28  Bruno Haible  <bruno@clisp.org>
11789
11790         * m4/gnulib-tool.m4: New file.
11791
11792 2005-08-27  Jim Meyering  <jim@meyering.net>
11793
11794         * modules/unistd-safer (Files): Add pipe-safer.c.
11795         * modules/fcntl-safer (Files): Add creat-safer.c.
11796
11797 2005-08-27  Jim Meyering  <jim@meyering.net>
11798
11799         * m4/stdlib-safer.m4: New file.  From coreutils.
11800         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Add stdio--.h.
11801         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Add creat-safer.c to the
11802         AC_LIBSOURCES list and arrange to compile it via AC_LIBOBJ.
11803         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Likewise, add pipe-safer.c.
11804         Add pipe-safer.c and unistd--.h to the AC_LIBSOURCES list.
11805
11806 2005-08-27  Jim Meyering  <jim@meyering.net>
11807
11808         * lib/fopen-safer.c: Merge minor changes from coreutils.
11809         * lib/dup-safer.c: Likewise.
11810         * lib/fd-safer.c: Likewise.
11811
11812         Merge from coreutils.
11813         * lib/stdio--.h: New file.
11814         * lib/stdlib--.h: New file.
11815         * lib/mkstemp-safer.c: New file.
11816
11817         GNU tar needs these.
11818         * lib/pipe-safer.c: New file.
11819         * lib/creat-safer.c: New file.
11820         * lib/fcntl--.h (creat): Define to creat_safer.
11821         * lib/fcntl-safer.h: Include <sys/types.h> and declare creat_safer.
11822         * lib/unistd--.h (pipe): Define to pipe_safer.
11823         * lib/unistd-safer.h: Declare pipe_safer.
11824
11825 2005-08-26  Simon Josefsson  <jas@extundo.com>
11826
11827         * lib/getpass.c: Use _WIN32 instead of WIN32, suggested by Bruno
11828         Haible <bruno@clisp.org>.
11829
11830 2005-08-26  Paul Eggert  <eggert@cs.ucla.edu>
11831
11832         * lib/regex_internal.h: Remove all references to
11833         RE_NO_INTERNAL_PROTOTYPES; no longer neeeded now that we assume C89
11834         or better.
11835         (bitset_not, bitset_merge, bitset_not_merge):
11836         (bitset_mask, re_string_allocate, re_string_construct):
11837         (re_string_reconstruct, re_string_destruct, re_string_elem_size_at):
11838         (re_string_char_size_at, re_string_wchar_at, re_string_peek_byte_case):
11839         (re_string_fetch_byte_case, re_node_set_alloc, re_node_set_init_1):
11840         (re_node_set_init_2, re_node_set_init_copy, re_node_set_add_intersect):
11841         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
11842         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
11843         (re_node_set_remove_at, re_dfa_add_node, re_acquire_state):
11844         (re_acquire_state_context):
11845         Remove unnecessary forward decls.
11846         (re_string_char_size_at, re_string_wchar_at, re_string_elem_size_at):
11847         Put __attribute at function definition,
11848         now that the function decl has been removed.
11849         * lib/regex_internal.c (re_string_peek_byte_case):
11850         (re_string_fetch_byte_case, re_node_set_compare, re_node_set_contains):
11851         Likewise.
11852
11853 2005-08-25  Stepan Kasal  <kasal@ucw.cz>
11854
11855         * m4/regex.m4: Add AC_PREREQ(2.50).
11856         (gl_REGEX): If --with-included-regex was given, skip the autodetection.
11857
11858 2005-08-25  Simon Josefsson  <jas@extundo.com>
11859
11860         * m4/getpass.m4: Check for termios.h, tcgetattr, tcsetattr, and
11861         __fsetlocking.
11862
11863 2005-08-25  Simon Josefsson  <jas@extundo.com>
11864
11865         * lib/getpass.c: Add WIN32 implementation.  Conditionalize use of
11866         termios.h, tcgetattr, tcsetattr and __fsetlocking.  Remove some
11867         GLIBC specific code.
11868
11869 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
11870
11871         Make regex safe for g++.  This fixes one real bug (an "err"
11872         that should have been "*err").  g++ problem reported by
11873         Sam Steingold.
11874         * lib/regex_internal.h (re_calloc): New macro, consistent with
11875         re_malloc etc.  All callers of calloc changed to use re_calloc.
11876         * lib/regex_internal.c (build_wcs_upper_buffer): Return reg_errcode_t,
11877         not int.  All callers changed.
11878         * lib/regcomp.c (re_compile_fastmap_iter): Don't use
11879         alloca (mb_cur_max); just use an array of size MB_LEN_MAX.
11880         * lib/regexec.c (push_fail_stack): Use re_realloc, not realloc.
11881         (find_recover_state): Change "err" to "*err"; this fixes what
11882         appears to be a real bug.
11883         (check_arrival_expand_ecl_sub): Be consistent about reg_errcode_t
11884         versus int.
11885
11886 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
11887
11888         * modules/regex (Depends-on): Add malloc, since the code
11889         assumes that !malloc(0) means failure.
11890
11891 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
11892
11893         * lib/regexec.c (set_regs): Don't alloca with an unbounded size.
11894
11895         alloca modernization/simplification for regex.
11896         * lib/regex.c: Remove portability cruft for alloca.  This no longer
11897         needs to be at the start of the file, and can be moved into
11898         regex_internal.h and simplified.
11899         * lib/regex_internal.h: Include <alloca.h>.
11900         (__libc_use_alloca) [!defined _LIBC]: New macro.
11901         * lib/regexec.c (build_trtable): Remove "#ifdef _LIBC", since the code
11902         now works outside glibc.
11903
11904 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
11905
11906         * config/srclist.txt: Add glibc bugs 1241, 1245.
11907
11908 2005-08-25  Jim Meyering  <jim@meyering.net>
11909
11910         * lib/open-safer.c: Include <config.h>.
11911         Otherwise, we'd lose LARGEFILE support in any file using
11912         e.g. "fcntl--.h"
11913
11914 2005-08-25  Bruno Haible  <bruno@clisp.org>
11915
11916         * m4/minmax.m4: Require autoconf 2.52.
11917         (gl_MINMAX_IN_HEADER): Add comments. Use m4_pushdef/m4_popdef instead
11918         of define/undefine. Use AS_TR_SH and AS_TR_CPP as more robust
11919         alternatives of translit over the alphabet.
11920         Based on a patch from Stepan Kasal <kasal@ucw.cz>.
11921
11922 2005-08-24  Simon Josefsson  <jas@extundo.com>
11923
11924         * tests/test-getpass.c: New file.
11925
11926 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
11927
11928         * m4/regex.m4 (gl_REGEX): Use POSIX-compliant spellings when testing
11929         for GNU regex features.
11930
11931 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
11932
11933         * lib/regcomp.c (regerror): 2nd arg is 'restrict', as per POSIX.
11934         * lib/regex.h (regerror): Likewise.
11935
11936         * lib/regex.c: Do not include <sys/types.h>, as POSIX no longer
11937         requires this.  (The code never needed it.)
11938
11939         * lib/regcomp.c, regex_internal.c, regex_internal.h, regexec.c:
11940         All uses of recently-renamed identifiers changed to use the new,
11941         POSIX-compliant names.  The code will build and run just fine
11942         without these changes, but it's better to eat our own dog food
11943         and use the standard-conforming names.
11944
11945         * lib/regex.h: Fix a multitude of POSIX name space violations.
11946         These changes have an effect only for programs that define
11947         _POSIX_C_SOURCE, _POSIX_SOURCE, or _XOPEN_SOURCE; they
11948         do not change anything for programs compiled in the normal way.
11949         Also, there is no effect on the ABI.
11950
11951         (_REGEX_SOURCE): New macro.
11952         Do not include <stddef.h> if _XOPEN_SOURCE and VMS are both
11953         defined and _GNU_SOURCE is not; this fixes a name space violation.
11954
11955         Rename the following macros to obey POSIX requirements.
11956         The old names are still visible as macros if _REGEX_SOURCE is defined.
11957         (REG_BACKSLASH_ESCAPE_IN_LISTS): renamed from
11958         RE_BACKSLASH_ESCAPE_IN_LISTS.
11959         (REG_BK_PLUS_QM): renamed from RE_BK_PLUS_QM.
11960         (REG_CHAR_CLASSES): renamed from RE_CHAR_CLASSES.
11961         (REG_CONTEXT_INDEP_ANCHORS): renamed from RE_CONTEXT_INDEP_ANCHORS.
11962         (REG_CONTEXT_INDEP_OPS): renamed from RE_CONTEXT_INDEP_OPS.
11963         (REG_CONTEXT_INVALID_OPS): renamed from RE_CONTEXT_INVALID_OPS.
11964         (REG_DOT_NEWLINE): renamed from RE_DOT_NEWLINE.
11965         (REG_DOT_NOT_NULL): renamed from RE_DOT_NOT_NULL.
11966         (REG_HAT_LISTS_NOT_NEWLINE): renamed from RE_HAT_LISTS_NOT_NEWLINE.
11967         (REG_INTERVALS): renamed from RE_INTERVALS.
11968         (REG_LIMITED_OPS): renamed from RE_LIMITED_OPS.
11969         (REG_NEWLINE_ALT): renamed from RE_NEWLINE_ALT.
11970         (REG_NO_BK_BRACES): renamed from RE_NO_BK_BRACES.
11971         (REG_NO_BK_PARENS): renamed from RE_NO_BK_PARENS.
11972         (REG_NO_BK_REFS): renamed from RE_NO_BK_REFS.
11973         (REG_NO_BK_VBAR): renamed from RE_NO_BK_VBAR.
11974         (REG_NO_EMPTY_RANGES): renamed from RE_NO_EMPTY_RANGES.
11975         (REG_UNMATCHED_RIGHT_PAREN_ORD): renamed from
11976         RE_UNMATCHED_RIGHT_PAREN_ORD.
11977         (REG_NO_POSIX_BACKTRACKING): renamed from RE_NO_POSIX_BACKTRACKING.
11978         (REG_NO_GNU_OPS): renamed from RE_NO_GNU_OPS.
11979         (REG_DEBUG): renamed from RE_DEBUG.
11980         (REG_INVALID_INTERVAL_ORD): renamed from RE_INVALID_INTERVAL_ORD.
11981         (REG_IGNORE_CASE): renamed from RE_ICASE.  This renaming is a bit
11982         unusual, since we can't clash with the POSIX REG_ICASE.
11983         (REG_CARET_ANCHORS_HERE): renamed from RE_CARET_ANCHORS_HERE.
11984         (REG_CONTEXT_INVALID_DUP): renamed from RE_CONTEXT_INVALID_DUP.
11985         (REG_NO_SUB): renamed from RE_NO_SUB.
11986         (REG_SYNTAX_EMACS): renamed from RE_SYNTAX_EMACS.
11987         (REG_SYNTAX_AWK): renamed from RE_SYNTAX_AWK.
11988         (REG_SYNTAX_GNU_AWK): renamed from RE_SYNTAX_GNU_AWK.
11989         (REG_SYNTAX_POSIX_AWK): renamed from RE_SYNTAX_POSIX_AWK.
11990         (REG_SYNTAX_GREP): renamed from RE_SYNTAX_GREP.
11991         (REG_SYNTAX_EGREP): renamed from RE_SYNTAX_EGREP.
11992         (REG_SYNTAX_POSIX_EGREP): renamed from RE_SYNTAX_POSIX_EGREP.
11993         (REG_SYNTAX_ED): renamed from RE_SYNTAX_ED.
11994         (REG_SYNTAX_SED): renamed from RE_SYNTAX_SED.
11995         (_REG_SYNTAX_POSIX_COMMON): renamed from _RE_SYNTAX_POSIX_COMMON.
11996         (REG_SYNTAX_POSIX_BASIC): renamed from RE_SYNTAX_POSIX_BASIC.
11997         (REG_SYNTAX_POSIX_MINIMAL_BASIC): renamed from
11998         RE_SYNTAX_POSIX_MINIMAL_BASIC.
11999         (REG_SYNTAX_POSIX_EXTENDED): renamed from RE_SYNTAX_POSIX_EXTENDED.
12000         (REG_SYNTAX_POSIX_MINIMAL_EXTENDED): renamed from
12001         RE_SYNTAX_POSIX_MINIMAL_EXTENDED.
12002         (REG_DUP_MAX): renamed from RE_DUP_MAX.  No need to undef it.
12003         (REG_UNALLOCATED): Renamed from REGS_UNALLOCATED.
12004         (REG_REALLOCATE): Renamed from REGS_REALLOCATE.
12005         (REG_FIXED): Renamed from REGS_FIXED.
12006         (REG_NREGS): Renamed from RE_NREGS.
12007
12008         (REG_ICASE, REG_NEWLINE, REG_NOSUB): Do not depend on the values
12009         of other REG_* macros, since POSIX says the user is allowed to
12010         #undef these macros selectively.
12011
12012         (reg_errcode_t): Update comment stating what other tables need
12013         to be consistent.
12014
12015         Rename the following enum values to obey POSIX requirements.
12016         The old names are still visible as macros.
12017         (_REG_ENOSYS): Renamed from REG_ENOSYS.  Define even if _XOPEN_SOURCE
12018         is not defined, since GNU is supposed to be a superset of POSIX as
12019         much as possible, and since we want reg_errcode_t to be a signed
12020         type for implementation consistency.
12021         (_REG_NOERROR): Renamed from REG_NOERROR.
12022         (_REG_NOMATCH): Renamed from REG_NOMATCH.
12023         (_REG_BADPAT): Renamed from REG_BADPAT.
12024         (_REG_ECOLLATE): Renamed from REG_ECOLLATE.
12025         (_REG_ECTYPE): Renamed from REG_ECTYPE.
12026         (_REG_EESCAPE): Renamed from REG_EESCAPE.
12027         (_REG_ESUBREG): Renamed from REG_ESUBREG.
12028         (_REG_EBRACK): Renamed from REG_EBRACK.
12029         (_REG_EPAREN): Renamed from REG_EPAREN.
12030         (_REG_EBRACE): Renamed from REG_EBRACE.
12031         (_REG_BADBR): Renamed from REG_BADBR.
12032         (_REG_ERANGE): Renamed from REG_ERANGE.
12033         (_REG_ESPACE): Renamed from REG_ESPACE.
12034         (_REG_BADRPT): Renamed from REG_BADRPT.
12035         (_REG_EEND): Renamed from REG_EEND.
12036         (_REG_ESIZE): Renamed from REG_ESIZE.
12037         (_REG_ERPAREN): Renamed from REG_ERPAREN.
12038         (REG_ENOSYS, REG_NOERROR, REG_NOMATCH, REG_BADPAT, REG_ECOLLATE):
12039         (REG_ECTYPE, REG_EESCAPE, REG_ESUBREG, REG_EBRACK, REG_EPAREN):
12040         (REG_EBRACE, REG_BADBR, REG_ERANGE, REG_ESPACE, REG_BADRPT, REG_EEND):
12041         (REG_ESIZE, REG_ERPAREN): Now macros, not enum constants.
12042
12043         (_REG_RE_NAME, _REG_RM_NAME): New macros.
12044         (REG_TRANSLATE_TYPE): Renamed from RE_TRANSLATE_TYPE.  All uses
12045         changed.  But support the old name if the new one is not defined
12046         and if _REGEX_SOURCE.
12047
12048         Change the following member names in struct re_pattern_buffer.
12049         The old names are still supported if !_REGEX_SOURCE.
12050         The new names are always supported, regardless of _REGEX_SOURCE.
12051         (re_buffer): Renamed from buffer.
12052         (re_allocated): Renamed from allocated.
12053         (re_used): Renamed from used.
12054         (re_syntax): Renamed from syntax.
12055         (re_fastmap): Renamed from fastmap.
12056         (re_translate): Renamed from translate.
12057         (re_can_be_null): Renamed from can_be_null.
12058         (re_regs_allocated): Renamed from regs_allocated.
12059         (re_fastmap_accurate): Renamed from fastmap_accurate.
12060         (re_no_sub): Renamed from no_sub.
12061         (re_not_bol): Renamed from not_bol.
12062         (re_not_eol): Renamed from not_eol.
12063         (re_newline_anchor): Renamed from newline_anchor.
12064
12065         Change the following member names in struct re_registers.
12066         The old names are still supported if !_REGEX_SOURCE.
12067         The new names are always supported, regardless of _REGEX_SOURCE.
12068         (rm_num_regs): Renamed from num_regs.
12069         (rm_start): Renamed from start.
12070         (rm_end): Renamed from end.
12071
12072         (re_set_syntax, re_compile_pattern, re_compile_fastmap):
12073         (re_search, re_search_2, re_match, re_match_2, re_set_registers):
12074         Prepend __ to parameter names.
12075
12076         Undo yesterday's changes.
12077
12078 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
12079
12080         * config/srclist.txt: Remove glibc bug 1233 and add 1236, which
12081         supersedes it. Add glibc bugs 1237, 1238, 1240.  Comment out
12082         lib/regex.c.
12083
12084 2005-08-24  Jim Meyering  <jim@meyering.net>
12085
12086         Sync from coreutils.
12087         * m4/fcntl-safer.m4: New file.
12088
12089         * m4/xgetcwd.m4: Use AC_LIBSOURCES and AC_LIBOBJ to indicate source
12090         and object files for this module.
12091
12092 2005-08-24  Jim Meyering  <jim@meyering.net>
12093
12094         Sync from coreutils.
12095         * lib/fcntl--.h, lib/fcntl-safer.h, lib/open-safer.c: New files.
12096
12097 2005-08-24  Jim Meyering  <jim@meyering.net>
12098
12099         * modules/xgetcwd (Makefile.am): Remove `lib_SOURCES += ...' line,
12100         now that xgetcwd.m4 requires xgetcwd.c and xgetcwd.h.
12101
12102 2005-08-24  Jim Meyering  <jim@meyering.net>
12103
12104         * modules/fcntl-safer: New module.
12105         * modules/fts (Depends-on): Add fcntl-safer.
12106         * MODULES.html.sh (File descriptor based Input/Output):
12107         Add fcntl-safer.
12108
12109 2005-08-24  Bruno Haible  <bruno@clisp.org>
12110
12111         Support for unit test modules.
12112         * modules/README: Mention tests modules.
12113         * modules/TEMPLATE-TESTS: New file.
12114         * gnulib-tool: New options --extract-tests-module, --with-tests and
12115         --tests-base (unused for the moment).
12116         (testsbase, inctests): New variables.
12117         (func_all_modules): Exclude TEMPLATE-TESTS and *-tests.
12118         (func_verify_module): Exclude TEMPLATE-TESTS.
12119         (func_verify_nontests_module, func_verify_tests_module): New functions.
12120         (func_get_dependencies): Add implicit dependency for tests modules.
12121         (func_get_tests_module): New function.
12122         (func_modules_transitive_closure): When --with-tests was specified,
12123         include the unit tests as well, unless explicitly avoided.
12124         (func_emit_lib_Makefile_am): Ignore the tests modules here.
12125         (func_emit_tests_Makefile_am): New function.
12126         (func_create_testdir): When --with-tests was specified, emit a
12127         tests/ directory.
12128         * MODULES.html.sh (Future developments): Update.
12129
12130 2005-08-24  Bruno Haible  <bruno@clisp.org>
12131
12132         * modules/tls-tests: New file.
12133         * tests/test-tls.c: New file, from GNU gettext.
12134
12135 2005-08-24  Bruno Haible  <bruno@clisp.org>
12136
12137         * modules/lock-tests: New file.
12138         * tests/test-lock.c: New file, from GNU gettext.
12139
12140 2005-08-24  Bruno Haible  <bruno@clisp.org>
12141
12142         * lib/lock.h: Add multiple inclusion guard.
12143         * lib/tls.h: Add multiple inclusion guard.
12144
12145 2005-08-24  Bruno Haible  <bruno@clisp.org>
12146
12147         * gnulib-tool: Add support for the --aux-dir option to
12148         --create-testdir, --create-megatestdir, --test, --megatest.
12149         (func_create_testdir, func_create_megatestdir): Optionally emit a
12150         AC_CONFIG_AUX_DIR directive.
12151         (create-testdir, create-megatestdir, test, megatest): Provide a
12152         default value for $auxdir.
12153
12154 2005-08-24  Bruno Haible  <bruno@clisp.org>
12155
12156         * gnulib-tool (import): Use compound statement instead of subshell
12157         where possible.
12158
12159 2005-08-24  Bruno Haible  <bruno@clisp.org>
12160
12161         * gnulib-tool (import): Change --aux-dir default to "build-aux".
12162
12163 2005-08-24  Bruno Haible  <bruno@clisp.org>
12164
12165         * gnulib-tool (func_version): Update.
12166
12167 2005-08-24  Bruno Haible  <bruno@clisp.org>
12168
12169         * gnulib-tool (func_import, func_create_testdir,
12170         func_create_megatestdir): Quote all autoconf macro arguments.
12171
12172 2005-08-24  Bruno Haible  <bruno@clisp.org>
12173
12174         * gnulib-tool (func_create_megatestdir): Call autoreconf without the
12175         option --force, because --force causes the aclocal.m4 of each
12176         subdirectory to be newer than the corresponding config.h.in.
12177
12178 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
12179
12180         * m4/regex.m4 (gl_INCLUDED_REGEX): Remove; no longer used.
12181         All contents moved to gl_REGEX.
12182         (gl_REGEX): Don't bother checking whether lib/regex.c exists;
12183         assume that it does.
12184
12185 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
12186
12187         * lib/regex.h (REG_NOSYS)
12188         [!defined _XOPEN_SOURCE && 200112L <= _POSIX_C_SOURCE]:
12189         Define, since POSIX requires it as of 2001.
12190         (_REG_ENOSYS)
12191         [! (defined _XOPEN_SOURCE || 200112L <= _POSIX_C_SOURCE)]:
12192         New private symbol, used to keep the enum signed in all cases.
12193         * lib/regex.h (RE_NO_EMPTY_RANGES): Fix doc bug reported by James
12194         Youngman in
12195         <http://lists.gnu.org/archive/html/bug-gnulib/2005-07/msg00132.html>.
12196
12197         * lib/regex_internal.c (re_string_skip_chars, register_state):
12198         (calc_state_hash):
12199         Remove forward decls; no longer needed now that we use prototypes.
12200         * lib/regexec.c (acquire_init_state_context, check_halt_node_context):
12201         (proceed_next_node, pop_fail_stack, sub_epsilon_src_nodes):
12202         (clean_state_log_if_needed): Likewise.
12203
12204 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
12205
12206         * config/srclist.txt: Add glibc bugs 1231-1233.
12207
12208 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
12209
12210         Fix problems reported by Sam Steingold in
12211         <http://lists.gnu.org/archive/html/bug-gnulib/2005-08/msg00007.html>.
12212         * lib/regexec.c (sift_states_bkref): Fix portability bug: the code
12213         assumed that reg_errcode_t is a signed type, which is not
12214         necessarily true if _XOPEN_SOURCE is not defined.
12215         * lib/regex_internal.c (calc_state_hash): Put 'inline' before type,
12216         since some compilers warn about it otherwise.
12217
12218 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
12219
12220         * lib/regcomp.c (create_initial_state): Remove duplicate decl.
12221         (init_word_char, create_initial_state, duplicate_node_closure):
12222         (fetch_token, peek_token_bracket, build_range_exp):
12223         (build_collating_symbol): Remove forward decls; no longer needed
12224         now that we use prototypes.
12225
12226         * lib/regcomp.c:
12227         (re_compile_pattern, re_set_syntax, re_compile_fastmap):
12228         (re_compile_fastmap_iter, regcomp, regerror, regfree):
12229         (re_compile_internal, init_dfa, init_word_char, free_workarea_compile):
12230         (create_initial_state, optimize_utf8, analyze, postorder, preorder):
12231         (optimize_subexps, lower_subexps, lower_subexp, calc_first, calc_next):
12232         (link_nfa_nodes, duplicate_node_closure, search_duplicated_node):
12233         (duplicate_node, calc_inveclosure, calc_eclosure, calc_eclosure_iter):
12234         (fetch_token, peek_token, peek_token_bracket, parse, parse_reg_exp):
12235         (parse_branch, parse_expression, parse_sub_exp, parse_dup_op):
12236         (build_range_exp, build_collating_symbol, parse_bracket_exp):
12237         (parse_bracket_element, parse_bracket_symbol, build_equiv_class):
12238         (build_charclass, build_charclass_op, fetch_number, create_tree):
12239         (create_token_tree, mark_opt_subexp, duplicate_tree):
12240         Use prototypes rather than old-style definitions.
12241
12242         * lib/regex_internal.c:
12243         (re_string_allocate, re_string_construct, re_string_realloc_buffers):
12244         (re_string_construct_common, build_wcs_buffer, build_wcs_upper_buffer):
12245         (re_string_skip_chars, build_upper_buffer, re_string_translate_buffer):
12246         (re_string_reconstruct, re_string_peek_byte_case):
12247         (re_string_fetch_byte_case, re_string_destruct, re_string_context_at):
12248         (re_node_set_alloc, re_node_set_init_1, re_node_set_init_2):
12249         (re_node_set_init_copy, re_node_set_add_intersect):
12250         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
12251         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
12252         (re_node_set_remove_at, re_dfa_add_node, calc_state_hash):
12253         (re_acquire_state, re_acquire_state_context, register_state):
12254         (create_ci_newstate, create_cd_newstate, free_state):
12255         Likewise.
12256         * lib/regexec.c (regexec, re_match, re_search, re_match_2,
12257         re_search_2):
12258         (re_search_2_stub, re_search_stub, re_copy_regs, re_set_registers):
12259         (re_search_internal, prune_impossible_nodes):
12260         (acquire_init_state_context, check_matching, static):
12261         (check_halt_node_context, check_halt_state_context, proceed_next_node):
12262         (push_fail_stack, pop_fail_stack, set_regs, free_fail_stack_return):
12263         (update_regs, sift_states_backward, build_sifted_states):
12264         (clean_state_log_if_needed, merge_state_array):
12265         (update_cur_sifted_state, add_epsilon_src_nodes):
12266         (sub_epsilon_src_nodes, check_dst_limits, check_dst_limits_calc_pos_1):
12267         (check_dst_limits_calc_pos, check_subexp_limits, sift_states_bkref):
12268         (sift_states_iter_mb, transit_state, merge_state_with_log, static):
12269         (find_recover_state, check_subexp_matching_top, transit_state_mb):
12270         (transit_state_bkref, get_subexp, get_subexp_sub, find_subexp_node):
12271         (check_arrival, check_arrival_add_next_nodes):
12272         (check_arrival_expand_ecl, check_arrival_expand_ecl_sub):
12273         (expand_bkref_cache, build_trtable, group_nodes_into_DFAstates):
12274         (check_node_accept_bytes, check_node_accept, extend_buffers):
12275         (match_ctx_init, match_ctx_clean, match_ctx_free, match_ctx_add_entry):
12276         (search_cur_bkref_entry, match_ctx_add_subtop, match_ctx_add_sublast):
12277         (sift_ctx_init):
12278         Likewise.
12279
12280         * lib/regex_internal.h:
12281         (re_string_allocate, re_string_construct, re_string_reconstruct):
12282         (re_string_realloc_buffers, build_wcs_buffer, build_wcs_upper_buffer):
12283         (build_upper_buffer, re_string_translate_buffer, re_string_destruct):
12284         (re_string_elem_size_at, re_string_char_size_at, re_string_wchar_at):
12285         (re_string_context_at, re_string_peek_byte_case):
12286         (re_string_fetch_byte_case): Declare even if RE_NO_INTERNAL_PROTOTYPES
12287         is defined, since we now use prototypes always.
12288
12289         * lib/regex.h (_RE_ARGS): Remove.  No longer needed, since we assume
12290         C89 or better.  All uses removed.
12291
12292 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
12293
12294         * config/srclist.txt: Add glibc bugs 1220-1227.
12295
12296 2005-08-20  Jim Meyering  <jim@meyering.net>
12297
12298         * lib/regexec.c (regexec, re_search_stub) [!_LIBC]: Omit declaration
12299         of unused local, dfa.
12300
12301 2005-08-20  Bruno Haible  <bruno@clisp.org>
12302
12303         * m4/regex.m4 (gl_PREREQ_REGEX): Require AC_GNU_SOURCE.
12304
12305 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
12306
12307         * lib/regex_internal.c (re_string_realloc_buffers, re_node_set_insert):
12308         (re_node_set_insert_last, re_dfa_add_node):
12309         Rename local variables to avoid GCC shadowing warnings.
12310
12311 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
12312
12313         * lib/regex_internal.c (re_acquire_state, re_acquire_state_context)
12314         [defined lint]: Suppress bogus uninitialized-variable warnings.
12315
12316         * lib/regcomp.c (duplicate_node): Return new index, not an error code,
12317         and let the caller return REG_ESPACE if out of space.  This
12318         removes an uninitialied-variable warning with GCC 4.0.1, and also
12319         avoids taking the address of a local variable.  All callers
12320         changed.
12321
12322 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
12323
12324         * config/srclist.txt: Comment out $LIBCSRC/posix/regex_internal.c,
12325         $LIBCSRC/posix/regexec.c.
12326         Add glibc bug 1217 for regcomp.c.
12327
12328 2005-08-19  Jim Meyering  <jim@meyering.net>
12329
12330         * lib/regexec.c (proceed_next_node): Redo local variables to
12331         avoid GCC shadowing warnings.
12332
12333 2005-08-18  Bruno Haible  <bruno@clisp.org>
12334
12335         * lib/strstr.c (strstr): Fix return value in multibyte case.
12336         * lib/strcasestr.c (strcasestr): Likewise.
12337
12338 2005-08-17  Paul Eggert  <eggert@cs.ucla.edu>
12339
12340         * lib/regex.h: Remove useless space-before-tab.  From coreutils.
12341
12342 2005-08-17  Jim Meyering  <jim@meyering.net>
12343
12344         Make the %s format (seconds since the epoch) work for a negative
12345         number and when used with a zero-padded field width, e.g. %015s.
12346
12347         * lib/strftime.c (my_strftime): Move the `do_number_sign_and_padding'
12348         label so that it precedes the code to set `digits'.  Otherwise,
12349         %0Ns wouldn't work.  Before this change, `date -d @-22 +%05s' would
12350         print `00-22'.  Now, it prints `-0022', as it should.
12351
12352 2005-08-17  Bruno Haible  <bruno@clisp.org>
12353
12354         * modules/strstr (Files): Add m4/mbrtowc.m4.
12355         (Depends-on): Add mbuiter.
12356
12357 2005-08-17  Bruno Haible  <bruno@clisp.org>
12358
12359         * modules/strcasestr: New file.
12360         * MODULES.html.sh (String handling, based on ANSI C 89): Add
12361         strcasestr.
12362
12363 2005-08-17  Bruno Haible  <bruno@clisp.org>
12364
12365         * modules/strcase (Depends-on): Add mbuiter. Remove strnlen1, mbchar.
12366
12367 2005-08-17  Bruno Haible  <bruno@clisp.org>
12368
12369         * modules/mbuiter: New file.
12370         * MODULES.html.sh (Extended multibyte and wide character utilities):
12371         Add mbuiter.
12372
12373 2005-08-17  Bruno Haible  <bruno@clisp.org>
12374
12375         * m4/strstr.m4 (gl_FUNC_STRSTR): Use the replacement function always.
12376         (gl_PREREQ_STRSTR): Use gl_FUNC_MBRTOWC.
12377
12378 2005-08-17  Bruno Haible  <bruno@clisp.org>
12379
12380         * m4/strcasestr.m4: New file.
12381
12382 2005-08-17  Bruno Haible  <bruno@clisp.org>
12383
12384         * lib/strstr.h: Ignore HAVE_STRSTR, always declare the gnulib function.
12385         * lib/strstr.c: Completely rewritten, with multibyte locale support.
12386
12387 2005-08-17  Bruno Haible  <bruno@clisp.org>
12388
12389         * lib/strcasestr.h: New file.
12390         * lib/strcasestr.c: New file.
12391
12392 2005-08-17  Bruno Haible  <bruno@clisp.org>
12393
12394         * lib/strcasecmp.c: Use mbuiter.h.
12395
12396 2005-08-17  Bruno Haible  <bruno@clisp.org>
12397
12398         * lib/mbuiter.h: New file.
12399
12400 2005-08-16  Paul Eggert  <eggert@cs.ucla.edu>
12401
12402         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Do not override the results
12403         of gl_GETOPT_SUBSTITUTE.  That way, if both gl_GETOPT_SUBSTITUTE
12404         and gl_GETOPT are both invoked via different paths (as happens
12405         with GNU tar CVS because it uses both argp and getopt), the former
12406         wins.
12407
12408 2005-08-16  Bruno Haible  <bruno@clisp.org>
12409
12410         * modules/tls: New file.
12411         * MODULES.html.sh (Multithreading): Add tls.
12412
12413 2005-08-16  Bruno Haible  <bruno@clisp.org>
12414
12415         * modules/strnlen1: New file.
12416         * MODULES.html.sh (String handling): Add strnlen1.
12417
12418 2005-08-16  Bruno Haible  <bruno@clisp.org>
12419
12420         * modules/strcase (Files): Add m4/mbrtowc.m4.
12421         (Depends-on): Add strnlen1, mbchar.
12422
12423 2005-08-16  Bruno Haible  <bruno@clisp.org>
12424
12425         * modules/mbiter: New file.
12426         * MODULES.html.sh (Extended multibyte and wide character utilities):
12427         Add mbiter.
12428
12429 2005-08-16  Bruno Haible  <bruno@clisp.org>
12430
12431         * modules/mbfile: New file.
12432         * MODULES.html.sh (Extended multibyte and wide character utilities):
12433         Add mbfile.
12434
12435 2005-08-16  Bruno Haible  <bruno@clisp.org>
12436
12437         * modules/mbchar: New file.
12438         * MODULES.html.sh (Extended multibyte and wide character utilities):
12439         New section.
12440
12441 2005-08-16  Bruno Haible  <bruno@clisp.org>
12442
12443         * m4/tls.m4: New file, from GNU gettext.
12444
12445 2005-08-16  Bruno Haible  <bruno@clisp.org>
12446
12447         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Use the replacement function
12448         always.
12449         (gl_PREREQ_STRCASECMP): Use gl_FUNC_MBRTOWC.
12450
12451 2005-08-16  Bruno Haible  <bruno@clisp.org>
12452
12453         * m4/mbiter.m4: New file.
12454
12455 2005-08-16  Bruno Haible  <bruno@clisp.org>
12456
12457         * m4/mbfile.m4: New file.
12458
12459 2005-08-16  Bruno Haible  <bruno@clisp.org>
12460
12461         * m4/mbchar.m4: New file.
12462
12463 2005-08-16  Bruno Haible  <bruno@clisp.org>
12464
12465         * lib/tls.h: New file, from GNU gettext.
12466         * lib/tls.c: New file, from GNU gettext.
12467
12468 2005-08-16  Bruno Haible  <bruno@clisp.org>
12469
12470         * lib/strnlen1.h: New file.
12471         * lib/strnlen1.c: New file.
12472
12473 2005-08-16  Bruno Haible  <bruno@clisp.org>
12474
12475         * lib/strcasecmp.c (struct mbiter_multi): Remove at_end field.
12476         (mbi_init): Update.
12477         (mbi_avail, mbi_advance): Let the iteration end before the terminating
12478         NUL byte, not after it.
12479
12480 2005-08-16  Bruno Haible  <bruno@clisp.org>
12481
12482         * lib/strcase.h (strcasecmp): Add note in comments.
12483         * lib/strncasecmp.c: Use code from strcasecmp.c.
12484         * lib/strcasecmp.c: Use mbchar module. Define private mbiter variant.
12485         (strcasecmp): Work correctly in multibyte locales.
12486
12487 2005-08-16  Bruno Haible  <bruno@clisp.org>
12488
12489         * lib/mbiter.h: New file.
12490
12491 2005-08-16  Bruno Haible  <bruno@clisp.org>
12492
12493         * lib/mbfile.h: New file.
12494
12495 2005-08-16  Bruno Haible  <bruno@clisp.org>
12496
12497         * lib/mbchar.h: New file.
12498         * lib/mbchar.c: New file.
12499
12500 2005-08-16  Bruno Haible  <bruno@clisp.org>
12501
12502         * lib/mbchar.h (mb_cmp, mb_casecmp): Order the invalid characters after
12503         the valid ones. Makes the comparison operations transitive:
12504         cmp (a, b) < 0 && cmp (b, c) < 0 ==> cmp (a, c) < 0.
12505         * lib/strcasecmp.c (strcasecmp): Use mb_casecmp.
12506
12507 2005-08-15  Simon Josefsson  <jas@extundo.com>
12508
12509         * modules/ssize_t (License): Change to 'unlimited'.
12510
12511         * gnulib-tool (sed_extract_prog): Recognize 'unlimited' license.
12512
12513 2005-08-15  Paul Eggert  <eggert@cs.ucla.edu>
12514
12515         * config/srclist.txt: Comment out $LIBCSRC/posix/regex.h.
12516         Add comments for each pending glibc patch.
12517
12518 2005-08-15  Bruno Haible  <bruno@clisp.org>
12519
12520         * lib/regex.h (__restrict_arr): Don't define to __restrict if
12521         __cplusplus is defined.
12522
12523 2005-08-14  Jim Meyering  <jim@meyering.net>
12524
12525         Sync from coreutils.
12526
12527         * lib/fts-cycle.c (setup_dir, enter_dir, leave_dir, free_dir):
12528         Use the hash-table-based cycle-detection code not just when
12529         FTS_TIGHT_CYCLE_CHECK if specified, but also with FTS_LOGICAL.
12530         Reported by James Youngman in
12531         <http://lists.gnu.org/archive/html/bug-gnulib/2005-08/msg00011.html>.
12532         * lib/fts_.h: Mention that with FTS_LOGICAL, we use
12533         FTS_TIGHT_CYCLE_CHECK.
12534         * lib/fts.c (fts_cross_check) [FTS_DEBUG]:
12535         s/active_dir_ht/fts_cycle.ht/. This lets us compile with -DFTS_DEBUG,
12536         once again.
12537         * lib/fts.c [! _LIBC]: Include "lstat.h" rather than rolling our own.
12538         * lib/fts.c (fd_safer): Remove decl.
12539         Include fcntl--.h rather than unistd-safer.h
12540         (fts_safe_changedir): Don't call fd_safer; no longer needed
12541         now that we include fcntl--.h.
12542
12543 2005-08-12  Simon Josefsson  <jas@extundo.com>
12544
12545         * modules/getndelim2: Use ssize_t module.
12546         * modules/getnline: Likewise.
12547         * modules/safe-read: Likewise.
12548         * modules/xreadlink: Likewise.
12549
12550         * modules/ssize_t: New file.
12551
12552 2005-08-12  Simon Josefsson  <jas@extundo.com>
12553
12554         * m4/readline.m4: Look for termcap, curses or ncurses if required.
12555
12556 2005-08-12  Simon Josefsson  <jas@extundo.com>
12557
12558         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
12559         ssize_t.
12560
12561 2005-08-12  Simon Josefsson  <jas@extundo.com>
12562
12563         * MODULES.html.sh (Extra functions based on ANSI C 89: Misc): Add
12564         readline, getdelim and check_version.
12565         (Support for systems lacking ISO C 99: Sizes of integer types):
12566         Add size_max.
12567
12568 2005-08-12  Bruno Haible  <bruno@clisp.org>
12569
12570         * m4/readline.m4 (gl_FUNC_READLINE): Look for ncurses first.
12571
12572 2005-08-11  Simon Josefsson  <jas@extundo.com>
12573
12574         * modules/readline: New file.
12575
12576         * modules/strnlen (Files): Add strnlen.h.
12577
12578 2005-08-11  Simon Josefsson  <jas@extundo.com>
12579
12580         * m4/readline.m4: New file.
12581
12582 2005-08-11  Simon Josefsson  <jas@extundo.com>
12583
12584         * lib/readline.h, readline.c: New file.
12585
12586 2005-08-11  Simon Josefsson  <jas@extundo.com>
12587
12588         * doc/gnulib.texi (Initial import, Finishing touches): Mention
12589         gl_AVOID.
12590
12591 2005-08-11  Bruno Haible  <bruno@clisp.org>
12592
12593         * lib/strnlen.h (strnlen): Change parameter name to match comment.
12594
12595 2005-08-10  Stepan Kasal  <kasal@ucw.cz>
12596
12597         * m4/onceonly_2_57.m4: Really require Autoconf 2.57.
12598
12599 2005-08-10  Simon Josefsson  <jas@extundo.com>
12600
12601         * tests/test-iconvme.c: New file.
12602
12603 2005-08-10  Simon Josefsson  <jas@extundo.com>
12604
12605         * m4/strnlen.m4: New file.
12606
12607         * m4/strndup.m4: Don't check for strnlen declaration, done in
12608         strnlen.m4.
12609
12610 2005-08-10  Simon Josefsson  <jas@extundo.com>
12611
12612         * lib/strndup.c: Use strnlen.h.
12613
12614         * lib/strnlen.h: New file.
12615
12616 2005-08-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
12617
12618         * README: Typos.
12619
12620 2005-08-02  Simon Josefsson  <jas@extundo.com>
12621
12622         * modules/readline: New file.
12623
12624 2005-08-02  Simon Josefsson  <jas@extundo.com>
12625
12626         * modules/getdelim: New file.
12627
12628         * modules/getline: Rewrite, don't use getndelim2.
12629
12630 2005-08-02  Simon Josefsson  <jas@extundo.com>
12631
12632         * m4/getline.m4: Separate out getdelim stuff into separate module.
12633
12634         * m4/getdelim.m4: New file.
12635
12636 2005-08-02  Simon Josefsson  <jas@extundo.com>
12637
12638         * lib/getline.h, getline.c: Rewrite.
12639
12640         * lib/getdelim.h, lib/getdelim.c: New files, ported from glibc.
12641
12642 2005-07-31  Bruno Haible  <bruno@clisp.org>
12643
12644         * lib/lock.h (gl_lock_initializer): New macro.
12645         (gl_lock_define_initialized): Use it.
12646         (gl_rwlock_initializer): New macro.
12647         (gl_rwlock_define_initialized): Use it.
12648         (gl_recursive_lock_initializer): New macro.
12649         (gl_recursive_lock_define_initialized): Use it.
12650
12651 2005-07-30  Karl Berry  <karl@gnu.org>
12652
12653         * doc/gnulib.texi (Initial import): mention -I$(top_builddir)/lib.
12654         Report from Ben Pfaff, regarding getopt.
12655
12656 2005-07-26  Paul Eggert  <eggert@cs.ucla.edu>
12657
12658         Add support to getopt for Emacs, which doesn't use LIBOBJS in the
12659         normal way.
12660         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE_HEADER): New macro.
12661         (gl_GETOPT_SUBSTITUTE): Use it.  Invoke gl_PREREQ_GETOPT.
12662         (gl_GETOPT_IFELSE, gl_GETOPT_CHECK_HEADERS): New macros.
12663         (gl_GETOPT): Use the new macros.  Most of the implementation
12664         is moved to the new macros.  This is for programs like Emacs
12665         that don't want all the functionality of gl_GETOPT.
12666
12667 2005-07-26  Bruno Haible  <bruno@clisp.org>
12668
12669         * m4/lock.m4: Update from GNU gettext.
12670
12671 2005-07-26  Bruno Haible  <bruno@clisp.org>
12672
12673         * lib/lock.h: Update from GNU gettext.
12674         * lib/lock.c: Update from GNU gettext.
12675
12676 2005-07-25  Paul Eggert  <eggert@cs.ucla.edu>
12677
12678         * m4/regex.m4 (gl_INCLUDED_REGEX): Use AC_RUN_IFELSE instead of the
12679         obsolescent AC_TRY_RUN.  Include the default includes files, for
12680         'exit'.
12681
12682 2005-07-24  Bruno Haible  <bruno@clisp.org>
12683
12684         * modules/visibility: New file.
12685         * MODULES.html.sh (Misc): Add visibility.
12686
12687 2005-07-24  Bruno Haible  <bruno@clisp.org>
12688
12689         * m4/visibility.m4: New file.
12690
12691 2005-07-24  Bruno Haible  <bruno@clisp.org>
12692
12693         * doc/visibility.texi: New file.
12694
12695 2005-07-22  Bruno Haible  <bruno@clisp.org>
12696
12697         * modules/alloca-opt (Makefile.am): Remove explicit dependency on
12698         $(ALLOCA_H), redundant through BUILT_SOURCES.
12699         * modules/argz (Makefile.am): Remove explicit dependency on $(ARGZ_H),
12700         redundant through BUILT_SOURCES.
12701         * modules/byteswap (Makefile.am): Remove explicit dependency on
12702         $(BYTESWAP_H), redundant through BUILT_SOURCES.
12703         * modules/fnmatch (Makefile.am): Remove explicit dependency on
12704         $(FNMATCH_H), redundant through BUILT_SOURCES.
12705         * modules/getopt (Makefile.am): Remove explicit dependency on
12706         $(GETOPT_H), redundant through BUILT_SOURCES.
12707         * modules/glob (Makefile.am): Remove explicit dependency on $(GLOB_H),
12708         redundant through BUILT_SOURCES.
12709         * modules/poll (Makefile.am): Remove explicit dependency on $(POLL_H),
12710         redundant through BUILT_SOURCES.
12711         * modules/stdbool (Makefile.am): Remove explicit dependency on
12712         $(STDBOOL_H), redundant through BUILT_SOURCES.
12713         * modules/stdint (Makefile.am): Remove explicit dependency on
12714         $(STDINT_H), redundant through BUILT_SOURCES.
12715         * modules/sysexits (Makefile.am): Add $(SYSEXITS_H) to BUILT_SOURCES.
12716         Remove explicit dependency on $(SYSEXITS_H).
12717         Reported by Alexandre Duret-Lutz <adl@src.lip6.fr>.
12718
12719 2005-07-18  Simon Josefsson  <jas@extundo.com>
12720
12721         * lib/check-version.c (check_version): Accept identical versions too.
12722
12723 2005-07-18  Bruno Haible  <bruno@clisp.org>
12724
12725         * modules/lock: New file.
12726         * MODULES.html.sh (Multithreading): New section.
12727
12728 2005-07-18  Bruno Haible  <bruno@clisp.org>
12729
12730         * m4/lock.m4: New file, from GNU gettext.
12731
12732 2005-07-18  Bruno Haible  <bruno@clisp.org>
12733
12734         * lib/lock.h: New file, from GNU gettext.
12735         * lib/lock.c: New file, from GNU gettext.
12736
12737 2005-07-18  Bruno Haible  <bruno@clisp.org>
12738
12739         * lib/lock.h (gl_once_t): New type.
12740         (gl_once_define, gl_once): New macros.
12741         * lib/lock.c (fresh_once): New variable.
12742         (glthread_once, glthread_once_call, glthread_once_singlethreaded): New
12743         functions.
12744
12745 2005-07-16  Simon Josefsson  <jas@extundo.com>
12746
12747         * doc/gnulib.texi (Library version handling): Add ELF symbol collision
12748         workaround, suggested by Bruno.
12749
12750 2005-07-15  Paul Eggert  <eggert@cs.ucla.edu>
12751
12752         * modules/xalloc (Depends-on): Add xalloc-die.
12753         * modules/xvasprintf (Depends-on): Add xalloc-die.
12754
12755 2005-07-15  Paul Eggert  <eggert@cs.ucla.edu>
12756
12757         * lib/quotearg.c: Add translator comment suggested by Bruno Haible,
12758         with a minor change.
12759
12760 2005-07-15  Bruno Haible  <bruno@clisp.org>
12761
12762         * m4/poll.m4 (gl_FUNC_POLL): Check against MacOS X 10.4 poll() bug.
12763         When using lib/poll.c, define poll as rpl_poll.
12764
12765 2005-07-14  Paul Eggert  <eggert@cs.ucla.edu>
12766
12767         * modules/argp (Depends-on): Remove unlocked-io.
12768
12769 2005-07-14  Derek Price  <derek@ximbiot.com>
12770
12771         * m4/glob.m4 (gl_GLOB): Cache glob interface check result.  Add check
12772         for glob symlink bug.
12773
12774 2005-07-14  Bruno Haible  <bruno@clisp.org>
12775
12776         * m4/argp.m4 (gl_ARGP): Remove invocation of gl_FUNC_GLIBC_UNLOCKED_IO.
12777         Instead, test for *_unlocked function declarations directly.
12778
12779 2005-07-11  Simon Josefsson  <jas@extundo.com>
12780
12781         * modules/size_max: New file.
12782
12783         * modules/xsize: Depend on size_max module for size_max.m4.
12784
12785 2005-07-11  Simon Josefsson  <jas@extundo.com>
12786
12787         * lib/size_max.h: New file.
12788
12789 2005-07-11  Paul Eggert  <eggert@cs.ucla.edu>
12790
12791         * lib/version-etc-fsf.c (version_etc_copyright): Parameterize the
12792         copyright symbol and the year.
12793         * lib/version-etc.c (COPYRIGHT_YEAR): New constant.
12794         (version_etc_va): Use parameterized copyright notice.
12795         Reword to conform to the current GNU coding standards.
12796
12797 2005-07-11  Karl Berry  <karl@gnu.org>
12798
12799         * doc/gnulib.texi (Quoting): new node.
12800         (Initial import): more info, from Patrice.
12801
12802 2005-07-11  Bruno Haible  <bruno@clisp.org>
12803
12804         * gnulib-tool (func_usage): Document option --avoid.
12805         (Command line options): Handle --avoid.
12806         (func_acceptable): New function.
12807         (func_modules_transitive_closure): Use it.
12808
12809 2005-07-11  Bruno Haible  <bruno@clisp.org>
12810
12811         * MODULES.html.sh: Use shortcut URLs to the www.opengroup.org site.
12812         Reported by Jim Meyering.
12813
12814 2005-07-10  Bruno Haible  <bruno@clisp.org>
12815
12816         * m4/size_max.m4 (gl_SIZE_MAX): Cast ~(size_t)0 back to size_t.
12817         Needed when size_t is smaller than 'unsigned int'.
12818         Reported by Paul Eggert.
12819
12820 2005-07-09  Sergey Poznyakoff  <gray@gnu.org.ua>
12821
12822         * modules/argp (Depends-on): Add unlocked-io
12823
12824 2005-07-09  Sergey Poznyakoff  <gray@gnu.org.ua>
12825
12826         * lib/argp-namefrob.h: Include unlocked-io.h. Removed unnecessary
12827         block of defines.
12828
12829 2005-07-08  Paul Eggert  <eggert@cs.ucla.edu>
12830
12831         * config/srclist.txt: Comment out regcomp.c, since we have a porting
12832         fix now.
12833
12834 2005-07-08  Eric Blake  <ebb9@byu.net>  (tiny change)
12835         and Paul Eggert  <eggert@cs.ucla.edu>
12836
12837         * lib/regcomp.c (init_dfa, build_range_exp): Store __btowc value
12838         in wint_t, not wchar_t.  Remove now-unnecessary cast.
12839
12840 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
12841
12842         * modules/regex (Files): Add lib/regex_internal.c,
12843         lib/regex_internal.h, lib/regexec.c, lib/regcomp.c, m4/codeset.m4.
12844         (Depends-on): Add extensions.
12845         (Makefile.am): Remove lib_SOURCES; now done by m4 code.
12846
12847 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
12848
12849         * m4/backupfile.m4 (gl_BACKUPFILE): Use AC_CHECK_FUNCS_ONCE on
12850         pathconf.
12851         * m4/same.m4 (gl_SAME): Likewise.
12852         Require AC_SYS_LONG_FILE_NAMES; bug reported by Gerrit P. Haase.
12853
12854         * m4/regex.m4: Adjust to new libc regex implementation.
12855         (gl_INCLUDED_REGEX): Add AC_LIBSOURCES for
12856         all the .c and .h parts of (the new) regex.
12857         Quote the m4 stuff better.
12858         Check for RE_ICASE bug of old gnulib.
12859         Check for REG_STARTEND of recent libc.
12860         Rename local variables from jm_* to gl_*.
12861         Quote operand of "test -f".
12862         Say "recent enough" version of libc, not "version 2".
12863         (gl_PREREQ_REGEX): Remove AC_FUNC_ALLOCA, since alloca is a
12864         prerequisite module.  Remove AC_HEADER_STDC; no longer needed.
12865         Check for locale.h, isblank, mbrtowc, wcrtomb, wcscoll.
12866         Remove check for btowc, isascii.
12867         Require AM_LANGINFO_CODESET.
12868
12869 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
12870
12871         * lib/regex.c, regex.h: Sync from libc.
12872         * lib/regcomp.c, lib/regexec_internal.c, lib/regex_internal.h:
12873         * lib/regexec.c:
12874         New files, synced from libc, except that regex_internal.h
12875         currently has a small porting fix.
12876
12877 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
12878
12879         * config/srclist.txt: Add regcomp.c, regex.c, regex.h,
12880         regex_internal.c, regexec.c.
12881         Add regex_internal.h too, but as a comment, since the libc version
12882         is currently broken in gnulib mode.
12883
12884 2005-07-06  Paul Eggert  <eggert@cs.ucla.edu>
12885
12886         Support programs like Emacs that use gnulib but not gettext.
12887         * MODULES.html.sh (Internationalization functions): Add gettext-h.
12888         * modules/gettext-h: New file.
12889         * modules/gettext (Files): Remove lib/gettext.h.
12890         (Depends-on): Add gettext-h.
12891         (Makefile.am): Remove lib_SOURCES.
12892         * modules/argmatch, modules/c-stack, modules/closeout:
12893         * modules/copy-file, modules/csharpcomp, modules/csharpexec:
12894         * modules/execute, modules/file-type, modules/getaddrinfo:
12895         * modules/getopt, modules/human, modules/javacomp:
12896         * modules/javaexec, modules/mkdir-p, modules/obstack:
12897         * modules/openat, modules/pagealign_alloc, modules/pipe:
12898         * modules/quotearg, modules/regex, modules/rpmatch:
12899         * modules/unicodeio, modules/userspec, modules/version-etc:
12900         * modules/wait-process, modules/xalloc-die, modules/xmemcoll:
12901         * modules/xsetenv:
12902         Depend on gettext-h, not gettext.
12903
12904 2005-07-05  Paul Eggert  <eggert@cs.ucla.edu>
12905
12906         * gnulib-tool (func_import): Add support for 'public domain' license.
12907         * modules/alloca, modules/atexit, modules/memmove:
12908         Now public domain, not GPL.
12909         * modules/dup2, modules/getpagesize, modules/malloc, modules/memset:
12910         * modules/realloc, modules/strerror, modules/strtod:
12911         Now LGPL, not GPL.
12912
12913 2005-07-05  Bruno Haible  <bruno@clisp.org>
12914
12915         * m4/mbrtowc.m4 (gl_FUNC_MBRTOWC): Upgrade to version from current
12916         autoconf CVS. Needed for mingw.
12917
12918 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
12919
12920         Remove the dependency of the strftime module on the tzset module.
12921         * modules/strftime (Depends-on): Remove dependency on tzset.
12922
12923 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
12924
12925         Remove the dependency of the strftime module on the tzset module.
12926         * m4/strftime.m4 (gl_FUNC_STRFTIME): Don't require
12927         gl_FUNC_TZSET_CLOBBER.
12928
12929 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
12930
12931         Remove the dependency of the strftime module on the tzset module.
12932         * lib/strftime.c (my_strftime)
12933         [! defined _LIBC && ! HAVE_RUN_TZSET_TEST]:
12934         Copy the input structure, to work around some of the bug with
12935         Solaris 2.5.1 and Solaris 2.6.  If you still care about these old
12936         Solaris releases, you should also use the tzset module, but we won't
12937         require it as a dependency any more since we don't want LGPLed code
12938         to depend on GPLed code.
12939
12940 2005-07-02  Jim Meyering  <jim@meyering.net>
12941
12942         * m4/chown.m4, cloexec.m4, dup2.m4, fsusage.m4:
12943         * m4/getcwd-path-max.m4, getcwd.m4, mkstemp.m4, mountlist.m4:
12944         * m4/pagealign_alloc.m4, save-cwd.m4, unistd-safer.m4:
12945         Don't check for fcntl.h, and don't test for HAVE_FCNTL_H.
12946
12947 2005-07-02  Jim Meyering  <jim@meyering.net>
12948
12949         * lib/backupfile.c (backup_args): Change a `0' to NULL.
12950
12951 2005-07-01  Paul Eggert  <eggert@cs.ucla.edu>
12952
12953         * lib/xnanosleep.c: Include timespec.h, since OpenBSD 3.4 <time.h>
12954         declares only 'struct timespec;' (!).
12955
12956 2005-07-01  Jim Meyering  <jim@meyering.net>
12957
12958         * lib/chown.c, cloexec.c, dup-safer.c, dup2.c, fsusage.c, getcwd.c:
12959         * lib/getloadavg.c, mountlist.c, openat.h, pagealign_alloc.c:
12960         * lib/save-cwd.c, tempname.c:
12961         Assume HAVE_FCNTL_H (i.e., include <fcntl.h> unconditionally,
12962         and don't include <sys/file.h>).
12963
12964 2005-06-29  Jim Meyering  <jim@meyering.net>
12965
12966         * lib/mkdir-p.c (make_dir_parents): Don't apply sizeof to a hard-coded
12967         type name.  Use the variable name instead.
12968         * lib/idcache.c (getuser, getuidbyname, getgroup, getgidbyname):
12969         Likewise.
12970
12971 2005-06-28  Simon Josefsson  <jas@extundo.com>
12972
12973         * modules/check-version (Files): Add check-version.m4.
12974
12975 2005-06-28  Simon Josefsson  <jas@extundo.com>
12976
12977         * m4/check-version.m4: New file, suggested by Jim Meyering
12978         <jim@meyering.net>.
12979
12980 2005-06-28  Simon Josefsson  <jas@extundo.com>
12981
12982         * lib/check-version.h, lib/check-version.c: New files.
12983
12984 2005-06-28  Simon Josefsson  <jas@extundo.com>
12985
12986         * lib/base64.c (base64_encode): Indent.  Rename 'b64' to avoid
12987         collision with global variable.  Better indentation.  Don't
12988         increment buffer pointer beyond buffer end.  Based on comments
12989         from Paul Eggert <eggert@cs.ucla.edu>.
12990
12991         * lib/base64.h: Indent.
12992
12993 2005-06-28  Simon Josefsson  <jas@extundo.com>
12994
12995         * doc/gnulib.texi (Library version handling): New section.
12996
12997 2005-06-28  Jim Meyering  <jim@meyering.net>
12998
12999         * check-module (find_included_lib_files): Hard-code another
13000         pair of exceptions: fts.c includes fts-cycle.c and unistd-safer.h
13001         but modules/fts-lgpl (correctly) does not list those files.
13002
13003         * modules/canonicalize (Files): Add lib/pathmax.h.
13004
13005 2005-06-25  Simon Josefsson  <jas@extundo.com>
13006
13007         * modules/check-version: New file.
13008
13009 2005-06-24  Paul Eggert  <eggert@cs.ucla.edu>
13010
13011         * lib/canon-host.c (canon-host): Append trailing "," to 0 in
13012         initializer of struct addrinfo, as an indication that we don't
13013         care how many members the structure has.
13014
13015 2005-06-24  Derek Price  <derek@ximbiot.com>
13016         and Bruno Haible  <bruno@clisp.org>
13017
13018         Remove stat module & update lstat.
13019         * m4/lstat.m4 (gl_FUNC_LSTAT): Drop AC_FUNC_LSTAT in favor of
13020         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
13021         * m4/stat.m4: Remove this file.
13022
13023 2005-06-24  Derek Price  <derek@ximbiot.com>
13024         and Bruno Haible  <bruno@clisp.org>
13025
13026         Remove stat module & update lstat.
13027         * lib/stat.c: Remove this file...
13028         (slash_aware_lstat): ...moving this content and its support...
13029         * lib/lstat.c (rpl_lstat): ...into here.
13030         * lib/lstat.h: New file.
13031
13032 2005-06-24  Derek Price  <derek@ximbiot.com>
13033         and Bruno Haible  <bruno@clisp.org>
13034
13035         Remove stat module & update lstat.
13036         * config/srclist.txt (libc sources): Remove stat.
13037
13038 2005-06-24  Derek Price  <derek@ximbiot.com>
13039         and Bruno Haible  <bruno@clisp.org>
13040
13041         Remove stat module & update lstat.
13042         * MODULES.html.sh (stat): Remove.
13043         * MODULES.html: Regenerated.
13044         * modules/lstat (Description): Correct function name.
13045         (Files): Add "lstat.h".
13046         (Depends-on): Remove stat, add xalloc, stat-macros.
13047         * modules/stat: Remove this file.
13048         (Include): Add "lstat.h", remove <sys/stat.h>.
13049
13050 2005-06-23  Paul Eggert  <eggert@cs.ucla.edu>
13051
13052         * lib/mktime.c: Include <string.h> even if !DEBUG.  (From glibc.)
13053         (ranged_convert): Don't save conversion in a temporary struct.
13054         This causes a warning with GCC 4.0.0, and anyway in the typical
13055         case it's not worth the extra 100 bytes or so of code.
13056         (ranged_convert, __mktime_internal): When calling a function via a
13057         pointer P, use P () rather than (*P) (), as we now assume C89 or
13058         better.
13059
13060 2005-06-22  Paul Eggert  <eggert@cs.ucla.edu>
13061
13062         * lib/readutmp.c (desirable_utmp_entry): Fix bug where "who -b" and
13063         "who -r" failed to give output.  Problem reported by Tim Waugh.
13064
13065         * lib/xmalloc.c (HAVE_GNU_CALLOC): New constant.
13066         (xcalloc): Use it to avoid needless tests.
13067         Problem reported by Jim Meyering.
13068
13069 2005-06-20  Derek Price  <derek@ximbiot.com>
13070
13071         * m4/bison.m4: Note that precious decls of YACC & YFLAGS will be
13072         unnecessary for Autoconfs > 2.59c.
13073
13074 2005-06-16  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
13075
13076         * lib/argp.h (__option_is_short): Check upper limit of
13077         __key. Isprint() requires its argument to have the value
13078         of an unsigned char or EOF.
13079
13080 2005-06-16  Jim Meyering  <jim@meyering.net>
13081
13082         * lib/calloc.c (rpl_calloc): Allocate a 1-byte buffer (not 1xS or Nx1)
13083         when either N or S is zero.
13084
13085 2005-06-16  Derek Price  <derek@ximbiot.com>
13086
13087         * m4/bison.m4: Declare YACC & YFLAGS precious.
13088
13089 2005-06-10  Paul Eggert  <eggert@cs.ucla.edu>
13090
13091         * lib/fnmatch.c (fnmatch): If there is an encoding error in a
13092         multibyte string or pattern, fall back on unibyte matching.
13093         Problem reported by James Youngman.
13094
13095 2005-06-08  Bruno Haible  <bruno@clisp.org>
13096
13097         * modules/csharpcomp: New file.
13098         * MODULES.html.sh (C#): Add csharpcomp.
13099
13100 2005-06-08  Bruno Haible  <bruno@clisp.org>
13101
13102         * m4/csharpcomp.m4: New file, from GNU gettext.
13103
13104 2005-06-08  Bruno Haible  <bruno@clisp.org>
13105
13106         * lib/csharpcomp.h: New file, from GNU gettext.
13107         * lib/csharpcomp.c: New file, from GNU gettext.
13108         * lib/csharpcomp.sh.in: New file, from GNU gettext.
13109
13110 2005-06-08  Bruno Haible  <bruno@clisp.org>
13111
13112         * lib/binary-io.h (fileno): Undefine before defining it. Avoids a gcc
13113         warning on mingw.
13114
13115 2005-06-07  Derek Price  <derek@ximbiot.com>
13116
13117         Sync from CVS.
13118         * lib/glob_.h: Indent nested #ifdef.
13119
13120 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
13121
13122         Sync from coreutils.
13123         Use "file name" when talking about file names, instead of "filename"
13124         or "path", as per the GNU coding standards.
13125         * lib/mkdir-p.c: Renamed from makepath.c.
13126         (make_dir_parents): Renamed from make_path.  All callers changed.
13127         * lib/mkdir-p.h: Likewise.  All includers changed.
13128         * lib/filenamecat.c: Renamed from path-concat.c.
13129         (file_name_concat): Renamed from path_concat.  All callers changed.
13130         [TEST_FILE_NAME_CONCAT]: Renamed from TEST_PATH_CONCAT.
13131         * lib/filenamecat.h: Likewise.  All includers changed.
13132         * lib/acl.c: Don't use "path" or "filename" to mean "file name"
13133         in comments or local variable names.
13134         * lib/basename.c: Likewise.
13135         * lib/canonicalize.c, canonicalize.h: Likewise.
13136         * lib/dirname.c, dirname.h: Likewise.
13137         * lib/euidaccess.c: Likewise.
13138         * lib/exclude.c: Likewise
13139         * lib/fnmatch_.h, fnmatch_loop.c: Likewise.
13140         * lib/fsusage.c, fsuage.h: Likewise.
13141         * lib/fts.c, fts_.h: Likewise.
13142         * lib/getcwd.c: Likewise.
13143         * lib/getloadavg.c: Likewise.
13144         * lib/mkstemp.c: Likewise.
13145         * lib/mountlist.c, mountlist.h: Likewise.
13146         * lib/openat.c, openat.h: Likewise.
13147         * lib/readlink-stub.c: Likewise.
13148         * lib/readutmp.c, readutmp.h: Likewise.
13149         * lib/rename.c: Likewise.
13150         * lib/rmdir.c: Likewise.
13151         * lib/same.c: Likewise.
13152         * lib/savedir.c: Likewise.
13153         * lib/stripslash.c: Likewise.
13154         * lib/tempname.c: Likewise.
13155         * lib/xreadlink.c: Likewise.
13156         * lib/exclude.c (excluded_file_name): Renamed from excluded_filename.
13157         All uses changed.
13158         * lib/exclude.h: Likewise.
13159
13160         * lib/euidaccess.c (getuid, getgid, getuid, getegid)
13161         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
13162         * lib/idcache.c (getpwuid, getpwnam, getgrgid, getgrnam)
13163         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
13164         * lib/pathmax.h: Include <limits.h> unconditionally, since other
13165         files have been getting away with it for years (MORE/BSD 4.3
13166         is extinct now).
13167         * lib/userspec.c (getpwnam, getgrnam, getgrgid)
13168         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
13169
13170         * lib/pathmax.h (_POSIX_PATH_MAX) [!defined _POSIX_PATH_MAX]:
13171         Define to 256, not 255, as per modern POSIX.
13172
13173 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
13174
13175         Sync from coreutils.
13176         Use "file name" when talking about file names, instead of "filename"
13177         or "path", as per the GNU coding standards.
13178         * MODULES.html.sh: mkdir-p renamed from makepath.
13179         filenamecat renamed from path-concat.
13180         * modules/filenamecat: Renamed from modules/path-concat.
13181         (Files): filenamecat.h and filenamecat.c renamed from
13182         path-concat.h and path-concat.c.
13183         (configure.ac): gl_FILE_NAME_CONCAT, not gl_PATH_CONCAT.
13184         (Include): filenamecat.h, not path-concat.h.
13185         * modules/mkdir-p: Renamed from modules/makepath.
13186         (Files): mkdir-p.h and mkdir-p.c renamed from makepath.h and
13187         makepath.c.
13188         (configure.ac): gl_MKDIR_PARENTS, not gl_MAKEPATH.
13189         (Include): mkdir-p.h, not makepath.h.
13190
13191 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
13192
13193         Sync from coreutils.
13194         * m4/mkdir-p.m4: Renamed from makepath.m4.
13195         (gl_MKDIR_PARENTS): Renamed from gl_MAKEPATH.  All uses changed.
13196         Rename files from makepath.c to mkdir-p.c, and from
13197         makepath.h to mkdir-p.h.
13198         * m4/filenamecat.m4: Renamed from path-concat.m4.
13199         (gl_FILE_NAME_CONCAT): Renamed from gl_PATH_CONCAT.  All uses changed.
13200         Rename files from path-concat.c to filenamecat.c,
13201         and from path-concat.h to filenamecat.h.
13202         * m4/getcwd-path-max.m4: Don't use "path" or "filename" to mean
13203         "file name" in local variables or comments.
13204         * m4/rename.m4: Likewise.
13205
13206 2005-06-01  Bruno Haible  <bruno@clisp.org>
13207
13208         * modules/csharpexec: New file.
13209         * MODULES.html.sh (C#): New section.
13210
13211 2005-06-01  Bruno Haible  <bruno@clisp.org>
13212
13213         * m4/csharp.m4: New file, from GNU gettext.
13214         * m4/csharpexec.m4: New file, from GNU gettext.
13215
13216 2005-06-01  Bruno Haible  <bruno@clisp.org>
13217
13218         * lib/csharpexec.h: New file, from GNU gettext.
13219         * lib/csharpexec.c: New file, from GNU gettext.
13220         * lib/csharpexec.sh.in: New file, from GNU gettext.
13221
13222 2005-05-31  Derek Price  <derek@ximbiot.com>
13223             Paul Eggert  <eggert@cs.ucla.edu>
13224
13225         Sync from cvs.
13226         * m4/glob.m4: s/MISSING_SYS_CDEFS_H/_SYS_CDEFS_H/ and comment.
13227
13228 2005-05-31  Derek Price  <derek@ximbiot.com>
13229             Paul Eggert  <eggert@cs.ucla.edu>
13230
13231         Sync from cvs.
13232         * lib/glob_.h: s/MISSING_SYS_CDEFS_H/_SYS_CDEFS_H/ and comment.
13233
13234 2005-05-29  Derek Price  <derek@ximbiot.com>
13235
13236         * config/srclist.txt (glob_.h, glob.c): Add these files.
13237
13238 2005-05-29  Derek Price  <derek@ximbiot.com>
13239
13240         * MODULES.html.sh: Add glob to Enhanced POSIX.2001 section.
13241         * modules/glob: New file.
13242         * modules/getlogin_r: Add link to POSIX spec in description.
13243
13244 2005-05-29  Derek Price  <derek@ximbiot.com>
13245             Paul Eggert  <eggert@cs.ucla.edu>
13246
13247         * m4/glob.m4: New file.
13248
13249 2005-05-29  Derek Price  <derek@ximbiot.com>
13250             Paul Eggert  <eggert@cs.ucla.edu>
13251
13252         * lib/glob_.h, lib/glob.c: New files.
13253
13254 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
13255
13256         * modules/fts (Files): Remove m4/inttypes-pri.m4.
13257         * modules/fts-lgpl (Depends-on): Remove gettext.
13258
13259 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
13260
13261         * m4/fts.m4 (gl_FUNC_FTS_CORE): Don't check for inttypes.h or stdint.h,
13262         and don't require gt_INTTYPES_PRI.
13263
13264 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
13265
13266         * lib/getlogin_r.c (getlogin_r): Don't set errno to 0 on return.
13267
13268         * lib/fts.c: Don't worry about debugging on pre-C99-compatible hosts;
13269         the configuration hassle isn't worth it.
13270         Include inttypes.h and stdint.h unconditionally if FTS_DEBUG.
13271         (LONGEST_MODIFIER, PRIuMAX): Remove.
13272
13273 2005-05-27  Bruno Haible  <bruno@clisp.org>
13274
13275         * lib/getlogin_r.h: Remove second include of <stddef.h>.
13276
13277 2005-05-26  Paul Eggert  <eggert@cs.ucla.edu>
13278
13279         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Define
13280         _POSIX_PTHREAD_SEMANTICS for Solaris.
13281
13282 2005-05-25  Derek Price  <derek@ximbiot.com>
13283
13284         * MODULES.html.sh: Add getlogin_r to POSIX.2001 support section.
13285
13286 2005-05-25  Derek Price  <derek@ximbiot.com>
13287             Paul Eggert  <eggert@cs.ucla.edu>
13288
13289         * modules/getlogin_r, m4/getlogin_r.m4: New files.
13290         * lib/getlogin_r.c, getlogin_r.h: New files.
13291
13292 2005-05-25  Bruno Haible  <bruno@clisp.org>
13293             Derek Price  <derek@ximbiot.com>
13294
13295         * lib/getlogin_r.h: Simplify API documentation.
13296
13297 2005-05-23  Derek Price  <derek@ximbiot.com>
13298
13299         * modules/minmax (Files): Add m4/minmax.m4.
13300         (configure.ac): Add gl_MINMAX.
13301
13302 2005-05-22  Paul Eggert  <eggert@cs.ucla.edu>
13303
13304         * lib/fts.c (fd_safer) [_LGPL_PACKAGE]: New static function,
13305         so that unistd-safer.h (GPL'ed code) need not be included.
13306
13307 2005-05-22  Bruno Haible  <bruno@clisp.org>
13308
13309         * m4/minmax.m4: New file.
13310         Based on a patch by Derek Price <derek@ximbiot.com>.
13311
13312 2005-05-22  Bruno Haible  <bruno@clisp.org>
13313
13314         * lib/stdint_.h (_STDINT_H_HAVE_INT64): New macro. Use it in #ifdefs.
13315         (INT64_MIN): Fix definition.
13316         Suggested by Paul Eggert <eggert@cs.ucla.edu>.
13317
13318         * lib/stdint_.h (_STDINT_H_NEED_SIGNED_INT_TYPES): Renamed from
13319         NEED_SIGNED_INT_TYPES.
13320
13321         * lib/stdint_.h (_STDINT_H_HAVE_SYSTEM_INTTYPES): Renamed from
13322         HAVE_SYSTEM_INTTYPES.
13323
13324 2005-05-22  Bruno Haible  <bruno@clisp.org>
13325
13326         * lib/minmax.h: Include <limits.h> only when it defines MIN, MAX.
13327         Also include <sys/param.h> if it defines MIN, MAX.
13328         Based on a patch by Derek Price <derek@ximbiot.com>.
13329
13330 2005-05-21  Jim Meyering  <jim@meyering.net>
13331
13332         * modules/fts (Files): Add m4/inttypes-pri.m4.
13333         (Depends-on): Add lstat and remove gettext.  Alphabetize.
13334
13335 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
13336
13337         New fts module.
13338         * lib/fts.c: Don't include "cycle-check.h" or "hash.h".
13339         (setup_dir, free_dir): New functions.
13340         (enter_dir, leave_dir): Define trivial
13341         alternatives of _LGPL_PACKAGE.  Move to fts-cycle.c if !_LGPL_PACKAGE.
13342         (HT_INITIAL_SIZE, ENTER_DIR): Remove.  All uses removed.
13343         (LEAVE_DIR): Fix typo: pass Fts and Ent to leave_dir.
13344         (struct Active_dir, AD_compare, AD_hash, enter_dir, leave_dir):
13345         Move to fts-cycle.c.
13346         (fts_open): Use setup_dir.
13347         (fts_close): Use free_dir.
13348         (fts_read): Have just one copy of the ENTER_DIR code rather than three.
13349         This adds a label and some gotos, but the alternatives were messier.
13350         Check for memory allocation failure when entering a dir.
13351         (fts_stat) [_LGPL_PACKAGE]: Bring back glibc cycle detection code.
13352         * lib/fts_.h (_LGPL_PACKAGE) [defined _LIBC]: New macro.
13353         (FTS): New member fts_cycle, that is a union that contains the
13354         old active_dir_ht and cycle_state.  All uses changed to mention
13355         fts_cycle.ht and fts_cycle.state.
13356         * lib/fts-cycle.c: New file, containing GPL'ed code migrated out of
13357         fts.c, with the following changes:
13358         (setup_dir, free_dir): New functions.
13359         (enter_dir): Now returns bool.  Return true if successful, false
13360         if memory exhausted.  All callers changed.
13361         Do not bother partly cleaning up on
13362         memory allocation failure; that is free_dir's job.
13363         However, free ad if hash_insert fails, to avoid memory leak.
13364         (enter_dir, leave_dir): Accommodate change to FTS by inspecting
13365         fts->fts_options to see which union member to use.
13366
13367 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
13368
13369         * m4/fts.m4 (gl_FUNC_FTS_CORE): Renamed from gl_FUNC_FTS.
13370         (gl_FUNC_FTS, gl_FUNC_FTS_LGPL): New macros.
13371
13372 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
13373
13374         * MODULES.html.sh (File system functions): Add fts, fts-lgpl.
13375
13376 2005-05-20  Jim Meyering  <jim@meyering.net>
13377
13378         * lib/unlinkdir.h (cannot_unlink_dir) [UNLINK_CANNOT_UNLINK_DIR]:
13379         Now a macro, to pacify GCC.
13380
13381 2005-05-20  Eric Blake  <ebb9@byu.net>  (tiny change)
13382
13383         * m4/chown.m4 (gl_FUNC_CHOWN): Correct sense of test for honoring IDs
13384         of -1.
13385
13386 2005-05-20  Eric Blake  <ebb9@byu.net>  (tiny change)
13387
13388         * lib/chown.c (rpl_chown): Return -1 on failure.
13389
13390 2005-05-18  Paul Eggert  <eggert@cs.ucla.edu>
13391
13392         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME]):
13393         Don't check for stddef.h.
13394         * m4/fts.m4 (gl_FUNC_FTS): Don't require AC_HEADER_STDC, as we
13395         don't use its results.
13396         Don't check for fcntl.h, stddef.h, stdlib.h, string.h, unistd.h,
13397         since we include them unconditionally.  Don't require
13398         AM_STDBOOL_H, since stdbool is a prerequisite.
13399         Don't require AC_C_CONST, AC_TYPE_SIZE_T or check for ptrdiff_t
13400         since we assume C89 or better.
13401         Don't require AC_FUNC_CLOSEDIR_VOID, AC_FUNC_LSTAT, or AC_FUNC_STAT,
13402         as we don't use their results.
13403         Don't check for fchdir, memmove, memset, strrchr, as we use
13404         them unconditionally.
13405         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER): Don't define
13406         GETTIMEOFDAY_CLOBBERS_LOCALTIME_BUFFER, since nobody uses it.
13407
13408 2005-05-18  Paul Eggert  <eggert@cs.ucla.edu>
13409
13410         * lib/canonicalize.c: Include canonicalize.h first, to test interface.
13411         Include <stddef.h> unconditionally, since we assume C89 now.
13412         All uses of PTR_INT_TYPE replaced by ptrdiff_t.
13413         * lib/fts.c: Include fts_.h first, to check interface.
13414         Do not include intprops.h; no longer needed.
13415         Include cycle-check.h and hash.h, since fts_.h no longer does.
13416         Remove unnecessary casts of closedir to void.
13417         (fts_build): Use a simpler method (not involving TYPE_SIGNED) to
13418         decide whether to decrement nlinks.
13419         * lib/fts_.h: Do not include hash.h or cycle-check.h; no longer needed.
13420         (FTS): Use struct hash_table * instead of Hash_table, so that
13421         we no longer need to include hash.h here.
13422
13423 2005-05-18  Jim Meyering  <jim@meyering.net>
13424
13425         * modules/dirfd (License): Change to LGPL.  Most of the code
13426         is already in the public domain.
13427
13428 2005-05-18  Jim Meyering  <jim@meyering.net>
13429
13430         * m4/fts.m4 (AC_LIBSOURCES): Add intprops.h to the list.
13431         Reported by Yoann Vandoorselaere.
13432
13433 2005-05-17  Jim Meyering  <jim@meyering.net>
13434
13435         * m4/fts.m4: New file, from coreutils.
13436
13437 2005-05-17  Jim Meyering  <jim@meyering.net>
13438
13439         * lib/fts.c, lib/fts_.h: New files, from coreutils.
13440
13441 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
13442
13443         Sync from coreutils.
13444         * m4/unlinkdir.m4: New file.
13445
13446 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
13447
13448         Sync from coreutils.
13449         * lib/unlinkdir.c, lib/unlinkdir.h: New files.
13450         * lib/gethrxtime.c, lib/gethrxtime.h, lib/getpass.h, lib/mountlist.h,
13451         lib/path-concat.c, lib/regex.h, lib/unlocked-io.h, lib/xtime.h:
13452         White space changes only.
13453         * lib/makepath.c (make_path): Port to hosts where leading "//" is
13454         special.
13455         * lib/yesno.c: Include getline.h, not ctype.h.
13456         (yesno): Don't remove leading white space; POSIX doesn't allow it.
13457         Use getline to remove arbitrary restriction on response length.
13458
13459 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
13460
13461         * config/srclist-update: Spell out "Street" in FSF postal
13462         mail address; this is the style the FSF seems to prefer.
13463
13464         * build-aux/depcomp, build-aux/install-sh, build-aux/mdate-sh,
13465         build-aux/missing, build-aux/mkinstalldirs: Sync from Automake;
13466         this updates FSF postal mail address.
13467
13468         Sync from coreutils.
13469         * modules/unlinkdir: New file.
13470         * modules/yesno (Depends-on): Add getline.
13471         * MODULES.html.sh (File system functions): Add unlinkdir.
13472
13473 2005-05-13  Paul Eggert  <eggert@cs.ucla.edu>
13474
13475         * lib/byteswap_.h, lib/getsubopt.h, lib/iconvme.h, lib/strsep.c,
13476         lib/strsep.h:
13477         Change the initial comment to refer to GPL, not LGPL.
13478         gnulib-tool will change it to LGPL as needed.
13479
13480         * lib/__fpending.c, lib/acl.c, lib/acl.h, lib/alloca_.h, lib/allocsa.c,
13481         lib/allocsa.h, lib/argmatch.c, lib/argmatch.h, lib/argp-ba.c,
13482         lib/argp-eexst.c, lib/argp-fmtstream.c, lib/argp-fmtstream.h,
13483         lib/argp-fs-xinl.c, lib/argp-help.c, lib/argp-namefrob.h,
13484         lib/argp-parse.c, lib/argp-pv.c, lib/argp-pvh.c, lib/argp-xinl.c,
13485         lib/argp.h, lib/argz.c, lib/argz_.h, lib/asnprintf.c, lib/asprintf.c,
13486         lib/atanl.c, lib/backupfile.c, lib/backupfile.h, lib/base64.c,
13487         lib/base64.h, lib/basename.c, lib/binary-io.h, lib/byteswap_.h,
13488         lib/c-ctype.c, lib/c-ctype.h, lib/c-stack.c, lib/c-stack.h,
13489         lib/c-strtod.c, lib/calloc.c, lib/canon-host.c, lib/canonicalize.c,
13490         lib/canonicalize.h, lib/ceill.c, lib/chdir-long.c, lib/chdir-long.h,
13491         lib/chown.c, lib/classpath.c, lib/classpath.h, lib/cloexec.c,
13492         lib/closeout.c, lib/closeout.h, lib/concatpath.c, lib/config.charset,
13493         lib/copy-file.c, lib/copy-file.h, lib/cycle-check.c, lib/cycle-check.h,
13494         lib/diacrit.c, lib/diacrit.h, lib/dirfd.c, lib/dirfd.h, lib/dirname.c,
13495         lib/dirname.h, lib/dummy.c, lib/dup-safer.c, lib/dup2.c, lib/eealloc.h,
13496         lib/error.c, lib/error.h, lib/euidaccess.c, lib/exclude.c,
13497         lib/exclude.h, lib/execute.c, lib/execute.h, lib/exit.h,
13498         lib/exitfail.c, lib/exitfail.h, lib/expl.c, lib/fatal-signal.c,
13499         lib/fatal-signal.h, lib/fd-safer.c, lib/file-type.c, lib/file-type.h,
13500         lib/fileblocks.c, lib/filemode.c, lib/filemode.h, lib/findprog.c,
13501         lib/findprog.h, lib/floorl.c, lib/fnmatch.c, lib/fnmatch_.h,
13502         lib/fnmatch_loop.c, lib/fopen-safer.c, lib/free.c, lib/frexpl.c,
13503         lib/fsusage.c, lib/fsusage.h, lib/full-read.c, lib/full-read.h,
13504         lib/full-write.c, lib/full-write.h, lib/fwriteerror.c,
13505         lib/fwriteerror.h, lib/gai_strerror.c, lib/gcd.c, lib/gcd.h,
13506         lib/getaddrinfo.c, lib/getaddrinfo.h, lib/getcwd.c, lib/getcwd.h,
13507         lib/getdate.h, lib/getdate.y, lib/getdomainname.c, lib/getdomainname.h,
13508         lib/getgroups.c, lib/gethostname.c, lib/gethrxtime.c, lib/gethrxtime.h,
13509         lib/getline.c, lib/getline.h, lib/getloadavg.c, lib/getndelim2.c,
13510         lib/getndelim2.h, lib/getnline.c, lib/getnline.h, lib/getopt.c,
13511         lib/getopt1.c, lib/getopt_.h, lib/getopt_int.h, lib/getpagesize.h,
13512         lib/getpass.c, lib/getpass.h, lib/getsubopt.c, lib/getsubopt.h,
13513         lib/gettext.h, lib/gettime.c, lib/gettimeofday.c, lib/getugroups.c,
13514         lib/getusershell.c, lib/group-member.c, lib/group-member.h,
13515         lib/hard-locale.c, lib/hard-locale.h, lib/hash-pjw.c, lib/hash-pjw.h,
13516         lib/hash.c, lib/hash.h, lib/human.c, lib/human.h, lib/iconvme.c,
13517         lib/iconvme.h, lib/idcache.c, lib/inet_ntop.h, lib/intprops.h,
13518         lib/inttostr.c, lib/inttostr.h, lib/isdir.c, lib/javacomp.c,
13519         lib/javacomp.h, lib/javacomp.sh.in, lib/javaexec.c, lib/javaexec.h,
13520         lib/javaexec.sh.in, lib/lbrkprop.h, lib/lchown.c, lib/ldexpl.c,
13521         lib/linebreak.c, lib/linebreak.h, lib/linebuffer.c, lib/linebuffer.h,
13522         lib/localcharset.c, lib/localcharset.h, lib/logl.c, lib/long-options.c,
13523         lib/long-options.h, lib/lstat.c, lib/makepath.c, lib/makepath.h,
13524         lib/malloc.c, lib/mathl.h, lib/mbswidth.c, lib/mbswidth.h, lib/md5.c,
13525         lib/md5.h, lib/memcasecmp.c, lib/memcasecmp.h, lib/memchr.c,
13526         lib/memcmp.c, lib/memcoll.c, lib/memcoll.h, lib/memcpy.c, lib/memmem.c,
13527         lib/memmem.h, lib/mempcpy.c, lib/mempcpy.h, lib/memrchr.c,
13528         lib/memrchr.h, lib/memset.c, lib/minmax.h, lib/mkdir.c, lib/mkdtemp.c,
13529         lib/mkdtemp.h, lib/mkstemp.c, lib/mktime.c, lib/modechange.c,
13530         lib/modechange.h, lib/mountlist.c, lib/mountlist.h, lib/nanosleep.c,
13531         lib/obstack.c, lib/obstack.h, lib/openat.c, lib/openat.h,
13532         lib/pagealign_alloc.c, lib/pagealign_alloc.h, lib/path-concat.c,
13533         lib/path-concat.h, lib/pathmax.h, lib/pathname.h, lib/physmem.c,
13534         lib/physmem.h, lib/pipe.c, lib/pipe.h, lib/poll.c, lib/poll_.h,
13535         lib/posixtm.c, lib/posixtm.h, lib/posixver.c, lib/printf-args.c,
13536         lib/printf-args.h, lib/printf-parse.c, lib/printf-parse.h,
13537         lib/progname.c, lib/progname.h, lib/progreloc.c, lib/putenv.c,
13538         lib/quote.c, lib/quote.h, lib/quotearg.c, lib/quotearg.h, lib/raise.c,
13539         lib/readlink.c, lib/readtokens.c, lib/readtokens.h, lib/readtokens0.c,
13540         lib/readtokens0.h, lib/readutmp.c, lib/readutmp.h, lib/realloc.c,
13541         lib/ref-add.sin, lib/ref-del.sin, lib/regex.c, lib/regex.h,
13542         lib/rename.c, lib/rmdir.c, lib/rpmatch.c, lib/safe-read.c,
13543         lib/safe-read.h, lib/safe-write.c, lib/safe-write.h, lib/same.c,
13544         lib/same.h, lib/save-cwd.c, lib/save-cwd.h, lib/savedir.c,
13545         lib/savedir.h, lib/setenv.c, lib/setenv.h, lib/settime.c,
13546         lib/sh-quote.c, lib/sh-quote.h, lib/sha1.c, lib/sha1.h, lib/sig2str.c,
13547         lib/sig2str.h, lib/sincosl.c, lib/snprintf.c, lib/snprintf.h,
13548         lib/sqrtl.c, lib/stat-macros.h, lib/stat.c, lib/stdbool_.h,
13549         lib/stdint_.h, lib/stdio-safer.h, lib/stpcpy.c, lib/stpcpy.h,
13550         lib/stpncpy.c, lib/stpncpy.h, lib/strcase.h, lib/strcasecmp.c,
13551         lib/strchrnul.c, lib/strchrnul.h, lib/strcspn.c, lib/strdup.c,
13552         lib/strdup.h, lib/strerror.c, lib/strftime.c, lib/strftime.h,
13553         lib/stripslash.c, lib/strndup.c, lib/strndup.h, lib/strnlen.c,
13554         lib/strpbrk.c, lib/strpbrk.h, lib/strsep.c, lib/strsep.h, lib/strstr.c,
13555         lib/strstr.h, lib/strtod.c, lib/strtoimax.c, lib/strtok_r.c,
13556         lib/strtok_r.h, lib/strtol.c, lib/strtoll.c, lib/strtoul.c,
13557         lib/strtoull.c, lib/strverscmp.c, lib/strverscmp.h, lib/sysexit_.h,
13558         lib/tempname.c, lib/time_r.c, lib/time_r.h, lib/timegm.c, lib/timegm.h,
13559         lib/timespec.h, lib/trigl.c, lib/trigl.h, lib/ucs4-utf16.h,
13560         lib/ucs4-utf8.h, lib/unicodeio.c, lib/unicodeio.h, lib/unistd-safer.h,
13561         lib/unlocked-io.h, lib/unsetenv.c, lib/userspec.c, lib/utf16-ucs4.h,
13562         lib/utf8-ucs4.h, lib/utime.c, lib/utimecmp.c, lib/utimecmp.h,
13563         lib/utimens.c, lib/vasnprintf.c, lib/vasnprintf.h, lib/vasprintf.c,
13564         lib/vasprintf.h, lib/version-etc-fsf.c, lib/version-etc.c,
13565         lib/version-etc.h, lib/vsnprintf.c, lib/vsnprintf.h, lib/w32spawn.h,
13566         lib/wait-process.c, lib/wait-process.h, lib/xalloc-die.c, lib/xalloc.h,
13567         lib/xallocsa.c, lib/xallocsa.h, lib/xasprintf.c, lib/xgetcwd.c,
13568         lib/xgetcwd.h, lib/xgetdomainname.c, lib/xgetdomainname.h,
13569         lib/xgethostname.c, lib/xmalloc.c, lib/xmemcoll.c, lib/xnanosleep.c,
13570         lib/xreadlink.c, lib/xreadlink.h, lib/xsetenv.c, lib/xsetenv.h,
13571         lib/xsize.h, lib/xstrndup.c, lib/xstrndup.h, lib/xstrtod.c,
13572         lib/xstrtod.h, lib/xstrtoimax.c, lib/xstrtol.c, lib/xstrtol.h,
13573         lib/xstrtoumax.c, lib/xtime.h, lib/xvasprintf.c, lib/xvasprintf.h,
13574         lib/yesno.c, lib/yesno.h:
13575         Update FSF postal mail address.
13576
13577 2005-05-13  Paul Eggert  <eggert@cs.ucla.edu>
13578
13579         * MODULES.html.sh, README, gnulib-tool, tests/test-base64.c,
13580         tests/test-memmem.c, tests/test-stpncpy.c:
13581         Update FSF postal mail address.
13582
13583 2005-05-13  Bruno Haible  <bruno@clisp.org>
13584
13585         * lib/stdint_.h (int64_t, uint64_t, int_least64_t, uint_least64_t,
13586         int_fast64_t, uint_fast64_t, intmax_t, uintmax_t, INT64_MIN, INT64_MAX,
13587         UINT64_MAX, INT_LEAST64_MIN, INT_LEAST64_MAX, UINT_LEAST64_MAX,
13588         INT_FAST64_MIN, INT_FAST64_MAX, UINT_FAST64_MAX, INTMAX_MIN,
13589         INTMAX_MAX, UINTMAX_MAX, INT64_C, UINT64_C, INTMAX_C, UINTMAX_C):
13590         Add support for 64-bit integers in the MSVC compiler.
13591
13592 2005-05-12  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
13593
13594         * modules/getdate (Makefile.am): Add getdate.c to EXTRA_DIST
13595
13596 2005-05-12  Eric Blake  <ebb9@byu.net>  (tiny change)
13597
13598         * gnulib-tool (func_import): Sort and uniquify recommended includes.
13599
13600 2005-05-11  Paul Eggert  <eggert@cs.ucla.edu>
13601
13602         * doc/getdate.texi (General date syntax): Don't say that date
13603         date --iso-8601=ns generates acceptable dates; it doesn't yet.
13604         Problem reported by Nic Ferrier.
13605
13606 2005-05-10  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
13607
13608         * lib/getaddrinfo.c: Don't fail when SOCK_STREAM or SOCK_DGRAM are
13609         specified in ai_socktype. Fix invalid ai_protocol
13610         check. ai_protocol is usually set to 0 or depending on
13611         ai_family/ai_socktype to IPPROTO_TCP / IPPROTO_UDP.  Checking for
13612         SOCK_STREAM / SOCK_DGRAM in ai_protocol was invalid.  Set
13613         ai_socktype / ai_protocol in the returned addrinfo structure.
13614
13615 2005-05-10  Simon Josefsson  <jas@extundo.com>
13616
13617         * m4/getaddrinfo.m4: Look in libnsl/libsocket for getaddrinfo, from
13618         Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
13619
13620 2005-05-10  Karl Berry  <karl@gnu.org>
13621
13622         * doc/fdl.texi, gpl.texi, lgpl.texi, COPYING: update FSF address
13623         (from http://www.gnu.org/licenses).
13624         * doc/COPYING.LIB: also rename to COPYING.LESSER.
13625         * doc/COPYING.DOC: remove; per rms, only needed in doc files, so
13626         fdl.texi suffices.
13627
13628 2005-05-10  Karl Berry  <karl@gnu.org>
13629
13630         * config/srclist.txt (COPYING.LESSER): rename from COPYING.LIB.
13631         (COPYING.DOC): remove.
13632
13633         * config/srclist-update: new FSF address.
13634
13635 2005-05-10  Derek Price  <derek@ximbiot.com>
13636
13637         * m4/getopt.m4 (gl_GETOPT): Check for Solaris 10 bug, not decl, when
13638         possible.
13639
13640 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
13641             Bruno Haible  <bruno@clisp.org>
13642
13643         * modules/inet_ntop: New file.
13644         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
13645         inet_ntop.
13646
13647 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
13648             Bruno Haible  <bruno@clisp.org>
13649
13650         * m4/inet_ntop.m4: New file.
13651
13652 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
13653             Bruno Haible  <bruno@clisp.org>
13654
13655         * lib/inet_ntop.h: New file.
13656         * lib/inet_ntop.c: New file, from glibc with modifications.
13657
13658 2005-05-09  Paul Eggert  <eggert@cs.ucla.edu>
13659
13660         * modules/time_r (License): Change to LGPL.
13661         * modules/extensions (License): Change to LGPL.  Actually,
13662         the license is more permissive than that, but currently gnulib-tool
13663         doesn't know how to handle more-permissive licenses.
13664
13665         * modules/stat-macros (Depends-on): Don't depend on stat-macros (!).
13666         Problem reported by Dave Love.
13667
13668 2005-05-08  Jim Meyering  <jim@meyering.net>
13669
13670         * lib/classpath.c (PATH_SEPARATOR): Remove insignificant trailing
13671         blank.
13672
13673 2005-05-06  Paul Eggert  <eggert@cs.ucla.edu>
13674
13675         * modules/argmatch (Depends-on): Add stdbool.
13676         * modules/backupfile (Depends-on): Likewise.
13677         * modules/chdir-long (Depends-on): Likewise.
13678         * modules/closeout (Depends-on): Likewise.
13679         * modules/cycle-check (Depends-on): Likewise.
13680         * modules/dirname (Depends-on): Likewise.
13681         * modules/fnmatch (Depends-on): Likewise.
13682         * modules/fsusage (Depends-on): Likewise.
13683         * modules/fwriteerror (Depends-on): Likewise.
13684         * modules/getcwd (Depends-on): Likewise.
13685         * modules/getloadavg (Depends-on): Likewise.
13686         * modules/hard-locale (Depends-on): Likewise.
13687         * modules/makepath (Depends-on): Likewise.
13688         * modules/mountlist (Depends-on): Likewise.
13689         * modules/nanosleep (Depends-on): Likewise.
13690         * modules/posixtm (Depends-on): Likewise.
13691         * modules/quotearg (Depends-on): Likewise.
13692         * modules/readtokens (Depends-on): Likewise.
13693         * modules/readtokens0 (Depends-on): Likewise.
13694         * modules/readutmp (Depends-on): Likewise.
13695         * modules/save-cwd (Depends-on): Likewise.
13696         * modules/strftime (Depends-on): Likewise.
13697         * modules/userspec (Depends-on): Likewise.
13698         * modules/utimecmp (Depends-on): Likewise.
13699         * modules/xgetcwd (Depends-on): Likewise.
13700         * modules/xnanosleep (Depends-on): Likewise.
13701         * modules/xstrtod (Depends-on): Likewise.
13702         * modules/yesno (Depends-on): Likewise.
13703
13704 2005-05-05  Paul Eggert  <eggert@cs.ucla.edu>
13705
13706         * m4/getopt.m4 (gl_GETOPT): Check for Solaris 10 getopt, and avoid
13707         needless checks.
13708
13709 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
13710
13711         Merge from coreutils.  Among other things,
13712         add bulletproofing for cases where stdin, stdout, or stderr are closed.
13713         * lib/fd-safer.c: New file.
13714         * lib/fcntl-safer.h, open-safer.c: Remove.
13715         * lib/chdir-long.c: Fix comment "fetish" -> "coreutils".
13716         * lib/dup-safer.c: Include unistd-safer.h first.
13717         Don't include errno.h.
13718         (dup_safer) [!defined F_DUPFD]: Let fd_safer do the real work.
13719         * lib/file-type.h: Don't assume invoker included sys/stat.h first.
13720         * lib/file-type.c: Rely on file-type.h change.
13721         * lib/getloadavg.c: Include unistd-safer.h.
13722         (getloadavg): Use safer open.
13723         * lib/getusershell.c: Include "stdio-safer.h".
13724         (getusershell): Use safer fopen.
13725         * lib/long-options.c (long_options): Use NULL rather than 0.
13726         * lib/modechange.h (mode_free): Remove; all callers changed to invoke
13727         'free'.
13728         * lib/modechange.c: Likewise.
13729         xstrtol.h, stdbool.h, stddef.h: Don't include; no longer needed.
13730         (MODE_DONE): New constant.
13731         (struct mode_change): Remove 'next' member.
13732         (make_node_op_equals): New function; like the old one of the
13733         same name, except it allocates an array.
13734         (mode_compile, mode_create_from_ref): Use it.
13735         (mode_compile): Allocate result as an array, not a linked list.
13736         Parse octal string ourself, so that we catch mistakes like "+0".
13737         (mode_adjust): Arg is an array, not a linked list.
13738         * lib/modechange.c: Include stat-macros.h, xalloc.h.
13739         (S_ISDIR, S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR):
13740         (S_IRGRP, S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH, S_IRXWU):
13741         (S_IRWXG, S_IRWXO, CHMOD_MODE_BITS):
13742         Remove.  This is now stat-macros.h's job.
13743         (talloc): Remove.  All callers replaced by xalloc, so that
13744         our invokers don't have to worry about reporting memory failures.
13745         (make_node_op_equals): Remove.
13746         (MODE_ORDINARY_CHAGE, MODE_X_IF_ANY_X, MODE_COPY_EXISTING):
13747         New constants.
13748         (struct mode_change): Moved here from modechange.h.
13749         (mode_append_entry): Remove.
13750         (mode_compile): Remove MASKED_OPS arg, since it encouraged
13751         apps to have incorrect behavior.  Use simpler algorithm for head
13752         and tail.  Don't futz with umask; that's now the job of mode_adjust.
13753         Detect more invalid usages rather than having somewhat-random behavior.
13754         Don't insert an "a=" action, as that leads to incorrect behavior.
13755         (mode_compile, mode_create_from_ref): Return NULL on error instead
13756         of an enum, since now there's only one way to have an error.  All
13757         callers changed.
13758         (mode_adjust): Accept new arg UMASK_VALUE, and interpret it
13759         at the correct time.  Simplify calculation of "+u" and its ilk.
13760         Don't mishandle "+X".
13761         (mode_free): Remove "register" and localize decls.
13762         * lib/modechange.h (MODE_X_IF_ANY_X, MODE_COPY_EXISTING):
13763         (struct mode_change): Move to modechange.c; callers don't
13764         need to see this stuff.
13765         (MODE_MASK_EQUALS, MODE_MASK_PLUS, MODE_MASK_MINUS, MODE_MASK_ALL):
13766         (MODE_INVALID, MODE_MEMORY_EXHAUSTED, MODE_BAD_REFERENCE): Remove.
13767         (mode_change, mode_adjust): Reflect the new signatures noted above.
13768         * lib/nanosleep.c (rpl_nanosleep): Include "timespec.h" before macros
13769         that might redefine system include files.
13770         (siginterrupt) [!HAVE_SIGINTERRUPT]: New macro.
13771         (my_usleep): Use NULL rather than (void *) 0.
13772         (rpl_nanosleep) [!defined SA_NOCLDSTOP]:
13773         Use siginterrupt to specify that system calls should be interrupted.
13774         (rpl_nanosleep): Move initialization of suspended closer to call of
13775         my_usleep.
13776         * lib/readutmp.h (read_utmp): New arg OPTIONS.  All uses changed.
13777         * lib/readutmp.c: Likewise.  Include signal.h, stdbool.h.
13778         (desirable_utmp_entry): New function.
13779         (read_utmp) [defined UTMP_NAME_FUNCTION]: Redo memory allocation
13780         using x2nrealloc, to simplify logic.
13781         (read_utmp) [!defined UTMP_NAME_FUNCTION]: Check for overflow in
13782         size calculation.  Do not assume utmp file is a regular file.
13783         * lib/readutmp.h (UT_PID): Moved here from ../src/who.c.
13784         (READ_UTMP_CHECK_PIDS): New constant.
13785         * lib/save-cwd.c: Include unistd-safer.h.
13786         (save_cwd): Use fd_safer.
13787         * lib/tempname.c (S_ISDIR, S_IRUSR, S_IRUSR, S_IWUSR, S_IXUSR): Remove.
13788         [!_LIBC] Include "stat-macros.h" instead.
13789         * lib/unistd-safer.h (fd_safer): New decl.
13790
13791 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
13792
13793         * modules/getloadavg (Depends-on): Add unistd-safer.
13794         * modules/getusershell (Depends-on): Add stdio-safer.
13795         * modules/lstat (Depends-on): Remove xalloc.
13796         * modules/mkstemp (Depends-on): Add stat-macros.
13797         * modules/modechange (Depends-on): Remove xstrtol.
13798         Add stat-macros, xalloc.
13799         * modules/save-cwd (Depends-on): Add unistd-safer.
13800         * modules/stdio-safer (Makefile.am): Remove lib_SOURCES.
13801         * modules/unistd-safer (Files): Add lib/fd-safer.c
13802         (Makefile.am): Remove lib_SOURCES.
13803
13804         * MODULES.html.sh (Enhancements for POSIX:2001 functions):
13805         Remove fcntl-safer; unistd-safer supersedes it.
13806
13807 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
13808
13809         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Don't require
13810         AC_HEADER_STAT.
13811         * m4/lchown.m4 (gl_FUNC_CHOWN): Likewise.
13812         (gl_PREREQ_CHOWN): Remove.
13813         * m4/lstat.m4 (gl_FUNC_LSTAT): Require AC_FUNC_LSTAT instead of calling
13814         it.  Don't require AC_HEADER_STAT.
13815         (gl_PREREQ_LSTAT): Remove.
13816         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Check stdint.h only once.
13817         Don't require AC_HEADER_STAT.
13818         * m4/rmdir.m4 (gl_FUNC_RMDIR): Don't require AC_HEADER_STAT.
13819         (gl_PREREQ_RMDIR): Remove.
13820         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME): Don't
13821         mention stat-macros.h or AC_HEADER_STAT, since we'll make
13822         the stat-macros module a prerequisite.
13823         * m4/file-type.m4 (gl_FILE_TYPE): Likewise.
13824         * m4/filemode.m4 (gl_FILEMODE): Likewise.
13825         * m4/makepath.m4 (gl_MAKEPATH): Likewise.
13826         * m4/modechange.m4 (gl_MODECHANGE): Likewise.
13827         * m4/clock_time.m4 (gl_CLOCK_TIME): Use gl_ rather than fetish_ for
13828         variable names.
13829         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Renamed from
13830         fetish_FUNC_RMDIR_NOTEMPTY.  All uses changed.  Use gl_ for
13831         variable prefixes.
13832         * m4/fcntl-safer.m4: Remove.
13833         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Use AC_LIBSOURCES and AC_LIBOBJ.
13834         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Likewise.
13835         Invoke gl_PREREQ_FD_SAFER.
13836         (gl_PREREQ_FD_SAFER): New macro.
13837         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): Check for siginterrupt.
13838         * m4/readutmp.m4 (gl_READUTMP): Require AC_C_INLINE.
13839         Use AC_CHECK_HEADERS_ONCE and AC_CHECK_FUNCS_ONCE when possible.
13840         Remove duplicate call to AC_LIBOBJ(readutmp).
13841         (gl_PREREQ_READUTMP): Remove.  All uses inlined.
13842
13843         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Check for message, not for
13844         MAP_ANON.  Problem reported by Moriyoshi Koizumi to bug-cvs.
13845
13846 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
13847
13848         * MODULES.html.sh (Misc): Add byteswap.
13849
13850 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
13851
13852         * modules/getcwd (Depends-on): Add extensions.
13853         * modules/openat (Depends-on): Likewise.
13854
13855 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
13856
13857         * modules/byteswap: New file.
13858
13859 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
13860
13861         * m4/byteswap.m4: New file.
13862
13863 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
13864
13865         * lib/byteswap_.h: New file.
13866
13867 2005-04-25  Karl Berry  <karl@gnu.org>
13868
13869         * m4/gettext.m4: Update from GNU gettext 0.14.4.
13870
13871 2005-04-25  Albert Chin  <china@thewrittenword.com>
13872
13873         * lib/regex.c: Include <stdio.h>, as a workaround to a Compaq Desktop
13874         Toolkit C bug.
13875
13876 2005-04-21  Oskar Liljeblad  <oskar@osk.mine.nu>
13877
13878         * gnulib-tool (Options): Add -s for --symlink/--symbolic.
13879         (func_ln_if_changed) Remove forcibly for no error message
13880         in case file does not exist.
13881
13882 2005-04-19  Simon Josefsson  <jas@extundo.com>
13883
13884         * gnulib-tool (Options): Make --symlink mean --symbolic.
13885
13886 2005-04-18  Oskar Liljeblad  <oskar@osk.mine.nu>
13887
13888         * doc/gnulib.texi (Initial import): Fix.  Mention --aux-dir.
13889
13890 2005-04-16  Simon Josefsson  <jas@extundo.com>
13891
13892         * modules/getpass-gnu (Makefile.am): Don't mention getpass.h.
13893
13894 2005-04-15  Simon Josefsson  <jas@extundo.com>
13895
13896         * m4/getpass.m4 (gl_FUNC_GETPASS): Use AC_LIBSOURCES.
13897
13898 2005-04-15  Simon Josefsson  <jas@extundo.com>
13899
13900         * gnulib-tool: Rename --symlink to --symbolic.
13901
13902 2005-04-15  Oskar Liljeblad  <oskar@osk.mine.nu>
13903
13904         * gnulib-tool: Add -s, --symlink option to gnulib-tool to make
13905         symbolic links to files instead of copying/moving.  Add --aux-dir,
13906         specifying directory relative --dir where auxiliary build tools
13907         are placed.
13908
13909 2005-04-14  Bruno Haible  <bruno@clisp.org>
13910
13911         * modules/allocsa (License): Change to LGPL.
13912         Requested by Yoann Vandoorselaere <yoann@prelude-ids.org>.
13913
13914 2005-04-13  Paul Eggert  <eggert@cs.ucla.edu>
13915
13916         * lib/getdate.y (zone): Allow relunit_snumber after tZONE, so
13917         that "UTC +1 second" continues to work.  Problem reported
13918         by Dmitry V. Levin.
13919         (relunit_snumber): New rule.
13920         (relunit): Use it.
13921
13922 2005-04-12  Paul Eggert  <eggert@cs.ucla.edu>
13923
13924         * lib/getdate.y (universal_time_zone_table): New constant.
13925         (time_zone_table): Remove GMT, UT, UTC entries; they're now in
13926         universal_time_zone_table.
13927         (lookup_zone): Prefer universal_time_zone_table to
13928         local_time_zone_table, so that "GMT" time stamps are allowed in
13929         London during the summer.  Problem reported by Ian Abbott.
13930
13931 2005-04-12  Jim Meyering  <jim@meyering.net>
13932
13933         * lib/human.c (humblock): Set *options even when returning due to
13934         xstrtoumax conversion failure.  Thanks to a used-uninitialized
13935         warning from gcc-4.
13936
13937 2005-04-09  Jim Meyering  <jim@meyering.net>
13938
13939         * lib/posixtm.c (posixtime) [lint]: Avoid spurious warning from gcc-4's
13940         -Wuninitialized: initialize tm0.tm_year.
13941
13942 2005-04-04  Paul Eggert  <eggert@cs.ucla.edu>
13943
13944         * lib/getdate.y (parser_control): rels_seen is now a boolean, not a
13945         count, since there's no maximum.  All uses changed.
13946         Add member dsts_seen.
13947         (local_zone): Accumulate dsts_seen rather than relying on tm_isdst
13948         not being INT_MAX.
13949         (get_date): Initialize dsts_seen, and check that it doesn't go over 1.
13950         Use pc_rels_seen to decide whther a date is absolute.
13951
13952         * lib/getdate.y (number): Don't overwrite year.
13953         (get_date): Initialize pc.year.digits to 0, not 4, to enable above
13954         check.
13955
13956 2005-04-02  Simon Josefsson  <jas@extundo.com>
13957
13958         * lib/getaddrinfo.h: Fix OpenBSD compilation failure, inspired by tiny
13959         patch from Yoann Vandoorselaere <yoann@prelude-ids.org>.
13960
13961 2005-03-28  Eric Blake  <ebb9@byu.net>  (tiny change)
13962
13963         * m4/getcwd-path-max.m4: Return success on systems such as Cygwin
13964         where no absolute path name can be longer than PATH_MAX.
13965
13966 2005-03-27  Jim Meyering  <jim@meyering.net>
13967
13968         * lib/argmatch.c: Clarify comment: null-terminated -> NULL-terminated.
13969
13970 2005-03-26  Paul Eggert  <eggert@cs.ucla.edu>
13971
13972         * lib/intprops.h (INT_STRLEN_BOUND, INT_BUFSIZE_BOUND):
13973         "one's complement" -> "ones' complement" in comment, as per Knuth.
13974         "value of type" -> "type or expression" in comment.
13975         * lib/mktime.c, strftime.c: Propagate intprops.h comment nits.
13976
13977 2005-03-26  Jim Meyering  <jim@meyering.net>
13978
13979         Comment nits.
13980         * lib/intprops.h: Add the apostrophe in `(one|two)'s complement'.
13981         Correct typos: s/or/of/.
13982
13983 2005-03-26  Jim Meyering  <jim@meyering.net>
13984
13985         * modules/check-include-files: Move to ../ and rename to...
13986         * check-module: ...this.
13987
13988 2005-03-25  Jim Meyering  <jim@meyering.net>
13989
13990         * modules/xvasprintf (Files): Add xalloc.h.
13991
13992 2005-03-23  Paul Eggert  <eggert@cs.ucla.edu>
13993
13994         * modules/gettext (Files): config/config.rpath ->
13995         build-aux/config.rpath
13996         * modules/iconv (Files): Likewise.
13997         Problem reported by Oskar Liljeblad.
13998
13999 2005-03-23  Jim Meyering  <jim@meyering.net>
14000
14001         * modules/check-include-files: New script to check for
14002         missing dependencies, multiple includes, etc.
14003
14004         * modules/c-strtold (Depends-on): Add xalloc.
14005         * modules/c-strtod (Depends-on): Add xalloc.
14006         * modules/hash (Depends-on): Add xalloc.
14007         (Files): Remove lib/xalloc.h.
14008
14009         * modules/gethrxtime (Files): Add lib/gethrxtime.h.
14010         * modules/userspec (Files): Add lib/inttostr.h.
14011
14012 2005-03-23  Jim Meyering  <jim@meyering.net>
14013
14014         * lib/canonicalize.c: Remove duplicate `#include "stat-macros.h"'.
14015
14016 2005-03-22  Jim Meyering  <jim@meyering.net>
14017
14018         * modules/stat-macros: New module.
14019         * modules/canonicalize, modules/euidaccess, modules/file-type,
14020         * modules/filemode, modules/lchown, modules/makepath,
14021         * modules/rmdir, modules/stat: Depend on new stat-macros module
14022         rather than listing lib/stat-macros.h manually.
14023         Don't add stat-macros.h to lib_SOURCES or list it in Files: section.
14024
14025 2005-03-22  Jim Meyering  <jim@meyering.net>
14026
14027         * m4/stat-macros.m4 (gl_STAT_MACROS): New file/macro.
14028
14029 2005-03-22  Bruno Haible  <bruno@clisp.org>
14030
14031         * config/srclist.txt: Replace target directory 'config' with
14032         'build-aux'.
14033         * config/config.guess, config.sub, config.rpath, depcomp, install-sh:
14034         * config/mdate-sh, missing, mkinstalldirs, texinfo.tex: Move to
14035         ../build-aux/.
14036
14037 2005-03-21  Paul Eggert  <eggert@cs.ucla.edu>
14038
14039         * modules/chdir-long (Depends-on): Add mempcpy.
14040
14041         * modules/acl, modules/backupfile, modules/c-strtod,
14042         modules/c-strtold, modules/canon-host, modules/canonicalize,
14043         modules/cloexec, modules/closeout, modules/dirfd, modules/dirname,
14044         modules/exclude, modules/exitfail, modules/file-type,
14045         modules/filemode, modules/fpending, modules/fsusage, modules/getcwd,
14046         modules/getdate, modules/getline, modules/getpagesize,
14047         modules/getpass, modules/getugroups, modules/group-member,
14048         modules/hard-locale, modules/hash, modules/human, modules/idcache,
14049         modules/inttostr, modules/long-options, modules/makepath,
14050         modules/md5, modules/memcasecmp, modules/memcoll,
14051         modules/modechange, modules/mountlist, modules/path-concat,
14052         modules/pathmax, modules/physmem, modules/posixtm, modules/posixver,
14053         modules/quote, modules/quotearg, modules/readtokens, modules/readutmp,
14054         modules/safe-read, modules/safe-write, modules/same, modules/savedir,
14055         modules/settime, modules/sha1, modules/sig2str, modules/strdup,
14056         modules/strftime, modules/strndup, modules/strverscmp,
14057         modules/timespec, modules/unlocked-io, modules/userspec,
14058         modules/utimecmp, modules/utimens, modules/xalloc, modules/xstrtol,
14059         modules/yesno:
14060         Remove lib_SOURCES line from Makefile.am section, as this is now
14061         done automatically by the corresponding Autoconf macro.
14062
14063 2005-03-21  Jim Meyering  <jim@meyering.net>
14064
14065         Changes imported from coreutils.
14066
14067         * lib/cycle-check.c: Don't include xalloc.h.
14068
14069         * lib/path-concat.c: Don't include assert.h.
14070         (path_concat): Remove assertion that would have triggered
14071         for ABASE starting with more than one slash.
14072         Reported by Andreas Schwab.
14073
14074         * lib/path-concat.c (path_concat): Set *BASE_IN_RESULT
14075         properly when ABASE is an absolute file name.
14076         Correct the description of this function.
14077         Include <assert.h>.
14078         Add an assertion and a test driver.
14079         This fixes a bug introduced on 2004-07-02.
14080         Andreas Schwab reported the resulting failure of cp --parents:
14081         http://lists.gnu.org/archive/html/bug-coreutils/2005-01/msg00130.html
14082
14083 2005-03-21  Jim Meyering  <jim@meyering.net>
14084
14085         * m4/chdir-long.m4 (gl_PREREQ_CHDIR_LONG): Invoke gl_FUNC_MEMRCHR.
14086         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Check for memrchr decl.
14087
14088 2005-03-21  Jim Meyering  <jim@meyering.net>
14089         and  Paul Eggert  <eggert@cs.ucla.edu>
14090
14091         * m4/acl.m4, m4/backupfile.m4, m4/c-strtod.m4, m4/canon-host.m4,
14092         m4/canonicalize.m4, m4/cloexec.m4, m4/closeout.m4, m4/dirfd.m4,
14093         m4/dirname.m4, m4/exclude.m4, m4/exitfail.m4, m4/file-type.m4,
14094         m4/filemode.m4, m4/fpending.m4, m4/fsusage.m4, m4/getcwd.m4,
14095         m4/getdate.m4, m4/getline.m4, m4/getpagesize.m4, m4/getpass.m4,
14096         m4/getugroups.m4, m4/group-member.m4, m4/hard-locale.m4, m4/hash.m4,
14097         m4/human.m4, m4/idcache.m4, m4/inttostr.m4, m4/long-options.m4,
14098         m4/makepath.m4, m4/md5.m4, m4/memcasecmp.m4, m4/memcoll.m4,
14099         m4/modechange.m4, m4/mountlist.m4, m4/nanosleep.m4, m4/path-concat.m4,
14100         m4/pathmax.m4, m4/physmem.m4, m4/posixtm.m4, m4/posixver.m4,
14101         m4/quote.m4, m4/quotearg.m4, m4/readtokens.m4, m4/readutmp.m4,
14102         m4/safe-read.m4, m4/safe-write.m4, m4/same.m4, m4/savedir.m4,
14103         m4/settime.m4, m4/sha1.m4, m4/sig2str.m4, m4/strdup.m4, m4/strftime.m4,
14104         m4/strndup.m4, m4/strverscmp.m4, m4/timespec.m4, m4/unlocked-io.m4,
14105         m4/userspec.m4, m4/utimecmp.m4, m4/utimens.m4, m4/xalloc.m4,
14106         m4/xnanosleep.m4, m4/xstrtol.m4, m4/yesno.m4:
14107         Use AC_LIBSOURCES and AC_LIBOBJ to indicate source and object files
14108         for these modules.
14109
14110 2005-03-18  Paul Eggert  <eggert@cs.ucla.edu>
14111
14112         * lib/strftime.c (my_strftime): If the underlying strftime returns 0
14113         (which shouldn't happen), generate nothing instead of returning 0
14114         immediately, so that nstrftime (NULL, ...) doesn't return 0.
14115
14116 2005-03-16  Bruno Haible  <bruno@clisp.org>
14117
14118         * modules/stdint (Makefile.am): Use HAVE_LONG_LONG_64BIT instead of
14119         HAVE_LONGLONG_64BIT.
14120
14121 2005-03-16  Bruno Haible  <bruno@clisp.org>
14122
14123         * m4/stdint.m4 (gl_STDINT_H): Define HAVE_LONG_LONG_64BIT instead of
14124         HAVE_LONGLONG_64BIT.
14125
14126 2005-03-16  Bruno Haible  <bruno@clisp.org>
14127
14128         * lib/stdint_.h: Use HAVE_LONG_LONG_64BIT instead of
14129         HAVE_LONGLONG_64BIT.
14130
14131 2005-03-15  Paul Eggert  <eggert@cs.ucla.edu>
14132
14133         * lib/strftime.c (my_strftime): Prepend space to format so that we can
14134         reliably distinguish strftime failure from empty output on POSIX
14135         hosts.
14136
14137 2005-03-15  Paul Eggert  <eggert@cs.ucla.edu>
14138
14139         * lib/iconvme.c (SIZE_MAX): New macro, if not already defined.
14140         (iconv_string): Don't guess a size-zero buffer, as that might cause
14141         buffer overrun.  Instead, avoid multiplying by MB_LEN_MAX if the
14142         result would be 'too large', where 'too large' is (heuristically)
14143         the square root of SIZE_MAX, divided by MB_LEN_MAX to allay
14144         overflow concerns.  This will prevent some unwanted malloc failures
14145         when the inputs are very large.
14146
14147 2005-03-15  Karl Berry  <karl@gnu.org>
14148
14149         * config/srclist.txt (config.rpath): from gettext.
14150         * config/config.rpath: update.
14151
14152 2005-03-15  Bruno Haible  <bruno@clisp.org>
14153
14154         * lib/regex.c (byte_re_match_2_internal): Rename local variable 'not'
14155         to 'negate'.
14156
14157         * lib/regex.c (byte_re_match_2_internal): Reduce scope of same_str_p
14158         variable.
14159
14160         * lib/regex.c (EXTEND_BUFFER, regcomp): Cast the realloc/malloc
14161         results.
14162
14163 2005-03-14  Simon Josefsson  <jas@extundo.com>
14164
14165         * lib/timegm.h: Use proper prototype CPP guards, reported by Dave Love
14166         <fx@gnu.org>.
14167
14168 2005-03-14  Paul Eggert  <eggert@cs.ucla.edu>
14169
14170         * lib/mktime.c (TYPE_TWOS_COMPLEMENT, TYPE_ONES_COMPLEMENT,
14171         TYPE_SIGNED_MAGNITUDE, TYPE_MINIMUM, TYPE_MAXIMUM): Sync from
14172         intprops.h.
14173         * lib/strtol.c: Likewise.
14174
14175 2005-03-14  Jim Meyering  <jim@meyering.net>
14176
14177         * lib/strftime.c (my_strftime) [HAVE_STRFTIME && ! (_NL_CURRENT
14178         && HAVE_STRUCT_ERA_ENTRY)]: Initialize the first byte of ubuf[]
14179         to be nonzero so that we (and caller) can detect the difference
14180         between a valid zero-length expansion and an error return, even
14181         when the underlying strftime fails before writing anything into
14182         that location.
14183
14184 2005-03-14  Bruno Haible  <bruno@clisp.org>
14185
14186         * m4/lib-link.m4, gettext.m4, nls.m4, po.m4:
14187         Update from GNU gettext 0.14.3.
14188
14189 2005-03-10  Jim Meyering  <jim@meyering.net>
14190
14191         * m4/save-cwd.m4 (gl_SAVE_CWD): Check for fchdir.
14192
14193 2005-03-10  Jim Meyering  <jim@meyering.net>
14194
14195         * lib/save-cwd.c [!HAVE_FCHDIR]: Define open, fchdir, and chdir_long
14196         so that this module works on systems without fchdir.
14197
14198 2005-03-09  Paul Eggert  <eggert@cs.ucla.edu>
14199
14200         Factor int-properties macros into a single file, except for
14201         glibc-related files.
14202         * lib/intprops.h: New file.
14203         * lib/getloadavg.c: Include it instead of limits.h.
14204         (INT_STRLEN_BOUND): Remove.
14205         * lib/human.c: Include intprops.h.
14206         (group_number): Use INT_STRLEN_BOUND instead of rolling it ourself.
14207         * lib/human.h (LONGEST_HUMAN_READABLE): Use 146/485 rather than
14208         302/1000.
14209         * lib/inttostr.h: Include intprops.h instead of limits.h.
14210         (INT_STRLEN_BOUND, INT_BUFSIZE_BOUND): Remove.
14211         * lib/mktime.c (TYPE_IS_INTEGER, TYPE_TWOS_COMPLEMENT): New macros,
14212         for consistency with intprops.h.
14213         (time_t_is_integer, twos_complement_arithmetic): Use them.
14214         * lib/sig2str.h: Include <signal.h>, intprops.h.
14215         (INT_STRLEN_BOUND): Remove.
14216         * lib/strftime.c (TYPE_SIGNED): Remove.
14217         (INT_STRLEN_BOUND): Switch to same implementation as intprops.h.
14218         * lib/strtol.c: Adjust comments to match intprops.h.
14219         * lib/userspec.c: Include intprops.h.
14220         (TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Remove.
14221         * lib/utimecmp.c, xnanosleep.c, xstrtol.c: Likewise.
14222         * lib/utimecmp.c (utimecmp): Use TYPE_IS_INTEGER, TYPE_TWOS_COMPLEMENT
14223         instead of rolling our own expressions.
14224         * lib/xstrtol.c: Include xstrtol.h first, to test interface.
14225
14226         * lib/strftime.c: Include <stdbool.h>.  Use bool where appropriate,
14227         instead of int.
14228         (my_strftime): Do not mishandle years close to INT_MAX, by doing
14229         the right thing even if adding 1900 would overflow.  Similarly
14230         for tm_mon + 1 and tm_yday + 1.
14231         Make %Y always equivalent to %C%y, and similarly for %G and %g.
14232         (DO_NUMBER, DO_NUMBER_SPACEPAD): Set digits to d, not a conditional.
14233         (DO_SIGNED_NUMBER): New macro.
14234         (my_strftime) [HAVE_TZNAME]: Don't dump core if tp->tm_dst > 1.
14235
14236 2005-03-07  Bruno Haible  <bruno@clisp.org>
14237
14238         * m4/mmap-anon.m4 (MAP_FILE, MAP_FAILED): Remove definitions.
14239
14240 2005-03-07  Bruno Haible  <bruno@clisp.org>
14241
14242         * lib/pagealign_alloc.c (MAP_FILE, MAP_FAILED): Define fallbacks.
14243
14244 2005-03-04  Derek R. Price  <derek@ximbiot.com>
14245
14246         * gnulib-tool (func_cp_if_changed, func_mv_if_changed): New functions.
14247         (func_import): Only replace files via --import when they have actually
14248         changed.
14249
14250 2005-03-03  Derek R. Price  <derek@ximbiot.com>
14251
14252         * m4/mmap-anon.m4: New file.
14253         * m4/pagealign_alloc.m4: New file.
14254
14255 2005-03-03  Derek R. Price  <derek@ximbiot.com>
14256             Bruno Haible  <bruno@clisp.org>
14257
14258         * modules/pagealign_alloc: New file.
14259         * MODULES.html.sh (Memory management functions): Add pagealign_alloc.
14260
14261 2005-03-03  Derek R. Price  <derek@ximbiot.com>
14262             Bruno Haible  <bruno@clisp.org>
14263
14264         * lib/pagealign_alloc.h: New file.
14265         * lib/pagealign_alloc.c: New file.
14266
14267 2005-03-03  Bruno Haible  <bruno@clisp.org>
14268
14269         * m4/inttypes.m4, isc-posix.m4, once-only.m4:
14270         Use an all-permissive copyright notice, recommended by RMS.
14271
14272 2005-03-02  Bruno Haible  <bruno@clisp.org>
14273
14274         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Undo the replacement here. Because
14275         of AIX, the replacement has to be done only after <string.h> is
14276         included, therefore not in config.h. stpncpy.h does the replacement,
14277         and stpncpy.c uses it.
14278
14279 2005-03-02  Bruno Haible  <bruno@clisp.org>
14280
14281         * lib/stpncpy.h (stpncpy): Define as a macro without arguments, so that
14282         stpncpy.c uses it.
14283
14284 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
14285
14286         Remove workaround for bug in Linux kernel 2.6.8 or thereabouts.
14287         The workaround isn't strictly needed for POSIX conformance, and
14288         it's too much of a pain to configure and maintain.  We'll ask
14289         people to fix their kernels instead.
14290         * lib/xnanosleep.c: Don't include gethrxtime.h or xtime.h.
14291         (NANOSLEEP_BUG_WORKAROUND): Remove.
14292         (xnanosleep): Remove the workaround.
14293
14294 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
14295
14296         * modules/gettime (Makefile.am): Remove lib_SOURCES line.
14297         Reported by Derek Price.
14298         (Include): Add "timespec.h".
14299
14300         * modules/xnanosleep (Depends-on): Remove gethrxtime.
14301
14302 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
14303
14304         * m4/xnanosleep.m4 (gl_XNANOSLEEP): Remove configuration attempting
14305         to detect nanosleep bug.
14306
14307 2005-03-01  Bruno Haible  <bruno@clisp.org>
14308
14309         * lib/vasnprintf.c (EOVERFLOW): Define to a fallback if needed.
14310
14311 2005-02-26  Paul Eggert  <eggert@cs.ucla.edu>
14312
14313         * modules/gethrxtime: New file.
14314         * modules/xnanosleep (Files): Add m4/xnanosleep.m4.
14315         (Depends-on): Add gethrxtime.
14316         (configure.ac): Add gl_XNANOSLEEP.
14317         (Makefile.am): Remove lib_SOURCES line.
14318
14319 2005-02-25  Paul Eggert  <eggert@cs.ucla.edu>
14320
14321         * m4/gethrxtime.m4, m4/xnanosleep.m4: New files.
14322         * m4/gettime.m4 (gl_GETTIME): Check for nanotime.
14323
14324 2005-02-25  Paul Eggert  <eggert@cs.ucla.edu>
14325
14326         * lib/gethrxtime.h, lib/gethrxtime.c, lib/xtime.h: New files.
14327         * lib/timespec.h (gettime): Return void, since it always
14328         succeeds now.  All uses changed.
14329         * lib/gettime.c (gettime) Likewise.
14330         [HAVE_NANOTIME]: Prefer nanotime.
14331         Assume gettimeofday succeeds, as POSIX requires.
14332         Assime time () succeeds, since other code already does.
14333         * lib/xnanosleep.c: Include xtime.h and gethrxtime.h, not xalloc.h.
14334         (timespec_subtract): Remove.
14335         (NANOSLEEP_BUG_WORKAROUND): New constant.
14336         (xnanosleep): Use gethrxtime rather than gettime; this simplifies
14337         things considerably.  Use it only on GNU/Linux hosts, since the
14338         workaround shouldn't be needed elsewhere.
14339
14340 2005-02-24  Bruno Haible  <bruno@clisp.org>
14341
14342         * modules/gettext (Files): Add m4/glibc2.m4.
14343
14344 2005-02-24  Bruno Haible  <bruno@clisp.org>
14345
14346         * m4/gettext.m4, intdiv0.m4, intmax.m4, inttypes-pri.m4, lcmessage.m4:
14347         * m4/lib-link.m4, lib-prefix.m4, nls.m4, po.m4, printf-posix.m4:
14348         * m4/progtest.m4:
14349         Update from GNU gettext 0.14.2.
14350         * m4/glibc2.m4: New file, from GNU gettext 0.14.2.
14351
14352 2005-02-24  Bruno Haible  <bruno@clisp.org>
14353
14354         * lib/localcharset.c: Update from GNU gettext 0.14.2.
14355         * lib/config.charset: Update from GNU gettext 0.14.2.
14356
14357 2005-02-24  Bruno Haible  <bruno@clisp.org>
14358
14359         * lib/gettext.h: Update from GNU gettext 0.14.2.
14360
14361 2005-02-23  Simon Josefsson  <jas@extundo.com>
14362
14363         * m4/iconvme.m4: New file.
14364
14365 2005-02-23  Jim Meyering  <jim@meyering.net>
14366
14367         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Revert yesteday's
14368         change.
14369         Thanks to Bruno Haible for catching it.
14370
14371 2005-02-22  Simon Josefsson  <jas@extundo.com>
14372
14373         * modules/iconvme: New file.
14374
14375         * MODULES.html.sh: Add iconvme.
14376
14377 2005-02-22  Simon Josefsson  <jas@extundo.com>
14378
14379         * lib/iconvme.h, lib/iconvme.c: New files, from libc.
14380
14381 2005-02-22  Simon Josefsson  <jas@extundo.com>
14382
14383         * config/srclist.txt: Sync iconvme.h, iconvme.c from libc.
14384
14385 2005-02-22  Jim Meyering  <jim@meyering.net>
14386
14387         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Fix typo:
14388         s/ifndef/ifdef/.
14389
14390 2005-02-20  Neil Conway  <neilc@samurai.com>
14391
14392         * lib/xgethostname.c (xgethostname): Check for ENOMEM, which is
14393         returned by OSX/Darwin if the specified buffer is not large
14394         enough for the hostname.
14395
14396 2005-02-03  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
14397
14398         * lib/argp-help.c (__argp_help): Create a fake struct argp_state and
14399         pass it to _help, otherwise the latter coredumps trying to
14400         dereference state.root_argp.
14401
14402 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
14403
14404         * modules/chdir-long (Depends-on): Add memrchr.
14405         * modules/memrchr (Files): Add lib/memrchr.h.
14406         (Include): "memrchr.h".
14407
14408 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
14409
14410         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Add AC_LIBSOURCES, for memrchr.h.
14411
14412 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
14413
14414         * lib/memrchr.h: New file.
14415         * lib/chdir-long.c: Include it.
14416         * lib/memrchr.c [!defined _LIBC]: Include it rather than <string.h>
14417         Don't bother including stddef.h.
14418
14419 2005-02-01  Paul Eggert  <eggert@cs.ucla.edu>
14420
14421         * lib/mountlist.h (MOUNTLIST_H_): New macro, to protect against double
14422         inclusion.
14423         Include <sys/types.h>, for dev_t.
14424         (ME_DUMMY, ME_REMOTE): Move from here....
14425         * lib/mountlist.c (ME_DUMMY, ME_REMOTE): To here.
14426         (ME_DUMMY): Count "subfs" as a dummy.  Problem reported by
14427         Dmitry V. Levin.
14428         Include mountlist.h first, to test the interface.
14429
14430 2005-01-29  Bruno Haible  <bruno@clisp.org>
14431
14432         * lib/progname.c (program_name): Initialize.
14433         Needed when linking statically on MacOS X.
14434
14435 2005-01-28  Paul Eggert  <eggert@cs.ucla.edu>
14436
14437         Sync from coreutils.
14438         * modules/getloadavg (Files): Remove m4/getloadavg.m4.
14439         (Depends-on): Add c-strtod.
14440         (configure.ac): Replace gl_FUNC_GETLOADAVG with AC_FUNC_GETLOADAVG.
14441
14442 2005-01-28  Paul Eggert  <eggert@cs.ucla.edu>
14443
14444         Sync from coreutils.
14445         * m4/getloadavg.m4, glibc.m4, search-libs.m4: Remove.
14446
14447         Remove files that are specific to coreutils.
14448         * m4/check-decl.m4, jm-macros.m4, lib-check.m4, prereq.m4: Remove.
14449
14450 2005-01-28  Bruno Haible  <bruno@clisp.org>
14451
14452         * modules/javacomp: New file.
14453         * MODULES.html.sh (Java): Add javacomp.
14454
14455 2005-01-28  Bruno Haible  <bruno@clisp.org>
14456
14457         * m4/javacomp.m4: New file, from GNU gettext.
14458
14459 2005-01-28  Bruno Haible  <bruno@clisp.org>
14460
14461         * lib/javacomp.sh.in: New file, from GNU gettext.
14462         * lib/javacomp.h: New file, from GNU gettext.
14463         * lib/javacomp.c: New file, from GNU gettext.
14464
14465 2005-01-26  Simon Josefsson  <jas@extundo.com>
14466
14467         * lib/gai_strerror.c: Use GPL in header.
14468
14469 2005-01-26  Bruno Haible  <bruno@clisp.org>
14470
14471         * modules/javaexec: New file.
14472         * MODULES.html.sh (Java): Add javaexec.
14473
14474 2005-01-26  Bruno Haible  <bruno@clisp.org>
14475
14476         * m4/javaexec.m4: New file, from GNU gettext.
14477
14478 2005-01-26  Bruno Haible  <bruno@clisp.org>
14479
14480         * lib/javaexec.sh.in: New file, from GNU gettext.
14481         * lib/javaexec.h: New file, from GNU gettext.
14482         * lib/javaexec.c: New file, from GNU gettext.
14483
14484 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
14485
14486         * modules/lchown (Depends-on): Remove lchown.h
14487
14488 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
14489
14490         * m4/sysexits.m4 (gl_SYSEXITS): Reverted logic. SYSEXITS_H
14491         must be defined if the header file was not found, in order
14492         to provide a replacement. Reported by Todd Vierling <tv@duh.org>
14493
14494 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
14495
14496         * lib/argp-help.c (hol_entry_help): Avoid using non-constant
14497         initializers for struct pentry_state.
14498         (__argp_error): Check return value of __asprintf
14499         (__argp_failure): Translate error message
14500
14501         * lib/argp-parse.c: Removed braces around the expansion of N_()
14502
14503 2005-01-23  Paul Eggert  <eggert@cs.ucla.edu>
14504
14505         * m4/acl.m4, afs.m4, alloca.m4, argp.m4, assert.m4, atexit.m4,
14506         backupfile.m4, base64.m4, bison.m4, c-bs-a.m4, c-stack.m4,
14507         c-strtod.m4, calloc.m4, canon-host.m4, canonicalize.m4,
14508         clock_time.m4, cloexec.m4, closeout.m4, d-ino.m4, d-type.m4,
14509         dirfd.m4, dirname.m4, dos.m4, dup2.m4, error.m4, euidaccess.m4,
14510         exclude.m4, exitfail.m4, extensions.m4, fcntl-safer.m4,
14511         file-type.m4, fileblocks.m4, filemode.m4, fnmatch.m4, fpending.m4,
14512         free.m4, fstypename.m4, fsusage.m4, ftruncate.m4, getaddrinfo.m4,
14513         getcwd-path-max.m4, getcwd.m4, getdate.m4, getdomainname.m4,
14514         getgroups.m4, gethostname.m4, getline.m4, getndelim2.m4,
14515         getnline.m4, getopt.m4, getpagesize.m4, getpass.m4, getsubopt.m4,
14516         gettime.m4, gettimeofday.m4, getugroups.m4, getusershell.m4,
14517         group-member.m4, hard-locale.m4, hash.m4, host-os.m4, human.m4,
14518         idcache.m4, inttostr.m4, isdir.m4, jm-winsz1.m4, jm-winsz2.m4,
14519         link-follow.m4, long-options.m4, ls-mntd-fs.m4, lstat.m4,
14520         makepath.m4, mathl.m4, md5.m4, memcasecmp.m4, memchr.m4,
14521         memcmp.m4, memcoll.m4, memcpy.m4, memmem.m4, memmove.m4,
14522         memrchr.m4, memset.m4, mkdir-slash.m4, mkstemp.m4, mktime.m4,
14523         modechange.m4, mountlist.m4, nanosleep.m4, obstack.m4,
14524         path-concat.m4, pathmax.m4, perl.m4, physmem.m4, poll.m4,
14525         posixtm.m4, posixver.m4, putenv.m4, quote.m4, quotearg.m4,
14526         readdir.m4, readtokens.m4, readutmp.m4, regex.m4, rename.m4,
14527         restrict.m4, rmdir-errno.m4, rmdir.m4, rpmatch.m4, same.m4,
14528         savedir.m4, settime.m4, sha1.m4, sig2str.m4, snprintf.m4,
14529         sockpfaf.m4, st_dm_mode.m4, st_mtim.m4, stat.m4, stdint.m4,
14530         stdio-safer.m4, strchrnul.m4, strdup.m4, strerror.m4,
14531         strerror_r.m4, strftime.m4, strndup.m4, strnlen.m4, strsep.m4,
14532         strtod.m4, strtoimax.m4, strtok_r.m4, strtol.m4, strtoll.m4,
14533         strtoul.m4, strtoull.m4, strtoumax.m4, strverscmp.m4, sysexits.m4,
14534         time_r.m4, timegm.m4, timespec.m4, tm_gmtoff.m4, tzset.m4,
14535         uint32_t.m4, uintptr_t.m4, unistd-safer.m4, unlink-busy.m4,
14536         unlocked-io.m4, uptime.m4, userspec.m4, utimbuf.m4, utime.m4,
14537         utimecmp.m4, utimens.m4, utimes-null.m4, vsnprintf.m4, xalloc.m4,
14538         xgetcwd.m4, xreadlink.m4, xstrndup.m4, xstrtod.m4, xstrtoimax.m4,
14539         xstrtol.m4, xstrtoumax.m4, yesno.m4:
14540         Use an all-permissive copyright notice, recommended by RMS.
14541
14542 2005-01-21  Paul Eggert  <eggert@cs.ucla.edu>
14543
14544         * modules/chdir-long (Depends-on): Remove mempcpy.
14545
14546 2005-01-21  Jim Meyering  <jim@meyering.net>
14547
14548         * lib/openat.h (AT_SYMLINK_NOFOLLOW): Define to 4096, so it's the
14549         same value as for Solaris 9.
14550
14551         * lib/chdir-long.c (chdir_long): Rewrite to remove limitation on
14552         component length.  This included changing the parameter to be
14553         of type `char *' rather than `char const *'.
14554         * lib/chdir-long.h (chdir_long): Update prototype.
14555
14556         * lib/openat.c (fdopendir, fstatat): New functions.
14557         * lib/openat.h: Include headers required for use of DIR and struct
14558         stat.
14559         [AT_SYMLINK_NOFOLLOW]: Define.
14560         (fdopendir, fstatat): Add prototypes.
14561
14562 2005-01-21  Bruno Haible  <bruno@clisp.org>
14563
14564         * modules/classpath: New file.
14565         * MODULES.html.sh (Java): Add classpath.
14566
14567 2005-01-21  Bruno Haible  <bruno@clisp.org>
14568
14569         * lib/classpath.h: New file, from GNU gettext.
14570         * lib/classpath.c: New file, from GNU gettext.
14571
14572 2005-01-20  Simon Josefsson  <jas@extundo.com>
14573
14574         * modules/version-etc-fsf: New file.
14575
14576 2005-01-20  Simon Josefsson  <jas@extundo.com>
14577
14578         * lib/version-etc-fsf.c: New file, with version_etc_copyright.
14579         * lib/version-etc.c: Remove version_etc_copyright.
14580         * lib/version-etc.h (version_etc_copyright): Use [] instead of * in
14581         prototype, suggested by Paul Eggert <eggert@CS.UCLA.EDU>.
14582
14583 2005-01-20  Simon Josefsson  <jas@extundo.com>
14584
14585         * lib/base64.h (isbase64): Add.
14586
14587         * lib/base64.c (isb64): Rename to isbase64, use to_uchar instead of
14588         using a unsigned prototype, don't inline.
14589         (base64_decode): Use it.
14590
14591 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
14592
14593         * m4/save-cwd.m4 (gl_SAVE_CWD): Remove check for fcntl; we now assume
14594         it.
14595
14596 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
14597
14598         * lib/save-cwd.c (save_cwd): Remove code to support the case
14599         where fchdir is missing or flaky.
14600
14601 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
14602
14603         * MODULES.html.sh (Command-line arguments): Add version-etc-fsf.
14604
14605 2005-01-19  Paul Eggert  <eggert@cs.ucla.edu>
14606
14607         * modules/mempcpy (Makefile.am): Remove mention of mempcpy.h;
14608         AC_LIBSOURCES now does this.
14609         * MODULES.html.sh (Sizes of integer types <limits.h>): New element,
14610         with new ullong_max module.
14611
14612 2005-01-19  Bruno Haible  <bruno@clisp.org>
14613
14614         * modules/sh-quote: New file.
14615         * MODULES.html.sh (Executing programs): Add sh-quote.
14616
14617 2005-01-19  Bruno Haible  <bruno@clisp.org>
14618
14619         * lib/sh-quote.h: New file, from GNU gettext.
14620         * lib/sh-quote.c: New file, from GNU gettext.
14621
14622 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
14623
14624         Merge from coreutils.
14625         * m4/ullong_max.m4: New file.
14626         * m4/jm-macros.m4 (gl_MACROS): Require gl_ULLONG_MAX.
14627         (gl_MACROS): Assume localeconv exists.
14628
14629 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
14630
14631         Merge changes from coreutils, as described below in several
14632         changelogs dated today.
14633
14634         * lib/save-cwd.c: Include "save-cwd.h" before other include files.
14635         (O_DIRECTORY): Remove; not needed here, since "." must be
14636         a directory.  All uses removed.
14637         (save_cwd): Use __sgi || __sun, not sun || __sun.  __sun is
14638         universal on Suns, and we also need to test for IRIX.
14639         Revamp code to use 'if' rather than '#if'.
14640         Avoid unnecessary comparison of cwd->desc to 0.
14641
14642         * lib/utimens.c (futimens): Robustify the previous patch, by checking
14643         for known valid error numbers rather than observed invalid ones.
14644
14645 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
14646
14647         * modules/ullong_max: New file.
14648
14649         * modules/chdir-long, modules/openat: New files.
14650         * modules/save-cwd (Depends-on): Depend on chdir-long.
14651         (Makefile.am): Remove lib_SOURCES; now handled by AC_LIBSOURCES.
14652
14653 2005-01-18  Jim Meyering  <jim@meyering.net>
14654
14655         Merge from coreutils.
14656         * m4/chdir-long.m4, m4/openat.m4: New files.
14657         * m4/save-cwd.m4 (gl_SAVE_CWD): Add AC_LIBSOURCES for save-cwd.c,
14658         save-cwd.h.  Add AC_LIBOBJ for save-cwd.
14659         * m4/chown.m4 (gl_FUNC_CHOWN): When cross-compiling, assume that chown
14660         is sane and DOES follow symlinks.  Besides, testing 20 different
14661         systems found no broken chown implementations.
14662         Prompted by a change in rsync's copy of this macro.
14663         * m4/jm-macros.m4 (gl_MACROS): Require gl_FUNC_CHDIR_LONG.
14664
14665         * m4/lchown.m4 (gl_FUNC_LCHOWN): Use AC_LIBSOURCES.
14666
14667         * m4/utimes.m4: Work around tests/touch/empty-file failure on a system
14668         (sparc64, Linux-2.4.28, glibc-2.3.3) that didn't honor utimes'
14669         NULL-means-set-to-current-time semantics.
14670         Remove temporary file immediately, rather than waiting
14671         for configure's at-exit trap code to do it.
14672
14673 2005-01-18  Jim Meyering  <jim@meyering.net>
14674
14675         * lib/version-etc.c (version_etc_copyright): Update copyright date.
14676
14677         * lib/utimens.c (futimens): Account for the fact that futimes
14678         can also fail with errno == ENOSYS or errno == ENOENT.
14679         Patch from Dmitry V. Levin.
14680
14681         Change the name of the robust chdir function from chdir to chdir_long.
14682         * lib/save-cwd.c: Include chdir-long.h rather than chdir.h.
14683         (restore_cwd): Use chdir_long, not chdir.
14684         * lib/chdir-long.c: Renamed from chdir.c.
14685         * lib/chdir-long.h: Renamed from chdir.h.
14686         [!defined PATH_MAX]: Define chdir_long to chdir on systems like the
14687         Hurd.
14688
14689 2005-01-18  Bruno Haible  <bruno@clisp.org>
14690
14691         * m4/allocsa.m4, m4/codeset.m4, m4/copy-file.m4, m4/eaccess.m4:
14692         * m4/eealloc.m4, m4/eoverflow.m4, m4/execute.m4, m4/fatal-signal.m4:
14693         * m4/findprog.m4, m4/glibc21.m4, m4/iconv.m4, m4/intmax_t.m4:
14694         * m4/inttypes_h.m4, m4/lib-ld.m4, m4/lib-link.m4, m4/lib-prefix.m4:
14695         * m4/linebreak.m4, m4/localcharset.m4, m4/longdouble.m4:
14696         * m4/longlong.m4, m4/mbrtowc.m4, m4/mbstate_t.m4, m4/mbswidth.m4:
14697         * m4/mkdtemp.m4, m4/pipe.m4, m4/readlink.m4, m4/safe-read.m4:
14698         * m4/safe-write.m4, m4/setenv.m4, m4/sig_atomic_t.m4:
14699         * m4/signalblocking.m4, m4/signed.m4, m4/size_max.m4, m4/ssize_t.m4:
14700         * m4/stdbool.m4, m4/stdint_h.m4, m4/stpcpy.m4, m4/stpncpy.m4:
14701         * m4/strcase.m4, m4/strcspn.m4, m4/strpbrk.m4, m4/strstr.m4:
14702         * m4/ucs4-utf.m4, m4/uintmax_t.m4, m4/ulonglong.m4, m4/unicodeio.m4:
14703         * m4/utf-ucs4.m4, m4/vasnprintf.m4, m4/vasprintf.m4:
14704         * m4/wait-process.m4, m4/wchar_t.m4, m4/wint_t.m4, m4/xsize.m4:
14705         Use an all-permissive copyright notice, recommended by RMS.
14706
14707 2005-01-18  Bob Proulx  <bob@proulx.com>
14708
14709         * lib/obstack.c [DEFAULT_ALIGNMENT]: Use an intermediate type to
14710         simplify offsetof() macro construct to avoid compile failure with
14711         native HP-UX 11.0 ANSI C compiler.
14712
14713 2005-01-17  Bruno Haible  <bruno@clisp.org>
14714
14715         * lib/stpncpy.c: Remove HAVE_STPNCPY and gnu_stpncpy renaming,
14716         redundant because stpncpy.m4 takes care of it.
14717
14718 2005-01-17  Bruno Haible  <bruno@clisp.org>
14719
14720         * lib/progreloc.c: Include xalloc.h instead of xmalloc.h.
14721
14722 2005-01-17  Bruno Haible  <bruno@clisp.org>
14723
14724         * lib/progreloc.c (xstrdup): Define as strdup if no xmalloc should be
14725         used.
14726
14727 2005-01-17  Bruno Haible  <bruno@clisp.org>
14728
14729         * lib/fwriteerror.h (fwriteerror): Change specification to include
14730         fclose.
14731         * lib/fwriteerror.c: Include <stdbool.h>.
14732         (fwriteerror): At the end, close the file stream. Record whether
14733         stdout was already closed.
14734
14735 2005-01-17  Bruno Haible  <bruno@clisp.org>
14736
14737         * lib/execute.c (environ): Declare if needed.
14738         * lib/pipe.c (environ): Likewise.
14739         Reported by Michael Schloh von Bennewitz <michael.schloh@cw.com>.
14740
14741 2005-01-11  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
14742
14743         * modules/argp: Depend on vsnprintf
14744
14745 2005-01-10  Jim Meyering  <jim@meyering.net>
14746
14747         * modules/closeout (Depends-on): Add atexit.
14748
14749 2005-01-06  Bruno Haible  <bruno@clisp.org>
14750
14751         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Rename stpncpy to gnu_stpncpy here.
14752
14753 2005-01-04  Paul Eggert  <eggert@cs.ucla.edu>
14754
14755         * lib/human.c (SIZE_MAX, UINTMAX_MAX): Move these conditional
14756         definitions to be after all include files, to avoid collisions.
14757         Problem reported by Bob Proulx.
14758
14759 2005-01-04  Jim Meyering  <jim@meyering.net>
14760
14761         Changes imported from coreutils.
14762         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Rather than using "conftestXXXXXX"
14763         as the mkstemp template, use a temporary directory and an
14764         8.3-friendly template to avoid trouble on systems like DJGPP.
14765         Reported by Juan M. Guerrero via Stepan Kasal.
14766         * m4/(gl_FUNC_MKSTEMP): Include <unistd.h> for the declaration of
14767         close. Remove the temporary directory right away, rather than waiting
14768         for configure's at-exit trap code to do it.
14769         Suggestion from Stepan Kasal.
14770
14771 2005-01-01  Simon Josefsson  <jas@extundo.com>
14772
14773         * gnulib-tool: Print #include directives when --import'ing.
14774
14775 2004-12-28  Simon Josefsson  <jas@extundo.com>
14776
14777         * tests/test-base64.c: Include required header files.  Remove
14778         unused variables.
14779
14780 2004-12-28  Paul Eggert  <eggert@cs.ucla.edu>
14781
14782         * modules/error (Depends-on): Remove gettext.
14783
14784 2004-12-28  Paul Eggert  <eggert@cs.ucla.edu>
14785
14786         * lib/error.c [!_LIBC && !ENABLE_NLS]: Do not include "gettext.h";
14787         not needed.  This removes a dependency on the gettext module.
14788         [defined _LIBC]: Do not include <libintl.h>; not needed.
14789
14790 2004-12-24  Paul Eggert  <eggert@cs.ucla.edu>
14791
14792         * m4/c-strtod.m4 (gl_C99_STRTOLD): New macro.
14793         (gl_C_STRTOD): Use it instead of AC_CHECK_DECLS_ONCE(strtold).
14794
14795 2004-12-24  Paul Eggert  <eggert@cs.ucla.edu>
14796
14797         * lib/c-strtod.c (STRTOD): Depend on HAVE_C99_STRTOLD, not
14798         HAVE_DECL_STRTOLD.
14799
14800 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
14801
14802         * modules/getdate (Depends-on): Remove alloca-opt.
14803
14804 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
14805
14806         * m4/getdate.m4 (gl_GETDATE): Remove AC_FUNC_ALLOCA.
14807
14808 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
14809
14810         * lib/argp-parse.c: Include <stddef.h>.
14811         (alignof, alignto): New macros.
14812         (parser_init): Don't assume that void * is aligned sufficiently
14813         for struct option.
14814
14815         * lib/getdate.y (YYSTACK_USE_ALLOCA): Define to 0, since there's no
14816         need to extend the stack.
14817         (YYINITDEPTH): New macro, so that the initial stack isn't overly
14818         large.
14819
14820 2004-12-22  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
14821
14822         * lib/argp-parse.c (parser_init): Avoid arithmetics on void pointers.
14823
14824 2004-12-19  Paul Eggert  <eggert@cs.ucla.edu>
14825
14826         * modules/regex (lib_SOURCES): Remove regex.c, undoing previous
14827         (2004-10-24) change.  Apparently this was a false alarm.
14828
14829         * modules/getdate: Depend on alloca-opt, not alloca.
14830
14831 2004-12-19  Paul Eggert  <eggert@cs.ucla.edu>
14832
14833         * lib/alloca_.h: Conditionalize on _GNULIB_ALLOCA_H, not _ALLOCA_H.
14834         Remove now-obsolete comment about AIX.
14835         * lib/getdate.y: Include <alloca.h> only if HAVE_ALLOCA.
14836         (YYSTACK_USE_ALLOCA): Define to 0 if !HAVE_ALLOCA.
14837         (YYMAXDEPTH): New macro.
14838
14839 2004-12-18  Simon Josefsson  <jas@extundo.com>
14840
14841         * modules/alloca: Depend on alloca-opt, instead of duplicating it.
14842
14843 2004-12-18  Bruno Haible  <bruno@clisp.org>
14844
14845         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Also test for sigaction.
14846
14847 2004-12-18  Bruno Haible  <bruno@clisp.org>
14848
14849         * lib/fatal-signal.c (fatal_signals): Make non-const.
14850         (init_fatal_signals): New function.
14851         (uninstall_handlers, install_handlers): Ignore signals that were set to
14852         SIG_IGN.
14853         (at_fatal_signal): Call init_fatal_signals.
14854         (init_fatal_signal_set): Likewise. Ignore signals that were set to
14855         SIG_IGN.
14856         Reported by Paul Eggert.
14857
14858 2004-12-18  Bruno Haible  <bruno@clisp.org>
14859
14860         * doc/alloca.texi: New file.
14861         * doc/alloca-opt.texi: New file.
14862
14863 2004-12-17  Jim Meyering  <jim@meyering.net>
14864
14865         * config/install-sh: Use `(exit N); exit N', not `(exit N); exit'.
14866         Otherwise, install-sh could exit with improper exit status when
14867         exiting via a trapped interrupt.  Thanks to a report from Bob Proulx.
14868
14869 2004-12-16  Simon Josefsson  <jas@extundo.com>
14870
14871         * tests/test-base64.c: Add license.
14872
14873 2004-12-15  Stepan Kasal  <address@hidden>
14874
14875         * gnulib-tool (func_emit_lib_Makefile_am): Shorten a long sed command.
14876
14877 2004-12-12  Paul Eggert  <eggert@cs.ucla.edu>
14878
14879         * modules/getcwd (Files): Add m4/d-ino.m4.
14880         Suggested by Mark D. Baushke.
14881
14882 2004-12-08  Paul Eggert  <eggert@cs.ucla.edu>
14883
14884         * lib/getdate.y (textint): New member "negative".
14885         (time_zone_hhmm): New function.
14886         Expect 14 shift-reduce conflicts, not 13.
14887         (o_colon_minutes): New rule.
14888         (time, zone): Use it to add support for +HH:MM, UTC+HH:MM.
14889         (yylex): Set the "negative" member of signed numbers.
14890
14891 2004-12-08  Paul Eggert  <eggert@cs.ucla.edu>
14892
14893         * doc/getdate.texi (Time of day items, Time zone items):
14894         Describe new formats +00:00, UTC+00:00.
14895
14896 2004-12-07  Paul Eggert  <eggert@cs.ucla.edu>
14897
14898         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): Fix typo in previous change:
14899         spurious "-l"s.  Problem reported by Stepan Kasal.
14900
14901 2004-12-06  Paul Eggert  <eggert@cs.ucla.edu>
14902
14903         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): New macro, to work around bug
14904         in Autoconf 2.59.  Problem reported by Mark D. Baushke.
14905
14906 2004-12-04  Simon Josefsson  <jas@extundo.com>
14907
14908         * modules/getaddrinfo (License): Add LGPL, reported by Yoann
14909         Vandoorselaere <yoann@prelude-ids.org>.
14910
14911 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
14912
14913         Changes imported from coreutils.
14914         * m4/hard-locale.m4 (gl_HARD_LOCALE): Assume locale.h and setlocale
14915         exist.
14916         * m4/human.m4 (gl_HUMAN): Assume locale.h and localeconv exist.
14917
14918 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
14919
14920         Changes imported from coreutils.
14921         * lib/hard-locale.c: Assume <locale.h> exists.
14922         Include "strdup.h".
14923         (GLIBC_VERSION): New macro.
14924         (hard_locale): Assume setlocale exists.
14925         Rewrite to avoid #ifdef.
14926         Use strdup rather than malloc + strcpy.
14927         * lib/human.c: Assume <locale.h> exists.
14928         (human_readable): Assume localeconv exists.
14929
14930 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
14931
14932         * modules/hard-locale (Depends-on): Add strdup.
14933
14934 2004-12-01  Jakub Jelinek  <jakub@redhat.com>
14935
14936         * lib/mktime.c (__mktime_internal): If SEC_REQUESTED != SEC,
14937         convert T2, not T.  (Imported from libc.)
14938
14939 2004-11-30  Simon Josefsson  <jas@extundo.com>
14940
14941         * modules/restrict (License): Change to LGPL.
14942
14943 2004-11-30  Simon Josefsson  <jas@extundo.com>
14944
14945         * m4/restrict.m4: Add copyright and copying conditions.
14946
14947 2004-11-30  Simon Josefsson  <jas@extundo.com>
14948
14949         * m4/base64.m4: New file.
14950
14951 2004-11-30  Simon Josefsson  <jas@extundo.com>
14952
14953         * MODULES.html.sh (Extra functions based on ANSI C 89): Add
14954         base64.
14955
14956         * tests/test-base64.c: New file.
14957
14958         * modules/base64: New file.
14959
14960 2004-11-30  Paul Eggert  <eggert@cs.ucla.edu>
14961
14962         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX):
14963         Define HAVE_PARTLY_WORKING_GETCWD if getcwd is partly working.
14964
14965         * m4/readutmp.m4 (gl_READUTMP): Don't check for sys/param.h.
14966
14967 2004-11-30  Paul Eggert  <eggert@cs.ucla.edu>
14968
14969         * lib/getcwd.c (is_ENAMETOOLONG): New macro.
14970         (__getcwd.c): Don't restore errno; glibc doesn't.
14971         [HAVE_PARTLY_WORKING_GETCWD && !defined AT_FDCWD]: Try system getcwd
14972         first, falling back to our code only if its results look suspicious.
14973         Ensure that the resulting buffer is only as large as necessary.
14974
14975         * lib/readutmp.c: Include readutmp.h first.
14976         Include <errno.h>, since readutmp.h no longer does that.
14977         * lib/readutmp.h: Don't include <errno.h>,
14978         <sys/param.h>, <time.h>; not needed to establish interface.
14979         (errno): Remove decl.
14980         (HAVE_STRUCT_XTMP_UT_TYPE): Remove; no longer needed.
14981         (UT_TYPE_EQ, UT_TYPE_NOT_DEFINED, UT_TYPE_BOOT_TIME,
14982         UT_TYPE_USER_PROCESS, IS_USER_PROCESS): New macros.
14983
14984 2004-11-28  Simon Josefsson  <jas@extundo.com>
14985
14986         * lib/base64.h, base64.c: New file.
14987
14988 2004-11-27  Paul Eggert  <eggert@cs.ucla.edu>
14989
14990         * lib/getcwd.h: New file, which I forgot to check in on 2004-11-25.
14991
14992 2004-11-26  Paul Eggert  <eggert@cs.ucla.edu>
14993
14994         * modules/getcwd (Files): Add lib/getcwd.h, m4/getcwd.m4.
14995         (Depends-on): Remove pathmax, same.  Add mempcpy.
14996         (configure.ac): GL_FUNC_GETCWD_PATH_MAX -> gl_FUNC_GETCWD.
14997         (Makefile.am): Append getcwd.h to lib_SOURCES.
14998         (Include): Add getcwd.h.
14999         (Maintainer): Change from Jim Meyering to "all, glibc",
15000         since getdate now uses intended-for-glibc code.
15001         * modules/xgetcwd (Files): Remove m4/getcwd.m4.
15002         (Depends-on): Depend on getcwd.  Do not depend on pathmax.
15003
15004 2004-11-25  Paul Eggert  <eggert@cs.ucla.edu>
15005
15006         Fix problems reported by Scott S. Tinsley for HP-UX 11.11 using
15007         HP's ANSI C compiler.
15008         * lib/fsusage.c (statvfs) [HAVE_SYS_STATVFS_H]: Remove decl.
15009         Declaring int functions causes warnings on some modern systems and
15010         shouldn't be needed to compile on ancient ones.
15011         * lib/same.c (MIN) [defined MIN]: Don't define, since it's already
15012         defined.
15013
15014         * lib/getcwd.c: Replace by a copy of glibc/sysdeps/posix/getcwd.c, but
15015         with the following changes.
15016         (__set_errno): Parenthesize properly.
15017         Include <stdbool.h>.
15018         (MIN, MAX, MATCHING_INO): New macros.
15019         (__getcwd): Define with prototype, not K&R form.
15020         Use heuristics to allocate default buffer on stack if possible.
15021         If AT_FDCWD is defined, use openat and fstatat to avoid O(N**2)
15022         behavior, and to avoid the PATH_MAX limit when computing
15023         ../../../../...
15024         Use MATCHING_INO to compare inode number to file.
15025         Check for arithmetic overflow in size calculations.
15026         Fix bug in reallocation of dot array that caused getcwd to fail
15027         on directories nested deeper than 75.
15028         Be more careful about saving errno on error.
15029         Do not use realloc; use only free+malloc, as this is a bit
15030         more flexible and avoids a needless copy operation.
15031         Do not inspect st_dev and st_ino for symbolic links; POSIX
15032         doesn't specify the latter.
15033         Check for closedir errors.
15034         Avoid needless casts.
15035         Use "#ifdef weak_alias" around weak_alias, to be like other
15036         glibc code.
15037         The following changes to getcwd.c have effect only when used in
15038         gnulib; they have no effect inside glibc proper.
15039         (#pragma alloca) [defined _AIX && !defined __GNUC__]: Remove,
15040         as alloca isn't used.
15041         (alloca, __alloca): Likewise.
15042         [!_LIBC]: Include "getcwd.h", "mempcpy.h".
15043         Include <stddef.h>, <stdlib.h>, <string.h>, <limits.h>
15044         unconditionally, as gnulib assumes C89 or better.
15045         Do not include <sys/param.h>.
15046         (errno) [!defined __GNU_LIBRARY__ && !defined STDC_HEADERS]: Remove
15047         no-longer-necessary 'extern int errno' decl; gnulib assumes C89 or
15048         better.
15049         (NULL) [!defined NULL]: Remove; we assume C89 or better.
15050         Include <dirent.h> in a way that is compatible with modern Autoconf.
15051         (_D_ALLOC_NAMELEN, _D_EXACT_NAMLEN):
15052         New macros, if not already defined.
15053         Include <unistd.h> if _LIBC, not if __GNU_LIBRARY__.
15054         Use "_LIBC", not "defined _LIBC", for consistency.
15055         (HAVE_MEMPCPY): Remove; no longer needed now that gnulib has
15056         a mempcpy module.
15057         (__lstat, __closedir, __opendir, __readdir) [!_LIBC]: New macros.
15058         (GETCWD_RETURN_TYPE): Remove.  All uses replaced by char *.
15059         * lib/xgetcwd.c: David MacKenzie's old code was removed, so give
15060         credit only to Jim Meyering and adjust the copyright dates.
15061         Do not include <limits.h>, <stdio.h>, <sys/types.h>,
15062         <stdlib.h>, <unistd.h>, "pathmax.h".
15063         Instead, include "xgetcwd.h" (first) and "getcwd.h".
15064         (INITIAL_BUFFER_SIZE): Remove.
15065         (xgetcwd): Rely on getcwd, since we now depend on a reliable one.
15066
15067 2004-11-25  Paul Eggert  <eggert@cs.ucla.edu>
15068
15069         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Renamed from
15070         GL_FUNC_GETCWD_PATH_MAX for consistency.  All uses changed.
15071         Use the _ONCE methods, for efficiency.
15072         Check for fcntl.h.  In test program, include <errno.h>
15073         and <fcntl.h> if available.  Remove old K&R cruft from
15074         test program.  Check for common errors in GNU/Linux,
15075         OpenBSD, and Solaris.  Just set gl_cv_func_getcwd_path_max;
15076         don't do AC_LIBOBJ, as that's getcwd.m4's job.
15077         * m4/getcwd.m4 (gl_FUNC_GETCWD_NULL): Renamed from
15078         AC_FUNC_GETCWD_NULL.  All used changed.  Change cache variable
15079         name accordingly.
15080         (gl_FUNC_GETCWD, gl_PREREQ_GETCWD): New macros.  Revamp to
15081         accommodate new getcwd.c.
15082         * m4/jm-macros.m4 (gl_MACROS): Don't require GL_FUNC_GETCWD_PATH_MAX.
15083         * m4/prereq.m4 (gl_PREREQ): Add gl_FUNC_MEMPCPY.
15084         * m4/xgetcwd.m4 (gl_XGETCWD): Replace with gl_FUNC_GETCWD, since
15085         that's all we need now.
15086
15087 2004-11-23  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
15088
15089         * m4/argp.m4 (gl_ARGP): Require gl_GETOPT_SUBSTITUTE unconditionally:
15090         argp-parse.c depends on getopt internals, that means we should
15091         always use our getopt, to be on the safe side.
15092         * m4/getopt.m4 (gl_GETOPT): Check if GETOPT_H is already set, in
15093         order not to spoil the result of an eventual previous invocation
15094         of gl_GETOPT_SUBSTITUTE.
15095
15096 2004-11-23  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
15097
15098         * lib/getopt_.h: Re-addition of __getopt_argv_const caused
15099         redefinition warnings. To avoid them, include the defines
15100         in `#if !defined __need_getopt ... #endif'. The only place
15101         where __getopt_argv_const is used is in definitions
15102         of getopt_long and getopt_long_only below, which are as well
15103         protected by `#ifndef __need_getopt'.
15104         [defined __GETOPT_PREFIX && !defined __need_getopt]: Undef
15105         __need_getopt after including <stdio.h> and <unistd.h> These
15106         headers might have defined it.
15107
15108 2004-11-23  Paul Eggert  <eggert@cs.ucla.edu>
15109
15110         * m4/utimens.m4 (gl_UTIMENS): Check for futimes function.
15111
15112 2004-11-23  Paul Eggert  <eggert@cs.ucla.edu>
15113
15114         * lib/utimens.c (__attribute__, ATTRIBUTE_UNUSED): New macros.
15115         (futimens): New function, which uses futimes if available.
15116         (futimens, utimens): Support timespec==NULL, with same semantics
15117         as utime and utimens.
15118         * lib/utimens.h (futimens): New decl.
15119
15120 2004-11-23  Jim Meyering  <jim@meyering.net>
15121
15122         * lib/getopt_.h: Remove trailing blanks.
15123
15124 2004-11-23  Jim Meyering  <jim@meyering.net>
15125
15126         * lib/__fpending.c: Add comment.
15127
15128 2004-11-22  Paul Eggert  <eggert@cs.ucla.edu>
15129
15130         * modules/canonicalize (Depends-on): Add xreadlink.
15131         Problem reported by James Youngman.
15132
15133 2004-11-20  Paul Eggert  <eggert@cs.ucla.edu>
15134
15135         * lib/getopt_.h (__GETOPT_CONCAT, __GETOPT_XCONCAT, __GETOPT_ID):
15136         New macros.
15137         (getopt, getopt_long, getopt_long_only, optarg, opterr, optind,
15138         optopt): Use them instead of invoking ## directly; otherwise, the
15139         symbols will be __GETOPT_PREFIXgetopt rather than rpl_getopt.
15140
15141 2004-11-19  Bruno Haible  <bruno@clisp.org>
15142
15143         * lib/strtok_r.c: Move comments from here...
15144         * lib/strtok_r.h: ... to here.
15145
15146 2004-11-17  Paul Eggert  <eggert@cs.ucla.edu>
15147
15148         * m4/calloc.m4 (_AC_FUNC_CALLOC_IF): Check for buggy calloc
15149         implementations that mishandle size_t overflow.
15150
15151 2004-11-17  Paul Eggert  <eggert@cs.ucla.edu>
15152
15153         * lib/realloc.c (rpl_realloc): Call 'free' if n==0, since realloc
15154         might fail.  Problem reported by Yoann Vandoorselaere.
15155         * lib/calloc.c (rpl_calloc): Defend against buggy calloc
15156         implementations that mishandle size_t overflow.
15157
15158 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
15159
15160         * modules/canon-host (Depends-on): Add strdup.
15161
15162 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
15163
15164         * m4/canon-host.m4 (gl_CANON_HOST): Check for getaddrinfo.
15165
15166 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
15167
15168         * lib/canon-host.c: Include "strdup.h".
15169         (canon_host): Use getaddrinfo if available, so that IPv6 works.
15170         Use strdup instead of malloc/strcpy to duplicate strings.
15171
15172         * lib/human.h (LONGEST_HUMAN_READABLE): Add 1 for space before unit.
15173         (human_space_before_unit): New constant.
15174         * lib/human.c (human_readable): Support it.
15175
15176         * lib/xgetcwd.c: Include <limits.h>, for PATH_MAX.
15177         (xgetcwd): Set errno correctly when failing.
15178         Work around Solaris 9 bug: getcwd sets errno==ERANGE even though
15179         the failure is actually due to a PATH_MAX problem.
15180
15181         Further getopt changes to make it more likely that glibc will
15182         buy the changes back.
15183         * lib/getopt.c (POSIXLY_CORRECT): New constant.
15184         (getopt): Use it, so to preserve glibc semantic
15185         * lib/getopt1.c (getopt_long, getopt_long_only): Arg is char * const *
15186         when compiling for libc.
15187         * lib/getopt_.h (__getopt_argv_const): Bring it back.
15188         (getopt_long, getopt_long_only): Use it.
15189
15190         * lib/getopt.c (_getopt_initialize, _getopt_internal_r,
15191         _getopt_internal): New arg POSIXLY_CORRECT.  All callers changed.
15192         (getopt): Argv is now char * const *, as per standard.
15193         (_getopt_internal_r, _getopt_internal): Argv is now char **,
15194         not char *__getopt_argv_const *.
15195         * lib/getopt1.c (getopt_long, _getopt_long_r, getopt_long_only,
15196         _getopt_long_only_r): Likewise.
15197         * lib/getopt_.h (getopt, getopt_long, geopt_long_only): Likewise.
15198         * lib/getopt_int.h (_getopt_internal, _getopt_internal_r,
15199         _getopt_long_r, _getopt_long_only_r): Likewise.
15200         * lib/getopt_.h (__getopt_argv_const): Remove.
15201         (getopt): Argv is now char * const *, as per standard.
15202
15203         * lib/getdate.y (tORDINAL): New token.
15204         (day, relunit): Allow it for relative times.
15205         (relative_time_table): Use tORDINAL for ordinals.
15206
15207 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
15208
15209         * doc/getdate.texi (General date syntax): "next" is 1, not 2.
15210         Document that "second" isn't allowed as an ordinal number.
15211
15212 2004-11-16  Jim Meyering  <jim@meyering.net>
15213
15214         * modules/closeout (Depends-on): Add fpending.
15215
15216 2004-11-15  Jim Meyering  <jim@meyering.net>
15217
15218         * lib/closeout.c: Include "__fpending.h" once again.
15219         Include <stdbool.h>.
15220         (close_stdout): Don't fail just because stdout was closed initially,
15221         since some programs don't write to stdout in the normal course of
15222         operation (other than --version and --help), and we don't want this
15223         function to make e.g. `touch file >&-' fail.
15224         But do fail if it was closed and someone has tried to write to it.
15225         E.g., `printf foo >&-' must fail.
15226
15227 2004-11-13  Jim Meyering  <jim@meyering.net>
15228
15229         * m4/jm-macros.m4: Do require gl_FUNC_FPENDING.
15230
15231 2004-11-12  Simon Josefsson  <jas@extundo.com>
15232
15233         * config/srclist.txt: Add strtok_r.c, glibc bought our changes, but a
15234         small doc fix is still pending.
15235
15236 2004-11-11  Simon Josefsson  <jas@extundo.com>
15237
15238         * modules/strtok_r: New file.
15239
15240         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
15241         strtok_r.
15242
15243 2004-11-11  Simon Josefsson  <jas@extundo.com>
15244
15245         * m4/strtok_r.m4: New file.
15246
15247         * m4/getopt.m4: Replace opterr.
15248
15249 2004-11-11  Simon Josefsson  <jas@extundo.com>
15250
15251         * lib/strtok_r.h, strtok_r.c: New file.
15252
15253 2004-11-11  Paul Eggert  <eggert@cs.ucla.edu>
15254
15255         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE): Define __GETOPT_PREFIX instead
15256         of replacing opterr, getopt, etc.  This should handle the
15257         powerpc-apple-darwin5.5 problem recently noted by Simon Josefsson.
15258
15259 2004-11-11  Paul Eggert  <eggert@cs.ucla.edu>
15260
15261         * lib/getopt_.h (__getopt_argv_const): New macro, to be used so that
15262         we can stop lying to compilers about the constness of argv when we
15263         are compiled outside glibc.
15264         (getopt, getopt_long, getopt_long_only): Use it.
15265         * lib/getopt.c (_getopt_initialize, _getopt_internal_r,
15266         _getopt_internal, getopt): Likewise.
15267         * lib/getopt1.c (getopt_long, _getopt_long_r, getopt_long_only,
15268         _getopt_long_only_r): Likewise.
15269         * lib/getopt_int.h (_getopt_internal, _getopt_internal_r,
15270         _getopt_long_r, _getopt_long_only_r): Likewise.
15271
15272         * lib/getopt_.h [defined __GETOPT_PREFIX && !defined __need_getopt]:
15273         Include <stdlib.h> and <stdio.h>, and <unistd.h> if available.
15274         Then rename getopt to __GETOPT_PREFIX##getopt, and so forth for
15275         the other external symbols.
15276         (getopt) [!defined __GNU_LIBRARY]: Use prototype, not old-style
15277         declaration, since the above renaming now works around collisions.
15278
15279 2004-11-11  Jim Meyering  <jim@meyering.net>
15280
15281         * lib/linebreak.c: Remove trailing blanks.
15282         * lib/alloca_.h: Likewise.
15283         * lib/acosl.c: Likewise.
15284         * lib/euidaccess.c: Likewise.
15285         * lib/allocsa.h: Likewise.
15286
15287 2004-11-10  Simon Josefsson  <jas@extundo.com>
15288
15289         * m4/getaddrinfo.m4: New file.
15290
15291 2004-11-10  Simon Josefsson  <jas@extundo.com>
15292
15293         * lib/getaddrinfo.h, lib/getaddrinfo.c: New files.
15294
15295 2004-11-10  Simon Josefsson  <jas@extundo.com>
15296
15297         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
15298         getaddrinfo.
15299
15300         * modules/getaddrinfo: New file.
15301
15302 2004-11-10  Paul Eggert  <eggert@cs.ucla.edu>
15303
15304         * m4/prereq.m4 (gl_PREREQ): Require gt_FUNC_SETENV.
15305
15306 2004-11-10  Paul Eggert  <eggert@cs.ucla.edu>
15307
15308         * lib/mktime.c (SHR): New macro, which is a portable
15309         substitute for >> that should work even on Crays.
15310         (TIME_T_MIDPOINT, ydhms_diff, __mktime_internal): Use it.
15311         Problem reported by Mark D. Baushke in
15312         <http://lists.gnu.org/archive/html/bug-gnulib/2004-11/msg00071.html>.
15313         * lib/getdate.y (SHR): Likewise.
15314         (tm_diff): Use it.
15315         * lib/strftime.c (SHR): Likewise.
15316         (tm_diff): Use it.
15317         * lib/quotearg.c (struct quoting_options): Use unsigned int for
15318         quote_these_too, so that right shifts are well defined.  All uses
15319         changed.
15320
15321 2004-11-10  Jim Meyering  <jim@meyering.net>
15322
15323         Ensure that no close failure goes unreported.
15324         * lib/closeout.c (close_stdout): Always close stdout.  I.e., don't
15325         return early when it seems there's nothing to flush.
15326         Don't include __fpending.h.
15327
15328 2004-11-10  Jim Meyering  <jim@meyering.net>
15329
15330         * modules/closeout (Depends-on): Remove fpending.
15331
15332 2004-11-10  Jim Meyering  <jim@meyering.net>
15333
15334         * m4/jm-macros.m4 (gl_MACROS): Don't require gl_FUNC_FPENDING.
15335
15336 2004-11-09  Paul Eggert  <eggert@cs.ucla.edu>
15337
15338         * m4/strftime.m4 (_gl_STRFTIME_PREREQS): Remove.  Move its body to
15339         gl_FUNC_STRFTIME.
15340         (gl_FUNC_STRFTIME): Use AC_CHECK_FUNCS_ONCE and AC_CHECK_HEADERS_ONCE
15341         and AC_REQUIRE when possible, to avoid duplicate checks.
15342         Check for <wchar.h>.
15343
15344 2004-11-09  Paul Eggert  <eggert@cs.ucla.edu>
15345
15346         * lib/strftime.c (DO_MULTIBYTE): Check for wchar.h, too.
15347
15348 2004-11-09  Bruno Haible  <bruno@clisp.org>
15349
15350         * m4/sockpfaf.m4: New file.
15351
15352 2004-11-05  Bruno Haible  <bruno@clisp.org>
15353
15354         * lib/readlink.c: Include stddef.h, needed for size_t on Woe32.
15355         Reported by Mark D. Baushke <mdb@cvshome.org>.
15356
15357 2004-11-04  Bruno Haible  <bruno@clisp.org>
15358
15359         2004-09-11  Bruno Haible  <bruno@clisp.org>
15360                 * allocsa.valgrind: New file.
15361         2004-02-06  Bruno Haible  <bruno@clisp.org>
15362                 * allocsa.h (sa_alignof): Define differently with HP-UX cc, to
15363                 avoid a bug of this cc on HP-UX 10.20 dealing with enums.
15364                 Reported by Christopher Seip <chris.seip@hp.com>.
15365
15366 2004-11-04  Bruno Haible  <bruno@clisp.org>
15367
15368         * modules/allocsa (Files): Add lib/allocsa.valgrind.
15369         (Makefile.am): Distribute it.
15370
15371 2004-11-03  Paul Eggert  <eggert@cs.ucla.edu>
15372
15373         * lib/xreadlink.c (xreadlink): AIX and HP-UX readlink return -1
15374         with errno == ERANGE if the buffer is too small.
15375         Problem reported by Mark D. Baushke.
15376
15377 2004-11-03  Albert Chin  <china@thewrittenword.com>
15378             Paul Eggert  <eggert@cs.ucla.edu>
15379
15380         * m4/uint32_t.m4 (gl_AC_TYPE_UINT32_T): When determining uint32_t
15381         equivalent, substitute $ac_type for equivalent type rather than
15382         blindly using uint32_t *always* which won't work if uint32_t is not
15383         available.  Define _UINT32_T to work around typedef of uint32_t if
15384         <sys/sched.h>, <pthread.h>, or <semaphore.h> used on Solaris
15385         2.5.1.
15386
15387 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
15388
15389         * m4/jm-macros.m4: Sync from coreutils.
15390         (gl_MACROS): Check for mbrlen, for pathchk.
15391         (gl_CHECK_ALL_TYPES): Require AC_TYPE_MBSTATE_T, for pathchk.
15392
15393 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
15394
15395         * lib/xreadlink.c (MAXSIZE): New macro.
15396         (xreadlink): Use it instead of SSIZE_MAX.  Ensure initial buffer
15397         size does not exceed MAXSIZE.  Avoid cast.
15398         As suggested by Mark D. Baushke in
15399         <http://lists.gnu.org/archive/html/bug-gnulib/2004-11/msg00009.html>,
15400         if readlink fails with buffer size just under MAXSIZE, try again
15401         with MAXSIZE.
15402
15403 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
15404
15405         * config/srclist.txt: Add mktime.c; glibc bought all our changes.
15406
15407 2004-11-02  Derek R. Price  <derek@ximbiot.com>
15408         and  Paul Eggert  <eggert@cs.ucla.edu>
15409
15410         * lib/getdate.y [!TEST]: Include <stdio.h>, since we use sprintf now.
15411         (get_date): Overparenthesize to avoid GCC warning.
15412
15413 2004-11-02  Bruno Haible  <bruno@clisp.org>
15414
15415         * m4/setenv.m4 (gt_FUNC_SETENV): Define VOID_UNSETENV if unsetenv()
15416         returns void.
15417
15418 2004-11-02  Bruno Haible  <bruno@clisp.org>
15419
15420         * lib/setenv.h (unsetenv): Define as a macro if the system's unsetenv()
15421         function returns void.
15422
15423 2004-11-01  Paul Eggert  <eggert@cs.ucla.edu>
15424
15425         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for declarations of
15426         fflush_unlocked, flockfile, funlockfile, funlockfile,
15427         fputs_unlocked, putc_unlocked.
15428
15429 2004-11-01  Paul Eggert  <eggert@cs.ucla.edu>
15430
15431         * lib/getpass.c (fflush_unlocked, flockfile, funlockfile)
15432         (funlockfile, fputs_unlocked, putc_unlocked): Don't define if
15433         already declared.
15434
15435 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
15436
15437         * modules/getdate (Files): Add doc/getdate.texi.
15438         (Depends-on): Add setenv, xalloc.
15439
15440 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
15441
15442         * lib/getdate.y: Add support for TZ="foo" within a date string.
15443         Fix some bugs near time_t boundaries.  Reject dates with
15444         out-of-range components, e.g., "Sept 31".
15445         Include <stdlib.h>, "setenv.h", "xalloc.h".
15446         (ISDIGIT_LOCALE): Remove; unused.
15447         Note that the TZ and time functions used here are not reentrant.
15448         (mktime_ok, get_tz): New functions.
15449         (TZBUFSIZE): New constant.
15450         (get_date): Parse leading TZ="foo".  Reject out-of-range components;.
15451         This requires that we sometimes generate our own TZ="XXX..." setting.
15452
15453 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
15454
15455         * doc/getdate.texi: New file, from coreutils with modifications for
15456         the new TZ parsing.
15457
15458 2004-10-27  Derek R. Price  <derek@ximbiot.com>
15459
15460         * lib/mktime.c (not_equal_tm): Remove redundant check.
15461
15462 2004-10-24  Paul Eggert  <eggert@cs.ucla.edu>
15463
15464         * modules/regex (lib_SOURCES): Add regex.c.
15465         Reported by James Youngman in
15466         <http://lists.gnu.org/archive/html/bug-gnulib/2004-10/msg00199.html>.
15467
15468 2004-10-24  Paul Eggert  <eggert@cs.ucla.edu>
15469
15470         * lib/getdate.y: Use Bison 1.875 features, and some minor
15471         code cleanups.  This change does not affect semantics.
15472         Don't include <stdlib.h>; no longer needed.
15473         Don't include unlocked-io.h; only the "#if TEST" code uses
15474         stdio, and performance isn't crucial there.
15475         (PC, YYLEX_PARAM, YYPARSE_PARAM): Remove; replaced by
15476         Bison 1.875 features as described below.
15477         All uses of "PC." replaced by "pc->".
15478         (YYSTYPE): Add a forward declaration.
15479         (yylex, yyerror): Use full prototypes in forward decls.
15480         Use "%pure-parser" rather than obsolescent "%pure_parser".
15481         Use %parse-param and %lex-param instead of obsolescent
15482         YYPARSE_PARAM and YYLEX_PARAM.
15483         (meridian_table, month_and_day_table, time_units_table,
15484         relative_time_table, time_zone_table, military_table,
15485         lookup_zone, lookup_word, get_date):
15486         Use NULL instead of 0 where appropriate.
15487         (to_hour): Avoid abort (), to avoid a dependency on
15488         stdlib.h.
15489         (yyerror, yylex): Now accepts parser_control * arg.
15490         (main) [TEST]: Use '\0' rather than 0 for char.
15491
15492 2004-10-22  Paul Eggert  <eggert@cs.ucla.edu>
15493
15494         * m4/getpagesize.m4 (gl_GETPAGESIZE): Check for <sys/param.h>.
15495
15496 2004-10-22  Paul Eggert  <eggert@cs.ucla.edu>
15497
15498         * lib/getpagesize.c (getpagesize): Don't assume <sys/param.h> exists.
15499         It's now the caller's responsibility to handle the case where
15500         !HAVE_GETPAGESIZE && !defined getpagesize.
15501
15502         * lib/mktime.c (leapyear): Arg is long int, not int.
15503
15504 2004-10-18  Paul Eggert  <eggert@cs.ucla.edu>
15505
15506         * lib/argp-fs-xinl.c, argp-xinl.c: Update from glibc.
15507
15508 2004-10-17  Paul Eggert  <eggert@cs.ucla.edu>
15509
15510         * gnulib-tool (func_emit_lib_Makefile_am): Fix typo: a $ was
15511         missing.  Problem reported by James Youngman.
15512
15513 2004-10-16  Simon Josefsson  <jas@extundo.com>
15514
15515         * gnulib-tool: Fix comments.  Fix parse problem.
15516         (func_emit_lib_Makefile_am): Don't hard code a in libgl_a_SOURCES.
15517
15518 2004-10-15  Paul Eggert  <eggert@cs.ucla.edu>
15519
15520         * m4/getopt.m4 (gl_GETOPT): Detect and reject the incompatible BSD
15521         implementation of getopt_long.  Problem reported by Alexander Taler in:
15522         http://lists.gnu.org/archive/html/bug-gnulib/2004-10/msg00103.html
15523
15524 2004-10-15  Bruno Haible  <bruno@clisp.org>
15525
15526         * gnulib-tool: Untabify. Initialize supplied_libname.
15527         (func_usage): More homogenous output.
15528         (func_modules_transitive_closure, func_modules_to_filelist,
15529         func_emit_lib_Makefile_am): New functions.
15530         (func_import): New function, extracted from big case statement. Use
15531         func_get_license, func_modules_transitive_closure,
15532         func_modules_to_filelist, func_emit_lib_Makefile_am. Initialize
15533         opt_lgpl. Don't use test -a, as it's not portable.
15534         (func_create_testdir): Use func_modules_transitive_closure,
15535         func_modules_to_filelist, func_emit_lib_Makefile_am.
15536
15537 2004-10-15  Bruno Haible  <bruno@clisp.org>
15538
15539         * gnulib-tool (func_import): Let gl_INIT define LTALLOCA when needed.
15540
15541 2004-10-15  Bruno Haible  <bruno@clisp.org>
15542
15543         * gnulib-tool (func_emit_lib_Makefile_am): Add markers to separate
15544         the portions belonging to each module.
15545         Suggested by Derek Robert Price <derek@ximbiot.com>.
15546
15547 2004-10-12  Simon Josefsson  <jas@extundo.com>
15548
15549         * lib/getpass.c (fflush_unlocked, flockfile, funlockfile)
15550         (fputs_unlocked, putc_unlocked) [!_LIBCS && !USE_UNLOCKED_IO]: Map
15551         to real functions.
15552
15553 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
15554
15555         * modules/vsnprintf: New file.
15556
15557 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
15558
15559         * m4/vsnprintf.m4: New file.
15560
15561 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
15562
15563         * lib/vsnprintf.h: New file.
15564         * lib/vsnprintf.c: New file.
15565
15566 2004-10-11  Bruno Haible  <bruno@clisp.org>
15567
15568         * MODULES.html.sh (Support for systems lacking ISO C 99): Add
15569         vsnprintf.
15570
15571 2004-10-10  Paul Eggert  <eggert@cs.ucla.edu>
15572
15573         * config/srclistvars.sh: Add GNUSTANDARDS (for eggert only).
15574
15575 2004-10-07  Bruno Haible  <bruno@clisp.org>
15576
15577         * lib/snprintf.c (snprintf): Avoid a memory allocation if the result
15578         fits into the provided buffer.
15579
15580 2004-10-06  Paul Eggert  <eggert@cs.ucla.edu>
15581
15582         * lib/diacrit.c, diacrit.h: Add GPL notice.
15583
15584         * lib/atanl.c, logl.c: Add GPL notice, to match glibc's added LGPL
15585         notice.
15586         * lib/atanl.c (atanl): Keep the code as similar to glibc as possible.
15587         * lib/logl.c (logl): Keep the code as similar to glibc as possible.
15588         This avoids a potential constant-folding bug.
15589
15590 2004-10-05  Bruno Haible  <bruno@clisp.org>
15591
15592         * m4/strsep.m4 (gl_FUNC_STRSEP): Require AC_GNU_SOURCE. Don't check
15593         for the declaration of strsep.
15594
15595 2004-10-05  Bruno Haible  <bruno@clisp.org>
15596
15597         * lib/strsep.h: Don't declare strsep() if HAVE_STRSEP.
15598
15599 2004-10-04  Simon Josefsson  <jas@extundo.com>
15600
15601         * modules/memmem: New file.
15602         * tests/test-memmem.c: New file.
15603         * MODULES.html.sh (Extra functions based on ANSI C 89): Add memmem.
15604
15605 2004-10-04  Simon Josefsson  <jas@extundo.com>
15606
15607         * m4/memmem.m4: New file.
15608
15609 2004-10-04  Simon Josefsson  <jas@extundo.com>
15610
15611         * lib/memmem.h: New file.
15612         * lib/memmem.c: New file, taken from glibc.
15613
15614 2004-10-04  Simon Josefsson  <jas@extundo.com>
15615
15616         * lib/error.c, md5.c, regex.c: Use '#if USE_UNLOCKED_IO' instead of
15617         '#ifdef USE_UNLOCKED_IO'.
15618
15619 2004-10-04  Simon Josefsson  <jas@extundo.com>
15620
15621         * config/srclist.txt: Add memmem from glibc.
15622
15623 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
15624
15625         * modules/xalloc (Files, Makefile.am): Remove xstrdup.c.
15626
15627         * modules/argmatch, modules/argp, modules/closeout, modules/error,
15628         modules/exclude, modules/getdate, modules/getline,
15629         modules/getndelim2, modules/getpass, modules/getpass-gnu,
15630         modules/getusershell, modules/linebuffer, modules/md5,
15631         modules/mountlist, modules/posixtm, modules/readtokens,
15632         modules/readutmp, modules/regex, modules/sha1,
15633         modules/version-etc, modules/yesno:
15634         Remove dependency on unlocked-io.
15635
15636 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
15637
15638         * m4/xalloc.m4 (gl_PREREQ_XSTRDUP): Remove.  All uses removed.
15639
15640         * m4/unlocked-io.m4: Add copyright notice.
15641         (gl_FUNC_GLIBC_UNLOCKED_IO): Define USE_UNLOCKED_IO.
15642
15643 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
15644
15645         * lib/xalloc.h (xmemdup): Renamed from xclone.  All uses changed.
15646         * lib/xmalloc.c (xmemdup): Likewise.
15647         * lib/xalloc.h (CCLONE, CLONE, NEW, XCALLOC, XMALLOC, XREALLOC,
15648         XFREE): Remove these long-obsolescent macros.
15649         * lib/xmalloc.c (xstrdup): Implementation moved here from xstrdup.c
15650         * lib/xstrdup.c: Remove.
15651
15652         * lib/regex.c (re_comp): Cast gettext return value to char *,
15653         Problem reported by Martin Neitzel via Mark D. Baushke.
15654
15655 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
15656
15657         * lib/argmatch.c, closeout.c, error.c, exclude.c, getdate.y,
15658         getndelim2.c, getpass.c, getusershell.c, linebuffer.c,
15659         md5.c, mountlist.c, posixtm.c, readtokens.c, readutmp.c,
15660         regex.c, sha1.c, version-etc.c, yesno.c:
15661         Include "unlocked-io.h" only if USE_UNLOCKED_IO.
15662         * lib/unlocked-io.h: Don't worry about USE_UNLOCKED_IO; that's now
15663         the includer's responsibility.
15664
15665         Sync from coreutils.
15666
15667         * lib/modechange.c (mode_compile): Don't decrement a pointer that
15668         points to the start of a string, as the C Standard says the
15669         resulting behavior is undefined.
15670
15671         * lib/backupfile.h (enum backuptype): Rename none -> no_backups,
15672         simple -> simple_backups, numbered_existing ->
15673         numbered_existing_backups, numbered -> numbered_backups
15674         to avoid shadowing problems.  All uses changed.
15675         * lib/argmatch.c (enum backuptype) [defined TEST]: Likewise.
15676         * lib/backupfile.c (check_extension, numbered_backup):
15677         Rename locals to avoid shadowing 'basename'.
15678         * lib/backupfile.h (VALID_BACKUP_TYPE): Don't evaluate arg more than
15679         once.
15680
15681         * lib/.cppi-disable: Add getopt_.h, getopt_int.h.
15682         * lib/.cvsignore: Add getopt.h.
15683
15684 2004-10-04  Bruno Haible  <bruno@clisp.org>
15685
15686         * modules/README: New file.
15687         * gnulib-tool (func_all_modules, func_verify_module): modules/README is
15688         not a module.
15689
15690 2004-10-02  Jim Meyering  <jim@meyering.net>
15691
15692         * lib/dirfd.h, getpagesize.h: Add copyright notice.
15693
15694 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
15695
15696         * modules/strsep: New file.
15697
15698 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
15699
15700         * m4/strsep.m4: New file.
15701
15702 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
15703
15704         * lib/strsep.h: New file.
15705         * lib/strsep.c: New file.
15706
15707 2004-10-01  Simon Josefsson  <jas@extundo.com>
15708
15709         * lib/snprintf.c (snprintf): Handle size==0.
15710
15711 2004-10-01  Simon Josefsson  <jas@extundo.com>
15712             Bruno Haible  <bruno@clisp.org>
15713
15714         * lib/snprintf.c: Include <stdarg.h>, <stdlib.h>, <string.h>.
15715         (snprintf): Declare 'args'.
15716
15717 2004-10-01  Paul Eggert  <eggert@cs.ucla.edu>
15718
15719         * lib/snprintf.c: Remove comments as to why each header is needed.
15720
15721 2004-10-01  Bruno Haible  <bruno@clisp.org>
15722
15723         * MODULES.html.sh: Add strsep.
15724
15725 2004-09-30  Simon Josefsson  <jas@extundo.com>
15726
15727         * modules/snprintf: New file.
15728
15729 2004-09-30  Simon Josefsson  <jas@extundo.com>
15730
15731         * m4/snprintf.m4: New file.
15732
15733 2004-09-30  Simon Josefsson  <jas@extundo.com>
15734
15735         * lib/snprintf.h, lib/snprintf.c: New files.
15736
15737 2004-09-30  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
15738
15739         * lib/argp-help.c (canon_doc_option): Fixed coredump if *name==NULL
15740         (hol_entry_help): Never translate an empty string.
15741         Do not translate option tag (opt->name) if OPTION_NO_TRANS is set
15742         * lib/argp.h (OPTION_NO_TRANS): New option.
15743
15744 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
15745
15746         * modules/argp (Maintainer): Replace Simon Josefsson
15747         by Sergey Poznyakoff.
15748
15749 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
15750
15751         * config/srclist.txt: Comment-out argp/argp.h, until we get the argp
15752         changes merged back into glibc.
15753
15754 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
15755
15756         * MODULES.html.sh (Support for systems lacking ISO C 99): Add snprintf.
15757
15758 2004-09-29  Oskar Liljeblad  <oskar@osk.mine.nu>
15759
15760         * lib/xvasprintf.c: Include xalloc.h.
15761         (xvasprintf): Use xalloc_die, not xmalloc_die.
15762
15763 2004-09-29  Bruno Haible  <bruno@clisp.org>
15764
15765         * modules/alloca-opt: New file, derived from modules/alloca.
15766         * modules/allocsa: Depend on alloca-opt instead of alloca.
15767         * modules/setenv: Likewise.
15768         * modules/vasnprintf: Likewise.
15769         * MODULES.html.sh: Add alloca-opt.
15770
15771 2004-09-28  Simon Josefsson  <jas@extundo.com>
15772
15773         * gnulib-tool: New parameter --lgpl, to asseert that modules are
15774         LGPL, and to replace license template from GPL to LGPL.
15775
15776 2004-09-28  Paul Eggert  <eggert@cs.ucla.edu>
15777
15778         * modules/dummy: Change license to LGPL.
15779
15780 2004-09-28  Paul Eggert  <eggert@cs.ucla.edu>
15781
15782         * lib/dummy.c: Change copyright notice to FSF, and license to GPL.
15783
15784 2004-09-24  Simon Josefsson  <jas@extundo.com>
15785
15786         * modules/minmax (License): Change from GPL to LGPL.
15787
15788 2004-09-23  Simon Josefsson  <jas@extundo.com>
15789
15790         * gnulib-tool (--import): Typo.
15791
15792 2004-09-23  Simon Josefsson  <jas@extundo.com>
15793
15794         * gnulib-tool (--import): Make sure *.m4 end up in m4/ by default.
15795
15796 2004-09-22  Bruno Haible  <bruno@clisp.org>
15797
15798         * modules/*: Add 'License' field.
15799         * gnulib-tool: Accept --extract-license option.
15800         (func_get_license): New function.
15801
15802 2004-09-21  Bruno Haible  <bruno@clisp.org>
15803
15804         * modules/vasnprintf (Files): Add m4/stdint_h.m4, m4/inttypes_h.m4.
15805         Reported by Simon Josefsson.
15806
15807 2004-09-20  Paul Eggert  <eggert@cs.ucla.edu>
15808
15809         * modules/inttostr (Files): Add m4/longlong.m4, since it uses
15810         gl_AC_TYPE_LONG_LONG.
15811
15812 2004-09-20  Paul Eggert  <eggert@cs.ucla.edu>
15813
15814         * config/srclist.txt: Add getsubopt.c, since libc bought our changes.
15815
15816 2004-09-18  Simon Josefsson  <jas@extundo.com>
15817         and  Paul Eggert  <eggert@cs.ucla.edu>
15818
15819         * gnulib-tool: Replace various ad-hoc automake/autoconf/aclocal
15820         calls with autoreconf.  Define GL_LIB.
15821
15822 2004-09-14  Karl Berry  <karl@gnu.org>
15823
15824         * config/srclist.txt: unsync setenv.c, sigh.
15825
15826 2004-09-13  Paul Eggert  <eggert@cs.ucla.edu>
15827
15828         * lib/argp-pvh.c (argp_program_version_hook): Provide initial value.
15829         Problem reported by Bruno Haible in:
15830         http://lists.gnu.org/archive/html/bug-tar/2004-09/msg00023.html
15831
15832 2004-09-13  Paul Eggert  <eggert@cs.ucla.edu>
15833
15834         * config/srclist.txt: Comment out argp-pvh.c.
15835
15836 2004-09-11  Paul Eggert  <eggert@cs.ucla.edu>
15837
15838         * lib/mempcpy.h: Wrap the entire include file inside #ifndef mempcpy,
15839         in case some system header has #define'd it.  Problem reported by
15840         Soeren D. Schulze in
15841         <http://lists.gnu.org/archive/html/bug-gnulib/2004-09/msg00017.html>.
15842
15843 2004-09-09  Karl Berry  <karl@gnu.org>
15844
15845         * regex.[ch]: delete from the root.  These were supposed to be
15846                 synced with emacs cvs, but this has not happened for about
15847                 a year, and anyway nothing else uses emacs regex.[ch].
15848                 bug-gnulib mail from Jeff Bailey, 9 Sep 2004 15:49:24 -0700.
15849                 lib/regex[.ch] is untouched.
15850
15851 2004-09-09  Bruno Haible  <bruno@clisp.org>
15852
15853         * modules/vasnprintf (Files): Add m4/eoverflow.m4.
15854
15855 2004-09-09  Bruno Haible  <bruno@clisp.org>
15856
15857         * m4/eoverflow.m4: New file, taken from GNU libiconv eilseq.m4 with
15858         modifications.
15859         * m4/vasnprintf.m4 (gl_FUNC_VASNPRINTF): Require gl_EOVERFLOW.
15860
15861 2004-09-08  Oskar Liljeblad  <oskar@osk.mine.nu>
15862
15863         * modules/xvasprintf: New file.
15864         * MODULES.html.sh (Extra functions based on ANSI C 89): Add vasprintf.
15865
15866 2004-09-08  Oskar Liljeblad  <oskar@osk.mine.nu>
15867
15868         * lib/xvasprintf.h: New file.
15869         * lib/xvasprintf.c: New file.
15870         * lib/xasprintf.c: New file.
15871
15872 2004-09-08  Bruno Haible  <bruno@clisp.org>
15873
15874         * m4/stdint.m4: New file, taken from GNU clisp with modifications.
15875
15876 2004-09-08  Bruno Haible  <bruno@clisp.org>
15877
15878         * lib/vasnprintf.c (VASNPRINTF): Signal EOVERFLOW if the resulting
15879         length is > INT_MAX.
15880         * lib/vasprintf.c (vasprintf): Don't test for length > INT_MAX any
15881         more.
15882
15883 2004-09-08  Bruno Haible  <bruno@clisp.org>
15884
15885         * lib/stdint_.h: New file, taken from GNU clisp.
15886
15887 2004-09-08  Bruno Haible  <bruno@clisp.org>
15888             Oskar Liljeblad  <oskar@osk.mine.nu>
15889
15890         * modules/stdint: New file.
15891         * MODULES.html.sh (Support for systems lacking ISO C 99): Add stdint.
15892
15893 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
15894
15895         Import from coreutils.
15896         * lib/userspec.c: Don't use <alloca.h>, so that we don't use alloca on
15897         strings on unbounded length.  alloca's performance benefits aren't
15898         that important here.
15899         (V_STRDUP): Remove.
15900         (parse_with_separator): New function, with most of the internals
15901         of the old parse_user_spec.  Allow user to omit both user and group,
15902         for compatibility with FreeBSD.
15903         Clone only the user name, not the entire spec.
15904         Do not set *uid, *gid unless entirely successful.
15905         Avoid memory leak in some failing cases.
15906         Fix regression for USER.GROUP reported by Dmitry V. Levin in
15907         <http://lists.gnu.org/archive/html/bug-coreutils/2004-08/msg00102.html>
15908         (parse_user_spec): Rewrite to use parse_with_separator.
15909
15910 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
15911
15912         * modules/userspec: Don't depend on alloca.
15913
15914 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
15915
15916         * m4/userspec.m4 (gl_USERSPEC): Don't require AC_FUNC_ALLOCA.
15917
15918 2004-08-17  Paul Eggert  <eggert@cs.ucla.edu>
15919
15920         * MODULES.html.sh: Add xalloc-die, c-strtod, c-strtold, raise,
15921         readtokens0, getcwd, fcntl-safer, canonicalize, cycle-check,
15922         utimecmp, utimens, xnanosleep.  Rename sha to sha1.
15923
15924 2004-08-16  Simon Josefsson  <jas@extundo.com>
15925
15926         * gnulib-tool: Use sed instead of autoconf --trace, inspired by
15927         libtoolize behaviour by "Gary V. Vaughan" <gary@gnu.org>.
15928         Add --dry-run for --import.
15929         Let user provided command line parameters override configure.ac
15930         settings.
15931
15932 2004-08-12  Simon Josefsson  <jas@extundo.com>
15933
15934         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE): New macro,
15935         as discussed with Paul Eggert in threads rooted at
15936         <http://lists.gnu.org/archive/html/bug-gnulib/2004-06/msg00039.html>
15937         and
15938         <http://lists.gnu.org/archive/html/bug-gnulib/2004-07/msg00001.html>.
15939         Before, the test was empty, and relied on ELIDE_CODE in source
15940         code.)
15941         (gl_PREREQ_GETOPT): New macro.
15942         (gl_GETOPT): Use them.
15943
15944 2004-08-12  Simon Josefsson  <jas@extundo.com>
15945
15946         * lib/getopt.c, getopt1.c: Remove ELIDE_CODE hack.
15947         * lib/getopt_.h: Renamed from getopt.h.
15948
15949 2004-08-12  Simon Josefsson  <jas@extundo.com>
15950
15951         * gnulib-tool: Add --source-base, --m4-base, --libtool options.
15952         Change default library name from libfoo to libgnu.
15953         Now, if you have a configure.ac that says:
15954                 gl_SOURCE_BASE(gl)
15955                 gl_M4_BASE(gl/m4)
15956                 gl_MODULES(error getopt etcetera)
15957                 gl_INIT
15958         you can import all you need by running:
15959                 ../gnulib/gnulib-tool --import
15960
15961         * modules/getopt (Files): Rename getopt.h to getopt_.h.
15962         (Makefile.am): Rewrite, use logic from argz.
15963         (Include): Use <getopt.h> instead of "getopt.h".
15964
15965 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
15966
15967         * modules/argp (Files): Add m4/unlocked-io.m4.
15968         (Depends-on): Add extensions.
15969
15970 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
15971
15972         * m4/argp.m4 (gl_ARGP): Do not check for argp.h or argp_parse; nobody
15973         uses HAVE_ARGP_H or HAVE_ARGP_PARSE.
15974         Require gl_FUNC_GLIBC_UNLOCKED_IO, gl_USE_SYSTEM_EXTENSIONS.
15975         Check for program_invocation_name, program_invocation_short_name,
15976         flockfile, funlockfile, features.h, _getopt_long_only_r.
15977
15978 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
15979
15980         * lib/argp-help.c, argp-parse.c: Use "gettext.h" instead of
15981         its complicated substitute.
15982         * lib/argp-help.c: Include <errno.h>, for program_invocation_short_name
15983         and program_invocation_name.
15984         (__argp_basename) [!_LIBC]: Remove; the only use was
15985         replaced by its body.
15986         (__argp_short_program_name): Change condition from
15987         !defined __argp_short_program_name to
15988         ! (defined _LIBC || HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME),
15989         to match argp-namefrob.h.
15990         (__argp_failure): Don't assume strerror_r returns char *.
15991         * lib/argp-parse.c (N_): Define unconditionally.
15992         (argp_default_options): Fill out initializers with 0 to avoid
15993         gcc warnings.
15994
15995 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
15996
15997         * config/srclist.txt: Remove getopt.c, getopt.h (renamed to getopt_.h),
15998         getopt1.c.
15999
16000 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
16001
16002         Merge from coreutils.
16003
16004         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for wmemchr and wmemcpy.
16005
16006         * m4/obstack.m4 (gl_PREREQ_OBSTACK): Require
16007         gl_AC_HEADER_INTTYPES_H, gl_AC_HEADER_STDINT_H, gl_AC_TYPE_UINTMAX_T.
16008
16009 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
16010
16011         Merge from coreutils.
16012
16013         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Don't set to 1 if missing
16014         wmemchr or wmemcpy.  Problem reported by Robert Dahlem
16015         for Reliant Unix 5.43.
16016
16017         * lib/obstack.c: Include <inttypes.h> and <stdint.h> if available.
16018         (union fooround): Use uintmax_t, not long int.
16019         The rest is a merge from libc:
16020         [defined _LIBC]: Include <shlib-compat.h>.
16021         (_obstack) [defined _LIBC]: Remove after 2.3.4.
16022
16023         * lib/settime.c (settime): Recode to avoid warning with
16024         Sun Forte C 6U2.
16025
16026         * lib/strverscmp.c: Convert to UTF-8.
16027
16028 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
16029
16030         * modules/obstack (Files): Add m4/inttypes_h.m4, m4/stdint_h.m4,
16031         m4/uintmax_t.m4.
16032
16033 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
16034
16035         * modules/xalloc-die: New file.
16036         * modules/xalloc: Remove dependencies on error, gettext, exitfail.
16037
16038         * modules/md5 (Files): Add m4/uint32_t.m4.
16039         * modules/sha1: Renamed from modules/sha.
16040         (Files):
16041         Rename lib/sha.h to lib/sha1.h.
16042         Rename lib/sha.c to lib/sha1.c.
16043         Rename m4/sha.m4 to m4/sha1.m4.
16044         (lib_SOURCES): Likewise.
16045         (configure.ac): Rename gl_SHA to gl_SHA1.
16046         (Include): sha.h -> sha1.h.
16047
16048 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
16049
16050         * m4/uint32_t.m4, m4/uintptr_t.m4: New files.
16051         * m4/sha1.m4: Renamed from sha.m4.
16052         (gl_SHA1): Renamed from gl_SHA.  All uses changed.
16053
16054 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
16055
16056         * lib/obstack.h (obstack_empty_p):
16057         Don't assume that chunk->contents is suitably aligned.
16058         * lib/obstack.c (_obstack_begin, _obstack_begin_1, _obstack_newchunk):
16059         Likewise. Problem reported by Benno in
16060         <http://sources.redhat.com/ml/libc-alpha/2004-08/msg00055.html>.
16061
16062         * lib/chown.c (rpl_chown): Work even if the file is writeable but not
16063         readable.  This could be improved further but it'd take some work.
16064
16065 2004-08-08  Simon Josefsson  <jas@extundo.com>
16066
16067         * modules/xgethostname (Depends-on): Remove exit and error (not
16068         used).
16069
16070         * modules/getpass-gnu: Add getpass.h.
16071         (Depends-on): Add stdbool.
16072         * modules/getpass: Add getpass.h.
16073
16074 2004-08-08  Simon Josefsson  <jas@extundo.com>
16075
16076         * m4/getpass.m4 (gl_FUNC_GETPASS, gl_FUNC_GETPASS_GNU):
16077         Check getpass declaration.
16078
16079 2004-08-08  Simon Josefsson  <jas@extundo.com>
16080
16081         * lib/xgethostname.c: Don't include error.h (not used).
16082
16083         * lib/getpass.h: Add.
16084         * lib/getpass.c: Include getpass.h first.
16085
16086 2004-08-08  Paul Eggert  <eggert@cs.ucla.edu>
16087
16088         * lib/xalloc-die.c: New file.
16089         * lib/xalloc.h (xalloc_fail_func, xalloc_msg_memory_exhausted): Remove.
16090         All uses removed.
16091         * lib/xmalloc.c (xalloc_fail_func, xalloc_msg_memory_exhausted):
16092         Likewise. Move inclusions of gettext.h, error.h, exitfail.h to
16093         xalloc-die.c.
16094         (_, N_, xalloc_die): Move to xalloc-die.c.
16095         * lib/userspec.c (parse_user_spaec): Use xstrdup rather than strdup,
16096         so that we needn't mess with xalloc_msg_memory_exhausted.
16097
16098         * lib/sha1.h: Renamed from sha.h.
16099         (SHA1_H): Renamed from _SHA_H.
16100         (sha1_ctx): Renamed from sha_ctx.
16101         (sha1_init_ctx): Renamed from sha_init_ctx.
16102         (sha1_process_block): Renamed from sha_process_block.
16103         (sha1_process_bytes): Renamed from sha_process_bytes.
16104         (sha1_finish_ctx): Renamed from sha_finish_ctx.
16105         (sha1_read_ctx): Renamed from sha_read_ctx.
16106         (sha1_stream): Renamed from sha_stream.
16107         (sha1_buffer): Renamed from sha_buffer.
16108         * lib/sha1.c: Likewise; renamed from sha.c.
16109         Do not include <sys/types.h>.
16110         Include <stddef.h> rather than <stdlib.h>.
16111
16112 2004-08-08  Bruno Haible  <bruno@clisp.org>
16113
16114         * lib/pathname.h (FILE_SYSTEM_PREFIX_LEN): Renamed from
16115         FILESYSTEM_PREFIX_LEN.
16116         * lib/progreloc.c: Likewise.
16117         * lib/concatpath.c (concatenated_pathname): Use FILE_SYSTEM_PREFIX_LEN.
16118
16119 2004-08-06  Simon Josefsson  <jas@extundo.com>
16120
16121         * modules/progname (Depends-on): Don't depend on stdbool.
16122
16123 2004-08-06  Simon Josefsson  <jas@extundo.com>
16124
16125         * modules/getsubopt: New file.
16126         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
16127         getsubopt.
16128
16129 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
16130
16131         More merge from coreutils.
16132
16133         * m4/utimens.m4, m4/utimecmp.m4: New files.
16134         * m4/backupfile.m4, euidacces.m4, acl.m4, afs.m4, calloc.m4, dirfd.m4,
16135         fsusage.m4, jm-macros.m4, ls-mntd-fs.m4, md5.m4, mountlist.m4,
16136         prereq.m4, sha.m4: Import changes from coreutils.
16137
16138 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
16139
16140         More merge from coreutils.
16141         * modules/raise, modules/readtokens0, modules/utimens:
16142         * modules/utimecmp, module/xnanosleep: New files.
16143         * modules/strftime: Add lib/strftime.h.
16144         Change include from <time.h> to "strftime.h".
16145         * modules/yesno: Add lib/yesno.h.
16146         * modules/backupfile: Remove lib/addext.c.
16147         * modules/euidaccess: Add stat-macros.h.
16148         * modules/canonicalize, modules/euidaccess,
16149         modules/filemode, modules/lchown, modules/makepath,
16150         modules/rmdir, modules/stat: Likewise.
16151
16152 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
16153
16154         Merge from tar.
16155         * lib/argp-help.c (make_hol, hol_append): Don't assume that
16156         SIZE_MAX is a valid preprocessor constant.
16157         (__argp_basename): Change from "#ifndef _LIBC"
16158         to "#ifndef __argp_short_program_name", so that
16159         we don't compile these functions for tar.
16160
16161         More merges from coreutils.
16162         * lib/raise.c, lib/readtokens0.h, lib/readtokens0.c, lib/strftime.h:
16163         * lib/utimens.h, lib/utimens.c, lib/utimecmp.h, lib/utimecmp.c:
16164         * lib/xnanosleep.h, lib/xnanosleep.c, lib/yesno.h: New files.
16165         * lib/addext.c: Remove; no longer needed.
16166         * lib/yesno.c, lib/argmatch.h, lib/argmatch.c, lib/backupfile.h,
16167         lib/backupfile.c, lib/euidaccess.c, lib/filemode.c, lib/closeout.c,
16168         lib/dup2.c, lib/exclude.c, lib/fileblocks.c, lib/filemode.c,
16169         lib/fnmatch.c, lib/fnmtahc_loop.c, lib/fopen-safer.c, lib/fsusage.c,
16170         lib/fsusage.h, lib/ftruncate.c, lib/full-write.c, lib/getdate.y,
16171         lib/getloadavg.c, lib/getugroups.c, lib/hard-locale.c,
16172         lib/hard-locale.h, lib/hash.c, lib/human.c, lib/human.h, lib/lchown.c,
16173         lib/lchown.h, lib/makepath.c, lib/makepath.h, lib/md5.c, lib/md5.h,
16174         lib/memchr.c, lib/memcoll.c, lib/memrchr.c, lib/modechange.c,
16175         lib/modechange.h, lib/mountlist.c, lib/mountlist.h, lib/nanosleep.c,
16176         lib/posixtm.c, lib/putenv.c, quotearg.c, lib/quotearg.h,
16177         lib/readtokens.c, lib/readutmp.c, lib/readutmp.h, lib/rmdir.c,
16178         lib/safe-read.c, lib/save-cwd.c, lib/savedir.c, lib/setenv.c,
16179         lib/sig2str.c, lib/stat.c, lib/strtoimax.c, lib/strverscmp.c,
16180         lib/userspec.c, lib/utime.c, lib/version-etc.c., lib/xgethostname.c,
16181         lib/xmemcoll.c, lib/xreadlink.c, lib/xstrtod.c, lib/xstrtod.h,
16182         lib/xstrtoimax.c, lib/xstrtol.c, lib/xstrtol.h, lib/xstrtoumax.c:
16183         Import changes from coreutils.
16184
16185 2004-08-05  Simon Josefsson  <jas@extundo.com>
16186
16187         * m4/strdup.m4: Always run gl_PREREQ_STRDUP, since strdup.h need it.
16188
16189 2004-08-05  Simon Josefsson  <jas@extundo.com>
16190
16191         * m4/getsubopt.m4: New file.
16192
16193 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
16194
16195         Merge from coreutils.
16196
16197         * m4/c-strtod.m4, m4/canonicalize.m4, m4/fcntl-safer.m4:
16198         * m4/getcwd-path-max.m4: New files.
16199
16200         * m4/dos.m4 (gl_AC_DOS): filesystem -> file system renaming.
16201         FILESYSTEM_PREFIX_LEN ->
16202         FILE_SYSTEM_PREFIX_LEN.
16203         FILESYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX ->
16204         FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX.
16205         FILESYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR ->
16206         FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR.
16207
16208         * m4/path-concat.m4 (gl_PATH_CONCAT): Don't require gl_AC_DOS, the
16209         prerequisite modules now handle the DOS stuff.
16210         Don't check for unistd.h.
16211
16212 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
16213
16214         Merge from coreutils.
16215
16216         * lib/.gdb-history: Remove; this doesn't belong here.
16217
16218         * lib/c-strtod.c, lib/c-strtod.h, lib/c-strtold.c, lib/cycle-check.c:
16219         * lib/cycle-check.h, lib/dev-ino.h, lib/canonicalize.h:
16220         * lib/canonicalize.c, lib/fcntl-safer.h, lib/fcntl-safer.c:
16221         * lib/getcwd.c: New files.
16222
16223         * lib/dirname.h: Include <stdbool.h>.
16224         (FILE_SYSTEM_PREFIX_LEN): Renamed from FILESYSTEM_PREFIX_LEN,
16225         for consistency with POSIX terminology.  All uses changed.
16226         (IS_ABSOLUTE_FILE_NAME, IS_RELATIVE_FILE_NAME): New macros.
16227         (strip_trailing_slashes): Use bool for booleans.
16228         * lib/stripslash.c (strip_trailing_slashes): Likewise.
16229
16230         * lib/error.c: Work around bug in OpenBSD 3.4 sterror_r: it
16231         sometimes returns a positive errno value even when it succeeds.
16232         (print_errno_message) [!LIBC]: Fall back on strerror if
16233         __strerror_r fails.
16234
16235         * lib/path-concat.c (mempcpy): Don't define if a system header defines
16236         it. Don't include stdio.h, stdlib.h, unistd.h, strdup.h.
16237         (longest_relative_suffix): New function.
16238         (path_concat): Use it.  Assume first argument is not NULL.
16239         Port to DOS.  Omit redundant separators.
16240         Report an error instead of returning NULL.
16241         Use mempcpy instead of memcpy.
16242         (xpath_concat): Remove: not declared or used.
16243
16244         * lib/same.h: Include <stdbool.h>
16245         (same_name): Return bool, not int.
16246         * lib/same.c (same_name): Likewise.
16247         (errno): Don't declare; we assume C89 or better now.
16248
16249         * lib/stat-macros (S_ISCTG, S_ISOFD, S_ISOFL): New macros,
16250         if not already defined.
16251
16252         * lib/xgetcwd.c (errno): Don't declare; we assume C89 or better now.
16253         * lib/dup-safer.c (errno): Likewise.
16254
16255 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
16256
16257         Merge from coreutils.
16258         * modules/c-strtod, modules/c-strtold, modules/canonicalize:
16259         * modules/cycle-check, modules/fcntl-safer, modules/getcwd: New files.
16260         * modules/path-concat: Don't depend on strdup.
16261
16262 2004-08-03  Simon Josefsson  <jas@extundo.com>
16263
16264         * lib/strdup.h: Only use HAVE_DECL_STRDUP if defined.
16265         * lib/progname.h: Don't include stdbool.h.
16266
16267 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
16268
16269         * modules/fatal: Remove, as the "fatal" module wasn't used or working.
16270         * MODULES.html.sh (func_all_modules): Remove fatal.
16271
16272 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
16273
16274         * m4/fatal.m4: Remove, as the "fatal" module wasn't used or working.
16275
16276 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
16277
16278         * lib/fatal.c, fatal.h: Remove as the "fatal" module wasn't used or
16279         working.
16280
16281 2004-08-02  Simon Josefsson  <jas@extundo.com>
16282
16283         * lib/getsubopt.h: New file, with comments from Bruno Haible.
16284         * lib/getsubopt.c: New file, from glibc, but slightly modified based on
16285         suggestions from Paul Eggert <eggert@cs.ucla.edu>.
16286
16287 2004-08-01  Simon Josefsson  <jas@extundo.com>
16288
16289         * lib/xgetdomainname.c: Include stdlib.h, for free().
16290
16291 2004-07-19  Bruno Haible  <bruno@clisp.org>
16292
16293         * MODULES.html.sh (func_all_modules): Add dummy.
16294
16295 2004-07-16  Simon Josefsson  <jas@extundo.com>
16296
16297         * modules/dummy: New file.
16298
16299 2004-07-16  Simon Josefsson  <jas@extundo.com>
16300
16301         * lib/dummy.c: New file.
16302
16303 2004-07-16  Bruno Haible  <bruno@clisp.org>
16304
16305         * lib/backupfile.h: Add extern "C" for C++.
16306         * lib/closeout.h: Likewise.
16307         * lib/copy-file.h: Likewise.
16308         * lib/findprog.h: Likewise.
16309         * lib/full-write.h: Likewise.
16310         * lib/pathname.h: Likewise.
16311         * lib/progname.h: Likewise.
16312         * lib/stpcpy.h: Likewise.
16313         * lib/stpncpy.h: Likewise.
16314         * lib/strcase.h: Likewise.
16315         * lib/strstr.h: Likewise.
16316         * lib/xalloc.h: Likewise.
16317
16318         * lib/mbswidth.h: Add extern "C" for C++.
16319         Reported by Albert Chin-A-Young <china@thewrittenword.com>.
16320
16321 2004-07-13  Robert Millan  <robertmh@gnu.org>
16322
16323         * m4/host-os.m4: s/KNetBSD/kNetBSD/g and s/KFreeBSD/kFreeBSD/g.
16324
16325 2004-07-09  Simon Josefsson  <jas@extundo.com>
16326
16327         * lib/getndelim2.c: Include stddef.h, for ptrdiff_t.  (FreeBSD 4.9
16328         failed without this.)
16329
16330 2004-07-09  Paul Eggert  <eggert@cs.ucla.edu>
16331
16332         * modules/chown (Files): Add lib/fchown-stub.c, since
16333         gl_PREREQ_CHOWN invokes AC_LIBOBJ(fchown-stub).
16334
16335 2004-07-09  Paul Eggert  <eggert@cs.ucla.edu>
16336
16337         * lib/fchown-stub.c: New file.
16338
16339 2004-06-24  Jim Meyering  <jim@meyering.net>
16340
16341         * lib/obstack.h (obstack_base): Cast to (void *), per documentation.
16342
16343 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
16344
16345         * modules/argz: Omit "#include".
16346
16347         * MODULES.html.sh (func_all_modules): Add calloc, to match
16348         2004-06-01 addition of calloc module.
16349
16350 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
16351
16352         * m4/argz.m4: New file, which is autoupdated from libtool.
16353
16354 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
16355
16356         * lib/argz.c, lib/argz_.h: New files, which are autoupdated from
16357         libtool.
16358
16359 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
16360
16361         * config/srclist-update: Don't insist on "USA." before the
16362         close-comment, as libtool omits the period and puts the */ on a
16363         separate line.
16364         * config/srclist.txt: Add argz.c, argz_.h, argz.m4.
16365         * config/srclistvars.sh: Add LIBTOOL (for eggert only).
16366
16367 2004-06-22  Gary V. Vaughan  <gary@gnu.org>
16368
16369         * modules/argz: New file.
16370         * MODULES.html.sh (func_all_modules): Add argz.
16371
16372 2004-06-12  Jim Meyering  <jim@meyering.net>
16373         and  Paul Eggert  <eggert@cs.ucla.edu>
16374
16375         * modules/hash (Files): Add lib/xalloc.h.
16376         * modules/pipe (Depends-on): Add wait-process.
16377         * modules/stat (Depends-on): Add xalloc.
16378         * modules/userspec (Files): Add lib/userspec.h.
16379         * modules/xstrto
16380
16381         Upgrade from gettext-0.13.
16382         * modules/gettext (Files): Add m4/intmax.m4, m4/longdouble.m4,
16383         m4/longlong.m4, m4/printf-posix.m4, m4/signed.m4, m4/size_max.m4,
16384         m4/wchar_t.m4, m4/wint_t.m4, m4/xsize.m4.
16385
16386 2004-06-10  Jim Meyering  <jim@meyering.net>
16387
16388         * lib/calloc.c: New file.
16389
16390 2004-06-06  Paul Eggert  <eggert@cs.ucla.edu>
16391
16392         * lib/getdate.y (yylex): Allow space between sign and number.
16393         Problem reported by Dan Jacobson.
16394
16395 2004-06-01  Paul Eggert  <eggert@cs.ucla.edu>
16396
16397         Merge from coreutils CVS.
16398
16399         * m4/backupfile.m4, dirname.m4, human.m4, inttypes.m4, longlong.m4,
16400         makepath.m4, memchr.m4, memcmp.m4, mountlist.m4, path-concat.m4,
16401         putenv.m4, quotearg.m4, readutmp.m4, strtoimax.m4, strtoll.m4,
16402         strtoull.m4, strtoumax.m4, ulonglong.m4, vasnprintf.m4,
16403         xstrtol.m4: Fix copyright date and/or serial number.
16404
16405         * m4/chown.m4 (gl_PREREQ_CHOWN): Check for fcntl.h.
16406         See if we need an fchown replacement.
16407         (gl_FUNC_CHOWN_FOLLOWS_SYMLINK): New macro.
16408         (gl_FUNC_CHOWN): Require gl_FUNC_CHOWN_FOLLOWS_SYMLINK,
16409         and use the replacement function if we detect either defect.
16410
16411         * m4/prereq.m4 (gl_PREREQ): Add gl_ALLOCSA, gl_CLOEXEC, gl_INTTOSTR,
16412         gl_UTIMECMP.
16413
16414 2004-06-01  Paul Eggert  <eggert@cs.ucla.edu>
16415         and  Jim Meyering  <jim@meyering.net>
16416
16417         Merge from coreutils CVS.
16418
16419         * lib/stat-macros.h: New file, with contents from file-type.h
16420         and coreutils' system.h.
16421         * lib/file-type.c: Include "stat-macros.h".
16422         * lib/file-type.h (file_type): Move all macro definitions to new file,
16423         stat-macros.h.
16424
16425         * lib/chown.c (rpl_chown) [CHOWN_FAILS_TO_HONOR_ID_OF_NEGATIVE_ONE]:
16426         Wrap old code with this conditional.
16427         [CHOWN_MODIFIES_SYMLINK]: Try to work around a chown
16428         function that does not dereference symlinks.
16429         * lib/lchown.c (lchown) [CHOWN_MODIFIES_SYMLINK]: Just call chown.
16430
16431         * lib/xreadlink.c: Include xreadlink.h first, to catch .h file
16432         dependency problems.
16433         (xreadlink): Accept new arg SIZE, for efficiency.
16434         All decls and uses changed.
16435         * lib/xreadlink.h: Include <stddef.h>, for size_t.
16436
16437         * lib/.cppi-disable: Add alloca_.h, allocsa.h, exit.h, getndelim2.h,
16438         gettext.h, localcharset.h, strdup.h, strndup.h, strtoul.c, time_r.h.
16439
16440         * lib/.cvsignore: Add alloca.h, fnmatch.h, poll.h, stdbool.h,
16441         sysexits.h.
16442
16443 2004-06-01  Jim Meyering  <jim@meyering.net>
16444
16445         * m4/calloc.m4: New file.
16446
16447 2004-05-31  Paul Eggert  <eggert@cs.ucla.edu>
16448
16449         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Detect _Bool bug in HP aC++/ANSI
16450         C B3910B A.05.55 [Dec 04 2003].  Problem reported by Jim Meyering.
16451         Also, fix a typo in a diagnostic.
16452
16453 2004-05-30  Paul Eggert  <eggert@cs.ucla.edu>
16454
16455         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Do not require AC_FUNC_MALLOC
16456         or AC_FUNC_REALLOC.
16457
16458 2004-05-30  Paul Eggert  <eggert@cs.ucla.edu>
16459
16460         * lib/xmalloc.c (HAVE_MALLOC, HAVE_REALLOC): Do not require these
16461         macros to be defined.
16462         (xnmalloc_inline, xnrealloc_inline, xcalloc): Do not die if
16463         the allocator returns NULL because the requested size is zero.
16464
16465 2004-05-20  Paul Eggert  <eggert@cs.ucla.edu>
16466
16467         * lib/malloc/obstack.c (_obstack) [defined _LIBC]: Bring back this
16468         var.  Add comment explaining why libc still defines it.  This
16469         merges the following patch from glibc:
16470         http://sources.redhat.com/ml/libc-alpha/2004-05/msg00157.html
16471
16472 2004-05-20  Andreas Schwab  <schwab@suse.de>
16473
16474         * m4/free.m4: Replace free if it not known to work, not the other
16475         way round.
16476
16477 2004-05-19  Paul Eggert  <eggert@cs.ucla.edu>
16478
16479         * lib/obstack.c (_obstack): Remove unused variable.  It hasn't been
16480         present in glibc since revision 1.1 of this file.
16481         * lib/obstack.h (_obstack_free, obstack_1grow, obstack_1grow_fast,
16482         obstack_alignment_mask, obstack_alloc, obstack_base,
16483         obstack_blank, obstack_blank_fast, obstack_chunk_size,
16484         obstack_copy, obstack_copy0, obstack_finish, obstack_grow,
16485         obstack_grow0, obstack_init, obstack_int_grow,
16486         obstack_int_grow_fast, obstack_make_room, obstack_memory_used,
16487         obstack_next_free, obstack_object_size, obstack_ptr_grow,
16488         obstack_ptr_grow_fast, obstack_room): Remove declarations of
16489         nonexistent functions.
16490
16491 2004-05-18  Karl Berry  <karl@gnu.org>
16492
16493         * config/srclist.txt: break link for vasnprintf.c.
16494
16495 2004-05-17  Paul Eggert  <eggert@cs.ucla.edu>
16496
16497         Port obstack to the AS/400, where pointers are 16 bytes wide and
16498         you cannot cast an integer to a valid pointer.  This patch is
16499         currently waiting to be integrated into glibc; see
16500         <http://sources.redhat.com/ml/libc-alpha/2004-05/msg00073.html>.
16501
16502         * lib/obstack.h (__PTR_TO_INT, __INT_TO_PTR): Remove.
16503         All uses of __INT_TO_PTR (PTR_TO_INT ...) replaced by __PTR_ALIGN.
16504         (__BPTR_ALIGN, __PTR_ALIGN): New macros.
16505         (struct obstack): temp member is now a union of a pointer and
16506         an integer, instead of an integer.  All integer uses changed.
16507         This does not affect the physical layout of struct obstack,
16508         except on hosts (like the AS/400) where the size or alignment of
16509         void * is greater than that of ptrdiff_t.
16510         (obstack_finish) [! (defined __GNUC__ && defined __STDC__ &&
16511         __STDC__)]: Store temporary in pointer member of union, not
16512         integer member.
16513         * lib/obstack.c: Include <stddef.h>, for offsetof.
16514         (struct fooalign): Remove; it doesn't need a name.
16515         (union fooround): Change double to long double, and add void *.
16516         (DEFAULT_ALIGNMENT): Use offsetof to compute.
16517         (DEFAULT_ALIGNMENT, DEFAULT_ROUNDING): Now an enum constant,
16518         not a macro.  Hence the values are always int; so remove all
16519         casts-to-int in uses.
16520
16521 2004-05-17  Paul Eggert  <eggert@cs.ucla.edu>
16522
16523         * config/srclist.txt: Break link for argp-help.c and argp-parse.c until
16524         we can get this patch merged into glibc.
16525
16526 2004-05-17  Derek R. Price  <derek@ximbiot.com>
16527             Paul Eggert  <eggert@cs.ucla.edu>
16528
16529         * m4/argp: Depend on alloca.
16530
16531 2004-05-17  Derek R. Price  <derek@ximbiot.com>
16532             Paul Eggert  <eggert@cs.ucla.edu>
16533
16534         * lib/argp-help.c, argp-parse.c: Assume <alloca.h> rather than
16535         freecoding.
16536
16537 2004-05-17  Bruno Haible  <bruno@clisp.org>
16538
16539         * lib/vasnprintf.c (VASNPRINTF): Correctly handle the case of a
16540         precision that consists of a '.' followed by an empty digit string.
16541         Patch by Tor Lillqvist <tml@iki.fi>.
16542
16543 2004-05-16  Paul Eggert  <eggert@cs.ucla.edu>
16544
16545         * m4/alloca.m4 (gl_FUNC_ALLOCA): Define HAVE_ALLOCA_H always,
16546         for backward compatibility with older code.  We need our own
16547         alloca.h if _AIX is defined.  Define HAVE_ALLOCA if we discover
16548         it under some other name, and our alloca.h will define it.
16549
16550 2004-05-16  Paul Eggert  <eggert@cs.ucla.edu>
16551             Derek Price  <derek@ximbiot.com>
16552
16553         * lib/alloca.c: Include <alloca.h>, to get our interface.
16554         * lib/alloca_.h: Use __alloca on AIX, so that we don't have to
16555         include <alloca.h> first.  Use C89 prototype for alloca; this
16556         requires including <stddef.h> for size_t.  Use extern "C" if C++.
16557         Use #elif for simplicity, since we can assume C89 now.
16558         Don't try to source the system alloca.h since it will not be found
16559         and to prevent recursively including its replacement.
16560         * lib/fnmatch.c: Include <alloca.h> instead of opencoding.
16561         * lib/regex.c: Likewise.
16562
16563 2004-05-16  Derek Price  <derek@ximbiot.com>
16564             Paul Eggert  <eggert@cs.ucla.edu>
16565
16566         getline cleanup.  This changes the getndelim2 API: both order of
16567         arguments, and meaning of delim2 (now uses EOF, not 0, to indicate
16568         no delimiter).
16569
16570         * lib/getline.c: Don't include stddef.h or stdio.h, since our
16571         interface does that.
16572         (getline): Always use getdelim, so that we don't have two
16573         copies of this code.
16574         * lib/getndelim2.c: Include <limits.h>, <inttypes.h>, <stdint.h>
16575         if available.
16576         (PTRDIFF_MAX, SIZE_MAX, SSIZE_MAX): Define if not defined.
16577         (GETNDELIM2_MAXIMUM): New macro.
16578         (getndelim2): Reorder arguments.  delim==EOF now means no delimiter,
16579         instead of the old practice of delim2==0.  All callers changed.
16580         Return -1 on overflow, instead of returning junk.
16581         Do not set *linesize unless allocation succeeds.
16582         * lib/getndelim2.h: Do not include stddef.h; no longer needed, now
16583         that we include sys/types.h.
16584         * lib/getnline.h: Likewise.
16585         * lib/getndelim2.h (GETNLINE_NO_LIMIT): New macro.
16586         (getndelim2): Reorder arguments.
16587         * lib/getnline.c (getnline, getndelim):
16588         Don't discard the NMAX argument.
16589         (getnline): Invoke getndelim, to avoid code duplication.
16590         * lib/getnline.h (GETNLINE_NO_LIMIT): New macro, used instead
16591         of (size_t) -1 by callers of the getnline family.
16592
16593 2004-05-13  Paul Eggert  <eggert@cs.ucla.edu>
16594
16595         * m4/gettime.m4 (gl_GETTIME): Require gl_TIMESPEC.
16596         Check for gettimeofday.
16597         * m4/settime.m4 (gl_SETTIME): Require gl_TIMESPEC.
16598         Check for settimeofday, stime.
16599
16600 2004-05-13  Paul Eggert  <eggert@cs.ucla.edu>
16601
16602         * lib/nanosleep.c (suspended): Change its type from int to
16603         sig_atomic_t volatile.
16604         (first_call): Make it private to rpl_nanosleep, and have it
16605         be zero initially as that's a bit faster.
16606         (my_usleep): Round up fractional times instead of truncating them,
16607         as this is the usual meaning for 'sleep'.
16608
16609         * lib/gettime.c (gettime): Fall back on `time' if `gettimeofday'
16610         doesn't work.
16611         * lib/settime.c: Include <unistd.h>, for stime (on Solaris 8, anyway).
16612         (ENOSYS): Define if not defined.
16613         (settime): Fall back on stime if it exists and settimeofday fails.
16614         But don't bother with fallbacks if a method fails with errno == EPERM.
16615
16616 2004-05-11  Jim Meyering  <jim@meyering.net>
16617
16618         Prior to this change, the save_cwd caller required read access to the
16619         current directory on most systems (ones with the fchdir function).
16620
16621         * lib/save-cwd.c (save_cwd) [HAVE_FCHDIR]: If opening `.' read-only
16622         fails, try write-only, and finally, resort to using xgetcwd.
16623
16624 2004-05-06  Paul Eggert  <eggert@cs.ucla.edu>
16625
16626         * lib/obstack.c, obstack.h: Import changes from libc.
16627
16628 2004-04-28  Bruno Haible  <bruno@clisp.org>
16629
16630         * lib/findprog.c (find_in_path): Treat Cygwin like Windows, since it
16631         also implicitly appends .exe to executables.
16632         * lib/localcharset.c (ISSLASH): Treat Cygwin like Windows, since it now
16633         accepts Windows pathnames.
16634         * lib/pathname.h (ISSLASH, IS_PATH_WITH_DIR, FILESYSTEM_PREFIX_LEN):
16635         Treat Cygwin like Windows, since it now accepts Windows pathnames.
16636         * lib/progreloc.c (ISSLASH, IS_PATH_WITH_DIR, FILESYSTEM_PREFIX_LEN):
16637         Treat Cygwin like Windows, since it now accepts Windows pathnames.
16638         Reported by Derek Robert Price <derek@ximbiot.com>.
16639
16640 2004-04-21  Karl Berry  <karl@gnu.org>
16641
16642         * config/srclist.txt (localcharset.c): break sync.
16643
16644 2004-04-20  Paul Eggert  <eggert@twinsun.com>
16645
16646         * m4/host-os.m4: Add a copyright notice.
16647
16648 2004-04-20  Jim Meyering  <jim@meyering.net>
16649
16650         Change UTILS_ to gl_ in AC_DEFINE'd names.
16651         Change utils_- and jm_-prefixed variables, too.
16652         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Renamed from
16653         UTILS_FUNC_MKDIR_TRAILING_SLASH.
16654         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Renamed from UTILS_FUNC_MKSTEP.
16655
16656         * m4/dirfd.m4 (gl_FUNC_DIRFD): Rename from UTILS_FUNC_DIRFD.
16657         Don't emit trailing blanks.
16658         Also rename jm_-prefixed variables to have gl_ prefix.
16659
16660         * m4/host-os.m4 (gl_HOST_OS): Rename from UTILS_HOST_OS.
16661         Also rename jm_-prefixed variables to have gl_ prefix.
16662
16663         * m4/jm-macros.m4: Reflect the renamings.
16664         * m4/prereq.m4: Likewise.
16665
16666 2004-04-20  Jim Meyering  <jim@meyering.net>
16667
16668         * lib/getndelim2.c (getndelim2): Upon realloc failure, don't leak
16669         memory.
16670
16671 2004-04-20  Jim Meyering  <jim@meyering.net>
16672             Bruno Haible  <bruno@clisp.org>
16673
16674         * lib/localcharset.c (get_charset_aliases) [!VMS && !WIN32]: Don't leak
16675         memory when realloc fails.
16676
16677 2004-04-19  Jim Meyering  <jim@meyering.net>
16678
16679         * m4/readutmp.m4 (gl_PREREQ_READUTMP): Require gl_FUNC_FREE,
16680         now that readutmp.c may call `free (0)'.
16681
16682 2004-04-19  Bruno Haible  <bruno@clisp.org>
16683
16684         * m4/mbrtowc.m4: Change jm_ to gl_ in cache variables as well.
16685         * m4/inttypes_h.m4: Likewise.
16686         * m4/stdint_h.m4: Likewise.
16687         * m4/intmax_t.m4: Likewise.
16688         * m4/uintmax_t.m4: Likewise.
16689
16690 2004-04-18  Jim Meyering  <jim@meyering.net>
16691
16692         * m4/prereq.m4: Don't forbid jm_ prefix.
16693
16694         * m4/afs.m4, m4/allocsa.m4, m4/assert.m4, m4/backupfile.m4:
16695         * m4/bison.m4, m4/check-decl.m4, m4/chown.m4, m4/d-ino.m4:
16696         * m4/d-type.m4, m4/dirname.m4, m4/dos.m4, m4/error.m4, m4/fpending.m4:
16697         * m4/fstypename.m4, m4/fsusage.m4, m4/ftruncate.m4, m4/getdate.m4:
16698         * m4/getgroups.m4, m4/gettext.m4, m4/glibc21.m4, m4/group-member.m4:
16699         * m4/human.m4, m4/intmax.m4, m4/intmax_t.m4, m4/inttostr.m4:
16700         * m4/inttypes.m4, m4/inttypes_h.m4, m4/jm-macros.m4, m4/jm-winsz1.m4:
16701         * m4/jm-winsz2.m4, m4/lchown.m4, m4/lib-check.m4, m4/link-follow.m4:
16702         * m4/localcharset.m4, m4/longlong.m4, m4/ls-mntd-fs.m4, m4/lstat.m4:
16703         * m4/makepath.m4, m4/mbrtowc.m4, m4/mbswidth.m4, m4/memchr.m4:
16704         * m4/memcmp.m4, m4/mkdtemp.m4, m4/mkstemp.m4, m4/mountlist.m4:
16705         * m4/nanosleep.m4, m4/path-concat.m4, m4/perl.m4, m4/prereq.m4:
16706         * m4/putenv.m4, m4/quotearg.m4, m4/regex.m4, m4/stat.m4:
16707         * m4/stdint_h.m4, m4/strftime.m4, m4/strtoimax.m4, m4/strtoll.m4:
16708         * m4/strtoull.m4, m4/strtoumax.m4, m4/timespec.m4, m4/uintmax_t.m4:
16709         * m4/ulonglong.m4, m4/unlink-busy.m4, m4/unlocked-io.m4, m4/uptime.m4,
16710         * m4/utimbuf.m4, m4/utime.m4, m4/utimes-null.m4, m4/vasnprintf.m4:
16711         * m4/xstrtoimax.m4, m4/xstrtol.m4, m4/xstrtoumax.m4:
16712         Change jm_ to gl_ in AC_DEFINE'd names. Update all uses.
16713
16714 2004-04-18  Jim Meyering  <jim@meyering.net>
16715
16716         * lib/readutmp.c (read_utmp) [UTMP_NAME_FUNCTION]: Upon realloc
16717         failure, don't leak memory and do call END_UTMP_ENT.
16718
16719 2004-04-16  Jim Meyering  <jim@meyering.net>
16720
16721         * m4/prereq.m4 (jm_PREREQ_STAT): Remove macro.  It is specific to
16722         coreutils' stat program.
16723         (gl_PREREQ): Don't require jm_PREREQ_STAT.
16724
16725 2004-04-11  Paul Eggert  <eggert@twinsun.com>
16726
16727         * lib/inttostr.h: Include <limits.h> unconditionally, since we assume
16728         C89.
16729         (CHAR_BIT): Remove, since we assume C89.
16730         Include <stdint.h> if available, as per current Autoconf CVS advice.
16731
16732 2004-03-31  Jim Meyering  <jim@meyering.net>
16733
16734         * m4/prereq.m4: Require AC_FUNC_MALLOC, not jm_FUNC_MALLOC.
16735         Require AC_FUNC_REALLOC, not jm_FUNC_REALLOC.
16736         * m4/xalloc.m4: Likewise.
16737
16738 2004-03-30  Paul Eggert  <eggert@twinsun.com>
16739
16740         Merge from coreutils.
16741
16742         * m4/inttostr.m4: New file.
16743         * m4/getdate.m4 (gl_GETDATE): Remove time-related stuff.
16744         Require AM_STDBOOL_H and gl_TIMESPEC instead.
16745         Require gl_CLOCK_TIME.
16746         * m4/clock_time.m4 (gl_CLOCK_TIME): Require AC_GNU_SOURCE.
16747
16748 2004-03-30  Paul Eggert  <eggert@twinsun.com>
16749
16750         * lib/cloexec.h, cloexec.c (set_cloexec_flag): Return int
16751         not bool, to be more consistent with Unix conventions.
16752         Suggested by Bruno Haible.
16753
16754         Merge from coreutils.
16755
16756         * lib/imaxtostr.c, lib/inttostr.c, lib/inttostr.h, lib/offtostr.c:
16757         * lib/umaxtostr.c: New files.
16758
16759         * lib/getdate.h: Include stdbool.h, and timespec.h instead of
16760         the usual <time.h> dance.
16761         (get_date): Change signature to support fractional time stamps.
16762         All callers changed.
16763         * lib/getdate.y: Include "getdate.h" first, as we can now
16764         assume C89 and don't need to worry about 'const'.
16765         Similarly, include "unlocked-io.h" near start, not in middle.
16766         Include <limits.h>.
16767         (textint.value): Use long int rather than int.
16768         (textint.digits): Use size_t rather than int.
16769         (BILLION, LOG10_BILLION): New constants.
16770         (parser_control): New member rel_ns.  Members day_ordinal,
16771         time_zone, month, day, hour, minutes, rel_year, rel_month,
16772         rel_day, rel_hour, rel_minutes, rel_seconds
16773         are now long int, not int.  Member seconds is now struct timespec,
16774         not int.  New member timespec_seen.  Members dates_seen, days_seen,
16775         local_zones_seen, rels_seen, times_seen, zones_seen are now size_t,
16776         not int.
16777         (%union.intval): Now long int, not int.
16778         New member timespec.
16779         (tSDECIMAL_NUMBER, tUDECIMAL_NUMBER): New tokens.
16780         (seconds, signed_seconds, unsigned_seconds): New nonterminals.
16781         (spec): Now is a timespec or an item list.
16782         (timespec, items): New nonterminals.
16783         (time, rel, relunit, number, get_date):
16784         Add support for fractional seconds.
16785         (time): Fix bug: seconds weren't cleared in "00:00 +0000" syntax.
16786         (gmtime, localtime, mktime): Remove decls; not needed with C89.
16787         (to_hour): First arg is now long int, not int.
16788         (to_year): Returns long int, not int.
16789         Don't treat year -70 like 70.
16790         (tm_diff): Returns long int, not int.
16791         (lookup_word): Use bool instead of int when appropriate.
16792         (yylex): Use size_t for count, not int.
16793         Detect overflow when parsing large integer constants.
16794         Add support for fractions.
16795         (get_date): Make pointers 'const' if possible.
16796         Use more-portable code to detect integer overflow.
16797         (main) [TEST]: Adjust to above changes.  Test for localtime failure.
16798         Don't use ctime; it's not reliable if the year has >4 digits.
16799
16800         * lib/human.c (humblock): Inspect BLOCKSIZE if BLOCK_SIZE isn't set.
16801         This is for compatibility with BSD.
16802
16803         * lib/timespec.h (ST_TIME_CMP_NS, ST_TIME_CMP): Define.
16804         (ATIME_CMP, CTIME_CMP, MTIME_CMP, TIMESPEC_NS): Likewise.
16805         From coreutils' system.h.
16806
16807         * lib/userspec.c: Don't include "posixver.h".
16808         (parse_user_spec): Fall back on USER.GROUP parsing, regardless
16809         of POSIX version, as POSIX 1003.1-2001 allows that behavior as a
16810         compatible extension.  Simplify code by removing a boolean int
16811         that was always nonzero if a string was nonnull.
16812
16813 2004-03-30  Jim Meyering  <jim@meyering.net>
16814
16815         Merge from coreutils.
16816
16817         Avoid a configure-time warning about sys/ucred.h on OSF V4.0.
16818         * m4/ls-mntd-fs.m4: Test for sys/ucred.h separately, since
16819         on some systems one must include <grp.h> before it.
16820         Reported by Christian Krackowizer.
16821
16822 2004-03-30  Jim Meyering  <jim@meyering.net>
16823
16824         Merge from coreutils.
16825
16826         * lib/mountlist.c [HAVE_SYS_UCRED_H]: Include grp.h before sys/ucred.h.
16827
16828         * lib/readtokens.c (readtoken): Don't leak 64 bytes when reading
16829         an empty input stream.
16830
16831         * lib/readtokens.c: Include <stdbool.h>.
16832         (readtoken): Use `size_t' rather than int/long.
16833         All callers adjusted.
16834         Use `bool' rather than `int' where appropriate.
16835         Use memset rather than an explicit loop.
16836         Use x2nrealloc rather than xrealloc.
16837         Allow the use of `\0' as a delimiter.
16838         (readtokens): Likewise.
16839         * lib/readtokens.h (readtoken, readtokens): Update prototypes.
16840
16841 2004-03-30  Jim Meyering  <jim@meyering.net>
16842
16843         * m4/realloc.m4: Remove file, since now it does no more than
16844         AC_REQUIRE([AC_FUNC_REALLOC]), and that can be done via
16845         the `configure.ac' section of module/realloc.
16846         * m4/malloc.m4: Likewise, but for AC_FUNC_MALLOC.
16847
16848 2004-03-30  Bruno Haible  <bruno@clisp.org>
16849
16850         * lib/getloadavg.c (getloadavg): Don't assume setlocale returns
16851         nonnull.
16852
16853 2004-03-29  Paul Eggert  <eggert@twinsun.com>
16854
16855         Merge changes to getloadavg.c from coreutils and Emacs.
16856
16857         * lib/getloadavg.c [!defined HAVE_SETLOCALE] (setlocale):
16858         Define to an expression, not to the empty string.
16859         Include cloexec.h and xalloc.h.
16860         (getloadavg): Restore LC_NUMERIC locale after setting it temporarily.
16861         Use set_cloexec_flag rather than rolling our own.
16862         * lib/cloexec.c, lib/cloexec.h: New files.
16863
16864 2004-03-29  Paul Eggert  <eggert@twinsun.com>
16865
16866         * m4/cloexec.m4: New file.
16867
16868 2004-03-18  Paul Eggert  <eggert@twinsun.com>
16869
16870         * lib/getopt.h: Sync with libc CVS.
16871
16872 2004-03-18  Paul Eggert  <eggert@twinsun.com>
16873             Bruno Haible  <bruno@clisp.org>
16874
16875         * m4/mbswidth.m4 (gl_MBSWIDTH): Also test whether <wchar.h> declares
16876         mbswidth.
16877
16878 2004-03-18  Paul Eggert  <eggert@twinsun.com>
16879             Bruno Haible  <bruno@clisp.org>
16880
16881         * lib/mbswidth.h: Include <wchar.h> only if
16882         HAVE_DECL_MBSWIDTH_IN_WCHAR_H, not on all platforms that have
16883         <wchar.h>.
16884         * lib/mbswidth.c: Include <stdio.h> and <time.h> before <wchar.h>.
16885
16886 2004-03-09  Paul Eggert  <eggert@twinsun.com>
16887
16888         * lib/argp-parse.c, getopt.c, getopt.h, getopt1.c:
16889         Sync with libc CVS.
16890         * lib/getopt_int.h: New file, also synced from libc.
16891
16892 2004-03-09  Paul Eggert  <eggert@twinsun.com>
16893
16894         * config/srclistvars.sh: Add GNUWWWLICENSES for eggert.
16895         * config/srclist.txt: Sync getopt with libc.  Add getopt_int.h.
16896         Bring back getopt.c, getopt.h, getopt1.c.
16897
16898 2004-03-07  Paul Eggert  <eggert@twinsun.com>
16899
16900         * m4/c-stack.m4 (gl_PREREQ_C_STACK): Renamed from jm_PREREQ_C_STACK.
16901         All uses changed.  Check for sa_sigaction member; this fixes
16902         a bug first reported by Jason Andrade in
16903         <http://mail.gnu.org/archive/html/bug-textutils/2003-03/msg00027.html>.
16904
16905 2004-03-07  Paul Eggert  <eggert@twinsun.com>
16906
16907         * lib/c-stack.c (SIGACTION_WORKS): New macro.  Use it instead of long
16908         '#if' expressions.  Unlike the code it replaces, it does not
16909         depend on (defined _SC_PAGESIZE).  However, it does depend on
16910         HAVE_STRUCT_SIGACTION_SA_SIGACTION; this last change fixes a bug
16911         first reported by Jason Andrade in
16912         <http://mail.gnu.org/archive/html/bug-textutils/2003-03/msg00027.html>.
16913
16914 2004-02-25  Simon Josefsson  <jas@extundo.com>
16915
16916         * m4/strdup.m4 (gl_PREREQ_STRDUP): Check whether strdup is declared.
16917
16918 2004-02-25  Simon Josefsson  <jas@extundo.com>
16919
16920         * lib/strdup.h: New file.
16921         * lib/strdup.c: Include it.
16922         * lib/path-concat.c: Include strdup.h. Drop strdup declaration.
16923         * lib/userspec.c: Include strdup.h. Drop strdup declaration.
16924
16925 2004-02-23  Karl Berry  <karl@gnu.org>
16926
16927         * doc/maintain.texi, doc/standards.texi, doc/make-stds.texi: new files
16928         (from fencepost.gnu.org:/gd/gnuorg).
16929
16930 2004-02-23  Karl Berry  <karl@gnu.org>
16931
16932         * config/srclistvars.sh (GNUORG) [karl]: redefine.
16933         * config/srclist.txt: add maintain/standards documents.
16934
16935 2004-02-18  Bruno Haible  <bruno@clisp.org>
16936
16937         * m4/xsize.m4 (gl_XSIZE): Require AC_C_INLINE.
16938         Reported by Derek Robert Price <derek@ximbiot.com>.
16939
16940 2004-02-16  Karl Berry  <karl@gnu.org>
16941
16942         * config/mkinstalldirs, install-sh: update from automake.
16943
16944 2004-02-06  Karl Berry  <karl@gnu.org>
16945
16946         * m4/po.m4: update from gettext 0.14.1.
16947
16948 2004-02-06  Karl Berry  <karl@gnu.org>
16949
16950         * lib/config.charset: update from gettext 0.14.1.
16951
16952 2004-02-05  Paul Eggert  <eggert@twinsun.com>
16953
16954         Add comments and code, prompted by suggestions from Bruno Haible
16955         for sh-quote.
16956         * lib/quotearg.h (quotearg_alloc): New decl.  Improve the comments
16957         describing the enum quoting_style values.
16958         * lib/quotearg.c (quotearg_alloc): New function.
16959         (quotearg_buffer_restyled): Treat lone { and } as special.
16960         Treat = as special.  Work around bug with older shells
16961         that "see" a '\' that is really the 2nd byte of a multibyte char.
16962         Quote empty string with shell_quoting_style.
16963
16964 2004-02-03  Bruno Haible  <bruno@clisp.org>
16965
16966         * m4/pipe.m4: New file, from GNU gettext.
16967
16968 2004-02-03  Bruno Haible  <bruno@clisp.org>
16969
16970         * lib/pipe.h: New file, from GNU gettext.
16971         * lib/pipe.c: New file, from GNU gettext.
16972
16973 2004-01-27  Bruno Haible  <bruno@clisp.org>
16974
16975         * m4/execute.m4: New file, from GNU gettext.
16976
16977 2004-01-27  Bruno Haible  <bruno@clisp.org>
16978
16979         * lib/execute.h: New file, from GNU gettext.
16980         * lib/execute.c: New file, from GNU gettext.
16981         * lib/w32spawn.h: New file, from GNU gettext.
16982
16983 2004-01-24  Paul Eggert  <eggert@twinsun.com>
16984
16985         Merge from diffutils.
16986
16987         * lib/file-type.c (file_type): Add typed memory objects.
16988         * lib/file-type.h (S_TYPEISTMO): New macro.
16989
16990         * lib/c-stack.h (c_stack_action): Remove argv argument.
16991         * lib/c-stack.c (c_stack_action): Likewise.  All uses changed.
16992         (die): Don't calculate message unless segv_action returns.
16993         (get_stack_location, min_address_from_argv, max_address_from_argv,
16994         volatile stack_base, volatile_stack_size): Remove.
16995         (segv_handler): If ! HAVE_XSI_STACK_OVERFLOW_HEURISTIC, assume
16996         that every segmentation violation is a stack overflow.  (Ouch!)
16997         See Debian bug 136249 (still outstanding) for more info about why
16998         HAVE_XSI_STACK_OVERFLOW_HEURISTIC fails on Linux kernels.
16999
17000 2004-01-24  Paul Eggert  <eggert@twinsun.com>
17001
17002         Exit-status fix from coreutils.
17003
17004         Use exit_failure consistently in place of EXIT_FAILURE,
17005         so that program exit statuses are consistent on failure.
17006
17007         * lib/argmatch.c (ARGMATCH_DIE) [! defined ARGMATCH_DIE]:
17008         Include "exitfail.h", and use exit_failure rather than EXIT_FAILURE.
17009         * lib/argmatch.h: Comment fix to match the above.
17010         * lib/obstack.c (obstack_exit_failure) [!defined _LIBC]:
17011         Now a macro referring to exit_failure, instead of a separate
17012         variable.  Include "exitfail.h" to get it.
17013         * lib/xstrtol.h: Include "exitfail.h".
17014         (STRTOL_FATAL_ERROR): Exit with status exit_failure, not 2.
17015
17016         * lib/long-options.c (parse_long_options): Use prototype
17017         for usage function arg.  Pass it EXIT_SUCCESS rather than 0,
17018         for clarity.
17019
17020 2004-01-21  Jim Meyering  <jim@meyering.net>
17021
17022         * lib/mktime.c (__mktime_internal) [!_LIBC]: Define to mktime_internal
17023         so as not to conflict with a different-sized __mktime_internal
17024         function in GNU libc.
17025         * lib/timegm.c (__mktime_internal) [!_LIBC]: Likewise.
17026         Problem building statically-linked `ls' reported by Michael Brunnbauer.
17027
17028 2004-01-20  Karl Berry  <karl@gnu.org>
17029
17030         * config/config.guess: update from config.
17031
17032         * config/srclistvars.sh: GNUWWWLICENSES for karl.
17033
17034 2004-01-20  Bruno Haible  <bruno@clisp.org>
17035
17036         Safer stack allocation.
17037         * lib/setenv.c: Include allocsa.h.
17038         (alloca): Remove fallback definition.
17039         (freea): Remove macro.
17040         (__add_to_environ) [!_LIBC]: Use allocsa instead of alloca. Use freesa
17041         instead of freea.
17042
17043 2004-01-20  Bruno Haible  <bruno@clisp.org>
17044
17045         * m4/eealloc.m4: New file, from GNU gettext.
17046
17047 2004-01-20  Bruno Haible  <bruno@clisp.org>
17048
17049         * m4/allocsa.m4: New file, from GNU gettext.
17050
17051 2004-01-20  Bruno Haible  <bruno@clisp.org>
17052
17053         * lib/xallocsa.h: New file, from GNU gettext.
17054         * lib/xallocsa.c: New file, from GNU gettext.
17055
17056 2004-01-20  Bruno Haible  <bruno@clisp.org>
17057
17058         * lib/wait-process.c: On Windows, include windows.h. Needed on mingw.
17059
17060 2004-01-20  Bruno Haible  <bruno@clisp.org>
17061
17062         * lib/wait-process.c (wait_subprocess): Add ignore_sigpipe argument.
17063         * lib/wait-process.c (wait_subprocess): Likewise. Handle SIGPIPE
17064         specially.
17065
17066 2004-01-20  Bruno Haible  <bruno@clisp.org>
17067
17068         * lib/wait-process.c (wait_process): Disable the 2003-10-31 waitid()
17069         patch.
17070
17071 2004-01-20  Bruno Haible  <bruno@clisp.org>
17072
17073         * lib/wait-process.c (cleanup_slaves): Use ANSI C declaration.
17074
17075 2004-01-20  Bruno Haible  <bruno@clisp.org>
17076
17077         * lib/eealloc.h: New file.
17078
17079 2004-01-20  Bruno Haible  <bruno@clisp.org>
17080
17081         * lib/binary-io.h: Avoid warnings on Cygwin.
17082
17083 2004-01-20  Bruno Haible  <bruno@clisp.org>
17084
17085         * lib/allocsa.h: New file, from GNU gettext.
17086         * lib/allocsa.c: New file, from GNU gettext.
17087
17088 2004-01-18  Karl Berry  <karl@gnu.org>
17089
17090         * doc/gpl.texi, doc/lgpl.texi: new files.
17091
17092 2004-01-18  Karl Berry  <karl@gnu.org>
17093
17094         * config/srclistvars.sh (GNUWWWLICENSES): new variable.
17095         * config/srclist.txt ({fdl,gpl,lgpl}.text): get from there.
17096
17097 2004-01-15  Paul Eggert  <eggert@twinsun.com>
17098
17099         Merge from coreutils.
17100
17101         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Check for uintptr_t.
17102         * m4/posixver.m4 (gl_POSIXVER): Require gl_DEFAULT_POSIX2_VERSION.
17103         (gl_DEFAULT_POSIX2_VERSION): Move
17104         the documentation from 'configure' into 'config.hin',
17105         so that 'configure --help' isn't burdened by it and
17106         we don't have to worry about its formatting there.
17107         Reword the documentation so that it's more succinct
17108         and can be run together into a single paragraph.
17109         * m4/same.m4 (gl_SAME): Check for pathconf.
17110
17111 2004-01-15  Paul Eggert  <eggert@twinsun.com>
17112
17113         Merge from coreutils.
17114
17115         * lib/posixver.c: Include posixver.h.
17116
17117         * lib/same.c: Include <stdbool.h>, <limits.h>.
17118         (_POSIX_NAME_MAX): Define if not defined.
17119         (MIN): New macro.
17120         (same_name): If file names are silently truncated, report
17121         that the file names are the same if they are the same after
17122         the silent truncation.
17123
17124         * lib/xstrtod.h (xstrtod): Accept an extra arg, specifying the
17125         conversion function.
17126         * lib/xstrtod.c (xstrtod): Likewise.  All callers changed to
17127         include c-strtod.h and use c_strtod.  Don't include stdlib.h; no
17128         longer needed.
17129
17130 2004-01-15  Jim Meyering  <jim@meyering.net>
17131
17132         Merge from coreutils.
17133
17134         * m4/clock_time.m4 (gl_CLOCK_TIME): Don't set LIB_CLOCK_GETTIME
17135         if no library is required.
17136         * m4/jm-macros.m4: Don't require UTILS_SYS_OPEN_MAX.
17137         * m4/jm-macros.m4 (jm_MACROS): Require gl_FUNC_FREE.
17138         * m4/jm-macros.m4 (jm_MACROS): Require autoconf-2.58.
17139         (AC_LANG_SOURCE): Remove definition, now that we require autoconf-2.58.
17140         * m4/jm-macros.m4 (jm_MACROS): Don't require AC_FUNC_FTW.
17141         * m4/lib-check.m4 (jm_LIB_CHECK): Do not set LIB_CRYPT to the
17142         value, $ac_cv_search_crypt, if it's "none required".
17143         * m4/posixver.m4 (gl_DEFAULT_POSIX2_VERSION): New macro.
17144         * m4/prereq.m4 (jm_PREREQ): Require AC_FUNC_GETLOADAVG,
17145         not gl_FUNC_GETLOADAVG.
17146         * m4/prereq.m4 (jm_PREREQ): Require gl_READTOKENS, gl_MD5, gl_MAKEPATH,
17147         gl_LONG_OPTIONS, and gl_IDCACHE, gl_GETUGROUPS.
17148
17149 2004-01-15  Jim Meyering  <jim@meyering.net>
17150
17151         Merge from coreutils.
17152
17153         * lib/md5.h (rol) [__GNUC__ && __i386__]: Don't use `asm' code.  These
17154         days, gcc-3.x does better all by itself.  Patch from Dean Gaudet:
17155         http://mail.gnu.org/archive/html/bug-coreutils/2003-11/msg00144.html
17156
17157         * lib/posixver.c (DEFAULT_POSIX2_VERSION): Use definition of new,
17158         optional configure-time default.
17159
17160         * lib/version-etc.c (version_etc_copyright): Update copyright date.
17161
17162         * lib/xreadlink.c (xreadlink): Correct outdated comment.
17163
17164 2004-01-15  Alexandre Duret-Lutz  <adl@gnu.org>
17165
17166         Merge from coreutils.
17167
17168         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Do not set LIB_NANOSLEEP to the
17169         value, $ac_cv_search_nanosleep, if it's "none required".
17170
17171 2004-01-14  Paul Eggert  <eggert@twinsun.com>
17172
17173         * lib/fnmatch_loop.c (ALLOCA_LIMIT): Remove macro, which collided
17174         with like-named macro in fnmatch.c.
17175         (EXT): Use an internal constant instead.
17176
17177         Merge fnmatch patches from glibc.
17178         * lib/fnmatch.c (mbsinit): Remove define.
17179         Add libc_hidden_ver (__fnmatch, fnmatch).
17180         * lib/fnmatch_loop.c (FCT): Cast to int32_t and UCHAR when appropriate.
17181         Adjust to renaming of collseq_table_lookup to __collseq_table_lookup.
17182
17183 2004-01-14  Karl Berry  <karl@gnu.org>
17184
17185         * config/install-sh: update from automake.
17186
17187 2004-01-13  Karl Berry  <karl@gnu.org>
17188
17189         * config/install-sh: update from automake.
17190
17191 2004-01-09  Karl Berry  <karl@gnu.org>
17192
17193         * config/install-sh: update from automake.
17194
17195 2004-01-05  Karl Berry  <karl@gnu.org>
17196
17197         * config/config.{sub,guess}: update from config.
17198
17199 2003-12-31  Karl Berry  <karl@gnu.org>
17200
17201         * config/depcomp: update from automake.
17202
17203 2003-12-14  Karl Berry  <karl@gnu.org>
17204
17205         * lib/config.charset: update from gettext-runtime.
17206
17207 2003-12-03  Paul Eggert  <eggert@twinsun.com>
17208
17209         * lib/getgroups.c (getgroups): xmalloc takes one argument, not two.
17210         Bug reported by Alfred M. Szmidt.
17211
17212 2003-12-03  Bruno Haible  <bruno@clisp.org>
17213
17214         * m4/gettext.m4: Upgrade from gettext-0.13.
17215         * m4/po.m4: Upgrade from gettext-0.13.
17216         * m4/size_max.m4 (gl_SIZE_MAX): Don't use the _ONCE macros here.
17217         * m4/intmax.m4: New file, from gettext-0.13.
17218         * m4/printf-posix.m4: New file, from gettext-0.13.
17219
17220 2003-11-29  Karl Berry  <karl@gnu.org>
17221
17222         * lib/argp-{help.c,parse.c,namefrob.h}, argp.h: update from libc.
17223
17224 2003-11-25  Paul Eggert  <eggert@twinsun.com>
17225             Bruno Haible  <bruno@clisp.org>
17226
17227         * lib/printf-parse.h: Don't include sys/types.h.
17228         (ARG_NONE): New macro.
17229         (char_directive): Change type of *arg_index fields to size_t.
17230         * lib/printf-parse.c: Don't include sys/types.h.
17231         (SSIZE_MAX): Remove macro.
17232         (PRINTF_PARSE): Change the type of the arg_index variables to size_t.
17233         Remove unnecessary overflow check.
17234         * lib/vasnprintf.c (VASNPRINTF): Update for type change of *arg_index
17235         fields.
17236
17237 2003-11-25  Bruno Haible  <bruno@clisp.org>
17238
17239         * modules/vasnprintf (Files): Remove m4/ssize_t.m4.
17240
17241 2003-11-25  Bruno Haible  <bruno@clisp.org>
17242
17243         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_PARSE): Don't require
17244         gt_TYPE_SSIZE_T.
17245
17246 2003-11-24  Paul Eggert  <eggert@twinsun.com>
17247
17248         * modules/alloca: Remove dependency on xalloc.
17249
17250 2003-11-24  Paul Eggert  <eggert@twinsun.com>
17251
17252         * lib/alloca.c: Remove dependency on xalloc module.
17253         (xalloc_die): Remove.
17254         (memory_full) [!defined emacs]: New macro.
17255         [!defined emacs]: Don't include xalloc.h.
17256         (alloca): Invoke memory_full, not xalloc_die, if malloc fails or
17257         address arithmetic overflows.  Change datatypes a bit to avoid
17258         unnecessary casts.
17259
17260 2003-11-22  Jim Meyering  <jim@meyering.net>
17261
17262         * lib/xmalloc.c (x2nrealloc_inline): Fix typos in comments:
17263         s/size/size_t/.
17264
17265 2003-11-21  Karl Berry  <karl@gnu.org>
17266
17267         * config/config.{sub,guess}: update from config.
17268
17269 2003-11-18  Karl Berry  <karl@gnu.org>
17270
17271         * config/config.{sub,guess}: update from config.
17272
17273         * config/(printf-{parse,args}.[ch]): sync broken, sigh.
17274
17275 2003-11-17  Paul Eggert  <eggert@twinsun.com>
17276
17277         * README: Mention that S+T cannot overflow if S is the size of
17278         an existing object and T is sufficiently small.
17279
17280 2003-11-17  Jim Meyering  <jim@meyering.net>
17281
17282         On systems without utime and without a utimes function capable of
17283         dealing with a NULL struct utimbuf* argument, this utime replacement
17284         could -- in unusual circumstances -- leak a file descriptor.
17285         * lib/utime.c: Include <unistd.h> and <errno.h>.
17286         (utime_null): Be sure to close `fd' and to preserve errno.
17287         Reported by Geoff Collyer via Arnold Robbins.
17288
17289 2003-11-17  Bruno Haible  <bruno@clisp.org>
17290
17291         * modules/vasnprintf (Files): Add m4/ssize_t.m4.
17292         (Depends-on): Add xsize.
17293
17294 2003-11-17  Bruno Haible  <bruno@clisp.org>
17295
17296         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_PARSE): Require gt_TYPE_SSIZE_T.
17297
17298 2003-11-17  Bruno Haible  <bruno@clisp.org>
17299
17300         * lib/vasnprintf.c (alloca): Remove fallback definition.
17301         (freea): Remove definition.
17302         (VASNPRINTF): Use alloca only for small sizes, say <= 4000 bytes.
17303         Reported by Paul Eggert.
17304
17305 2003-11-16  Paul Eggert  <eggert@twinsun.com>
17306             Bruno Haible  <bruno@clisp.org>
17307
17308         Protect against address arithmetic overflow.
17309         * lib/printf-args.h: Include stddef.h.
17310         (arguments): Change type of field 'count' to size_t.
17311         * lib/printf-args.c (printf_fetchargs): Use size_t instead of
17312         'unsigned int' where appropriate.
17313         * lib/printf-parse.h: Include sys/types.h.
17314         (char_directive): Change type of *arg_index fields to ssize_t.
17315         (char_directives): Change type of fields 'count', max_*_length to
17316         size_t.
17317         * lib/printf-parse.c: Include sys/types.h and xsize.h.
17318         (SSIZE_MAX): Define fallback value.
17319         (PRINTF_PARSE): Use size_t instead of 'unsigned int' and ssize_t
17320         instead of 'int' where appropriate. Check a_allocated, d_allocated
17321         against overflow. Reject %m$ argument numbers > SSIZE_MAX + 1.
17322         * lib/vasnprintf.c: Include xsize.h.
17323         (VASNPRINTF): Use size_t instead of 'unsigned int' where appropriate.
17324         Check alloca, malloc, realloc, ENSURE_ALLOCATION arguments against
17325         overflow. Avoid wraparound when converting a width or precision from
17326         decimal to binary.
17327
17328 2003-11-16  Bruno Haible  <bruno@clisp.org>
17329
17330         Update from GNU gettext.
17331         * lib/printf-parse.c: Generalize to it can be compiled for wide
17332         strings.
17333         (PRINTF_PARSE, CHAR_T, DIRECTIVE, DIRECTIVES): New macros.
17334         * lib/vasnprintf.c: Generalize to it can be compiled for wide strings.
17335         (VASNPRINTF, CHAR_T, DIRECTIVE, DIRECTIVES, PRINTF_PARSE, USE_SNPRINTF,
17336         SNPRINTF): New macros.
17337         Don't include <alloca.h> if the file is used inside libintl.
17338         (local_wcslen): New function, for Solaris 2.5.1.
17339         (VASNPRINTF): Use it instead of wcslen.
17340
17341 2003-11-16  Bruno Haible  <bruno@clisp.org>
17342
17343         * lib/xsize.h (xmax): New function.
17344         (xsum, xsum3, xsum4): Declare as "pure" functions.
17345
17346 2003-11-12  Paul Eggert  <eggert@twinsun.com>
17347
17348         * modules/xalloc (Files): Undo latest change, since xalloc.h
17349         no longer needs SIZE_MAX or PTRDIFF_MAX.
17350
17351 2003-11-12  Paul Eggert  <eggert@twinsun.com>
17352
17353         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Do not require gl_SIZE_MAX or
17354         gl_PTRDIFF_MAX.
17355
17356 2003-11-12  Paul Eggert  <eggert@twinsun.com>
17357
17358         * lib/xstrtol.c (__xstrtol): Remove "break" immediately after
17359         "return", to pacify some unknown compiler.  Problem reported
17360         by Joerg Schilling.
17361
17362 2003-11-12  Paul Eggert  <eggert@twinsun.com>
17363
17364         * lib/xalloc.h: Do not include <limits.h> or <stdint.h>.
17365         (xalloc_oversized): Use sizeof (ptrdiff_t) and sizeof (size_t) for
17366         the heuristic, rather than PTRDIFF_MAX and SIZE_MAX.  This
17367         heuristic is just as accurate as far as we know, and it removes a
17368         dependency on size_max.m4 and ptrdiff_max.m4.
17369
17370 2003-11-11  Bruno Haible  <bruno@clisp.org>
17371
17372         * modules/xsize (Files): Add m4/size_max.m4.
17373         * modules/xalloc (Files): Add m4/size_max.m4, m4/ptrdiff_max.m4.
17374
17375 2003-11-11  Bruno Haible  <bruno@clisp.org>
17376
17377         * m4/size_max.m4: New file.
17378         * m4/ptrdiff_max.m4: New file.
17379         * m4/xsize,m4 (gl_XSIZE): Require gl_SIZE_MAX.
17380         * m4/xalloc.m4 (gl_PREREQ_XALLOC): New macro.
17381         (gl_XALLOC): Invoke it.
17382
17383 2003-11-11  Bruno Haible  <bruno@clisp.org>
17384
17385         * lib/xsize.h (SIZE_MAX): Remove fallback definition.
17386         * lib/xalloc.h: Include limits.h. Assume SIZE_MAX and PTRDIFF_MAX are
17387         defined.
17388
17389 2003-11-10  Paul Eggert  <eggert@twinsun.com>
17390
17391         * lib/xalloc.h (xalloc_oversized): [! (defined PTRDIFF_MAX &&
17392         PTRDIFF_MAX < SIZE_MAX)]: Fix off-by-one error that would have
17393         rejected some allocations of exactly SIZE_MAX - 2 bytes.
17394         From Bruno Haible.
17395         [defined PTRDIFF_MAX && PTRDIFF_MAX < SIZE_MAX]: Use SIZE_MAX,
17396         not (size_t) -1, since it's defined here.
17397
17398 2003-11-09  Karl Berry  <karl@gnu.org>
17399
17400         * config/mkinstalldirs, depcomp, mdate-sh: update from automake.
17401
17402 2003-11-06  Paul Eggert  <eggert@twinsun.com>
17403
17404         * lib/xalloc.h [HAVE_STDINT_H]: Include <stdint.h>.
17405         (xalloc_oversized) [! (PTRDIFF_MAX < SIZE_MAX)]:
17406         Reject sizes of exactly SIZE_MAX bytes.
17407         * lib/xreadlink.c: Include "xalloc.h" before checking whether SIZE_MAX
17408         is defined, since "xalloc.h" now defines SIZE_MAX on modern hosts.
17409
17410 2003-11-05  Bruno Haible  <bruno@clisp.org>
17411
17412         * lib/xsize.h: Include limits.h, to avoid a possible collision with
17413         SIZE_MAX defined in <limits.h> on Solaris.
17414
17415 2003-11-04  Jim Meyering  <jim@meyering.net>
17416
17417         * modules/sysexits: Use the `$(VAR)' notation for AC_SUBST'd
17418         variable names, rather than @VAR@.
17419         * modules/poll: Likewise.
17420
17421 2003-11-04  Bruno Haible  <bruno@clisp.org>
17422
17423         * modules/xsize: New file.
17424         * modules/linebreak: Depend on xsize.
17425         * MODULES.html.sh (func_all_modules): Add xsize.
17426
17427 2003-11-04  Bruno Haible  <bruno@clisp.org>
17428
17429         * m4/xsize.m4: New file.
17430
17431 2003-11-04  Bruno Haible  <bruno@clisp.org>
17432
17433         * lib/xsize.h: New file.
17434         * lib/linebreak.c: Include xsize.h.
17435         (mbs_possible_linebreaks, mbs_width_linebreaks): Check malloc()
17436         argument for overflow.
17437         Suggested by Paul Eggert.
17438
17439 2003-11-03  Karl Berry  <karl@gnu.org>
17440
17441         * config/config.{guess,sub}: update from config.
17442
17443 2003-11-03  Jim Meyering  <jim@meyering.net>
17444
17445         * modules/userspec (lib_SOURCES): Add userspec.h.
17446         (Include): Add "userspec.h".
17447         Improve description.
17448
17449 2003-11-03  Jim Meyering  <jim@meyering.net>
17450
17451         * lib/userspec.c: Include "userspec.h".
17452         * lib/userspec.h: New file.
17453
17454 2003-11-03  Bruno Haible  <bruno@clisp.org>
17455
17456         * m4/wait-process.m4 (gl_WAIT_PROCESS): Also check for waitid.
17457
17458 2003-11-03  Bruno Haible  <bruno@clisp.org>
17459
17460         * lib/wait-process.c (wait_process): Use waitid with WNOWAIT if
17461         available, to avoid (extremely rare) race condition.
17462         Suggested by Paul Eggert.
17463
17464 2003-11-02  Karl Berry  <karl@gnu.org>
17465
17466         * config/srclist.txt (vasprintf.c): sync broken, sigh.
17467
17468 2003-10-31  Paul Eggert  <eggert@twinsun.com>
17469
17470         * lib/mountlist.h (struct mount_entry.me_type_malloced): New member.
17471         * lib/mountlist.c (SIZE_MAX): Define if not defined already.
17472         (read_filesystem_list): Set and use me_type_malloced.
17473         Use "sizeof *me" rather than "sizeof (struct mount_entry)" (or
17474         whatever the type happens to be), for brevity and consistency.
17475         Check for size calculation overflow on Alphas running OSF/1.
17476
17477 2003-10-31  Jim Meyering  <jim@meyering.net>
17478
17479         * lib/hash.c: Include "xalloc.h" for use of xalloc_oversized.
17480
17481         * lib/linebuffer.c: Include <string.h> for declaration of memset.
17482
17483 2003-10-30  Paul Eggert  <eggert@twinsun.com>
17484             Bruno Haible  <bruno@clisp.org>
17485
17486         * lib/vasprintf.c: Include <limits.h>, <stdlib.h>.
17487         (vasprintf): Fail if the resulting length doesn't fit in an 'int'.
17488
17489 2003-10-30  Paul Eggert  <eggert@cs.ucla.edu>
17490
17491         * m4/host-os.m4 (UTILS_HOST_OS): Change netbsd*-gnu pattern back to
17492         netbsd*-gnu*.  Suggested by Robert Millan.
17493
17494 2003-10-29  Paul Eggert  <eggert@twinsun.com>
17495
17496         * modules/group-member: Depend on stdbool.
17497
17498 2003-10-29  Paul Eggert  <eggert@twinsun.com>
17499
17500         * m4/xalloc.m4 (gl_XALLOC): Undo previous change.
17501
17502 2003-10-29  Paul Eggert  <eggert@twinsun.com>
17503
17504         * m4/host-os.m4 (UTILS_HOST_OS): Resurrect netbsd*-gnu.  Add comments
17505         to it, and to knetbsd*-gnu and kfreebsd*-gnu.  Remove the '*' from
17506         after the 'gnu' in these cases.  This fixes some bugs in the
17507         previous change, and is based on suggestions by Robert Millan.
17508
17509 2003-10-29  Paul Eggert  <eggert@twinsun.com>
17510
17511         * lib/xalloc.h (xalloc_oversized): Now a macro, not a function,
17512         so that it works even if SIZE_MAX < N.  Do not include <stdbool.h>;
17513         no longer needed.
17514         * lib/quotearg.c (quotearg_n_options): Use it.
17515         * lib/group-member.c: Include <stdbool.h>.
17516         (free_group_info): Arg is now const *; don't free arg.
17517         (get_group_info): Now returns bool and accepts struct group_info *,
17518         rather than returning a malloc'ed struct group_info *.
17519         All uses changed.  Check for overflow in internal size calculation.
17520
17521         * lib/getusershell.c (readname): Simplify the code by using x2nrealloc
17522         rather than xmalloc/xrealloc.
17523         * lib/linebuffer.c (initbuffer, readlinebuffer): Simplify the code by
17524         using x2realloc rather than xmalloc/xrealloc.  Also, fix a C
17525         conformance bug: the old code used a pointer after freeing the
17526         storage that it addressed.
17527         * lib/hash.c (hash_initialize): Simplify the code by using
17528         xalloc_oversized rather than doing it by hand.
17529         * lib/getgroups.c (getgroups): Don't use xrealloc, since we don't need
17530         the buffer preserved.  Use free and xmalloc instead.
17531         * lib/quotearg.c (quotearg_n_options): Likewise.
17532         Use a simpler test for size overflow.  Don't use xalloc_oversized
17533         because unsigned int might be wider than size_t (!); this suggests
17534         that we should switch from unsigned int to size_t for slot numbers.
17535
17536 2003-10-28  Paul Eggert  <eggert@twinsun.com>
17537
17538         * m4/host-os.m4 (UTILS_HOST_OS): Identify GNU/KFreeBSD and
17539         GNU/KNetBSD.  These implementations use glibc atop the FreeBSD and
17540         NetBSD kernels.  Requested by Richard Stallman.
17541
17542 2003-10-27  Paul Eggert  <eggert@twinsun.com>
17543
17544         * lib/exclude.c (new_exclude): Use xzalloc rather than xmalloc
17545         to allocate the returned structure.  Do not allocate a subarray,
17546         as x2nrealloc will do that.
17547         (add_exclude): Use x2nrealloc to reallocate ex->exclude,
17548         instead of xnrealloc.
17549         (add_exclude_file): Use x2realloc instead of malloc + xnrealloc.
17550
17551 2003-10-27  Bruno Haible  <bruno@clisp.org>
17552
17553         * lib/stdbool_.h: Better support for BeOS.
17554
17555 2003-10-26  Paul Eggert  <eggert@twinsun.com>
17556
17557         * m4/xalloc.m4 (gl_XALLOC): Requore AC_C_INLINE, since xalloc.h
17558         now uses inline.
17559
17560 2003-10-26  Paul Eggert  <eggert@twinsun.com>
17561
17562         * lib/xalloc.h (xalloc_oversized): New static inline function, for
17563         callers that want to do their own size-overflow checking.  Include
17564         <stdbool.h>, since xalloc_oversized returns bool.
17565         * lib/xalloc.c (array_size_overflow): Remove.  All callers changed
17566         to use xalloc_oversized.
17567
17568         Add two functions x2realloc, x2nrealloc, for programs that grow
17569         arrays dynamically by doubling their sizes.
17570         * lib/xalloc.h (x2realloc, x2nrealloc): New decls.
17571         * lib/xmalloc.c (x2nrealloc_inline, x2nrealloc, x2realloc):
17572         New functions.
17573
17574         Port to C99 semantics for 'inline' of external functions.
17575         Bug reported by Bruno Haible.
17576         * lib/xmalloc.c (xnmalloc_inline): New static inline function,
17577         with the old contents of xnmalloc.
17578         (xnmalloc, xmalloc): Use it.
17579         (xnrealloc_inline): New static inline function,
17580         with the old contents of xnrealloc.
17581         (xnrealloc, xrealloc): Use it.
17582
17583         * lib/alloc.c (alloca): xmalloc cannot return NULL, so don't test for
17584         that.
17585
17586 2003-10-26  Karl Berry  <karl@gnu.org>
17587
17588         * config/srclist.txt (COPYING.DOC): no longer available from
17589         /gd/gnuorg; don't know where the ultimate source is.
17590
17591 2003-10-25  Paul Eggert  <eggert@twinsun.com>
17592
17593         Fix several address-calculation bugs in the hash modules,
17594         plus some minor code cleanup.
17595
17596         * lib/hash.h: Include <stdbool.h>, for bool.
17597         * lib/hash.c: Don't include <stdbool.h>, since hash.h does it now.
17598         * lib/hash.h (Hash_hasher, hash_get_n_buckets, hash_get_n_buckets_used,
17599         hash_get_n_entries, hash_get_max_bucket_length,
17600         hash_get_entries, hash_do_for_each, hash_string, hash_initialize,
17601         hash_rehash): Use size_t rather than unsigned.
17602         * lib/hash.c (struct hash_table, hash_get_n_buckets,
17603         hash_get_n_buckets_used, hash_get_n_entries,
17604         hash_get_max_bucket_length, hash_table_ok, hash_print_statistics,
17605         hash_get_entries, hash_do_for_each, hash_string, is_prime,
17606         next_prime, hash_initialize, hash_rehash, hash_delete, hash_print):
17607         Likewise.
17608         (SIZE_MAX): Define if not defined.
17609         (hash_get_max_bucket_length, hash_table_ok, hash_lookup,
17610         hash_get_first, hash_get_next, hash_get_entries, hash_do_for_each,
17611         hash_print):
17612         Use const * when possible.
17613         (hash_string): Use (unsigned char) *P rather than *(unsigned char *) P.
17614         (check_tuning): Fix bug: if tuning parameters were very close to
17615         0 or 1, rounding errors could have caused subscript violations.
17616         (hash_initialize, allocate_entry, hash_print): Remove unnecessary cast.
17617         (hash_initialize): Add 'fail:' label
17618         to free table and return NULL, and use it to simplify code.
17619         Use calloc rather than clearing the storage ourself.
17620         (hash_initialize, hash_rehash): Check for arithmetic overflow in
17621         buffer size calculations.
17622         * lib/hash-pjw.h (hash_pjw): Use size_t, not unsigned.
17623         Include <stddef.h>, for size_t.
17624         * lib/hash-pjw.c (hash_pjw): Likewise.
17625         Switch to method described by Bruno Haible.
17626         Include <limits.h>, for CHAR_BIT.
17627         (SIZE_BITS): New macro.
17628
17629 2003-10-23  Paul Eggert  <eggert@twinsun.com>
17630
17631         * m4/getline.m4 (AM_FUNC_GETLINE):
17632         Don't include getndelim2.o twice into LIBOBJS; this breaks on some
17633         hosts.  Problem reported by Derek Robert Price in
17634         <http://mail.gnu.org/archive/html/bug-gnulib/2003-10/msg00092.html>.
17635         This patch can be withdrawn after Autoconf 2.58 is required for gnulib.
17636         * m4/getndelim2.m4 (gl_GETNDELIM2): Likewise.
17637
17638 2003-10-21  Paul Eggert  <eggert@twinsun.com>
17639
17640         * lib/getndelim2.c (getndelim2): When size calculation overflows,
17641         ceiling the allocation at NMAX bytes rather than silently
17642         discarding input bytes before NMAX is reached.  This makes
17643         a difference only if NMAX exceeds SIZE_MAX / 2.
17644
17645         * lib/obstack.c: Merge from glibc.
17646         [defined _LIBC]: Include <obstack.h>, not "obstack.h".
17647         Add libc_hidden_def (_obstack_newchunk).
17648         (_obstack_free) [! defined _LIBC]: Remove.
17649         [defined _LIBC]: Make a strong alias from obstack_free, rather than
17650         a clone of the function body.
17651         (fputs) [defined _LIBC && defined USE_IN_LIBIO]: Remove.
17652         [defined _LIBC && !defined USE_IN_LIBIO]: Include <libio/iolibio.h>.
17653
17654         * lib/obstack.h: Indenting cleanup, to make it easier to merge with
17655         glibc.
17656         (obstack_grow, obstack_grow0): Remove unnecessary parentheses around
17657         arg to memcpy.
17658
17659         * lib/obstack.h (obstack_1grow_fast): Properly parenthesize arg.
17660         (obstack_ptr_grow_fast, obstack_int_grow_fast):
17661         Don't use lvalue casts, as GCC plans to remove support for them
17662         in GCC 3.5.  Reported by Joseph S. Myers.  This bug
17663         was also present in the non-GCC version, indicating that this
17664         code had always been buggy and had never been widely used.
17665         (obstack_1grow, obstack_ptr_grow, obstack_int_grow, obstack_blank):
17666         Use the fast variant of each macro, rather than copying the
17667         definiens of the fast variant; that way, we'll be more likely to
17668         catch future bugs in the fast variants.
17669
17670 2003-10-20  Bruno Haible  <bruno@clisp.org>
17671
17672         * modules/wait-process: New file.
17673         * MODULES.html.sh (func_all_modules): Add wait-process.
17674
17675 2003-10-20  Bruno Haible  <bruno@clisp.org>
17676
17677         * m4/wait-process.m4: New file.
17678
17679 2003-10-20  Bruno Haible  <bruno@clisp.org>
17680
17681         * lib/wait-process.h: New file, from GNU gettext.
17682         * lib/wait-process.c: New file, from GNU gettext.
17683
17684 2003-10-19  Jim Meyering  <jim@meyering.net>
17685
17686         * lib/vasnprintf.c (vasnprintf): Work around losing snprintf on
17687         HPUX 10.20.
17688
17689 2003-10-18  Karl Berry  <karl@gnu.org>
17690
17691         * config/config.guess: update from config.
17692
17693 2003-10-16  Paul Eggert  <eggert@twinsun.com>
17694
17695         * lib/getgroups.c: Include <errno.h>, <stdlib.h>.
17696         (getgroups): First arg is int, not size_t.
17697         Don't let 'free' mangle errno.
17698
17699 2003-10-16  Paul Eggert  <eggert@twinsun.com>
17700
17701         * README: Mention that gnulib assumes that (foo *) NULL + 0 == NULL.
17702
17703 2003-10-16  Karl Berry  <karl@gnu.org>
17704
17705         * config/config.{guess,sub}: update from config.
17706
17707 2003-10-16  Jim Meyering  <jim@meyering.net>
17708
17709         * lib/xmalloc.c: Include <string.h>, for declarations of memset and
17710         memcpy.
17711
17712 2003-10-15  Paul Eggert  <eggert@twinsun.com>
17713
17714         * lib/exclude.c: Do not include <inttypes.h> or <stdint.h>.
17715         (SIZE_MAX): Remove.
17716         (new_exclude, add_exclude_file): Initial size no longer needs to
17717         be a power of 2.
17718         (add_exclude, add_exclude_file): Use xnrealloc instead of rolling
17719         our own address arithmetic overflow checking.
17720
17721         * lib/fnmatch.c (SIZE_MAX): Define if standard headers don't.
17722         (fnmatch): Do not alloca more than 2000 wide characters;
17723         instead, use malloc for large buffers.
17724         Check for address arithmetic overflow, and return -1
17725         with errno set to ENOMEM in that case.
17726         * lib/fnmatch_loop.c (ALLOCA_LIMIT): New macro.
17727         (NEW_PATTERN): Do not alloca more than 8000 bytes;
17728         instead, return -1.  Check for address arithmetic overflow.
17729
17730 2003-10-14  Paul Eggert  <eggert@twinsun.com>
17731
17732         Handle invalid suffixes and overflow independently, so that
17733         callers can treat them independently as needed.  Fix some bugs in
17734         suffix handling, e.g., "100k@" was not diagnosed as an invalid
17735         suffix for a human-readable blocksize.  The major caller-visible
17736         change is the addition of a new
17737         LONGINT_INVALID_SUFFIX_CHAR_WITH_OVERFLOW enum value, indicating
17738         that both overflow and suffix chars were found.
17739
17740         * lib/human.c (humblock): Don't check separately for invalid suffix
17741         char; that is xstrtoumax's job (now that its bug is fixed).
17742         * lib/xstrtoimax.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM) [defined
17743         INTMAX_MAX]: New macros.
17744         * lib/xstrtol.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM, TYPE_MINIMUM,
17745         TYPE_MAXIMUM): New macros.
17746         (bkm_scale, bkm_scale_by_power): Return strtol_error, not int.
17747         (bkm_scale, bkm_scale_by_power, __xstrtol): Return maximal values
17748         if overflow occurs, as it's what __strtol does and it's more useful
17749         in practice.
17750         (__xstrtol): If __strtol reports some error other than ERANGE,
17751         reflect it to the caller as LONGINT_INVALID.  If it reports
17752         ERANGE, continue the rest of parsing, and report LONGINT_OVERFLOW
17753         | LONGINT_INVALID_SUFFIX_CHAR if both errors occur.
17754         * lib/xstrtol.h (LONGINT_INVALID_SUFFIX_CHAR_WITH_OVERFLOW): New enum
17755         value.
17756         (_STRTOL_ERROR): Handle it.  Abort when given unknown error codes.
17757         * lib/xstrtoul.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM): New macros.
17758         * lib/xstrtoumax.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM)
17759         [defined UINTMAX_MAX]: New macros.
17760
17761 2003-10-14  Bruno Haible  <bruno@clisp.org>
17762
17763         * modules/fatal-signal: Add m4/sig_atomic_t.m4 to file list.
17764
17765 2003-10-14  Bruno Haible  <bruno@clisp.org>
17766
17767         * m4/sig_atomic_t: New file, from GNU gettext.
17768         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Require gt_TYPE_SIG_ATOMIC_T.
17769
17770 2003-10-14  Bruno Haible  <bruno@clisp.org>
17771
17772         * lib/fatal-signal.h: Improved comments. Suggested by Paul Eggert.
17773         * lib/fatal-signal.c: Use sig_atomic_t. Suggested by Paul Eggert.
17774         Also use volatile where needed.
17775
17776 2003-10-12  Paul Eggert  <eggert@twinsun.com>
17777
17778         * modules/xalloc: Do not depend on 'exit'.  Depend on 'stdbool'.
17779         Change maintainer from Bruno Haible to 'all'.
17780
17781 2003-10-12  Paul Eggert  <eggert@twinsun.com>
17782
17783         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Require AC_C_INLINE.
17784
17785 2003-10-12  Paul Eggert  <eggert@twinsun.com>
17786
17787         * lib/xalloc.h (xnmalloc, xzalloc, xnrealloc, xclone): New decls.
17788         (XMALLOC, XCALLOC, XREALLOC, XFREE, CCLONE, CLONE): Deprecate,
17789         and define in terms of the other primitives.
17790         * lib/xmalloc.c: Include stdbool.h; do not include exit.h.
17791         (SIZE_MAX): Define if not already defined.
17792         (array_size_overflow): New function.
17793         (xalloc_die): Abort instead of exiting if 'error' returns.
17794         (xnmalloc, xnrealloc, xzalloc, xclone): New functions.
17795         (xmalloc, xrealloc): Use them.
17796         (xcalloc): Check for address arithmetic overflow.
17797         * lib/xstrdup.c (xstrdup): Use xclone, since memcpy should be
17798         a bit faster than strcpy.
17799
17800 2003-10-10  Simon Josefsson  <jas@extundo.com>
17801
17802         * modules/argp (Depends-on): Add restrict and strcase.
17803
17804 2003-10-10  Simon Josefsson  <jas@extundo.com>
17805
17806         * m4/argp.m4: Add AC_C_INLINE.
17807
17808 2003-10-08  Paul Eggert  <eggert@twinsun.com>
17809
17810         Merge getpass from libc, plus a few fixes.
17811
17812         * lib/getpass.c (HAVE_STDIO_EXT) [_LIBC]: Define to 1.
17813         Include <stdbool.h>.
17814         Include <stdio_ext.h> if HAVE_STDIO_H, otherwise define
17815         __fsetlocking to empty.
17816         [_LIBC]: Do not include "getline.h" or "unlocked-io.h", but
17817         do include <bits/libc-lock.h>.
17818         Do not include <fcntl.h>; not needed.
17819         [_LIBC]: Include <wchar.h>.
17820         (NOTCANCEL_MODE): New macro.
17821         (flockfile, funlockfile) [_LIBC]: New macros.
17822         (__libc_cleanup_push, __libc_cleanup_pop, __getline, __tcgetattr)
17823         [!_LIBC]: New macros.
17824         (call_fclose): New function.
17825         (getpass): Use it.  Save tty stream separately; this simplifies the
17826         code and makes it more reliable if stdin happens to equal stdout.
17827         Invoke __fsetlocking on tty.
17828         Handle thread cancellation if needed.
17829         Namespace cleanup (use __tcgetattr, __getline).
17830         Use bool for Booleans.
17831         [USE_IN_LIBIO]: Handle wide streams.
17832         [!_LIBC]: Unconditionally do the fseek, since we don't know what
17833         stream might go where.
17834
17835         * lib/unlocked-io.h: Include <stdio.h>, so that the caller
17836         doesn't have to include <stdio.h> before us.
17837         (clearerr_unlocked, feof_unlocked, ferror_unlocked,
17838         fflush_unlocked, fgets_unlocked, fputc_unlocked, fputs_unlocked,
17839         fread_unlocked, fwrite_unlocked, getc_unlocked, getchar_unlocked,
17840         putc_unlocked, putchar_unlocked): Define to the unlocked counterpart
17841         if not declared, so that we can use getpass.c code from libc without
17842         rewriting it.
17843         (flockfile, ftrylockfile, funlockfile): New macros.
17844
17845 2003-10-08  Paul Eggert  <eggert@twinsun.com>
17846
17847         * modules/getpass: Depend on stdbool.
17848
17849 2003-10-08  Paul Eggert  <eggert@twinsun.com>
17850
17851         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for stdio_ext.h.
17852
17853 2003-10-07  Karl Berry  <karl@gnu.org>
17854
17855         * config/config.{guess,sub}: update from config.
17856
17857 2003-10-06  Jim Meyering  <jim@meyering.net>
17858             Bruno Haible  <bruno@clisp.org>
17859
17860         This lets translators provide better translations for the
17861         "Written by ..." part of --version output.
17862         * lib/version-etc.h: Include stdarg.h.
17863         (version_etc_copyright): Declare as readonly.
17864         (version_etc): Make this function variadic with a NULL-terminated list
17865         of author name strings.
17866         (version_etc_va): New declaration.
17867         * lib/version-etc.c: Include stdarg.h, stdlib.h.
17868         (version_etc_copyright): Declare as readonly.
17869         (version_etc_va): New function. Provide a different translatable string
17870         for each possible number of authors < 10. Abbreviate when there are 10
17871         authors or more.
17872         (version_etc): Make this function variadic. Call version_etc_va.
17873         Suggestion from Gary V. Vaughan.
17874
17875         * lib/long-options.h (parse_long_options): Change prototype: the
17876         authors string is moved to the end and becomes variadic.
17877         * lib/long-options.c: Include stdarg.h.
17878         (parse_long_options): Make this function variadic, too.
17879         Call version_etc_va, not version_etc.
17880
17881 2003-10-06  Bruno Haible  <bruno@clisp.org>
17882
17883         * modules/version-etc-2: Remove file.
17884         * MODULES.html.sh (func_all_modules): Remove version-etc-2.
17885
17886 2003-10-06  Bruno Haible  <bruno@clisp.org>
17887
17888         * modules/fatal-signal: New file.
17889         * MODULES.html.sh (func_all_modules): Add fatal-signal.
17890
17891 2003-10-06  Bruno Haible  <bruno@clisp.org>
17892
17893         * m4/fatal-signal.m4: New file.
17894         * m4/signalblocking.m4: New file, from GNU gettext.
17895
17896 2003-10-06  Bruno Haible  <bruno@clisp.org>
17897
17898         * lib/version-etc-2.h: Remove file.
17899         * lib/version-etc-2.c: Remove file.
17900
17901 2003-10-06  Bruno Haible  <bruno@clisp.org>
17902
17903         * lib/fatal-signal.h: New file, from GNU gettext.
17904         * lib/fatal-signal.c: New file, from GNU gettext.
17905
17906 2003-10-05  Paul Eggert  <eggert@twinsun.com>
17907
17908         * README: Rework advice for preventing empty .o files.
17909         Don't recommend ELIDE constructs.  Recommend <stddef.h>,
17910         not <sys/types.h>.
17911
17912 2003-10-04  Karl Berry  <karl@gnu.org>
17913
17914         * lib/argp*: update from libc.
17915
17916 2003-10-04  Karl Berry  <karl@gnu.org>
17917
17918         * config/config.{guess,sub}: update from config.
17919
17920 2003-10-02  Bruno Haible  <bruno@clisp.org>
17921
17922         * modules/lchown (Include): Add lchown.h.
17923         * modules/time_r (Include): Use "..." syntax.
17924         * modules/xgetdomainname (Include): Add xgetdomainname.h.
17925
17926 2003-10-01  Simon Josefsson  <jas@extundo.com>
17927
17928         * MODULES.html.sh (func_all_modules): Move gethostname from section
17929         'based on' to section 'lacking' POSIX:2001.
17930
17931 2003-10-01  Larry Jones  <lawrence.jones@eds.com>
17932
17933         * lib/getpass.c (getpass): Use a no-op fseek when switching from input
17934         to output mode on the same stream.
17935
17936 2003-09-29  Paul Eggert  <eggert@twinsun.com>
17937
17938         * lib/strftime.c (tm_diff) [! HAVE_TM_GMTOFF]:
17939         Fix arg typo in previous patch.
17940
17941 2003-09-28  Jim Meyering  <jim@meyering.net>
17942
17943         * lib/error.c: Correct cpp indentation.
17944
17945 2003-09-27  Paul Eggert  <eggert@twinsun.com>
17946
17947         * modules/free: New file.
17948
17949 2003-09-27  Paul Eggert  <eggert@twinsun.com>
17950
17951         * m4/free.m4: New file.
17952
17953 2003-09-27  Paul Eggert  <eggert@twinsun.com>
17954
17955         * lib/minmax.h (MIN, MAX)
17956         [__STDC__ && defined __GNUC__ && __GNUC__ >= 2]:
17957         Omit the special code that used __typeof__, since we worry that
17958         it could be more trouble than it's worth.  See:
17959         http://mail.gnu.org/archive/html/bug-gnulib/2003-01/msg00090.html
17960         http://mail.gnu.org/archive/html/bug-gnulib/2003-01/msg00095.html
17961
17962         * lib/free.c: New file.
17963
17964 2003-09-27  Oskar Liljeblad  <oskar@osk.mine.nu>
17965
17966         Trivial fixes to Makefile.am parts of module listings.
17967         * modules/strstr: Append strstr.h to lib_SOURCES.
17968         * modules/strcase: Likewise, for strcase.h.
17969
17970 2003-09-27  Karl Berry  <karl@gnu.org>
17971
17972         * config/mkinstalldirs: update from automake.
17973
17974 2003-09-26  Paul Eggert  <eggert@twinsun.com>
17975
17976         * lib/error.c (SIZE_MAX) [!defined SIZE_MAX]: Define.
17977         (error_tail): Do not loop, reallocating temporary buffer, since
17978         the output cannot contain more wide characters than the input
17979         contains bytes, the size must be big enough already.  This avoids
17980         one potential size overflow calculation.  Check for size overflow
17981         when calculating temporary buffer size.  Free temporary buffer
17982         when done, if it was allocated with malloc; this plugs a memory
17983         leak.  Remove casts from void * to pointers, that are no longer
17984         needed now that we're assuming C89 or better.
17985
17986         Merge error changes from glibc.
17987
17988         * lib/error.c, error.h: Update copyright notice header to match glibc.
17989         * lib/error.c [defined _LIBC]: Include <errno.h>, <bits/libc-lock.h>.
17990         (error, error_at_line) [defined _LIBC && defined __libc_ptf_call]:
17991         Disable cancellation while printing error.
17992         * lib/error.h: Prepend __ to parameter names.
17993
17994 2003-09-26  Jim Meyering  <jim@meyering.net>
17995
17996         * lib/error.c (error_tail): Move some declarations
17997         into inner scope where the local variables are used.
17998
17999 2003-09-26  Bruno Haible  <bruno@clisp.org>
18000
18001         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Add comments about the AIX
18002         stpncpy().
18003         Don't define stpncpy through config.h; it's now done through stpncpy.h.
18004
18005 2003-09-26  Bruno Haible  <bruno@clisp.org>
18006
18007         * lib/stpncpy.h (gnu_stpncpy): New declaration.
18008         (stpncpy): Define as alias for gnu_stpncpy.
18009         * lib/stpncpy.c [!_LIBC]: Define gnu_stpncpy, not stpncpy.
18010
18011 2003-09-25  Simon Josefsson  <jas@extundo.com>
18012
18013         * lib/xgetdomainname.h: New file.
18014         * lib/xgetdomainname.c: New file.
18015
18016 2003-09-25  Simon Josefsson  <jas@extundo.com>
18017             Bruno Haible  <bruno@clisp.org>
18018
18019         * modules/getdomainname: New file.
18020         * modules/xgetdomainname: New file.
18021         * MODULES.html.sh (func_all_modules): Add getdomainname,
18022         xgetdomainname.
18023
18024 2003-09-25  Simon Josefsson  <jas@extundo.com>
18025             Bruno Haible  <bruno@clisp.org>
18026
18027         * m4/getdomainname.m4: New file.
18028
18029 2003-09-25  Simon Josefsson  <jas@extundo.com>
18030             Bruno Haible  <bruno@clisp.org>
18031
18032         * lib/getdomainname.h: New file.
18033         * lib/getdomainname.c: New file.
18034
18035 2003-09-25  Karl Berry  <karl@gnu.org>
18036
18037         * lib/argp-fmtstream.c, argp-help.c: update from libc.
18038
18039 2003-09-25  Karl Berry  <karl@gnu.org>
18040
18041         * config/install-sh: update from automake.
18042
18043 2003-09-25  Bruno Haible  <bruno@clisp.org>
18044
18045         * modules/version-etc-2: New file, from modules/version-etc with
18046         modifications.
18047         * MODULES.html.sh (func_all_modules): Add version-etc-2.
18048
18049 2003-09-25  Bruno Haible  <bruno@clisp.org>
18050
18051         * lib/version-etc-2.h: New file, from version-etc.h with modifications.
18052         * lib/version-etc-2.c: New file, from version-etc.c with modifications.
18053
18054 2003-09-24  Simon Josefsson  <jas@extundo.com>
18055
18056         * modules/xgethostname: Add xgethostname.h.
18057
18058 2003-09-24  Paul Eggert  <eggert@twinsun.com>
18059
18060         * lib/linebuffer.c (freebuffer): Don't free the argument, just
18061         the buffer associated with the argument.  Bug reported by
18062         Simon Josefsson.
18063
18064 2003-09-24  Paul Eggert  <eggert@twinsun.com>
18065
18066         * README: Document assumptions that 'int' is at least 32 bits
18067         wide, that integer arithmetic is 2's complement without overflow,
18068         that there are no holes in integer values, that adding sizes of
18069         two nonoverlapping objects can't overflow, and that all-bits-zero
18070         yields scalar zero.  Fix spelling and capitalization typos.
18071
18072 2003-09-19  Karl Berry  <karl@gnu.org>
18073
18074         * lib/argp.h: update from libc.
18075
18076 2003-09-17  Paul Eggert  <eggert@twinsun.com>
18077
18078         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Call AC_BEFORE first,
18079         to avoid spurious warnings like "AC_RUN_IFELSE was called before
18080         gl_USE_SYSTEM_EXTENSIONS" from autoreconf.
18081
18082 2003-09-17  Paul Eggert  <eggert@twinsun.com>
18083
18084         * gnulib-tool: Use "test -h", not "test -L", for portability
18085         to Solaris 8 /bin/sh.  (This bug is fixed in Solaris 9.)
18086         (tags_regexp): Remove, since \| doesn't conform to POSIX.
18087         (sed_extract_prog): Issue s commands one-by-one, rather than
18088         using \| in one s command.
18089
18090 2003-09-16  Paul Eggert  <eggert@twinsun.com>
18091
18092         * lib/linebuffer.c (readlinebuffer): Return NULL immediately upon
18093         input error, instead of returning NULL the next time we are called
18094         (and therefore losing track of errno).
18095
18096 2003-09-16  Bruno Haible  <bruno@clisp.org>
18097
18098         * gnulib-tool (func_create_testdir): Warn about duplicated
18099         dependencies.
18100
18101 2003-09-15  Paul Eggert  <eggert@twinsun.com>
18102
18103         * modules/argmatch, modules/fatal, modules/obstack,
18104         modules/xalloc, modules/xgethostname: Sort dependencies by
18105         importance, not alphabetically.
18106
18107 2003-09-15  Paul Eggert  <eggert@twinsun.com>
18108
18109         * lib/getndelim2.c (getndelim2): Don't trash errno when a read
18110         fails, so that the caller gets the proper errno.
18111
18112         * lib/readutmp.c (read_utmp): Likewise.
18113         Check for fstat error.  Close stream and free storage
18114         when failing.
18115
18116 2003-09-14  Karl Berry  <karl@gnu.org>
18117
18118         * config/srclist.txt (strdup.c): disable for c89 changes.
18119
18120 2003-09-14  Jim Meyering  <jim@meyering.net>
18121
18122         * lib/getloadavg.c: Correct cpp indentation.
18123         * lib/strdup.c: Likewise.
18124         * lib/vasnprintf.c: Likewise.
18125
18126 2003-09-14  Bruno Haible  <bruno@clisp.org>
18127
18128         * modules/fwriteerror: New file.
18129         * MODULES.html.sh (func_all_modules): Add fwriteerror.
18130
18131 2003-09-14  Bruno Haible  <bruno@clisp.org>
18132
18133         * lib/fwriteerror.h: New file.
18134         * lib/fwriteerror.c: New file.
18135
18136 2003-09-12  Paul Eggert  <eggert@twinsun.com>
18137
18138         * modules/argmatch, modules/exitfail, modules/fatal, modules/obstack,
18139         modules/xgethostname, modules/xalloc: Depend on exit.
18140
18141 2003-09-12  Paul Eggert  <eggert@twinsun.com>
18142
18143         * m4/error.m4: Require AC_FUNC_STRERROR_R rather than invoking it.
18144
18145         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Require AC_AIX
18146         and AC_MINIX, too, so that their extensions are available.
18147
18148         * m4/prereq.m4 (jm_PREREQ_ADDEXT): Remove.  All uses removed.
18149         This macro has been superseded by gl_BACKUPFILE.
18150
18151         More patches to assume C89 or better.
18152
18153         * m4/error.m4 (gl_ERROR): Don't check for vprintf.
18154
18155         * m4/check-decl.m4 (jm_CHECK_DECLS): Include <string.h>, <stdlib.h>
18156         unconditionally.
18157         * m4/closeout.m4 (gl_CLOSEOUT): Don't check for stdlib.h.
18158         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER):
18159         Include <string.h>, <stdlib.h> unconditionally.
18160         * m4/lstat.m4 (gl_PREREQ_LSTAT): Don't check for stdlib.h, free.
18161         * m4/readdir.m4 (GL_FUNC_READDIR): Don't check for string.h.
18162         * m4/readutmp.m4 (gl_PREREQ_READUTMP): Don't check for standard C
18163         headers or for string.h.
18164         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Don't check for stdlib.h
18165         or strtoul.
18166
18167         * m4/mkstemp.m4 (jm_PREREQ_TEMPNAME): Do not require standard C
18168         headers.
18169         * m4/strdup.m4 (gl_PREREQ_STRDUP): Likewise.
18170         * m4/userspec.m4 (gl_USERSPEC): Likewise.
18171         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Likewise.
18172         * m4/xstrtod.m4 (gl_XSTRTOD): Likewise.
18173         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
18174         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't check for limits.h,
18175         memcpy, memset.
18176         (jm_FUNC_GNU_STRFTIME): Don't require standard C headers.
18177         * m4/strtod.m4 (gl_FUNC_STRTOD): Do not check for float.h.
18178         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Do not check for stdlib.h,
18179         strtol.
18180         * m4/strtol.m4 (gl_FUNC_STRTOL): Do not check for limits.h.
18181         * m4/userspec.m4 (gl_USERSPEC): Do not check for string.h.
18182         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Do not check for string.h, strtol,
18183         strtoul.
18184
18185 2003-09-12  Paul Eggert  <eggert@twinsun.com>
18186
18187         * lib/argmatch.c, fatal.c, xgethostname.c, xmalloc.c: Include exit.h.
18188         * lib/obstack.c [!defined _LIBC]: Likewise.
18189         * lib/argmatch.c (EXIT_FAILURE): Remove; now done by exit.h
18190         * lib/exitfail.c, fatal.c, xgethostname.c, xmalloc.c: Likewise.
18191         * lib/exitfail.c: Don't include stdlib.h; no longer needed.
18192
18193         More changes to assume C89 or better.
18194
18195         * lib/error.c (error_tail): Assume vprintf.
18196
18197         * lib/argmatch.c (getenv): Remove decl.
18198         * lib/progreloc.c (get_full_program_name): Define via prototype.
18199         * lib/setenv.c (clearenv): Likewise.
18200         * lib/stpncpy.c: Do not include <string.h> or <sys/types.h>; not
18201         needed.
18202         * lib/strdup.c: Include <stdlib.h>, <string.h> unconditionally.
18203         (malloc, memcpy): Remove decls.
18204         * lib/strftime.c (HAVE_LIMITS_H, STDC_HEADERS) [defined _LIBC]: Remove.
18205         (HAVE_MEMCPY) [defined emacs && !defined HAVE_BCOPY]: Remove.
18206         Include <limits.h>, <stddef.h>, <stdlib.h>, <string.h> unconditionally.
18207         (memcpy): Remove macro.
18208         (MEMCPY) [!defined COMPILE_WIDE]: Define to memcpy unconditionally.
18209         (__P): Remove.  All uses removed.
18210         (PTR): Remove.  All uses changed to void *.
18211         (CHAR_BIT, NULL): Remove.
18212         (spaces, zeros, memset_space, memset_zero)
18213         [!defined memset && !defined HAVE_MEMSET && !defined _LIBC]:
18214         Remove.
18215         (LOCALE_PARAM, LOCALE_PARAM_DECL): Remove.
18216         (memcpy_lowcase, memcpy_uppcase, tm_diff, iso_week_days):
18217         Define with prototype.
18218         Remove now-unnecessary prototype decl.
18219         (extra_args_spec): Assume ANSI C.  All uses changed.
18220         (extra_args_spec_iso): Remove.
18221         (my_strftime, emacs_strftimeu): Define via prototype.
18222         * lib/strtod.c: Include <float.h>, <stdlib.h>, <string.h>
18223         unconditionally.
18224         (DBL_MAX, DBL_MIN, HUGE_VAL, NULL): Remove decls.
18225         * lib/strtoimax.c: Include <stdlib.h> unconditionally.
18226         (strtoul, strtol): Remove decls.
18227         * lib/strtol.c (STDC_HEADERS, HAVE_LIMITS_H, NULL, ULONG_MAX,
18228         LONG_MAX): Remove.
18229         Include <limits.h>, <stddef.h>, <stdlib.h>, <string.h> unconditionally.
18230         (LOCALE_PARAM_DECL): Remove.  All uses changed to LOCALE_PARAM_PROTO.
18231         (LOCALE_PARAM_PROTO): New macro.
18232         (INTERNAL, INTERNAL1, WEAKNAME): Assume ANSI C, not K&R.
18233         (INTERNAL (strtol), strtol): Define with a prototype.
18234         (PARAMS): Remove.  All uses removed.
18235         * lib/tempname.c: Include <string.h> unconditionally.
18236         * lib/userspec.c: Include <stdlib.h>, <string.h> unconditionally.
18237         * lib/xgethostname.c (main): Define with a prototype.
18238         * lib/xmalloc.c: Include "xalloc.h" first, to check interface.
18239         Include <stdlib.h> unconditionally.
18240         (calloc, malloc, realloc, free): Remove decls.
18241         * lib/xstrtod.c: Include "xstrtod.h" first, to check interface.
18242         Include <stdlib.h> unconditionally.  Sort include file names.
18243         (strtod): Remove.
18244         (xstrtod): Define with a prototype.
18245         * lib/xstrtol.c: Include <stdlib.h>, <string.h> unconditionally.
18246         (strtol, strtoul): Remove decls.
18247
18248 2003-09-11  Paul Eggert  <eggert@twinsun.com>
18249
18250         More patches to assume C89 or better.
18251         * m4/strndup.m4 (gl_PREREQ_STRNDUP): Remove STDC_HEADERS check.
18252         * m4/strnlen.m4 (gl_PREREQ_STRNLEN): Don't check for memory.h,
18253         string.h, memchr, STDC_HEADERS.
18254
18255 2003-09-11  Paul Eggert  <eggert@twinsun.com>
18256
18257         * lib/strndup.c: Don't include <stdio.h>, <sys/types.h>.
18258         Include <stdlib.h>, <string.h> unconditionally.
18259         Remove now-unnecessary cast to char *.
18260         * lib/strnlen.c: Include <string.h> unconditionally.
18261         * lib/yesno.c (yesno): Define with a prototype.
18262
18263 2003-09-11  Bruno Haible  <bruno@clisp.org>
18264
18265         * config/srclist.txt (setenv.c, unsetenv.c): Disable for the moment.
18266
18267 2003-09-10  Jim Meyering  <jim@meyering.net>
18268
18269         * lib/error.c: Correct indentation of cpp directives.
18270
18271 2003-09-10  Bruno Haible  <bruno@clisp.org>
18272
18273         * m4/strcspn.m4 (gl_PREREQ_STRCSPN): Remove <string.h> check.
18274         * m4/strpbrk.m4 (gl_PREREQ_STRPBRK): Remove <string.h> check.
18275         * m4/strstr.m4 (gl_PREREQ_STRSTR): Remove <string.h> check.
18276         * m4/unicodeio.m4 (gl_UNICODEIO): Remove <string.h> check.
18277         * m4/setenv.m4 (gl_PREREQ_SETENV, gl_PREREQ_UNSETENV): Remove
18278         <stdlib.h> and <string.h> checks.
18279         * m4/xreadlink.m4 (gl_XREADLINK): Remove <stdlib.h> check.
18280         * m4/yesno.m4 (gl_YESNO): Remove <stdlib.h> check.
18281
18282 2003-09-10  Bruno Haible  <bruno@clisp.org>
18283
18284         * lib/strcspn.c: Include <string.h> unconditionally.
18285         * lib/strpbrk.c: Include <string.h> unconditionally.
18286         * lib/strstr.c: Include <string.h> unconditionally.
18287         * lib/unicodeio.c: Include <string.h> unconditionally.
18288         * lib/setenv.c: Include <stdlib.h> and <string.h> unconditionally.
18289         * lib/unsetenv.c: Likewise.
18290         * lib/xreadlink.c: Include <stdlib.h> unconditionally.
18291         * lib/yesno.c: Include <stdlib.h> unconditionally.
18292         (rpmatch): Add prototype.
18293
18294 2003-09-09  Paul Eggert  <eggert@twinsun.com>
18295
18296         More patches to assume C89 or better.
18297         * m4/getcwd.m4 (AC_FUNC_GETCWD_NULL): Don't check for stdlib.h.
18298         * m4/getopt.m4 (gl_GETOPT): Don't check for string.h.
18299         * m4/getugroups.m4 (gl_GETUGROUPS): Do not check for standard C headers
18300         or for string.h.
18301         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Do not check for
18302         stdlib.h.
18303         * m4/group-member.m4 (gl_PREREQ_GROUP_MEMBER): Do not require standard
18304         C headers.
18305         * m4/hard-locale.m4 (gl_HARD_LOCALE): Do not check for stdlib.h,
18306         string.h.
18307         * m4/hash.m4 (gl_HASH): Do not check for stdlib.h, malloc, free.
18308         * m4/human.m4 (gl_HUMAN): Do not check for stdlib.h, string.h, getenv.
18309         * m4/idcache.m4 (gl_IDCACHE): Do not check for standard C headers,
18310         or for string.h.
18311         * m4/long-options.m4 (gl_LONG_OPTIONS): Do not check for stdlib.h.
18312         * m4/makepath.m4 (gl_MAKEPATH): Do not check for string.h or standard
18313         C headers.
18314         * m4/md5.m4 (gl_MD5): Don't check for limits.h, standard C headers,
18315         memcpy.
18316         * m4/sha.m4 (gl_SHA): Don't check for standard Cheaders, memcpy.
18317         * m4/memchr.m4 (jm_PREREQ_MEMCHR): Don't check for limits.h, stdlib.h.
18318         * m4/memcmp.m4 (gl_PREREQ_MEMCMP): Don't check for string.h.
18319         * m4/memcoll.m4 (gl_MEMCOLL): Likewise.
18320         * m4/memrchr.c (gl_PREREQ_MEMRCHR): Don't check for limits.h.
18321         * m4/mkdir-slash.m4 (gl_PREREQ_MKDIR): Don't check for stdlib.h,
18322         string.h, free.
18323         * m4/mktime.m4 (gl_PREREQ_MKTIME): Don't check for standard C headers.
18324         * m4/modechange.m4 (gl_MODECHANGE): Don't check for standard C headers.
18325         * m4/mountlist.m4 (gl_PREREQ_MOUNTLIST_EXTRA): Don't check for standard
18326         C headers, or for string.h.
18327         * m4/obstack.m4 (gl_OBSTACK): Don't check for stddefe.h, string.h.
18328         (gl_PREREQ_OBSTACK): Don't check for stdlib.h.
18329         * m4/path-concat.m4 (gl_PATH_CONCAT): Don't check for standard C
18330         headers, memory.h, stdlib.h, string.h, strings.h.
18331         * m4/posixtm.m4 (gl_POSIXTM): Don't check for stdlib.h, string.h.
18332         * m4/posixver.m4 (gl_POSIXVER): Don't check for getenv.
18333         * m4/putenv.m4 (gl_PREREQ_PUTENV): Don't check for string.h, memcpy,
18334         strchr.
18335         * m4/readtokens.m4 (gl_READTOKENS): Don't check for standard C
18336         headers, memory.h, string.h.
18337         * m4/regex.m4 (jm_PREREQ_REGEX): Do not check for limits.h, string.h.
18338         * m4/rename.m4 (gl_PREREQ_RENAME): Do not check for stdlib.h, string.h,
18339         free.
18340         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Don't check for standard C
18341         headers.
18342         * m4/same.m4 (gl_SAME): Don't check for stdlib.h, string.h, free.
18343         * m4/save-cwd.m4 (gl_SAVE_CWD): Don't check for standard C headers.
18344         * m4/savedir.m4 (gl_SAVEDIR): Don't check for standard C headers.
18345         * m4/strchrnul.m4 (gl_PREREQ_STRCHRNUL): Don't check for string.h.
18346         * m4/xgetcwd.m4 (gl_XGETCWD): Don't check for stdlib.h.
18347
18348 2003-09-09  Paul Eggert  <eggert@twinsun.com>
18349
18350         More K&R removal.
18351
18352         * lib/acosl.c (main): Use a prototype.
18353         * lib/asinl.c, cosl.c, expl.c, frexpl.c, ldexpl.c, sinl.c,
18354         tanl.c: Likewise.
18355
18356         * lib/getloadavg.c (getloadavg, main): Define via prototypes.
18357
18358         * lib/getopt.h (struct option.name): Assume C89, and use 'const'.
18359         (getopt, etopt_long, getopt_long_only, _getopt_internal)
18360         [defined __GNU_LIBRARY__]: Assume C89, so we can always declare
18361         with a prototype.
18362         * lib/getopt.c (const): Remove macro.
18363         Include <string.h> unconditionally.
18364         (my_index): Remove; all uses changed to strchr.
18365         (strlen): Remove decl.
18366         (exchange): Remove forward decl; no longer needed.
18367         (exchange, _getopt_initialize, _getopt_internal, getopt, main):
18368         Define with prototype.
18369         * lib/getopt1.c (const): Remove macro.
18370         (getopt_long, getopt_long_only, main): Define with prototype.
18371
18372         * lib/getugroups.c: Include <string.h> unconditionally.
18373
18374         * lib/getusershell.c: Include <stdlib.h> unconditionally.
18375         (getusershell, setusershell, endusershell, readname, main):
18376         Define with prototypes.
18377
18378         * lib/group-member.c: Include group-member.h first.
18379         Include <stdlib.h> unconditionally.
18380
18381         * lib/hard-locale.c: Include hard-locale.h first.
18382         Include <stdlib.h>, <string.h> unconditionally.
18383
18384         * lib/hash.c (free, malloc): Remove decls.
18385         Include <stdlib.h> unconditionally.
18386
18387         * lib/human.c: Include <stdlib.h>, <string.h> unconditionally.
18388         (getenv): Do not declare.
18389
18390         * lib/idcache.c: Include <string.h> unconditionally.
18391
18392         * lib/long-options.c: Include long-options.h first, to test interface.
18393         Include <stdlib.h> unconditionally.
18394
18395         * lib/makepath.c: Include makepath.h first, to test interface.
18396         Include <stdlib.h> and <string.h> unconditionally.
18397
18398         * lib/linebuffer.c: Include <stdlib.h>.
18399         (free): Remove decl.
18400
18401         * lib/malloc.c: Include <stdlib.h>, for malloc; don't bother with
18402         stddef.h. rpl_malloc returns void *, not char *.
18403         * lib/realloc.c (rpl_realloc): Likewise.  Also, define with a
18404         prototype.
18405
18406         * lib/md5.h: Include <limits.h> unconditionally.
18407         (UINT_MAX_32_BITS): Don't worry about non-__STDC__ case.
18408         (__P): Remove; all uses removed.
18409         * lib/md5.c: Include "md5.h" first.
18410         (md5_init_ctx, md5_read_ctx, md5_finish_ctx, md5_stream,
18411         md5_buffer, md5_process_bytes, md5_process_block):
18412         Define with prototypes.
18413         * lib/sha.h (__P): Remove all uses.  (It wasn't defined??)
18414         * lib/sha.c: Include "sha.h" first.
18415         Include <stdlib.h>, <string.h> unconditionally.
18416
18417         * lib/memchr.c (__ptr_t): Remove; all uses changed to void *.
18418         * lib/memcmp.c (__ptr_t): Likewise.
18419         * lib/memrchr.c (__ptr_t): Likewise.
18420         * lib/memchr.c, memcmp.c, memcoll.c, memrchr.c:
18421         Include <string.h> unconditionally.
18422         * lib/memchr.c, memrchr.c: Include <limits.h> unconditionally.
18423         * lib/memchr.c: Include <stdlib.h> unconditionally.
18424         * lib/memchr.c (LONG_MAX): Remove.
18425         * lib/memrchr.c (LONG_MAX): Likewise.
18426         * lib/memchr.c (__memchr): Define via a prototype.
18427         * lib/memrchr.c (__memrchr): Likewise.
18428         * lib/memcmp.c (__P): Remove, and remove all uses.
18429         (memcmp_bytes, memcmp_common_alignment, memcmp_not_common_alignment):
18430         Remove forward decls; no longer needed.
18431         * lib/memcpy.c, memmove.c, memset.c: Include <stddef.h>.
18432         Use types required by C89 in prototype.
18433
18434         * lib/mkdir.c: Include <stdlib.h>, <string.h> unconditionally.
18435         * lib/savedir.c: Likewise.
18436         * lib/mkdir.c (free): Remove decl.
18437         * lib/rmdir.c (rmdir): Define with a prototype.
18438         * lib/savedir.c: Include savedir.h first, to test interface.
18439
18440         * lib/mktime.c (STDC_HEADERS): Remove.
18441         Include <stdlib.h>, <string.h> unconditionally.
18442
18443         * lib/modechange.c: Include <stdlib.h> unconditionally.
18444         (malloc): Remove decl.
18445
18446         * lib/mountlist.c: Include <stdlib.h>, <string.h> unconditionally.
18447         (free): Remove decl.
18448
18449         * lib/obstack.h (PTR_INT_TYPE) [!defined __PTRDIFF_TYPE__]:
18450         Define to ptrdiff_t, without bothering to check HAVE_STDDEF_H.
18451         (This type really should be intptr_t, but that's a C99ism.)
18452         (_obstack_memcpy): Remove: all uses changed to memcpy.
18453         Include <string.h> unconditionally.
18454         (struct obstack): Assume __STDC__ for types of members
18455         chunkfun, freefun, extra_arg.
18456         (_obstack_newchunk, _obstack_free, _obstack_begin, _obstack_begin_1,
18457         _obstack_memory_used, obstack_alloc_failed_handler, obstack_init,
18458         obstack_begin, obstack_specify_allocation,
18459         obstack_specify_allocation_with_arg, obstack_chunkfun,
18460         obstack_freefun, obstack_free) [! (defined __STDC__ && __STDC__)]:
18461         Remove unprototyped decls and the macros that use them.
18462         * lib/obstack.c (POINTER): Remove.  All uses changed to void *.
18463         (obstack_alloc_failed_handler, CALL_CHUNKFUN, CALL_FREEFUN,
18464         _obstack_begin, _obstack_begin_1, _obstack_allocated_p)
18465         (defined __STDC__ && __STDC__)]:
18466         Remove nonprototyped code.
18467         Include <stdlib.h> unconditionally.
18468         (_obstack_begin, _obstack_begin_1, _obstack_newchunk,
18469         _obstack_allocated_p, _obstack_free, obstack_free,
18470         _obstack_memory_used, print_and_abort):
18471         Define using prototypes.
18472         (obstack_1grow, obstack_1grow_fast, obstack_alloc, obstack_base,
18473         obstack_blank, obstack_blank_fast, obstack_copy, obstack_copy0,
18474         obstack_finish, obstack_grow, obstack_grow0, obstack_make_room,
18475         obstack_next_free, obstack_object_size, obstack_room) [0]:
18476         Remove unused, unprototyped code.
18477
18478         * lib/path-concat.c: Include <stdlib.h>, <string.h> unconditionally.
18479
18480         * lib/physmem.c (physmem_total, physmem_available, main): Define
18481         with prototypes.
18482
18483         * lib/posixtm.c: Include <stdlib.h>, <string.h> unconditionally.
18484         (main): Define with a prototype.
18485
18486         * lib/posixver.c (getenv): Remove decl.
18487
18488         * lib/putenv.c (malloc): Returns void *, not char *.
18489         Include <string.h> unconditionally.
18490         (strchr, memcpy, NULL): Do not define.
18491
18492         * lib/readtokens.c: Include readtokens.h first, to test interface.
18493         Include <stdlib.h>, <string.h> unconditionally.
18494         (init_tokenbuffer): Define with a prototype.
18495
18496         * lib/regex.c (PARAMS): Remove.  All uses removed.
18497         All uses of _RE_ARGS removed, too.
18498         Include <stddef.h>, <stdlib.h>, <string.h>, <limits.h>
18499         unconditionally.
18500         (bzero): Assume memset exists.
18501         (memcmp, memcpy, NULL): Remove.
18502         (SIGN_EXTEND_CHAR): Remove; all uses replaced by casts to signed
18503         char, or assignments to local vars of type signed char.
18504         (init_syntax_once, PREFIX(extract_number_and_incr),
18505         PREFIX(print_partial_compiled_pattern),
18506         PREFIX(print_compiled_pattern), PREFIX(print_double_string),
18507         convert_mbs_to_wcs, print_fastmap, re_set_syntax,
18508         PREFIX(regex_grow_registers), PREFIX(regex_compile),
18509         PREFIX(store_op1), PREFIX(store_op2), PREFIX(insert_op1),
18510         PREFIX(insert_op2), PREFIX(at_begline_loc_p),
18511         PREFIX(at_endline_loc_p), group_in_compile_stack, insert_space,
18512         wcs_compile_range, byte_compile_range, truncate_wchar,
18513         PREFIX(re_compile_fastmap), re_compile_fastmap, re_set_registers,
18514         re_search, re_search_2, PREFIX(re_search_2), re_match, re_match_2,
18515         count_mbs_length, wcs_re_match_2_internal,
18516         byte_re_match_2_internal, PREFIX(group_match_null_string_p),
18517         PREFIX(alt_match_null_string_p),
18518         PREFIX(common_op_match_null_string_p), PREFIX(bcmp_translate),
18519         re_compile_pattern, re_comp, re_exec, regcomp, regexec, regerror,
18520         regfree, PREFIX(extract_number)): Define with prototype.  Remove
18521         now-unnecessary declaration, if any.
18522         (byte_compile_range, PREFIX(regex_compile), re_comp, re_exec,
18523         regcomp, regexec):
18524         Remove now-unnecessary casts among pointer types.
18525         * lib/regex.h (_RE_ARGS): Remove.  All uses removed.
18526
18527         * lib/rename.c: Include <stdlib.h>, <string.h> unconditionally.
18528         (free): Remove decl.
18529
18530         * lib/rpmatch.c: Include <stdlib.h> unconditionally.
18531
18532         * lib/same.c: Include <stdlib.h>, <string.h> unconditionally.
18533         (free): Remove decl.
18534
18535         * lib/save-cwd.c: Include <stdlib.h> unconditionally.
18536         * lib/xgetcwd.c: Likewise.
18537
18538         * lib/stat.c: Include <stdlib.h>, <string.h> unconditionally.
18539         (free): Remove decl.
18540
18541         * lib/strchrnul.c (strchrnul): Define with a prototype.
18542         Fix bug: c_in was not converted to char before searching.
18543
18544         The following changes are not K&R related:
18545
18546         * lib/group-member.h: Include <sys/types.h>, so that this file is
18547         self-contained.
18548         * lib/makepath.h: Likewise.
18549
18550         * lib/getusershell.c (readname, default_index, line_size, readname):
18551         Use size_t, not int, for sizes.
18552         (readname): If the size overflows, report an error instead of
18553         looping forever.
18554
18555 2003-09-09  Paul Eggert  <eggert@twinsun.com>
18556
18557         * config/srclist.txt: Do not get getopt.h, getopt1.c, or regex.h from
18558         libc.
18559
18560 2003-09-09  Paul Eggert  <eggert@twinsun.com>
18561
18562         * README: New section: portability guidelines.
18563
18564 2003-09-09  Derek Robert Price  <derek@ximbiot.com>
18565
18566         * m4/getndelim2.m4 (gl_PREREQ_GETNDELIM2): Assume stdlib.h per the
18567         C89 spec.
18568
18569 2003-09-09  Derek Robert Price  <derek@ximbiot.com>
18570
18571         * lib/getndelim2.c: Assume stdlib.h per the C89 spec.
18572
18573 2003-09-08  Paul Eggert  <eggert@twinsun.com>
18574
18575         Assume C89 or better; remove K&R cruft.
18576         A few of these changes were first proposed by Derek Robert Price
18577         in <http://mail.gnu.org/archive/html/bug-gnulib/2003-07/msg00105.html>.
18578
18579         * lib/addext.c: Include <string.h> unconditionally.
18580         * lib/backupfile.c: Include <string.h>, <stdlib.h> unconditionally.
18581         Don't declare getenv or malloc.
18582
18583         * lib/alloca.c: Include <string.h>, <stdlib.h> unconditionally.
18584         (POINTER_TYPE, pointer): Remove; all uses changed to void *.
18585         (NULL): Remove.
18586         (find_stack_direction, alloca): Use prototypes.
18587
18588         * lib/atexit.c (atexit): Define using a prototype.
18589
18590         * lib/basename.c, dirname.c, stripslash.c:
18591         Include <string.h> unconditionally.
18592
18593         * lib/bcopy.c: Include <stddef.h>.
18594         (bcopy): Define with prototype, using 'const' and 'void' and 'size_t'.
18595
18596         * lib/canon-host.c: Include <stdlib.h>, <string.h> unconditionally.
18597
18598         * lib/error.h (error, error_at_line, error_print_progname)
18599         [! (defined (__STDC__) && __STDC__)]: Remove decls.
18600         * lib/error.c: Include error.h first, to check interface.
18601         Include <stdarg.h>, <stdlib.h>, <string.h> unconditionally.
18602         (VA_START): Remove; all uses changeed to va_start.
18603         (exit, strerror): Remove decls.
18604         (error_print_progname): Prototype uncondionally.
18605         Don't include <errno.h>; no longer needed.
18606         (private_strerror): Remove.
18607         (error_tail): Always define.
18608         (error, error_at_line): Assume C89 or better; always use prototypes.
18609         * lib/fatal.c: Include "fatal.h" first, to test interface.
18610         Include <stdarg.h>, <stdlib.h>, <string.h> unconditionally.
18611         (VA_START): Remove; all uses changed to va_start.
18612         [! (HAVE_VPRINTF || HAVE_DOPRNT || _LIBC)]: Remove support for
18613         this case.
18614         (exit): Remove decl.
18615         (fatal): Prototype unconditionally.  Assume va_start works.
18616         Abort at end, to pacify gcc.
18617
18618         * lib/euidaccess.c (main): Define with a prototype.
18619
18620         * lib/exclude.c: Include <stdlib.h>, <string.h> unconditionally.
18621
18622         * lib/exitfail.c: Include <stdlib.h> unconditionally.
18623
18624         * lib/fnmatch_.h (__P): Remove.  All uses changed to assume
18625         prototypes.
18626         * lib/fnmatch.c: Include fnmatch.h first, to test interface.
18627         Include <string.h>, <stddef.h>, <stdlib.h> unconditionally.
18628         (getenv): Remove decl.
18629         (fnmatch): Define using a prototype.
18630         * lib/fnmatch_loop.c (FCT): Remove forward decl; no longer needed.
18631         (FCT): Define using a prototype.
18632
18633         * lib/getdate.y: Include <stdlib.h>, <string.h> unconditionally.
18634
18635         * lib/gethostname.c: Include <stddef.h>.
18636         (gethostname): Define with prototype.  Length is size_t, not int.
18637
18638 2003-09-08  Paul Eggert  <eggert@twinsun.com>
18639
18640         Assume C89 or better; remove K&R cruft.
18641         * m4/alloca.m4 (gl_PREREQ_ALLOCA): Don't check for stdlib.h, string.h.
18642         * m4/backupfile.m4 (gl_BACKUPFILE): Don't check for stdlib.h,
18643         string.h, getenv, malloc.
18644         * m4/dirname.m4 (gl_DIRNAME): Don't check for string.h or C standard
18645         headers.
18646         * m4/canon-host.m4 (gl_CANON_HOST): Don't check for string.h, stdlib.h.
18647         * m4/error.m4 (jm_PREREQ_ERROR): Do not require STDC headers, and
18648         do not check for strerror.
18649         * m4/exclude.m4: Do not check for stdlib.h, string.h, strings.h.
18650         * m4/exitfail.m4 (gl_EXITFAIL): Do not check for stdlib.h.
18651         * m4/fatal.m4 (gl_FATAL): Do not require STDC headers, and
18652         do not check for doprnt or vprintf.
18653         * m4/fnmatch.m4 (gl_PREREQ_FNMATCH_EXTRA): Remove.  All uses removed.
18654         * m4/getdate.m4 (gl_GETDATE): Don't check for stdlib.h or string.h.
18655
18656 2003-09-08  Paul Eggert  <eggert@twinsun.com>
18657
18658         * lib/getversion.c: Remove; was migrated to backupfile.c in 1997.
18659         getversion.c should have been removed then, but was accidentally
18660         preserved.
18661
18662         * lib/utime.c [!HAVE_UTIMES_NULL]: Include <sys/stat.h>, <fcntl.h>.
18663         (utime_null): Fix typo: 'st' was sometimes called 'sb'.
18664
18665 2003-09-08  Karl Berry  <karl@gnu.org>
18666
18667         * config/config.sub, config.guess, srclistvars.sh: update from savannah
18668                 config, forget about prep.
18669
18670         * config/depcomp, missing: update from automake.
18671
18672 2003-09-07  Paul Eggert  <eggert@twinsun.com>
18673
18674         * modules/time_r: Depend on 'restrict'.  Fix from Simon Josefsson in
18675         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00028.html>.
18676
18677 2003-09-07  Paul Eggert  <eggert@twinsun.com>
18678
18679         * lib/time_r.c (gmtime_r, localtime_r): Fix silly typo: missing arg to
18680         copy_tm_result.  Bug reported by Simon Josefsson in
18681         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00028.html>.
18682
18683 2003-09-06  Paul Eggert  <eggert@twinsun.com>
18684
18685         * m4/time_r.m4: New file.
18686         * m4/mktime.m4 (gl_PREREQ_MKTIME): Remove check for limits.h.
18687         * m4/timegm.m4 (gl_FUNC_TIMEGM): Assume that timegm is buggy if mktime
18688         is. Check for timegm declaration.
18689         (gl_PREREQ_TIMEGM): Require gl_FUNC_MKTIME.
18690         Do not check for gmtime_r.
18691         Replace mktime if __mktime_internal does not exist and if mktime
18692         hasn't been replaced already.
18693
18694 2003-09-06  Paul Eggert  <eggert@twinsun.com>
18695
18696         * lib/time_r.c, lib/time_r.h: New files.
18697
18698         * lib/mktime.c (my_mktime_localtime_r): Remove; all uses changed to
18699         __localtime_r.
18700         (__localtime_r) [!defined _LIBC]: New macro.  Include <time_r.h>.
18701         (__mktime_internal) [!defined _LIBC]: Now extern, not static.
18702
18703         * lib/strftime.c (my_strftime_gmtime_r): Remove; all uses changed to
18704         __gmtime_r.
18705         (my_strftime_localtime_r): Remove; all uses changed to __localtime_r.
18706         (__gtime_r, __localtime_r) [!HAVE_TM_GMTOFF]: New macros.
18707         Include <time_r.h>.
18708
18709         * lib/timegm.c: Switch to glibc implementation, with the following
18710         changes:
18711         [defined HAVE_CONFIG_H]: Include <config.h>.
18712         [!defined _LIBC]: Include "timegm.h" rather than <time.h>.
18713         (__mktime_internal) [!defined _LIBC]: New decl.
18714         (__gmtime_r) [!defined _LIBC]: New macro and function.
18715         (timegm): Use a prototype, since gnulib assumes C89.
18716         Do not bother declaring tmp to be const, as it's not really usefu.
18717         * lib/timegm.h: Hoist "#include <time.h>" out of #ifdef.
18718         (timegm): Declare only if HAVE_DECL_TIMEGM.
18719
18720 2003-09-06  Paul Eggert  <eggert@twinsun.com>
18721
18722         * MODULES.html.sh (func_all_modules): Add time_r.
18723         * modules/time_r: New file.
18724         * modules/mktime, modules/strftime, modules/timegm: Depend on time_r.
18725         * modules/timegm: Depend on mktime.  Change maintainer to "all, glibc".
18726
18727 2003-09-03  Paul Eggert  <eggert@twinsun.com>
18728
18729         * lib/human.c (human_readable): Fix bug that rounded 10501 to 10k.
18730         Bug reported by Lute Kamstra in
18731         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00003.html>.
18732
18733         * lib/getdate.y (relative_time_table): Use tDAY_UNIT for "tomorrow",
18734         "yesterday", "today", and "now" rather than tMINUTE_UNIT.  Of
18735         course with correspondingly smaller numbers for tomorrow and
18736         yesterday.  From Tadayoshi Funaba.  Originally installed into
18737         sh-utils on 1999-08-07, but the patch got lost (I guess during the
18738         coreutils merge?).
18739
18740 2003-08-31  Simon Josefsson  <jas@extundo.com>
18741
18742         * modules/timegm: New file.
18743         * MODULES.html.sh (func_all_modules): Add timegm.
18744
18745 2003-08-31  Simon Josefsson  <jas@extundo.com>
18746
18747         * m4/timegm.m4: New file.
18748
18749 2003-08-31  Simon Josefsson  <jas@extundo.com>
18750
18751         * lib/timegm.h: New file.
18752         * lib/timegm.c: New file.  Based on
18753         wget-1.8.2/src/http.c:mktime_from_utc.
18754
18755 2003-08-31  Karl Berry  <karl@gnu.org>
18756
18757         * lib/argp.h: update from libc.
18758
18759 2003-08-28  Bruno Haible  <bruno@clisp.org>
18760
18761         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Remove AC_DEFINE of fnmatch here.
18762         This avoids havoc on compilers for which '#define fnmatch rpl_fnmatch'
18763         followed by '#define fnmatch fnmatch_posix' gives an error.
18764
18765 2003-08-28  Bruno Haible  <bruno@clisp.org>
18766
18767         * lib/binary-io.h: Undefine O_BINARY before defining it. This avoids a
18768         warning on QNX, which defines O_BINARY to 000000.
18769
18770 2003-08-27  Jim Meyering  <jim@meyering.net>
18771
18772         * m4/mkstemp.m4: Require that the system mkstemp be able to create
18773         70 temporary files, not just 30.  Tru64 V4.0F's mkstemp function
18774         would fail after 32.  Reported by Danny Levinson.  Details here:
18775         http://mail.gnu.org/archive/html/bug-coreutils/2003-08/msg00124.html
18776
18777 2003-08-24  Bruno Haible  <bruno@clisp.org>
18778
18779         * lib/binary-io.h: Include <stdio.h>, to avoid a compilation error when
18780         MSVC7 <stdio.h> is included later.
18781
18782 2003-08-22  Simon Josefsson  <jas@extundo.com>
18783
18784         * modules/strndup (Makefile.am): Add strndup.h to lib_SOURCES.
18785
18786 2003-08-20  Karl Berry  <karl@gnu.org>
18787
18788         * m4/lib-ld.m4: serial 1003 from gettext, no changes besides serial.
18789
18790 2003-08-20  Bruno Haible  <bruno@clisp.org>
18791
18792         * modules/progname: New file.
18793         * MODULES.html.sh (func_all_modules): Add progname.
18794
18795 2003-08-20  Bruno Haible  <bruno@clisp.org>
18796
18797         * lib/progname.h: New file, from GNU gettext.
18798         * lib/progname.c: New file, from GNU gettext.
18799         * lib/progreloc.c: New file, from GNU gettext.
18800
18801 2003-08-19  Jim Meyering  <jim@meyering.net>
18802
18803         * m4/lib-ld.m4: Revert yesterday's change, per Bruno's request here:
18804         http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00155.html
18805
18806 2003-08-19  Bruno Haible  <bruno@clisp.org>
18807
18808         * m4/xalloc.m4 (gl_PREREQ_XSTRDUP): Don't check for <string.h> any
18809         more.
18810
18811 2003-08-19  Bruno Haible  <bruno@clisp.org>
18812
18813         * lib/xstrdup.c: Assume <string.h> exists.
18814
18815 2003-08-18  Paul Eggert  <eggert@twinsun.com>
18816
18817         * modules/stdbool: Add BUILT_SOURCES.  Prefer $@ to target name
18818         in makefile rules.
18819
18820 2003-08-18  Jim Meyering  <jim@meyering.net>
18821
18822         * m4/getloadavg.m4: Use [\t ], not [ \t] (where \t is a literal TAB).
18823         * m4/lib-ld.m4: Likewise.
18824
18825 2003-08-18  Jim Meyering  <jim@meyering.net>
18826
18827         * lib/setenv.h: Indent nested cpp directive.
18828         * lib/vasnprintf.c: Remove trailing blanks.
18829
18830 2003-08-17  Simon Josefsson  <jas@extundo.com>
18831
18832         * modules/xstrndup: New file.
18833         * MODULES.html.sh (func_all_modules): Add xstrndup.
18834
18835 2003-08-17  Simon Josefsson  <jas@extundo.com>
18836
18837         * modules/argp: Fix autoconf macro name. Add more dependencies.
18838
18839 2003-08-17  Simon Josefsson  <jas@extundo.com>
18840
18841         * m4/xstrndup.m4: New file.
18842
18843 2003-08-17  Simon Josefsson  <jas@extundo.com>
18844
18845         * m4/argp.m4: New file.
18846
18847 2003-08-17  Simon Josefsson  <jas@extundo.com>
18848             Bruno Haible  <bruno@clisp.org>
18849
18850         * lib/xstrndup.h: New file.
18851         * lib/xstrndup.c: New file.
18852
18853 2003-08-17  Bruno Haible  <bruno@clisp.org>
18854
18855         * modules/strndup (Files, Include): Add lib/strndup.h.
18856
18857 2003-08-17  Bruno Haible  <bruno@clisp.org>
18858
18859         * modules/euidaccess (Files): Add lib/euidaccess.h.
18860
18861 2003-08-17  Bruno Haible  <bruno@clisp.org>
18862
18863         * lib/strndup.h: New file.
18864
18865 2003-08-17  Bruno Haible  <bruno@clisp.org>
18866
18867         * gnulib-tool (func_create_testdir): Handle gl_USE_SYSTEM_EXTENSIONS
18868         like AC_GNU_SOURCE.
18869         * modules/extensions (configure.ac): Comment out the invocation of
18870         gl_USE_SYSTEM_EXTENSIONS.
18871
18872 2003-08-16  Paul Eggert  <eggert@twinsun.com>
18873
18874         Merges from coreutils, etc.
18875         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Insert ':' to prevent a syntax
18876         error in gl_FUNC_MATCH.  This fixes a bug I introduced on 2003-05-28.
18877         * m4/readlink.m4 (gl_PREREQ_READLINK): Renamed from gl_PREREQ_READLINE,
18878         fixing a typo.
18879         * m4/host-os.m4 (UTILS_HOST_OS): Add GNU/NetBSD, GNU/FreeBSD.
18880         * m4/hash.m4 (gl_HASH): Use AM_STDBOOL_H, not AC_HEADER_STDBOOL.
18881
18882 2003-08-16  Paul Eggert  <eggert@twinsun.com>
18883
18884         Document merge from coreutils.
18885         * modules/alloca: Append $(ALLOCA_H) to BUILT_SOURCES.
18886         * modules/fnmatch: Append $(FNMATCH_H) to BUILT_SOURCES.
18887         * modules/utime: Add m4/utimes-null.m4.
18888
18889 2003-08-16  Paul Eggert  <eggert@twinsun.com>
18890
18891         * lib/regex.h, strdup.c, strtoll.c, strtoul.c: Do not normalize white
18892         space, undoing this 2003-08-12 change:
18893         <http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00080.html>
18894
18895 2003-08-16  Paul Eggert  <eggert@twinsun.com>
18896
18897         * config/srclist.txt: Get regex.h, strdup.c, strtoll.c,
18898         strtoul.c from libc, undoing this 2003-08-12 change:
18899         <http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00080.html>
18900
18901 2003-08-16  Jim Meyering  <jim@meyering.net>
18902
18903         Merges from coreutils.
18904         * m4/readdir.m4 (GL_FUNC_READDIR): Change name to have GL_ (not jm_)
18905         prefix.  Adjust cache variables similarly.  Create 500 rather than
18906         just 300 files, to exercise bug on Darwin6.5, too.
18907         * m4/perl.m4 (jm_PERL): Use $am_missing_run, not undefined
18908         $missing_dir.
18909         * m4/jm-winsz1.m4: Require AC_SYS_POSIX_TERMIOS, not
18910         AM_SYS_POSIX_TERMIOS.
18911         Reported by mkc@mathdogs.com.
18912         Also change use of $am_cv_sys_posix_termios
18913         to $ac_cv_sys_posix_termios.  Reported by Andreas Schwab.
18914         * m4/getgroups.m4 (jm_FUNC_GETGROUPS): Rewrite to use AC_FUNC_GETGROUPS
18915         and (if needed) to call AC_LIBOBJ and to set GETGROUPS_LIB.
18916         * m4/fsusage.m4 [__GLIBC__]: GNU libc's statvfs stats each mount point
18917         in /proc/mounts until it finds one with matching device number.  This
18918         is unnecessary when the FILE argument *is* a mount point.  No stat call
18919         is necessary in that case.  So, disable the statvfs-testing code on
18920         systems with GNU libc.  Reported by Andrei Gaponenko via Tim Waugh
18921         as RedHat bug# 84846.
18922         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Limit stack size
18923         to 1MB, so as not to render systems with no stack size limit (e.g.,
18924         linux-2.2.x) unusable.  Suggestion and code from Bruno Haible.
18925         Include <unistd.h>.  On some systems,
18926         it is required for the definition of _SC_PAGESIZE.
18927
18928 2003-08-16  Jim Meyering  <jim@meyering.net>
18929
18930         Merge from coreutils.
18931         * lib/xstrtoimax.c: #else #if -> #elif.
18932         * lib/xstrtoumax.c: Likewise.
18933
18934 2003-08-16  Jim Meyering  <jim@meyering.net>
18935
18936         * m4/utimes.m4 (gl_FUNC_UTIMES): New file.
18937         * m4/utimes.m4: Removed.
18938         * m4/utimes-null.m4: Renamed from utimes.m4.
18939
18940         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Limit stack size
18941         to 1MB, so as not to render systems with no stack size limit (e.g.,
18942         linux-2.2.x) unusable.  Suggestion and code from Bruno Haible.
18943         Include <unistd.h>.  On some systems,
18944         it is required for the definition of _SC_PAGESIZE.
18945
18946 2003-08-16  Jim Meyering  <jim@meyering.net>
18947         and Paul Eggert  <eggert@cs.ucla.edu>
18948
18949         Merges from coreutils, etc.
18950
18951         * m4/jm-macros.m4 (AC_LANG_SOURCE(C)): New macro, undefine, then define
18952         using the latest version from cvs.  This avoids problems with #line
18953         directives using a vendor (Sun) compiler.
18954         (jm_MACROS): Bump prerequisite from 2.52g to 2.57.
18955         Don't set GETGROUPS_LIB here; now it's
18956         done via getgroups.m4's wrapper function.
18957         AC_SUBST OPTIONAL_BIN_PROGS, OPTIONAL_BIN_ZCRIPTS, and MAN here,
18958         rather than just in sh-util/configure.in, so that the
18959         now-shared-by-fileutils-and-textutils lib/Makefile.am are all the
18960         same.
18961         Use AC_CONFIG_LIBOBJ_DIR(lib) to tell the new
18962         AC_FUNC_GETLOADAVG where to find getloadavg.c.
18963         Require AC_FUNC_FTW, gt_INTTYPES_PRI, gl_CLOCK_TIME,
18964         UTILS_SYS_OPEN_MAX, GL_FUNC_GETCWD_PATH_MAX, GL_FUNC_READDIR,
18965         gl_FSUSAGE, gl_MOUNTLIST, AC_FUNC_CANONICALIZE_FILE_NAME.
18966         Remove code that is now done by the newly-required macros.
18967         Append $(EXEEXT) to DF_PROG.
18968         AC_LIBOBJ fchdir-stub if fchdir doesn't exist; similarly for fchown.
18969         Do not invoke or require the following here,
18970         since prereq.m4 or some gnulib .m4 now does this for us:
18971         gl_REGEX, UTILS_FUNC_MKDIR_TRAILING_SLASH, jm_BISON, gl_FUNC_MKTIME,
18972         jm_FUNC_LSTAT, jm_FUNC_STAT, jm_FUNC_REALLOC, jm_FUNC_MALLOC,
18973         jm_FUNC_NANOSLEEP, jm_FUNC_READDIR, jm_FUNC_MEMCMP,
18974         jm_FUNC_GLIBC_UNLOCKED_IO, AC_FUNC_FNMATCH_GNU, jm_FUNC_PUTENV,
18975         jm_AC_PREREQ_XSTRTOUMAX, jm_AC_PREREQ_XSTRTOIMAX,
18976         AC_FUNC_ERROR_AT_LINE, jm_FUNC_GNU_STRFTIME, AC_FUNC_VPRINTF,
18977         vb_FUNC_RENAME, UTILS_FUNC_MKSTEP, jm_FUNC_UTIME, AM_FUNC_GETLINE,
18978         AC_FUNC_OBSTACK.
18979         Do not replace the following functions, as this is now the job
18980         of some gnulib .m4: strcasecmp, strncasecmp, dup2, gethostname,
18981         getusershell, sig2str, strcspn, stpcpy, strstr, strtol, strtoul
18982         strpbrk, euidaccess, memcmp, rmdir, rpmatch, strndup, strverscmp,
18983         atexit getpass, strdup, getpagesize.
18984         Replace 'raise'.
18985         Do not check for the following functions, as this is now the job
18986         of some gnulib .m4: bcopy, canonicalize_file_name, fchdir, ftime,
18987         getcwd, getmntinfo, resolvepath.  But check for sysctl, setreuid,
18988         setregid.
18989         (jm_CHECK_ALL_HEADERS): Do not check for fenv.h.
18990         Check for sys/sysctl.h.
18991         (jm_CHECK_ALL_TYPES): Do not require AC_STRUCT_TM, AC_STRUCT_TIMEZONE,
18992         jm_CHECK_TYPE_STRUCT_TIMESPEC.  Invoke gt_TYPE_SSIZE_T instead
18993         of checking for ssize_t ourselves.
18994
18995         * m4/prereq.m4 (jm_PREREQ): Don't invoke macros; AC_REQUIRE them.
18996         Require every macro that gnulib/modules/* suggests for us.
18997         (jm_PREREQ_ADDEXT): New macro.
18998         (jm_PREREQ_STAT): Check for 'struct statfs' on Ultrix 4.4.
18999         Require jm_AC_TYPE_LONG_LONG instead of invoking it.
19000
19001         * m4/physmem.m4 (gl_SYS__SYSTEM_CONFIGURATION): New macro.
19002         (gl_PHYSMEM): Use it.
19003         Also check for `table' function.
19004         Check for new headers and functions.
19005         Add check for sys/sysmp.h.
19006         With suggestions from Kaveh Ghazi.
19007         Ignore headers that are present but cannot be compiled.  This
19008         avoids spurious warnings on Solaris 9 sparc with Forte Developer 7
19009         C 5.4.
19010
19011 2003-08-15  Paul Eggert  <eggert@twinsun.com>
19012
19013         Document merge from coreutils.
19014         * modules/userspec: Depend on posixver.
19015         * modules/strftime: Depend on tzset.
19016
19017 2003-08-15  Paul Eggert  <eggert@twinsun.com>
19018
19019         * lib/config.charset, ref-add.sin, ref-del.sin: Use three spaces,
19020         rather than tab, after '#' in shell-script copyright notices.
19021         Suggested by Bruno Haible.
19022
19023 2003-08-15  Paul Eggert  <eggert@twinsun.com>
19024
19025         * config/srclist-update: Use three spaces, rather than tab, after '#'
19026         in shell-script copyright notices.  Suggested by Bruno Haible.
19027         Remove unnecessary parenthesization in regular expression.
19028
19029 2003-08-15  Jim Meyering  <jim@meyering.net>
19030
19031         Merge from coreutils.
19032         * lib/xgethostname.c: Include <stdlib.h>.
19033         (xghostname): Don't exit for anything other than memory-related
19034         failure; just return NULL.
19035         * lib/userspec.c: Include "posixver.h".
19036         (parse_user_spec): Accept `.' as a separator only
19037         in pre-POSIX-200112 mode.
19038         * lib/strtoimax.c: Use #elif rather than #else #if.
19039         * lib/strftime.c (my_strftime) [!_LIBC && HAVE_TZNAME && HAVE_TZSET]:
19040         Remove function, now that we can rely on a working tzset function.
19041         [!_LIBC]: Ensure that the required autoconf test has been run.
19042         [!defined _NL_CURRENT && HAVE_STRFTIME]:
19043         Use underlying_strftime for %r.
19044         * lib/sha.c: Merge in some clean-up and optimization changes from
19045         glibc.
19046         * lib/sha.c (sha_stream) [BLOCKSIZE]: Move definition to top of file.
19047         Ensure that it is a multiple of 64.
19048         Rearrange loop exit tests so as to avoid performing an
19049         additional fread after encountering an error or EOF.
19050         * lib/realloc.c: Update copyright date.
19051
19052 2003-08-15  Jim Meyering  <jim@meyering.net>
19053         and Paul Eggert  <eggert@twinsun.com>
19054
19055         Merge from coreutils.
19056         * lib/readutmp.h (HAVE_UTMPX_H): Undef if struct utmp has the ut_exit
19057         member but strut utmpx does not.  Needed for AIX 4.3.3.
19058         (UT_EXIT_E_TERMINATION, UT_EXIT_E_EXIT): Define.
19059
19060 2003-08-15  Jim Meyering  <jim@meyering.net>
19061         and Paul Eggert  <eggert@cs.ucla.edu>
19062
19063         Merges from coreutils, etc.
19064         * m4/strftime.m4 (_jm_STRFTIME_PREREQS):
19065         Require gl_FUNC_TZSET_CLOBBER.
19066         * m4/readutmp.m4 (gl_READUTMP): Check for ut_exit.ut_exit,
19067         ut_exit.e_exit, ut_exit.ut_termination, and ut_exit.e_termination
19068         members.
19069
19070 2003-08-14  Paul Eggert  <eggert@twinsun.com>
19071
19072         Help the merge from coreutils.
19073         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): New macro.
19074         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Use it.
19075         * m4/tzset.m4: Use it too.
19076
19077 2003-08-14  Paul Eggert  <eggert@twinsun.com>
19078
19079         * modules/tzset: New file.
19080
19081 2003-08-14  Jim Meyering  <jim@meyering.net>
19082
19083         Merges from coreutils.
19084         * modules/fnmatch: Use the `$(FNMATCH_H)' notation for AC_REPLACED
19085         variable names, rather than @FNMATCH_H@.
19086         * modules/alloca: Likewise for $(ALLOCA_H).
19087
19088         * modules/fnmatch (fnmatch.h): Use `$@' in the commands, in place of
19089         the three copies of the literal target, `fnmatch.h'.
19090         * modules/alloca (alloca.h): Likewise.
19091
19092 2003-08-14  Jim Meyering  <jim@meyering.net>
19093
19094         Merge from coreutils.
19095         * m4/tzset.m4: New file.
19096         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Move the
19097         MOUNTED_VMOUNT test to precede the MOUNTED_GETMNTENT1 tests, since
19098         otherwise, AIX 5.1 systems would end up using the latter.
19099         MOUNTED_GETMNTENT1 support is inadequate on such systems: 1) detecting
19100         whether a file system is remote doesn't work  2) the MOUNTED_VMOUNT
19101         code reports the HOSTNAME:/MOUNT_POINT, while the MOUNTED_GETMNTENT1
19102         code reports merely /MOUNT_POINT.  Reported by Mike Jetzer.
19103
19104 2003-08-14  Jim Meyering  <jim@meyering.net>
19105
19106         Merge from coreutils.
19107         * lib/obstack.h: Whitespace changes.
19108         * lib/mountlist.c: Remove anachronistic casts of xmalloc, xrealloc,
19109         and xcalloc return values.
19110         (read_filesystem_list) [MOUNTED_GETFSSTAT]:
19111         Use MNT_NOWAIT, rather than MNT_WAIT.  Otherwise, `df DIR' could
19112         hang on OSF/1 5.1 for DIR on both local and remote file systems.
19113         Reported by (and fix confirmed by) Nelson H. F. Beebe.
19114         (read_filesystem_list) [MOUNTED_VMOUNT]: Detect any
19115         error from mntctl.
19116         Use mntctl's return value to drive the entry-processing loop, since
19117         we can't rely on the value of the vmt_length member in the last
19118         entry.  On some systems doing so could result in exhausting
19119         virtual memory.  Based in part on a patch from Mike Jetzer.
19120
19121 2003-08-14  Jim Meyering  <jim@meyering.net>
19122         and Paul Eggert  <eggert@twinsun.com>
19123
19124         Merges from coreutils, plus other fixes.
19125         * lib/physmem.c: Merge in portability changes from gcc/libiberty
19126         to support AIX, IRIX, Tru64, and Windows.  See the ChangeLog there
19127         for credits and details.  Thanks to Kaveh Ghazi for helping
19128         to keep these files in sync.
19129         (ARRAY_SIZE): Define it.
19130         (physmem_total, physmem_available): Add comments. From Kaveh Ghazi.
19131         * lib/memcasecmp.c: Remove unnecessary parentheses after 'defined'.
19132         (memcasecmp): Don't assume size_t fits in unsigned int.
19133         Remove casts and duplicate code.
19134         * lib/md5.c: Include <string.h> and <stdlib.h> unconditionally.
19135         (memcpy): Remove definition.
19136         Merge in some clean-up and optimization changes from glibc.
19137         [BLOCKSIZE]: Move definition to top of file.
19138         Ensure that it is a multiple of 64.
19139         Rearrange loop exit tests so as to avoid performing an
19140         additional fread after encountering an error or EOF.
19141         * lib/md5.h (md5_uintptr): Define.
19142         * lib/makepath.c (CLEANUP_CWD): Report an error if we failed to
19143         return to the initial working directory.  Preserve errno
19144         for caller.
19145         * lib/idcache.c: Include "xalloc.h".
19146         (xmalloc, xrealloc): Remove decls.
19147         (getuser): Remove casts no longer required in C89.
19148         * lib/human.c: Include stdio.h, for sprintf.
19149         * lib/group-member.c: Include "xalloc.h".
19150         (xmalloc, xrealloc): Remove decls.
19151         (get_group_info): Remove casts no longer required in C89.
19152         * lib/getusershell.c (readname): Remove casts no longer required in
19153         C89.
19154         * lib/gettimeofday.c (rpl_gmtime, rpl_tzset): New functions.
19155         * lib/getline.c: Whitespace fix, from coreutils.
19156
19157 2003-08-13  Paul Eggert  <eggert@twinsun.com>
19158
19159         * m4/exclude.m4 (gl_EXCLUDE): Require AC_C_INLINE, AC_HEADER_STDC.
19160         Check for isascii.
19161
19162         * m4/gettext.m4, iconv.m4, intdiv0.m4, inttypes-pri.m4, lib-link.m4,
19163         lib-prefix.m4, longdouble.m4, po.m4, progtest.m4, signed.m4:
19164         Undo previous (whitespace-only) change.
19165
19166 2003-08-13  Paul Eggert  <eggert@twinsun.com>
19167
19168         * lib/exclude.c: Include <ctype.h>
19169         (IN_CTYPE_DOMAIN): New macro.
19170         (is_space): New fn.
19171         (add_exclude_file): If LINE_END is a space, ignore trailing spaces
19172         and empty lines.
19173
19174         * lib/argp-help.c, argp-parse.c, config.charset, getopt.h:
19175         Undo previous (whitespace-only) change.
19176
19177 2003-08-13  Paul Eggert  <eggert@twinsun.com>
19178
19179         * config/srclist-update: Change update back to the old behavior,
19180         leaving whitespace alone.  Use one 'sed' command rather than a
19181         pipeline.
19182         (fixlicense): Now a variable, not a function.
19183         (remove_trailing_blanks): Remove.
19184         (fixfile): Don't invoke unexpand or cat, or remove trailing blanks.
19185         * config/config.guess, config.sub, install-sh, missing, texinfo.tex:
19186         Undo previous (whitespace-only) change.
19187
19188 2003-08-12  Paul Eggert  <eggert@twinsun.com>
19189
19190         Merge from coreutils.
19191         * modules/euidaccess: Add lib_SOURCES, include for new
19192         file euidaccess.h
19193
19194 2003-08-12  Paul Eggert  <eggert@twinsun.com>
19195
19196         * m4/gettext.m4, iconv.m4, intdiv0.m4, inttypes-pri.m4, lib-link.m4,
19197         lib-prefix.m4, longdouble.m4, po.m4, progtest.m4, signed.m4:
19198         Normalize leading white space and remove trailing white space.
19199
19200         Merge from coreutils
19201         * m4/euidaccess.m4 (gl_FUNC_EUIDACCESS): Check for euidaccess decl.
19202
19203         * m4/lib-ld.m4, lib-link.m4, lib-prefix.m4: Regenerate from gettext
19204         0.12.1.  These files are now being upgraded automatically by
19205         ../config/srclist-update.
19206
19207 2003-08-12  Paul Eggert  <eggert@twinsun.com>
19208
19209         * lib/argp-help.c, argp-parse.c, config.charset, getopt.h:
19210         Normalize leading white space and remove trailing white space.
19211         * lib/ref-add.sin, ref-del.sin: Use '#' before empty line in copyright
19212         notice, as per ../config/srclist-update.
19213
19214         Merge from coreutils.
19215         * lib/euidaccess.h: New file.
19216         * lib/euidaccess.c: Include it.
19217         * lib/.cppi-disable: Add printf-args.h, printf-parse.h, stdbool_.h,
19218         vasnprintf.h, vasprintf.h.  Remove strdup.c, gettext.h.
19219         * lib/regex.h, strdup.c, strtoll.c, strtoul.c: Normalize white space.
19220
19221 2003-08-12  Paul Eggert  <eggert@twinsun.com>
19222
19223         * config/srclist-update: Add copyright notice.
19224         (remove_id_lines, remove_trailing_blanks): New constants.
19225         (fixfile): Use them to normalize spacing a bit in copied files.
19226         * config/config.guess, config.sub, install-sh, missing, texinfo.tex:
19227         Normalize leading white space and remove trailing white space.
19228
19229         * config/texinfo.tex: Sync with texinfo.
19230
19231         * config/srclist.txt: Don't get regex.h, strdup.c, strtoll.c,
19232         strtoul.c from libc, to merge coreutils whitespace changes.
19233
19234         * config/srclist.txt: Get the following m4 files from gettext:
19235         codeset.m4, gettext.m4, glibc21.m4, iconv.m4, intdiv0.m4,
19236         inttypes-pri.m4, lcmessage.m4, lib-ld.m4, lib-link.m4, lib-prefix.m4,
19237         longdouble.m4, nls.m4, po.m4, progtest.m4, signed.m4, wchar_t.m4,
19238         wint_t.m4.
19239
19240 2003-08-12  Karl Berry  <karl@gnu.org>
19241
19242         * config/srclist.txt: can't sync vasnprintf.c any more, changes have
19243         been made.
19244
19245 2003-08-11  Paul Eggert  <eggert@twinsun.com>
19246
19247         * modules/gnu-source, m4/gnu-source.m4:
19248         Remove; we're assuming Autoconf 2.54 or later now.
19249         Suggested by Bruno Haible.
19250         * MODULES.html.sh (func_all_modules): Remove gnu-source.
19251
19252 2003-08-11  Bruno Haible  <bruno@clisp.org>
19253
19254         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF): Also check for wcslen.
19255
19256 2003-08-11  Bruno Haible  <bruno@clisp.org>
19257
19258         * lib/vasnprintf.c (local_wcslen): New function, for Solaris 2.5.1.
19259         (vasnprintf): Use it instead of wcslen.
19260
19261 2003-08-11  Bruno Haible  <bruno@clisp.org>
19262
19263         * lib/stdbool_.h (_Bool): Undo last change; instead use a negative enum
19264         value to ensure that _Bool promotes to int. Use #define for _Bool when
19265         using the Solaris C compiler. Adds comments suggested by Paul Eggert.
19266
19267 2003-08-10  Karl Berry  <karl@gnu.org>
19268
19269         * lib/regex.h: update from libc (whitespace fix).
19270
19271 2003-08-09  Paul Eggert  <eggert@twinsun.com>
19272
19273         Merge some files from coreutils.  These changes were
19274         originally made by Jim Meyering.
19275         * lib/acl.c: Include <sys/types.h> before <sys/stat.h>;
19276         many older Unixes require this.
19277         * lib/alloca.c (alloca): Remove cast to argument of free;
19278         no longer needed in C89.
19279         * lib/alloca_.h, regex.h: Fix white space to match
19280         what GNU indent does.
19281
19282 2003-08-09  Paul Eggert  <eggert@twinsun.com>
19283
19284         * m4/regex.m4 (jm_INCLUDED_REGEX): Change "\201" to "\371";
19285         apparently Emacs's Unicode mode got confused before my 2003-08-05
19286         checkin.
19287
19288 2003-08-08  Paul Eggert  <eggert@twinsun.com>
19289
19290         * m4/extensions.m4: New file.
19291         * m4/timespec.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC):
19292         Require gl_USE_SYSTEM_EXTENSIONS.
19293         * m4/unlocked-io.m4 (jm_FUNC_GLIBC_UNLOCKED_IO):
19294         Require gl_USE_SYSTEM_EXTENSIONS rather than AC_GNU_SOURCE.
19295
19296 2003-08-08  Paul Eggert  <eggert@twinsun.com>
19297
19298         * MODULES.html.sh (func_all_modules): Add extensions, gnu-source.
19299         * modules/extensions, modules/gnu-source: New files.
19300         * modules/timespec, modules/unlocked-io: Depend on extensions.
19301
19302 2003-08-07  Paul Eggert  <eggert@twinsun.com>
19303
19304         * modules/restrict: New file.
19305         * MODULES.html.sh (func_all_modules): Add restrict.
19306         * modules/regex: Depend on restrict.
19307
19308 2003-08-07  Paul Eggert  <eggert@twinsun.com>
19309
19310         * m4/restrict.m4: New file.
19311         * m4/regex.m4 (jm_PREREQ_REGEX): Add gl_C_RESTRICT.
19312
19313 2003-08-07  Bruno Haible  <bruno@clisp.org>
19314
19315         * modules/getndelim2 (Makefile.am): Add the files to EXTRA_DIST, not
19316         lib_SOURCES, because getndelim2.m4 now uses AC_LIBOBJ(getndelim2).
19317
19318 2003-08-07  Bruno Haible  <bruno@clisp.org>
19319
19320         * m4/getndelim2.m4 (gl_GETNDELIM2): Use AC_LIBOBJ(getndelim2). This
19321         makes the module 'getndelim2' compatible with the module 'getline'.
19322
19323 2003-08-05  Paul Eggert  <eggert@twinsun.com>
19324
19325         * m4/regex.m4 (jm_INCLUDED_REGEX): Replace a single non-ASCII
19326         byte with "\201" to avoid glitches when editing that source file
19327         with multi-gnome-terminal.
19328
19329 2003-08-05  Paul Eggert  <eggert@twinsun.com>
19330
19331         * lib/bumpalloc.h: Remove.
19332
19333 2003-08-05  Paul Eggert  <eggert@twinsun.com>
19334
19335         * MODULES.html.sh (func_all_modules): Remove bumpalloc.
19336         * modules/bumpalloc: Remove.
19337
19338 2003-08-04  Paul Eggert  <eggert@twinsun.com>
19339
19340         * lib/getloadavg.c: Change copyright notice and spacing to conform to
19341         GNU coding style.
19342
19343         Merge from coreutils.
19344         * lib/error.c [!USE_IN_LIBIO]: Omit this case; assume USE_IN_LIBIO is
19345         1. From glibc.
19346         * lib/getdate.y (date): Also accept dates like May-23-2003; suggestion
19347         from Karl Berry, implemented by Jim Meyering.
19348         * lib/getgroups.c: Include "xalloc.h" instead of declaring xalloc fns;
19349         from Dmitry V. Levin.
19350         Remove anachronistic cast of xrealloc.
19351         * lib/fnmatch_.h (__const): Remove.  Use 'const'.
19352         * lib/fnmatch_loop.c (NEW_PATTERN): Cast alloca return value to proper
19353         type. Otherwise, it wouldn't compile with at least /bin/cc on
19354         ymp-cray-unicos9.0.2.X.
19355         Combine two mostly-identical uses of alloca into one.
19356         Thanks to the Cray-Cyber project for access to a Cray Y-MP.
19357
19358 2003-08-04  Dave Love  <d.love@dl.ac.uk>
19359
19360         [From Emacs.]
19361
19362         * lib/getloadavg.c: Check `__unix' as well as `unix'.  Use #ifdef, not
19363         #if.  Check HAVE_LIBKSTAT as well as LOAD_AVE_TYPE.  Check
19364         F_SETFD, not FD_SETFD.  Use HAVE_STRUCT_NLIST_N_UN_N_NAME, not
19365         obsolete NLIST_NAME_UNION.
19366         [__GNU__]: Undef BSD and FSCALE.
19367         [!NLIST_STRUCT]: Remove conditional definition of NLIST_STRUCT.
19368
19369 2003-08-03  Paul Eggert  <eggert@twinsun.com>
19370
19371         * lib/stdbool_.h (_Bool): Make it signed char, instead of
19372         an enum type, so that it's guaranteed to promote to int.  See:
19373         <http://mail.gnu.org/archive/html/bug-gnulib/2003-07/msg00124.html>
19374
19375 2003-08-03  Karl Berry  <karl@gnu.org>
19376
19377         * config/depcomp: update from automake.
19378
19379 2003-07-31  Paul Eggert  <eggert@twinsun.com>
19380
19381         * lib/strerror.c: Include config.h, limits.h.  Declare sprintf.
19382         (strerror): Don't assume that a printable int fits in 14 bytes.
19383
19384 2003-07-31  Bruno Haible  <bruno@clisp.org>
19385
19386         * modules/getpass-gnu: New file.
19387         * MODULES.html.sh (func_all_modules): Add getpass-gnu.
19388
19389 2003-07-31  Bruno Haible  <bruno@clisp.org>
19390
19391         * m4/getpass.m4 (gl_FUNC_GETPASS_GNU): New macro.
19392
19393 2003-07-24  Karl Berry  <karl@gnu.org>
19394
19395         * config/missing: update from automake.
19396
19397 2003-07-24  Derek Robert Price  <derek@ximbiot.com>
19398             Bruno Haible  <bruno@clisp.org>
19399
19400         * lib/getline.h (getline, getdelim): Change return type to ssize_t.
19401         * lib/getline.c (getline, getdelim): Likewise.
19402         Remove _GNU_SOURCE define; now it's defined in config.h through
19403         m4/getline.m4.
19404
19405 2003-07-23  Karl Berry  <karl@gnu.org>
19406
19407         * config/config.sub: update from prep.
19408
19409 2003-07-22  Paul Eggert  <eggert@twinsun.com>
19410
19411         * modules/xalloc (Depends-on): Add exitfail.
19412         * modules/xmemcoll: Likewise.
19413
19414 2003-07-22  Paul Eggert  <eggert@twinsun.com>
19415
19416         * lib/xalloc.h (XCALLOC, XREALLOC, CCLONE): Fix under- and
19417         over-parenthesization in macros.
19418
19419         Sync with coreutils.
19420
19421         * lib/xalloc.h (XMALLOC, XCALLOC, XREALLOC): Remove casts not
19422         required by C99.
19423
19424         Use `exit_failure' for xalloc and xmemcoll instead of their own
19425         private exit-failure variables.
19426         * lib/xalloc.h (xalloc_exit_failure): Remove.
19427         * lib/xmalloc.c: Likewise.  Include exitfail.h.
19428         (xalloc_die): Use exit_failure instead of xalloc_exit_failure.
19429         * lib/xmemcoll.h (xmemcoll_exit_failure): Remove.
19430         * lib/xmemcoll.c: Likewise.  Include exitfail.h.
19431         (xmemcoll): Use exit_failure instead of xalloc_exit_failure.
19432
19433 2003-07-20  Jim Meyering  <jim@meyering.net>
19434
19435         * modules/closeout (Depends-on): Add exitfail.
19436         Suggestion from Bruno Haible.
19437
19438 2003-07-19  Karl Berry  <karl@gnu.org>
19439
19440         * config/config.sub: update from prep.
19441
19442 2003-07-18  Paul Eggert  <eggert@twinsun.com>
19443
19444         * lib/closeout.h (close_stdout_set_status, close_stdout_status):
19445         Remove.
19446         * lib/closeout.c: Likewise.  Include "closeout.h" right after config.h,
19447         to test that it can stand by itself.  Include "exitfail.h".
19448         Clients should set exit_failure instead.
19449         (EXIT_FAILURE): Remove; no longer needed.  Do not include <stdlib.h>.
19450
19451 2003-07-18  Bruno Haible  <bruno@clisp.org>
19452
19453         * modules/getndelim2: New file.
19454         * modules/getline: Share files with module getndelim2.
19455         * modules/getnline: Depend on getndelim2 instead of sharing files with
19456         it. Add getnline.c to lib_SOURCES.
19457         * MODULES.html.sh (func_all_modules): Add getndelim2.
19458
19459 2003-07-18  Bruno Haible  <bruno@clisp.org>
19460
19461         * m4/getndelim2.m4: New file.
19462         * m4/getline.m4 (AM_FUNC_GETLINE): Add AC_LIBOBJ of getndelim2.c and
19463         invoke gl_PREREQ_GETNDELIM2.
19464         (gl_PREREQ_GETLINE): Drop AC_HEADER_STDC, now done by
19465         gl_PREREQ_GETNDELIM2.
19466         * m4/getnline.m4 (gl_GETNLINE): Drop AC_HEADER_STDC, now done by
19467         gl_GETNDELIM2.
19468
19469 2003-07-18  Bruno Haible  <bruno@clisp.org>
19470
19471         * lib/getndelim2.h: New file.
19472         * lib/getndelim2.c: Make into a module of its own. Include config.h,
19473         getndelim2.h.
19474         (getndelim2): Make non-static. Change return type to ssize_t.
19475         * lib/getline.h: Change argument names.
19476         * lib/getline.c: Include getndelim2.h instead of getndelim2.c.
19477         * lib/getnline.c: Include getndelim2.h.
19478
19479 2003-07-18  Andreas Schwab  <schwab@suse.de>
19480
19481         * lib/memcoll.c (memcoll) [!HAVE_STRCOLL]: Clear errno.
19482
19483 2003-07-17  Karl Berry  <karl@gnu.org>
19484
19485         * config/config.sub: update from prep.
19486
19487 2003-07-17  Bruno Haible  <bruno@clisp.org>
19488
19489         * modules/getnline: New file.
19490         * modules/getline: Add lib/getndelim2.c to source file list.
19491         * MODULES.html.sh (func_all_modules): Add getnline.
19492
19493 2003-07-17  Bruno Haible  <bruno@clisp.org>
19494
19495         * m4/getnline.m4: New file.
19496
19497 2003-07-17  Bruno Haible  <bruno@clisp.org>
19498
19499         * m4/Makefile.am.in: Remove file.
19500         * m4/Makefile.am: Remove file.
19501         * m4/Makefile.in: Remove file.
19502
19503 2003-07-17  Bruno Haible  <bruno@clisp.org>
19504
19505         * lib/getnline.h: New file.
19506         * lib/getnline.c: New file.
19507         * lib/getndelim2.c: New file, extracted from getline.c.
19508         (getndelim2): Renamed from getdelim2, with added nmax argument.
19509         * lib/getline.c: Include getndelim2.c.
19510         (getdelim2): Moved out to getndelim2.c.
19511         (getline, getdelim): Update.
19512
19513 2003-07-17  Bruno Haible  <bruno@clisp.org>
19514
19515         * lib/Makefile.am: Remove file.
19516         * lib/Makefile.in: Remove file.
19517
19518 2003-07-17  Bruno Haible  <bruno@clisp.org>
19519
19520         * configure.in: Remove file.
19521         * Makefile.in: Remove file.
19522
19523 2003-07-17  Bruno Haible  <bruno@clisp.org>
19524
19525         * MODULES.html.sh: Put the </BODY> right before </HTML>.
19526
19527 2003-07-16  Karl Berry  <karl@gnu.org>
19528
19529         * config/srclist-update: was running fixlicense twice, which caused
19530                 texinfo.tex to be nullified for some reason.  Simplify,
19531                 $gplsrc is no longer needed as far as I can see?
19532
19533 2003-07-16  Jim Meyering  <jim@meyering.net>
19534
19535         * modules/save-cwd: Depend on xgetcwd.  From Derek Price.
19536
19537 2003-07-15  Paul Eggert  <eggert@twinsun.com>
19538
19539         * config/srclist.txt: Get the following files from gettext-runtime/intl
19540         instead: config.charset, localcharset.c, localcharset.h, ref-add.sin,
19541         ref-del.sin.  From Bruno Haible.
19542         * config/srclist-update (fixfile): Change grep pattern again, since the
19543         previous fix didn't work (there was another trailing $).  Use
19544         '[$]' to escape the $s.
19545
19546 2003-07-15  Karl Berry  <karl@gnu.org>
19547
19548         * lib/vasnprintf.c: update from gettext.
19549
19550 2003-07-15  Karl Berry  <karl@gnu.org>
19551
19552         * config/srclist-update (fixfile): Change grep pattern, since 'Id'
19553         gets expanded when surrounded by '$'.
19554
19555 2003-07-15  Jim Meyering  <jim@meyering.net>
19556
19557         * modules/save-cwd: Don't depend on error.  From Derek Price.
19558
19559 2003-07-15  Jim Meyering  <jim@meyering.net>
19560
19561         * lib/makepath.c (make_path): Enclose diagnostic in _(...).
19562
19563 2003-07-14  Simon Josefsson  <jas@extundo.com>
19564
19565         * modules/mempcpy: New file.
19566         * MODULES.html.sh (func_all_modules): Add mempcpy.
19567
19568 2003-07-14  Simon Josefsson  <jas@extundo.com>
19569
19570         * m4/mempcpy.m4: New file.
19571
19572 2003-07-14  Simon Josefsson  <jas@extundo.com>
19573
19574         * lib/mempcpy.h: New file.
19575         * lib/mempcpy.c: New file.
19576
19577 2003-07-14  Paul Eggert  <eggert@twinsun.com>
19578
19579         * modules/getdate, modules/posixtm: Depend on mktime.
19580
19581 2003-07-14  Paul Eggert  <eggert@twinsun.com>
19582
19583         * lib/ceill.c, expl.c, floorl.c, frexpl.c, ldexpl.c, mathl.h,
19584         sincosl.c, sqrtl.c, trigl.c, trigl.h, poll.c, poll_.h, mkstemp.c,
19585         unicodeio.c, unicodeio.h, unlocked-io.h:
19586         Switch from LGPL to GPL.
19587
19588 2003-07-14  Paul Eggert  <eggert@twinsun.com>
19589
19590         * lib/asnprintf.c, asprintf.c, config.charset, gettext.h,
19591         localcharset.c, localcharset.h, mkdtemp.c, printf-args.c,
19592         printf-args.h, printf-parse.c, printf-parse.h, ref-add.sin,
19593         ref-del.sin, setenv.c, unsetenv.c, vasnprintf.c, vasnprintf.h,
19594         vasprintf.c, vasprintf.h: Regenerate.  These files are now being
19595         updated automatically by ../config/srclist-update.  This changes
19596         their license from LPGL to GPL.
19597
19598 2003-07-14  Paul Eggert  <eggert@twinsun.com>
19599
19600         * config/srclist.txt: Add tons more gettext files.  $GETTEXT is now
19601         assumed to refer to the root of the most recent stable gettext version.
19602         * config/srclistvars.sh: Add defaults for eggert.
19603         * config/srclist-update: Convert LGPL to GPL in shell scripts, too.
19604         Match "This program" as well as "The program".  This is needed
19605         for gettext.
19606
19607 2003-07-14  Jim Meyering  <jim@meyering.net>
19608
19609         Don't emit diagnostics.  Let callers do that.
19610         * lib/save-cwd.c: Don't include "error.h".
19611         (save_cwd): Don't call error.  Ensure that errno is valid
19612         when returning nonzero.
19613
19614         * lib/save-cwd.h (restore_cwd): Update prototype.
19615         * lib/save-cwd.c (restore_cwd): Remove two parameters.
19616         Simplify.  Don't call error upon failure.  Let callers do that.
19617         (save_cwd): Mention that Irix 5.3 has the same problem as SunOS 4
19618         when auditing is enabled.  But don't bother updating the #if.
19619
19620 2003-07-11  Alexandre Duret-Lutz  <adl@gnu.org>
19621
19622         * lib/obstack.h (__INT_TO_PTR): Revert change of 2003-03-13;
19623         it breaks C++ compilation.
19624         [!__GNUC__ || !__STDC__] (obstack_finish): Cast result to void*.
19625
19626 2003-07-10  Simon Josefsson  <jas@extundo.com>
19627
19628         * modules/strchrnul (Makefile.am): Add strchrnul.h.
19629
19630 2003-07-10  Jim Meyering  <jim@meyering.net>
19631
19632         * m4/clock_time.m4: Remove trailing blank.
19633         * m4/intmax_t.m4: Likewise.
19634
19635 2003-07-10  Jim Meyering  <jim@meyering.net>
19636
19637         * lib/vasnprintf.c: Remove trailing blanks.
19638         Make cpp indentation consistent.
19639
19640 2003-07-09  Paul Eggert  <eggert@twinsun.com>
19641
19642         * lib/alloca_.h, euidaccess.c, getpass.c, memrchr.c, obstack.h,
19643         posixver.c, strftime.c, strnlen.c, strverscmp.c:
19644         Switch from LGPL to GPL.
19645
19646 2003-07-09  Paul Eggert  <eggert@twinsun.com>
19647
19648         * config/srclist.txt: Sort sublists.  Add
19649         $LIBCSRC/sysdeps/generic/strtoul.c. In comments, add more libc files
19650         that differ from gnulib for one reason or another; we'd like this list
19651         to be smaller but for now let's document what we have.
19652
19653 2003-07-08  Paul Eggert  <eggert@twinsun.com>
19654
19655         * config/srclist-update: Port to POSIX 1003.1-2001 hosts by avoiding
19656         the use of GNU extensions.  Change "x=`eval echo $x`" to the shorter
19657         and sweeter "eval x=$x".
19658         * config/srclist.txt: Get lib/argp* from glibc.
19659
19660 2003-07-07  Paul Eggert  <eggert@twinsun.com>
19661
19662         * lib/mktime.c: Fix some boundary cases and remove need for floating
19663         point.
19664
19665         Issue a compile-time diagnostic if time_t is floating point, or if
19666         two's complement arithmetic is not in effect, or if arithmetic
19667         right shift does not propagate the sign.  These assumptions were
19668         all in the original code but they weren't checked.
19669
19670         (TIME_T_MIDPOINT, verify): New macros.
19671         (__isleap): Remove; it has integer overflow problems.
19672         (leapyear): New function, without those problems.
19673         (ydhms_tm_diff): Remove; splitting into two parts.
19674         (ydhms_diff): New function, containing the arithmetic part of
19675         the old ydhms_tm_diff function.  Issue a compile-time
19676         diagnostic if we are not using C99 integer division.
19677         Avoid casts when possible.
19678         (guess_time_tm): New function, containing the checking part of
19679         the old ydhms_tm_diff function.  Return the new value, rather than
19680         the difference between it and the old.  Accept a new argument T
19681         so that *T specifies the old value.  Check for overflow in the result.
19682
19683         (__mktime_internal): Use a time_t offset, not a long int offset.
19684         This undoes the 2003-06-04 change, which is no longer needed now
19685         that we have better overflow checking.
19686         (localtime_offset): Likewise.
19687
19688         (__mktime_internal): Avoid harmful overflow on hosts where time_t
19689         and long are 64-bit but int is only 32-bit.
19690         (ydhms_diff): Use long int to store year1 and yday1.
19691         Issue a compile-time diagnostic if long int is not wide enough.
19692
19693         (__mktime_internal): Use long int to store adjusted year and yday.
19694         Use plain C rather than preprocessor commands, if that doesn't
19695         affect efficiency.
19696         Check for overflow (and try to repair) after each probe
19697         rather than checking only at the very end.  This avoids some bugs
19698         (e.g., southern hemisphere, behind GMT, and GMT offset at minimum time
19699         does not equal GMT offset at maximum time).
19700         Use integer to check for overflow rather than floating point; this
19701         is more portable to non-IEEE hosts, and is a tad faster.
19702         When we detect that we are oscillating between two values,
19703         don't check whether tm_isdst has the requested value, since
19704         we already know the answer.  When tm_isdst has the wrong value,
19705         use a different heuristic to find the right one, based on the
19706         extreme values actually observed in practice in tz2003a,
19707         rather than the (overly optimistic) "previous 3 calendar quarters".
19708
19709         (not_equal_tm, print_tm, check_result): Use "const T" rather than
19710         "T const" to accommodate glibc style.
19711         (check_result): Use less-confusing report format.  "long" -> "long int.
19712         (main): Likewise.
19713         Don't loop if the iteration overflows time_t.
19714         Allow a negative step in the iteration.
19715
19716 2003-07-06  Karl Berry  <karl@gnu.org>
19717
19718         * config/depcomp: update from automake.
19719         * config/config.sub: update from prep.
19720
19721 2003-07-03  Karl Berry  <karl@gnu.org>
19722
19723         * config/config.guess: update from prep.
19724
19725 2003-07-01  Paul Eggert  <eggert@twinsun.com>
19726
19727         * m4/xreadlink.m4 (gl_XREADLINK): Don't check for sys/types.h, since
19728         xreadlink.c now includes it unconditionally.
19729
19730 2003-07-01  Paul Eggert  <eggert@twinsun.com>
19731
19732         * lib/xreadlink.c: Include <sys/types.h> unconditionally, instead of
19733         having it depend on HAVE_SYS_TYPES_H.
19734
19735 2003-07-01  Bruno Haible  <bruno@clisp.org>
19736
19737         * m4/ssize_t.m4 (gt_TYPE_SSIZE_T): Don't include <unistd.h>.
19738         <sys/types.h> should be sufficient.
19739         Reported by Paul Eggert.
19740
19741 2003-06-26  Karl Berry  <karl@gnu.org>
19742
19743         * config/depcomp: update from automake.
19744
19745 2003-06-26  Bruno Haible  <bruno@clisp.org>
19746
19747         * modules/human: Depend on module stdbool.
19748
19749 2003-06-25  Bruno Haible  <bruno@clisp.org>
19750
19751         * modules/readlink: New file.
19752         * modules/xreadlink: Depend on it.
19753         * MODULES.html.sh (func_all_modules): Add readlink.
19754
19755 2003-06-25  Bruno Haible  <bruno@clisp.org>
19756
19757         * m4/readlink.m4: New file.
19758
19759 2003-06-25  Bruno Haible  <bruno@clisp.org>
19760
19761         * lib/readlink.c: New file.
19762
19763 2003-06-22  Karl Berry  <karl@gnu.org>
19764
19765         * config/srclist.txt: update mkinstalldirs from automake.
19766         * config/mkinstalldirs: update.
19767
19768 2003-06-22  Bruno Haible  <bruno@clisp.org>
19769
19770         Portability to mingw32.
19771         * m4/ssize_t.m4: New file, from GNU gettext.
19772         * m4/safe-read.m4 (gl_PREREQ_SAFE_READ): Require gt_TYPE_SSIZE_T.
19773         * m4/xreadlink.m4 (gl_XREADLINK): Require gt_TYPE_SSIZE_T.
19774
19775 2003-06-22  Bruno Haible  <bruno@clisp.org>
19776
19777         * modules/safe-read: Add m4/ssize_t.m4.
19778         * modules/xreadlink: Add m4/ssize_t.m4.
19779
19780 2003-06-20  Bruno Haible  <bruno@clisp.org>
19781
19782         Assume C89, so PARAMS isn't needed.
19783         * lib/unicodeio.h (PARAMS): Remove.
19784         * lib/unicodeio.c: Don't use PARAMS.
19785
19786 2003-06-18  Karl Berry  <karl@gnu.org>
19787
19788         * config/config.{guess,sub}: update from prep.
19789
19790 2003-06-18  Jim Meyering  <jim@meyering.net>
19791
19792         Merge changes from coreutils.
19793         * lib/readutmp.c: Include <string.h> and <stdlib.h> unconditionally.
19794         Remove explicit declarations of xmalloc and realloc.
19795         Include xalloc.h.
19796         (read_utmp): Remove anachronistic cast of xmalloc.
19797
19798 2003-06-17  Paul Eggert  <eggert@twinsun.com>
19799
19800         Assume C89, so PARAMS isn't needed.
19801         * lib/backupfile.h (PARAMS): Remove.  All uses removed.
19802         * lib/closeout.h, lib/dirname.h, lib/filemode.h, lib/fsusage.h,
19803         lib/getdate.h, lib/getline.h, lib/group-member.h, lib/hard-locale.h,
19804         lib/hash.h, lib/linebuffer.h, lib/long-options.h, lib/makepath.h,
19805         lib/memcasecmp.h, lib/memcoll.h, lib/modechange.h, lib/mountlist.h,
19806         lib/path-concat.h, lib/physmem.h, lib/posixtm.h, lib/quote.h,
19807         lib/readutmp.h, lib/same.h, lib/save-cwd.h, lib/savedir.h,
19808         lib/stdio-safer.h, lib/strtoimax.c, lib/strverscmp.h,
19809         lib/unistd-safer.h, lib/version-etc.h, lib/xalloc.h, lib/xreadlink.h,
19810         lib/xstrtod.h, lib/xstrtol.h: Likewise.
19811         * lib/filemode.h, lib/hard-locale.h, lib/memcoll.h, lib/modechange.h,
19812         lib/physmem.h, lib/same.h, lib/strverscmp.h: Do not include config.h;
19813         no longer needed. Anyway, config.h should always be included before any
19814         other file.
19815
19816 2003-06-11  Simon Josefsson  <jas@extundo.com>
19817
19818         * modules/sysexits: New file.
19819         * MODULES.html.sh (func_all_modules): Add sysexits.
19820
19821 2003-06-11  Simon Josefsson  <jas@extundo.com>
19822
19823         * lib/sysexit_.h: New file.
19824
19825 2003-06-11  Derek Price  <derek@ximbiot.com>
19826
19827         * lib/stat.c [LSTAT]: Compile/use slash_aware_lstat only if it is
19828         necessary.
19829
19830 2003-06-11  Bruno Haible  <bruno@clisp.org>
19831
19832         * m4/sysexits.m4: New file.
19833
19834 2003-06-10  Simon Josefsson  <jas@extundo.com>
19835
19836         * lib/argp.h: New file, from glibc.
19837         * lib/argp-ba.c: New file, from glibc.
19838         * lib/argp-eexst.c: New file, from glibc.
19839         * lib/argp-fmtstream.c: New file, from glibc.
19840         * lib/argp-fmtstream.h: New file, from glibc.
19841         * lib/argp-fs-xinl.c: New file, from glibc.
19842         * lib/argp-help.c: New file, from glibc.
19843         * lib/argp-namefrob.h: New file, from glibc.
19844         * lib/argp-parse.c: New file, from glibc.
19845         * lib/argp-pv.c: New file, from glibc.
19846         * lib/argp-pvh.c: New file, from glibc.
19847         * lib/argp-xinl.c: New file, from glibc.
19848
19849 2003-06-10  Simon Josefsson  <jas@extundo.com>
19850
19851         * modules/strchrnul: New file.
19852
19853 2003-06-10  Simon Josefsson  <jas@extundo.com>
19854
19855         * modules/argp: New file.
19856
19857 2003-06-10  Simon Josefsson  <jas@extundo.com>
19858
19859         * m4/strchrnul.m4: New file.
19860
19861 2003-06-10  Simon Josefsson  <jas@extundo.com>
19862
19863         * lib/strchrnul.h: New file.
19864         * lib/strchrnul.c: New file.
19865
19866 2003-06-10  Bruno Haible  <bruno@clisp.org>
19867
19868         * MODULES.html.sh (func_all_modules): Add strchrnul and argp.
19869
19870 2003-06-07  Karl Berry  <karl@gnu.org>
19871
19872         * config/config.{guess,sub}: update from prep.
19873
19874 2003-06-07  Jim Meyering  <jim@meyering.net>
19875
19876         * modules/strtod: Use $(...) notation, not @...@ for
19877         AC_REPLACE'd variables.
19878         * modules/localcharset: Likewise.
19879
19880 2003-06-07  Jim Meyering  <jim@meyering.net>
19881
19882         * lib/readtokens.h: Put `Free Software Foundation, Inc.'
19883         in place of my name in the copyright comment.
19884         Remove definition and uses of __P.
19885
19886         From coreutils.
19887         * lib/stat.c: Don't declare xmalloc explicitly.
19888         Instead, include "xalloc.h".
19889         * lib/readtokens.c (readtokens): Remove anachronistic casts of xmalloc,
19890         xrealloc, and xcalloc return values.
19891         * lib/xgetcwd.c (xgetcwd): Include "xgetcwd.h".
19892         Improve comment.
19893         * lib/xgetcwd.h: Remove definition/uses of PARAMS.
19894
19895 2003-06-07  Bruno Haible  <bruno@clisp.org>
19896
19897         * modules/poll (Makefile.am): Use explicit creation rule for poll.h, to
19898         avoid AC_CONFIG_LINKS.
19899         * modules/fnmatch (Makefile.am): Use explicit creation rule for
19900         fnmatch.h, to avoid AC_CONFIG_LINKS.
19901         * modules/alloca (Makefile.am): Make creation of alloca.h Ctrl-C safe.
19902
19903 2003-06-07  Bruno Haible  <bruno@clisp.org>
19904
19905         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH, gl_FUNC_FNMATCH_POSIX,
19906         gl_FUNC_FNMATCH_GNU): Set FNMATCH_H instead of invoking
19907         AC_CONFIG_LINKS. Needed to allow for a different name of the lib
19908         directory.
19909         * m4/poll.m4 (gl_FUNC_POLL): Set POLL_H instead of invoking
19910         AC_CONFIG_LINKS. Needed to allow for a different name of the lib
19911         directory.
19912
19913 2003-06-06  Jim Meyering  <jim@meyering.net>
19914
19915         Merge from coreutils.
19916         * lib/same.c: (same_name): Declare *_basename locals to be `const'.
19917         Consolidate declarations and initializations of *_base* locals.
19918
19919         Merge from coreutils.
19920         This avoids a core dump on systems without GNU putenv,
19921         when running `env -u SOME_ALREADY_UNSET_VARIABLE'.
19922         * lib/putenv.c (__set_errno, LOCK, UNLOCK): Define.
19923         (unsetenv): New static function, from GNU libc.
19924         (rpl_putenv): Use it.
19925
19926         * lib/modechange.c: Remove trailing blanks.
19927
19928         Merge from coreutils.
19929         * lib/fsusage.c: Remove declaration of statfs.
19930         It conflicted with one from OSF/1 5.1 in <sys/mount.h>.
19931
19932         * lib/posixtm.c: Include <stdbool.h> unconditionally.
19933
19934 2003-06-06  Jim Meyering  <jim@meyering.net>
19935
19936         * lib/stdbool_.h: Renamed from stdbool.h.in.
19937
19938 2003-06-06  Jim Meyering  <jim@meyering.net>
19939             Bruno Haible  <bruno@clisp.org>
19940
19941         * modules/stdbool: Reflect renaming: stdbool.h.in -> stdbool_.h.
19942         Adjust Makefile.am snippet not to redirect directly to target.
19943         Use $(STDBOOL_H) notation, not @STDBOOL_H@ for AC_REPLACE'd variables.
19944
19945 2003-06-05  Paul Eggert  <eggert@twinsun.com>
19946
19947         * lib/mktime.c (__mktime_internal): When resolving a tm_isdst
19948         mismatch, look in future quarters as well as past.  This fixes a
19949         bug when processing fall-backwards gaps immediately after a long
19950         period of daylight-saving time.
19951
19952         * lib/mktime.c: Assume freestanding C89 or better.
19953         (HAVE_LIMITS_H): Remove.  Assume it's 1.
19954         (__P): Remove; not used.
19955         (CHAR_BIT, INT_MIN, INT_MAX): Remove; <limits.h> defines them.
19956         (mktime, not_equal_tm, print_tm, check_result,
19957         main): Use prototypes.  Use const * where appropriate.
19958         (main): Fix typo in testing code that uncovered by above changes.
19959         (Local Variables): Remove -DHAVE_LIMITS_H from compile-command.
19960
19961 2003-06-04  Paul Eggert  <eggert@twinsun.com>
19962
19963         * m4/human.m4 (gl_HUMAN): Require AM_STDBOOL_H.  Check for
19964         locale.h, localeconv.  This merges changes from coreutils.
19965
19966         * m4/mktime.m4 (AC_FUNC_MKTIME): New macro, taken from Autoconf CVS.
19967         It can be removed after the next Autoconf is released.
19968         * m4/exclude.m4 (gl_EXCLUDE): Don't check for sys/types.h; no loner
19969         needed.
19970
19971 2003-06-04  Paul Eggert  <eggert@twinsun.com>
19972
19973         * lib/mktime.c: Fix Debian bug 177940
19974         <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=177940>.
19975         (localtime_offset): Now long int, not time_t, because we want it
19976         to be guaranteed to be signed.  All uses changed.
19977         (__mktime_internal): If overflow would occur when adding offset,
19978         don't add it.
19979
19980         Merge 'human' changes from coreutils.  Rewrite to support
19981         locale-specific notations like thousands separators.
19982         * lib/human.c: Simplify authorship notice.
19983         Include human.h immediately after config.h.
19984         <sys/types.h>, <stdio.h>: Do not include; no longer needed.
19985         <limits.h>: Do not include, since human.h does.
19986         (SIZE_MAX, UINTMAX_MAX): New macros.
19987         <strings.h>: Include if HAVE_STRINGS_H, not if !HAVE_STRING_H.
19988         <locale.h>: Include if HAVE_LOCALE_H and HAVE_LOCALECONV.
19989         (HUMAN_READABLE_SUFFIX_LENGTH_MAX): New macro.
19990         (power_letter): Renamed from suffixes.
19991         (generate_suffix_backwards): Remove.
19992         (adjust_value): Now takes int style (because of human.h changes)
19993         and long double value (for greater precision on some platforms).
19994         (group_number): New function.
19995         (human_readable): Use it.  Use integer options, not enum.
19996         Put the options before the sizes in the arg list.
19997         Support all the new options.
19998         The old human_readable function has been removed;
19999         use inttostr.h instead.
20000         (human_readable, default_block_size, humblock):
20001         Use uintmax_t, not int, for block sizes.
20002         (human_readable_inexact, block_size_types): Remove.
20003         (block_size_opts): New constant.
20004         (human_options): Renamed from human_block_size, with new signature
20005         that allows block sizes up to UINTMAX_MAX.  All callers changed.
20006         * lib/human.h: Add copyright and authorship notice.
20007         Include <limits.h> and <stdbool.h> unconditionally.
20008         (PARAMS): Remove.  All uses removed.
20009         (LONGEST_HUMAN_READABLE): Add support for thousands separator.
20010         (enum human_inexact_style): Remove tag; now a nameless enum.
20011         (human_floor, human_ceiling, human_round_to_even): Now have
20012         values 2, 0, 1 rather than -1, 1, 0.
20013         (human_group_digits, human_suppress_point_zero, human_autoscale,
20014         human_base_1024, human_SI, human_B): New constants.
20015         (human_readable_inexact, human_block_size): Remove.
20016         (human_readable): Size args are now uintmax_t, not int.
20017         (human_options): New decl.
20018
20019         * lib/exclude.c: (new_exclude, add_exclude): Remove casts that are
20020         unnecessary now that we assume C89 or better.  This change
20021         imported from coreutils.
20022
20023         * lib/mktime.c (__mktime_internal): Do not reject negative timestamps
20024         arbitrarily.  This is the same patch as 2003-05-28, but it got lost
20025         in the 2003-05-30 sync from glibc.
20026
20027         .h files should stand alone, but we shouldn't include <sys/types.h>
20028         if we can get away with just <stddef.h>.
20029
20030         * lib/__fpending.h, addext.c, backupfile.c, exclude.c, getline.c,
20031         malloc.c, putenv.c, realloc.c, strcasecmp.c: Include <stddef.h>
20032         rather than <sys/types.h>, as we merely need size_t.
20033         * lib/dirname.h, memcoll.h, xalloc.h, xmemcoll.h: Include <stddef.h>,
20034         to get size_t.
20035         * lib/hash.h, linebuffer.h, readtokens.h, stdio-safer.h, version-etc.h:
20036         Include <stdio.h>, to get FILE.
20037         * lib/memcasecmp.c: Don't include <sys/types.h>, as we can assume
20038         memcasecmp.h has included <stddef.h> and all we need is size_t.
20039         * lib/memcoll.c: Include "memcoll.h", which gets us size_t and checks
20040         our interface, instead of including <sys/types.h>
20041
20042 2003-06-04  Paul Eggert  <eggert@twinsun.com>
20043
20044         * config/srclist.txt ($LIBCSRC/time/mktime.c lib gpl): Comment out for
20045         now, as glibc mktime is buggy on non-glibc systems.
20046
20047 2003-06-03  Karl Berry  <karl@gnu.org>
20048
20049         * config/config.sub: update from prep.
20050
20051 2003-06-02  Paul Eggert  <eggert@twinsun.com>
20052
20053         [from coreutils]
20054         Fix some minor time-related bugs with POSIX time arguments.
20055         Some valid time stamps were being rejected (notably -1, and
20056         time stamps before 1900 on 64-bit hosts).  And some invalid
20057         time stamps were being accepted, e.g. September 31.
20058
20059         * lib/posixtm.h (posixtime): Return bool instead of time_t, so
20060         that we can return (time_t) -1 successfully.
20061         * lib/posixtm.c: Likewise.
20062         [HAVE_STDBOOL_H]: Include <stdbool.h>.
20063         (bool, false, true) [!HAVE_STDBOOL_H]: New type.
20064         (t): Remove static var.
20065         (year, posix_time_parse): Now takes struct tm * arg to modify, instead
20066         of static var.  All uses changed.
20067         (year): Do not reject years before 1900; they can occur with
20068         64-bit time_t.
20069         (posix_time_parse): Do not check for out-of-range components;
20070         that is now the caller's responsibility, since our checks were
20071         only approximations.
20072         (posixtime): Use mktime to check for out-of-range components,
20073         since it knows them exactly.
20074         If mktime returns (time_t) -1, check whether an error actually occurred
20075         by invoking localtime on -1.
20076         (main) [TEST_POSIXTIME]: Check for input data errors, and report
20077         posixtime failures better.
20078         Improve the test data (in comments only).
20079
20080 2003-06-02  Karl Berry  <karl@gnu.org>
20081
20082         * config/mkinstalldirs (version): new variable.
20083         (--version): new option.
20084         (usage): improve message.
20085
20086 2003-05-30  Karl Berry  <karl@gnu.org>
20087
20088         * lib/mktime.c: update from libc.
20089
20090 2003-05-30  Bruno Haible  <bruno@clisp.org>
20091
20092         * modules/gettext: Add files m4/nls.m4 and m4/po.m4.
20093         * config/config.rpath: Upgrade to gettext-0.12.1.
20094
20095 2003-05-30  Bruno Haible  <bruno@clisp.org>
20096
20097         * m4/gettext.m4: Upgrade to gettext-0.12.1.
20098         * m4/nls.m4: New file, from gettext-0.12.1.
20099         * m4/po.m4: New file, from gettext-0.12.1.
20100         * m4/progtest.m4: Upgrade to gettext-0.12.1.
20101
20102 2003-05-30  Bruno Haible  <bruno@clisp.org>
20103
20104         * lib/config.charset: Upgrade to gettext-0.12.1 and libiconv-1.9.1.
20105         * lib/localcharset.h: Likewise.
20106         * lib/localcharset.c: Likewise.
20107
20108 2003-05-29  Karl Berry  <karl@gnu.org>
20109
20110         * config/config.rpath: update from gettext.
20111
20112 2003-05-28  Paul Eggert  <eggert@twinsun.com>
20113
20114         Assume the headers required for C89 freestanding compilers.
20115         * m4/backupfile.m4 (gl_BACKUPFILE): Don't check for limits.h.
20116         * m4/fsusage.m4 (gl_PREREQ_FSUSAGE_EXTRA): Likewise.
20117         * m4/human.m4 (gl_HUMAN): Likewise.
20118         * m4/pathmax.m4 (gl_PATHMAX): Likewise.
20119         * m4/rpmatch.m4 (gl_FUNC_RPMATCH): Likewise.
20120         * m4/userspec.m4 (gl_USERSPEC): Likewise.
20121         * m4/xreadlink.m4 (gl_XREADLINK): Likewise.
20122         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
20123         * m4/quote.m4 (gl_QUOTE): Don't check for stddef.h.
20124
20125 2003-05-28  Paul Eggert  <eggert@twinsun.com>
20126
20127         Assume the headers required for C89 freestanding compilers.
20128         * lib/addext.c, lib/backupfile.c, lib/fsusage.c, lib/human.c,
20129         lib/pathmax.h, lib/rpmatch.c, lib/userspec.c, lib/xreadlink.c,
20130         lib/xstrtol.c: Include <limits.h> without checking for HAVE_LIMITS_H.
20131         * lib/backupfile.c, lib/fsusage.c, lib/hash.c, lib/human.c,
20132         lib/safe-read.c, lib/userspec.c, lib/xstrtol.c (CHAR_BIT): Don't
20133         define, since <limits.h> is guaranteed to do that.
20134         * lib/fatal.c: Include <stdarg.h> without checking for __STDC__.
20135         * lib/exclude.c: Include <stdbool.h> unconditionally.
20136         * lib/tempname.c: Include <stddef.h> unconditionally.
20137         * lib/hash.c: Include <limits.h>, since we no longer define CHAR_BIT.
20138         * lib/modechange.c, rpmatch.c (NULL): Don't define, since
20139         <stddef.h> does that.
20140         * lib/quote.c: Dont include <stddef.h> or <sys/types.h>; not needed.
20141         * lib/safe-read.c (INT_MAX): Don't define, since <limits.h> does that.
20142         * lib/safe-read.c (TYPE_MINIMUM, TYPE_MAXIMUM): Remove; no longer
20143         needed.
20144         * lib/xstrtol.c: Likewise.
20145         * lib/safe-read.c: Remove TYPE_SIGNED; no longer needed.
20146         * lib/savedir.c: Include <stddef.h> instead of defining NULL.
20147
20148         * lib/addext.c (addext): Use assignment rather than cast, to avoid
20149         warnings on some platforms.
20150
20151         * lib/mktime.c (__mktime_internal): Do not reject negative timestamps
20152         arbitrarily.
20153
20154 2003-05-26  Jim Meyering  <jim@meyering.net>
20155
20156         Merge in a change from coreutils:
20157         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Test the cache variable, not one
20158         that is guaranteed to be `no'.  Use `no_such_member' to indicate
20159         that condition, rather than `-1' which is slightly misleading.
20160         Change the name of the cache variable to have the gl_ prefix.
20161         Prompted by a patch from Richard Dawe for DJGPP.
20162
20163 2003-05-24  Karl Berry  <karl@gnu.org>
20164
20165         * config/config.guess: update from prep.
20166
20167 2003-05-22  Karl Berry  <karl@gnu.org>
20168
20169         * gnulib-tool (func_usage): =LIBRARY not =libRARY in help msg.
20170
20171 2003-05-20  Karl Berry  <karl@gnu.org>
20172
20173         * config/config.guess: update from prep.
20174
20175 2003-05-18  Karl Berry  <karl@gnu.org>
20176
20177         * config/srclistvars.sh (TEXMF): use TEXMFROOT instead, since TEXMF
20178         might actually be set by the user.
20179
20180         * config/depcomp, install-sh, mdate-sh: update from automake.
20181
20182 2003-05-17  Bruno Haible  <bruno@clisp.org>
20183
20184         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Fix a quoting bug leading to an
20185         invalid expansion for AC_EGREP_CPP.
20186         * m4/strtoimax.m4 (gl_FUNC_STRTOIMAX): Likewise.
20187         * m4/strtoumax.m4 (gl_FUNC_STRTOUMAX): Likewise.
20188         Suggested by Akim Demaille <akim@epita.fr> in
20189         http://mail.gnu.org/archive/html/bug-autoconf/2003-05/threads.html
20190
20191 2003-05-12  Jim Meyering  <jim@meyering.net>
20192
20193         * lib/strftime.c (my_strftime): Let the `-' (no-pad) flag affect
20194         the space-padded-by-default conversion specifiers, %e, %k, %l.
20195
20196 2003-05-12  Bruno Haible  <bruno@clisp.org>
20197
20198         * lib/linebreak.c (iconv_string_length): Don't return -1 just because
20199         the string is longer than 4 KB.
20200
20201 2003-05-11  Karl Berry  <karl@gnu.org>
20202
20203         * config/config.{guess,sub}: update from prep.
20204
20205 2003-05-09  Bruno Haible  <bruno@clisp.org>
20206
20207         * modules/error: Add m4/strerror_r.m4 to file list.
20208
20209 2003-05-03  Bruno Haible  <bruno@clisp.org>
20210
20211         Upgrade to Unicode-4.0.
20212         * lib/linebreak.c (nonspacing_table_data): Change width of U+00AD,
20213         U+0350..U+0357, U+035D..U+035F, U+0600..U+0603, U+0610..U+0615,
20214         U+0656..U+0658, U+0A01, U+0AE2..U+0AE3, U+0CBC, U+17B4..U+17B5,
20215         U+17DD, U+1920..U+1922, U+1927..U+192B, U+1932, U+1939..U+193B
20216         from 1 to 0. Change width of U+0CBF, U+0CC6, U+180E from 0 to 1.
20217         (uc_width): Change width of U+4DC0..U+4DFF from 2 to 1. Change width
20218         of U+2A6D7..U+2F7FF, U+2FA1E..U+2FFFD, U+30000..U+3FFFD from 1 to 2.
20219         Change width of U+E0100..U+E01EF from 1 to 0.
20220
20221 2003-04-25  Jim Meyering  <jim@meyering.net>
20222
20223         * lib/copy-file.c (copy_file_preserving): Declare buf_size to be
20224         of type size_t, not int.
20225
20226 2003-04-25  Bruno Haible  <bruno@clisp.org>
20227
20228         * lib/copy-file.c: Include <stddef.h>, for size_t.
20229
20230 2003-04-21  Paul Eggert  <eggert@twinsun.com>
20231
20232         * m4/error.m4 (gl_ERROR): Do not put under dynamic conditions some
20233         code which expansion is under static control.  Patch imported from
20234         Akim Demaille's patch to Bison; see
20235         <http://mail.gnu.org/archive/html/bison-patches/2003-03/msg00057.html>.
20236
20237 2003-04-14  Bruno Haible  <bruno@clisp.org>
20238
20239         * m4/error.m4 (jm_PREREQ_ERROR): Use AC_FUNC_VPRINTF.
20240
20241 2003-04-11  Jim Meyering  <jim@meyering.net>
20242
20243         Merge changes from Coreutils.
20244
20245         2003-03-22  Jim Meyering  <jim@meyering.net>
20246
20247         * lib/strftime.c (widen): Cast alloca return value to proper type.
20248
20249         2003-01-19  Ulrich Drepper  <drepper@redhat.com>
20250
20251         From GNU libc.
20252         * lib/strftime.c (my_strftime): Handle very large width
20253         specifications for numeric values correctly.  Improve checks for
20254         overflow.
20255
20256         2003-01-19  Jim Meyering  <jim@meyering.net>
20257
20258         * lib/strftime.c (widen) [COMPILE_WIDE]: Merge nearly-identical
20259         definitions.
20260         (nl_get_alt_digit) [! defined my_strftime]: Define.
20261         (my_strftime) [_NL_CURRENT]: Merge nearly-identical uses of
20262         _nl_get_alt_digit and _nl_get_walt_digit.
20263
20264         * lib/strftime.c (my_strftime): Merge in locale-related changes from
20265         libc. These changes have no effect outside of _LIBC.
20266
20267 2003-04-10  Bruno Haible  <bruno@clisp.org>
20268
20269         * modules/findprog: New file.
20270         * MODULES.html.sh (func_all_modules): Add it.
20271
20272 2003-04-10  Bruno Haible  <bruno@clisp.org>
20273
20274         * m4/findprog.m4: New file.
20275         * m4/eaccess.m4: New file.
20276
20277 2003-04-10  Bruno Haible  <bruno@clisp.org>
20278
20279         * lib/findprog.h: New file, from GNU gettext.
20280         * lib/findprog.c: New file, from GNU gettext.
20281
20282 2003-04-05  Jim Meyering  <jim@meyering.net>
20283
20284         Merge changes from Coreutils.
20285
20286         * lib/exclude.h (PARAMS): Remove definition and uses.
20287         * lib/exclude.c: Remove uses of `PARAMS'.
20288
20289         * lib/dirname.c [TEST_DIRNAME]: Update build instructions for test.
20290         Add test-cases for DOS filenames. Declare program_name.
20291         (main): Set up program_name.  Patch by Rich Dawe.
20292
20293         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Detect any
20294         error from mntctl.
20295         Use mntctl's return value to drive the entry-processing loop, since
20296         we can't rely on the value of the vmt_length member in the last
20297         entry.  On some systems doing so could result in exhausting
20298         virtual memory.  Based in part on a patch from Mike Jetzer.
20299
20300 2003-04-04  Bruno Haible  <bruno@clisp.org>
20301
20302         * modules/linebreak: New file.
20303         * MODULES.html.sh (func_all_modules): Add it.
20304
20305 2003-04-04  Bruno Haible  <bruno@clisp.org>
20306
20307         * m4/linebreak.m4: New file.
20308
20309 2003-04-04  Bruno Haible  <bruno@clisp.org>
20310
20311         * lib/linebreak.h: New file, from GNU gettext.
20312         * lib/linebreak.c: New file, from GNU gettext with slight
20313         modifications.
20314         * lib/lbrkprop.h: New file, from GNU gettext.
20315
20316 2003-04-03  Bruno Haible  <bruno@clisp.org>
20317
20318         * modules/utf8-ucs4: New file.
20319         * modules/utf16-ucs4: New file.
20320         * modules/ucs4-utf8: New file.
20321         * modules/ucs4-utf16: New file.
20322         * MODULES.html.sh (func_all_modules): Add them.
20323
20324 2003-04-03  Bruno Haible  <bruno@clisp.org>
20325
20326         * m4/utf-ucs4.m4: New file.
20327         * m4/ucs4-utf.m4: New file.
20328
20329 2003-04-03  Bruno Haible  <bruno@clisp.org>
20330
20331         * lib/utf8-ucs4.h: New file, from GNU gettext.
20332         * lib/utf16-ucs4.h: New file, from GNU gettext.
20333         * lib/ucs4-utf8.h: New file, from GNU gettext.
20334         * lib/ucs4-utf16.h: New file, from GNU gettext.
20335
20336 2003-04-02  Bruno Haible  <bruno@clisp.org>
20337
20338         * modules/binary-io: New file.
20339         * MODULES.html.sh (func_all_modules): Add it.
20340
20341 2003-04-02  Bruno Haible  <bruno@clisp.org>
20342
20343         * lib/binary-io.h: New file, from GNU gettext.
20344
20345 2003-04-01  Bruno Haible  <bruno@clisp.org>
20346
20347         * modules/pathname: New file.
20348         * MODULES.html.sh (func_all_modules): Add it.
20349
20350 2003-04-01  Bruno Haible  <bruno@clisp.org>
20351
20352         * lib/pathname.h: New file, from GNU gettext.
20353         * lib/concatpath.c: New file, from GNU gettext.
20354
20355 2003-03-30  Bruno Haible  <bruno@clisp.org>
20356
20357         * m4/copy-file.m4 (gl_COPY_FILE): Add check for chown().
20358
20359 2003-03-30  Bruno Haible  <bruno@clisp.org>
20360
20361         * lib/copy-file.c (copy_file_preserving): Don't set owner if the
20362         function chown() doesn't exist.
20363
20364 2003-03-28  Bruno Haible  <bruno@clisp.org>
20365
20366         * modules/copy-file: New file.
20367         * MODULES.html.sh (func_all_modules): Add it.
20368
20369 2003-03-28  Bruno Haible  <bruno@clisp.org>
20370
20371         * m4/copy-file.m4: New file.
20372
20373 2003-03-28  Bruno Haible  <bruno@clisp.org>
20374
20375         * lib/copy-file.h: New file, from GNU gettext.
20376         * lib/copy-file.c: New file, from GNU gettext.
20377
20378 2003-03-18  Jim Meyering  <jim@meyering.net>
20379
20380         * lib/quote.c (quote_n): Fix typo in comment.
20381
20382 2003-03-18  Bruno Haible  <bruno@clisp.org>
20383
20384         * m4/onceonly.m4: Use m4_defn instead of defn, for better error
20385         checking.
20386         * m4/onceonly_2_57.m4: Likewise.
20387
20388 2003-03-17  Bruno Haible  <bruno@clisp.org>
20389
20390         * m4/onceonly.m4: Require autoconf 2.54 or newer.
20391         (m4_quote): Remove macro.
20392         * m4/onceonly_2_57.m4: Require autoconf 2.54 or newer.
20393
20394 2003-03-14  Jim Meyering  <jim@meyering.net>
20395
20396         Merge changes from Coreutils.
20397         * lib/obstack.h (obstack_object_size): Declare temporary, __o,
20398         to be const, in order to avoid warnings.
20399         (obstack_room): Likewise.
20400         (obstack_empty_p): Likewise.
20401
20402 2003-03-14  Bruno Haible  <bruno@clisp.org>
20403
20404         * m4/onceonly_2_57.m4 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE,
20405         AC_CHECK_DECLS_ONCE): Quote AC_FOREACH variable-expansions properly.
20406
20407 2003-03-13  Paul Eggert  <eggert@twinsun.com>
20408
20409         Merge changes from Bison.
20410         * lib/obstack.h: (__INT_TO_PTR) [__STDC__]: Cast result to
20411         (void *) to avoid diagnostic with native c89 on SGI IRIX 6.5
20412         when compiling Bison 1.875's `bitset bset = obstack_alloc
20413         (bobstack, bytes);'.  Problem reported by Nelson H. F. Beebe.
20414         * lib/hash.c: Include <stdbool.h> unconditionally.
20415
20416 2003-03-13  Paul Eggert  <eggert@twinsun.com>
20417
20418         * m4/onceonly.m4 (m4_quote): New macro.
20419         (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE, AC_CHECK_DECLS_ONCE):
20420         Quote AC_FOREACH variable-expansions properly.
20421
20422 2003-03-13  Paul Eggert  <eggert@twinsun.com>
20423
20424         * doc/COPYING.DOC, fdl.texi: Sync with latest FSF version.
20425
20426 2003-03-09  Paul Eggert  <eggert@twinsun.com>
20427
20428         * lib/argmatch.c (EXIT_FAILURE): Define if the system doesn't.
20429         Reported by Bruce Becker; see:
20430         http://mail.gnu.org/archive/html/bug-bison/2003-03/msg00017.html
20431
20432 2003-03-03  Paul Eggert  <eggert@twinsun.com>
20433             Bruno Haible  <bruno@clisp.org>
20434
20435         * lib/mbswidth.h: Include <wchar.h>. Needed for UnixWare 7.1.1.
20436         Reported by John Hughes, see
20437         http://mail.gnu.org/archive/html/bug-bison/2003-02/msg00030.html
20438
20439 2003-02-20  Bruno Haible  <bruno@clisp.org>
20440
20441         * MODULES.html.sh (func_all_modules): Add poll.
20442
20443 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
20444
20445         * modules/poll: New file.
20446
20447 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
20448
20449         * lib/poll_.h: New file.
20450         * lib/poll.c: New file.
20451
20452 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
20453
20454         * m4/poll.m4: New file.
20455
20456 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
20457
20458         * modules/mathl: New file.
20459
20460 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
20461
20462         * lib/mathl.h: New file.
20463         * lib/acosl.c: New file.
20464         * lib/asinl.c: New file.
20465         * lib/atanl.c: New file.
20466         * lib/ceill.c: New file.
20467         * lib/cosl.c: New file.
20468         * lib/expl.c: New file.
20469         * lib/floorl.c: New file.
20470         * lib/frexpl.c: New file.
20471         * lib/ldexpl.c: New file.
20472         * lib/logl.c: New file.
20473         * lib/sincosl.c: New file.
20474         * lib/sinl.c: New file.
20475         * lib/sqrtl.c: New file.
20476         * lib/tanl.c: New file.
20477         * lib/trigl.c: New file.
20478         * lib/trigl.h: New file.
20479
20480 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
20481
20482         * m4/mathl.m4: New file.
20483
20484 2003-02-18  Bruno Haible  <bruno@clisp.org>
20485
20486         * MODULES.html.sh (func_all_modules): Add mathl.
20487
20488 2003-02-17  Bruno Haible  <bruno@clisp.org>
20489
20490         * modules/mkdtemp: New module.
20491         * MODULES.html.sh (func_all_modules): Add it.
20492
20493 2003-02-17  Bruno Haible  <bruno@clisp.org>
20494
20495         * m4/mkdtemp.m4: New file, from GNU gettext with modifications.
20496
20497 2003-02-17  Bruno Haible  <bruno@clisp.org>
20498
20499         * lib/mkdtemp.h: New file, from GNU gettext.
20500         * lib/mkdtemp.c: New file, from GNU gettext.
20501
20502 2003-02-02  Jim Meyering  <jim@meyering.net>
20503
20504         * m4/regex.m4 (jm_INCLUDED_REGEX): Detect broken re_search in
20505         e.g. glibc-2.2.93.
20506
20507 2003-01-31  Bruno Haible  <bruno@clisp.org>
20508
20509         * m4/rename.m4 (vb_FUNC_RENAME): Add a redirection from 'rename' to
20510         'rpl_rename'.
20511         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Add a redirection from 'strnlen' to
20512         'rpl_strnlen'.
20513         * m4/strtod.m4 (gl_FUNC_STRTOD): Add a redirection from 'strtod' to
20514         'rpl_strtod'.
20515         * m4/utime.m4 (jm_FUNC_UTIME): Add a redirection from 'utime' to
20516         'rpl_utime'.
20517
20518 2003-01-31  Bruno Haible  <bruno@clisp.org>
20519
20520         * lib/rename.c: #undef rename before defining rpl_rename.
20521         * lib/strnlen.c: #undef strnlen, define rpl_strnlen instead of strnlen.
20522
20523 2003-01-30  Bruno Haible  <bruno@clisp.org>
20524
20525         * modules/vasnprintf, modules/vasprintf: New modules.
20526         * MODULES.html.sh (func_all_modules): Add them.
20527
20528 2003-01-30  Bruno Haible  <bruno@clisp.org>
20529
20530         * m4/signed.m4: New file, from GNU gettext.
20531         * m4/longdouble.m4: New file, from GNU gettext.
20532         * m4/wchar_t.m4: New file, from GNU gettext.
20533         * m4/wint_t.m4: New file, from GNU gettext.
20534         * m4/vasnprintf.m4: New file.
20535         * m4/vasprintf.m4: New file.
20536
20537 2003-01-30  Bruno Haible  <bruno@clisp.org>
20538
20539         * lib/printf-args.h: New file, from GNU gettext.
20540         * lib/printf-args.c: New file, from GNU gettext.
20541         * lib/printf-parse.h: New file, from GNU gettext.
20542         * lib/printf-parse.c: New file, from GNU gettext.
20543         * lib/vasnprintf.h: New file, from GNU gettext.
20544         * lib/vasnprintf.c: New file, from GNU gettext.
20545         * lib/asnprintf.c: New file, from GNU gettext.
20546         * lib/vasprintf.h: New file, from GNU gettext with modifications.
20547         * lib/vasprintf.c: New file, from GNU gettext.
20548         * lib/asprintf.c: New file, from GNU gettext.
20549
20550 2003-01-29  Bruno Haible  <bruno@clisp.org>
20551
20552         * modules/stpncpy: New module.
20553         * MODULES.html.sh (func_all_modules): Add it.
20554
20555 2003-01-29  Bruno Haible  <bruno@clisp.org>
20556
20557         * m4/stpncpy.m4: New file.
20558
20559 2003-01-29  Bruno Haible  <bruno@clisp.org>
20560
20561         * lib/stpncpy.h: New file, from GNU gettext with modifications.
20562         * lib/stpncpy.c: New file, from GNU gettext with modifications.
20563
20564 2003-01-28  Bruno Haible  <bruno@clisp.org>
20565
20566         * modules/c-ctype: New module.
20567         * MODULES.html.sh (func_all_modules): Add it.
20568
20569 2003-01-28  Bruno Haible  <bruno@clisp.org>
20570
20571         * lib/c-ctype.h: New file, from GNU gettext, with changes suggested by
20572         Paul Eggert.
20573         * lib/c-ctype.c: New file, from GNU gettext, with changes suggested by
20574         Paul Eggert.
20575
20576 2003-01-27  Bruno Haible  <bruno@clisp.org>
20577
20578         * modules/xsetenv: New module.
20579         * MODULES.html.sh (func_all_modules): Add it.
20580
20581 2003-01-27  Bruno Haible  <bruno@clisp.org>
20582
20583         * lib/xsetenv.h: New file, from GNU gettext.
20584         * lib/xsetenv.c: New file, from GNU gettext.
20585
20586 2003-01-23  Jim Meyering  <jim@meyering.net>
20587
20588         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Correct typo: s/-1/no/ that kept this
20589         from working on systems without dirfd (at least Irix and OSF1/Tru64).
20590
20591 2003-01-23  Bruno Haible  <bruno@clisp.org>
20592
20593         * modules/minmax: New module.
20594         * MODULES.html.sh (func_all_modules): Add it.
20595
20596 2003-01-23  Bruno Haible  <bruno@clisp.org>
20597
20598         * lib/minmax.h: New file, from GNU gettext, with comments from Paul
20599         Eggert.
20600
20601 2003-01-22  Bruno Haible  <bruno@clisp.org>
20602
20603         * modules/exit: New module.
20604         * MODULES.html.sh (func_all_modules): Add it.
20605
20606 2003-01-22  Bruno Haible  <bruno@clisp.org>
20607
20608         * lib/exit.h: New file, from GNU gettext.
20609
20610 2003-01-19  Bruno Haible  <bruno@clisp.org>
20611
20612         * gnulib-tool: Recognize option --extract-maintainer.
20613         (func_get_maintainer): New function.
20614         * modules/*: Add Maintainer entry.
20615
20616 2003-01-16  Jim Meyering  <jim@meyering.net>
20617
20618         * m4/regex.m4: The `regex' struct is both input and output.
20619         Initialize it before each use.  Patch by Tim Waugh.
20620
20621 2003-01-16  Bruno Haible  <bruno@clisp.org>
20622
20623         * MODULES.html.sh: Add a table of contents. Add the module name as
20624         leftmost column. Add hyperlinks.
20625
20626 2003-01-15  Bruno Haible  <bruno@clisp.org>
20627
20628         * m4/md5.m4 (gl_MD5): Require AC_C_INLINE.
20629
20630 2003-01-15  Bruno Haible  <bruno@clisp.org>
20631
20632         * m4/longlong.m4 (jm_AC_TYPE_LONG_LONG): Also test the LL suffix.
20633         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Also test the ULL
20634         suffix.
20635
20636 2003-01-15  Bruno Haible  <bruno@clisp.org>
20637
20638         * m4/alloca.m4 (gl_FUNC_ALLOCA): Invoke AC_EGREP_CPP prerequisites.
20639
20640 2003-01-15  Bruno Haible  <bruno@clisp.org>
20641
20642         * lib/stpcpy.h (stpcpy): Use ANSI C function declarations.
20643         * lib/strcase.h (strcasecmp, strncasecmp): Likewise.
20644
20645 2003-01-14  Jim Meyering  <jim@meyering.net>
20646
20647         * lib/same.c (same_name): Tweak a comment.
20648
20649 2003-01-14  Bruno Haible  <bruno@clisp.org>
20650
20651         * lib/same.c (same_name): Reorder tests so as to avoid calling stat()
20652         when a string comparison is sufficient.
20653
20654 2003-01-14  Bruno Haible  <bruno@clisp.org>
20655
20656         * lib/readtokens.c (readtoken): Cast character to 'unsigned char', not
20657         'unsigned int'.
20658
20659 2003-01-14  Bruno Haible  <bruno@clisp.org>
20660
20661         * lib/hash-pjw.c: Add comment about low quality of this function.
20662
20663 2003-01-13  Bruno Haible  <bruno@clisp.org>
20664
20665         * modules/stpcpy: Distribute lib/stpcpy.h.
20666         * modules/setenv: Depend on alloca. Distribute lib/setenv.h.
20667
20668 2003-01-13  Bruno Haible  <bruno@clisp.org>
20669
20670         * modules/*: Add a description.
20671         * modules/strpbrk: Fix Makefile.am snippet.
20672         * modules/strtoimax: Fix dependencies.
20673         * modules/strtoumax: Likewise.
20674
20675 2003-01-13  Bruno Haible  <bruno@clisp.org>
20676
20677         * gnulib-tool (func_create_testdir): Substitute lib_OBJECTS.
20678         * modules/alloca (Makefile.am): All object files depend on alloca.h.
20679         * modules/stdbool (Makefile.am): All object files depend on stdbool.h.
20680
20681 2003-01-13  Bruno Haible  <bruno@clisp.org>
20682
20683         * gnulib-tool (func_create_testdir): Store config/* files in the main
20684         directory.
20685         * config.rpath: Move to ...
20686         * config/config.rpath: ... here.
20687         * modules/gettext: Contains config/config.rpath, not config.rpath.
20688         * modules/iconv: Likewise.
20689
20690 2003-01-12  Paul Eggert  <eggert@twinsun.com>
20691
20692         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
20693         to avoid collisions with libcurses and libreadline.
20694
20695         * m4/getstr.m4: Remove.
20696         * m4/getline.m4 (gl_PREREQ_GETLINE): Require AC_HEADER_STDC.
20697
20698 2003-01-12  Paul Eggert  <eggert@twinsun.com>
20699
20700         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
20701         to avoid collisions with libcurses and libreadline.
20702
20703         * lib/Makefile.am (libfetish_a_SOURCES): Remove getstr.c, getstr.h.
20704         * lib/getstr.h, getstr.c: Remove.
20705         * lib/getline.c: Include "getline.h", to check interface.
20706         Move body of old getstr.c here: this defines MIN_CHUNK and
20707         declares getdelim2, which is renamed from getstr.
20708         (getline, getdelim): Adjust to renaming of getstr -> getdelim2.
20709
20710         * lib/linebuffer.c (readlinebuffer): Renamed from readline.
20711         All uses changed.
20712         * lib/linebuffer.h: Likewise.
20713         (readline): Remove backward-compatibility macro.
20714
20715 2003-01-12  Paul Eggert  <eggert@twinsun.com>
20716
20717         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
20718         to avoid collisions with libcurses and libreadline.
20719         * getstr: Remove.
20720         * MODULES.html.sh: Remove getstr.
20721         * modules/getline: Depend on unlocked-io, not getstr.
20722
20723 2003-01-12  Jim Meyering  <jim@meyering.net>
20724
20725         * lib/makepath.c: Don't test HAVE_ERRNO_H.  It's not necessary.
20726
20727 2003-01-10  Bruno Haible  <bruno@clisp.org>
20728
20729         * modules/alloca: Change Makefile.am requirements. Simplify Include
20730         requirements. Add lib/alloca_.h to file list.
20731
20732 2003-01-10  Bruno Haible  <bruno@clisp.org>
20733
20734         * m4/alloca.m4 (gl_FUNC_ALLOCA): Also define ALLOCA_H.
20735
20736 2003-01-10  Bruno Haible  <bruno@clisp.org>
20737
20738         * lib/alloca_.h: New file.
20739         * lib/getdate.y: Unconditionally include alloca.h.
20740         * lib/makepath.c: Likewise.
20741         * lib/setenv.c: Likewise.
20742         * lib/userspec.c: Likewise.
20743
20744 2003-01-09  Karl Berry  <karl@gnu.org>
20745
20746         * MODULES.html.sh: include `dirname $0` in PATH, to find
20747         gnulib-tool.
20748
20749 2003-01-09  Bruno Haible  <bruno@clisp.org>
20750
20751         * modules/stdbool: Change configure.ac, Makefile.am requirements.
20752         Simplify Include requirements. Add lib/stdbool.h.in to file list.
20753
20754 2003-01-09  Bruno Haible  <bruno@clisp.org>
20755
20756         * m4/stdbool.m4 (AM_STDBOOL_H): New macro.
20757
20758 2003-01-09  Bruno Haible  <bruno@clisp.org>
20759
20760         * lib/stdbool.h.in: New file.
20761
20762 2003-01-09  Bruno Haible  <bruno@clisp.org>
20763
20764         * gnulib-tool (func_all_modules): Ignore files ending in ~.
20765         * MODULES.html.sh: Likewise.
20766
20767 2003-01-08  Jim Meyering  <jim@meyering.net>
20768
20769         * lib/full-write.c: Undefine and define-away `const' after inclusion
20770         of errno.h, not before.  Suggestion from Bruno Haible.
20771
20772 2003-01-08  Bruno Haible  <bruno@clisp.org>
20773
20774         * modules/full-read: Depend on full-write.
20775
20776 2003-01-08  Bruno Haible  <bruno@clisp.org>
20777
20778         * lib/safe-read.c: Include specification header first, to ensure its
20779         selfcontainedness.
20780         * lib/full-write.c: Likewise.
20781
20782 2003-01-07  Jim Meyering  <jim@meyering.net>
20783
20784         * lib/full-write.c: Rework so that it may serve to define full_read,
20785         too.
20786         * lib/full-read.c: Simply #define FULL_READ and include full-write.c.
20787
20788 2003-01-07  Bruno Haible  <bruno@clisp.org>
20789
20790         * lib/strtoimax.c: Include <stdint.h> as an alternative to
20791         <inttypes.h>.
20792         * lib/xstrtol.h: Likewise.
20793         * lib/xstrtoimax.c: Likewise.
20794         * lib/xstrtoumax.c: Likewise.
20795         * lib/human.h: Likewise.
20796
20797         * lib/tempname.c: Include <inttypes.h> too. Avoids a compilation error
20798         on systems that have <inttypes.h> but not <stdint.h>.
20799
20800 2003-01-07  Bruno Haible  <bruno@clisp.org>
20801
20802         * MODULES.html.sh: Add copyright notice.
20803         (missed_files): Omit CVS directory entries.
20804         (func_module): Make it work with sed-3.02.
20805         * MODULES.txt: Remove file.
20806
20807 2003-01-06  Jim Meyering  <jim@meyering.net>
20808
20809         * lib/version-etc.c: Update year in translatable copyright string.
20810
20811 2003-01-03  Karl Berry  <karl@gnu.org>
20812
20813         * config/config.{guess,sub}: update from prep.
20814
20815 2003-01-02  Karl Berry  <karl@gnu.org>
20816
20817         * doc/COPYING.DOC: belatedly updated to 1.2.
20818
20819 2003-01-01  Karl Berry  <karl@gnu.org>
20820
20821         * gnulib-tool (func_verify_module): report module name $module in
20822         error message, not $1.
20823         * gnulib-tool (create-testdir): don't complain if destdir couldn't
20824         be created, only if it doesn't exist.
20825         * gnulib-tool (last_checkin_date): don't expand the $Date here.
20826
20827 2002-12-31  Paul Eggert  <eggert@twinsun.com>
20828
20829         * m4/memcoll.m4 (gl_MEMCOLL): Require AC_FUNC_MEMCMP.
20830
20831 2002-12-31  Paul Eggert  <eggert@twinsun.com>
20832
20833         * lib/memcoll.c (memcoll): Fall back on a simple algorithm using
20834         memcmp if strcoll doesn't work.
20835
20836 2002-12-31  Bruno Haible  <bruno@clisp.org>
20837
20838         * lib/utime.c (utime_null): No need to call ftruncate if the file was
20839         nonempty.
20840
20841 2002-12-31  Bruno Haible  <bruno@clisp.org>
20842
20843         * lib/memcoll.c (STRCOLL): New macro.
20844         (memcoll): Use it.
20845
20846 2002-12-31  Bruno Haible  <bruno@clisp.org>
20847
20848         * lib/localcharset.h: New file.
20849         * lib/localcharset.c: Include it.
20850         * lib/unicodeio.c: Likewise.
20851
20852 2002-12-31  Bruno Haible  <bruno@clisp.org>
20853
20854         * lib/getstr.h (getstr): Define, to avoid clash with libcurses.
20855         * lib/linebuffer.h (readline): Define, to avoid clash with libreadline.
20856
20857 2002-12-31  Bruno Haible  <bruno@clisp.org>
20858
20859         * lib/getline.h: Include <stddef.h>, for size_t.
20860
20861         * lib/unicodeio.h: Include <stddef.h>, for size_t.
20862         * lib/unicodeio.c: Don't include <stddef.h>.
20863
20864 2002-12-31  Bruno Haible  <bruno@clisp.org>
20865
20866         * lib/getdate.y (get_date): Test HAVE_STRUCT_TM_TM_ZONE, not
20867         HAVE_TM_ZONE.
20868
20869 2002-12-24  Karl Berry  <karl@gnu.org>
20870
20871         * config/config.guess: update from prep.
20872
20873 2002-12-24  Bruno Haible  <bruno@clisp.org>
20874
20875         General infrasructure.
20876         * m4/README: Rewritten.
20877         * m4/onceonly.m4: New file.
20878         * m4/onceonly_2_57.m4: New file.
20879
20880         Module atexit.
20881         * m4/atexit.m4: New file.
20882
20883         Module strtod.
20884         * m4/strtod.m4: New file.
20885
20886         Module strtol.
20887         * m4/strtol.m4: New file.
20888
20889         Module strtoul.
20890         * m4/strtoul.m4: New file.
20891
20892         Module memchr.
20893         * m4/memchr.m4: New file.
20894
20895         Module memcmp.
20896         * m4/memcmp.m4 (gl_PREREQ_MEMCMP): New macro.
20897         (jm_FUNC_MEMCMP): Invoke it.
20898
20899         Module memcpy.
20900         * m4/memcpy.m4: New file.
20901
20902         Module memmove.
20903         * m4/memmove.m4: New file.
20904
20905         Module memset.
20906         * m4/memset.m4: New file.
20907
20908         Module strcspn.
20909         * m4/strcspn.m4: New file.
20910
20911         Module strpbrk.
20912         * m4/strpbrk.m4: New file.
20913
20914         Module strstr.
20915         * m4/strstr.m4: New file.
20916
20917         Module strerror.
20918         * m4/strerror.m4: New file.
20919
20920         Module mktime.
20921         * m4/mktime.m4: Renamed from jm-mktime.m4.
20922         (gl_PREREQ_MKTIME): New macro.
20923         (gl_FUNC_MKTIME): Renamed from jm_FUNC_MKTIME. Invoke gl_PREREQ_MKTIME.
20924
20925         Module malloc.
20926         * m4/malloc.m4 (gl_PREREQ_MALLOC): New macro.
20927         (jm_FUNC_MALLOC): Use AC_FUNC_MALLOC. Invoke gl_PREREQ_MALLOC.
20928         Don't define HAVE_DONE_WORKING_MALLOC_CHECK, since nothing uses it.
20929
20930         Module realloc.
20931         * m4/realloc.m4 (gl_PREREQ_REALLOC): New macro.
20932         (jm_FUNC_REALLOC): Use AC_FUNC_REALLOC. Invoke gl_PREREQ_REALLOC.
20933         Don't define HAVE_DONE_WORKING_REALLOC_CHECK, since nothing uses it.
20934
20935         Module strftime.
20936         * m4/tm_gmtoff.m4: New file, extracted from strftime.m4.
20937         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Use AC_FUNC_STRFTIME.
20938         Don't test for bcopy (we are not emacs). Invoke AC_TYPE_MBSTATE_T and
20939         gl_TM_GMTOFF.
20940         (_jm_STRFTIME_PREREQS, jm_FUNC_GNU_STRFTIME): Use onceonly macros.
20941
20942         Module xalloc.
20943         * m4/xalloc.m4: New file.
20944
20945         Module alloca.
20946         * m4/alloca.m4: New file.
20947
20948         Module putenv.
20949         * m4/putenv.m4 (gl_PREREQ_PUTENV): New macro.
20950         (jm_FUNC_PUTENV): Invoke it.
20951
20952         Module setenv.
20953         * m4/setenv.m4 (gt_FUNC_SETENV): New macro.
20954         (gt_CHECK_VAR_DECL): Fix quoting error that led to infinite loop in m4
20955         when invoked twice.
20956         (gt_PREREQ_SETENV, gt_PREREQ_UNSETENV): New macros, replacing old
20957         gt_FUNC_SETENV.
20958
20959         Module memrchr.
20960         * m4/memrchr.m4: New file.
20961
20962         Module stpcpy.
20963         * m4/stpcpy.m4: New file.
20964
20965         Module strcase.
20966         * m4/strcase.m4: New file.
20967
20968         Module strdup.
20969         * m4/strdup.m4: New file.
20970
20971         Module strnlen.
20972         * m4/strnlen.m4: New file.
20973
20974         Module strndup.
20975         * m4/strndup.m4: New file.
20976
20977         Module xstrtod.
20978         * m4/xstrtod.m4: New file.
20979
20980         Module xstrtol.
20981         * m4/xstrtol.m4: New file.
20982
20983         Module getdate.
20984         * m4/getdate.m4: New file.
20985
20986         Module unlocked-io.
20987         * m4/unlocked-io.m4: Renamed from jm-glibc-io.m4.
20988         (jm_FUNC_GLIBC_UNLOCKED_IO): Invoke AC_GNU_SOURCE. Use onceonly macros.
20989         * m4/jm-glibc-io.m4n: Remove file.
20990
20991         Module long-options.
20992         * m4/long-options.m4: New file.
20993
20994         Module md5.
20995         * m4/md5.m4: New file.
20996
20997         Module sha.
20998         * m4/sha.m4: New file.
20999
21000         Module getstr.
21001         * m4/getstr.m4: New file.
21002
21003         Module getline.
21004         * m4/getline.m4 (gl_PREREQ_GETLINE): New macro.
21005         (AM_FUNC_GETLINE): Invoke AC_GNU_SOURCE. Use <stdlib.h>, not
21006         <sys/types.h>, for size_t. Use the function name gnu_getline, not
21007         simply getline. Infoke gl_PREREQ_GETLINE.
21008
21009         Module obstack.
21010         * m4/obstack.m4: New file.
21011
21012         Module hash.
21013         * m4/hash.m4: New file.
21014
21015         Module readtokens.
21016         * m4/readtokens.m4: New file.
21017
21018         Module strverscmp.
21019         * m4/strverscmp.m4: New file.
21020
21021         Module stdbool.
21022         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Add test for _Bool. Needed for
21023         OSF/1.
21024
21025         Module strtoll.
21026         * m4/strtoll.m4: New file.
21027
21028         Module strtoull.
21029         * m4/strtoull.m4: New file.
21030
21031         Module strtoimax.
21032         * m4/strtoimax.m4: New file.
21033
21034         Module strtoumax.
21035         * m4/strtoumax.m4: New file.
21036
21037         Module xstrtoimax.
21038         * m4/xstrtoimax.m4 (jm_XSTRTOIMAX): Renamed from
21039         jm_AC_PREREQ_XSTRTOIMAX.
21040         Moved the strtol prerequisites to strtol.m4.
21041         Moved the strtoll prerequisites to strtoll.m4.
21042         Moved the strtoimax prerequisites to strtoimax.m4.
21043
21044         Module xstrtoumax.
21045         * m4/xstrtoumax.m4 (jm_XSTRTOUMAX): Renamed from
21046         jm_AC_PREREQ_XSTRTOUMAX.
21047         Moved the strtoul prerequisites to strtoul.m4.
21048         Moved the strtoull prerequisites to strtoull.m4.
21049         Moved the strtoumax prerequisites to strtoumax.m4.
21050
21051         Module chown.
21052         * m4/chown.m4 (gl_PREREQ_CHOWN): New macro.
21053         (jm_FUNC_CHOWN): Use AC_FUNC_CHOWN. Invoke gl_PREREQ_CHOWN.
21054
21055         Module dup2.
21056         * m4/dup2.m4: New file.
21057
21058         Module ftruncate.
21059         * m4/ftruncate.m4 (gl_PREREQ_FTRUNCATE): New macro.
21060         (jm_FUNC_FTRUNCATE): Use AC_REPLACE_FUNCS. Invoke gl_PREREQ_FTRUNCATE.
21061
21062         Module getgroups.
21063         * m4/getgroups.m4 (gl_PREREQ_GETGROUPS): New macro.
21064         (jm_FUNC_GETGROUPS): Use AC_FUNC_GETGROUPS. Invoke gl_PREREQ_GETGROUPS.
21065
21066         Module gettimeofday.
21067         * m4/gettimeofday.m4 (gl_PREREQ_GETTIMEOFDAY): New macro.
21068         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Use onceonly macros. Invoke
21069         gl_PREREQ_GETTIMEOFDAY.
21070
21071         Module mkdir.
21072         * m4/mkdir-slash.m4 (gl_PREREQ_MKDIR): New macro.
21073         (UTILS_FUNC_MKDIR_TRAILING_SLASH): Invoke gl_PREREQ_MKDIR.
21074
21075         Module mkstemp.
21076         * m4/mkstemp.m4 (gl_PREREQ_MKSTEMP): New macro.
21077         (jm_PREREQ_TEMPNAME): New macro, from prereq.m4. Also invoke
21078         jm_AC_TYPE_UINTMAX_T.
21079         (UTILS_FUNC_MKSTEMP): Invoke gl_PREREQ_MKSTEMP and jm_PREREQ_TEMPNAME.
21080
21081         Module stat.
21082         * m4/stat.m4 (gl_PREREQ_STAT): New macro.
21083         (jm_FUNC_STAT): Use AC_FUNC_STAT. Invoke gl_PREREQ_STAT.
21084
21085         Module lstat.
21086         * m4/lstat.m4 (gl_PREREQ_LSTAT): New macro.
21087         (jm_FUNC_LSTAT): Use AC_FUNC_LSTAT. Invoke gl_PREREQ_LSTAT.
21088
21089         Module timespec.
21090         * m4/timespec.m4 (gl_TIMESPEC): New macro.
21091         (jm_CHECK_TYPE_STRUCT_TIMESPEC): Add check for <sys/time.h>.
21092         * m4/st_mtim.m4: Indentation.
21093
21094         Module nanosleep.
21095         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): New macro.
21096         (jm_FUNC_NANOSLEEP): Add check for <sys/time.h>. Invoke
21097         gl_PREREQ_NANOSLEEP.
21098
21099         Module regex.
21100         * m4/regex.m4 (jm_PREREQ_REGEX): New macro.
21101         (jm_INCLUDED_REGEX): Invoke jm_PREREQ_REGEX.
21102         (gl_REGEX): New macro.
21103
21104         Module rename.
21105         * m4/rename.m4 (gl_PREREQ_RENAME): New macro.
21106         (vb_FUNC_RENAME): Invoke gl_PREREQ_RENAME.
21107
21108         Module rmdir.
21109         * m4/rmdir.m4: New file.
21110
21111         Module utime.
21112         * m4/utimbuf.m4 (jm_CHECK_TYPE_STRUCT_UTIMBUF): Use onceonly macros.
21113         * m4/utime.m4 (gl_PREREQ_UTIME): New macro.
21114         (jm_FUNC_UTIME): Invoke gl_PREREQ_UTIME.
21115
21116         Module dirname.
21117         * m4/dirname.m4: New file.
21118
21119         Module getopt.
21120         * m4/getopt.m4: New file.
21121
21122         Module unistd-safer.
21123         * m4/unistd-safer.m4: New file.
21124
21125         Module fnmatch.
21126         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Include <stdlib.h>, for exit()
21127         declaration.
21128         (gl_PREREQ_FNMATCH_EXTRA): New macro.
21129         (gl_FUNC_FNMATCH_POSIX): New macro.
21130         (gl_FUNC_FNMATCH_GNU): Renamed from AC_FUNC_FNMATCH_GNU. Invoke
21131         gl_PREREQ_FNMATCH_EXTRA. Use the function name gnu_fnmatch, not
21132         simply fnmatch.
21133
21134         Module exclude.
21135         * m4/exclude.m4: New file.
21136
21137         Module human.
21138         * m4/human.m4: New file.
21139
21140         Module acl.
21141         * m4/acl.m4: Nop.
21142
21143         Module backupfile.
21144         * m4/backupfile.m4: New file.
21145         * m4/d-ino.m4: Indentation.
21146
21147         Module fsusage.
21148         * m4/fsusage.m4 (gl_FSUSAGE): New macro.
21149         (jm_STATFS_TRUNCATES): New macro, from coreutils-4.5.4/configure.ac.
21150         (gl_PREREQ_FSUSAGE_EXTRA): New macro.
21151
21152         Module dirfd.
21153         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Invoke some AC_EGREP_CPP
21154         requirements.
21155
21156         Module euidaccess.
21157         * m4/euidaccess.m4: New file.
21158
21159         Module file-type.
21160         * m4/file-type.m4: New file.
21161
21162         Module fileblocks.
21163         * m4/fileblocks.m4: New file.
21164
21165         Module filemode.
21166         * m4/filemode.m4: New file.
21167
21168         Module isdir.
21169         * m4/isdir.m4: New file.
21170
21171         Module lchown.
21172         * m4/lchown.m4 (gl_PREREQ_LCHOWN): New macro.
21173         (jm_FUNC_LCHOWN): Invoke gl_PREREQ_LCHOWN.
21174
21175         Module makepath.
21176         * m4/makepath.m4: New file.
21177
21178         Module modechange.
21179         * m4/modechange.m4: New file.
21180
21181         Module mountlist.
21182         * m4/mountlist.m4: New file.
21183         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Use onceonly macros.
21184         Indentation.
21185
21186         Module path-concat.
21187         * m4/path-concat.m4: New file.
21188
21189         Module pathmax.
21190         * m4/pathmax.m4: New file.
21191
21192         Module same.
21193         * m4/same.m4: New file.
21194
21195         Module save-cwd.
21196         * m4/save-cwd.m4: New file.
21197
21198         Module savedir.
21199         * m4/savedir.m4: New file.
21200
21201         Module xgetcwd.
21202         * m4/xgetcwd.m4: New file.
21203         * m4/getcwd.m4 (AC_FUNC_GETCWD_NULL): Use onceonly macros.
21204
21205         Module xreadlink.
21206         * m4/xreadlink.m4: New file.
21207
21208         Module safe-read.
21209         * m4/safe-read.m4: New file.
21210
21211         Module safe-write.
21212         * m4/safe-write.m4: New file.
21213
21214         Module closeout.
21215         * m4/closeout.m4: New file.
21216
21217         Module stdio-safer.
21218         * m4/stdio-safer.m4: New file.
21219
21220         Module getpass.
21221         * m4/getpass.m4: New file.
21222
21223         Module getugroups.
21224         * m4/getugroups.m4: New file.
21225
21226         Module group-member.
21227         * m4/group-member.m4 (gl_PREREQ_GROUP_MEMBER): New macro.
21228         (jm_FUNC_GROUP_MEMBER): Invoke AC_GNU_SOURCE, gl_PREREQ_GROUP_MEMBER.
21229
21230         Module idcache.
21231         * m4/idcache.m4: New file.
21232
21233         Module userspec.
21234         * m4/userspec.m4: New file.
21235
21236         Module gettime.
21237         * m4/clock_time.m4: New file.
21238         * m4/gettime.m4: New file.
21239
21240         Module settime.
21241         * m4/settime.m4: New file.
21242
21243         Module posixtm.
21244         * m4/posixtm.m4: New file.
21245
21246         Module gethostname.
21247         * m4/gethostname.m4: New file.
21248
21249         Module canon-host.
21250         * m4/canon-host.m4: New file.
21251
21252         Module gettext.
21253         * m4/codeset.m4: New file, from gettext-0.11.5.
21254         * m4/gettext.m4: New file, from gettext-0.11.5.
21255         * m4/glibc21.m4: New file, from gettext-0.11.5.
21256         * m4/iconv.m4: New file, from gettext-0.11.5.
21257         * m4/intdiv0.m4: New file, from gettext-0.11.5.
21258         * m4/inttypes-pri.m4: New file, from gettext-0.11.5.
21259         * m4/inttypes.m4: New file, from gettext-0.11.5.
21260         * m4/inttypes_h.m4: New file, from gettext-0.11.5 with modifications.
21261         * m4/isc-posix.m4: New file, from gettext-0.11.5.
21262         * m4/lcmessage.m4: New file, from gettext-0.11.5.
21263         * m4/lib-ld.m4: New file, from gettext-0.11.5.
21264         * m4/lib-link.m4: New file, from gettext-0.11.5.
21265         * m4/lib-prefix.m4: New file, from gettext-0.11.5.
21266         * m4/progtest.m4: New file, from gettext-0.11.5.
21267         * m4/stdint_h.m4: New file, from gettext-0.11.5 with modifications.
21268         * m4/uintmax_t.m4: New file, from gettext-0.11.5 with modifications.
21269         * m4/ulonglong.m4: New file, from gettext-0.11.5 with modifications.
21270
21271         Module localcharset.
21272         * m4/localcharset.m4: New file.
21273
21274         Module hard-locale.
21275         * m4/hard-locale.m4: New file.
21276
21277         Module mbswidth.
21278         * m4/mbswidth.m4 (gl_MBSWIDTH): Renamed from jm_PREREQ_MBSWIDTH. Use
21279         onceonly macros.
21280         * m4/mbrtowc.m4: Add comment.
21281
21282         Module memcasecmp.
21283         * m4/memcasecmp.m4: New file.
21284
21285         Module memcoll.
21286         * m4/memcoll.m4: New file.
21287
21288         Module unicodeio.
21289         * m4/unicodeio.m4: New file.
21290
21291         Module rpmatch.
21292         * m4/rpmatch.m4: New file.
21293
21294         Module yesno.
21295         * m4/yesno.m4: New file.
21296
21297         Module exitfail.
21298         * m4/exitfail.m4: New file.
21299
21300         Module c-stack.
21301         * m4/c-stack.m4 (gl_C_STACK): New macro.
21302         (jm_PREREQ_C_STACK): Check for <sys/time.h>. Use onceonly macros.
21303
21304         Module error.
21305         * m4/error.m4 (gl_ERROR): New macro.
21306         (jm_PREREQ_ERROR): Use onceonly macros.
21307
21308         Module fatal.
21309         * m4/fatal.m4: New file.
21310
21311         Module getloadavg.
21312         * m4/getloadavg.m4 (AC_FUNC_GETLOADAVG): Use onceonly macros.
21313         (gl_FUNC_GETLOADAVG, gl_PREREQ_GETLOADAVG): New macros.
21314
21315         Module getpagesize.
21316         * m4/getpagesize.m4: New file.
21317
21318         Module getusershell.
21319         * m4/getusershell.m4: New file.
21320
21321         Module physmem.
21322         * m4/physmem.m4: New file.
21323
21324         Module posixver.
21325         * m4/posixver.m4: New file.
21326
21327         Module quotearg.
21328         * m4/quotearg.m4: New file.
21329
21330         Module quote.
21331         * m4/quote.m4: New file.
21332
21333         Module readutmp.
21334         * m4/readutmp.m4: New file, based on jm_PREREQ_READUTMP from prereq.m4.
21335
21336         Module sig2str.
21337         * m4/sig2str.m4: New file.
21338
21339         Other.
21340         * m4/longlong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Remove, moved to
21341         ulonglong.m4.
21342         * m4/intmax_t.m4: New file.
21343         * m4/d-type.m4: Indentation.
21344         * m4/jm-macros.m4: Update.
21345         * m4/prereq.m4 (jm_PREREQ): Update.
21346         (jm_PREREQ_ADDEXT): Remove, obsoleted by backupfile.m4.
21347         (jm_PREREQ_CANON_HOST): Remove, obsoleted by canon-host.m4.
21348         (jm_PREREQ_DIRNAME): Remove, obsoleted by dirname.m4.
21349         (jm_PREREQ_EXCLUDE): Remove, obsoleted by exclude.m4.
21350         (jm_PREREQ_GETPAGESIZE): Remove, obsoleted by getpagesize.m4.
21351         (jm_PREREQ_HARD_LOCALE): Remove, obsoleted by hard-locale.m4.
21352         (jm_PREREQ_HASH): Remove, obsoleted by hash.m4.
21353         (jm_PREREQ_HUMAN): Remove, obsoleted by human.m4.
21354         (jm_PREREQ_MEMCHR): Remove, obsoleted by memchr.m4.
21355         (jm_PREREQ_PHYSMEM): Remove, obsoleted by physmem.m4.
21356         (jm_PREREQ_POSIXVER): Remove, obsoleted by posixver.m4.
21357         (jm_PREREQ_QUOTEARG): Remove, obsoleted by quotearg.m4.
21358         (jm_PREREQ_READUTMP): Remove, obsoleted by readutmp.m4.
21359         (jm_PREREQ_REGEX): Remove, obsoleted by regex.m4.
21360         (jm_PREREQ_STRNLEN): Remove, obsoleted by strnlen.m4.
21361         (jm_PREREQ_TEMPNAME): Remove, obsoleted by mkstemp.m4.
21362         (jm_PREREQ_XGETCWD): Remove, obsoleted by xgetcwd.m4.
21363         (jm_PREREQ_XREADLINK): Remove, obsoleted by xreadlink.m4.
21364         * m4/readdir.m4 (jm_FUNC_READDIR): Use onceonly macros.
21365
21366 2002-12-24  Bruno Haible  <bruno@clisp.org>
21367
21368         * MODULES.txt: Update according to m4/ changes.
21369
21370         Module gettext.
21371         * config.rpath: New file, from gettext-0.11.5.
21372
21373         * modules/*: New module descriptions.
21374         * gnulib-tool: New file.
21375         * MODULES.html.sh: New file.
21376
21377 2002-12-21  Karl Berry  <karl@gnu.org>
21378
21379         * doc/fdl.texi: update to version 1.2.
21380
21381 2002-12-19  Karl Berry  <karl@gnu.org>
21382
21383         * config/config.guess: update from prep.
21384
21385 2002-12-18  Bruno Haible  <bruno@clisp.org>
21386
21387         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't test for localtime_r.
21388         * m4/jm-mktime.m4 (jm_FUNC_MKTIME): Likewise.
21389
21390 2002-12-17  Bruno Haible  <bruno@clisp.org>
21391
21392         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Remove checks for limits.h,
21393         stdlib.h, string.h.
21394
21395 2002-12-17  Bruno Haible  <bruno@clisp.org>
21396
21397         * lib/canon-host.c (strdup): Remove unused declaration.
21398
21399         * lib/fsusage.c: Include full_read.h.
21400         (get_fs_usage): Use full_read instead of safe_read.
21401
21402         * lib/utime.c (utime_null): Use SAFE_READ_ERROR.
21403
21404 2002-12-12  Karl Berry  <karl@gnu.org>
21405
21406         * config/config.guess: update from prep.
21407
21408 2002-12-11  Bruno Haible  <bruno@clisp.org>
21409
21410         * m4/setenv.m4: New file, from gettext-0.11.5.
21411
21412 2002-12-11  Bruno Haible  <bruno@clisp.org>
21413
21414         * lib/setenv.h: Rewritten to cope with systems that have setenv() but
21415         not unsetenv().
21416         * lib/setenv.c, unsetenv.c: Taken from glibc-2.2.4 with the following
21417         modifications:
21418
21419         2002-12-11  Bruno Haible  <bruno@clisp.org>
21420
21421                 * setenv.c (alloca): Fall back to malloc.
21422                 (freea): New macro.
21423                 (setenv): Use freea() to free memory allocated with alloca().
21424
21425         2002-11-13  Bruno Haible  <bruno@clisp.org>
21426
21427                 * setenv.c (compar_fn_t, __add_to_environ, setenv): Use ANSI C
21428                 function declarations.
21429                 * unsetenv.c (unsetenv): Likewise.
21430
21431         2002-03-04  Bruno Haible  <bruno@clisp.org>
21432
21433                 Portability to AIX 4.3.3.
21434                 * unsetenv.c: New file, extracted from setenv.c.
21435                 * setenv.c: Move the unsetenv() function to unsetenv.c.
21436
21437         2001-12-20  Bruno Haible  <bruno@clisp.org>
21438
21439                 * setenv.c (__add_to_environ): Don't call realloc(NULL,...),
21440                 use malloc instead. For SunOS 4.
21441
21442         2001-12-11  Bruno Haible  <bruno@clisp.org>
21443
21444                 * setenv.c: Declare alloca.
21445                 (compar_fn_t): New typedef.
21446                 (KNOWN_VALUE, STORE_VALUE): Use it.
21447
21448         * lib/Makefile.am (libfetish_a_SOURCES): Add setenv.c, unsetenv.c,
21449         setenv.h.
21450
21451 2002-12-10  Paul Eggert  <eggert@twinsun.com>
21452
21453         Port exclude.c and exclude.h to more non-GNU systems, e.g. Solaris 7.
21454         * lib/exclude.h (EXCLUDE_ANCHORED, EXCLUDE_INCLUDE, EXCLUDE_WILDCARDS):
21455         Choose values that are less likely to collide with system fnmatch
21456         options.
21457         * lib/exclude.c (FNM_CASEFOLD, FNM_LEADING_DIR): Define to 0 if not
21458         defined (e.g., a pure POSIX system).
21459         (EXCLUDE_macros_do_not_collide_with_FNM_macros): Use FNM_PATHNAME
21460         instead of FNM_FILE_NAME, for compatibility with pure POSIX sytems.
21461
21462 2002-12-06  Paul Eggert  <eggert@twinsun.com>
21463
21464         Undo the 2001-07-02 change for jm-glibc-io, as it was too much of
21465         a pain in practice to deal with generated m4 files.  This change
21466         goes together with the 2002-12-04 unlocked-io.h change in ../lib.
21467
21468         * m4/Makefile.am.in (Makefile.am): Don't mention jm-glibc-io.m4n
21469         and jm-glibc-io.m4, as they are no longer a special case.
21470         * m4/jm-glibc-io.m4: Rename from jm-glibc-io.m4n, and remove the
21471         kludge and the auto-generation stuff.  Check only whether the
21472         functions are declared, not whether they exist, since older hosts
21473         that don't declare the functions can't use the optimization anyway.
21474
21475 2002-12-06  Jim Meyering  <jim@meyering.net>
21476
21477         * lib/error.c: Be consistent: change `#ifndef _LIBC' to `#if !_LIBC'.
21478
21479         Merge in changes from libc's misc/error.c, in preparation
21480         for the merge of gnulib's changes back into libc.
21481
21482         * lib/error.c (_): Define only if not already defined.
21483         Move definition to follow all #include directives.
21484         Include unlocked-io.h only if !_LIBC.
21485         [_LIBC]: Include <libio/libioP.h>.
21486         [USE_IN_LIBIO]: Include <libio/iolibio.h>
21487         (fflush): Tweak definition to use INTUSE.
21488         (putc): Define.
21489
21490 2002-12-05  Paul Eggert  <eggert@twinsun.com>
21491
21492         * lib/alloca.c [defined emacs]: Include "lisp.h".
21493         (xalloc_die) [defined emacs]: New macro.
21494         (free) [defined emacs && defined EMACS_FREE]: Define to EMACS_FREE.
21495         [! defined emacs]: Include <xalloc.h>.
21496         (POINTER_TYPE) [!defined POINTER_TYPE]: New macro.
21497         (pointer): Typedef to POINTER_TYPE *.
21498         (malloc): Remove decl; we now always use xmalloc.
21499         (alloca): Use old-style definition, since Emacs needs this.
21500         Check for arithmetic overflow when computing combined size.
21501
21502 2002-12-04  Paul Eggert  <eggert@twinsun.com>
21503
21504         Do not generate unlocked-io.h automatically, since it's easier to
21505         maintain it by hand.
21506
21507         * lib/unlocked-io.h: New file, from GNU diffutils,
21508         but with proper copyright notice and attribution.
21509         * lib/gen-uio: Remove.
21510         * lib/Makefile.am: Add copyright notice.
21511         (libfetish_a_SOURCES): Add unlocked-io.h.
21512         (BUILT_SOURCES, all-local): Remove unlocked-io.h.
21513         (DISTCLEANFILES, io_functions): Remove macros.
21514         (EXTRA_DIST): Remove gen_uio.
21515         (unlocked-io.h): Remove rule.
21516
21517 2002-12-04  Jim Meyering  <jim@meyering.net>
21518
21519         Reflect the fact that stat.c and lstat.c are no longer generated.
21520         * lib/Makefile.am (BUILT_SOURCES): Remove stat.c and lstat.c.
21521         (DISTCLEANFILES): Likewise.
21522         (EXTRA_DIST): Likewise.
21523         (all_local): Don't depend on stat.c or lstat.c.
21524         (stat.c, lstat.c): Remove rules.
21525         (EXTRA_DIST): Remove xstat.in.
21526
21527         * lib/xstat.in: Remove file.  Contents moved into stat.c.
21528         * lib/stat.c: New file.  Contents mostly from xstat.in.
21529         * lib/stat.c: Rework so that it may serve to define rpl_lstat, too.
21530         * lib/lstat.c: New file. Simply #define LSTAT and include stat.c.
21531
21532         * lib/safe-read.c: Rework so that it may serve to define safe_write,
21533         too.
21534         * lib/safe-write.c: Simply #define SAFE_WRITE and include safe-read.c.
21535
21536 2002-12-03  Jim Meyering  <jim@meyering.net>
21537
21538         * lib/safe-read.c, safe-write.c: Change variable names and comments,
21539         but not semantics, to minimize the differences between these two files.
21540         (safe_read): Change comment to mention SAFE_READ_ERROR.
21541
21542         * lib/safe-read.c (IS_EINTR): Define.
21543         (safe_read): Use IS_EINTR in place of in-function cpp directives.
21544
21545 2002-12-02  Jim Meyering  <jim@meyering.net>
21546
21547         * lib/safe-read.c (EINTR): Define.
21548         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Define.
21549         (INT_MAX): Provide fallback.
21550         (safe_read): Rewrite to iterate IFF the read fails with EINTR.
21551
21552         * lib/safe-read.h (SAFE_READ_ERROR): Define.
21553
21554 2002-12-02  Bruno Haible  <bruno@clisp.org>
21555
21556         * lib/safe-write.c (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM):
21557         Define, taken from safe-read.c.
21558         (INT_MAX): Provide fallback.
21559         (safe_write): Rewrite to iterate IFF the write fails with EINTR.
21560         * lib/safe-write.h (SAFE_WRITE_ERROR): Define.
21561
21562         * lib/safe-read.c (EINTR): Remove definition.
21563         (safe_read): Don't use EINTR if it is absent.
21564
21565 2002-12-01  Jim Meyering  <jim@meyering.net>
21566
21567         * lib/safe-read.c: (safe_read): Also exit the loop when read returns
21568         zero.
21569         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM, INT_MAX): Define.
21570
21571 2002-11-27  Paul Eggert  <eggert@twinsun.com>
21572
21573         * lib/hash.c (hash_lookup, hash_get_first, hash_get_next,
21574         hash_find_entry, hash_rehash): Replace `if (limit <= value) abort ();'
21575         with `if (! (value < limit)) abort ();', for readability.
21576
21577 2002-11-26  Karl Berry  <karl@gnu.org>
21578
21579         * lib/strdup.c: copy from libc again, with jim's ok.
21580         * lib/.cppi-disable: re-add strdup.c
21581
21582 2002-11-25  Karl Berry  <karl@gnu.org>
21583
21584         * lib/strtoll.c: copy from libc, meaning we now #include <strtol.c>
21585         instead of "strtol.c".
21586
21587 2002-11-25  Karl Berry  <karl@gnu.org>
21588
21589         * config/install-sh: update from automake for variable quoting, $0 in
21590         error msgs, etc.
21591
21592         * config/srclist.txt ($LIBCSRC/time/mktime.c lib gpl): new entry.
21593         * config/srclist.txt ($LIBCSRC/sysdeps/generic/strtoll.c lib gpl): new
21594         entry.
21595
21596 2002-11-25  Jim Meyering  <jim@meyering.net>
21597
21598         * lib/mktime.c: Sync from libc, now that it has the latest fix.
21599
21600 2002-11-24  Karl Berry  <karl@gnu.org>
21601
21602         * lib/error.c, getopt.c, getopt.h, getopt1.c, obstack.c, regex.c,
21603         regex.h, strdup.c, strtoll.c, tempname.c: change license to gpl.
21604
21605 2002-11-24  Jim Meyering  <jim@meyering.net>
21606
21607         Update from coreutils:
21608
21609         * lib/mktime.c: Merge in changes from libc.
21610
21611         Avoid a link-time failure on some Linux systems.
21612         * lib/mktime.c (STATIC): Define to be empty (_LIBC) or `static'
21613         (otherwise).
21614         (__mon_yday): Declare with the STATIC attribute.
21615         (__mktime_internal): Likewise.
21616         Based on a report from Greg Schafer.
21617
21618 2002-11-23  Jim Meyering  <jim@meyering.net>
21619
21620         * lib/sig2str.c (str2signum, sig2str): Avoid a warning from gcc:
21621         Use `unsigned', not `int', as type of index.
21622
21623         * lib/xstat.in [@BEGIN_LSTAT_ONLY@]: Include <string.h>.
21624
21625         * lib/fsusage.c: Remove unneeded parentheses around operands of
21626         `defined'.
21627
21628 2002-11-22  Paul Eggert  <eggert@twinsun.com>
21629
21630         * lib/quotearg.h: Allow multiple inclusion by surrounding with
21631         "#ifndef QUOTEARG_H_".  Include <stddef.h>, for size_t,
21632         so that we can be included first.
21633         (PARAMS): Remove; we now assume C89 or later.  All uses removed.
21634         * lib/quotearg.c: Include quotearg.h immediately after config.h.
21635         No need to include stddef.h or sys/types.h any more.
21636         Surround local include files with "", not "<>".
21637         Assume HAVE_LIMITS_H unconditionally, as we assume C89.
21638         Similarly, assume HAVE_C_BACKSLASH_A, CHAR_BIT, UCHAR_MAX, UINT_MAX,
21639         HAVE_STDLIB_H, HAVE_STRING_H, STDC_HEADERS.
21640         (HAVE_MBSINIT): Undef if !HAVE_MBRTOWC.
21641         (mbsinit): Define to 1 if !defined mbsinit && !HAVE_MBSINIT.
21642         (ISPRINT): Remove; no longer needed now that we assume C89.
21643
21644         (clone_quoting_options, quotearg_buffer, quotearg_n_options):
21645         Preserve errno.
21646
21647         (quotearg_buffer_restyled, quotearg_n, quotearg_n_style,
21648         quotearg_char): Use SIZE_MAX rather than
21649         (size_t) -1 when we are talking about "infinity".
21650
21651         (quotearg_buffer_restyled): Fix bug when quoting trigraphs.
21652
21653 2002-11-22  Paul Eggert  <eggert@twinsun.com>
21654
21655         * lib/hash.c: Avoid use of <assert.h>, as the GNU Coding Standards
21656         hint that one should use `if (! x) abort ();' rather than `assert
21657         (x);', and anyway it's one less thing to worry about configuring.
21658         (hash_lookup, hash_get_first, hash_get_next, hash_find_entry,
21659         hash_rehash, hash_insert): Use abort rather than assert.
21660
21661 2002-11-22  Bruno Haible  <bruno@clisp.org>
21662
21663         * lib/safe-read.h: Assume C89. Add comments.
21664         (safe_read): Change return type to size_t.
21665         * lib/safe-read.c (safe_read): Change return type to size_t. Handle
21666         byte counts > SSIZE_MAX correctly.
21667         * lib/safe-write.h: New file.
21668         * lib/safe-write.c: New file.
21669         * lib/full-read.h: New file.
21670         * lib/full-read.c: New file.
21671         * lib/full-write.h: Assume C89. Add comments.
21672         * lib/full-write.c: Include safe-write.h.
21673         (full_write): Rewritten to use safe_write.
21674         Suggested by Jim Meyering and Paul Eggert.
21675
21676 2002-11-21  Jim Meyering  <jim@meyering.net>
21677
21678         * lib/strdup.c (strdup): Tweak comment and initial #if/#include.
21679
21680         Merge in changes from the coreutils.
21681
21682         2002-09-25  Paul Eggert  <eggert@twinsun.com>
21683         * lib/fsusage.c [! HAVE_INTTYPES_H && HAVE_STDINT_H] Include
21684         <stdint.h>.
21685         (UINTMAX_MAX) [!defined UINTMAX_MAX]: New macro.
21686         (PROPAGATE_ALL_ONES): Work even if X is unsigned and narrower than
21687         int.  Work more efficiently if X is the same width as uintmax_t.
21688         Do not compare X to -1, to avoid bogus compiler warning.
21689         (get_fs_usage): (uintmax_t) -1 -> UINTMAX_MAX to avoid a cast.
21690         Don't assume that f_frsize and f_bsize are the same type.
21691
21692         * lib/mountlist.c: #undef MNT_IGNORE before defining it, to avoid
21693         warning on FreeBSD.
21694
21695         * lib/makepath.c (make_path): Restore umask *before* creating the final
21696         component.
21697         (make_path): Minor reformatting.
21698
21699         * lib/xmalloc.c: Adjust to work with new autoconf macros,
21700         AC_FUNC_MALLOC and AC_FUNC_REALLOC: test #ifndef
21701         HAVE_MALLOC/HAVE_REALLOC.
21702
21703         * lib/mountlist.h (ME_DUMMY): Don't count entries of type `auto' as
21704         dummy ones.  At least on GNU/Linux systems, `auto' means something
21705         else.
21706         From Michael Stone.
21707
21708 2002-11-21  Bruno Haible  <bruno@clisp.org>
21709
21710         Remove case insensitive option matching.
21711         * lib/argmatch.h (argcasematch): Remove declaration.
21712         (ARGCASEMATCH): Remove macro.
21713         (__xargmatch_internal): Remove case_sensitive argument.
21714         (XARGMATCH): Update.
21715         (XARGCASEMATCH): Remove macro.
21716         * lib/argmatch.c (argmatch): Renamed from __argmatch_internal. Remove
21717         case_sensitive argument.
21718         (argcasematch): Remove function.
21719         (__xargmatch_internal): Remove case_sensitive argument.
21720         (main): Use XARGMATCH instead of XARGCASEMATCH.
21721
21722         * lib/xmalloc.c: Change compile-time error message. Add comment about
21723         required autoconf version.
21724
21725 2002-11-20  Paul Eggert  <eggert@twinsun.com>
21726
21727         Merge argmatch cleanups from Bison.  Assume C89.
21728
21729         * lib/argmatch.c: Include config.h here, not in argmatch.h.
21730         Include stdlib.h, for EXIT_FAILURE.
21731         Always include <string.h>, since we assume C89.
21732         (EXIT_FAILURE): Remove pre-C89 bug workaround.
21733         * lib/argmatch.h: Do not include <config.h> or <sys/types.h>.
21734         Include <stddef.h> instead, since it's all we need for size_t.
21735         (PARAMS): Remove.  All uses removed.
21736         (ARRAY_CARDINALITY): Do not bother to #undef.
21737         (ARRAY_CARDINALITY, ARGMATCH, ARGCASEMATCH, invalid_arg,
21738         ARGMATCH_VALID, XARGMATCH, XARGCASEMATCH):
21739         Remove unnecessary parentheses.
21740         (ARGMATCH_VALID, XARGMATCH, XARGCASEMATCH):
21741         Insert necessary parentheses.
21742         (ARGMATCH_CONSTRAINT, ARGMATCH_VERIFY): New macros.
21743         (ARGMATCH_ASSERT): Use ARGMATCH_CONSTRAINT.
21744
21745 2002-11-19  Bruno Haible  <bruno@clisp.org>
21746
21747         * lib/mbswidth.c: Include mbswidth.h right at the beginning.
21748         * lib/mbswidth.h: Include <stddef.h>, for size_t.
21749
21750         * lib/mbswidth.h (PARAMS): Remove macro.
21751         (mbswidth, mbsnwidth): Use ANSI C function declarations.
21752         * lib/mbswidth.c (mbswidth, mbsnwidth): Likewise.
21753
21754         * lib/gcd.h (PARAMS): Remove macro.
21755         (gcd): Use ANSI C function declarations.
21756         * lib/gcd.c (gcd): Likewise.
21757
21758 2002-11-15  Bruno Haible  <bruno@clisp.org>
21759
21760         * lib/strcspn.c: Include <stddef.h>.
21761         (strcspn): Use ANSI C function declaration. Change return type to
21762         size_t. Use NULL.
21763         * lib/strpbrk.c: Minimize diffs to glibc. Include <stddef.h>.
21764         (strpbrk): Use NULL.
21765         * lib/strpbrk.h (PARAMS): Remove macro.
21766         (strpbrk): Use ANSI C function declaration.
21767         * lib/strstr.c: Don't include <sys/types.h>.
21768         * lib/strstr.h (PARAMS): Remove macro.
21769         (strstr): Use ANSI C function declarations.
21770
21771 2002-11-14  Karl Berry  <karl@gnu.org>
21772
21773         * config/mkinstalldirs: `do' on separate line, instead of
21774         `for var; do'.
21775
21776 2002-11-06  Bruno Haible  <bruno@clisp.org>
21777
21778         * lib/gcd.h (gcd): Change argument type to 'unsigned long'.
21779         * lib/gcd.c (gcd): Likewise.
21780
21781 2002-11-05  Bruno Haible  <bruno@clisp.org>
21782
21783         * lib/gcd.h: New file, from gettext-0.11.5.
21784         * lib/gcd.c: New file, from gettext-0.11.5.
21785
21786 2002-11-05  Bruno Haible  <bruno@clisp.org>
21787
21788         * lib/error.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
21789         * lib/getopt.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
21790         * lib/obstack.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
21791         * lib/regex.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
21792
21793         * lib/argmatch.c: Include gettext.h instead of <locale.h> and
21794         <libintl.h>.
21795         * lib/makepath.c: Include gettext.h instead of <locale.h> and
21796         <libintl.h>.
21797
21798         * lib/closeout.c: Include gettext.h instead of <libintl.h>.
21799         * lib/human.c: Include gettext.h instead of <libintl.h>.
21800         * lib/quotearg.c: Include gettext.h instead of <libintl.h>.
21801         * lib/rpmatch.c: Include gettext.h instead of <libintl.h>.
21802         * lib/unicodeio.c: Include gettext.h instead of <libintl.h>.
21803         * lib/userspec.c: Include gettext.h instead of <libintl.h>.
21804         * lib/version-etc.c: Include gettext.h instead of <libintl.h>.
21805         * lib/xmalloc.c: Include gettext.h instead of <libintl.h>.
21806         (textdomain): Remove definition.
21807         * lib/xmemcoll.c: Include gettext.h instead of <libintl.h>.
21808
21809         * lib/long-options.c: Remove include of <libintl.h> and definition of
21810         _.
21811         * lib/same.c: Remove include of <libintl.h> and definition of _.
21812
21813 2002-11-04  Owen Taylor  <otaylor@redhat.com>
21814
21815         * lib/config.charset: A few additions for Solaris.
21816
21817 2002-11-04  Bruno Haible  <haible@clisp.cons.org>
21818
21819         Make it possible to build libcharset with CC=gcc CFLAGS="-x c++".
21820         * lib/localcharset.c (locale_charset): Declare as extern "C".
21821
21822 2002-11-04  Bruno Haible  <haible@clisp.cons.org>
21823
21824         * lib/config.charset: msdos in uk_UA uses CP1125.
21825
21826 2002-11-04  Bruno Haible  <bruno@clisp.org>
21827
21828         * lib/stpcpy.h: New file, from GNU gettext-0.11.5.
21829         * lib/strcase.h: New file, from GNU gettext-0.11.5.
21830         * lib/strpbrk.h: New file, from GNU gettext-0.11.5.
21831         * lib/strstr.h: New file, from GNU gettext-0.11.5.
21832         * lib/xgetcwd.h: New file, from GNU gettext-0.11.5.
21833
21834 2002-11-04  Bruno Haible  <bruno@clisp.org>
21835
21836         * lib/localcharset.c (locale_charset): Don't return an empty string.
21837
21838 2002-11-04  Bruno Haible  <bruno@clisp.org>
21839
21840         * lib/localcharset.c (get_charset_aliases): Add more Windows specific
21841         aliases.
21842
21843 2002-11-04  Bruno Haible  <bruno@clisp.org>
21844
21845         * lib/config.charset: Update for newest glibc. Add canonical names
21846         ISO-8859-14, KOI8-T, TCVN5712-1, GEORGIAN-PS.
21847
21848 2002-11-04  Bruno Haible  <bruno@clisp.org>
21849
21850         * lib/config.charset: Add support for NetBSD.
21851
21852 2002-11-04  Bruno Haible  <bruno@clisp.org>
21853
21854         * lib/config.charset [msdosdjgpp]: For Russian, use CP866.
21855
21856 2002-11-01  Bruno Haible  <bruno@clisp.org>
21857
21858         * configure.in: Add AC_CONFIG_AUX_DIR call.
21859         (AC_OUTPUT): Add m4/Makefile, lib/Makefile. Remove doc/Makefile,
21860         test/Makefile.
21861         * Makefile.in (subdirs): Add m4, lib. Remove doc, test.
21862
21863 2002-09-28  Karl Berry  <karl@gnu.org>
21864
21865         * config/srclist.txt: can't copy install-sh/mkinstalldirs from
21866         installed automake until the next release, since changes have been
21867         made.
21868
21869 2002-09-25  Karl Berry  <karl@gnu.org>
21870
21871         * lib/strdup.c: copy from libc/string (via ../config/srclist*).
21872         * lib/getopt*: copy from libc/posix.
21873         * lib/gettext.h: copy from gettext.
21874         * lib/.cppi-disable: add strdup.c, gettext.h.
21875
21876 2002-09-25  Karl Berry  <karl@gnu.org>
21877
21878         * config/srclist.txt: enable gettext.h check.
21879         * config/config.{guess,sub}: update from prep.
21880         * config/depcomp, install-sh, mdate-sh, missing, mkinstalldirs: update
21881                 from automake 1.6.3.
21882         See srclist*.
21883
21884 2002-08-23  Stefan Monnier  <monnier@cs.yale.edu>
21885
21886         * regex.c (PATFETCH): Remove the translating fetch.
21887         (PATFETCH_RAW): Rename to PATFETCH.
21888         (set_image_of_range): New fun.
21889         (SET_RANGE_TABLE_WORK_AREA): Use it.
21890         (regex_compile): Don't translate the pattern chars so eagerly.
21891         Only do it when inserting an `exactn' bytecode or when handling
21892         a char-range.
21893         (mutually_exclusive_p): Avoid empty statement.
21894
21895 2002-07-06  Jim Meyering  <meyering@lucent.com>
21896
21897         * m4/README: Don't mention Makefile.am.in.
21898         Outline how I've tested changes to .m4 files.  Yep, it's a pain.
21899
21900 2002-07-01  Jim Meyering  <meyering@lucent.com>
21901
21902         * lib/c-stack.c: Include sys/time.h.
21903         From Volker Borchert.
21904
21905 2002-06-26  Paul Eggert  <eggert@twinsun.com>
21906
21907         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for btowc.
21908
21909 2002-06-26  Paul Eggert  <eggert@twinsun.com>
21910
21911         * lib/fnmatch.c, fnmatch_loop.c (WIDE_CHAR_SUPPORT):
21912         New macro.  Use it uniformly instead of
21913         (defined HAVE_WCTYPE_H && defined HAVE_WCHAR_H).
21914         It also uses HAVE_BTOWC, to fix a porting bug on Solaris 2.5.1
21915         reported by Vin Shelton.
21916
21917 2002-06-22  Paul Eggert  <eggert@twinsun.com>
21918
21919         * lib/c-stack.h (segv_handler, c_stack_action) [! defined SA_SIGINFO]:
21920         Do not assume SA_SIGINFO behavior.
21921         Bug reported by Jim Meyering on NetBSD 1.5.2.
21922
21923 2002-06-22  Jim Meyering  <meyering@lucent.com>
21924
21925         * m4/c-stack.m4: New file, from diffutils-2.8.2.
21926         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_C_STACK.
21927
21928         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Don't require AC__GNU_SOURCE,
21929         now that configure.ac uses AC_GNU_SOURCE.
21930         (jm_MACROS): Rename: jm_FUNC_FNMATCH to AC_FUNC_FNMATCH_GNU.
21931         * m4/prereq.m4 (jm_PREREQ_EXCLUDE): Likewise, wrt jm_FUNC_FNMATCH.
21932
21933         Update to latest tools.  Suggestions from Paul Eggert.
21934         * m4/stdbool.m4: New file, from diffutils-2.8.2.
21935         * m4/gnu-source.m4: Update from diffutils-2.8.2.
21936         * m4/fnmatch.m4: Likewise.
21937         * m4/prereq.m4: Change each use of AC_CHECK_HEADERS(stdbool.h)
21938         to AC_HEADER_STDBOOL
21939
21940 2002-06-22  Jim Meyering  <meyering@lucent.com>
21941
21942         * lib/fnmatch.c (ISASCII, ISPRINT): Undefine, to avoid warning about
21943         redefinition due to Solaris 2.6's definition in /usr/include/sys/euc.h.
21944
21945 2002-06-22  Jim Meyering  <meyering@lucent.com>
21946
21947         * lib/c-stack.c, lib/c-stack.h: New files, from diffutils-2.8.2.
21948
21949         * lib/exitfail.c, exitfail.h: Likewise.
21950         * lib/Makefile.am (libfetish_a_SOURCES): Add exitfail.c and exitfail.h.
21951
21952         * lib/Makefile.am (libfetish_a_SOURCES): Add fnmatch_.h in place
21953         of fnmatch.h.
21954         (EXTRA_DIST): Add fnmatch_loop.c.
21955         (libfetish_a_SOURCES): Add c-stack.c and c-stack.h.
21956
21957         * lib/fnmatch_loop.c: New file, from diffutils-2.8.2.
21958         * lib/fnmatch.c: Update from diffutils-2.8.2.
21959         * lib/fnmatch_.h: New file.  From diffutils-2.8.2.
21960         * lib/fnmatch.h: Remove file.
21961
21962 2002-06-21  Jim Meyering  <meyering@lucent.com>
21963
21964         * m4/c-bs-a.m4: Add comment, from diffutils-2.8.2.
21965         * m4/mbrtowc.m4: Likewise.
21966
21967         * m4/mbstate_t.m4: Update from diffutils-2.8.2.
21968         * m4/mbswidth.m4: Reflect name change:
21969         s/AC_MBSTATE_T/AC_TYPE_MBSTATE_T.
21970         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Likewise.
21971
21972         * m4/lib-link.m4: Update from gettext-0.11.2.
21973         * m4/gettext.m4: Likewise.
21974
21975         * m4/jm-macros.m4 (jm_CHECK_ALL_HEADERS): Check for hurd.h.
21976         From Alfred M. Szmidt.
21977
21978 2002-06-18  Paul Eggert  <eggert@twinsun.com>
21979
21980         * lib/file-type.h: Report an error if neither S_ISREG nor
21981         S_IFREG is defined, instead of using a test specific to glibc
21982         2.2.  This should be safe, since POSIX requires S_ISREG and
21983         Unix Version 7 had S_IFREG.  We don't need to check for
21984         <sys/types.h> since we don't use any symbols that it defines.
21985
21986 2002-06-15  Richard Dawe  <richdawe@bigfoot.com>
21987
21988         * lib/Makefile.am (lstat.c, stat.c, .sin.sed): Use t-$@, rather than
21989         $@-t, so that each temporary file name is unique and valid in the first
21990         8 characters, for operation under DOS.
21991
21992 2002-06-15  Paul Eggert  <eggert@twinsun.com>
21993
21994         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Check for st_author.
21995
21996 2002-06-15  Jim Meyering  <meyering@lucent.com>
21997
21998         Work even with DJGPP 2.03, which lacks support for symlinks.
21999         From Richard Dawe.
22000         * lib/xstat.in (S_ISLNK): Define to 0 if neither S_ISLNK nor S_IFLNK
22001         is defined.
22002         * lib/lchown.c (S_ISLNK): Likewise.
22003
22004 2002-06-15  Jim Meyering  <meyering@lucent.com>
22005
22006         * lib/file-type.h (FILE_TYPE_H): Guard entire contents with #ifndef.
22007         For GNU libc 2.2 and newer, ensure that <sys/types.h> and <sys/stat.h>
22008         have been included before this file.
22009
22010 2002-06-14  Jim Meyering  <meyering@lucent.com>
22011
22012         * lib/file-type.h: Use the version from diffutils-2.8.2.
22013         * lib/file-type.c: Likewise.
22014
22015 2002-06-07  Jim Meyering  <meyering@lucent.com>
22016
22017         * m4/prereq.m4 (jm_PREREQ_STAT): Check for sys/param.h and sys/mount.h.
22018         They're needed at least for NetBSD 1.5.2.
22019         ($statxfs_includes): Include those same headers.
22020         ($statxfs_includes): Include sys/vfs.h if available.
22021         ($statxfs_includes): Likewise for sys/statvfs.h.
22022         Check for the following members in both structs statfs and statvfs:
22023         f_basetype, f_type, f_fsid.__val, f_namemax, f_namelen.
22024
22025 2002-06-01  Jim Meyering  <meyering@lucent.com>
22026
22027         * m4/d-type.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Rename macro:
22028         s/D_TYPE_IN_DIRENT/HAVE_STRUCT_DIRENT_D_TYPE/.
22029
22030 2002-05-28  Jim Meyering  <meyering@lucent.com>
22031
22032         * m4/readdir.m4 (jm_FUNC_READDIR): Undefine `mkdir', not `rmdir'.
22033         Reported by Volker Borchert.
22034
22035 2002-05-27  Jim Meyering  <meyering@lucent.com>
22036
22037         Fix a problem seen only on nonconforming systems whereby ls.c's
22038         use of localtime, and then of gettimeofday would cause trouble:
22039         the localtime call used to initialize rpl_gettimeofday's save
22040         mechanism would clobber ls's current local time information so
22041         that in any long listing the first file would always be listed
22042         with date 1970-01-01.  Analysis by Volker Borchert.
22043
22044         * lib/gettimeofday.c (localtime): Undefine.
22045         (rpl_localtime): New function.
22046
22047 2002-05-27  Jim Meyering  <meyering@lucent.com>
22048
22049         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER): Also replace
22050         localtime.
22051
22052         * m4/readdir.m4 (jm_FUNC_READDIR): Undefine `rmdir' so we don't try to
22053         use the replacement function; it wouldn't resolve at link time.
22054         Reported by Volker Borchert.
22055
22056 2002-05-22  Jim Meyering  <meyering@lucent.com>
22057
22058         * lib/Makefile.am (libfetish_a_SOURCES): Add file-type.c and
22059         file-type.h.
22060         * lib/file-type.h: New file.
22061         * lib/file-type.c (file_type): New file/function.  Extracted from
22062         diffutils.
22063
22064 2002-04-30  Jim Meyering  <meyering@lucent.com>
22065
22066         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_STAT.
22067
22068 2002-04-29  Paul Eggert  <eggert@twinsun.com>
22069
22070         * m4/prereq.m4 (jm_PREREQ_SIG2STR): Remove; all callers changed.
22071
22072 2002-04-29  Paul Eggert  <eggert@twinsun.com>
22073
22074         * m4/prereq.m4 (jm_PREREQ_HARD_LOCALE): Check for stdlib.h.
22075         Do not check for alloca.h (no longer used) or stdbool.h (was never
22076         used?).  Add AM_C_PROTOTYPES since hard-locale.h uses it.
22077
22078 2002-04-29  Paul Eggert  <eggert@twinsun.com>
22079
22080         * lib/hard-locale.c: Upgrade to version used in GNU Diffutils 2.8.1.
22081
22082 2002-04-29  Jim Meyering  <meyering@lucent.com>
22083
22084         * m4/jm-macros.m4 (jm_MACROS): Remove use of AC_FUNC_STRNLEN.
22085         * m4/prereq.m4: Add jm_PREREQ_STRNLEN.
22086         Use AC_FUNC_STRNLEN here instead.
22087
22088         * m4/jm-macros.m4: Don't AC_REQUIRE([AC_PROG_CC_STDC]).
22089         With autoconf-2.53a, it's part of AC_PROG_CC.
22090
22091 2002-04-28  Paul Eggert  <eggert@twinsun.com>
22092
22093         * m4/jm-macros.m4 (jm_MACROS): Add AC_REPLACE_FUNCS(sig2str).
22094         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_SIG2STR.
22095
22096 2002-04-28  Paul Eggert  <eggert@twinsun.com>
22097
22098         * lib/sig2str.h, lib/sig2str.c: New files.
22099         * lib/Makefile.am (libfetish_a_SOURCES): Add sig2str.h.
22100
22101 2002-04-28  Paul Eggert  <eggert@twinsun.com>
22102
22103         * lib/sig2str.h (SIGNUM_BOUND): Do not use WTERMSIG, to avoid
22104         depending on <sys/wait.h> and WTERMSIG.  Default to 64 instead
22105         of 127, since 64 is the largest conceivable number for ancient
22106         nonstandard hosts.
22107         * lib/sig2str.c: Do not include <sys/wait.h>; no longer needed.
22108
22109 2002-04-28  Jim Meyering  <meyering@lucent.com>
22110
22111         * lib/sig2str.c (WTERMSIG): Remove definition (unused).
22112
22113 2002-04-24  Jim Meyering  <meyering@lucent.com>
22114
22115         * m4/prereq.m4 (jm_PREREQ_HARD_LOCALE): New macro.
22116         (jm_PREREQ): Use it.
22117
22118         * m4/getloadavg.m4: Check for these headers: locale.h unistd.h
22119         mach/mach.h fcntl.h.
22120         Check for this function: setlocale.
22121
22122 2002-04-24  Jim Meyering  <meyering@lucent.com>
22123
22124         * lib/gettext.h: New file, from Gettext.
22125         * lib/Makefile.am (INCLUDES): Remove -I../intl.
22126         (libfetish_a_SOURCES): Add gettext.h.
22127
22128 2002-04-16  Jim Meyering  <meyering@lucent.com>
22129
22130         * m4/prereq.m4 (jm_PREREQ_READUTMP): Also check for these members:
22131         ut_pid, ut_id, ut_exit.
22132
22133 2002-04-16  Jim Meyering  <meyering@lucent.com>
22134
22135         * lib/readutmp.h (UT_TYPE): Remove definition (now in who.c).
22136         (HAVE_STRUCT_XTMP_UT_EXIT, HAVE_STRUCT_XTMP_UT_ID): Define.
22137         (HAVE_STRUCT_XTMP_UT_PID, HAVE_STRUCT_XTMP_UT_TYPE): Define.
22138
22139 2002-04-12  Jim Meyering  <meyering@lucent.com>
22140
22141         * m4/ls-mntd-fs.m4 (checking for getmntinfo function...): Remove
22142         now-bogus check for f_type in sys/mount.h.  Instead, just test for the
22143         existence of the getmntinfo function.  Needed for Darwin 5.3.
22144
22145         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Also detect when dirfd is a macro.
22146         This is necessary at least on Darwin 5.3.
22147
22148         * m4/jm-macros.m4: Don't AC_REPLACE(strnlen), now that we use
22149         AC_FUNC_STRNLEN.  Otherwise, we'd end up putting two copies of
22150         strnlen.o in the library, and that makes some versions of ranlib
22151         object.
22152
22153 2002-04-12  Jim Meyering  <meyering@lucent.com>
22154
22155         * lib/dirfd.h (dirfd): Elide prototype if dirfd is a macro.
22156
22157 2002-04-09  Jim Meyering  <meyering@lucent.com>
22158
22159         * m4/malloc.m4: (jm_FUNC_MALLOC): Change the `checking ...' message
22160         to be more precise.  Rather than saying we're checking whether the
22161         function `works', say what we're testing.
22162         * m4/realloc.m4 (jm_FUNC_REALLOC): Likewise.
22163         Reported by Bruno Haible.
22164
22165 2002-03-10  Jim Meyering  <meyering@lucent.com>
22166
22167         * lib/makepath.c (make_path): Remove a comma from a diagnostic.
22168         Suggestion from Santiago Vila.
22169
22170 2002-03-08  Jim Meyering  <meyering@lucent.com>
22171
22172         * lib/rename.c: Mention that this wrapper is needed also on
22173         mips-dec-ultrix4.4 systems.
22174
22175 2002-03-02  Jim Meyering  <meyering@lucent.com>
22176
22177         * lib/gettime.c (gettime): Test HAVE_CLOCK_GETTIME,
22178         not HAVE_CLOCK_SETTIME.
22179
22180 2002-02-27  Paul Eggert  <eggert@twinsun.com>
22181
22182         * m4/jm-macros.m4 (jm_MACROS): Do not replace stime; no longer used.
22183         Check for clock_settime.
22184
22185 2002-02-27  Paul Eggert  <eggert@twinsun.com>
22186
22187         * lib/nanosleep.h: Rename to....
22188         * lib/timespec.h: New name for nanosleep.h.  All uses changed.
22189
22190         * lib/gettime.c: New file.
22191         * lib/settime.c: New file.
22192         * lib/stime.c: Remove.
22193
22194         * lib/Makefile.am (libfetish_a_SOURCES): Add gettime.c, settime.c,
22195         timespec.h.  Remove nanosleep.h.
22196
22197 2002-02-25  Paul Eggert  <eggert@twinsun.com>
22198
22199         * m4/acl.m4: New file.
22200         * m4/jm-macros.m4 (jm_MACROS): Require AC_FUNC_ACL.
22201         Do not check for acl or sys/acl.h, as AC_FUNC_ACL does that now.
22202
22203 2002-02-25  Paul Eggert  <eggert@twinsun.com>
22204
22205         * lib/acl.c, lib/acl.h: New files.
22206         * lib/Makefile.am (libfetish_a_SOURCES): Add acl.h, acl.c.
22207
22208 2002-02-24  Jim Meyering  <meyering@lucent.com>
22209
22210         * lib/strnlen.c (strnlen): Define-away/undef so that an inconsistent
22211         prototype in string.h (on at least AIX4.3.2.0 w/gcc-2.95.3) doesn't
22212         cause trouble.  Reported by Nelson Beebe.
22213
22214 2002-02-23  Paul Eggert  <eggert@twinsun.com>
22215
22216         * lib/path-concat.c (xpath_concat): Reorder code to pacify
22217         compilers that don't know that xalloc_die never returns.
22218
22219 2002-02-20  Jim Meyering  <meyering@lucent.com>
22220
22221         * lib/getdate.c: Regenerate using bison-1.33.
22222
22223 2002-02-17  Jim Meyering  <meyering@lucent.com>
22224
22225         * config/config.guess (main): Don't use `head -1'; it's no longer
22226         portable. Use `sed 1q' instead.
22227
22228 2002-02-16  gettextize  <bug-gnu-gettext@gnu.org>
22229
22230         * m4/codeset.m4: Upgrade to gettext-0.11.
22231         * m4/gettext.m4: Upgrade to gettext-0.11.
22232         * m4/glibc21.m4: Upgrade to gettext-0.11.
22233         * m4/iconv.m4: Upgrade to gettext-0.11.
22234         * m4/isc-posix.m4: Upgrade to gettext-0.11.
22235         * m4/lcmessage.m4: Upgrade to gettext-0.11.
22236         * m4/lib-ld.m4: New file, from gettext-0.11.
22237         * m4/lib-link.m4: New file, from gettext-0.11.
22238         * m4/lib-prefix.m4: New file, from gettext-0.11.
22239         * m4/progtest.m4: Upgrade to gettext-0.11.
22240
22241 2002-02-15  Paul Eggert  <eggert@twinsun.com>
22242
22243         * m4/prereq.m4 (jm_PREREQ_POSIXVER): New macro.
22244         (jm_PREREQ): Use it.
22245
22246 2002-02-15  Paul Eggert  <eggert@twinsun.com>
22247
22248         * lib/posixver.c, lib/posixver.h: New files.
22249         * lib/Makefile.am (libfetish_a_SOURCES): Add them.
22250
22251 2002-02-02  Paul Eggert  <eggert@twinsun.com>
22252             Bruno Haible  <bruno@clisp.org>
22253
22254         * lib/unicodeio.h (print_unicode_char): Add exit_on_error argument.
22255         (fwrite_success_callback): New declaration.
22256         * lib/unicodeio.c (unicode_to_mb): New function, extracted from
22257         print_unicode_char. Call failure callback instead of error.
22258         (fwrite_success_callback): New function.
22259         (exit_failure_callback): New function.
22260         (fallback_failure_callback): New function.
22261         (print_unicode_char): Call unicode_to_mb.
22262
22263 2002-01-26  Jim Meyering  <meyering@lucent.com>
22264
22265         * m4/jm-macros.m4 (jm_MACROS): Require autoconf-2.52g.
22266         * m4/strnlen.m4: Remove file, now that it's part of autoconf.
22267
22268 2002-01-26  Jim Meyering  <meyering@lucent.com>
22269
22270         * lib/Makefile.am (getdate$U.o): Depend on unlocked-io.h.
22271
22272 2002-01-22  Paul Eggert  <eggert@twinsun.com>
22273
22274         * m4/jm-macros.m4 (jm_MACROS): Require AC_FUNC_FSEEKO.
22275
22276 2002-01-22  Jim Meyering  <meyering@lucent.com>
22277
22278         * lib/Makefile.am (Makefile): Don't depend on $(BUILT_SOURCES).
22279         Otherwise, some versions of automake would omit the rule that makes
22280         Makefile from Makefile.in.
22281
22282 2002-01-21  Paul Eggert  <eggert@twinsun.com>
22283
22284         * lib/xmemcoll.h, lib/xmemcoll.c: New files.
22285         * lib/Makefile.am (libfetish_a_SOURCES): Add them.
22286         * lib/memcoll.c: Include errno.h, and declare errno if not defined.
22287         (memcoll): Set errno to zero if there is no error.
22288
22289         * lib/quotearg.c (quotearg_buffer_restyled):
22290         Fix bug with quoting buffers containing NUL when backslashing escapes.
22291         This bug was exposed by the other changes in this patch.
22292         (quotearg_n_options): New arg ARGSIZE.
22293         All callers changed.
22294         (quoting_options_from_style): New function.
22295         (quotearg_n_style): Use it.
22296         (quotearg_n_style_mem): New function.
22297
22298         * lib/quotearg.h (quotearg_n_style_mem): New function.
22299
22300 2002-01-19  Jim Meyering  <meyering@lucent.com>
22301
22302         * m4/jm-macros.m4 (jm_MACROS): Use AC_FUNC_STRNLEN.
22303         Remove useless quotes: DF_PROG="df".
22304         * m4/strnlen.m4: New file.
22305
22306 2002-01-16  Paul Eggert  <eggert@twinsun.com>
22307
22308         * lib/backupfile.c (ISDIGIT): Comment fix.
22309         * lib/getdate.y (ISDIGIT): Likewise.
22310         * lib/posixtm.c (ISDIGIT, year): Likewise.
22311         * lib/strverscmp.c (ISDIGIT): Likewise.
22312         * lib/userspec.c (ISDIGIT): Likewise.
22313
22314 2002-01-16  Jim Meyering  <meyering@lucent.com>
22315
22316         * lib/getdate.y: Add three semicolons, each just before a closing
22317         brace. Bison (as of version 1.31) no longer papers over that mistake.
22318
22319 2002-01-05  Jim Meyering  <meyering@lucent.com>
22320
22321         * lib/version-etc.c (version_etc_copyright): Update copyright year.
22322
22323 2001-12-19  Paul Eggert  <eggert@twinsun.com>
22324
22325         * lib/closeout.c (close_stdout_status): If ferror (stdout), do
22326         not silently exit merely because the output buffer happens to
22327         have nothing pending.
22328
22329 2001-12-18  Paul Eggert  <eggert@twinsun.com>
22330
22331         See the big note in ../ChangeLog.
22332         * lib/human.c (suffixes): Prefer K to k for 1024.
22333         (generate_suffix_backwards): New function.
22334         (human_readable_inexact): Use it.
22335         * lib/xstrtol.c (__xstrtol): If there is no number but there
22336         is a valid suffix, assume 1.  "MB" now means decimal, "MiB" binary.
22337         Accept 'K' as well as 'k'.
22338
22339 2001-12-15  Jim Meyering  <meyering@lucent.com>
22340
22341         * lib/regex.h (__restrict_arr): Update from libc.
22342
22343         * lib/mountlist.h (ME_REMOTE): Recognize file systems of type smbfs
22344         as `remote' if the name starts with `//'.  Suggested by Michael Stone.
22345         (STREQ): Define.
22346
22347 2001-12-14  Jim Meyering  <meyering@lucent.com>
22348
22349         * m4/jm-macros.m4 (jm_MACROS): Check for iswspace.
22350         Suggestion from Bruno Haible.
22351
22352 2001-12-10  Jim Meyering  <meyering@lucent.com>
22353
22354         * lib/linebuffer.c: Remove explicit declarations of xmalloc and
22355         xrealloc, Instead, include "xalloc.h".
22356         (initbuffer): Don't cast xmalloc return value to char*.
22357         (readline): Reword comment.
22358         Don't cast xrealloc return value to char*
22359         Return NULL, not 0.
22360
22361 2001-12-09  Jim Meyering  <meyering@lucent.com>
22362
22363         * lib/modechange.c (mode_compile): Add cast to avoid pedantic warning
22364         about `signed and unsigned type in conditional expression'.
22365         * lib/posixtm.c (posix_time_parse): Likewise.
22366
22367         * lib/xreadlink.c (xreadlink): Add cast to avoid a pedantic warning.
22368
22369         * lib/readtokens.c (readtoken): Declare an index to be of type unsigned
22370         to avoid a pedantic warning.
22371
22372         * lib/getstr.c: Don't include assert.h.
22373         (getstr): Remove warning-evoking assertions.
22374         Return -1 if offset parameter is out of bounds.
22375         Change the type of a local from int to size_t.
22376
22377         * lib/strftime.c (my_strftime_localtime_r): Include this function
22378         definition in the `#if ! HAVE_TM_GMTOFF' block.
22379
22380         * lib/xgethostname.c: Remove declarations of xmalloc and xrealloc.
22381         Include xalloc.h instead.
22382
22383 2001-12-02  Jim Meyering  <meyering@lucent.com>
22384
22385         * lib/tempname.c: Don't declare getenv, thus reverting the change of
22386         2001-11-18.  It's no longer necessary, now that stdlib.h is always
22387         included.
22388
22389         * lib/regex.c [!__BOUNDED_POINTERS__]: Define away __bounded,
22390         __unbounded, and __ptrvalue.  Reported by Uwe H. Steinfeld.
22391
22392 2001-11-30  Akim Demaille  <akim@epita.fr>
22393
22394         * lib/xstrdup.c: Include xalloc.h, so that xstrdup is declared
22395         before being defined.
22396
22397 2001-11-27  Paul Eggert  <eggert@twinsun.com>
22398
22399         * lib/quotearg.h (quotearg_n, quotearg_n_style):
22400         First arg is int, not unsigned.
22401         * lib/quotearg.c (quotearg_n, quotearg_n_style): Likewise.
22402         (SIZE_MAX, UINT_MAX): New macros.
22403         (quotearg_n_options): Abort if N is negative.
22404         Avoid overflow check on hosts where size_t is 64 bits and int
22405         is 32 bits, as overflow is impossible there.
22406         Fix off-by-one typo that caused unnecessary reallocation.
22407
22408 2001-11-27  Jim Meyering  <meyering@lucent.com>
22409
22410         * lib/tempname.c: Merge with version from libc.
22411         * lib/regex.c: Likewise.
22412
22413         * lib/tempname.c: Include stdlib.h unconditionally.  On some old
22414         systems for which STDC_HEADERS is 0, it was not included, resulting in
22415         a warning about an integer-to-pointer conversion problem with getenv.
22416         Reported by Volker Borchert.
22417
22418 2001-11-26  Jim Meyering  <meyering@lucent.com>
22419
22420         * lib/gtod.h: Remove file.
22421         * lib/Makefile.am (libfetish_a_SOURCES): Remove gtod.h.
22422         * lib/gettimeofday.c: Don't include gtod.h.
22423         (GTOD_init): Remove function.
22424         (rpl_gettimeofday): Do its job here instead, rather than aborting.
22425         Suggestion from Volker Borchert.
22426
22427 2001-11-23  Jim Meyering  <meyering@lucent.com>
22428
22429         * lib/hash.h (struct hash_table): Don't define here.  Merely declare
22430         it.
22431         * lib/hash.c (struct hash_table): Define it here instead.
22432
22433 2001-11-22  Jim Meyering  <meyering@lucent.com>
22434
22435         * lib/hash.h: Bracket contents of file with #ifndef HASH_H_ ... #endif.
22436
22437 2001-11-20  Jim Meyering  <meyering@lucent.com>
22438
22439         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Update comment to reflect that
22440         SunOS 4.1.4 and Solaris 2.5.1 lose, too.
22441
22442 2001-11-19  Jim Meyering  <meyering@lucent.com>
22443
22444         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Don't bother with a temporary
22445         directory.  Use "conftestXXXXXX" as the template.
22446         Suggestion from Paul Eggert.
22447
22448         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Close each descriptor
22449         immediately, so the test doesn't mistakenly hit the max-open-files
22450         limit.
22451
22452 2001-11-18  Paul Eggert  <eggert@twinsun.com>
22453
22454         * lib/tempname.c (TMP_MAX): Remove; no longer needed.
22455         (TEMPORARIES): New macro.
22456         (__gen_tempname): Use TEMPORARIES rather than TMP_MAX.  This
22457         removes an artificial limitation (e.g. HP-UX 10.20, where
22458         TMP_MAX is 17576).
22459
22460 2001-11-18  Jim Meyering  <meyering@lucent.com>
22461
22462         * m4/prereq.m4 (jm_PREREQ_TEMPNAME): Check for declaration of getenv.
22463
22464 2001-11-18  Jim Meyering  <meyering@lucent.com>
22465
22466         * lib/tempname.c [!HAVE_DECL_GETENV]: Declare getenv to avoid warning
22467         on SunOS 4.
22468
22469         * lib/Makefile.am (Makefile): Depend on $(BUILT_SOURCES), so those
22470         files will be created before anything else.
22471
22472 2001-11-17  Paul Eggert  <eggert@twinsun.com>
22473
22474         * m4/jm-winsz1.m4 (jm_WINSIZE_IN_PTEM): Do not define
22475         WINSIZE_IN_PTEM if <termios.h> defines struct winsize.
22476
22477 2001-11-17  Jim Meyering  <meyering@lucent.com>
22478
22479         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): New file and macro.
22480         Prompted by a report from Bob Proulx.
22481
22482         * m4/jm-macros.m4 (jm_MACROS): Don't test for mkstemp here.
22483         Instead, require UTILS_FUNC_MKSTEMP.
22484
22485 2001-11-17  Jim Meyering  <meyering@lucent.com>
22486
22487         * m4/jm-macros.m4 (jm_MACROS): Remove code to set POW_LIBM.
22488         Now, that's done as part of AC_FUNC_STRTOD.
22489
22490 2001-11-17  Jim Meyering  <meyering@lucent.com>
22491
22492         * lib/modechange.c (mode_adjust): Fix error introduced on 1999-04-26
22493         that made e.g., `chmod a=,o=w,g=o F' cause F to be group readable
22494         rather than group writable.  Patch by Juan F. Codagnone.
22495
22496         * lib/readtokens.c: Remove explicit declarations of xmalloc and
22497         xrealloc, Instead, include "xalloc.h".
22498
22499         * lib/mountlist.c: Include unlocked-io.h after all system headers.
22500         Remove explicit declarations of xmalloc, xrealloc,
22501         and xstrdup.  Instead, include "xalloc.h".
22502
22503         * lib/argmatch.c, closeout.c, error.c, exclude.c: Include
22504         unlocked-io.h.
22505         * lib/fatal.c, getdate.y, getpass.c, getstr.c, getusershell.c:
22506         Likewise.
22507         * lib/mountlist.c, posixtm.c, readtokens.c, readutmp.c: Likewise.
22508
22509         * lib/regex.c, sha.c, version-etc.c, yesno.c: Likewise.
22510         Reported by Padraig Brady.
22511
22512         * lib/mkstemp.c: #undef mkstemp.
22513         Include config.h.
22514         (rpl_mkstemp): Rename from mkstemp.
22515         Protoize.
22516
22517 2001-11-16  Jim Meyering  <meyering@lucent.com>
22518
22519         * lib/physmem.c [HAVE_SYS_PSTAT_H]: Include <sys/pstat.h>.
22520         (physmem_total) [HAVE_PSTAT_GETSTATIC]: If sysconf couldn't be used to
22521         determine the amount of total physical memory, use pstat_getstatic.
22522         HPUX-11 doesn't define _SC_PHYS_PAGES.
22523         (physmem_available) [HAVE_PSTAT_GETSTATIC && HAVE_PSTAT_GETDYNAMIC]:
22524         If sysconf couldn't be used to determine the amount of available
22525         physical memory, use both pstat_getstatic and pstat_getdynamic.
22526         Based on a patch from Bob Proulx.
22527
22528 2001-11-10  Jim Meyering  <meyering@lucent.com>
22529
22530         * m4/prereq.m4 (jm_PREREQ_PHYSMEM): New function.
22531         (jm_PREREQ): Use it.
22532
22533 2001-11-09  Jim Meyering  <meyering@lucent.com>
22534
22535         * m4/jm-macros.m4: Require autoconf-2.52f.
22536         (AC_FUNC_ERROR_AT_LINE, AC_FUNC_OBSTACK, AC_FUNC_STRTOD):
22537         Use these AC_-prefixed names, not the AM_-prefixed ones.
22538
22539         * m4/afs.m4 (jm_AFS): Quote the body.  Patch by Akim Demaille.
22540
22541 2001-11-05  Jim Meyering  <meyering@lucent.com>
22542
22543         * lib/xstat.in (slash_aware_lstat): Correct a misleading comment.
22544
22545 2001-11-04  Jim Meyering  <meyering@lucent.com>
22546
22547         * m4/fpending.m4: Remove unused cruft that saved, set, and restored
22548         $DEFS.
22549
22550 2001-11-03  Jim Meyering  <meyering@lucent.com>
22551
22552         * m4/jm-glibc-io.m4n (jm_FUNC_GLIBC_UNLOCKED_IO): Quote first arg
22553         of AC_DEFUN.
22554
22555         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Rework so dirfd.c doesn't have to
22556         know the name of the variable in the macro definition.
22557
22558 2001-11-03  Jim Meyering  <meyering@lucent.com>
22559
22560         * lib/argmatch.h (ARGMATCH_TO_ARGUMENT): Remove casts of first two args
22561         in argmatch_to_argument call.
22562
22563         * lib/dirfd.c (dirfd): Reflect the fact that DIR_TO_FD now takes an
22564         argument.
22565
22566         * lib/hash.c (hash_clear): Fix a bug that could lead to an infloop or
22567         e.g., a fault due to an attempt to free a NULL pointer.
22568
22569 2001-11-01  Jim Meyering  <meyering@lucent.com>
22570
22571         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): New macro.
22572         * m4/jm-macros.m4 (jm_MACROS): Require UTILS_FUNC_DIRFD.
22573
22574 2001-11-01  Jim Meyering  <meyering@lucent.com>
22575
22576         * lib/dirfd.c, lib/dirfd.h: New files.
22577         * lib/Makefile.am (libfetish_a_SOURCES): Add dirfd.h.
22578
22579         * lib/hash.c (hash_print) [TESTING]: Clean up.
22580
22581 2001-10-22  Paul Eggert  <eggert@twinsun.com>
22582
22583         * lib/hard-locale.c (alloca): Define to __builtin_alloca if __GNUC__,
22584         to avoid a warning if -Wall.
22585
22586 2001-10-22  Jeff Bailey  <jbailey@outpost.dnsalias.org>
22587
22588         * README: New file
22589         * doc/*: Add COPYING, COPYING.LIB, COPYING.DOC, fdl.texi
22590         (per RMS's instructions, this is now the canonical source)
22591         * lgpl/, gpl/: New directories.
22592
22593 2001-10-21  Paul Eggert  <eggert@twinsun.com>
22594
22595         * lib/regex.c (uintptr_t): Remove macro and decl; it's config.h's job.
22596
22597 2001-10-21  Jim Meyering  <meyering@lucent.com>
22598
22599         * lib/obstack.c (_): Honor the setting of ENABLE_NLS.  Otherwise,
22600         this code would end up calling gettext even in packages built
22601         with --disable-nls.
22602         * lib/getopt.c (_): Likewise.
22603         * lib/regex.c (_): Likewise.
22604
22605 2001-10-20  Paul Eggert  <eggert@twinsun.com>
22606
22607         * m4/error.m4 (jm_PREREQ_ERROR):
22608         Do not invoke AC_CHECK_FUNCS with strerror_r, as
22609         AC_FUNC_STRERROR_R does that.
22610         Check for strerror declaration.
22611
22612         * m4/strerror_r.m4: Add copyright notice, as nontrivial m4 files
22613         are supposed to have them these days.
22614         (AC_FUNC_STRERROR_R): Always do char* test, so that it gets cached.
22615         Merge changes from latest Autoconf CVS.
22616         Rename ac_cv_func_strerror_r_works to ac_cv_func_strerror_r_char_p,
22617         and rename HAVE_WORKING_STRERROR_R to STRERROR_R_CHAR_P, since
22618         POSIX decided to standardize on the int flavor of strerror_r.
22619
22620 2001-10-20  Paul Eggert  <eggert@twinsun.com>
22621
22622         * lib/error.c (strerror_r): Do not declare unless !_LIBC.
22623         Do not check for HAVE_DECL_STRERROR_R missing unless STRERROR_R_CHAR_P.
22624         Use strerror_r that is only a macro, even if it is not a function.
22625         (strerror): Check for HAVE_DECL_STRERROR before declaring.
22626         (private_strerror): Use prototypes, not old-style function definition.
22627         (print_errno_message): New function.
22628         Support the POSIX 'int'-flavored strerror_r, as well as the traditional
22629         char*-flavored one.
22630         (error_tail, error, error_at_line): Use it.
22631
22632 2001-10-11  Jim Meyering  <meyering@lucent.com>
22633
22634         * lib/argmatch.c (argmatch_invalid): Use quotearg_n_style (0, ...
22635         and quote_n (1, ... to avoid clobbering a buffer.
22636
22637 2001-10-05  Jim Meyering  <meyering@lucent.com>
22638
22639         * lib/Makefile.am: (libfetish_a_SOURCES): Add hash-pjw.c and
22640         hash-pjw.h.
22641         * lib/hash-pjw.c: New file (factored out of fileutils' remove.c).
22642         * lib/hash-pjw.h: New file.
22643
22644 2001-09-30  Jim Meyering  <meyering@lucent.com>
22645
22646         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): See if
22647         `struct fsstat' has the `f_fstypename' member.
22648         Use that to define FS_TYPE, which is now used to make
22649         the getfsstat link test tighter.
22650
22651 2001-09-30  Jim Meyering  <meyering@lucent.com>
22652
22653         * lib/mountlist.c [MOUNTED_GETFSSTAT]:
22654         Include <sys/ucred.h>, for Apple Darwin.
22655         Include sys/mount.h and sys/fs_types.h only if available.
22656         (FS_TYPE): Define.
22657         (read_filesystem_list): Use FS_TYPE.
22658
22659 2001-09-29  Paul Eggert  <eggert@twinsun.com>
22660
22661         * lib/exclude.c (excluded_filename): 0 -> false, since it's
22662         a boolean context.
22663
22664 2001-09-29  Jim Meyering  <meyering@lucent.com>
22665
22666         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS)
22667         [one-argument getmntent function]): Include stdio.h before mntent.h.
22668         SunOS 4.1.x needs it for the declaration of `FILE'.
22669         Patch by Volker Borchert.
22670
22671         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS)
22672         Check for these headers: sys/param.h sys/ucred.h sys/mount.h
22673         sys/fs_types.h, and make the link-test for getfsstat guard #include
22674         directives with appropriate #if HAVE_*_H tests so that we can
22675         detect getfsstat on Apple Darwin1.3.7 systems.
22676         Reported by Nelson Beebe.
22677         Fix harmless typo in cache variable name: s/getsstat/getfsstat/.
22678
22679 2001-09-28  Paul Eggert  <eggert@twinsun.com>
22680
22681         Fix bug reported by Petter Reinholdtsen for HP-UX 10.20, which
22682         #defines strtoimax.  Also treat the other strto* functions
22683         like strtoimax.
22684
22685         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX):
22686         Check for strtoul and strtoumax,
22687         as those declarations are made even in the signed case.
22688         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX):
22689         Likewise, for strtol and strtoimax.
22690
22691 2001-09-28  Paul Eggert  <eggert@twinsun.com>
22692
22693         Fix bug reported by Petter Reinholdtsen for HP-UX 10.20, which
22694         #defines strtoimax.  Also treat the other strto* functions
22695         like strtoimax.
22696
22697         * lib/xstrtol.c (strtol): Do not declare if HAVE_DECL_STRTOL.
22698         (strtoul): Do not declare if HAVE_DECL_STRTOUL.
22699         (strtoimax, strtoumax): Do not declare if already defined as a macro.
22700
22701 2001-09-26  Jim Meyering  <meyering@lucent.com>
22702
22703         Most macros in unlocked-io.h had the wrong number of arguments.
22704         * lib/gen-uio: New script.
22705         (USE_UNLOCKED_IO): Define to 1 if not already defined.
22706         * lib/unlocked-io.hin: Remove file.
22707         * lib/Makefile.am (unlocked-io.h): Rewrite to use a separate script,
22708         rather than trying to embed it here.
22709         (EXTRA_DIST): Add gen-uio.  Remove unlocked-io.hin
22710         Reported by Padraig Brady.
22711
22712 2001-09-25  Volker Borchert  <bt@teknon.de>
22713
22714         * lib/gettimeofday.c (rpl_gettimeofday): Declare local variable
22715         `result'.
22716
22717 2001-09-24  Jim Meyering  <meyering@lucent.com>
22718
22719         * m4/gettext.m4: Use the version from gettext-0.10.40, not CVS.
22720
22721 2001-09-23  Jim Meyering  <meyering@lucent.com>
22722
22723         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Add a compile-test
22724         instead of the mere test for existence of mntent.h.  The latter
22725         would get a false-positive on AIX 3.4 systems.
22726         In the outer getmntent if-block, don't die if neither of the getmntent
22727         tests succeeds.  Instead, just fall through and continue with the
22728         remaining tests.
22729
22730 2001-09-23  Jim Meyering  <meyering@lucent.com>
22731
22732         * lib/mountlist.c: Remove useless parentheses in #if directives.
22733         (MOUNTED) [!defined MOUNTED]: Define to _PATH_MOUNTED, for when
22734         the deprecated MOUNTED symbol is no longer defined in mntent.h.
22735
22736 2001-09-22  Jim Meyering  <meyering@lucent.com>
22737
22738         * m4/gettext.m4: New file.  From gettext.
22739         * m4/lcmessage.m4: Sync with gettext -- this changes only comments.
22740         * m4/progtest.m4: Likewise
22741         * m4/isc-posix.m4: Decrement serial number to sync with gettext.
22742         * m4/glibc21.m4: Likewise.
22743
22744         * m4/libintl.m4: Remove.  No longer used.
22745
22746 2001-09-22  Jim Meyering  <meyering@lucent.com>
22747
22748         * lib/localcharset.c: Update from latest gettext.
22749         * lib/config.charset: Likewise.
22750
22751 2001-09-20  Jim Meyering  <meyering@lucent.com>
22752
22753         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX): Check for declaration of
22754         strtoimax.
22755         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Check for declaration of
22756         strtoumax.
22757
22758 2001-09-20  Jim Meyering  <meyering@lucent.com>
22759
22760         * lib/xstrtol.c (strtoimax): Guard declaration with
22761         `#if !HAVE_DECL_STRTOIMAX', rather than just `#ifndef strtoimax'.
22762         The latter fails because some systems (at least rs6000-ibm-aix4.3.3.0)
22763         have their own, conflicting declaration of strtoimax in sys/inttypes.h.
22764         (strtoumax): Likewise, for completeness (it wasn't necessary).
22765
22766 2001-09-17  Paul Eggert  <eggert@twinsun.com>
22767
22768         * lib/strtoimax.c (HAVE_LONG_LONG):
22769         Redefine to HAVE_UNSIGNED_LONG_LONG if unsigned.
22770         (strtoimax): Use sizeof (long), not sizeof strtol (ptr, endptr, base),
22771         to work around bug in IBM C compiler.
22772
22773 2001-09-17  Jim Meyering  <meyering@lucent.com>
22774
22775         * m4/chown.m4, fstypename.m4, getgroups.m4, gettimeofday.m4,
22776         * m4/jm-mktime.m4, lstat.m4, malloc.m4, memcmp.m4, mkdir-slash.m4,
22777         * m4/nanosleep.m4, putenv.m4, readdir.m4, realloc.m4, rename.m4,
22778         * m4/st_dm_mode.m4, stat.m4, strerror_r.m4, timespec.m4, utimbuf.m4,
22779         * m4/utimes.m4: Use AC_DEFINE rather than AC_DEFINE_UNQUOTED,
22780         whenever the right hand side need not be expanded by the shell.
22781
22782 2001-09-16  Paul Eggert  <eggert@twinsun.com>
22783
22784         * m4/fnmatch.m4 (jm_FUNC_FNMATCH): Remove test for GNU C
22785         library.  It's not correct, as some older glibcs are buggy.
22786         fnmatch wasn't fixed until glibc 2.2.
22787
22788         Use AC_DEFINE, not AC_DEFINE_UNQUOTED, as there's no
22789         special shell magic here.
22790
22791 2001-09-16  Jim Meyering  <meyering@lucent.com>
22792
22793         * m4/mkdir-slash.m4 (UTILS_FUNC_MKDIR_TRAILING_SLASH): New file/macro.
22794         * m4/jm-macros.m4: Require it.
22795
22796 2001-09-16  Jim Meyering  <meyering@lucent.com>
22797
22798         * lib/mkdir.c: New file.
22799
22800 2001-09-15  Jim Meyering  <meyering@lucent.com>
22801
22802         * m4/jm-macros.m4: Check for help2man.
22803
22804 2001-09-11  Jim Meyering  <meyering@lucent.com>
22805
22806         * m4/host-os.m4 (UTILS_HOST_OS): New file/macro.
22807         The body, by Paul Eggert, was moved here from configure.in.
22808         * m4/jm-macros.m4: Require UTILS_HOST_OS.
22809
22810 2001-09-04  Paul Eggert  <eggert@twinsun.com>
22811
22812         * m4/prereq.m4 (jm_PREREQ_XREADLINK): New macro.
22813         (jm_PREREQ): Use it.
22814
22815 2001-09-04  Paul Eggert  <eggert@twinsun.com>
22816
22817         * lib/xreadlink.c (xreadlink): Omit size_t* arg.  All uses changed.
22818         Use ssize_t, not int, to store result of readlink.
22819         Check for ssize_t overflow as well as size_t overflow,
22820         as POSIX says the result of readlink is implementation-defined
22821         when ssize_t overflows.
22822         Remove unnecessary cast to char*.
22823         Use free+malloc instead of realloc, as the storage doesn't need
22824         to be preserved and it's clearer and can be more efficient that way.
22825         (SIZE_MAX, SSIZE_MAX): New macros, if <limits.h> doesn't declare.
22826         * lib/xreadlink.h (xreadlink): Update prototype.
22827
22828 2001-09-04  Paul Eggert  <eggert@twinsun.com>
22829
22830         * lib/xgetcwd.c: Revert some of the previous change; intead,
22831         fix the HAVE_GETCWD_NULL code to behave more like the
22832         !HAVE_GETCWD_NULL code used to.
22833
22834         Include "xalloc.h".
22835         (xgetcwd): Do not return NULL when memory is exhausted; instead,
22836         invoke xalloc_die.
22837
22838 2001-09-03  Paul Eggert  <eggert@twinsun.com>
22839
22840         * m4/prereq.m4 (jm_PREREQ_XGETCWD): Check for limits.h and
22841         sys/param.h, as pathmax.h includes them.
22842
22843 2001-09-03  Paul Eggert  <eggert@twinsun.com>
22844
22845         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_XGETCWD.
22846         (jm_PREREQ_XGETCWD): New macro.
22847
22848         * m4/getcwd.m4: New file.
22849
22850 2001-09-03  Paul Eggert  <eggert@twinsun.com>
22851
22852         * lib/xgetcwd.c: Fix the !HAVE_GETCWD_NULL code to behave more
22853         like the HAVE_GETCWD_NULL code.
22854         Include pathmax.h if not HAVE_GETCWD.
22855         Do not include xalloc.h.
22856         (INITIAL_BUFFER_SIZE): New symbol.
22857         Do not use xmalloc / xrealloc, since the caller is responsible for
22858         handling errors.  Preserve errno around `free' during failure.
22859         Do not overrun buffer when using getwd.
22860
22861 2001-09-03  Paul Eggert  <eggert@twinsun.com>
22862
22863         * lib/xgetcwd.c (xgetcwd): Use HAVE_GETCWD_NULL, not (defined
22864         __GLIBC__ && __GLIBC__ >= 2), to decide whether to use
22865         getcwd (NULL, 0).
22866
22867 2001-09-03  Paul Eggert  <eggert@twinsun.com>
22868
22869         * lib/exclude.c (fnmatch_no_wildcards): Fix confusion between
22870         usage of FNM_CASEFOLD and FNM_LEADING_DIR.  The bug was
22871         spotted by Jim Meyering.
22872
22873 2001-09-03  Jim Meyering  <meyering@lucent.com>
22874
22875         * lib/xreadlink.c (xreadlink): Preserve errno around `free' during
22876         failure.
22877
22878 2001-09-02  Jim Meyering  <meyering@lucent.com>
22879
22880         * lib/error.c: Update from GNU libc.
22881
22882 2001-09-01  Jim Meyering  <meyering@lucent.com>
22883
22884         * m4/jm-macros.m4 (jm_MACROS): Check for canonicalize_file_name.
22885         Used by df.
22886
22887 2001-09-01  Jim Meyering  <meyering@lucent.com>
22888
22889         * lib/xreadlink.c: New file.
22890         * lib/xreadlink.h: New file.
22891         * lib/Makefile.am (libfetish_a_SOURCES): Add xreadlink.c and
22892         xreadlink.h.
22893
22894         * lib/regex.c (uintptr_t) [!_LIBC]: Define to private_uintptr_t, so it
22895         doesn't conflict with sparc Solaris 7's definition in
22896         /usr/include/sys/int_types.h.
22897
22898         * lib/exclude.c: Use `""', not `<>' to #include non-system header
22899         files.
22900         (fnmatch_no_wildcards): Rewrite not to use function names, strcasecmp
22901         and strncasecmp as r-values.  Unixware didn't have declarations.
22902
22903 2001-08-31  Paul Eggert  <eggert@twinsun.com>
22904
22905         * lib/xstrtol.h: Add copyright notice.
22906         (_DECLARE_XSTRTOL): Improve quality of diagnostic for
22907         LONGINT_INVALID_SUFFIX_CHAR.
22908
22909 2001-08-31  Paul Eggert  <eggert@twinsun.com>
22910
22911         * lib/xstrtol.c (strtoimax): New decl.
22912
22913 2001-08-31  Paul Eggert  <eggert@twinsun.com>
22914
22915         * lib/xgetcwd.c: Don't include pathmax.h.
22916         Include stdlib.h and unistd.h if available.
22917         Include xalloc.h.
22918         (xmalloc, xstrdup, free): Remove decls.
22919         (xgetcwd): Don't assume sizes fit in unsigned.
22920         Check for overflow when computing sizes.
22921         Simplify reallocation code.
22922
22923 2001-08-31  Paul Eggert  <eggert@twinsun.com>
22924
22925         * lib/savedir.c (savedir): Remove size parameter, as POSIX says that
22926         a directory's st_size can have an arbitrary value, so the old
22927         usage could waste an arbitrary amount of memory.  All uses
22928         changed.
22929         * lib/savedir.h: Update prototype.
22930
22931 2001-08-31  Paul Eggert  <eggert@twinsun.com>
22932
22933         * lib/Makefile.am (libfetish_a_SOURCES): Remove strtoxmax.c.
22934
22935         * lib/strtoimax.c: Renamed from strtoxmax.c, removing the
22936         old strtoimax.c.
22937
22938         Also, make the following further changes to make this file's
22939         configuration more similar to that of strtol.c:
22940         (UNSIGNED): Renamed from STRTOUXMAX_UNSIGNED.  All uses changed.
22941         (strtoumax, uintmax_t, strtoull, strtol): Remove.
22942         (intmax_t, strtoimax, strtol, strtoll): New macros, if UNSIGNED.
22943         (strtoimax): Renamed from strtoumax.  All uses of unsigned values
22944         changed to signed values.
22945
22946         And make the following changes as well:
22947         Fix copyright notice, as 1999 was missing.
22948         (verify): New macro.
22949         (strtoimax): Check sizes at compile-time, not run-time.
22950         Prefer strtol to strtoll if both work.
22951         (main): Remove; it was not that useful and was a pain to maintain.
22952
22953         * lib/strtoumax.c: Include strtoimax.c, not strtouxmax.c.
22954
22955 2001-08-31  Jim Meyering  <meyering@lucent.com>
22956
22957         * lib/xgetcwd.c (xgetcwd): Reorganize to avoid some duplication.
22958         Use an initial, malloc'd, buffer of length 128 rather than
22959         a statically allocated one of length 1024.
22960
22961 2001-08-30  Paul Eggert  <eggert@twinsun.com>
22962
22963         Simplify code, partly by assuming autoconf 2.52 semantics.
22964
22965         * m4/Makefile.am (EXTRA_DIST): Remove uintmax_t.m4.
22966
22967         * m4/inttypes.m4 (AC_PREREQ): Bump to 2.52.
22968         (jm_AC_HEADER_INTTYPES_H): Remove; now done by autoconf in 2.52.
22969         All uses removed.
22970         (jm_AC_TYPE_INTMAX_T, jm_AC_TYPE_UINTMAX_T):
22971         Move AC_REQUIRE to next-to-top level, to avoid confusion.
22972         Use 2.52's AC_CHECK_TYPE instead of merely looking for the header.
22973         * m4/prereq.m4 (jm_PREREQ_HUMAN): Don't require
22974         jm_AC_HEADER_INTTYPES_H.
22975         * m4/jm-macros.m4 (jm_MACROS): Likewise.
22976
22977         * m4/uintmax_t.m4: Remove, as it duplicates inttypes.m4.
22978
22979         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX):
22980         Quote first arg of AC_DEFUN.
22981         Require jm_AC_TYPE_UINTMAX_T and jm_AC_TYPE_UNSIGNED_LONG_LONG
22982         since they are needed to parse the include file even if we need
22983         only xstrtoimax.  Simplify logic behind the args to AC_REPLACE.
22984         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Likewise,
22985         but with opposite signedness.
22986
22987 2001-08-30  Paul Eggert  <eggert@twinsun.com>
22988
22989         Merge 'exclude' changes from tar 1.13.22.
22990         This fixes one or two unlikely storage allocation overflow bugs,
22991         but doesn't change user-visible behavior otherwise.
22992
22993 2001-08-30  Paul Eggert  <eggert@twinsun.com>
22994
22995         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_EXCLUDE.
22996         (jm_PREREQ_EXCLUDE): New macro.
22997
22998 2001-08-30  Paul Eggert  <eggert@twinsun.com>
22999
23000         * lib/quotearg.c: BSD/OS 4.1 wchar.h requires FILE and struct
23001         tm to be declared.
23002
23003 2001-08-30  Paul Eggert  <eggert@twinsun.com>
23004
23005         * lib/hash.c: Remove '2001' from copyright notice.
23006
23007 2001-08-30  Paul Eggert  <eggert@twinsun.com>
23008
23009         * lib/full-write.h: New file.
23010         * lib/Makefile.am (libfetish_a_SOURCES): Add full-write.h.
23011         * lib/full-write.c: Correct credits, as cccp.c no longer
23012         exists and anyway it was so heavily changed from the old cccp
23013         code as to be unrecognizable.  Include full-write.h.
23014         (full_write) Return size_t, with short writes meaning failure.
23015         All callers changed.  This fixes a bug with large buffers
23016         on 64-bit hosts.
23017         * lib/utime.c: Include full-write.h.
23018
23019 2001-08-30  Paul Eggert  <eggert@twinsun.com>
23020
23021         * lib/exclude.c (bool): Declare, perhaps by including stdbool.h.
23022         (<sys/types.h>): Include only if HAVE_SYS_TYPES_H.
23023         (<stdlib.h>, <string.h>, <strings.h>, <inttypes.h>, <stdint.h>):
23024         Include if available.
23025         (<xalloc.h>): Include
23026         (SIZE_MAX): Define if <stdint.h> or <inttypes.h> doesn't.
23027         (verify): New macro.  Use it to verify that EXCLUDE macros do not
23028         collide with FNM macros.
23029         (struct patopts): New struct.
23030         (struct exclude): Use it, as exclude patterns now come with options.
23031         (new_exclude): Support above changes.
23032         (new_exclude, add_exclude_file):
23033         Initial size must now be a power of two to simplify overflow checking.
23034         (free_exclude, fnmatch_no_wildcards): New function.
23035         (excluded_filename): No longer requires options arg, as the options
23036         are determined by add_exclude.  Now returns bool, not int.
23037         (excluded_filename, add_exclude):
23038         Add support for the fancy new exclusion options.
23039         (add_exclude, add_exclude_file): Now takes int options arg.
23040         Check for arithmetic overflow when computing sizes.
23041         (add_exclude_file): xrealloc might modify errno, so don't
23042         realloc until after errno might be used.
23043
23044         * lib/exclude.h (EXCLUDE_ANCHORED, EXCLUDE_INCLUDE,EXCLUDE_WILDCARDS):
23045         New macros.
23046         (free_exclude): New decl.
23047         (add_exclude, add_exclude_file): Now takes int options arg.
23048         (excluded_filename): No longer requires options arg, as the options
23049         are determined by add_exclude.  Now returns bool, not int.
23050
23051 2001-08-30  Paul Eggert  <eggert@twinsun.com>
23052
23053         * lib/alloca.c (alloca): Arg is of type size_t, not unsigned.
23054
23055 2001-08-27  Jim Meyering  <meyering@lucent.com>
23056
23057         * lib/Makefile.am (libfetish_a_SOURCES): Add strtoxmax.c
23058
23059         * lib/version-etc.c (N_): Remove definition.
23060         Revert most of last change.
23061         Instead, simply don't mark the `Copyright...' string for translation.
23062         Based on advice from Paul Eggert.
23063
23064         * lib/strtoxmax.c: Tweak comment.
23065
23066 2001-08-26  Jim Meyering  <meyering@lucent.com>
23067
23068         * m4/jm-macros.m4: Require jm_AC_PREREQ_XSTRTOIMAX.
23069
23070         * m4/xstrtoimax.m4: New file.
23071         * m4/xstrtoumax.m4: Add comments explaining why we
23072         AC_REPLACE_FUNCS(strtol).
23073
23074 2001-08-26  Jim Meyering  <meyering@lucent.com>
23075
23076         * lib/version-etc.c (version_etc_copyright_fmt): Replace literal year
23077         of copyright with `%s' so translators don't get an untranslated
23078         message in 2002.
23079         (COPYRIGHT_YEAR): Define.
23080         (version_etc): Use fprintf rather than fputs.
23081         Suggestion from Ulrich Drepper.
23082
23083         * lib/Makefile.am (libfetish_a_SOURCES): Add xstrtoimax.c.
23084
23085         * lib/strtoll.c: New file, from GNU libc.
23086         * lib/xstrtoimax.c: New file.
23087
23088         * lib/xstrtol.h: Add xstrtoimax.
23089         * lib/strtoumax.c: New file.  Simply include "strtoumax.c".
23090         * lib/strtoimax.c: New file.  Likewise, but first define
23091         STRTOUXMAX_SIGNED.
23092
23093         * lib/strtoumax.c: Factor to work both for unsigned and signed types,
23094         ...
23095         * lib/strtoxmax.c: ... then renamed to this.
23096
23097 2001-08-18  Paul Eggert  <eggert@twinsun.com>
23098
23099         * m4/inttypes.m4: Add AC_PREREQ(2.13).
23100         (jm_AC_HEADER_INTTYPES_H): Test for intmax_t, too.
23101         (jm_AC_TYPE_INTMAX_T): New macro.
23102         (jm_AC_TYPE_UINTMAX_T): Moved here from uintmax_t.m4.
23103
23104         * m4/longlong.m4 (jm_AC_TYPE_LONG_LONG): New macro.
23105
23106         * m4/longlong.m4: Renamed from ulonglong.m4.
23107         * m4/inttypes.m4: Renamed from inttypes_h.m4.
23108         * m4/uintmax_t.m4: Removed.
23109
23110 2001-08-13  Paul Eggert  <eggert@twinsun.com>
23111
23112         * lib/Makefile.am (unlocked-io.h): Do not append "_unlocked" twice.
23113         Port to Solaris 8, where 'sed' requires a space after the 'r'
23114         command, and where sh dislikes "$/".  Clean up the spacing a bit.
23115         Redirect output to $tmp just once.
23116
23117 2001-08-12  Paul Eggert  <eggert@sic.twinsun.com>
23118
23119         * lib/addext.c (<errno.h>): Include.
23120         (errno): Declare if not defined.
23121         (addext): Work correctly when pathconf returns -1 and leaves
23122         errno alone because there is no limit.  Also, work even if
23123         pathconf returns a value greater than SIZE_MAX.
23124
23125 2001-08-12  Jim Meyering  <meyering@lucent.com>
23126
23127         * m4/afs.m4, assert.m4, bison.m4, check-decl.m4, chown.m4, d-ino.m4,
23128         d-type.m4, dos.m4, error.m4, fnmatch.m4, fpending.m4, fstypename.m4,
23129         fsusage.m4, ftruncate.m4, getgroups.m4, glibc.m4, gnu-source.m4,
23130         group-member.m4, jm-glibc-io.m4, jm-macros.m4, jm-mktime.m4,
23131         jm-winsz1.m4, jm-winsz2.m4, lchown.m4, lib-check.m4, libintl.m4,
23132         link-follow.m4, ls-mntd-fs.m4, lstat.m4, malloc.m4, mbrtowc.m4,
23133         mbstate_t.m4, mbswidth.m4, memcmp.m4, nanosleep.m4, perl.m4,
23134         prereq.m4, putenv.m4, readdir.m4, realloc.m4, regex.m4, rename.m4,
23135         rmdir-errno.m4, search-libs.m4, st_dm_mode.m4, st_mtim.m4, stat.m4,
23136         strftime.m4, timespec.m4, unlink-busy.m4, uptime.m4, utimbuf.m4,
23137         utime.m4, utimes.m4, xstrtoumax.m4:
23138         Quote the first argument in each use of AC_DEFUN.
23139
23140 2001-08-12  Jim Meyering  <meyering@lucent.com>
23141
23142         * lib/xgetcwd.c (xgetcwd) [defined __GLIBC__ && __GLIBC__ >= 2]:
23143         Simply `return getcwd (NULL, 0);'.
23144         [! (defined __GLIBC__ && __GLIBC__ >= 2)]:
23145         Use 1300 as initial value for length, not PATH_MAX.
23146
23147         * lib/pathmax.h: Clean up cpp syntax.
23148
23149 2001-08-12  Jim Meyering  <meyering@lucent.com>
23150
23151         * lib/gettimeofday.c: New file.
23152         * lib/gtod.h: New file.
23153         * lib/Makefile.am (libfetish_a_SOURCES): Add gtod.h.
23154
23155 2001-08-05  Jim Meyering  <meyering@lucent.com>
23156
23157         * m4/jm-macros.m4: Require autoconf-2.52.
23158
23159 2001-08-04  Jim Meyering  <meyering@lucent.com>
23160
23161         * lib/error.h (__attribute__): Remove `|| __STRICT_ANSI__' from #if
23162         stmt, to get in sync with glibc.
23163
23164 2001-08-03  Paul Eggert  <eggert@twinsun.com>
23165
23166         The following changes are from gettext 0.10.39 as maintained by
23167         Bruno Haible.
23168
23169         * lib/mbswidth.h (MBSW_REJECT_UNPRINTABLE, MBSW_REJECT_INVALID):
23170         Renamed from MBSW_ACCEPT_UNPRINTABLE and MBSW_ACCEPT_INVALID
23171         with inverted sense.  All uses changed.
23172
23173         * lib/mbswidth.c: Don't include <limits.h>.
23174         Include <stdlib.h> and <string.h> unconditionally.
23175         (iswcntrl, mbsinit, ISCNTRL): New macros.
23176         (mbsnwidth): Use K&R style function declarations.
23177         Don't bother checking for MB_LEN_MAX == 1, since the compiler
23178         can optimize it when MB_CUR_MAX == 1.
23179         The width of control characters is zero, not 1.
23180
23181 2001-08-03  Paul Eggert  <eggert@twinsun.com>
23182
23183         The following changes are from gettext 0.10.39 as maintained by
23184         Bruno Haible, except that getline.m4 continues to use AC_LIBOBJ.
23185
23186         * m4/codeset.m4: Upgrade to serial AM1.
23187         (AM_LANGINFO_CODESET): Renamed from jm_LANGINFO_CODESET;
23188         all uses changed.  Quote first arg of AC_DEFUN.
23189         (am_cv_langinfo_codeset): Renamed from jm_cv_langinfo_codeset.
23190
23191         * m4/iconv.m4: Upgrade to serial AM2.
23192         (AM_ICONV): Renamed from jm_ICONV; all uses changed.
23193         Add --with-libconv-prefix.
23194         Quote first arg of AC_DEFUN.  Add description for ICONV_CONST.
23195         (am_cv_func_iconv): Renamed from jm_cv_func_iconv.
23196         (am_cv_lib_iconv): Renamed from jm_cv_lib_iconv.
23197         (am_cv_proto_iconv): Renamed from jm_cv_proto_iconv.
23198         * m4/jm-macros.m4 (jm_MACROS): Reflect s/jm_/AM_/ renamings.
23199
23200         * m4/c-bs-a.m4 (AC_C_BACKSLASH_A): Quote first arg of AC_DEFUN.
23201         * m4/getline.m4 (AM_FUNC_GETLINE): Likewise.
23202         * m4/glibc21.m4 (jm_GLIBC21): Likewise.
23203         * m4/inttypes_h.m4 (jm_AC_HEADER_INTTYPES_H): Likewise.
23204         * m4/isc-posix.m4 (AC_ISC_POSIX): Likewise.
23205         * m4/lcmessage.m4 (AM_LC_MESSAGES): Likewise.
23206         * m4/progtest.m4 (AM_PATH_PROG_WITH_TEST): Likewise.
23207         * m4/uintmax_t.m4 (jm_AC_TYPE_UINTMAX_T): Likewise.
23208         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Likewise.
23209
23210         * m4/getline.m4 (AM_FUNC_GETLINE): Don't bother checking for
23211         string.h any more.
23212
23213         * m4/progtest.m4 (AM_PATH_PROG_WITH_TEST): If not found, print "no",
23214         not the default value.
23215
23216         2001-06-25  Bruno Haible  <haible@clisp.cons.org>
23217         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Don't require AM_C_PROTOTYPES.
23218         Also check for mbsinit.  Needed for SCO 3.2v5.0.2.
23219         Also include <string.h>; this is where AIX 3.2.5 declares wcwidth.
23220         Also check for iswcntrl, used for wcwidth fallback.
23221         Use AC_TRY_COMPILE to emulate AC_CHECK_DECLS, for portability
23222         to Autoconf 2.13.
23223
23224 2001-08-03  Jim Meyering  <meyering@lucent.com>
23225
23226         * m4/mbrtowc.m4 (jm_FUNC_MBRTOWC): Use `#include', not `@%:@include',
23227         as it was in the original.  Reported by Paul Eggert.
23228
23229 2001-07-16  Jim Meyering  <meyering@lucent.com>
23230
23231         * m4/gettimeofday.m4: New file.
23232         Prompted by a report from Bernhard Baehr.
23233
23234 2001-07-15  Jim Meyering  <meyering@lucent.com>
23235
23236         * m4/Makefile.am.in (Makefile.am): Remove most of the unlocked-io.h
23237         stuff. Now it's in ../Makefile.cfg.
23238
23239 2001-07-15  Jim Meyering  <meyering@lucent.com>
23240
23241         * lib/Makefile.am (EXTRA_DIST): Add unlocked-io.hin.
23242         (BUILT_SOURCES): Add unlocked-io.h.
23243         (io_functions): Define.
23244         (unlocked-io.h): New rule.
23245         (DISTCLEANFILES): Add unlocked-io.h.
23246         (all-local): Depend on unlocked-io.h, to ensure it is created.
23247
23248         * lib/unlocked-io.hin: New file
23249
23250         * lib/regex.c: Update from glibc.
23251
23252 2001-07-05  Jim Meyering  <meyering@lucent.com>
23253
23254         * lib/Makefile.am (noinst_HEADERS): Remove definition, per new automake
23255         recommendation.
23256         (libfetish_a_SOURCES): Put all .h files here instead.
23257         Remove a thus-exposed (better checks in automake) duplicate and
23258         two unnecessary .h files.
23259
23260 2001-07-04  Jim Meyering  <meyering@lucent.com>
23261
23262         * m4/Makefile.am.in (glibc-io.struct): New target.  Rework the code
23263         that generates jm-glibc-io.m4 so that it doesn't trigger any make
23264         distcheck failure.
23265
23266 2001-07-02  Jim Meyering  <meyering@lucent.com>
23267
23268         The following changes were prompted by suggestions from Bruno Haible.
23269
23270         * m4/jm-glibc-io.m4n: New file, the template from which jm-glibc-io.m4
23271         is now generated.
23272         * m4/Makefile.am.in (Makefile.am): Include jm-glibc-io.m4n in emitted
23273         definition of EXTRA_DIST.
23274         (Makefile.am): Emit the dependency, `all-local: jm-glibc-io.m4' to
23275         ensure that the generated file is created/updated whenever the list
23276         of $(unlocked_functions) is changed.
23277         (jm-glibc-io.m4): New rule.
23278         (unlocked-io.h): New rule -- currently unused.
23279
23280 2001-06-24  Jim Meyering  <meyering@lucent.com>
23281
23282         * m4/regex.m4 (jm_INCLUDED_REGEX): Use a quadrigraph to represent an
23283         unmatched right bracket, rather than kludging it with an extra,
23284         falsely-matching quote in a comment.  Patch by Akim Demaille.
23285
23286 2001-06-11  Jim Meyering  <meyering@lucent.com>
23287
23288         * lib/regex.c: Update from GNU libc.
23289
23290 2001-05-27  Jim Meyering  <meyering@lucent.com>
23291
23292         * m4/prereq.m4 (jm_PREREQ_READUTMP): Check for ut_type in struct utmpx.
23293         Check for ut_type in struct utmp.
23294
23295 2001-05-27  Jim Meyering  <meyering@lucent.com>
23296
23297         * lib/readutmp.h (UT_TYPE): Define.
23298
23299 2001-05-24  Jim Meyering  <meyering@lucent.com>
23300
23301         * lib/argmatch.c: Include "quote.h".
23302         (argmatch_invalid): Remove explicit `' quotes.  Instead, use the
23303         quote function.  Reported by Göran Uddeborg.
23304
23305 2001-05-22  Jim Meyering  <meyering@lucent.com>
23306
23307         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't use AC_LIBOBJ(strftime),
23308         now that we use the package-supplied version unconditionally.
23309         (jm_FUNC_STRFTIME): Don't replace strftime, for the same reason.
23310
23311 2001-05-21  Jim Meyering  <meyering@lucent.com>
23312
23313         * m4/regex.m4: Change a couple backticks to single quotes to avoid
23314         shell syntax errors.
23315
23316 2001-05-21  Alexandre Duret-Lutz  <duret_g@epita.fr>
23317
23318         * m4/dos.m4 (jm_AC_DOS): Check for _WIN32, __WIN32__, and __MSDOS__.
23319
23320 2001-05-20  Paul Eggert  <eggert@twinsun.com>
23321
23322         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME):
23323         Don't bother to check library strftime, since
23324         we'll be using our own my_strftime function anyway.
23325         Define my_strftime instead of strftime.
23326
23327 2001-05-20  Alexandre Duret-Lutz  <duret_g@epita.fr>
23328
23329         * lib/dirname.c (dir_name): Compute append_dot using path, not newpath
23330         which is not yet declared.
23331
23332 2001-05-15  Jim Meyering  <meyering@lucent.com>
23333
23334         * m4/regex.m4: Use proper quoting so brackets appear in the test
23335         program.
23336         Reported by, and with help from, Bruno Haible.
23337
23338 2001-05-13  Jim Meyering  <meyering@lucent.com>
23339
23340         * m4/jm-macros.m4 (major_t, minor_t): Define to unsigned int if
23341         undefined.
23342
23343 2001-05-11  Paul Eggert  <eggert@twinsun.com>
23344
23345         dirname code cleanup.  base_name now behaves more compatibly
23346         with POSIX basename when given file names that have trailing
23347         slashes, and similarly for dir_name.  Add new primitives
23348         base_len and dir_len.  Put the directory-name-related decls
23349         into dirname.h.
23350
23351         * lib/addext.c (ISSLASH, base_name): Remove; now in dirname.h.
23352         * lib/backupfile.c (base_name): Likewise.
23353         * lib/basename.c (FILESYSTEM_PREFIX_LEN, PARAMS, ISSLASH): Likewise.
23354         * lib/dirname.c (FILESYSTEM_PREFIX_LEN, ISSLASH): Likewise.
23355         * lib/makepath.c (strip_trailing_slashes): Likewise.
23356         * lib/path-concat.c (DIRECTORY_SEPARATOR, FILESYSTEM_PREFIX_LEN,
23357         ISSLASH): Likewise.
23358         * lib/rename.c (strip_trailing_slashes): Likewise.
23359         * lib/same.c (base_name): Likewise.
23360         * lib/stripslash.c (ISSLASH): Likewise.
23361
23362         * lib/addext.c: Include <dirname.h> after size_t is defined.
23363         * lib/backupfile.c: Likewise.
23364
23365         * lib/addext.c (addext): Use base_len to trim redundant
23366         trailing slashes instead of doing it ourselves.
23367         But do not trim the last slash if it is not redundant.
23368
23369         * lib/backupfile.c (find_backup_file_name,
23370         max_backup_version): Use base_len instead of rolling it ourselves.
23371         Handle the case of "" and (on DOS) "C:" correctly.
23372
23373         * lib/basename.c: Do not include <stdio.h>, <assert.h>; no longer
23374         needed. Include <string.h>, <dirname.h>.
23375         (base_name): Allow file names ending in slashes, other than names
23376         that are all slashes.  In this case, return the basename followed
23377         by the slashes.  This is more general, and can be used in places
23378         where the original base_name purposely had an assertion failure.
23379         (base_len): New function.
23380
23381         * lib/dirname.c: Include <string.h> instead of <stdlib.h>.
23382         Do not include <assert.h>; no longer needed.
23383         Include xalloc.h.
23384         (memrchr): Remove decl.
23385         (dir_name_r): Remove.
23386         (dir_len): Renamed from dirlen.  All callers changed.
23387         Rewrite in terms of base_name, for simplicity and consistency.
23388         (dir_name): Never return NULL.  All callers changed.
23389         Do not include <stdlib.h> in test program; no longer needed.
23390         return 0; is fine for test program.
23391
23392         * lib/dirname.h (DIRECTORY_SEPARATOR, ISSLASH, FILESYSTEM_PREFIX_LEN):
23393         New macros.
23394         (base_name, base_len, dir_len, strip_trailing_slashes): New decls.
23395
23396         * lib/path-concat.c (path_concat): Use base_len to compute
23397         base length, not strlen; this means we cannot rely on memcpy
23398         to null-terminate.
23399
23400         * lib/same.c (STREQ): Remove.
23401         (same_name): Handle the case where the basename ends in trailing '/'.
23402
23403         * lib/stripslash.c (strip_trailing_slashes): Return nonzero if
23404         a slash was stripped.  Do not strip the last slash after a
23405         file system prefix.
23406
23407 2001-05-11  Paul Eggert  <eggert@twinsun.com>
23408
23409         * lib/Makefile.am (libfetish_a_SOURCES):
23410         Add strftime.c, since we now compile it on all hosts.
23411
23412         * lib/strftime.c (my_strftime):
23413         Define to nstrftime if emacs, but only if my_strftime is not defined.
23414         (extra_args, extra_args_spec, extra_args_spec_iso): Rename from
23415         ut_argument, ut_argument_spec, ut_argument_spec_iso, respectively.
23416         Add one more extra argument: a nanoseconds value.
23417         All uses changed.
23418         (ns): New macro.
23419         (my_strftime function): Add %N format.
23420         (emacs_strftimeu): Renamed from emacs_strftime,
23421         with extra ut argument.
23422
23423 2001-05-09  Paul Eggert  <eggert@twinsun.com>
23424
23425         * m4/jm-macros.m4 (jm_MACROS): Do not check for fseeko; no longer used.
23426
23427 2001-04-21  Jim Meyering  <meyering@lucent.com>
23428
23429         * m4/rmdir-errno.m4: Write to a new file, so that a restrictive umask
23430         doesn't interfere.
23431
23432 2001-04-21  Alexandre Duret-Lutz  <duret_g@epita.fr>
23433
23434         * m4/ftruncate.m4: Check for chsize.
23435         Link with ftruncate.o unconditionally if ftruncate is missing.
23436         This was required when cross-compiling to i586-mingw32msvc.
23437
23438 2001-04-08  Jim Meyering  <meyering@lucent.com>
23439
23440         * lib/getdate.y (get_date): Set tm_isdst to -1 to ensure that it is
23441         recomputed; that's necessary when the offset spans a DST transition.
23442         Patch by David J. MacKenzie.  Reported by Hon-Yin Kok.
23443
23444 2001-04-02  Jim Meyering  <meyering@lucent.com>
23445
23446         * lib/regex.h, regex.c: Update from GNU libc.
23447
23448 2001-03-24  Jim Meyering  <meyering@lucent.com>
23449
23450         * m4/jm-macros.m4: Require autoconf-2.49d.
23451
23452 2001-03-20  Bruno Haible  <haible@clisp.cons.org>
23453
23454         * m4/iconv.m4 (jm_ICONV): Recommend GNU libiconv.
23455
23456 2001-03-19  Paul Eggert  <eggert@twinsun.com>
23457
23458         * lib/version-etc.c (version_etc_copyright): Update to 2001.
23459
23460 2001-03-17  Jim Meyering  <meyering@lucent.com>
23461
23462         * m4/memcmp.m4 (jm_AC_FUNC_MEMCMP): Remove my copy of AC_FUNC_MEMCMP,
23463         now that the version in autoconf is equivalent.
23464         (jm_FUNC_MEMCMP): Adjust to use AC_FUNC_MEMCMP.
23465
23466         * m4/error.m4 (jm_PREREQ_ERROR): Invoke AC_FUNC_STRERROR_R.
23467         Suggestion from Akim Demaille.
23468
23469         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_TEMPNAME.
23470         (jm_PREREQ_TEMPNAME): New function.
23471
23472 2001-03-16  Paul Eggert  <eggert@twinsun.com>
23473
23474         * lib/tempname.c (uint64_t): Define to uintmax_t if
23475         not defined, and if UINT64_MAX is not defined.
23476         Required at least for Vax Ultrix4.3, which doesn't define uint64_t.
23477         Reported by John David Anglin.
23478
23479 2001-03-15  Bruno Haible  <haible@clisp.cons.org>
23480
23481         * lib/localcharset.c (locale_charset): Allow wildcard syntax. Also
23482         resolve alias if codeset is empty.
23483         * lib/config.charset (BeOS): Use wildcard syntax.
23484
23485 2001-03-13  Jim Meyering  <meyering@lucent.com>
23486
23487         * lib/path-concat.c (path_concat)
23488         [FILESYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX]: Don't insert a backslash when
23489         concatenating e.g., `C:' and `foo'.
23490         From Bruno Haible.
23491
23492 2001-03-06  Bruno Haible  <haible@clisp.cons.org>
23493
23494         * lib/localcharset.c (locale_charset): Don't use
23495         setlocale(LC_CTYPE,NULL). Don't return NULL.
23496         * lib/unicodeio.c (print_unicode_char): Simplify accordingly.
23497
23498 2001-03-06  Bruno Haible  <haible@clisp.cons.org>
23499
23500         * lib/config.charset: Update for FreeBSD 4.2 and OSF/1 5.1. Add
23501         support for DOS/DJGPP.
23502
23503 2001-03-01  Paul Eggert  <eggert@twinsun.com>
23504
23505         * m4/jm-macros.m4 (jm_MACROS): Use mkstemp replacement if the system
23506         lacks mkstemp.  Compile our own tempname.c if we compile our own
23507         mkstemp.c, as mkstemp relies on tempname.
23508
23509 2001-03-01  Jim Meyering  <meyering@lucent.com>
23510
23511         * m4/dos.m4 (jm_AC_DOS): Remove extra backslashes, now that
23512         AH_VERBATIM really does output its argument verbatim.
23513
23514 2001-02-28  Paul Eggert  <eggert@twinsun.com>
23515
23516         * lib/Makefile.am (libfetish_a_SOURCES):
23517         Add dup-safer.c, fopen-safer.c.
23518         (noinst_HEADERS): Add stdio-safer.h, unistd-safer.h.
23519
23520         * lib/dup-safer.c, lib/fopen-safer.c, lib/stdio-safer.h:
23521         * lib/unistd-safer.h: New files.
23522
23523 2001-02-25  Paul Eggert  <eggert@twinsun.com>
23524
23525         The mkstemp replacement is taken from glibc 2.2.2, with some
23526         portability fixes for use outside glibc, as follows:
23527
23528         * lib/tempname.c (struct_stat64): New macro.
23529         (direxists, __gen_tempname): Use it.
23530         This avoids a portability problem with Solaris 8.
23531
23532         * lib/tempname.c (<config.h>): Include if HAVE_CONFIG_H.
23533         (<stddef.h>, <stdint.h>, <string.h>):
23534         Include only if STDC_HEADERS || _LIBC.
23535         (<fcntl.h>): Include only if HAVE_FCNTL_H || _LIBC.
23536         (<unistd.h>): Include only if HAVE_UNISTD_H || _LIBC.
23537         (<sys/time.h>): Include only if HAVE_SYS_TIME_H || _LIBC.
23538         (__set_errno): Define this macro if <errno.h> doesn't.
23539         (P_tmpdir, TMP_MAX, __GT_FILE, __GT_BIGFILE, __GT_DIR, __GT_NOCREATE):
23540         Define these macros if <stdio.h> doesn't.
23541         (S_ISDIR, S_IRUSR, S_IWUSR, S_IXUSR):
23542         Define these macros if <sys/stat.h>
23543         doesn't.  Ignore <sys/stat.h> S_ISDIR if STAT_MACROS_BROKEN.
23544         (stat64, __getpid, __gettimeofday, __mkdir, __open, __open64, lxstat64,
23545         __xstat64): Define if not _LIBC.
23546         (__secure_getenv): Define if ! (HAVE___SECURE_GETENV || _LIBC).
23547         (__gen_tempname): Invoke gettimeofday only if
23548         HAVE_GETTIMEOFDAY || _LIBC;
23549         otherwise, fall back on plain "time".
23550         Use macros like S_IRUSR | S_IWUSR rather than octal values like 0600.
23551
23552         * lib/mkstemp.c (__GT_FILE): Define to zero if not defined.
23553
23554         * lib/mkstemp.c, lib/tempname.c: New files, taken from glibc 2.2.2.
23555
23556 2001-02-18  Paul Eggert  <eggert@twinsun.com>
23557
23558         * m4/jm-macros.m4 (jm_CHECK_ALL_HEADERS): Check for sys/resource.h.
23559
23560 2001-02-17  Paul Eggert  <eggert@twinsun.com>
23561
23562         * m4/mbrtowc.m4: New file, defining jm_FUNC_MBRTOWC.
23563         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH):
23564         Use jm_FUNC_MBRTOWC, not AC_CHECK_FUNCS(mbrtowc).
23565         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Likewise.
23566
23567 2001-02-17  Paul Eggert  <eggert@twinsun.com>
23568
23569         * lib/mbswidth.c, quotearg.c (mbrtowc, mbsinit):
23570         Remove workaround macros for hosts that have mbrtowc but not
23571         mbstate_t, as we now insist on proper declarations for both
23572         before using mbrtowc.
23573
23574 2001-02-17  Jim Meyering  <meyering@lucent.com>
23575
23576         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Don't check for
23577         getmntent via AC_CHECK_FUNCS, since that would get a `no' and disrupt
23578         further attempts by AC_FUNC_GETMNTENT to check with e.g., -lgen on
23579         UnixWare 7.1.1.
23580
23581         * m4/mbrtowc.m4 (jm_FUNC_MBRTOWC): Adapt to use AC_CACHE_CHECK etc.,
23582         rather than AC_CACHE_VAL.
23583
23584 2001-02-17  Jim Meyering  <meyering@lucent.com>
23585
23586         * lib/strtoul.c: Sync from GNU libc.  Use double quotes, not <...>
23587         around included file name.
23588
23589         * lib/strnlen.c (__strnlen): Merge in a change from GNU libc.
23590
23591         * lib/strftime.c: Update from GNU libc (the only changes were to
23592         comments).
23593
23594 2001-02-17  Jim Meyering  <meyering@lucent.com>
23595
23596         * lib/regex.c: Update from libc.
23597
23598 2001-02-17  Bruno Haible  <haible@clisp.cons.org>
23599
23600         * lib/mbswidth.h (mbswidth): Also define as macro, to avoid prototype
23601         clash.
23602
23603 2001-02-16  Paul Eggert  <eggert@twinsun.com>
23604
23605         * lib/alloca.c (malloc): Undef before defining, since stdlib.h
23606         may have defined it.  Needed for Encore Umax-3.0.9.16b systems.
23607         Reported by Mark Hounschell via Paul Eggert.
23608
23609 2001-02-07  Jim Meyering  <meyering@lucent.com>
23610
23611         * m4/regex.m4 (jm_INCLUDED_REGEX): Add a test for the latest bug.
23612
23613 2001-02-05  Jim Meyering  <meyering@lucent.com>
23614
23615         * m4/jm-macros.m4: Require autoconf-2.14d (not yet released), because
23616         it includes the patch required for `large file' support with at least
23617         HP-UX's 10.20 /bin/cc.
23618
23619 2001-02-03  Jim Meyering  <meyering@lucent.com>
23620
23621         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Restore prior use of
23622         AS_IF, now that it works once again (mysteriously).
23623         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Likewise.
23624
23625 2001-01-30  Jim Meyering  <meyering@lucent.com>
23626
23627         Don't use filenames that are 8.3-equivalent to "conftest" on DOS.
23628         * m4/chown.m4: Rename conftestchown to conftest.chown.
23629         * m4/rename.m4: s/conftestdir/conftest.d1/ and
23630         s/conftestdir2/conftest.d2/.
23631         * m4/utimes.m4: s/conftestdata/conftest.data/
23632         Inspired by Pavel Roskin's change in autoconf.
23633
23634 2001-01-30  Bruno Haible  <haible@clisp.cons.org>
23635
23636         * lib/config.charset: Update for FreeBSD 4.2.
23637
23638 2001-01-27  Jim Meyering  <meyering@lucent.com>
23639
23640         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Open-code what was
23641         a use of AS_IF.
23642         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Likewise.
23643
23644 2001-01-26  Jim Meyering  <meyering@lucent.com>
23645
23646         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Check for stddef.h, now that
23647         quotearg.c includes it.
23648
23649 2001-01-26  Jim Meyering  <meyering@lucent.com>
23650
23651         * lib/quotearg.c: Include stddef.h.
23652         * lib/quote.c: Include stddef.h.
23653         Reported by Axel Kittenberger.
23654
23655         * lib/xmalloc.c [HAVE_DONE_WORKING_MALLOC_CHECK]: Enclose error-evoking
23656         line in double quotes so that it evokes a better diagnostic.
23657         [HAVE_DONE_WORKING_REALLOC_CHECK]: Likewise.
23658         Reported by Axel Kittenberger.
23659
23660 2001-01-24  Stefan Monnier  <monnier@cs.yale.edu>
23661
23662         * regex.c (mutually_exclusive_p): Don't blindly handle `charset_not'
23663         as if it was a `charset'.
23664
23665 2001-01-21  Bruno Haible  <haible@clisp.cons.org>
23666
23667         * m4/iconv.m4 (jm_ICONV): Also check whether the iconv declaration
23668         has const.
23669
23670 2001-01-21  Bruno Haible  <haible@clisp.cons.org>
23671
23672         * lib/unicodeio.c (print_unicode_char): Cast the second iconv() arg,
23673         to avoid a warning.  Add back 'const' to inptr.
23674
23675 2001-01-20  Jim Meyering  <meyering@lucent.com>
23676
23677         Be sure that headers are checked before used in code compiled
23678         for the type checks.
23679         * m4/jm-macros.m4 (jm_MACROS): Remove all header checks.
23680         In place of that, invoke jm_CHECK_ALL_TYPES.
23681         (jm_CHECK_ALL_HEADERS): New functions with the above checks.
23682         (jm_CHECK_ALL_TYPES): Require jm_CHECK_ALL_HEADERS.
23683         Alan Iwi reported a build failure on an f300-fujitsu-uxpv4.1_ES;
23684         The check for ssize_t was mistakenly run before the test for unistd.h.
23685
23686         The configure-time check for stdbool.h was missing.
23687         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_HASH.
23688         (jm_PREREQ_HASH): New function.
23689
23690 2001-01-17  Jim Meyering  <meyering@lucent.com>
23691
23692         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Use AS_IF, not AS_IFELSE,
23693         for autoconf-2.49c.
23694         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Likewise.
23695
23696 2001-01-16  Jim Meyering  <meyering@lucent.com>
23697
23698         * lib/basename.c: Include <stdio.h>, needed by assert on SunOS 4.
23699         From Bruno Haible.
23700
23701 2001-01-14  Jim Meyering  <meyering@lucent.com>
23702
23703         * m4/rename.m4: Use temporary directories named conftestdir{,2}, not
23704         foo and bar.  Create conftestdir/ in the script, not in the C code.
23705         Remove directories in the script, not in the C code.
23706         Remove conftestdir{,2} before trying to create the directory.
23707         Make the entire configure script fail if the mkdir fails.
23708
23709 2001-01-14  Jim Meyering  <meyering@lucent.com>
23710
23711         * lib/rename.c: New file.  From Volker Borchert.
23712         Include stdlib.h, string.h or strings.h, and xalloc.h.
23713         Use strip_trailing_slashes rather than open-coding it.
23714
23715 2001-01-03  Paul Eggert  <eggert@twinsun.com>
23716
23717         * lib/strftime.c: Sync with glibc time/strftime.c 1.81.
23718
23719 2001-01-03  Jim Meyering  <meyering@lucent.com>
23720
23721         * lib/unicodeio.c (print_unicode_char): Remove `const' from declaration
23722         of local `inptr' to avoid warning with some system declarations of
23723         iconv.
23724
23725 2001-01-02  Volker Borchert  <bt@teknon.de>
23726
23727         * m4/rename.m4: New file.
23728         * m4/jm-macros.m4 (jm_MACROS): Require vb_FUNC_RENAME.
23729
23730 2001-01-01  Jim Meyering  <meyering@lucent.com>
23731
23732         * m4/prereq.m4 (jm_PREREQ_READUTMP): Include utmp.h (if available),
23733         even on systems with utmpx.h.  It's necessary for the declaration of
23734         utmp's ut_user member.  Reported by Andreas Jaeger.
23735
23736         * m4/check-decl.m4 (jm_CHECK_DECLS): Include grp.h and pwd.h if
23737         available. They are required for the declarations of getgrgid and
23738         getpwuid resp.
23739         (_jm_DECL_HEADERS): Check for grp.h and pwd.h.
23740         Reported by Andreas Jaeger.
23741
23742 2001-01-01  Alexandre Duret-Lutz  <duret_g@epita.fr>
23743
23744         * m4/libintl.m4 (AM_GNU_GETTEXT): Define MKINSTALLDIRS by
23745         expanding the value of $ac_aux_dir, as in AM_MISSING_HAS_RUN,
23746         so `make install' also works in VPATH builds.
23747
23748 2000-12-31  Alexandre Duret-Lutz  <duret_g@epita.fr>
23749
23750         * m4/libintl.m4 (AM_WITH_NLS): When using AC_CONFIG_AUX_DIR,
23751         prepend $(top_srcdir) to the value of MKINSTALLDIRS so that it
23752         can be used in subdirectories.
23753
23754 2000-12-29  Paul Eggert  <eggert@twinsun.com>
23755
23756         * lib/modechange.c: Do not assume that mode_t uses the
23757         traditional octal encoding.  E.g. "chmod 1 FOO" should set
23758         the other-execute bit of FOO even if S_IXOTH != 1.
23759
23760         (SUID, SGID, SVTX, RUSR, WUSR, XUSR, RGRP, WGRP, XGRP, ROTH,
23761         WOTH, XOTH, ALLM): New macros.
23762         (S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR,
23763          S_IRGRP, S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH):
23764         Use them.
23765         (S_ISGID): Fix typo; it was defaulting to the same value as S_ISUID.
23766         (S_IRWXU, S_IRWXG, S_IRWXO): Specify defaults in terms of the above.
23767         (mode_compile):
23768         No need to use uintmax_t; unsigned long is long enough.
23769         Don't bother to get suffix since we don't use it.
23770
23771 2000-12-26  Jim Meyering  <meyering@lucent.com>
23772
23773         * m4/dos.m4 (jm_AC_DOS): Rewrite (though it's still a stub) to work
23774         better with autoheader.
23775
23776 2000-12-24  Jim Meyering  <meyering@lucent.com>
23777
23778         * lib/hash.c (is_prime): Return explicit boolean values.
23779         (hash_get_first): Return NULL to appease Irix5.6's 89.
23780         Reported by Nelson Beebe.
23781
23782 2000-12-19  Bruno Haible  <haible@clisp.cons.org>
23783
23784         * lib/localcharset.c (locale_charset): Add support for Win32.
23785
23786 2000-12-18  Paul Eggert  <eggert@twinsun.com>
23787
23788         * lib/physmem.h, lib/physmem.c: New files.
23789
23790         * lib/Makefile.am (libfetish_a_SOURCES): Add physmem.c.
23791         (noinst_HEADERS): Add physmem.h.
23792
23793         * lib/xstrtol.c (__xstrtol): Add undocumented suffixes 'g' and
23794         't' for compatibility with Solaris 8 sort.
23795
23796 2000-12-18  Bruno Haible  <haible@clisp.cons.org>
23797
23798         * lib/config.charset: Add support for BeOS.
23799
23800 2000-12-17  Jim Meyering  <meyering@lucent.com>
23801
23802         * m4/dos.m4 (jm_AC_DOS): New file and macro.
23803         * m4/jm-macros.m4 (jm_MACROS): Require jm_AC_DOS.
23804
23805 2000-12-16  Jim Meyering  <meyering@lucent.com>
23806
23807         This bug had a serious impact on chown: `chown N:M FILE' (for integer
23808         N and M) would have treated it like `chown N:N FILE'.
23809
23810         * lib/userspec.c (parse_user_spec): Fix typo: s/u/g/.
23811
23812 2000-12-16  Jim Meyering  <meyering@lucent.com>
23813
23814         * lib/getusershell.c [!SHELLS_FILE && __DJGPP__]: Define
23815         SHELLS_FILE to a file name that's useful on djgpp systems.
23816         Include stdlib.h.
23817         (ADDITIONAL_DEFAULT_SHELLS): Define.
23818         (default_shells): Prepend ADDITIONAL_DEFAULT_SHELLS.
23819         Based mostly on a patch from Prashant TR.
23820
23821 2000-12-16  Bruno Haible  <haible@clisp.cons.org>
23822
23823         * lib/config.charset: Add ISO-8859-3, BIG5HKSCS, GB18030, JOHAB,
23824         VISCII, CP874, CP949, CP950, CP1250, CP1253, CP1254, CP1255, CP1256,
23825         CP1257 to the list of canonical encodings. Rename EUC-CN to GB2312.
23826
23827 2000-12-08  Andreas Schwab  <schwab@suse.de>
23828
23829         * lib/mbswidth.c (mbsnwidth): Don't loop endlessly when called with an
23830         invalid mulitbyte sequence and with the MBSW_ACCEPT_INVALID flag set.
23831
23832 2000-12-07  Jim Meyering  <meyering@lucent.com>
23833
23834         * lib/stripslash.c (ISSLASH): Define.
23835         (strip_trailing_slashes): Use ISSLASH rather than comparing against
23836         `/'.
23837         From Prashant TR.
23838
23839         * lib/dirname.c (FILESYSTEM_PREFIX_LEN): Define.
23840         (dir_name_r): Declare this function as static.
23841         [BACKSLASH_IS_PATH_SEPARATOR]: Fix a bug that'd
23842         manifest itself on a name containing a mix of slashes and
23843         backslashes.
23844         Make this function work with names starting with a DOS-style
23845         drive letter and colon prefix.
23846         (dir_name): Append `.' if necessary.
23847         Based mostly on patches from Prashant TR and Eli Zaretskii.
23848
23849         * lib/dirname.h (dir_name_r): Remove prototype.
23850
23851 2000-12-06  Paul Eggert  <eggert@twinsun.com>
23852
23853         * m4/off_t-format.m4: Remove this file.
23854         * m4/jm-macros.m4 (jm_MACROS): Remove jm_SYS_OFF_T_PRINTF_FORMAT.
23855
23856 2000-12-06  Jim Meyering  <meyering@lucent.com>
23857
23858         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): If we need the
23859         replacement strtoull, we may well need the replacement strtoul, too.
23860         Check for declarations of strtoul and strtoull.
23861         Check for strtol.  Mainly as a cue to cause automake to include
23862         strtol.c -- that file is included by each of strtoul.c and strtoull.c.
23863         Check for limits.h -- strtol.c needs it.
23864
23865 2000-12-05  Jim Meyering  <meyering@lucent.com>
23866
23867         * lib/dirname.c (dir_name_r): Add `const' in a few local declarations.
23868
23869 2000-12-04  Jim Meyering  <meyering@lucent.com>
23870
23871         * lib/path-concat.c: [!HAVE_DECL_MALLOC]: Declare malloc.
23872         Also include memory.h, stdlib.h, unistd.h if appropriate.
23873         Reported by Andreas Jaeger (conflicting declaration of malloc).
23874
23875 2000-12-02  Jim Meyering  <meyering@lucent.com>
23876
23877         * m4/off_t-format.m4 (OFF_T_PRINTF_FORMAT_STRING): New file/macro.
23878         * m4/jm-macros.m4 (jm_MACROS): require it.
23879
23880 2000-12-02  Jim Meyering  <meyering@lucent.com>
23881
23882         * lib/closeout.h: Make idempotent, to avoid some obscure warnings.
23883
23884 2000-12-01  Paul Eggert  <eggert@twinsun.com>
23885
23886         * lib/memrchr.c: Include <config.h> before any system include file.
23887
23888 2000-11-30  Jim Meyering  <meyering@lucent.com>
23889
23890         * m4/jm-macros.m4 (jm_MACROS): Check for stdint.h.
23891
23892 2000-11-30  Jim Meyering  <meyering@lucent.com>
23893
23894         * m4/getloadavg.m4: s/ifval/m4_ifval/ to accommodate new autoconf.
23895
23896 2000-11-29  Paul Eggert  <eggert@twinsun.com>
23897
23898         * lib/dirname.c (dir_name_r): Fix typo: int -> size_t.
23899
23900 2000-11-26  Jim Meyering  <meyering@lucent.com>
23901
23902         * lib/memcoll.c: Include sys/types.h.  From Werner Almesberger.
23903
23904 2000-11-22  Paul Eggert  <eggert@twinsun.com>
23905
23906         * lib/strftime.c (my_strftime): Do not invoke mbrlen with a
23907         size of (size_t) -1; it's not portable.
23908
23909 2000-11-17  Jim Meyering  <meyering@lucent.com>
23910
23911         * lib/strstr.c: Update from GNU libc.
23912
23913 2000-11-17  Akim Demaille  <akim@epita.fr>
23914
23915         * lib/obstack.h: Formatting changes.
23916         (obstack_grow, obstack_grow0): Don't cast WHERE at all: that would
23917         prevent type checking.
23918         (obstack_ptr_grow, obstack_ptr_grow_fast): When assigning, don't
23919         cast the value to (void *): assigning a `foo *' to a `void *'
23920         variable is valid.
23921         (obstack_int_grow, obstack_int_grow_fast): Don't cast AINT to int.
23922
23923 2000-11-16  Jim Meyering  <meyering@lucent.com>
23924
23925         * lib/strverscmp.c: Incorporate weak-alias-related changes from glibc.
23926
23927 2000-11-11  Jim Meyering  <meyering@lucent.com>
23928
23929         * lib/error.c: Add a couple #includes, merging from GNU libc version.
23930
23931 2000-11-10  Jim Meyering  <meyering@lucent.com>
23932
23933         * lib/obstack.h: Update from GNU libc.
23934         * lib/obstack.c: Likewise.
23935
23936 2000-11-08  Bruno Haible  <haible@clisp.cons.org>
23937
23938         * m4/jm-macros.m4 (jm_MACROS): Add test for wcrtomb.
23939
23940 2000-11-06  Paul Eggert  <eggert@twinsun.com>
23941
23942         * lib/getusershell.c (setusershell): Use rewind rather than
23943         fseek/fseeko, to avoid configuration hassles with fseeko.
23944         Don't bother opening SHELLS_FILE if shellstream is NULL;
23945         it's not necessary.
23946
23947 2000-11-05  Jim Meyering  <meyering@lucent.com>
23948
23949         * lib/makepath.h (make_dir): Declare.
23950         * lib/makepath.c (make_dir): Remove `static' attribute.
23951         Tweak a comment.
23952
23953 2000-11-04  Jim Meyering  <meyering@lucent.com>
23954
23955         * m4/regex.m4: Use the `m4_' prefix on `syscmd' and `m4_sysval'.
23956
23957 2000-11-04  Alexandre Duret-Lutz  <duret_g@epita.fr>
23958
23959         * lib/hash.c (hash_get_next): Fix a thinko:  when ENTRY is the
23960         last one in a bucket, advance to the next bucket.
23961
23962 2000-11-02  Vesselin Atanasov  <vesselin@bgnet.bg>
23963
23964         * lib/fnmatch.c: Do not comment out all the code if we are using
23965         the GNU C library, because in some cases we are replacing buggy
23966         code in the GNU C library itself.
23967
23968 2000-10-30  Stefan Monnier  <monnier@cs.yale.edu>
23969
23970         * regex.c (re_iswctype, re_wctype_to_bit): Fix braino.
23971         (regex_compile): Catch bogus \(\1\).
23972
23973 2000-10-30  Paul Eggert  <eggert@twinsun.com>
23974
23975         * lib/fnmatch.c (FOLD): Do not assume that characters are unsigned.
23976         (fnmatch): Fix some FNM_FILE_NAME and FNM_LEADING_DIR bugs,
23977         e.g. fnmatch("d*/*1", "d/s/1", FNM_FILE_NAME) incorrectly yielded zero.
23978
23979 2000-10-30  Paul Eggert  <eggert@twinsun.com>
23980
23981         * lib/error.h, getline.h, modechange.h:
23982         Remove "2000" from Copyright line, as the file hasn't been
23983         changed this year other than in the copyright notice.
23984
23985         * lib/xalloc.h: Add "2000" to Copyright line, as this file
23986         was changed this year.
23987
23988 2000-10-29  Jim Meyering  <meyering@lucent.com>
23989
23990         * m4/fsusage.m4: s/AC_SHELL_IFELSE/AS_IFELSE/ to match autoconf
23991         renaming.
23992         * m4/ls-mntd-fs.m4: Likewise
23993
23994 2000-10-29  Jim Meyering  <meyering@lucent.com>
23995
23996         * lib/xstat.in: Fix grammar in comment.
23997
23998 2000-10-29  Greg Louis  <glouis@dynamicro.on.ca>
23999
24000         * lib/regex.h (__restrict_arr): Move definition out of #ifndef block.
24001         Required because egcs-2.91.66 (aka 1.1.2) defines __restrict, but
24002         doesn't define __restrict_arr.
24003
24004 2000-10-28  Jim Meyering  <meyering@lucent.com>
24005
24006         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_MEMCHR.
24007         (jm_PREREQ_MEMCHR): New function.
24008
24009 2000-10-28  Jim Meyering  <meyering@lucent.com>
24010
24011         * lib/memchr.c: Update from libc.
24012         Adjust for portability:
24013         [HAVE_STDLIB_H]: Include stdlib.h.
24014         [HAVE_BP_SYM_H || _LIBC]: Guard inclusion of bp-sym.h.
24015         Undef __memchr, too.
24016         [!weak_alias]: Define __memchr to memchr.
24017
24018         * lib/regex.c: Update from libc.
24019         * lib/regex.h: Likewise.
24020         * lib/getopt1.c: Likewise.
24021         * lib/memcmp.c: Likewise.
24022
24023         * lib/getusershell.c (setusershell) [HAVE_FSEEKO]: Use fseeko.
24024         Avoid using fseek, when possible -- it's broken by design.
24025         Patch by Ulrich Drepper.
24026
24027 2000-10-27  Stefan Monnier  <monnier@cs.yale.edu>
24028
24029         * regex.c (POP_FAILURE_REG_OR_COUNT, re_match_2_internal)
24030         (re_match_2_internal, re_match_2_internal, re_match_2_internal):
24031         Giving in to popular pressure to shut up the compiler with casts.
24032
24033 2000-10-26  Jim Meyering  <meyering@lucent.com>
24034
24035         * lib/strftime.c: Update from libc.
24036
24037 2000-10-25  Stefan Monnier  <monnier@cs.yale.edu>
24038
24039         * regex.c: More `unsigned char' -> `re_char' changes.
24040         Also change several `int' into `re_wchar_t'.
24041         (PATTERN_STACK_EMPTY, PUSH_PATTERN_OP, POP_PATTERN_OP): Remove.
24042         (PUSH_FAILURE_POINTER): Don't cast any more.
24043         (POP_FAILURE_REG_OR_COUNT): Remove the cast that strips `const'.
24044         We want GCC to complain, since this piece of code makes
24045         re_match non-reentrant, which *should* be fixed.
24046         (GET_BUFFER_SPACE): Use size_t rather than unsigned long.
24047         (EXTEND_BUFFER): Use RETALLOC.
24048         (SET_LIST_BIT): Don't cast.
24049         (re_wchar_t): New type.
24050         (re_iswctype, re_wctype_to_bit): Make it crystal clear to GCC
24051         that those two functions will always properly return.
24052         (IMMEDIATE_QUIT_CHECK): Cast to void.
24053         (analyse_first): Use recursion rather than an explicit stack.
24054         (re_compile_fastmap): Can't fail anymore.
24055         (re_search_2): Don't check re_compile_fastmap for failure.
24056         (PUSH_NUMBER): Renamed from PUSH_FAILURE_COUNT.
24057         Now also sets the new value (passed in a new argument).
24058         (re_match_2_internal): Use it.
24059         Also, use a new var `reg' of type size_t when looping through regs
24060         rather than reuse the inappropriate `mcnt'.
24061
24062 2000-10-25  Jim Meyering  <meyering@lucent.com>
24063
24064         * lib/obstack.c: Update from libc.
24065
24066 2000-10-24  Kenichi Handa  <handa@etl.go.jp>
24067
24068         * regex.c (regex_compile): Change the way of handling a range from
24069         a char less than 256 to a char not less than 256.
24070
24071 2000-10-24  Andrew Innes  <andrewi@gnu.org>
24072
24073         * regex.c (IMMEDIATE_QUIT_CHECK): New macro, which does QUIT on
24074         NT-Emacs only.
24075         (re_match_2_internal): Use IMMEDIATE_QUIT_CHECK instead of QUIT,
24076         so that re_search functions only quit when callers expect them to.
24077
24078 2000-10-23  Jim Meyering  <meyering@lucent.com>
24079
24080         * lib/hard-locale.c (hard_locale): Revert last change -- it was simply
24081         wrong.  That set_locale call must not have any side effects.
24082         From Paul Eggert.
24083
24084 2000-10-22  Jim Meyering  <meyering@lucent.com>
24085
24086         * lib/md5.c (md5_process_block) [OP]: Use `rol', not CYCLIC.
24087         [CYCLIC]: Remove now-unused definition.
24088
24089         * lib/save-cwd.c (O_DIRECTORY): Define, if needed.
24090         (save_cwd) [HAVE_FCHDIR]: Use O_DIRECTORY when opening ".".
24091         Suggestion from Ulrich Drepper.
24092
24093 2000-10-21  Jim Meyering  <meyering@lucent.com>
24094
24095         * m4/check-decl.m4 (jm_CHECK_DECLS): Also check for memrchr.
24096         * m4/prereq.m4 (jm_PREREQ_DIRNAME): New macro.
24097         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memrchr.
24098
24099 2000-10-21  Jim Meyering  <meyering@lucent.com>
24100
24101         * lib/dirname.c (memrchr): Declare if necessary.
24102         (dir_name): Remove the restriction that there be no
24103         trailing slashes.  Now, this code skips past them, effectively
24104         ignoring them.
24105         [TEST_DIRNAME] (main): New unit tests.
24106
24107         * lib/memrchr.c: New file from GNU libc.
24108         Undef __memrchr, too.
24109         [!weak_alias]: Define __memrchr to memrchr.
24110         Guard weak_alias use with `#ifdef weak_alias'.
24111
24112 2000-10-21  Jim Meyering  <meyering@lucent.com>
24113
24114         * lib/dirname.c (dir_name_r): New function, factored out of dir_name.
24115         (dir_name): Use dir_name_r.
24116         * lib/dirname.h (dir_name_r): Declare it.
24117
24118 2000-10-17  Jim Meyering  <meyering@lucent.com>
24119
24120         * lib/quote.h (PARAMS): Define and use.
24121         Reported by Akim Demaille.
24122
24123         * lib/getopt.c: Update from libc.
24124
24125 2000-10-16  Jim Meyering  <meyering@lucent.com>
24126
24127         * lib/hard-locale.c (hard_locale): Use "", not 0 as 2nd arg to
24128         setlocale.
24129         From Jan Fedak.
24130
24131 2000-10-15  Stefan Monnier  <monnier@cs.yale.edu>
24132
24133         * regex.c (WIDE_CHAR_SUPPORT): Define if _LIBC as well.
24134
24135 2000-09-25  Jim Meyering  <meyering@lucent.com>
24136
24137         * lib/md5.h (rol): Define (from GnuPG).
24138
24139         * lib/sha.c: Give credit (GnuPG) where due.
24140         (M): Use rol rather than open-coding it.
24141         Add a FIXME comment.
24142
24143 2000-09-21  Jim Meyering  <meyering@lucent.com>
24144
24145         * lib/userspec.c (parse_user_spec): Remove debugging printf I'd added.
24146         Reported by Michael Stone.
24147
24148 2000-09-20  Jim Meyering  <meyering@lucent.com>
24149
24150         * lib/Makefile.am (libfetish_a_SOURCES): Add sha.c.
24151         (noinst_HEADERS): Add sha.h.
24152         Based on code from Scott G. Miller and from GnuPG.
24153
24154 2000-09-18  Jim Meyering  <meyering@lucent.com>
24155
24156         * m4/getloadavg.m4 (AC_FUNC_GETLOADAVG): Restore the initial value of
24157         LIBS. Otherwise, everyone ends up linking with -lelf for some
24158         configurations.
24159         Reported by Mike Stone.
24160
24161 2000-09-15  Jim Meyering  <meyering@lucent.com>
24162
24163         * lib/regex.c: Update from libc.
24164
24165 2000-09-10  Jim Meyering  <meyering@lucent.com>
24166
24167         * lib/getopt.c (_getopt_internal): Update from glibc.
24168
24169 2000-09-09  Jim Meyering  <meyering@lucent.com>
24170
24171         * lib/quotearg.c: Rename ISASCII to IN_CTYPE_DOMAIN, so people don't
24172         think it should be used as a general replacement for isascii.
24173         * lib/fnmatch.c: Likewise.
24174         * lib/mbswidth.c: Likewise
24175         * lib/regex.c: Likewise.
24176
24177         Don't use atoi.
24178         * lib/userspec.c: Include sys/param.h and limits.h.
24179         Include xstrtol.h.
24180         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Define.
24181         (UID_T_MAX, GID_T_MAX, MAXUID, MAXGID): Define.
24182         (parse_user_spec): Use xstrtoul, not atoi when converting numeric
24183         UID, GID.  Check range.
24184
24185 2000-09-06  Jim Meyering  <meyering@lucent.com>
24186
24187         * lib/getopt.c (_getopt_internal): Update from glibc.
24188
24189 2000-08-30  Jim Meyering  <meyering@lucent.com>
24190
24191         * lib/strftime.c: Merge in changes from GNU libc.
24192
24193 2000-08-26  Jim Meyering  <meyering@lucent.com>
24194
24195         * m4/jm-macros.m4: Use jm_FUNC_FPENDING.
24196         * m4/fpending.m4: New file.
24197
24198 2000-08-26  Jim Meyering  <meyering@lucent.com>
24199
24200         * lib/closeout.c: Include "__fpending.h".
24201         (close_stdout_status): Return right away if there's nothing to flush.
24202
24203         * lib/Makefile.am (noinst_HEADERS): Add __fpending.h.
24204         * lib/__fpending.c: New file.
24205         * lib/__fpending.h: New file.
24206
24207 2000-08-20  Jim Meyering  <meyering@lucent.com>
24208
24209         * m4/check-decl.m4: Include utmp.h `#if HAVE_UTMP_H', rather than
24210         `#if !HAVE_UTMPX_H'.  The latter would lose on systems with neither
24211         utmp.h nor utmpx.h.  Reported by Eli Zaretskii.
24212
24213 2000-08-11  J. David Anglin  <dave@hiauly1.hia.nrc.ca>
24214
24215         Improve fileutils installation on systems where running
24216         programs (like install) can't be unlinked.
24217         * m4/unlink-busy.m4 (jm_FUNC_UNLINK_BUSY_TEXT): New file/macro.
24218         * m4/jm-macros.m4: Use jm_FUNC_UNLINK_BUSY_TEXT.
24219
24220 2000-08-07  Paul Eggert  <eggert@twinsun.com>
24221
24222         Standardize on "memory exhausted" instead of "Memory exhausted"
24223         or "virtual memory exhausted".
24224         * lib/obstack.c (print_and_abort): Use "memory exhausted", not
24225         "virtual memory exhausted".
24226         * lib/same.c (same_name): Invoke xalloc_die instead of printing
24227         our own message.
24228         * lib/userspec.c (parse_user_spec): Likewise.
24229         * lib/bumpalloc.h: comment fix
24230         * lib/same.c, userspec.c: Include xalloc.h.
24231
24232         * lib/xalloc.h (xalloc_msg_memory_exhausted): Now char const[],
24233         not char *const and pointing to a constant array.
24234         * lib/xmalloc.c (xalloc_msg_memory_exhausted): Likewise.
24235         (xrealloc): Comment fix.
24236
24237         * lib/userspec.c (parse_user_spec):
24238         Don't translate a message until just before returning,
24239         to avoid unnecessary translation.
24240
24241 2000-08-07  Jim Meyering  <meyering@lucent.com>
24242
24243         * lib/addext.c, argmatch.c, argmatch.h, backupfile.h, bumpalloc.h,
24244         chown.c, diacrit.h, dirname.h, dup2.c, exclude.h, fileblocks.c,
24245         fnmatch.c, fnmatch.h, fsusage.c, fsusage.h, getdate.h,
24246         getgroups.c, gethostname.c, getopt.h, group-member.c,
24247         hard-locale.c, hash.h, isdir.c, lchown.c, linebuffer.c,
24248         linebuffer.h, long-options.h, malloc.c, md5.c, md5.h, memchr.c,
24249         memcmp.c, memcoll.c, memset.c, mktime.c, modechange.h, obstack.h,
24250         pathmax.h, realloc.c, rmdir.c, safe-read.c, save-cwd.c, stime.c,
24251         stpcpy.c, strcasecmp.c, strcspn.c, strdup.c, stripslash.c,
24252         strstr.c, strtod.c, strtol.c, strtoul.c, strtoull.c, strtoumax.c,
24253         utime.c, version-etc.h, xalloc.h, xstrdup.c, xstrtoumax.c,
24254         yesno.c: Back out Copyright date changes for each file with no change
24255         this year.  This eases coordination with other programs using the same
24256         source code modules.  From Paul Eggert.
24257
24258 2000-08-06  Paul Eggert  <eggert@twinsun.com>
24259
24260         * m4/mbstate_t.m4 (AC_MBSTATE_T): Define mbstate_t to be int,
24261         not char, for compatibility with glibc 2.1.3 strftime.c.
24262
24263 2000-08-03  Greg McGary  <greg@mcgary.org>
24264
24265         * lib/regex.c (SET_HIGH_BOUND, MOVE_BUFFER_POINTER,
24266         ELSE_EXTEND_BUFFER_HIGH_BOUND): New macros.
24267         (EXTEND_BUFFER): Use them.
24268
24269 2000-08-01  Jim Meyering  <meyering@lucent.com>
24270
24271         * lib/dirname.c (ISSLASH): Define.
24272         (BACKSLASH_IS_PATH_SEPARATOR): Define.
24273         (dir_name) [BACKSLASH_IS_PATH_SEPARATOR]: Handle the case in which
24274         both `\' and `/' may be use as path separators.
24275         Based on a patch from Prashant TR.
24276
24277 2000-07-31  Paul Eggert  <eggert@twinsun.com>
24278
24279         * lib/quotearg.c (quotearg_n_options): Don't make the initial
24280         slot vector a constant, since it might get modified.
24281
24282 2000-07-31  Jim Meyering  <meyering@lucent.com>
24283
24284         * lib/xmalloc.c: Use `virtual memory exhausted', not
24285         `Memory exhausted'.
24286         * lib/obstack.c (print_and_abort): Likewise.
24287
24288 2000-07-30  Paul Eggert  <eggert@twinsun.com>
24289
24290         * lib/quotearg.c (quotearg_n_options): Preallocate a slot 0
24291         buffer, so that the caller can always quote one small
24292         component of a "memory exhausted" message in slot 0.
24293         From a suggestion by Jim Meyering.
24294
24295 2000-07-30  Jim Meyering  <meyering@lucent.com>
24296
24297         * lib/makepath.c (make_path): Quote the other instance, too.
24298
24299         * lib/quotearg.c (N_STATIC_SLOTVECS): Define.
24300         (STATIC_BUF_SIZE): Define.
24301         (quotearg_n_options): Use only statically allocated storage when
24302         N < N_STATIC_SLOTVECS and the length of the quoted result is smaller
24303         than STATIC_BUF_SIZE.
24304
24305 2000-07-29  Jim Meyering  <meyering@lucent.com>
24306
24307         * lib/diacrit.c (diacrit_diac): Use __MSDOS__ in favor of MSDOS.
24308         * lib/dirname.c (dir_name): Likewise.
24309
24310         * lib/basename.c (base_name): Use ISSLASH rather than comparing against
24311         `/'.
24312
24313         * lib/dirname.c (dir_name) [MSDOS]: Declare `lim' to be const.
24314         (dir_name): Assert that there are no trailing slashes.
24315
24316 2000-07-29  Bruno Haible  <haible@clisp.cons.org>
24317
24318         * lib/mbswidth.h (mbswidth): Add a flags argument.
24319         (mbswidth): New declaration.
24320         (MBSW_ACCEPT_INVALID, MBSW_ACCEPT_UNPRINTABLE): New macros.
24321         * lib/mbswidth.c (mbswidth): Add a flags argument.
24322         (mbsnwidth): New function.
24323
24324 2000-07-24  Jim Meyering  <meyering@lucent.com>
24325
24326         * lib/mbswidth.c: Remove useless #else.  From Bruno Haible.
24327
24328 2000-07-23  Paul Eggert  <eggert@twinsun.com>
24329
24330         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Check for wcwidth declaration.
24331
24332 2000-07-23  Paul Eggert  <eggert@twinsun.com>
24333
24334         * lib/quotearg.c: Streamline by invoking multibyte code only if needed.
24335         <wchar.h>: Include only if HAVE_MBRTOWC && 1 < MB_LEN_MAX.
24336         (MB_CUR_MAX): Redefine to 1 if ! (HAVE_MBRTOWC && 1 < MB_LEN_MAX).
24337         (quotearg_buffer_restyled): If a unibyte locale, don't bother to
24338         invoke multibyte primitives.
24339
24340 2000-07-23  Paul Eggert  <eggert@twinsun.com>
24341
24342         * lib/quotearg.c:
24343         Include <wchar.h> even if ! (HAVE_MBRTOWC && 1 < MB_LEN_MAX),
24344         so that mbstate_t is always defined.
24345
24346         Do not inspect MB_LEN_MAX, since it's incorrectly defined to
24347         be 1 in at least one GCC installation, and this configuration
24348         error is likely to be common.  Ignoring MB_LEN_MAX hurts
24349         performance on hosts that have mbrtowc but have only unibyte
24350         locales, but I assume these hosts are rare.
24351
24352 2000-07-23  Paul Eggert  <eggert@twinsun.com>
24353
24354         * lib/mbswidth.c (_XOPEN_SOURCE):
24355         Don't define; this causes problems on Solaris 7.
24356         (wcwidth) [!HAVE_DECL_WCWIDTH]: Declare.
24357
24358 2000-07-23  Jim Meyering  <meyering@lucent.com>
24359
24360         * m4/check-decl.m4 (jm_CHECK_DECLS): Check for declarations of these,
24361         too: getgrgid, getpwuid, getuid.
24362
24363 2000-07-23  Jim Meyering  <meyering@lucent.com>
24364
24365         * lib/basename.c (base_name): Add an assertion.
24366
24367 2000-07-23  Bruno Haible  <haible@clisp.cons.org>
24368
24369         * lib/quotearg.c: When the system forces us to redefine mbstate_t,
24370         shadow its mbsinit function.
24371
24372 2000-07-17  Bruno Haible  <haible@clisp.cons.org>
24373
24374         * lib/mbswidth.h: New file.
24375         * lib/mbswidth.c: New file.
24376         * lib/Makefile.am (libfetish_a_SOURCES): Add mbswidth.c.
24377         (noinst_HEADERS): Add mbswidth.h.
24378
24379 2000-07-17  Bruno Haible  <haible@clisp.cons.org>
24380
24381         * lib/config.charset: Add support for FreeBSD. Improve support for
24382         HP-UX and IRIX 6.
24383
24384 2000-07-16  Bruno Haible  <haible@clisp.cons.org>
24385
24386         * m4/mbswidth.m4: New file.
24387         * m4/prereq.m4 (jm_PREREQ): Call jm_PREREQ_MBSWIDTH.
24388
24389 2000-07-15  Jim Meyering  <meyering@lucent.com>
24390
24391         * lib/makepath.c: Include quote.h.
24392         (make_path): Convert "`%s'" in format strings to "%s", and wrap each
24393         corresponding argument in a `quote (...)' call.
24394         Give better diagnostics.
24395
24396         * lib/Makefile.am (libfetish_a_SOURCES): Add quote.c.
24397         (noinst_HEADERS): Add quote.h.
24398
24399         * lib/quote.c (quote, quote_n): New file.  Two functions taken verbatim
24400         from tar's src/misc.c.
24401         * lib/quote.h: New file.  Prototypes for same.
24402
24403 2000-07-14  Paul Eggert  <eggert@twinsun.com>
24404
24405         From a suggestion by Bruno Haible.
24406         * lib/quotearg.c (mbrtowc): Do not use HAVE_WCHAR_H in the definition.
24407         Use defined mbstate_t, not HAVE_MBSTATE_T_OBJECT,
24408         to decide whether to define the BeOS workaround macro;
24409         this adjusts to the change to AC_MBSTATE_T.
24410
24411 2000-07-14  Jim Meyering  <meyering@lucent.com>
24412
24413         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Require
24414         jm_AC_TYPE_UINTMAX_T.
24415
24416 2000-07-13  Paul Eggert  <eggert@twinsun.com>
24417
24418         * lib/quotearg.h (enum quoting style): New enum clocale_quoting_style.
24419
24420         * lib/quotearg.c (quoting_style_args, quoting_style_vals,
24421         quotearg_buffer_restyled): Add support for
24422         clocale_quoting_style.  Undo previous change to
24423         locale_quoting_style behavior, and undo the "{LEFT QUOTATION MARK}"
24424         and "{RIGHT QUOTATION MARK}" msgids.
24425
24426 2000-07-10  Paul Eggert  <eggert@twinsun.com>
24427
24428         From a suggestion by Bruno Haible.
24429         * m4/mbstate_t.m4 (AC_MBSTATE_T):
24430         Renamed from AC_MBSTATE_T_OBJECT.  All uses changed.
24431         Change from a two-part test, which defines both HAVE_MBSTATE_T_OBJECT
24432         and mbstate_t, to a single-part test that simply defines mbstate_t.
24433         * m4/prereq.m4 (jm_PREREQ_QUOTEARG):
24434         s/AC_MBSTATE_T_OBJECT/AC_MBSTATE_T/.
24435
24436 2000-07-10  Jim Meyering  <meyering@lucent.com>
24437
24438         * m4/strerror_r.m4: Mirror the correction made in autoconf.
24439
24440         * m4/gnu-source.m4: Output to confdefs.h directly.
24441         Suggestion from Akim Demaille.
24442
24443 2000-07-09  Paul Eggert  <eggert@twinsun.com>
24444
24445         The old behavior of quoting `like this' doesn't look good with
24446         newer, ISO-style fonts.  See:
24447         http://www.cl.cam.ac.uk/~mgk25/ucs/quotes.html
24448
24449         Instead, quote "like this" by default.  Let the translator
24450         tailor the locale-specific quoting behavior by providing
24451         translations for {LEFT QUOTATION MARK} and {RIGHT QUOTATION MARK}.
24452
24453         * lib/quotearg.c (N_): New macro.
24454         (gettext_default): New function.
24455         (quotearg_buffer_restyled): Use
24456         gettext_default ("{LEFT QUOTATION MARK}", "\"") for left quote, and
24457         gettext_default ("{RIGHT QUOTATION MARK}", "\"") for right quote.
24458
24459 2000-07-09  Jim Meyering  <meyering@lucent.com>
24460
24461         * m4/jm-macros.m4 (jm_MACROS): Add a test to see if -lm is required
24462         to link seq.  If so, set SEQ_LIBM to -lm.  From Bruno Haible.
24463
24464         * m4/gnu-source.m4 (AC__GNU_SOURCE): New file/macro.
24465         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require it.
24466
24467 2000-07-09  Jim Meyering  <meyering@lucent.com>
24468
24469         * lib/Most files: Update copyright dates to include 2000.
24470
24471 2000-07-08  Jim Meyering  <meyering@lucent.com>
24472
24473         * lib/xgethostname.c (ENAMETOOLONG): Define to an unlikely value
24474         if not defined.
24475         (xgethostname): Remove now-unnecessary #ifdef.
24476         Move declaration of `err' into loop where it's used.
24477
24478 2000-07-05  Paul Eggert  <eggert@twinsun.com>
24479         and Bruno Haible  <haible@clisp.cons.org>
24480
24481         * m4/mbstate_t.m4 (AC_MBSTATE_T_OBJECT): Test for mbstate_t
24482         only if the test for an object-type mbstate_t fails.  This
24483         prevents us from mistakenly reporting that mbstate_t is a
24484         system object type after we "#define mbstate_t int" to work
24485         around its lack.
24486
24487 2000-07-05  Paul Eggert  <eggert@twinsun.com>
24488         and Bruno Haible  <haible@clisp.cons.org>
24489
24490         * lib/quotearg.c (mbrtowc): Declare returned type, since BeOS doesn't.
24491
24492 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
24493
24494         * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Pass a reasonably large buffer
24495         to strerror_r.
24496         Include <ctype.h> for use of isalpha.
24497
24498 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
24499
24500         * lib/xgethostname.c (xgethostname): Protect against the SunOS 5.5 bug
24501         by allocating a larger buffer. Test the gethostname return value for
24502         being >= 0, not == 0, for BeOS.  Don't exhaust memory if gethostname
24503         returns an error and ENAMETOOLONG isn't defined.
24504
24505 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
24506
24507         * lib/quotearg.c (struct quoting_options): Simplify quote_these_too
24508         dimension.
24509
24510 2000-07-04  Jim Meyering  <meyering@lucent.com>
24511
24512         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Use plain old `echo' instead
24513         of the deprecated AC_CHECKING.
24514
24515 2000-07-04  Jim Meyering  <meyering@lucent.com>
24516
24517         * lib/strndup.c: [!HAVE_DECL_STRNLEN]: Declare strnlen.
24518         Reported by Bruno Haible.
24519
24520 2000-07-04  Jim Meyering  <meyering@lucent.com>
24521
24522         * lib/quotearg.c: Make inclusion of <wchar.h> independent of whether
24523         HAVE_MBRTOWC is set.  Required at least for irix-5.6, which
24524         lacks mbrtowc.
24525
24526 2000-07-03  Paul Eggert  <eggert@twinsun.com>
24527
24528         * m4/mbstate_t.m4 (AC_MBSTATE_T_OBJECT): Port to autoconf 2.13.
24529         Add AC_CHECK_HEADERS(stdlib.h), since we use HAVE_STDLIB_H.
24530
24531 2000-07-03  Paul Eggert  <eggert@twinsun.com>
24532         and Bruno Haible  <haible@clisp.cons.org>
24533
24534         * lib/quotearg.c (mbrtowc):
24535         Assign to *pwc, and return 1 only if result is nonzero.
24536         (iswprint): Use ISPRINT when substituting our own mbrtowc.
24537
24538 2000-07-03  Jim Meyering  <meyering@lucent.com>
24539
24540         * m4/check-decl.m4 (AC_CHECK_DECLS): Add strnlen.
24541
24542 2000-07-03  Jim Meyering  <meyering@lucent.com>
24543
24544         * lib/readutmp.h: [HAVE_UTMPX_H]: Include <utmp.h> if HAVE_UTMP_H.
24545         This is necessary to get a definition of e.g., UTMP_FILE on
24546         HP-UX 10.20.
24547         From Bob Proulx.
24548
24549 2000-07-02  Jim Meyering  <meyering@lucent.com>
24550
24551         * m4/mbstate_t.m4: Also define mbstate_t, if necessary.
24552
24553         * m4/chown.m4: Replace each use of AC_SUBST(LIBOBJS)/LIBOBJS=... with
24554         AC_LIBOBJ(function_name).
24555         * m4/chown.m4: Likewise.
24556         * m4/fnmatch.m4: Likewise.
24557         * m4/ftruncate.m4: Likewise.
24558         * m4/getgroups.m4: Likewise.
24559         * m4/getline.m4: Likewise.
24560         * m4/group-member.m4: Likewise.
24561         * m4/jm-macros.m4: Likewise.
24562         * m4/lstat.m4: Likewise.
24563         * m4/malloc.m4: Likewise.
24564         * m4/memcmp.m4: Likewise.
24565         * m4/nanosleep.m4: Likewise.
24566         * m4/putenv.m4: Likewise.
24567         * m4/realloc.m4: Likewise.
24568         * m4/regex.m4: Likewise.
24569         * m4/stat.m4: Likewise.
24570         * m4/strftime.m4: Likewise.
24571
24572 2000-07-02  Jim Meyering  <meyering@lucent.com>
24573
24574         * lib/quotearg.c (mbstate_t): Don't define here.
24575
24576 2000-07-02  Jim Meyering  <meyering@lucent.com>
24577
24578         * lib/nanosleep.c (SIGCONT): Define if not already defined.
24579
24580 2000-07-01  Jim Meyering  <meyering@lucent.com>
24581
24582         * m4/uptime.m4: Put double quotes around use of $cross_compiling.
24583
24584 2000-07-01  Jim Meyering  <meyering@lucent.com>
24585
24586         * m4/ls-mntd-fs.m4: Remove a `FIXME' comment and fix the associated
24587         problem.
24588
24589 2000-07-01  Bruno Haible  <haible@clisp.cons.org>
24590
24591         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Rename BeOS specific
24592         macro from MOUNTED_NEXT_DEV to MOUNTED_FS_STAT_DEV.
24593
24594 2000-07-01  Bruno Haible  <haible@clisp.cons.org>
24595
24596         * lib/mountlist.c: Use MOUNTED_FS_STAT_DEV instead of MOUNTED_NEXT_DEV,
24597         per change in ../m4/ls-mntd-fs.m4.
24598         (read_filesystem_list): Ignore symbolic links.
24599
24600 2000-06-29  Jim Meyering  <meyering@lucent.com>
24601
24602         * lib/same.c: Include <string.h> or <strings.h>, as appropriate,
24603         for declaration of strcmp.
24604
24605         * lib/long-options.c: Include <stdlib.h>, for declaration of exit.
24606
24607         * lib/mountlist.c (fsp_to_string) [HAVE_F_FSTYPENAME_IN_STATFS]:
24608         Avoid warning by casting result to `char *' to remove `const'.
24609
24610 2000-06-28  Jim Meyering  <meyering@lucent.com>
24611
24612         * m4/mbstate_t.m4: Use stdlib.h, not stdio.h.  The latter is not
24613         included by quotearg.c, for which we perform this test.  From
24614         Bruno Haible.
24615
24616 2000-06-27  Bruno Haible  <haible@clisp.cons.org>
24617
24618         * m4/check-decl.m4 (_jm_DECL_HEADERS): Check for utmp.h as well.
24619         * m4/prereq.m4 (jm_PREREQ_READUTMP): Likewise. If either <utmp.h> or
24620         <utmpx.h> exists, put readutmp.o into LIBOBJS.
24621
24622 2000-06-27  Bruno Haible  <haible@clisp.cons.org>
24623
24624         * lib/Makefile.am (libfetish_a_SOURCES): Remove readutmp.c.
24625
24626 2000-06-26  Paul Eggert  <eggert@twinsun.com>
24627
24628         savedir now sets errno on failure and invokes xmalloc to get memory.
24629         Fix a couple of other minor bugs while we're at it.
24630
24631         * lib/savedir.c (<unistd.h>): Do not include; there's no need.
24632         (NAMLEN): Remove macro.
24633         (malloc, realloc): Remove decls.
24634         (stpcpy): Likewise.
24635         ("xalloc.h"): Include.
24636         (NAME_SIZE_DEFAULT): New macro.
24637         (savedir): Use xmalloc / xrealloc to allocate memory.
24638         Use NAME_SIZE_DEFAULT if name_size is negative or overflows to zero.
24639         Skip "" directory entries.
24640         Use strlen to calculate directory entry length, since the old method
24641         is rarely used these days and isn't worth supporting.
24642         Don't use a pointer after freeing it.
24643         Check for integer overflow when calculating allocation size.
24644         Use memcpy to copy entries, instead of stpcpy.
24645         Set errno properly when returning NULL.
24646         Check for readdir error.
24647
24648 2000-06-26  Jim Meyering  <meyering@lucent.com>
24649
24650         * lib/posixtm.c [HAVE_STDLIB_H]: Include stdlib.h, for decl of abort.
24651
24652 2000-06-25  Jim Meyering  <meyering@lucent.com>
24653
24654         * m4/mbstate_t.m4: Include stdio.h before wchar.h to work around
24655         Linux header bug when _XOPEN_SOURCE is defined to 500.
24656
24657 2000-06-25  Bruno Haible  <haible@clisp.cons.org>
24658
24659         * lib/unicodeio.c (print_unicode_char): Work around ansi2knr
24660         deficiency.
24661
24662 2000-06-25  Bruno Haible  <haible@clisp.cons.org>
24663
24664         * lib/getusershell.c (xmalloc, xrealloc): Remove functions.
24665         Include xalloc.h.
24666         Don't include <stdlib.h>.  Don't declare malloc, realloc.
24667
24668 2000-06-24  Jim Meyering  <meyering@lucent.com>
24669
24670         * m4/strerror_r.m4: Revive this file -- to try out an experimental
24671         version of AC_FUNC_STRERROR_R that may work even on BeOS, a system
24672         for which strerror does return char*, but which lacks a conveniently
24673         accessible declaration of the function.  If the compile-test says
24674         strerror_r doesn't work, then resort to a `run'-test that works on
24675         BeOS and segfaults on DEC Unix.
24676
24677 2000-06-24  Jim Meyering  <meyering@lucent.com>
24678
24679         * lib/error.c [!HAVE_DECL_STRERROR_R]: Declare strerror_r.
24680
24681 2000-06-23  Paul Eggert  <eggert@twinsun.com>
24682
24683         * m4/mbstate_t.m4: New file, defining AC_MBSTATE_T_OBJECT.
24684         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Use it.  Add check for iswprint.
24685
24686 2000-06-23  Paul Eggert  <eggert@twinsun.com>
24687
24688         * lib/quotearg.c: Include <wctype.h> after <wchar.h>, for Solaris 2.5.
24689         (mbrtowc, mbstate_t): Define substitutes if
24690         HAVE_MBRTOWC && HAVE_WCHAR_H && !HAVE_MBSTATE_T_OBJECT.
24691         (iswprint): Define to 1 if !defined iswprint && !HAVE_ISWPRINT,
24692         not if ! (HAVE_MBRTOWC && HAVE_WCHAR_H).
24693
24694 2000-06-23  Jim Meyering  <meyering@lucent.com>
24695
24696         * m4/afs.m4: Add missing AC_MSG_RESULT.
24697         Reported by Bruno Haible.
24698
24699         * m4/fsusage.m4: s/AC_MSG_CHECKING/AC_CHECKING/.
24700         Suggestion from Bruno Haible.
24701
24702 2000-06-23  Jim Meyering  <meyering@lucent.com>
24703
24704         * lib/getpass.c: New file, from Bruno Haible.  Required for BeOS.
24705
24706 2000-06-21  Jim Meyering  <meyering@lucent.com>
24707
24708         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add getpass.
24709
24710 2000-06-21  Jim Meyering  <meyering@lucent.com>
24711
24712         * lib/Makefile.am (libfetish_a_SOURCES): Add getstr.c.
24713         (noinst_HEADERS): Add getstr.h.
24714
24715         * lib/getline.c (getstr): Move into a separate file.
24716         * lib/getstr.c (getstr): New file, extracted from getline.c, with
24717         the following changes: new parameter, delim2; both delim[12]
24718         parameters have type `int', not `char'.  The latter would lose
24719         with 8-bit delimiters.
24720         * lib/getstr.h: New file.
24721
24722 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
24723
24724         * lib/xgetcwd.c (xgetcwd): If the required pathname length is smaller
24725         than 1024, return a memory chunk of least possible size, instead
24726         of size PATH_MAX + 2. In the loop, increment the size proportionally.
24727         Use free/xmalloc instead of xrealloc to avoid copying for very long
24728         paths.
24729
24730 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
24731
24732         * lib/path-concat.c (path_concat): Don't access dir[-1] if dir is
24733         the empty string.
24734
24735 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
24736
24737         * lib/canon-host.c (canon_host): Use malloc and memcpy to copy an
24738         address, not strdup.  Include <stdlib.h> and don't declare free().
24739
24740 2000-06-19  Jim Meyering  <meyering@lucent.com>
24741
24742         * lib/getloadavg.c [HAVE_NLIST_H] (NLIST_STRUCT): Define.
24743
24744 2000-06-18  Jim Meyering  <meyering@lucent.com>
24745
24746         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Remove mkdir.
24747
24748         * m4/link-follow.m4 (jm_AC_FUNC_LINK_FOLLOWS_SYMLINK): Change the
24749         `checking whether...' message to be consistent with that of the
24750         lstat test.
24751
24752 2000-06-18  Jim Meyering  <meyering@lucent.com>
24753
24754         * lib/mkdir.c: Remove file, due mainly to copyright incompatibility.
24755         Besides, these days every porting target provides a mkdir function.
24756
24757         * lib/strnlen.c: Include memory.h, string.h, and/or strings.h as
24758         needed. (this snippet comes from src/system.h).
24759
24760 2000-06-16  Bruno Haible  <haible@clisp.cons.org>
24761
24762         * m4/glibc21.m4 (jm_GLIBC21): Define GLIBC21 for Makefiles, not for C.
24763
24764 2000-06-15  Paul Eggert  <eggert@twinsun.com>
24765
24766         * lib/human.c (adjust_value): New function.
24767         (human_readable_inexact): Apply rounding style even when
24768         printing approximate values.
24769
24770 2000-06-14  Paul Eggert  <eggert@twinsun.com>
24771
24772         * lib/human.c (human_readable_inexact): Allow an input block
24773         size that is not a multiple of the output block size, and vice versa.
24774         Reported by Piergiorgio Sartor.
24775
24776 2000-06-14  Paul Eggert  <eggert@twinsun.com>
24777
24778         * lib/getdate.y (get_date): Apply relative times after time
24779         zone indicator, not before.  Reported by Todd A. Jacobs.
24780
24781 2000-06-13  Jim Meyering  <meyering@lucent.com>
24782
24783         * lib/Makefile.am (all-local): Depend on lstat.c and stat.c.
24784
24785         * lib/xstat.in [!HAVE_DECL_FREE]: Declare free in lstat.c.
24786
24787 2000-06-12  Paul Eggert  <eggert@twinsun.com>
24788
24789         * lib/xstat.in: Include <stdlib.h> in lstat, to declare "free".
24790
24791 2000-06-12  Jim Meyering  <meyering@lucent.com>
24792
24793         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Replace with
24794         AC_FUNC_GETLOADAVG from autoconf, and tweak the latter to accept an
24795         optional argument.
24796         * m4/jm-macros.m4: s/AM_FUNC_GETLOADAVG/AC_FUNC_GETLOADAVG/, and supply
24797         the optional argument, `lib'.
24798
24799 2000-06-08  Jim Meyering  <meyering@lucent.com>
24800
24801         * m4/largefile.m4: Remove file (now that it's part of autoconf).
24802
24803 2000-06-04  Paul Eggert  <eggert@twinsun.com>
24804
24805         Rewrite largefile configuration so that we don't need to run
24806         getconf and don't need AC_CANONICAL_HOST.  [I'm leaving the use of
24807         AC_CANONICAL_HOST in configure.in -- jmm]
24808
24809         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS,
24810         AC_SYS_LARGEFILE_SPACE_APPEND): Remove.
24811         (AC_SYS_LARGEFILE_TEST_INCLUDES): New macro.
24812         (AC_SYS_LARGEFILE_MACRO_VALUE): Change arguments from
24813         CODE-TO-SET-DEFAULT to VALUE, INCLUDES, FUNCTION-BODY.
24814         All uses changed.
24815         Instead of inspecting the output of getconf, try to compile the
24816         test program without and with the macro definition.
24817         (AC_SYS_LARGEFILE): Do not require AC_CANONICAL_HOST or check
24818         for getconf.  Instead, check for the needed flags by compiling
24819         test programs.
24820
24821 2000-06-04  Paul Eggert  <eggert@twinsun.com>
24822
24823         * lib/strnlen.c: Include <config.h> if HAVE_CONFIG_H.
24824
24825 2000-06-04  Jim Meyering  <meyering@lucent.com>
24826
24827         * lib/getugroups.c (getugroups): Cast -1 to gid_t, for systems like
24828         SunOS 4.1.4 for which gid_t is an unsigned type.
24829
24830 2000-06-03  Jim Meyering  <meyering@lucent.com>
24831
24832         * m4/prereq.m4 (jm_PREREQ_HUMAN): Use []-quoted list in AC_CHECK_DECLS,
24833         now that autoconf requires that.
24834
24835         * m4/jm-glibc-io.m4: Add a kludge to make autoheader emit the required
24836         #undefs.  E.g., #undef HAVE_DECL_FERROR_UNLOCKED.
24837         Use []-quoted list in AC_CHECK_DECLS, now that autoconf requires that.
24838
24839 2000-06-03  Jim Meyering  <meyering@lucent.com>
24840
24841         * lib/strnlen.c [!HAVE_DECL_MEMCHR]: Declare memchr.
24842
24843 2000-06-03  Bruno Haible  <haible@clisp.cons.org>
24844
24845         * m4/glibc21.m4: New file.
24846         * m4/jm-macros.m4 (jm_MACROS): Call jm_GLIBC21.
24847
24848 2000-06-03  Bruno Haible  <haible@clisp.cons.org>
24849
24850         * lib/Makefile.am (install-exec-local): On systems with glibc-2.1 or
24851         newer, don't install charset.alias.
24852         * lib/config.charset: Change the Linux/glibc rules so they become empty
24853         on glibc-2.1 or newer.
24854
24855 2000-06-02  Jim Meyering  <meyering@lucent.com>
24856
24857         * lib/mountlist.c: Back out last change.  Instead, do this...
24858         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Set the
24859         me_dummy member using the same `ignore'-testing code.
24860         * lib/mountlist.h (ME_DUMMY): Add `autofs' to the list of ignored
24861         fs_type strings.
24862         From Mark D. Roth.
24863
24864 2000-05-29  Jim Meyering  <meyering@lucent.com>
24865
24866         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Ignore
24867         mounts with the `ignore' attribute.  Based on a patch from
24868         Mark D. Roth.
24869
24870 2000-05-28  Jim Meyering  <meyering@lucent.com>
24871
24872         * m4/jm-macros.m4 (AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK): Rename from
24873         jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
24874         * m4/stat.m4: Likewise.
24875         * m4/lstat.m4: Likewise.
24876         * m4/lstat-slash.m4: Remove file (absorbed into autoconf).
24877
24878         * m4/jm-macros.m4 (AC_FUNC_STRERROR_R): Rename from jm_FUNC_STRERROR_R.
24879         * m4/strerror_r.m4: Remove file (absorbed into autoconf).
24880
24881 2000-05-26  Jim Meyering  <meyering@lucent.com>
24882
24883         * m4/uptime.m4: Use `$cross_compiling', not `$ac_cv_prog_cc_cross'.
24884
24885 2000-05-24  Jim Meyering  <meyering@lucent.com>
24886
24887         * m4/prereq.m4: Use []-quoted list in AC_CHECK_MEMBERS, now that
24888         autoconf requires that.
24889         * m4/lib-check.m4: Likewise.
24890         * m4/jm-macros.m4: Likewise.
24891         * m4/strftime.m4: Likewise.
24892
24893         * m4/check-decl.m4 (jm_CHECK_DECLS): Use []-quoted list in
24894         AC_CHECK_DECLS, now that autoconf requires that.
24895
24896 2000-05-22  Jim Meyering  <meyering@lucent.com>
24897
24898         * m4/stat.m4: Require jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
24899         * m4/lstat.m4: Likewise.
24900
24901 2000-05-22  Jim Meyering  <meyering@lucent.com>
24902
24903         * lib/makepath.c: Remove old, now-unnecessary `#ifdef __MSDOS__' block.
24904
24905 2000-05-20  Jim Meyering  <meyering@lucent.com>
24906
24907         * m4/prereq.m4 (jm_PREREQ_HUMAN): New macro.
24908         (jm_PREREQ): Use it.
24909
24910 2000-05-18  Jim Meyering  <meyering@lucent.com>
24911
24912         * lib/hash.c (hash_rehash): Fix a nasty bug: copy the free entry list
24913         back, too, since it may have been modified by allocate_entry.
24914         (hash_delete): Rewrite to use neither the assignment operator
24915         nor the comma operator in an if-expression.
24916
24917 2000-05-15  Paul Eggert  <eggert@twinsun.com>
24918
24919         * lib/closeout.c:
24920         <sys/stat.h>, <sys/types.h>, <unistd.h>, (STDOUT_FILENO):
24921         Remove; no longer needed.
24922         "quotearg.h": Add include.
24923         (file_name): Do not bother to explicitly initialize to NULL; it's less
24924         efficient on some hosts.
24925         (close_stdout_status): Remove test as to whether stdout was already
24926         closed; it breaks for the case "echo x | sort >&-".
24927         Quote file name colons.
24928         Do not assume that _("write error") lacks format strings.
24929
24930 2000-05-15  Jim Meyering  <meyering@lucent.com>
24931
24932         * lib/version-etc.c (version_etc_copyright): Update the copyright
24933         string used in all --version output.
24934
24935 2000-05-14  Jim Meyering  <meyering@lucent.com>
24936
24937         * lib/closeout.c (close_stdout_set_file_name): New function.
24938         (close_stdout_status): Use new file-scoped global.
24939         Return right away if fstat says the stdout file descriptor is invalid.
24940         * lib/closeout.h (close_stdout_set_file_name): Declare.
24941
24942 2000-05-10  Jim Meyering  <meyering@lucent.com>
24943
24944         * lib/closeout.c [default_exit_status]: New file-scoped variable.
24945         (close_stdout_set_status): New function.
24946         * lib/closeout.h (close_stdout_set_status): Declare.
24947
24948 2000-05-09  Jim Meyering  <meyering@lucent.com>
24949
24950         * m4/gettext.m4: Rename this...
24951         * m4/libintl.m4: ...to this.
24952
24953 2000-05-08  Jim Meyering  <meyering@lucent.com>
24954
24955         * lib/long-options.c: Don't include closeout.h.
24956         (parse_long_options): Don't call close_stdout for --version.
24957
24958 2000-05-06  Paul Eggert  <eggert@twinsun.com>
24959
24960         * m4/largefile.m4 (AC_SYS_LARGEFILE): Define _XOPEN_SOURCE to
24961         be 500, instead of _GNU_SOURCE to be 1, to work around glibc
24962         2.1.3 bug.  This avoids a clash when files like regex.c define
24963         _GNU_SOURCE.
24964
24965 2000-05-06  Jim Meyering  <meyering@lucent.com>
24966
24967         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add atexit.
24968         (AC_REPLACE_FUNCS): Add strnlen.
24969
24970         * m4/rmdir-errno.m4 (fetish_FUNC_RMDIR_NOTEMPTY): New macro and file.
24971         * m4/jm-macros.m4: Require fetish_FUNC_RMDIR_NOTEMPTY.
24972
24973         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Save and restore LIBS around
24974         AC_SEARCH_LIBS call for nanosleep.
24975         (LIB_NANOSLEEP): Set and AC_SUBST.
24976
24977 2000-05-06  Jim Meyering  <meyering@lucent.com>
24978
24979         * lib/strnlen.c: Undefine __strnlen and strnlen.
24980         [!weak_alias]: Define __strnlen to strnlen.
24981
24982         * lib/atexit.c: New file, from libiberty.
24983
24984 2000-05-06  Jim Meyering  <meyering@lucent.com>
24985
24986         * lib/closeout.c (close_stdout_status): Also check for errors on the
24987         stderr stream.
24988
24989 2000-05-05  Jim Meyering  <meyering@lucent.com>
24990
24991         * m4/jm-macros.m4 (jm_MACROS): Save and restore LIBS around
24992         AC_SEARCH_LIBS call for clock_gettime.
24993         (LIB_CLOCK_GETTIME): Set and AC_SUBST.
24994
24995         * m4/search-libs.m4: Update from autoconf.
24996
24997         su doesn't work on Solaris 2.6.
24998         * m4/lib-check.m4: When checking for struct spwd.sp_pwdp, also include
24999         <shadow.h>.  Reported by Dragos Harabor.
25000
25001 2000-05-05  Bruno Haible  <haible@clisp.cons.org>
25002
25003         * lib/localcharset.c (get_charset_aliases): Use malloc, realloc and
25004         memcpy instead of xmalloc, xrealloc, path_concat.
25005         (locale_charset): Treat empty environment variables as absent.
25006         (DIRECTORY_SEPARATOR, ISSLASH): New macros.
25007
25008 2000-05-04  Jim Meyering  <meyering@lucent.com>
25009
25010         * lib/getopt.c: Update from glibc.
25011         * lib/obstack.c: Likewise.
25012         * lib/obstack.h: Likewise.
25013         * lib/regex.c: Likewise.  NB: K&R compiler support is dropped for this
25014         file
25015
25016         * lib/regex.h: Likewise.
25017         * lib/strndup.c: Likewise.
25018         * lib/strnlen.c: New file, from glibc.
25019
25020 2000-05-03  Jim Meyering  <meyering@lucent.com>
25021
25022         * m4/check-decl.m4 (AC_CHECK_DECLS): Add strndup.
25023
25024 2000-05-02  Paul Eggert  <eggert@twinsun.com>
25025
25026         * m4/largefile.m4 (AC_SYS_LARGEFILE): Define _GNU_SOURCE if
25027         this is needed to make ftello visible (e.g. glibc 2.1.3).  Use
25028         compile-time test, rather than inspecting host and OS, to
25029         decide whether to define _LARGEFILE_SOURCE.
25030
25031 2000-05-01  Jim Meyering  <meyering@lucent.com>
25032
25033         * m4/fsusage.m4: Use AC_MSG_CHECKING instead of obsolete AC_CHECKING.
25034
25035         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Add BeOS support.
25036         Based on a patch from Bruno Haible.
25037
25038 2000-05-01  Jim Meyering  <meyering@lucent.com>
25039
25040         * lib/full-write.c (full_write): Remove `FIXME' part of comment.
25041
25042 2000-04-29  Jim Meyering  <meyering@lucent.com>
25043
25044         * lib/path-concat.c: Declare strdup only if it's not defined.
25045         * lib/canon-host.c: Likewise.
25046
25047 2000-04-28  Jim Meyering  <meyering@lucent.com>
25048
25049         * lib/rpmatch.c [HAVE_LIMITS_H]: Include limits.h before regex.h to
25050         avoid redefinition warning on some systems (HPUX).  Otherwise, regex.h
25051         is included first, then limits.h is included by locale.h by libintl.h.
25052         From John David Anglin.
25053
25054 2000-04-25  Jim Meyering  <meyering@lucent.com>
25055
25056         * lib/makepath.c (S_IRWXUGO): Define.
25057         (make_path): Always perform explicit chmod if MODE specifies any
25058         of the `special' permission bits.  Prompted by a bug report against
25059         install from Mate Wierdl and Joost van Baal.
25060
25061 2000-04-18  Jim Meyering  <meyering@lucent.com>
25062
25063         * m4/prereq.m4 (jm_PREREQ_GETPAGESIZE): New macro.
25064         (jm_PREREQ): Use it.
25065
25066 2000-04-18  Jim Meyering  <meyering@lucent.com>
25067
25068         * lib/README: New file.
25069
25070         * lib/getpagesize.h [!getpagesize && HAVE_OS_H && B_PAGE_SIZE]: Define
25071         getpagesize.  For BeOS.  Based on a patch from Bruno Haible.
25072
25073 2000-04-17  Jim Meyering  <meyering@lucent.com>
25074
25075         Get it right :-)
25076         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Emit the
25077         actual #define via AH_VERBATIM.  Don't need separate AC_DEFINE.
25078         Suggestion from Akim Demaille.
25079
25080 2000-04-17  Jim Meyering  <meyering@lucent.com>
25081
25082         * lib/strftime.c (my_strftime) [strftime]: Declare strftime here, since
25083         the definition of it to rpl_strftime also defined-away the system's
25084         declaration.
25085
25086 2000-04-15  Jim Meyering  <meyering@lucent.com>
25087
25088         Use `C' to denote so-called `contiguous' files, the same way
25089         that tar does.
25090         * lib/filemode.c (S_ISCTG) [!S_ISCTG && S_IFCTG]: Define.
25091         (ftypelet): Use S_ISCTG.
25092         From Michael Deutschmann.
25093
25094 2000-04-14  Jim Meyering  <meyering@lucent.com>
25095
25096         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Use the one-arg
25097         form of AC_DEFINE.  Otherwise, the #ifndef in AH_VERBATIM gets
25098         clobbered.
25099
25100 2000-04-14  Jim Meyering  <meyering@lucent.com>
25101
25102         * lib/strftime.c (my_strftime) [#ifdef strftime]: Declare strftime.
25103
25104 2000-04-13  Jim Meyering  <meyering@lucent.com>
25105
25106         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Use new
25107         AH_VERBATIM to insert required #ifndef into config.h.in.
25108         Suggestion from Akim Demaille.
25109
25110 2000-04-12  Jim Meyering  <meyering@lucent.com>
25111
25112         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Use AC_CHECK_HEADERS, not
25113         `AC_CHECK_HEADER' to check for locale.h.  Thanks to a report from
25114         Christian Krackowizer.
25115
25116         More code moved from ../configure.in into (jm_CHECK_ALL_TYPES).
25117         * m4/jm-macros.m4 (_GNU_SOURCE): Define.
25118         (AC_SYS_LARGEFILE): Require.
25119         (AM_C_PROTOTYPES): Require.
25120
25121 2000-04-08  Jim Meyering  <meyering@lucent.com>
25122
25123         * lib/Makefile.am (charset.alias): Use t-$@, not $@-t so the DOS 8.3
25124         names don't conflict.  Reported by Eli Zaretskii.
25125
25126 2000-04-07  Jim Meyering  <meyering@lucent.com>
25127
25128         * lib/putenv.c: Move inclusion of errno.h so it follows that of
25129         sys/types.h, to work around system header problems on AIX 3.2.5.
25130         From Bruno Haible.
25131
25132 2000-04-07  Bruno Haible  <haible@clisp.cons.org>
25133
25134         * lib/unicodeio.c (print_unicode_char): Avoid triggering Solaris iconv
25135         bug.  Deal with the different error behavior of Irix iconv.
25136
25137 2000-04-05  Paul Eggert  <eggert@twinsun.com>
25138
25139         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Don't use -n32 on
25140         IRIX if the installer said otherwise.
25141
25142 2000-04-05  Jim Meyering  <meyering@lucent.com>
25143
25144         Portability tweaks required for ultrix4.3.
25145         * m4/check-decl.m4 [!HAVE_UTMPX_H] (headers): Include <utmp.h>.
25146         (jm_CHECK_DECLS): Add getutent to the list of functions.
25147         (_jm_DECL_HEADERS): Add utmpx.h.
25148         From John David Anglin.
25149
25150         * m4/strftime.m4: Back out the 2000-04-02 change.
25151         Instead of that change, simply undefine putenv in the test program.
25152
25153 2000-04-05  Jim Meyering  <meyering@lucent.com>
25154
25155         Portability tweaks required for ultrix4.3.
25156         * lib/readutmp.h [HAVE_UTMPX_H && !HAVE_DECL_GETUTENT]: Declare
25157         getutent.
25158         * lib/readutmp.c: Include sys/types.h before sys/stat.h.
25159         * lib/canon-host.c: Declare strdup.
25160         * lib/path-concat.c: Likewise.
25161         From John David Anglin.
25162
25163 2000-04-04  Jim Meyering  <meyering@lucent.com>
25164
25165         Be more DOS 8.3-friendly.
25166         * lib/ref-add.sin: Renamed from ref-add.sed.in.
25167         * lib/ref-del.sin: Renamed from ref-del.sed.in.
25168         * lib/Makefile.am: Reflect renaming.
25169         Reported by Eli Zaretskii.
25170
25171         Use a temporary file name that won't clash with `charset.alias'
25172         in the DOS 8.3 name space.
25173         * lib/Makefile.am (charset_tmp): Define.
25174         (install-exec-local): Use $(charset_tmp) instead of $(charset_alias)-t.
25175         (uninstall-local): Likewise.
25176         Reported by Eli Zaretskii.
25177
25178 2000-04-03  Jim Meyering  <meyering@lucent.com>
25179
25180         * m4/gettext.m4: Fix typo in comment.
25181
25182         * m4/codeset.m4 (AC_CHECK_HEADERS): Add langinfo.h (moved here from
25183         textutils/configure.in).  Suggestion from Paul Eggert.
25184         (AC_CHECK_FUNCS): Add nl_langinfo.  (also from textutils/configure.in)
25185
25186 2000-04-02  Paul Eggert  <eggert@twinsun.com>
25187
25188         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME): Set TZ environment
25189         variable in the shell rather than using putenv, which isn't
25190         portable.  This avoids the configure-time inter-test dependency
25191         on the potentially-renamed putenv function.
25192
25193 2000-03-30  Paul Eggert  <eggert@twinsun.com>
25194
25195         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Include <sys/stat.h>
25196         before checking struct stat.st_blksize, so that
25197         HAVE_STRUCT_STAT_ST_BLKSIZE is defined correctly.
25198
25199 2000-03-29  Paul Eggert  <eggert@twinsun.com>
25200
25201         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Check for strftime,
25202         since strftime.c uses HAVE_STRFTIME to decide whether to use
25203         the underlying strftime.
25204
25205 2000-03-29  Paul Eggert  <eggert@twinsun.com>
25206
25207         * lib/time/strftime.c (my_strftime): Make sure we call the system
25208         strftime, not ourselves, when invoking the underlying strftime.
25209
25210 2000-03-24  Jim Meyering  <meyering@lucent.com>
25211
25212         * lib/Makefile.am (EXTRA_DIST): Add ref-add.sed.in and ref-del.sed.in.
25213         (charset_alias): Define.
25214         (install-exec-local): Factor out common code.
25215         (uninstall-local): Split lines longer than 80.
25216         (ref-add.sed, ref-del.sed): Remove rules... (do the following instead)
25217         (SUFFIXES): Define.
25218         (.sed.in.sed): New rule.  Don't redirect directly to $@.
25219         (CLEANFILES): Add ref-add.sed and ref-del.sed.
25220
25221 2000-03-19  Bruno Haible  <haible@clisp.cons.org>
25222
25223         * lib/config.charset: Output a line containing "Packages using this
25224         file".
25225         * lib/ref-add.sed.in, lib/ref-del.sed.in: New files.
25226         * lib/Makefile.am (install-exec-local, uninstall-local, ref-add.sed,
25227         ref-del.sed): New rules.
25228
25229 2000-03-17  Jim Meyering  <meyering@lucent.com>
25230
25231         * lib/unicodeio.c (<string.h>): Include only #if HAVE_STRING_H.
25232         Otherwise, include <strings.h>
25233
25234 2000-03-17  Bruno Haible  <haible@clisp.cons.org>
25235
25236         * lib/unicodeio.c (utf8_wctomb): New function.
25237         (print_unicode_char): Pass the Unicode character to iconv in UTF-8
25238         format instead of in UCS-4 with platform dependent endianness.
25239
25240 2000-03-10  Jim Meyering  <meyering@lucent.com>
25241
25242         * m4/lib-check.m4: Look for getspnam in -lgen, too.
25243         From Marco Franzen.
25244
25245 2000-03-07  Paul Eggert  <eggert@twinsun.com>
25246
25247         * lib/savedir.c (savedir): Work even if directory size is
25248         negative; this can happen with some screwy NFS configurations.
25249
25250 2000-03-06  Jim Meyering  <meyering@lucent.com>
25251
25252         * lib/localcharset.c (get_charset_aliases): Don't try to free file_name
25253         if it's NULL (because we ran out of memory).  From Bruno Haible.
25254
25255 2000-03-05  Jim Meyering  <meyering@lucent.com>
25256
25257         * lib/localcharset.c ("path-concat.h"): Include.
25258         (get_charset_aliases): Use path_concat instead of ANSI string
25259         concatenation.
25260
25261         * lib/unicodeio.h (PARAMS): Define.
25262         Use it to guard prototype.
25263
25264 2000-03-04  Jim Meyering  <meyering@lucent.com>
25265
25266         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require AC_C_VOLATILE,
25267         for lib/localcharset.c.
25268
25269 2000-03-04  Jim Meyering  <meyering@lucent.com>
25270
25271         * lib/Makefile.am (install-exec-local): Create $(libdir) before
25272         installing into it.
25273         (uninstall-local): Uncomment this rule so `make distcheck' works
25274         once again.
25275
25276         * lib/unicodeio.c (<errno.h>): Include it.
25277         (errno): Declare if not defined.
25278
25279         * lib/localcharset.c: Add Bruno's comment justifying use of volatile.
25280
25281         * lib/config.charset: New version, incorporating remarks from a linux
25282         i18n mailing list.  From Bruno Haible.
25283
25284 2000-03-04  Bruno Haible  <haible@clisp.cons.org>
25285
25286         * m4/codeset.m4: New file.
25287         * m4/iconv.m4: New file.
25288         * m4/jm-macros.m4 (jm_MACROS): Call jm_LANGINFO_CODESET and jm_ICONV.
25289
25290 2000-03-03  Jim Meyering  <meyering@lucent.com>
25291
25292         * m4/regex.m4: Make sure re_compile_pattern accepts patterns like `{1'.
25293
25294 2000-03-02  Jim Meyering  <meyering@lucent.com>
25295
25296         * m4/timespec.m4: Require AC_HEADER_TIME before the cache check so
25297         the messages come out on separate lines.
25298
25299         * m4/jm-glibc-io.m4 (jm_FUNC_GLIBC_UNLOCKED_IO): Use AC_CHECK_DECLS,
25300         rather than jm_CHECK_DECLARATIONS.
25301         * m4/decl.m4: Remove now-unused file.
25302
25303         * m4/check-decl.m4 (AC_CHECK_DECLS): Add getlogin, ttyname, and
25304         geteuid.
25305
25306 2000-03-02  Jim Meyering  <meyering@lucent.com>
25307
25308         * lib/Makefile.am (EXTRA_DIST): Add config.charset.
25309
25310 2000-03-01  Jim Meyering  <meyering@lucent.com>
25311
25312         * lib/localcharset.c: Guard some #includes with `#if HAVE_...'.
25313         * lib/unicodeio.c: Likewise.
25314
25315 2000-03-01  Bruno Haible  <haible@clisp.cons.org>
25316
25317         * lib/config.charset: New file.
25318         * lib/localcharset.c: New file.
25319         * lib/unicodeio.h, lib/unicodeio.c: New files.
25320         * lib/Makefile.am (DEFS): Add -DLIBDIR=...
25321         (libfetish_a_SOURCES): Add localcharset.c and unicodeio.c.
25322         (noinst_HEADERS): Add unicodeio.h.
25323         (all-local, install-exec-local, charset.alias): New targets.
25324
25325 2000-02-28  Paul Eggert  <eggert@twinsun.com>
25326
25327         * lib/quotearg.c (ALERT_CHAR): New macro.
25328         (quotearg_buffer_restyled): Use it.
25329
25330 2000-02-27  Jim Meyering  <meyering@lucent.com>
25331
25332         * m4/check-decl.m4: Add getenv to the list.
25333
25334 2000-02-27  Jim Meyering  <meyering@lucent.com>
25335
25336         * lib/strtoumax.c: Fix typo in decl of strtoul: s/long long/long/.
25337         Guard declaration of strtoull also with `&& HAVE_UNSIGNED_LONG_LONG'.
25338
25339         * lib/backupfile.c: Guard inclusion of stdlib.h with
25340         `#if HAVE_STDLIB_H', not `#if STDC_HEADERS'.
25341         Declare malloc if needed.
25342
25343         * lib/backupfile.c: Use `#if !HAVE_DECL...' instead of
25344         `#ifndef HAVE_DECL..'
25345         now that autoconf always defines the HAVE_DECL_ symbols.
25346         * lib/human.c: Likewise.
25347         * lib/same.c: Likewise.
25348         * lib/strtoumax.c: Likewise.
25349
25350         * lib/backupfile.c: Arrange for cpp to fail if the configure-time
25351         declaration check was not run.
25352         * lib/hash.c: Likewise.
25353         * lib/human.c: Likewise.
25354         * lib/same.c: Likewise.
25355         * lib/strtoumax.c: Likewise.
25356
25357         * lib/userspec.c (parse_user_spec): If there is no `:' but there is a
25358         `.', then first look up the entire `.'-containing string as a login
25359         name.
25360
25361 2000-02-23  Jim Meyering  <meyering@lucent.com>
25362
25363         * m4/check-decl.m4: Now that we have the new AC_CHECK_DECLS, use it
25364         in place of my hack.
25365
25366 2000-02-18  Paul Eggert  <eggert@twinsun.com>
25367
25368         * lib/getdate.y: Handle two-digit years with leading zeros correctly.
25369         (textint): New typedef.
25370         (parser_control): Member year changed from int to textint.
25371         All uses changed.
25372         (YYSTYPE): Removed; replaced by %union with int and textint members.
25373         (tDAY, tDAY_UNIT, tDAYZONE, tHOUR_UNIT, tID, tLOCAL_ZONE, tMERIDIAN,
25374         tMINUTE_UNIT, tMONTH, tMONTH_UNIT tSEC_UNIT, tSNUMBER, tUNUMBER,
25375         tYEAR_UNIT, tZONE, o_merid): Now of type <intval>.
25376         (tSNUMBER, tUNUMBER): Now of type <textintval>.
25377         (date, number, to_year): Use width of number in digits, not its value,
25378         to determine whether it's a 2-digit year, or a 2-digit time.
25379         (yylex): Store number of digits of numeric tokens.
25380         Reported by John Kendall.
25381
25382         (parser_control): Changed from struct parser_control to typedef (for
25383         consistency).  All uses changed.
25384
25385         (tID): Removed; not used.
25386         (yylex): Return '?' for unknown identifiers, rather than (unused) tID.
25387
25388 2000-02-14  Paul Eggert  <eggert@twinsun.com>
25389
25390         * lib/getpagesize.h (getpagesize): Port to VMS for Alpha;
25391         adapted from changes to grep getpagesize.h by Martin P.J. Zinser.
25392
25393 2000-02-12  Jim Meyering  <meyering@lucent.com>
25394
25395         * lib/userspec.c (ISDIGIT): Define it.
25396         (isdigit): Remove definition.
25397         (is_number): Use ISDIGIT, not isdigit.
25398         <libintl.h>: Include.
25399         (_ and N_): Define.
25400         (parse_user_spec): Mark translatable strings.
25401
25402 2000-02-10  Jim Meyering  <meyering@lucent.com>
25403
25404         With these changes, nanosleep.[ch] are finally enough like the other
25405         lib/* replacement files to compile on a few more losing systems.
25406
25407         * lib/nanosleep.h: Don't include config.h.
25408         Remove prototype from declaration of nanosleep.
25409         (PARAMS): Remove now-unneeded definition.
25410         * lib/nanosleep.c: #undef nanosleep.
25411         (rpl_nanosleep): Rename from nanosleep.
25412
25413 2000-02-10  Jim Meyering  <meyering@lucent.com>
25414
25415         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Rename replacement function from
25416         gnu_nanosleep to rpl_nanosleep.
25417
25418 2000-02-09  Jim Meyering  <meyering@lucent.com>
25419
25420         * m4/lib-check.m4 (jm_LIB_CHECK): Fix typo: check for sp_pwdp in
25421         struct spwd, rather than in struct passwd.  Reported by Gaël Quéri.
25422
25423 2000-02-08  Akim Demaille  <akim@epita.fr>
25424
25425         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Quote square brackets with
25426         `[' and `]' and remove uses of `changequote'.
25427         (AC_SYS_LARGEFILE_MACRO_VALUE): Likewise.
25428         (AC_SYS_LARGEFILE): Likewise.
25429         * m4/gettext.m4 (AM_GNU_GETTEXT): Likewise.
25430         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME): Remove now-unnecessary use
25431         of changequote.
25432         * m4/regex.m4 (jm_INCLUDED_REGEX): Likewise.
25433         * m4/readdir.m4 (jm_FUNC_READDIR): Likewise
25434         * m4/memcmp.m4 (jm_AC_FUNC_MEMCMP): Likewise, and add `int' for main.
25435         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Likewise.
25436
25437 2000-02-05  Jim Meyering  <meyering@lucent.com>
25438
25439         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require most macros.
25440         Remove explicit use of AC_HEADER_TIME.  It is required by
25441         jm_CHECK_TYPE_STRUCT_TIMESPEC.  Using AC_HEADER_TIME and
25442         `AC_REQUIRE'ing jm_CHECK_TYPE_STRUCT_TIMESPEC provoked a but
25443         in autoconf whereby the expansion of the latter ended up preceding
25444         the expansion of its prerequisite, AC_HEADER_TIME.
25445         Reported by Volker Borchert.
25446
25447 2000-02-03  Jim Meyering  <meyering@lucent.com>
25448
25449         * m4/prereq.m4 (jm_PREREQ_READUTMP): Check for utmpxname.
25450
25451 2000-02-03  Jim Meyering  <meyering@lucent.com>
25452
25453         * lib/readutmp.c (read_utmp): Guard with `#ifdef UTMP_NAME_FUNCTION',
25454         rather than with `#if HAVE_UTMPNAME'.
25455
25456 2000-02-02  Jim Meyering  <meyering@lucent.com>
25457
25458         * m4/prereq.m4 (jm_PREREQ_ADDEXT): Fix typo that resulted in no
25459         definition of HAVE_PATHCONF: s/AC_CHECK_FUNC/AC_CHECK_FUNCS/.
25460         Reported by Eli Zaretskii.
25461
25462 2000-02-01  Jim Meyering  <meyering@lucent.com>
25463
25464         * lib/readutmp.h (UT_USER): Add parens.  From Andreas Schwab.
25465
25466 2000-01-31  Jim Meyering  <meyering@lucent.com>
25467
25468         * m4/check-decl.m4 (jm_CHECK_DECLS): Add nanosleep to the list of
25469         functions.  Add the time.h and sys/time.h headers along with the
25470         AC_REQUIRE'ment of AC_HEADER_TIME.
25471
25472 2000-01-31  Jim Meyering  <meyering@lucent.com>
25473
25474         * lib/nanosleep.h (nanosleep): Guard declaration with
25475         `#if ! HAVE_DECL_NANOSLEEP'.
25476         Without this, OFS gets a redeclaration error for rpl_nanosleep, due to
25477         the declaration in that vendor's sys/timers.h.
25478         Reported by Christian Krackowizer.
25479
25480         * lib/quotearg.c (ISASCII): Add #undef and move definition to follow
25481         inclusion of wctype.h to work around Solaris 2.6 namespace pollution.
25482         (ISPRINT): Likewise.
25483         Reported by Tom Tromey.
25484
25485 2000-01-30  Jim Meyering  <meyering@lucent.com>
25486
25487         * m4/lib-check.m4: Clean up some kludgy old shadow password tests.
25488
25489         * m4/prereq.m4 (utmp_includes): Define.
25490         Check for ut_user and ut_name members in both struct utmpx
25491         and struct utmp.
25492
25493 2000-01-30  Jim Meyering  <meyering@lucent.com>
25494
25495         * lib/readutmp.c (extract_trimmed_name): Use UT_USER instead of
25496         hard-coding uses of ->ut_name.  The latter doesn't work with new Linux
25497         header files where only utmpx.ut_user is declared.
25498
25499         * lib/readutmp.h (UT_USER): Define.
25500
25501 2000-01-29  Jim Meyering  <meyering@lucent.com>
25502
25503         * m4/lib-check.m4: New file containing library-related checks from
25504         fileutils and sh-utils (textutils had none).
25505
25506 2000-01-28  Jim Meyering  <meyering@lucent.com>
25507
25508         * m4/perl.m4: Change format of warning message to look more like that
25509         from the missing script.  Suggestion from François Pinard.
25510
25511 2000-01-25  Jim Meyering  <meyering@lucent.com>
25512
25513         * m4/timespec.m4: Require AC_HEADER_TIME, and include sys/time.h as
25514         well as time.h in the compile check.
25515         * m4/nanosleep.m4: Require AC_HEADER_TIME rather than simply using it.
25516         Fix typo in cross-compiling case: s/yes/no/.
25517
25518 2000-01-23  Jim Meyering  <meyering@lucent.com>
25519
25520         * m4/jm-macros.m4: Move df-related tests here from
25521         fileutils/configure.in
25522
25523         * m4/ls-mntd-fs.m4: s/list_mounted_fs/ac_list_mounted_fs/
25524         (jm_LIST_MOUNTED_FILESYSTEMS): Take two parameters.
25525
25526         * m4/fsusage.m4: New file.  Extracted from fileutils/configure.in.
25527         s/space/ac_fsusage_space/.
25528         (jm_FILE_SYSTEM_USAGE): Take two parameters.
25529
25530         * m4/ftruncate.m4: New file (derived from part of
25531         fileutils/configure.in).
25532         * m4/jm-macros.m4 (jm_FUNC_FTRUNCATE): AC_REQUIRE it.
25533         (jm_CHECK_ALL_TYPES): Require AC_HEADER_MAJOR and AC_HEADER_DIRENT.
25534
25535         * m4/jm-macros.m4 (OPTIONAL_BIN_PROGS, OPTIONAL_BIN_ZCRIPTS, MAN):
25536         AC_SUBST these here, rather than just in sh-util/configure.in, so
25537         that the now-shared-by-fileutils-and-textutils lib/Makefile.am are
25538         all the same.
25539         (AM_FUNC_OBSTACK): Add (from fileutils/configure.in).
25540         (AC_CHECK_FUNCS): Merge all checks from fileutils, textutils, sh-utils.
25541         (AM_FUNC_STRTOD): Added (from textutils', sh-utils' configure.in).
25542         (AC_SUBST(POW_LIBM)): Likewise.
25543         (AC_SUBST(DF_PROG)): Moved from fileutils/configure.in.
25544
25545 2000-01-23  Jim Meyering  <meyering@lucent.com>
25546
25547         * lib/Makefile.am (libfetish_a_SOURCES): Remove explicit mention of
25548         obstack.c.
25549
25550 2000-01-22  Jim Meyering  <meyering@lucent.com>
25551
25552         * m4/jm-macros.m4: Call AC_PROG_CC_STDC just before AC_C_CONST.
25553
25554         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Add wctype.h.
25555
25556         * m4/jm-macros.m4 (AC_CHECK_HEADERS): Add checks from fileutils'
25557         configure.in
25558         (AC_CHECK_HEADERS): Likewise for sh-utils.
25559         (AC_CHECK_HEADERS): Likewise for textutils.
25560         Merge the three lists of headers.
25561
25562         * m4/prereq.m4 (jm_PREREQ_ADDEXT): New macro.  Parts moved here
25563         from fileutils' configure.in.
25564
25565         * m4/decl.m4: Remove kludgy `test -z $ac_...AC_CHECK_HEADERS(...)'
25566         code. Moved tests into their own function (_jm_DECL_HEADERS) in
25567         check-decl.m4.
25568
25569         * m4/check-decl.m4: Use #if rather than #ifdef.
25570         Add HAVE_DECL_STRTOUL and HAVE_DECL_STRTOULL.
25571         (jm_CHECK_DECLARATIONS): Add strtoul strtoull.
25572         (_jm_DECL_HEADERS): Define new function.
25573         (jm_CHECK_DECLARATIONS): Require it.
25574
25575 2000-01-22  Jim Meyering  <meyering@lucent.com>
25576
25577         * lib/strtoumax.c: [! HAVE_DECL_STRTOUL]: Declare strtoul.
25578         [! HAVE_DECL_STRTOULL]: Declare strtoull.
25579         Required for some AIX systems.  Reported by Christian Krackowizer.
25580         [TESTING] (main): New function.
25581
25582         1997-10-17  Eli Zaretskii  <eliz@is.elta.co.il>
25583         * lib/dirname.c (dir_name): Support for DOS-style file names with drive
25584         letters.
25585
25586         * lib/quotearg.c [HAVE_WCTYPE_H]: Include <wctype.h> for decl of
25587         iswprint.
25588
25589         * lib/strverscmp.c (ISDIGIT): Define.
25590         (strverscmp): Use ISDIGIT, not isdigit.
25591
25592 2000-01-19  Jim Meyering  <meyering@lucent.com>
25593
25594         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Include <sys/time.h>, too.
25595         Use AC_HEADER_TIME.  Volker Borchert reported that OpenBSD-2.3/sparc
25596         defines `struct timespec' in <sys/time.h>
25597
25598         * m4/c-bs-a.m4: Remove uses of changequote altogether.
25599         Thanks to Akim for explaining.
25600
25601 2000-01-17  Paul Eggert  <eggert@twinsun.com>
25602
25603         * lib/nanosleep.c (nanosleep):
25604         Don't use SA_INTERRUPT to decide whether to call sigaction, as
25605         POSIX.1 doesn't require SA_INTERRUPT and some systems
25606         (e.g. Solaris 7) don't define it.  Use SA_NOCLDSTOP instead;
25607         it's been part of POSIX.1 since day 1 (in 1988).
25608
25609 2000-01-17  Jim Meyering  <meyering@lucent.com>
25610
25611         * lib/interlock: Remove unused file.  Reported by François Pinard.
25612
25613 2000-01-16  Paul Eggert  <eggert@twinsun.com>
25614
25615         * lib/quotearg.c (quotearg_buffer_restyled): Do not quote
25616         alert, backslash, formfeed, and vertical tab unnecessarily in
25617         shell quoting style.
25618
25619 2000-01-16  Jim Meyering  <meyering@lucent.com>
25620
25621         * m4/jm-macros.m4: Require jm_FUNC_GROUP_MEMBER, jm_FUNC_PUTENV,
25622         AM_FUNC_ERROR_AT_LINE, jm_FUNC_GNU_STRFTIME, jm_FUNC_MKTIME,
25623         jm_FUNC_GETGROUPS AC_FUNC_VPRINTF, AC_FUNC_ALLOCA,
25624         AM_FUNC_GETLOADAVG, and jm_SYS_PROC_UPTIME.
25625
25626 2000-01-16  Jim Meyering  <meyering@lucent.com>
25627
25628         * m4/c-bs-a.m4: Use `changequote(<<,>>)', rather than `changequote(, )'
25629         because the latter didn't work.
25630
25631 2000-01-15  Jim Meyering  <meyering@lucent.com>
25632
25633         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add gethostname and getusershell.
25634         (AC_REPLACE_FUNCS): Add memcpy and memset.
25635         Add these, too: stime strcspn stpcpy strstr strtol strtoul.
25636         Add strpbrk.
25637         Add these: euidaccess memcmp mkdir rmdir rpmatch strndup strverscmp.
25638
25639 2000-01-12  Jim Meyering  <meyering@lucent.com>
25640
25641         * m4/prereq.m4 (jm_PREREQ_CANON_HOST): New macro.
25642         (jm_PREREQ): Use it.
25643         (jm_PREREQ_READUTMP): New macro.
25644         (jm_PREREQ): Use it.
25645
25646 2000-01-11  Paul Eggert  <eggert@twinsun.com>
25647
25648         Quote multibyte characters correctly.
25649         * m4/c-bs-a.m4: New file.
25650         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): New macro.
25651         (jm_PREREQ): Use it.
25652
25653 2000-01-11  Paul Eggert  <eggert@twinsun.com>
25654
25655         * m4/uintmax_t.m4: Port to autoconf 2.13.
25656
25657 2000-01-08  Jim Meyering  <meyering@ascend.com>
25658
25659         * m4/strerror_r.m4 (jm_FUNC_STRERROR_R): New file/macro.
25660         * m4/jm-macros.m4 (jm_FUNC_STRERROR_R): Require it.
25661
25662 2000-01-04  Jim Meyering  <meyering@ascend.com>
25663
25664         * m4/d-type.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Rename from
25665         jm_STRUCT_DIRENT_D_TYPE.
25666         * m4/d-ino.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_INO): Rename from
25667         jm_STRUCT_DIRENT_D_INO.
25668         * m4/utimbuf.m4 (jm_CHECK_TYPE_STRUCT_UTIMBUF): Rename from
25669         jm_STRUCT_UTIMBUF.
25670         * m4/jm-macros.m4: Reflect s/jm_STRUCT_/jm_CHECK_TYPE_STRUCT_/
25671         renamings.
25672         * m4/utime.m4: Likewise.
25673
25674         * m4/timespec.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC): New file, macro.
25675         * m4/jm-macros.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC): Require it.
25676
25677 2000-01-03  Paul Eggert  <eggert@twinsun.com>
25678
25679         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Search for nanosleep in -lrt
25680         (for Solaris 7) and in -lposix4 (for Solaris 2.5.1).
25681
25682 2000-01-02  Jim Meyering  <meyering@ascend.com>
25683
25684         * m4/search-libs.m4: Escape `$' in $3 of dnl comment.  I no longer
25685         remember if this is necessary.
25686
25687 1999-12-26  Jim Meyering  <meyering@ascend.com>
25688
25689         * m4/jm-macros.m4: Use it here.
25690         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): New file/macro.
25691
25692 1999-12-23  Jim Meyering  <meyering@ascend.com>
25693
25694         * m4/jm-macros.m4: Check for clock_gettime (moved from
25695         fileutils/configure.in)
25696         Check for gettimeofday.
25697
25698 1999-12-20  Jim Meyering  <meyering@ascend.com>
25699
25700         * m4/strftime.m4: Remove kludge, now that I'm using the fixed
25701         autoconf-2.14a-1999-12-20.
25702
25703 1999-12-19  Jim Meyering  <meyering@ascend.com>
25704
25705         * m4/lstat-slash.m4: New file.
25706         * m4/jm-macros.m4: Use the new macro:
25707         jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
25708
25709 1999-12-07  Jim Meyering  <meyering@ascend.com>
25710
25711         * m4/perl.m4: Require that File::Compare be available, too.
25712         Too many systems seem to lack it.
25713
25714         * m4/strftime.m4: Add checks for most of the cpp macros tested in
25715         GNU's strftime.c.  Prompted by a patch from Paul Eggert.
25716
25717 1999-11-18  Paul Eggert  <eggert@twinsun.com>
25718
25719         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Work around a
25720         problem with the QNX 4.25 shell, which doesn't propagate exit
25721         status of failed commands inside shell assignments.
25722
25723 1999-11-17  Jim Meyering  <meyering@ascend.com>
25724
25725         * m4/gettext.m4: Use new AC_CONFIG_LINKS in place of AC_LINK_FILES.
25726
25727 1999-11-07  Jim Meyering  <meyering@ascend.com>
25728
25729         * m4/getloadavg.m4: Add `, 1, [FIXME]' to each use of AC_DEFINE.
25730
25731 1999-11-06  Jim Meyering  <meyering@ascend.com>
25732
25733         * m4/link-follow.m4 (jm_AC_FUNC_LINK_FOLLOWS_SYMLINK): New file/macro.
25734         * m4/jm-macros.m4 (jm_MACROS): Use it here.
25735
25736 1999-11-05  Jim Meyering  <meyering@ascend.com>
25737
25738         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Move some tests from
25739         configure.in of textutils, fileutils, and sh-utils into this one
25740         (shared between those packages) file.
25741         Use `AC_CHECK_MEMBERS((struct stat.st_blksize))' instead of deprecated
25742         AC_STRUCT_ST_BLKSIZE.
25743
25744 1999-11-03  Jim Meyering  <meyering@ascend.com>
25745
25746         * m4/ssize_t.m4: Remove file.  No longer needed since the new version
25747         of AC_CHECK_TYPE checks includes unistd.h.
25748         * m4/jm-macros.m4: Use straight `AC_CHECK_TYPE(ssize_t, int)'.
25749         Suggestion from Akim Demaille.
25750
25751 1999-10-30  Jim Meyering  <meyering@ascend.com>
25752
25753         * m4/uintmax_t.m4: Require 2.14a.  Remove backslash before backtick in
25754         m4-quoted string.
25755         * m4/ls-mntd-fs.m4: Likewise.
25756         * m4/jm-macros.m4: Likewise.  Also, use AC_TYPE_SSIZE_T instead
25757         * m4/jm-winsz1.m4: Likewise.
25758
25759         * m4/const.m4: Remove file, since the fix made it into the experimental
25760         version of autoconf.
25761         * m4/mktime.m4: Likewise.
25762
25763         * m4/check-type.m4: Remove file, now that the latest version of
25764         AC_CHECK_TYPE takes a third arg to specify additional #includes.
25765
25766         * m4/ssize_t.m4: New file, requires experimental version of autoconf.
25767         * m4/jm-macros.m4: Use new AC_TYPE_SSIZE_T instead of my hacked
25768         AC_CHECK_TYPE.
25769
25770 1999-10-04  Jim Meyering  <meyering@ascend.com>
25771
25772         * m4/jm-macros.m4: Don't require autoconf-2.14.1.
25773
25774 1999-09-22  Paul Eggert  <eggert@twinsun.com>
25775
25776         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Work around GCC
25777         2.95.1 bug with HP-UX 10.20.
25778
25779 1999-09-17  Jim Meyering  <meyering@ascend.com>
25780
25781         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add strdup.
25782         Paul Nevai reported a link failure on a NeXT CUBE with NeXTSTEP 3.3
25783         due to missing strdup (against sh-utils-2.0).
25784
25785 1999-08-29  Jim Meyering  <meyering@ascend.com>
25786
25787         * m4/jm-macros.m4: Require jm_BISON.
25788         * m4/bison.m4: New file.
25789
25790 1999-08-17  Paul Eggert  <eggert@twinsun.com>
25791
25792         * m4/largefile.m4 (AC_SYS_LARGEFILE): Fix typo: missing comma
25793         in value for _FILE_OFFSET_BITS, which broke ports to HP-UX 10.20.
25794
25795 1999-08-05  Jim Meyering  <meyering@ascend.com>
25796
25797         * m4/getline.m4: Rename test file from conftestdata to conftest.data
25798         to avoid conflicts with `conftest' on 8+3 filesystems.
25799         Suggestion from Eli Zaretskii.
25800
25801 1999-08-04  Jim Meyering  <meyering@ascend.com>
25802
25803         * m4/jm-macros.m4: Move a 4-line block of code from the configure.in of
25804         fileutils and sh-utils (textutils's getline test was inadequate).
25805         (AM_FUNC_GETLINE): Run this test.
25806         (AC_CHECK_FUNCS): Check for getdelim.
25807         Reported by Bob Proulx.
25808
25809 1999-08-02  Jim Meyering  <meyering@ascend.com>
25810
25811         * m4/jm-macros.m4: Add a comment.
25812
25813 1999-08-01  Paul Eggert  <eggert@twinsun.com>
25814
25815         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Check whether
25816         <inttypes.h> defines strtoumax as a macro (and not as a
25817         function).
25818
25819 1999-08-01  Paul Eggert  <eggert@twinsun.com>
25820
25821         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Make sure
25822         that we can shift, multiply and divide unsigned long long
25823         values; Ultrix cc can't do it.
25824
25825 1999-08-01  Paul Eggert  <eggert@twinsun.com>
25826
25827         * m4/mktime.m4: New file, which is a preview of what should appear
25828         in the next public autoconf release.
25829
25830 1999-08-01  Paul Eggert  <eggert@twinsun.com>
25831
25832         * m4/lfs.m4: Remove this file.
25833         * m4/largefile.m4: New file.  It contains the old contents of
25834         lfs.m4, except that all names with prefix AC_LFS have been
25835         changed to use the prefix AC_SYS_LARGEFILE instead, to be
25836         compatible with future autoconf versions.  Also, some minor m4
25837         quoting problems have been fixed.
25838
25839 1999-08-01  Paul Eggert  <eggert@twinsun.com>
25840
25841         * m4/gettext.m4 (AM_WITH_NLS): Remove unnecessary lines.
25842         Fix typo: $nls_cv_header_intl was misspelled as $nsl_cv_header_intl.
25843         (AM_GNU_GETTEXT): Fix problem with brackets and m4 quoting,
25844         and simplify the shell code.
25845
25846 1999-08-01  Jim Meyering  <meyering@ascend.com>
25847
25848         * m4/mktime.m4 (AC_FUNC_MKTIME): Undefine to avoid syntax errors from
25849         m4.
25850
25851 1999-07-20  Jim Meyering  <meyering@ascend.com>
25852
25853         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memmove.
25854
25855 1999-07-15  Jim Meyering  <meyering@ascend.com>
25856
25857         * m4/jm-macros.m4 (AC_CHECK_FUNCS): Check for getpagesize.
25858
25859 1999-05-22  Jim Meyering  <meyering@ascend.com>
25860
25861         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memchr.
25862
25863 1999-05-20  Jim Meyering  <meyering@ascend.com>
25864
25865         * m4/search-libs.m4 [AC_SEARCH_LIBS]: Quote name in undefine.
25866         Add a colon after each `then' in case $4 is empty.
25867
25868 1999-05-16  Jim Meyering  <meyering@ascend.com>
25869
25870         * m4/search-libs.m4: New file to override autoconf's AC_SEARCH_LIBS.
25871
25872 1999-05-10  Jim Meyering  <meyering@ascend.com>
25873
25874         * m4/jm-mktime.m4: Reflect renaming: AM_FUNC_MKTIME -> AC_FUNC_MKTIME.
25875
25876         * m4/jm-macros.m4: Require 2.14.1, since we use newly-renamed
25877         AC_FUNC_MKTIME.
25878
25879 1999-05-10  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
25880
25881         * m4/jm-mktime.m4, putenv.m4: Fix typos in config.h comments.
25882
25883 1999-05-04  Paul Eggert  <eggert@twinsun.com>
25884
25885         * m4/lfs.m4 (AC_LFS): -n32, -o32, and -n64 should be in CFLAGS,
25886         not CPPFLAGS, so that linking works correctly in IRIX.
25887
25888 1999-04-30  Paul Eggert  <eggert@twinsun.com>
25889
25890         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add dup2.
25891
25892 1999-04-20  Paul Eggert  <eggert@twinsun.com>
25893
25894         * m4/uintmax_t.m4 (jm_AC_TYPE_UINTMAX_T): Move unsigned long
25895         long check into new jm_AC_TYPE_UNSIGNED_LONG_LONG macro.
25896         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require
25897         jm_AC_TYPE_UNSIGNED_LONG_LONG.
25898         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): New file/macro.
25899
25900         * m4/lfs.m4: Port to AIX and HP-UX.  Support cross-compilation.
25901
25902 1999-04-20  Jim Meyering  <meyering@ascend.com>
25903
25904         * m4/xstrtoumax.m4: Require jm_AC_TYPE_UNSIGNED_LONG_LONG.
25905         AC_REPLACE xstroull if necessary.  From Paul Eggert.
25906         (AC_CHECK_FUNCS): Remove strtoull, strtoumax, strtouq.
25907
25908 1999-04-18  Jim Meyering  <meyering@ascend.com>
25909
25910         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): New file/macro.
25911         * m4/jm-macros.m4: Use it.
25912
25913 1999-04-06  Jim Meyering  <meyering@ascend.com>
25914
25915         * m4/strftime.m4: Remove test for %f.
25916
25917 1999-03-29  Jim Meyering  <meyering@ascend.com>
25918
25919         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): New macro, contains the
25920         superset of the AC_TYPE_* checks in the textutils, fileutils,
25921         and sh-utils, plus AC_TYPE_PID_T.  Paul Eggert suggested adding
25922         AC_TYPE_PID_T.
25923
25924 1999-03-28  Jim Meyering  <meyering@ascend.com>
25925
25926         * m4/jm-macros.m4: Define GNU_PACKAGE here.
25927         Be sure to AC_SUBST it, once again, so that @GNU_PACKAGE@ is
25928         replaced e.g., in the *.sh files of the sh-utils.
25929
25930 1999-03-20  Jim Meyering  <meyering@ascend.com>
25931
25932         * m4/jm-macros.m4: s/jm_WITH_REGEX/jm_INCLUDED_REGEX/.
25933         * m4/regex.m4 (jm_INCLUDED_REGEX): Rename from jm_WITH_REGEX.
25934         Don't depend on AM_GLIBC.  Suggestions from Alain Magloire.
25935
25936 1999-03-19  Jim Meyering  <meyering@ascend.com>
25937
25938         * m4/jm-winsz1.m4 (jm_WINSIZE_IN_PTEM): New macro.
25939
25940 1999-03-12  Jim Meyering  <meyering@ascend.com>
25941
25942         * m4/jm-macros.m4: Use AC_FUNC_SETVBUF_REVERSED.
25943
25944 1999-03-07  Jim Meyering  <meyering@ascend.com>
25945
25946         * m4/jm-glibc-io.m4: Use only those *_unlocked macros that are
25947         declared.
25948
25949 1999-02-17  Jim Meyering  <meyering@ascend.com>
25950
25951         * m4/gettext.m4 (AM_GNU_GETTEXT): Do `changequote' around use of
25952         brackets in macro definition.  From Eli Zaretskii and Alain Magloire.
25953
25954 1999-02-07  Jim Meyering  <meyering@ascend.com>
25955
25956         * m4/group-member.m4: New file -- extracted from sh-utils'
25957         configure.in.
25958
25959         1999-02-05  Eli Zaretskii  <eliz@is.elta.co.il>
25960         * m4/gettext.m4: Support DOS-style d:/foo/bar absolute file names.
25961
25962 1999-02-06  Jim Meyering  <meyering@ascend.com>
25963
25964         * m4/chown.m4: Use `AC_SUBST(LIBOBJS)' since we set LIBOBJS.
25965         * m4/fnmatch.m4: Likewise.
25966         * m4/getgroups.m4: Likewise.
25967         * m4/lstat.m4: Likewise.
25968         * m4/malloc.m4: Likewise.
25969         * m4/putenv.m4: Likewise.
25970         * m4/realloc.m4: Likewise.
25971         * m4/regex.m4: Likewise.
25972         * m4/stat.m4: Likewise.
25973         * m4/strftime.m4: Likewise.
25974         Suggestion from Alain Magloire.
25975
25976         * m4/chown.m4: Use `.$ac_objext', not `.o'.
25977         * m4/fnmatch.m4: Likewise.
25978         * m4/getgroups.m4: Likewise.
25979         * m4/getline.m4: Likewise.
25980         * m4/lstat.m4: Likewise.
25981         * m4/malloc.m4: Likewise.
25982         * m4/memcmp.m4: Likewise.
25983         * m4/putenv.m4: Likewise.
25984         * m4/realloc.m4: Likewise.
25985         * m4/regex.m4: Likewise.
25986         * m4/stat.m4: Likewise.
25987         * m4/strftime.m4: Likewise.
25988         Suggestion from Alain Magloire.
25989
25990         * m4/jm-macros.m4: Actually invoke jm_WITH_REGEX now that it requires
25991         an argument.
25992
25993         * m4/regex.m4: Add a run-time Test for proper operation of
25994         re_compile_pattern.
25995
25996 1999-01-31  Jim Meyering  <meyering@ascend.com>
25997
25998         * m4/getloadavg.m4: Check for locale.h and the function, setlocale.
25999
26000 1999-01-30  Jim Meyering  <meyering@ascend.com>
26001
26002         * m4/check-type.m4: Use 3-arg form of AC_DEFINE.
26003
26004         * m4/jm-mktime.m4: Make this a wrapper around the official
26005         AM_FUNC_MKTIME rather than my private copy, now that the official one
26006         is up to date.
26007         * m4/mktime.m4: Remove file.
26008
26009         * m4/getloadavg.m4: Use 3-arg form of AC_DEFINE.
26010         * m4/uptime.m4: Likewise.
26011         * m4/uintmax_t.m4: Likewise.
26012
26013 1999-01-28  Jim Meyering  <meyering@ascend.com>
26014
26015         * m4/jm-macros.m4: Use jm_AFS.
26016         * m4/afs.m4: New file (from fileutils' configure.in).
26017
26018         * m4/assert.m4: Use the 3-argument forms of AC_DEFINE* macros.
26019         * m4/chown.m4: Likewise.
26020         * m4/d-ino.m4: Likewise.
26021         * m4/d-type.m4: Likewise.
26022         * m4/fnmatch.m4: Likewise.
26023         * m4/getgroups.m4: Likewise.
26024         * m4/gettext.m4: Likewise.
26025         * m4/jm-mktime.m4: Likewise.
26026         * m4/jm-winsz2.m4: Likewise.
26027         * m4/lcmessage.m4: Likewise.
26028         * m4/ls-mntd-fs.m4: Likewise.
26029         * m4/malloc.m4: Likewise.
26030         * m4/memcmp.m4: Likewise.
26031         * m4/putenv.m4: Likewise.
26032         * m4/realloc.m4: Likewise.
26033         * m4/st_mtim.m4: Likewise.
26034         * m4/strftime.m4: Likewise.
26035
26036 1999-01-16  Jim Meyering  <meyering@ascend.com>
26037
26038         * m4/jm-macros.m4 (ARGMATCH_DIE): Define.
26039         (ARGMATCH_DIE_DECL): Define.
26040
26041 1999-01-12  Jim Meyering  <meyering@ascend.com>
26042
26043         * m4/Makefile.am.in: Rewrite to avoid using fmt.
26044         Reported by Lars Hecking.
26045
26046 1999-01-10  Jim Meyering  <meyering@ascend.com>
26047
26048         * m4/fstypename.m4: Use the new 3-arg form of AC_DEFINE instead of my
26049         gross kludge.
26050         * m4/inttypes_h.m4: Likewise.
26051         * m4/lstat.m4: Likewise.
26052         * m4/malloc.m4: Likewise.
26053         * m4/readdir.m4: Likewise.
26054         * m4/realloc.m4: Likewise.
26055         * m4/st_dm_mode.m4: Likewise.
26056         * m4/stat.m4: Likewise.
26057         * m4/utimbuf.m4: Likewise.
26058         * m4/utimes.m4: Likewise.
26059
26060         * m4/check-decl.m4: Use the new 3-arg form of AC_DEFINE instead of the
26061         AC_CHECK_FUNCS hack.  Now, it's still a hack, but at least the
26062         comments in config.h.in are meaningful.
26063
26064         * m4/jm-macros.m4: Require autoconf-2.13 here.
26065
26066         * m4/regex.m4: By default, don't use the included regex.c on systems
26067         with glibc 2.  Suggestion from Uli Drepper.
26068
26069 1999-01-02  Jim Meyering  <meyering@ascend.com>
26070
26071         * m4/jm-macros.m4: Replace strcasecmp and strncasecmp.
26072
26073 1998-12-18  Jim Meyering  <meyering@ascend.com>
26074
26075         * m4/Makefile.am.in (Makefile.am): Simplify rule.
26076         Based on a suggestion from Lars Hecking.
26077
26078 1998-11-16  Paul Eggert  <eggert@twinsun.com>
26079
26080         * m4/lfs.m4 (AC_LFS): Add support for HP-UX 10.20 and HP-UX 11.
26081
26082 1998-11-16  Jim Meyering  <meyering@ascend.com>
26083
26084         * m4/lfs.m4: Double-quote the `uname...` expression.
26085
26086 1998-11-14  Jim Meyering  <meyering@ascend.com>
26087
26088         * m4/lstat.m4: Correct comment.  POSIX does not permit it to succeed.
26089         * m4/stat.m4: Likewise.
26090
26091 1998-11-03  Jim Meyering  <meyering@ascend.com>
26092
26093         * m4/stat.m4: Rewrite to set HAVE_STAT_EMPTY_STRING_BUG.
26094         * m4/lstat.m4: Rewrite to set HAVE_LSTAT_EMPTY_STRING_BUG.
26095
26096 1998-10-18  Jim Meyering  <meyering@ascend.com>
26097
26098         * m4/check-decl.m4 (jm_CHECK_DECL_LOCALTIME_R): Remove macro.
26099
26100 1998-10-17  Jim Meyering  <meyering@ascend.com>
26101
26102         * m4/decl.m4 (jm_CHECK_DECLARATION): Don't hard-code which headers to
26103         include, though we still hard-code the `require'-like AC_CHECK_HEADERS
26104         calls for those previously hard-coded headers.  Instead, take a new
26105         parameter.
26106         (jm_CHECK_DECLARATIONS): Reflect interface change.
26107         * m4/check-decl.m4 (jm_CHECK_DECLS): Likewise.
26108         (jm_CHECK_DECL_LOCALTIME_R): New macro.
26109
26110         * m4/mktime.m4: Test for spring-forward gap before long-running test.
26111
26112 1998-10-14  Jim Meyering  <meyering@ascend.com>
26113
26114         * m4/mktime.m4: Use the more portable "TZ=PST8PDT,M4.1.0,M10.5.0"
26115         instead of "TZ=America/Vancouver".  From Paul Eggert.
26116
26117 1998-10-11  Jim Meyering  <meyering@ascend.com>
26118
26119         * m4/mktime.m4 (jm_AM_FUNC_MKTIME): New file and macro.
26120         This adds a test for a recently added compatibility fix for mktime.c.
26121         * m4/jm-mktime.m4: Require jm_AM_FUNC_MKTIME, not AM_FUNC_MKTIME.
26122
26123 1998-09-27  Jim Meyering  <meyering@ascend.com>
26124
26125         * m4/jm-macros.m4 (jm_MACROS): Require jm_FUNC_FNMATCH.
26126
26127         * m4/fnmatch.m4 (jm_FUNC_FNMATCH): New file/macro.  Extracted from
26128         ../configure.in, including a change from Gordon Matzigkeit to allow
26129         cross-compiling for the Hurd.
26130
26131         * m4/glibc.m4: New file/macro to test for the GNU C Library
26132         versions 1 and 2.  From Gordon Matzigkeit.
26133         Indent.
26134
26135 1998-09-21  Jim Meyering  <meyering@ascend.com>
26136
26137         * m4/chown.m4: Declare locals: before, after.  From Andries Brouwer.
26138
26139 1998-08-18  Paul Eggert  <eggert@twinsun.com>
26140
26141         Port nanosecond-resolution times to UnixWare 2.1.2 and
26142         pedantic Solaris 2.6.
26143
26144         * m4/st_mtim.m4 (AC_STRUCT_ST_MTIM_NSEC): Renamed from
26145         AC_STRUCT_ST_MTIM.
26146         * m4/st_mtim.m4 (AC_STRUCT_ST_MTIM_NSEC):
26147         Generate name of ns member, instead of just 1 or undef.
26148         Allow for UnixWare 2.1.2 and Solaris 2.6 if in pedantic mode.
26149
26150 1998-08-15  Jim Meyering  <meyering@ascend.com>
26151
26152         * m4/ssize_t.m4 (jm_TYPE_SSIZE_T): Remove file.
26153         * m4/check-type.m4: New file.  Replacement for AC_CHECK_TYPE.
26154         * m4/jm-macros.m4: Use the new AC_CHECK_TYPE(ssize_t, int)
26155         instead of jm_TYPE_SSIZE_T.
26156
26157 1998-08-12  Jim Meyering  <meyering@ascend.com>
26158
26159         * m4/st_dm_mode.m4: New file.  From Johan Danielsson.
26160
26161 1998-08-02  Jim Meyering  <meyering@ascend.com>
26162
26163         * m4/st_mtim.m4: Use hack to avoid having to put #undef HAVE_ST_MTIM
26164         in acconfig.h manually.
26165
26166 1998-07-31  Paul Eggert  <eggert@twinsun.com>
26167
26168         * m4/st_mtim.m4: New file.
26169
26170 1998-07-28  Jim Meyering  <meyering@ascend.com>
26171
26172         * m4/utimes.m4: Undef stat.
26173
26174 1998-07-25  Jim Meyering  <meyering@ascend.com>
26175
26176         * m4/utime.m4 (jm_FUNC_UTIME): New file and macro.
26177         * m4/utimes.m4 (jm_FUNC_UTIMES_NULL): New file and macro.
26178
26179 1998-07-09  Manfred Hollstein  <manfred@s-direktnet.de>
26180
26181         * m4/chown.m4 (jm_FUNC_CHOWN): Add a check to verify that the
26182         uid and gid actually remain unchanged.
26183
26184 1998-07-07  Jim Meyering  <meyering@ascend.com>
26185
26186         * m4/jm-glibc-io.m4: Remove fclose_unlocked.
26187
26188 1998-07-04  Jim Meyering  <meyering@ascend.com>
26189
26190         * m4/regex.m4: Use syscmd, ifelse, and sysval.  Mainly as an exercise
26191         to prove that this macro can be used in packages without regex.c.
26192
26193 1998-07-04  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
26194
26195         * m4/gettext.m4 (AM_WITH_NLS): Remove intl/libintl.h if <libintl.h>
26196         is to be used.
26197
26198 1998-07-03  Jim Meyering  <meyering@ascend.com>
26199
26200         * m4/gettext.m4: Add -lintl if it's found to be necessary.
26201
26202         * m4/gettext.m4: New file -- from gettext-0.10.35.
26203         * m4/lcmessage.m4: Likewise.
26204         * m4/progtest.m4: Likewise.
26205
26206         * m4/regex.m4 (jm_WITH_REGEX): New file and macro.
26207         * m4/jm-macros.m4: Require the new macro.
26208
26209 1998-06-29  Jim Meyering  <meyering@ascend.com>
26210
26211         * m4/fstypename.m4: Include sys/param.h.  NetBSD 1.3.1 requires this
26212         for the definition of NGROUPS (used in a system header included
26213         by sys/mount.h).
26214
26215 1998-06-28  Jim Meyering  <meyering@ascend.com>
26216
26217         * m4/ls-mntd-fs.m4: New file.
26218         * m4/fstypename.m4: New file.
26219
26220         * m4/jm-macros.m4: Require the new macro.
26221         * m4/jm-glibc-io.m4: New file.
26222
26223 1998-05-19  Jim Meyering  <meyering@ascend.com>
26224
26225         * m4/jm-macros.m4: Add jm_FUNC_LCHOWN.
26226         * m4/lchown.m4: New file.
26227
26228         * m4/Makefile.am.in: New file.
26229         * m4/Makefile.am (Makefile.am): Depend on Makefile.am.in.
26230
26231 1998-05-14  Jim Meyering  <meyering@ascend.com>
26232
26233         * m4/Makefile.am (EXTRA_DIST): Add them.
26234         * m4/jm-macros.m4: New file.
26235         * m4/utimbuf.m4: New file.
26236
26237 1998-05-12  Jim Meyering  <meyering@ascend.com>
26238
26239         * m4/Makefile.am (EXTRA_DIST): Add isc-posix.m4.
26240
26241 1998-05-11  Jim Meyering  <meyering@ascend.com>
26242
26243         * m4/isc-posix.m4: New file.
26244
26245 1998-05-10  Jim Meyering  <meyering@ascend.com>
26246
26247         * m4/jm-mktime.m4: Use AM_FUNC_MKTIME, now that it's up to date.
26248
26249 1998-05-09  Jim Meyering  <meyering@ascend.com>
26250
26251         * m4/Makefile.am (EXTRA_DIST): Add ssize_t.m4.
26252         (EXTRA_DIST): Remove mktime.m4, now that the new version is included
26253         with automake.
26254
26255         * m4/ssize_t.m4: New file.
26256         * m4/mktime.m4: Remove file -- the new automake has this now.
26257
26258 1998-04-26  Jim Meyering  <meyering@ascend.com>
26259
26260         * m4/assert.m4: New file.
26261         * m4/Makefile.am (EXTRA_DIST): Add assert.m4.
26262
26263 1998-04-05  Jim Meyering  <meyering@ascend.com>
26264
26265         * m4/prereq.m4 (jm_PREREQ_REGEX): New macro.
26266         (jm_PREREQ): Use it here.
26267
26268 1998-03-23  Jim Meyering  <meyering@eng.ascend.com>
26269
26270         * m4/inttypes_h.m4: Kludges so I don't have to add HAVE_INTTYPES_H
26271         in acconfig.h.
26272
26273 1998-03-15  Jim Meyering  <meyering@eng.ascend.com>
26274
26275         * m4/prereq.m4: New file.
26276         * m4/error.m4: New file.
26277         * m4/Makefile.am (EXTRA_DIST): Add error.m4 and prereq.m4.
26278
26279 1998-02-07  Jim Meyering  <meyering@eng.ascend.com>
26280
26281         * m4/getline.m4: Don't set am_cv_func_working_getline before the
26282         cache-check for the same variable -- that defeated the purpose of
26283         the test; the test program was never run.  This was a problem only
26284         on systems with losing getline functions -- HP-UX 10.20 is one.
26285         Reported by Bjorn Helgaas.
26286
26287 1998-02-06  Jim Meyering  <meyering@eng.ascend.com>
26288
26289         * m4/Makefile.am (EXTRA_DIST): Add perl.m4.
26290
26291 1998-01-10  Jim Meyering  <meyering@na-net.ornl.gov>
26292
26293         * m4/Makefile.am (EXTRA_DIST): Add const.m4.
26294
26295         * m4/const.m4: New file.  Use an initializer in this declaration
26296         typedef int charset[2]; const charset x;
26297         Reported by Bob Glickstein.
26298
26299 1997-12-21  Jim Meyering  <meyering@na-net.ornl.gov>
26300
26301         * m4/chown.m4: Fix reversed types on -1 args to chown.
26302         From Kaveh Ghazi.
26303
26304 1997-12-14  Jim Meyering  <meyering@na-net.ornl.gov>
26305
26306         * m4/check-decl.m4: s/DECLARATION_/DECL_/g.
26307         Add lseek and memchr.
26308
26309         * m4/decl.m4: s/HAVE_DECLARATION_/HAVE_DECL_/g.
26310         T.E.Dickey <dickey@clark.net> said that some older preprocessors
26311         have a 20-character limit on names.
26312
26313 1997-11-30  Jim Meyering  <meyering@na-net.ornl.gov>
26314
26315         * m4/inttypes_h.m4: New file.
26316         * m4/uintmax_t.m4: New file.
26317         * m4/Makefile.am (EXTRA_DIST): Add inttypes_h.m4 and uintmax_t.m4.
26318
26319 Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007
26320   Free Software Foundation, Inc.
26321 Copying and distribution of this file, with or without modification,
26322 are permitted provided the copyright notice and this notice are preserved.