* modules/stdarg (configure.ac-early): Require AC_PROG_CC_STDC.
[gnulib.git] / ChangeLog
1 2007-02-04  Paul Eggert  <eggert@cs.ucla.edu>
2
3         * modules/stdarg (configure.ac-early): Require AC_PROG_CC_STDC.
4
5 2007-02-04  Bruno Haible  <bruno@clisp.org>
6
7         New module description section 'configure.ac-early'.
8         * gnulib-tool (sed_extract_prog): Recognize configure.ac-early.
9         (func_get_autoconf_early_snippet): New function.
10         (func_import, func_create_testdir): Use it. Remove special cases for
11         modules 'extensions' and 'lock'.
12
13 2007-02-04  Bruno Haible  <bruno@clisp.org>
14
15         Make use of gcj-4.3's -fsource and -ftarget option.
16         * m4/javacomp.m4 (gt_JAVACOMP): Test whether gcj is in version >= 4.3,
17         and if so try the options -fsource and -ftarget.
18         * lib/javacomp.c (compile_using_gcj): Add fsource_option,
19         source_version, ftarget_option, target_version arguments.
20         (is_envjavac_gcj43, is_envjavac_gcj43_usable): New functions.
21         (is_envjavac_oldgcj_14_14_usable): Renamed from
22         is_envjavac_gcj_14_14_usable.
23         (is_envjavac_oldgcj_14_13_usable): Renamed from
24         is_envjavac_gcj_14_13_usable.
25         (is_gcj_present): Update.
26         (is_gcj_43, is_gcj43_usable): New functions.
27         (is_oldgcj_14_14_usable): Renamed from is_gcj_14_14_usable. Update.
28         (is_oldgcj_14_13_usable): Renamed from is_gcj_14_13_usable. Update.
29         (compile_java_class): Test whether gcj is in version >= 4.3, and if so
30         try the options -fsource and -ftarget.
31
32 2007-02-03  Paul Eggert  <eggert@cs.ucla.edu>
33
34         * lib/xalloc.h (x2nrealloc): Fix an unlikely bug in the overflow
35         checking code.  Set N = ceil (1.5 * N) rather than to a slightly
36         larger value.
37
38 2007-02-03  Jim Meyering  <jim@meyering.net>
39
40         Give tools a better chance to allocate space for very large buffers.
41         * lib/xalloc.h (x2nrealloc): Use 3/2, not 2, as buffer size factor.
42
43         Make pwd and readlink work also when run with an unreadable parent dir
44         on systems with openat support.
45         * lib/getcwd.c (__getcwd) [HAVE_PARTLY_WORKING_GETCWD]: Use the system
46         provided getcwd function, even when we have openat support.
47         Reported by Dmitry V. Levin in <http://bugzilla.redhat.com/227168>.
48
49 2007-02-02  Bruno Haible  <bruno@clisp.org>
50
51         * lib/string_.h (memmem, mempcpy, memrchr, stpcpy, stpncpy, strchrnul,
52         strdup, strndup, strnlen, strpbrk, strsep, strtok_r): Provoke a link
53         error only if GNULIB_POSIXCHECK is defined. Needed to avoid artificial
54         portability problems if one of these functions is only used on specific
55         platforms.
56         Reported by Paul Eggert.
57
58 2007-02-02  Paul Eggert  <eggert@cs.ucla.edu>
59
60         Avoid mempcpy in the regex code, as the string.h mempcpy stuff
61         is causing more trouble than it's curing.
62         * lib/regex_internal.h (__mempcpy): Remove.
63         * lib/regcomp.c (regerror): Rewrite to avoid the need for mempcpy
64         (and make the code a tad smaller to boot).
65         * m4/regex.m4 (gl_PREREQ_REGEX): Don't check for mempcpy.
66
67 2007-02-02  Jim Meyering  <jim@meyering.net>
68
69         * modules/arpa_inet: Put AC_PROG_MKDIR_P in the configure.ac:
70         section, not in the Makefile.am: one.
71
72 2007-02-02  Eric Blake  <ebb9@byu.net>
73
74         * lib/strchrnul.c: Always include config.h first.
75
76         * modules/mountlist (Depends-on): Revert 2007-01-31 change,
77         gnulib strstr is not necessary here.
78
79 2007-02-02  Simon Josefsson  <simon@josefsson.org>
80
81         * m4/socklen.m4: Fix typo.
82
83 2007-02-02  Eric Blake  <ebb9@byu.net>
84
85         * modules/arpa_inet (Makefile.am): Use MKDIR_P to avoid races.
86         * modules/netinet_in (Makefile.am): Likewise.
87
88 2007-02-01  Bruno Haible  <bruno@clisp.org>
89
90         * lib/string_.h (GL_LINK_WARNING): New macro.
91         (strcasecmp, strstr, strcasestr): If provided by the system,
92         conditionally define as a macro that leads to a warning instead of to
93         an error.
94         (strncasecmp): Conditionally define as a macro that leads to a warning.
95
96 2007-02-01  Jim Meyering  <jim@meyering.net>
97
98         Give tools a better chance to allocate space for very large buffers.
99         * lib/xalloc.h (x2nrealloc): Use 3/2, not 2, as buffer size factor.
100
101 2007-02-01  Karl Berry  <karl@gnu.org>
102
103         * config/srclist.txt (strtok_r.c): lose sync, no more strtok_r.h.
104
105 2007-02-01  Bruno Haible  <bruno@clisp.org>
106
107         * MODULES.html.sh (Unicode string functions): Update after 2007-01-27
108         renamings.
109
110 2007-02-01  Eric Blake  <ebb9@byu.net>
111
112         * modules/regex (Depends-on): Revert dependence on mempcpy.
113         * lib/regex_internal.h [! _LIBC && !__mempcpy]: Undo string
114         module's definition of mempcpy.
115         Reported by Paul Eggert.
116
117 2007-02-01  Paul Eggert  <eggert@cs.ucla.edu>
118
119         * lib/string_.h: If the gnulib module XYZ is not present, undefine
120         the symbol XYZ before redefining it.  This fixes a problem with
121         programs that don't use XYZ, when compiled on systems that define
122         XYZ to something else.
123
124 2007-01-31  Paul Eggert  <eggert@cs.ucla.edu>
125
126         * lib/mkdir-p.c (make_dir_parents): Close a race condition that
127         occurs when "mkdir -m foo" creates a setgid directory that is (1)
128         writeable to group or other and (2) is intended to have a special
129         mode bit that is set or cleared.  In such a case, the directory
130         should be neither group- nor other-writeable until the special
131         mode bits are right.
132
133 2007-01-31  Eric Blake  <ebb9@byu.net>
134
135         * modules/mountlist (Depends-on): Add strstr.
136
137         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR): Correct m4 usage
138         bug.
139         * modules/string (Makefile.am): Remove redundant replacement.
140         * modules/regex (Depends-on): Add mempcpy.
141
142 2007-01-31  Bruno Haible  <bruno@clisp.org>
143
144         New module description field 'Link'.
145         * gnulib-tool (func_usage): Document --extract-link-directive.
146         (sed_extract_prog): Recognize 'Link' directive.
147         (func_get_link_directive): New function.
148         (func_import): Show summary of link directives.
149         Handle --extract-link-directive option.
150         * modules/acl (Link): New section.
151         * modules/clock-time (Link): New section.
152         * modules/euidaccess (Link): New section.
153         * modules/gettext (Link): New section.
154         * modules/iconv (Link): New section.
155         * modules/lock (Link): New section.
156         * modules/nanosleep (Link): New section.
157         * modules/readline (Link): New section.
158
159 2007-01-27  Bruno Haible  <bruno@clisp.org>
160
161         Enforce the use of gnulib modules for unportable <string.h> functions.
162         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR): New macro.
163         (gl_STRING_MODULE_INDICATOR_DEFAULTS): New macro.
164         (gl_HEADER_STRING_H_BODY): Require it.
165         * lib/string_.h: If the gnulib module XYZ is not present, redefine
166         the symbol XYZ to one that gives a link error.
167         * modules/string (Makefile.am): Also substitute the GNULIB_* variables.
168         * modules/memmem (configure.ac): Invoke gl_STRING_MODULE_INDICATOR.
169         * modules/mempcpy (configure.ac): Likewise.
170         * modules/memrchr (configure.ac): Likewise.
171         * modules/stpcpy (configure.ac): Likewise.
172         * modules/stpncpy (configure.ac): Likewise.
173         * modules/strcase (configure.ac): Likewise.
174         * modules/strcasestr (configure.ac): Likewise.
175         * modules/strchrnul (configure.ac): Likewise.
176         * modules/strdup (configure.ac): Likewise.
177         * modules/strndup (configure.ac): Likewise.
178         * modules/strnlen (configure.ac): Likewise.
179         * modules/strpbrk (configure.ac): Likewise.
180         * modules/strsep (configure.ac): Likewise.
181         * modules/strstr (configure.ac): Likewise.
182         * modules/strtok_r (configure.ac): Likewise.
183
184 2007-01-31  Jean-Louis Martineau  <martineau@zmanda.com>  (tiny change)
185
186         * lib/gai_strerror.c (values): Add EAI_OVERFLOW.
187
188 2007-01-30  Jim Meyering  <jim@meyering.net>
189
190         * lib/mpsort.c (mpsort): Remove spurious "return" in void function.
191
192 2007-01-29  Bruno Haible  <bruno@clisp.org>
193
194         * lib/allocsa.h: Use '#if HAVE_*' instead of '#ifdef HAVE_*'.
195         * lib/execute.c: Likewise.
196         * lib/pipe.c: Likewise.
197         * lib/printf-args.h: Likewise.
198         * lib/printf-args.c: Likewise.
199         * lib/printf-parse.c: Likewise.
200         * lib/vasnprintf.c: Likewise.
201
202 2007-01-29  Eric Blake  <ebb9@byu.net>
203
204         * lib/memrchr.c: Assume <string.h> unconditionally, to pull in
205         declaration.
206
207 2007-01-29  Paul Eggert  <eggert@cs.ucla.edu>
208
209         * lib/strptime.h (strptime): Use 'restrict' for args where
210         POSIX requires this.
211         * lib/strptime.c (strptime): Likewise.
212         Change license notice from LGPL to GPL, since gnulib-tool will
213         change this as needed.
214         Include <config.h> if _LIBC is not defined, not if HAVE_CONFIG_H is
215         defined.
216         Include "strptime.h" first, to check interface.
217         Do not #undef _LIBC and _NL_CURRENT.
218         Do not include <stdlib.h>; no longer needed.
219         Include "time_r.h" and declare ptime_locale_status
220         only if _LIBC is not defined.
221         (__P): Remove unused macro.
222         (match_string): Bring back glibc version, but use it only if _LIBC
223         is defined.
224         (__strptime_internal): Compile tm_gmtoff code if _LIBC is defined, too.
225         Remove unnecessary assertion and abort() call.
226         Use #ifdef _NL_CURRENT rather than #if 0, for benefit of glibc.
227         * m4/strptime.m4: Fix serial number comment.
228         (gl_FUNC_STRPTIME): Require AC_C_RESTRICT, gl_TM_GMTOFF.
229         * modules/strptime (Files): Add m4/tm_gmtoff.m4.
230         (Depends-on): Add time_r.
231
232 2007-01-29  Bruno Haible  <bruno@clisp.org>
233
234         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
235         strptime.
236         * modules/strptime (Depends-on): Add stdbool.
237         * lib/strptime.h: Include <time.h> always. Add comments.
238
239 2007-01-29  Yoann Vandoorselaere  <yoann@prelude-ids.org>
240
241         * modules/strptime: New file.
242         * lib/strptime.h: New file.
243         * lib/strptime.c: New file.
244         * m4/strptime.m4: New file.
245
246 2007-01-28  Paul Eggert  <eggert@cs.ucla.edu>
247
248         * MODULES.html.sh: New module mpsort.
249         * lib/mpsort.c, lib/mpsort.h, m4/mpsort.m4, modules/mpsort: New files.
250
251         * lib/regex.h (_Restrict_): Renamed from __restrict, to avoid
252         a circularity problem with HP-UX ia64 reported by Bob Proulx in
253         <http://lists.gnu.org/archive/html/bug-gnulib/2007-01/msg00394.html>.
254         All uses changed.
255         (_Restrict_arr_): Renamed from __restrict_arr, for similar reasons.
256         All uses changed.
257         * lib/regcomp.c, lib/regexec.c: Change all uses from __restrict
258         to _Restrict_.
259         * lib/regexec.c (regexec): Declare pmatch with _Restrict_arr_, so that
260         the parameter matches the prototype.
261
262 2007-01-28  Jim Meyering  <jim@meyering.net>
263
264         * modules/sys_time (Makefile.am) [MOSTLYCLEANFILES]: Do use
265         sys/time.h here, reverting that part of the previous patch:
266         <http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/8959>.
267
268 2007-01-28  Bruno Haible  <bruno@clisp.org>
269
270         * modules/sys_time (Makefile.am): Build sys/time.h only when it's the
271         value of $(SYS_TIME_H).
272         [MOSTLYCLEANFILES]: Now that sys/time.h is created only when needed,
273         remove it conditionally, too. [added by Jim Meyering]
274         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Set SYS_TIME_H.
275         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY):
276         (gl_FUNC_GETTIMEOFDAY_CLOBBER): Set SYS_TIME_H when setting
277         GETTIMEOFDAY_REPLACEMENT to 1.
278
279 2007-01-28  Bruno Haible  <bruno@clisp.org>
280
281         * m4/unistd_h.m4 (gl_HEADER_UNISTD_DEFAULTS): New macro.
282         (gl_HEADER_UNISTD): Require it. Don't set UNISTD_H to empty here.
283         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Require gl_HEADER_UNISTD_DEFAULTS.
284         Set UNISTD_H instead of UNISTD_H2.
285         * modules/fchdir (BUILT_SOURCES): Drop $(UNISTD_H2).
286
287 2007-01-28  Bruno Haible  <bruno@clisp.org>
288
289         * modules/mbchar (Makefile.am): Add mbchar.c to lib_SOURCES.
290         * m4/mbchar.m4 (gl_MBCHAR): Remove AC_LIBOBJ invocation.
291
292 2007-01-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
293
294         * gnulib-tool (func_emit_lib_Makefile_am, func_add_or_update)
295         (func_create_testdir): Ensure C locale for `grep' and `tr'
296         character ranges.
297         (func_create_megatestdir): Avoid one `grep'.  Fix bug in
298         ACLOCAL_AMFLAGS parsing state machine.
299
300 2007-01-27  Bruno Haible  <bruno@clisp.org>
301
302         * modules/unistr/base: Update.
303
304 2007-01-27  Bruno Haible  <bruno@clisp.org>
305
306         Rename u32-mbtouc -> u32-mbtouc-unsafe, u32-mbtouc-safe -> u32-mbtouc,
307         u32_mbtouc -> u32_mbtouc_unsafe, u32_mbtouc_safe -> u32_mbtouc.
308         * modules/unistr/u32-mbtouc-unsafe: Renamed from
309         modules/unistr/u32-mbtouc.
310         * lib/unistr/u32-mbtouc-unsafe.c: Renamed from lib/unistr/u32-mbtouc.c.
311         * lib/unistr.h: Update.
312         * lib/linebreak.c: Update.
313         * modules/unistr/u32-mbtouc: Renamed from
314         modules/unistr/u32-mbtouc-safe.
315         * lib/unistr/u32-mbtouc.c: Renamed from lib/unistr/u32-mbtouc-safe.c.
316         * lib/unistr.h: Update.
317         * lib/unistr/u32-to-u8.c: Update.
318         * lib/unistr/u32-to-u16.c: Update.
319
320 2007-01-27  Bruno Haible  <bruno@clisp.org>
321
322         Rename utf16-ucs4 -> utf16-ucs4-unsafe, utf16-ucs4-safe -> utf16-ucs4,
323         u16_mbtouc -> u16_mbtouc_unsafe, u16_mbtouc_safe -> u16_mbtouc.
324         * modules/utf16-ucs4-unsafe: Renamed from modules/utf16-ucs4.
325         * lib/utf16-ucs4-unsafe.h: Renamed from lib/utf16-ucs4.h.
326         * lib/unistr/utf16-ucs4-unsafe.c: Renamed from lib/unistr/utf16-ucs4.c.
327         * modules/unistr/u16-mbtouc-unsafe: Renamed from
328         modules/unistr/u16-mbtouc.
329         * lib/unistr/u16-mbtouc-unsafe.c: Renamed from lib/unistr/u16-mbtouc.c.
330         * lib/unistr.h: Update.
331         * lib/linebreak.c: Update.
332         * modules/linebreak: Update.
333         * modules/utf16-ucs4: Renamed from modules/utf16-ucs4-safe.
334         * lib/utf16-ucs4.h: Renamed from lib/utf16-ucs4-safe.h.
335         * lib/unistr/utf16-ucs4.c: Renamed from lib/unistr/utf16-ucs4-safe.c.
336         * modules/unistr/u16-mbtouc: Renamed from
337         modules/unistr/u16-mbtouc-safe.
338         * lib/unistr/u16-mbtouc.c: Renamed from lib/unistr/u16-mbtouc-safe.c.
339         * lib/unistr.h: Update.
340         * lib/unistr/u16-to-u8.c: Update.
341         * modules/unistr/u16-to-u8: Update.
342         * lib/unistr/u16-to-u32.c: Update.
343         * modules/unistr/u16-to-u32: Update.
344
345 2007-01-27  Bruno Haible  <bruno@clisp.org>
346
347         Rename utf8-ucs4 -> utf8-ucs4-unsafe, utf8-ucs4-safe -> utf8-ucs4,
348         u8_mbtouc -> u8_mbtouc_unsafe, u8_mbtouc_safe -> u8_mbtouc.
349         * modules/utf8-ucs4-unsafe: Renamed from modules/utf8-ucs4.
350         * lib/utf8-ucs4-unsafe.h: Renamed from lib/utf8-ucs4.h.
351         * lib/unistr/utf8-ucs4-unsafe.c: Renamed from lib/unistr/utf8-ucs4.c.
352         * modules/unistr/u8-mbtouc-unsafe: Renamed from
353         modules/unistr/u8-mbtouc.
354         * lib/unistr/u8-mbtouc-unsafe.c: Renamed from lib/unistr/u8-mbtouc.c.
355         * lib/unistr.h: Update.
356         * lib/striconveh.c: Update.
357         * modules/striconveh: Update.
358         * lib/linebreak.c: Update.
359         * modules/linebreak: Update.
360         * modules/utf8-ucs4: Renamed from modules/utf8-ucs4-safe.
361         * lib/utf8-ucs4.h: Renamed from lib/utf8-ucs4-safe.h.
362         * lib/unistr/utf8-ucs4.c: Renamed from lib/unistr/utf8-ucs4-safe.c.
363         * modules/unistr/u8-mbtouc: Renamed from modules/unistr/u8-mbtouc-safe.
364         * lib/unistr/u8-mbtouc.c: Renamed from lib/unistr/u8-mbtouc-safe.c.
365         * lib/unistr.h: Update.
366         * lib/striconveh.c: Update.
367         * modules/striconveh: Update.
368         * lib/unistr/u8-to-u16.c: Update.
369         * modules/unistr/u8-to-u16: Update.
370         * lib/unistr/u8-to-u32.c: Update.
371         * modules/unistr/u8-to-u32: Update.
372
373 2007-01-27  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
374
375         Sync from Libtool.
376         * lib/argz.c: Do not include strings.h nor memory.h, include
377         string.h unconditionally.  Patch by Simon Josefsson.
378
379 2007-01-27  Bruno Haible  <bruno@clisp.org>
380
381         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): New macro, extracted
382         from gl_HEADER_STRING_H_BODY.
383         (gl_HEADER_STRING_H_BODY): Require it.
384         * m4/memmem.m4 (gl_FUNC_MEMMEM): Require gl_HEADER_STRING_H_DEFAULTS.
385         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Likewise.
386         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Likewise.
387         * m4/stpcpy.m4 (gl_FUNC_STPCPY): Likewise.
388         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Likewise.
389         * m4/strcase.m4 (gl_FUNC_STRCASECMP, gl_FUNC_STRNCASECMP): Likewise.
390         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
391         * m4/strchrnul.m4 (gl_FUNC_STRCHRNUL): Likewise.
392         * m4/strdup.m4 (gl_FUNC_STRDUP): Likewise.
393         * m4/strndup.m4 (gl_FUNC_STRNDUP): Likewise.
394         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Likewise.
395         * m4/strpbrk.m4 (gl_FUNC_STRPBRK): Likewise.
396         * m4/strsep.m4 (gl_FUNC_STRSEP): Likewise.
397         * m4/strstr.m4 (gl_FUNC_STRSTR): Likewise.
398         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Likewise.
399
400 2007-01-27  Bruno Haible  <bruno@clisp.org>
401
402         * gnulib-tool (func_emit_lib_Makefile_am): If $for_test is true, turn
403         check_PROGRAMS into noinst_PROGRAMS.
404         (func_emit_tests_Makefile_am): Likewise. Also don't initialize
405         check_PROGRAMS in this case.
406         (func_import): Set for_test to false.
407         (func_create_testdir): Set for_test to true.
408
409 2007-01-27  Yoann Vandoorselaere <yoann.v@prelude-ids.com>
410             Bruno Haible  <bruno@clisp.org>
411
412         * modules/strcasestr (Files): Remove lib/strcasestr.h.
413         (Depends-on): Add string.
414         (Includes): Use <string.h> instead of strcasestr.h.
415         * modules/string (Makefile.am): Also substitute the value of
416         REPLACE_STRCASESTR.
417         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Don't define strcasestr here;
418         assume strcasestr is declared in <string.h> not <strings.h>. Also
419         set REPLACE_STRCASESTR.
420         * m4/string_h.m4 (gl_HEADER_STRING_H_BODY): Provide a default value for
421         REPLACE_STRCASESTR.
422         * lib/strcasestr.h: Remove file.
423         * lib/strcasestr.c: Include <string.h> instead of strcasestr.h.
424         * lib/string_.h (strcasestr): New declaration.
425
426 2007-01-27  Bruno Haible  <bruno@clisp.org>
427
428         * lib/string_.h: Use 'extern'.
429
430 2007-01-27  Jim Meyering  <jim@meyering.net>
431
432         * lib/regex_internal.c (re_string_reconstruct): Remove declaration
433         of set-but-not-used local, "q".
434
435         * lib/mempcpy.c: Include <config.h> before <string.h>.
436         This fixes a compilation error on HP-UX, due to the system's
437         "restrict"-using mempcpy prototype.
438
439 2007-01-26  Bruno Haible  <bruno@clisp.org>
440
441         Small optimization.
442         * lib/javacomp.c: Include c-strstr.h.
443          (is_envjavac_gcj): Use c_strstr instead of strstr.
444         * modules/javacomp (Depends-on): Add c-strstr, remove strstr.
445
446 2007-01-26  Bruno Haible  <bruno@clisp.org>
447
448         * MODULES.html.sh (Unicode string functions): Add the new modules.
449
450         * modules/uniconv/u32-strconv-to-locale: New file.
451         * lib/uniconv/u32-strconv-to-locale.c: New file.
452
453         * modules/uniconv/u16-strconv-to-locale: New file.
454         * lib/uniconv/u16-strconv-to-locale.c: New file.
455
456         * modules/uniconv/u8-strconv-to-locale: New file.
457         * lib/uniconv/u8-strconv-to-locale.c: New file.
458
459         * modules/uniconv/u32-strconv-from-locale: New file.
460         * lib/uniconv/u32-strconv-from-locale.c: New file.
461
462         * modules/uniconv/u16-strconv-from-locale: New file.
463         * lib/uniconv/u16-strconv-from-locale.c: New file.
464
465         * modules/uniconv/u8-strconv-from-locale: New file.
466         * lib/uniconv/u8-strconv-from-locale.c: New file.
467
468         * modules/uniconv/u32-strconv-to-enc: New file.
469         * lib/uniconv/u32-strconv-to-enc.c: New file.
470         * modules/uniconv/u32-strconv-to-enc-tests: New file.
471         * tests/uniconv/test-u32-strconv-to-enc.c: New file.
472
473         * modules/uniconv/u16-strconv-to-enc: New file.
474         * lib/uniconv/u16-strconv-to-enc.c: New file.
475         * lib/uniconv/u-strconv-to-enc.h: New file.
476         * modules/uniconv/u16-strconv-to-enc-tests: New file.
477         * tests/uniconv/test-u16-strconv-to-enc.c: New file.
478
479         * modules/uniconv/u8-strconv-to-enc: New file.
480         * lib/uniconv/u8-strconv-to-enc.c: New file.
481         * modules/uniconv/u8-strconv-to-enc-tests: New file.
482         * tests/uniconv/test-u8-strconv-to-enc.c: New file.
483
484         * modules/uniconv/u32-strconv-from-enc: New file.
485         * lib/uniconv/u32-strconv-from-enc.c: New file.
486         * modules/uniconv/u32-strconv-from-enc-tests: New file.
487         * tests/uniconv/test-u32-strconv-from-enc.c: New file.
488
489         * modules/uniconv/u16-strconv-from-enc: New file.
490         * lib/uniconv/u16-strconv-from-enc.c: New file.
491         * modules/uniconv/u16-strconv-from-enc-tests: New file.
492         * tests/uniconv/test-u16-strconv-from-enc.c: New file.
493
494         * modules/uniconv/u8-strconv-from-enc: New file.
495         * lib/uniconv/u8-strconv-from-enc.c: New file.
496         * lib/uniconv/u-strconv-from-enc.h: New file.
497         * modules/uniconv/u8-strconv-from-enc-tests: New file.
498         * tests/uniconv/test-u8-strconv-from-enc.c: New file.
499
500         * modules/uniconv/u32-conv-from-enc: New file.
501         * lib/uniconv/u32-conv-from-enc.c: New file.
502         * modules/uniconv/u32-conv-from-enc-tests: New file.
503         * tests/uniconv/test-u32-conv-from-enc.c: New file.
504
505         * modules/uniconv/u16-conv-from-enc: New file.
506         * lib/uniconv/u16-conv-from-enc.c: New file.
507         * lib/uniconv/u-conv-from-enc.h: New file.
508         * modules/uniconv/u16-conv-from-enc-tests: New file.
509         * tests/uniconv/test-u16-conv-from-enc.c: New file.
510
511         * modules/uniconv/u8-conv-from-enc: New file.
512         * lib/uniconv/u8-conv-from-enc.c: New file.
513         * modules/uniconv/u8-conv-from-enc-tests: New file.
514         * tests/uniconv/test-u8-conv-from-enc.c: New file.
515
516         * modules/uniconv/base: New file.
517         * lib/uniconv.h: New file.
518
519 2007-01-26  Paul Eggert  <eggert@cs.ucla.edu>
520
521         * doc/gnulib-tool.texi (Initial import): Update to match current
522         behavior with strdup module.
523         * lib/.cppi-disable: Remove strcase.h, strdup.h, strndup.h, strnlen.h.
524         * lib/memmem.h: Remove; all uses removed.  This is now done
525         by <string.h>.
526         * lib/mempcpy.h: Likewise.
527         * lib/memrchr.h: Likewise.
528         * lib/stpcpy.h: Likewise.
529         * lib/stpncpy.h: Likewise.
530         * lib/strcase.h: Likewise.
531         * lib/strchrnul.h: Likewise.
532         * lib/strdup.h: Likewise.
533         * lib/strndup.h: Likewise.
534         * lib/strnlen.h: Likewise.
535         * lib/strpbrk.h: Likewise.
536         * lib/strsep.h: Likewise.
537         * lib/strstr.h: Likewise.
538         * lib/strtok_r.h: Likewise.
539         * lib/string_.h: New file.
540         * lib/argp-namefrob.h: Don't include no-longer-existent include files.
541         Rely on <string.h> instead.
542         * lib/canon-host.c: Likewise.
543         * lib/chdir-long.c: Likewise.
544         * lib/concatpath.c: Likewise.
545         * lib/exclude.c: Likewise.
546         * lib/fchdir.c: Likewise.
547         * lib/getaddrinfo.c: Likewise.
548         * lib/getcwd.c: Likewise.
549         * lib/getsubopt.c: Likewise.
550         * lib/glob.c: Likewise.
551         * lib/hard-locale.c: Likewise.
552         * lib/iconvme.c: Likewise.
553         * lib/javacomp.c: Likewise.
554         * lib/mempcpy.c: Likewise.
555         * lib/memrchr.c: Likewise.
556         * lib/regex_internal.h: Likewise.
557         * lib/stpncpy.c: Likewise.
558         * lib/strcasecmp.c: Likewise.
559         * lib/strchrnul.c: Likewise.
560         * lib/strdup.c: Likewise.
561         * lib/striconv.c: Likewise.
562         * lib/striconveh.c: Likewise.
563         * lib/striconveha.c: Likewise.
564         * lib/strncasecmp.c: Likewise.
565         * lib/strndup.c: Likewise.
566         * lib/strnlen.c: Likewise.
567         * lib/strsep.c: Likewise.
568         * lib/strstr.c: Likewise.
569         * lib/strtok_r.c: Likewise.
570         * lib/userspec.c: Likewise.
571         * lib/w32spawn.h: Likewise.
572         * lib/xstrndup.c: Likewise.
573         * lib/mountlist.c (strstr): Remove decl.
574         * m4/string_h.m4: New file.
575         * m4/memmem.m4 (gl_FUNC_MEMMEM): Set HAVE_DECL_MEMMEM if necessary.
576         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Set HAVE_MEMPCPY if necessary.
577         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Set HAVE_MEMRCHR
578         * m4/stpcpy.m4 (gl_FUNC_STPCPY): Set HAVE_STPCPY if necessary.
579         * m4/stpncpy.m4 (gl_PREREQ_STPNCPY): Set HAVE_STPNCPY if necessary.
580         * m4/strcase.m4 (gl_FUNC_STRCASECMP):
581         Set REPLACE_STRCASECMP if necessary.
582         (gl_FUNC_STRNCASECMP): Set HAVE_DECL_STRNCASECMP if necessary.
583         * m4/strchrnul.m4 (gl_FUNC_STRCHRNUL): Set HAVE_STRCHRNUL if necessary.
584         * m4/strdup.m4 (gl_FUNC_STRDUP): Set HAVE_DECL_STRDUP if necessary.
585         * m4/strndup.m4 (gl_FUNC_STRNDUP): Set HAVE_DECL_STRNLEN and
586         HAVE_DECL_STRDUP if necessary.
587         (gl_PREREQ_STRNLEN): Don't bother to check for strnlen decl,
588         since gl_FUNC_STRNDUP does that now.
589         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Set HAVE_DECL_STRNLEN if necessary.
590         Check for decl here...
591         (gl_PREREQ_STRNLEN): ... not here.
592         * m4/strpbrk.m4 (gl_FUNC_STRPBRK): Set HAVE_STRPBRK if necessary.
593         * m4/strsep.m4 (gl_FUNC_STRSEP): Set HAVE_STRSEP if necessary.
594         * m4/strstr.m4 (gl_FUNC_STRSTR): Set REPLACE_STRSTR if necessary.
595         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Set HAVE_DECL_STRTOK_R if
596         necessary.
597         * modules/string: New file.
598         * modules/memmem (Files): Remove special-purpose include file.
599         (Depends-on): Add string.
600         (Include): Include <string.h>, not the removed file.
601         * modules/mempcpy: Likewise.
602         * modules/memrchr: Likewise.
603         * modules/stpcpy: Likewise.
604         * modules/stpncpy: Likewise.
605         * modules/strcase: Likewise.
606         * modules/strchrnul: Likewise.
607         * modules/strdup: Likewise.
608         * modules/strndup: Likewise.
609         * modules/strnlen: Likewise.
610         * modules/strpbrk: Likewise.
611         * modules/strsep: Likewise.
612         * modules/strstr: Likewise.
613         * modules/strtok_r: Likewise.
614         * tests/test-dirname.c: Don't include "strdup.h", since
615         <string.h> now suffices.
616         * tests/test-memmem.c: Don't include "memmem.h", since
617         <string.h> now suffices.
618
619 2007-01-25  Bruno Haible  <bruno@clisp.org>
620
621         * lib/striconveh.c (mem_cd_iconveh_internal): Ignore *lengthp if
622         *resultp is 0.
623
624         * lib/unistr/u16-to-u8.c (u16_to_u8): Fix u8_uctomb invocation.
625         * lib/unistr/u32-to-u8.c (u32_to_u8): Likewise.
626         * lib/unistr/u8-to-u16.c (u8_to_u16): Fix u16_uctomb invocation.
627         * lib/unistr/u32-to-u16.c (u32_to_u16): Likewise.
628
629         * modules/unistr/u8-to-u16 (Depends-on): Add missing modules.
630         * modules/unistr/u8-to-u32 (Depends-on): Add missing modules.
631         * modules/unistr/u16-to-u8 (Depends-on): Add missing modules.
632         * modules/unistr/u16-to-u32 (Depends-on): Add missing modules.
633         * modules/unistr/u32-to-u8 (Depends-on): Add missing modules.
634         * modules/unistr/u32-to-u16 (Depends-on): Add missing modules.
635
636 2007-01-24  Bruno Haible  <bruno@clisp.org>
637
638         Don't AC_REQUIRE autoconf macros that invoke AC_LIBOBJ. See
639         <http://lists.gnu.org/archive/html/bug-gnulib/2006-10/msg00279.html>.
640         * m4/argp.m4 (gl_ARGP): Invoke, don't require, gl_GETOPT_SUBSTITUTE.
641         * m4/fts.m4 (gl_FUNC_FTS, gl_FUNC_FTS_LGPL): Invoke, don't require,
642         gl_FUNC_FTS_CORE.
643         (gl_FUNC_FTS_CORE): Invoke, don't require, gl_FUNC_OPENAT.
644         * m4/lstat.m4 (gl_FUNC_LSTAT): Invoke, don't require,
645         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
646         * m4/memcmp.m4 (gl_FUNC_MEMCMP): Invoke, don't require, AC_FUNC_MEMCMP.
647         * m4/mktime.m4 (gl_FUNC_MKTIME): Invoke, don't require, AC_FUNC_MKTIME.
648         * m4/openat.m4 (gl_FUNC_OPENAT): Invoke, don't require,
649         gl_FUNC_FCHOWNAT.
650         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME): Invoke, don't require,
651         gl_FUNC_STRFTIME.
652         * m4/strtod.m4 (gl_FUNC_STRTOD): Invoke, don't require, AC_FUNC_STRTOD.
653         Reported by Ralf Wildenhues.
654
655 2007-01-24  Bruno Haible  <bruno@clisp.org>
656
657         Drop AC_REQUIRE calls that are redundant with the module dependencies.
658         * m4/canon-host.m4 (gl_PREREQ_CANON_HOST): Don't require
659         gl_GETADDRINFO.
660         * m4/chdir-long.m4 (gl_PREREQ_CHDIR_LONG): Don't require AM_STDBOOL_H,
661         gl_FUNC_MEMPCPY, gl_FUNC_OPENAT, gl_FUNC_MEMRCHR.
662         * m4/openat.m4 (gl_PREREQ_OPENAT): Don't require gl_SAVE_CWD.
663
664 2007-01-24  Paul Eggert  <eggert@cs.ucla.edu>
665
666         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Add test for glibc bug 361.
667         Don't use 'exit'; just return from 'main'.
668         (_AC_LIBOBJ_FNMATCH): Check for headers and functions just once.
669
670         * lib/fnmatch_.h: Readjust white space and comments to match
671         glibc, to avoid spurious diffs.
672
673 2007-01-23  Paul Eggert  <eggert@cs.ucla.edu>
674
675         * lib/fnmatch_loop.c (internal_fnmatch) [!_LIBC]: #if-out the
676         2004-12-01 change by Jakub Jelinek, since this code won't compile
677         if !LIBC.  Problem reported by Bob Proulx.
678
679 2007-01-23  Bruno Haible  <bruno@clisp.org>
680
681         * lib/striconveh.c: Include c-strcaseeq.h.
682         (mem_iconveh, str_iconveh): Use STRCASEEQ instead of c_strcasecmp.
683         * modules/striconveh (Depends-on): Add c-strcaseeq.
684
685 2007-01-23  Bruno Haible  <bruno@clisp.org>
686
687         * MODULES.html.sh (String handling): Add streq, c-strcaseeq.
688
689         * modules/c-strcaseeq: New file.
690         * lib/c-strcaseeq.h: New file.
691
692         * modules/streq: New file.
693         * lib/streq.h: New file.
694
695 2007-01-23  Bruno Haible  <bruno@clisp.org>
696
697         * modules/striconveha-tests: New file.
698         * tests/test-striconveha.c: New file.
699
700         * lib/striconveha.h: Include <stdbool.h>.
701         (mem_iconveha, str_iconveha): Add 'transliterate' argument.
702         * lib/striconveha.c: Include allocsa.h, strdup.h, c-strcase.h.
703         (mem_iconveha_notranslit): Renamed from mem_iconveha.
704         (mem_iconveha): New function.
705         (str_iconveha_notranslit): Renamed from str_iconveha.
706         (str_iconveha): New function.
707         * modules/striconveha (Depends-on): Add stdbool, allocsa, strdup,
708         c-strcase.
709
710 2007-01-23  Bruno Haible  <bruno@clisp.org>
711
712         * lib/striconveha.c (mem_iconveha): Fix endless recursion. Try all
713         encodings without forgiving before trying any encoding with handler.
714         (str_iconveha): Try all encodings without forgiving before trying any
715         encoding with handler.
716
717 2007-01-23  Paul Eggert  <eggert@cs.ucla.edu>
718
719         Import the following changes from libc.
720
721         2005-10-14  Ulrich Drepper  <drepper@redhat.com>
722
723         * lib/fnmatch_loop.c: Adjust for changed secondary hash function.
724
725         2004-12-01  Jakub Jelinek  <jakub@redhat.com>
726
727         * lib/fnmatch_loop.c (internal_fnmatch): Clear is_seqval after
728         normal_bracket label.
729
730         2004-09-01  Jakub Jelinek  <jakub@redhat.com>
731
732         [BZ #361]
733         * lib/fnmatch_loop.c (FCT): For backslash between brackets, branch
734         to normal_bracket after fetching the next character.
735
736 2007-01-22  Bruno Haible  <bruno@clisp.org>
737
738         * lib/striconveh.h (mem_cd_iconveh, mem_iconveh): Add 'offsets'
739         argument.
740         * lib/striconveh.c (iconv_carefully_1): New function.
741         (mem_cd_iconveh_internal, mem_cd_iconveh, mem_iconveh): Add 'offsets'
742         argument.
743         (str_cd_iconveh): Update.
744         * lib/striconveha.h (mem_iconveha): Add 'offsets' argument.
745         * lib/striconveha.c (mem_iconveha): Add 'offsets' argument.
746         * tests/test-striconveh.c (MAGIC): New macro.
747         (new_offsets): New function.
748         (main): Test call with and without offsets.
749
750 2007-01-22  Bruno Haible  <bruno@clisp.org>
751
752         * modules/sys_stat (Makefile.am): Use @MKDIR_P@ instead of $(MKDIR_P).
753         * modules/sys_select (Makefile.am): Likewise.
754         * modules/sys_socket (Makefile.am): Likewise.
755         * modules/sys_time (Makefile.am): Likewise.
756
757 2007-01-22  Paul Eggert  <eggert@cs.ucla.edu>
758
759         * modules/gettimeofday (License): Change from GPL to LGPL, since
760         gettimeofday is a library function.
761
762 2007-01-22  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
763
764         * lib/poll.c (rpl_poll): Don't check against FD_SETSIZE under Win32.
765
766 2007-01-21  Bruno Haible  <bruno@clisp.org>
767
768         * m4/gnulib-common.m4 (AC_PROG_MKDIR_P): New macro.
769
770 2007-01-21  Bruno Haible  <bruno@clisp.org>
771
772         * modules/striconveha: New file.
773         * lib/striconveha.h: New file.
774         * lib/striconveha.c: New file.
775         * MODULES.html.sh (Internationalization functions): Add striconveha.
776         * lib/striconv.c (str_iconv): Optimize the case of an empty input
777         string.
778         * lib/striconveh.c (mem_iconveh, str_iconveh): Likewise.
779
780 2007-01-21  Bruno Haible  <bruno@clisp.org>
781
782         * lib/striconv.c (str_iconv): Guarantee errno is set when strdup fails.
783         * lib/striconveh.c (str_iconveh): Likewise.
784
785 2007-01-21  Bruno Haible  <bruno@clisp.org>
786
787         * lib/striconveh.h (mem_iconveh): New declaration.
788         * lib/striconveh.c (mem_iconveh): New function.
789         * tests/test-striconveh.c (main): Add tests for mem_iconveh.
790
791 2007-01-21  Bruno Haible  <bruno@clisp.org>
792
793         * lib/xstriconv.h (xmem_cd_iconv): Change specification.
794
795         * lib/striconveh.h (mem_cd_iconveh): Change specification.
796         * lib/striconveh.c (mem_cd_iconveh): Don't free the user-supplied
797         original result buffer.
798         (str_cd_iconveh): Update.
799         * tests/test-striconveh.c (main): Update.
800
801         * lib/striconv.h (mem_cd_iconv): Change specification.
802         * lib/striconv.c (mem_cd_iconv): Don't free the user-supplied original
803         result buffer.
804         (str_cd_iconv): Update.
805         * tests/test-striconv.c (main): Update.
806
807 2007-01-21  Bruno Haible  <bruno@clisp.org>
808
809         * gnulib-tool: Fix test whether sed is GNU sed supporting --posix.
810
811 2007-01-20  Jim Meyering  <jim@meyering.net>
812
813         * lib/userspec.c (parse_with_separator): If a user or group string
814         starts with "+", skip the corresponding name-to-ID look-up, since
815         such a look-up must fail: user and group names may not include "+".
816
817 2007-01-19  Paul Eggert  <eggert@cs.ucla.edu>
818
819         * lib/poll.c: Include sys/time.h and time.h unconditionally,
820         since we now assume the sys_time module.
821         * m4/poll.m4 (gl_PREREQ_POLL): Don't require AC_HEADER_TIME or
822         check for sys/time.h; no longer needed.
823         * modules/poll (Depends-on): Depend on sys_time.
824
825 2007-01-18  Bruno Haible  <bruno@clisp.org>
826
827         * m4/mktime.m4 (AC_FUNC_MKTIME): Remove test for <sys/time.h>.
828         * m4/strftime.m4 (gl_FUNC_STRFTIME): Likewise.
829
830         * m4/tempname.m4 (gl_PREREQ_TEMPNAME): Remove tests for sys/time.h and
831         gettimeofday.
832
833         * tests/test-gettimeofday.c: Include <time.h>.
834         (dummy): Remove variable.
835
836         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Renamed from
837         gl_HEADER_SYS_TIME_H.
838         (gl_HEADER_SYS_TIME_H): New macro.
839
840         * lib/sys_time_.h: Test GETTIMEOFDAY_REPLACEMENT instead of
841         HAVE_GETTIMEOFDAY_POSIX_SIGNATURE and GETTIMEOFDAY_CLOBBERS_LOCALTIME.
842         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY,
843         gl_FUNC_GETTIMEOFDAY_CLOBBER): Set GETTIMEOFDAY_REPLACEMENT instead of
844         HAVE_GETTIMEOFDAY_POSIX_SIGNATURE and GETTIMEOFDAY_CLOBBERS_LOCALTIME.
845         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H): Initialize
846         GETTIMEOFDAY_REPLACEMENT instead of HAVE_GETTIMEOFDAY_POSIX_SIGNATURE
847         and GETTIMEOFDAY_CLOBBERS_LOCALTIME.
848         * modules/sys_time (sys/time.h): Substitute GETTIMEOFDAY_REPLACEMENT
849         instead of HAVE_GETTIMEOFDAY_POSIX_SIGNATURE and
850         GETTIMEOFDAY_CLOBBERS_LOCALTIME.
851
852         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Undo the
853         last change; it caused a compilation error when cross-compiling to
854         Cygwin.
855
856 2007-01-18  Jim Meyering  <jim@meyering.net>
857
858         Use "$(MKDIR_P) sys", not race-prone "test -d sys || mkdir sys".
859         * modules/sys_stat (Makefile.am): Use "$(MKDIR_P) sys", rather
860         than the race-prone "test -d sys || mkdir sys".
861         (configure.ac): Use AC_PROG_MKDIR_P.
862         * modules/sys_select: Likewise.
863         * modules/sys_socket: Likewise.
864         * modules/sys_time: Likewise.
865
866 2007-01-18  Eric Blake  <ebb9@byu.net>
867
868         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Also
869         replace gettimeofday.
870         * lib/gettimeofday.c (rpl_gettimeofday): Declare with replacement
871         name, to avoid infinite recursion.
872
873 2007-01-17  Paul Eggert  <eggert@cs.ucla.edu>
874
875         * MODULES.html.sh (Support for systems lacking POSIX:2001): New
876         module sys_time.
877         * lib/gethrxtime.c: Include <sys/time.h>, since we can no longer
878         assume timespec.h defines struct timeval.
879         * lib/settime.c: Likewise.
880         * lib/utimens.c: Likewise.
881         * lib/gettime.c (gettime): Remove test against HAVE_GETTIMEOFDAY,
882         since we now assume the gettimeofday module.
883         * lib/tempname.c (__gen_tempname): Likewise.
884         * lib/gettimeofday.h: Remove.
885         * lib/gettimeofday.c: Include <sys/time.h> instead of "gettimeofday.h".
886         Don't include <sys/types.h> and <stdlib.h>; shouldn't be needed.
887         Include <time.h>, for 'time()'.
888         (localtime_buffer_addr): Also use this workaround if
889         TZSET_CLOBBERS_LOCALTIME.  Set to a dummy static variable by default,
890         to simplify the uses.  All uses changed.
891         (localtime, gmtime, tzset, gettimeofday): Reformat slightly so
892         that #undef is inside {}, and 'const' follows type name consistently.
893         (tzset): Define replacement only if TZSET_CLOBBERS_LOCALTIME.
894         (gettimeofday): Do not use the maximum possible value for
895         tv->tv_usec, since that might break usages other than ls.c.
896         Instead, we'll leave ls.c alone.  This undoes today's patch
897         by Bruno.  Add a compile-time warning for 1s-clock resolution;
898         we've never observed the problem but might as well keep the
899         canary.
900         * lib/nanosleep.c: Include timespec.h first, for interface check.
901         * lib/nanosleep.c: Include <sys/time.h> unconditionally, since we
902         now assume the sys_time module.
903         * lib/tempname.c: Likewise.
904         * lib/timespec.h: Likewise.
905         * lib/nanosleep.c: Don't worry about TIME_WITH_SYS_TIME; no longer
906         needed.
907         * lib/strftime.c: Likewise.
908         * lib/timespec.h: Likewise.
909         * lib/posixtm.c: Include posixtm.h first, for interface check.
910         Don't worry about TM_IN_SYS_TIME; that's wayyy obsolete.
911         * lib/posixtm.h: Include stdbool.h and time.h, for proper interface.
912         * lib/strftime.c: Don't include <sys/types.h>; shouldn't be needed.
913         * lib/sys_time_.h: New file.
914         * lib/timespec.h (struct timespec): Use long int, not long.
915         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY):
916         (gl_FUNC_GETTIMEOFDAY_CLOBBER, gl_PREREQ_GETTIMEOFDAY):
917         Remove obsolescent call to AC_HEADER_TIME.
918         * m4/mktime.m4 (AC_FUNC_MKTIME): Likewise.
919         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
920         * m4/strftime.m4 (gl_FUNC_STRFTIME): Likewise.
921         * m4/timespec.m4 (gl_TIMESPEC, gl_CHECK_TYPE_STRUCT_TIMESPEC):
922         Likewise.
923         * m4/tzset.m4 (gl_FUNC_TZSET_CLOBBER): Likewise.
924         * m4/utimbuf.m4 (gl_CHECK_TYPE_STRUCT_UTIMBUF): Likewise.
925         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY): Move sys/time.h tests
926         into the sys_time module.  Check for gettimeofday just once.
927         Prefix our variables with gl_, not with ac_ or jm_.  Tighten test
928         for gettimeofday signature to just check the signature.  Merely
929         compile it, since linking doesn't test signature.  Improve test for
930         whether gettimeofday.o is actually needed.
931         (gl_FUNC_GETTIMEOFDAY_CLOBBER): Renamed from
932         AC_FUNC_GETTIMEOFDAY_CLOBBER.  All uses changed.  Use
933         AC_RUN_IFELSE rather than AC_TRY_RUN.  If clobbering, set
934         and define GETTIMEOFDAY_CLOBBERS_LOCALTIME.
935         (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Don't define
936         GETTIMEOFDAY_CLOBBERS_LOCALTIME; that's gl_FUNC_GETTIMEOFDAY_CLOBBER's
937         job.  Don't define tzset; that's gl_FUNC_TZSET_CLOBBER's job.
938         * m4/mktime.m4 (AC_FUNC_MKTIME): Just include <time.h> rather
939         than worrying about sys/time.h.
940         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP):
941         Don't bother worrying about TIME_WITH_SYS_TIME.
942         * m4/stat-time.m4 (gl_STAT_TIME): Likewise.
943         * m4/posixtm.m4 (gl_POSIXTM): Remove obsolescent call to AC_STRUCT_TM.
944         * m4/sys_time_h.m4: New file.
945         * m4/tzset.m4 (gl_FUNC_TZSET_CLOBBER): Require gl_HEADER_SYS_TIME_H.
946         Don't include sys/time.h.  Return from main rather than exiting.
947         Define TZSET_CLOBBERS_LOCALTIME, for consistency with other names;
948         all uses changed.
949         * modules/gethrxtime (Depends-on): Add sys_time.
950         * modules/gettime (Depends-on): Likewise.
951         * modules/gettimeofday (Depends-on): Likewise.
952         * modules/nanosleep (Depends-on): Likewise.
953         * modules/settime (Depends-on): Likewise.
954         * modules/tempname (Depends-on): Likewise.
955         * modules/utimens (Depends-on): Likewise.
956         * modules/gettimeofday (Files): Remove lib/gettimeofday.h.
957         (Include:) Change back to <sys/time.h>.
958         (Maintainer:) Add self.
959         * modules/sys_time: New file.
960         * modules/tempname (Depends-on): Add gettimeofday.
961         * tests/test-gettimeofday.c: Include <sys/time.h>
962         rather than gettimeofday.h.
963
964 2007-01-17  Bruno Haible  <bruno@clisp.org>
965
966         * gnulib-tool (func_get_license): Revert last patch. Instead, let
967         the license default to GPL.
968         (func_create_testdir): Don't complain if a module is LGPL and its
969         tests module depends on GPLed modules.
970
971 2007-01-17  Bruno Haible  <bruno@clisp.org>
972
973         * lib/gettimeofday.c (gettimeofday): Add code for the case
974         HAVE_GETTIMEOFDAY && !GETTIMEOFDAY_CLOBBERS_LOCALTIME. Use the
975         maximum possible value for tv->tv_usec, rather than the minimum one.
976
977 2005-10-08  Martin Lambers  <marlam@marlam.de>
978 2005-10-08  Paul Eggert  <eggert@cs.ucla.edu>
979 2007-01-16  Bruno Haible  <bruno@clisp.org>
980
981         * modules/gettimeofday (Files): Add lib/gettimeofday.h.
982         (configure.ac): Remove AC_FUNC_GETTIMEOFDAY_CLOBBER. Add
983         gl_FUNC_GETTIMEOFDAY.
984         (Include): Add gettimeofday.h.
985         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY): New macro.
986         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Don't invoke gl_PREREQ_GETTIMEOFDAY.
987         (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Define
988         GETTIMEOFDAY_CLOBBERS_LOCALTIME. Invoke gl_PREREQ_GETTIMEOFDAY here.
989         (gl_PREREQ_GETTIMEOFDAY): Check for <sys/timeb.h> and _ftime.
990         * lib/gettimeofday.h: New file.
991         * lib/gettimeofday.c: Include <sys/timeb.h>.
992         (localtime_buffer_addr, rpl_localtime, rpl_gmtime, rpl_tzset): Define
993         only if GETTIMEOFDAY_CLOBBERS_LOCALTIME.
994         (rpl_gettimeofday) [!HAVE_GETTIMEOFDAY]: Use _ftime() when available;
995         fall back on time().
996
997         * tests/test-gettimeofday.c: New file.
998         * modules/gettimeofday-tests: New file.
999
1000 2007-01-16  Eric Blake  <ebb9@byu.net>
1001
1002         * modules/fnmatch (Depends-on): Depend on wchar.
1003         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Assume <wchar.h>.
1004         * m4/fnmatch.m4: Likewise.
1005         * modules/mbchar (Makefile.am): Assume <wchar.h>.
1006         * m4/mbchar.m4: Likewise.
1007         * modules/mbswidth (Depends-on): Depend on wchar.
1008         * lib/mbswidth.c: Assume <wchar.h>.
1009         * m4/mbswidth.m4: Likewise.
1010         * modules/quotearg (Depends-on): Depend on wchar.
1011         * lib/quotearg.c: Assume <wchar.h>.
1012         * m4/quotearg.m4: Likewise.
1013         * modules/regex (Depends-on): Depend on wchar.
1014         * lib/regex_internal.h: Assume <wchar.h>.
1015         * m4/regex.m4: Likewise.
1016         * modules/stdint (Depends-on): Depend on wchar.
1017         * lib/stdint_.h [!defined WCHAR_MIN]: Assume <wchar.h>.
1018         * m4/stdint.m4: Likewise.
1019         * tests/test-stdint.c [HAVE_WINT_T]: Likewise.
1020         * modules/strftime (Depends-on): Depend on wchar.
1021         * lib/strftime.c (DO_MULTIBYTE): Assume <wchar.h>.
1022         * modules/strtol (Depends-on): Depend on wchar.
1023         * lib/strtol.c: Assume <wchar.h>.
1024         * modules/wcwidth (Depends-on): Depend on wchar.
1025         * lib/wcwidth.h: Assume <wchar.h>.
1026         * m4/wcwidth.m4: Likewise.
1027
1028 2007-01-16  Bruno Haible  <bruno@clisp.org>
1029
1030         * modules/csharpexec-script: New, created from...
1031         * modules/csharpexec: ... this.
1032
1033 2007-01-16  Paolo Bonzini  <bonzini@gnu.org>
1034
1035         * modules/javaexec-script: New, created from...
1036         * modules/javaexec: ... this.
1037
1038 2007-01-16  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
1039
1040         * modules/poll (Dependencies): Add sys_select.
1041
1042 2007-01-15  Jim Meyering  <jim@meyering.net>
1043
1044         * m4/readutmp.m4 (gl_READUTMP): Work around AIX 4.3 struct-
1045         redefinition bug when using both <utmp.h> and <utmpx.h> headers.
1046         * lib/readutmp.h: Likewise.  Reported by Daniel Richard G. in
1047         <http://article.gmane.org/gmane.comp.gnu.core-utils.bugs/9415>.
1048
1049 2007-01-15  Bruno Haible  <bruno@clisp.org>
1050
1051         * modules/striconveh: New file.
1052         * lib/striconveh.h: New file.
1053         * lib/striconveh.c: New file.
1054         * MODULES.html.sh (Internationalization functions): Add striconveh.
1055
1056         * modules/striconveh-tests: New file.
1057         * tests/test-striconveh.c: New file.
1058
1059 2007-01-15  Bruno Haible  <bruno@clisp.org>
1060
1061         * lib/striconv.c (str_cd_iconv): Use the first algorithm if iconv is
1062         not from GNU libiconv or GNU libc.
1063
1064 2007-01-15  Bruno Haible  <bruno@clisp.org>
1065
1066         * doc/gnulib-intro.texi (Copyright): Explain the different license
1067         terms for module descriptions, autoconf macros, tests, documentation.
1068
1069 2007-01-14  Bruno Haible  <bruno@clisp.org>
1070
1071         * modules/striconv-tests: New file.
1072         * tests/test-striconv.c: New file.
1073
1074 2007-01-14  Bruno Haible  <bruno@clisp.org>
1075
1076         * modules/iconv-tests: New file.
1077         * tests/test-iconv.c: New file.
1078
1079 2007-01-14  Bruno Haible  <bruno@clisp.org>
1080
1081         * gnulib-tool (func_get_license): For test modules, use the license of
1082         the main module.
1083
1084 2007-01-14  Bruno Haible  <bruno@clisp.org>
1085
1086         * modules/iconv (Include): Clarify that <iconv.h> can only be included
1087         if iconv is found to exist.
1088
1089 2007-01-14  Bruno Haible  <bruno@clisp.org>
1090
1091         * modules/c-ctype-tests: New file.
1092         * tests/test-c-ctype.c: New file.
1093
1094 2007-01-14  Bruno Haible  <bruno@clisp.org>
1095
1096         * modules/binary-io-tests: New file.
1097         * tests/test-binary-io.sh: New file.
1098         * tests/test-binary-io.c: New file.
1099
1100 2007-01-14  Bruno Haible  <bruno@clisp.org>
1101
1102         * modules/array-oset-tests: New file.
1103         * tests/test-array_oset.c: New file.
1104
1105 2007-01-14  Bruno Haible  <bruno@clisp.org>
1106
1107         * modules/array-list-tests: New file.
1108         * tests/test-array_list.c: New file.
1109
1110 2007-01-14  Bruno Haible  <bruno@clisp.org>
1111
1112         * gnulib-tool (func_create_testdir): Don't unnecessarily run configure
1113         and make.
1114         Reported by Simon Josefsson in
1115         <http://lists.gnu.org/archive/html/bug-gnulib/2007-01/msg00139.html>
1116
1117 2007-01-14  Bruno Haible  <bruno@clisp.org>
1118
1119         * modules/allocsa-tests: New file.
1120         * tests/test-allocsa.c: New file.
1121
1122 2007-01-14  Bruno Haible  <bruno@clisp.org>
1123
1124         * modules/fchdir (Depends-on): Add absolute-header.
1125         * modules/unistd (Depends-on): Likewise.
1126
1127 2006-12-30  Bruno Haible  <bruno@clisp.org>
1128
1129         * modules/fchdir: New file.
1130         * modules/unistd (Files): Add lib/unistd_.h.
1131         (Makefile.am): Generate unistd.h from unistd_.h.
1132         * lib/fchdir.c: New file.
1133         * lib/dirent_.h: New file.
1134         * lib/unistd_.h: New file.
1135         * lib/fcntl_.h (open) [FCHDIR_REPLACEMENT]: New replacement.
1136         * m4/fchdir.m4: New file.
1137         * m4/unistd_h.m4 (gl_PREREQ_UNISTD): New macro.
1138         (gl_HEADER_UNISTD): Invoke it.
1139         * lib/dup-safer.c (dup_safer) [FCHDIR_REPLACEMENT]: Use the dup
1140         function.
1141         * lib/backupfile.c (opendir, closedir): Undefine.
1142         * lib/chown.c (open, close): Undefine.
1143         * lib/clean-temp.c (open, close): Undefine.
1144         * lib/copy-file.c (open, close): Undefine.
1145         * lib/execute.c (open, close): Undefine.
1146         * lib/fsusage.c (open, close): Undefine.
1147         * lib/gc-gnulib.c (open, close): Undefine.
1148         * lib/getcwd.c (opendir, closedir): Undefine.
1149         * lib/glob.c (opendir, closedir): Undefine.
1150         * lib/javacomp.c (open, close): Undefine.
1151         * lib/mountlist.c (open, close, opendir, closedir): Undefine.
1152         * lib/openat-proc.c (open, close): Undefine.
1153         * lib/pagealign_alloc.c (open, close): Undefine.
1154         * lib/pipe.c (open, close): Undefine.
1155         * lib/progreloc.c (open, close): Undefine.
1156         * lib/savedir.c (opendir, closedir): Undefine.
1157         * lib/utime.c (open, close): Undefine.
1158         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add fchdir.
1159
1160 2007-01-10  Bruno Haible  <bruno@clisp.org>
1161
1162         * lib/striconv.c (mem_cd_iconv): Align the temporary buffer.
1163
1164 2007-01-12  Eric Blake  <ebb9@byu.net>
1165
1166         Provide a robust <wchar.h>.  Further simplifications are now
1167         possible in other modules, but not included here.
1168         * modules/wchar: New module.
1169         * m4/wchar.m4: New file.
1170         * lib/wchar_.h: Likewise.
1171         * modules/mbchar (Depends-on): Depend on wchar, as the first use
1172         of the new module.
1173         * MODULES.html.sh (Extended multibyte and wide character utilities):
1174         New section.
1175
1176 2007-01-12  Paul Eggert  <eggert@cs.ucla.edu>
1177
1178         * lib/xreadlink.c (SYMLINK_MAX) [!defined SYMLINK_MAX]: Define
1179         to a reasonable default for memory allocation.
1180         (xreadlink): Don't allocate a huge buffer, to work around a buggy
1181         file system that reports garbage st_size values for symlinks.
1182         Problem reported by Liyang Hu.
1183
1184 2007-01-11  Simon Josefsson  <simon@josefsson.org>
1185
1186         * gnulib-tool (func_all_modules): Exclude all .* files (e.g.,
1187         Emacs .#* auto-save files).
1188
1189 2007-01-11  Bruno Haible  <bruno@clisp.org>
1190
1191         * gnulib-tool (func_all_modules): Exclude all files inside the CVS
1192         directory.
1193
1194 2007-01-10  Paul Eggert  <eggert@cs.ucla.edu>
1195
1196         Use @...@ consistently in lib/wctype_.h.
1197         * lib/wctype_.h [HAVE_WINT_T]: Go back to using @...@, but rely
1198         on it being set to 1 or 0.
1199         * m4/wctype.m4 (gl_WCTYPE_H): Set HAVE_WINT_T to 1 or 0, and
1200         go back to AC_SUBSTing it.
1201         * modules/wctype (Makefile.am): Undo previous change.
1202
1203 2007-01-10  Eric Blake  <ebb9@byu.net>
1204
1205         * lib/wctype_.h [HAVE_WINT_T]: Rely on AC_DEFINE.
1206         * m4/wctype.m4 (gl_WCTYPE_H): No need to AC_SUBST(HAVE_WINT_T).
1207         * modules/wctype (Makefile.am): Likewise.
1208         Reported by Chris McGuire.
1209
1210 2007-01-10  Jim Meyering  <jim@meyering.net>
1211
1212         fts.c: a small readability/maintainability improvement
1213         * lib/fts.c (fts_read): Make this code slightly more readable and
1214         maintainable by hoisting the "sp->fts_cur = p" assignments to
1215         immediately follow the statements that set P.  Derived from
1216         the patch by Miloslav Trmac in http://bugzilla.redhat.com/222089.
1217
1218 2007-01-10  Eric Blake  <ebb9@byu.net>
1219
1220         * lib/wctype_.h [HAVE_WINT_T]: Include <stddef.h> before
1221         <wchar.h>, to work around BSDI bug in BSD/OS 4.0.1.
1222         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Likewise.
1223         * m4/wint_t.m4 (gt_TYPE_WINT_T): Likewise.
1224         Reported by Chris McGuire.
1225
1226 2007-01-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1227
1228         * gnulib-tool (func_all_modules): Use POSIX conforming escaping
1229         in sed script.
1230
1231 2007-01-09  Bruno Haible  <bruno@clisp.org>
1232
1233         * MODULES.html.sh: Accept options --cvs-urls, --git-urls.
1234         (repo_url_prefix, repo_url_suffix, repo_url_suffix_repl): New
1235         variables.
1236         (func_module): Use them.
1237
1238 2007-01-09  Bruno Haible  <bruno@clisp.org>
1239
1240         * modules/unistr/base: New file.
1241         * lib/unistr.h: New file.
1242
1243         * modules/unistr/u8-to-u16: New file.
1244         * lib/unistr/u8-to-u16.c: New file.
1245
1246         * modules/unistr/u8-to-u32: New file.
1247         * lib/unistr/u8-to-u32.c: New file.
1248
1249         * modules/unistr/u16-to-u8: New file.
1250         * lib/unistr/u16-to-u8.c: New file.
1251
1252         * modules/unistr/u16-to-u32: New file.
1253         * lib/unistr/u16-to-u32.c: New file.
1254
1255         * modules/unistr/u32-to-u8: New file.
1256         * lib/unistr/u32-to-u8.c: New file.
1257
1258         * modules/unistr/u32-to-u16: New file.
1259         * lib/unistr/u32-to-u16.c: New file.
1260
1261         * modules/unistr/u8-check: New file.
1262         * modules/unistr/u16-check: New file.
1263         * modules/unistr/u32-check: New file.
1264         * lib/unistr/u8-check.c: New file.
1265         * lib/unistr/u16-check.c: New file.
1266         * lib/unistr/u32-check.c: New file.
1267
1268         * modules/unistr/u8-chr: New file.
1269         * modules/unistr/u16-chr: New file.
1270         * modules/unistr/u32-chr: New file.
1271         * lib/unistr/u8-chr.c: New file.
1272         * lib/unistr/u16-chr.c: New file.
1273         * lib/unistr/u32-chr.c: New file.
1274
1275         * modules/unistr/u8-cmp: New file.
1276         * modules/unistr/u16-cmp: New file.
1277         * modules/unistr/u32-cmp: New file.
1278         * lib/unistr/u8-cmp.c: New file.
1279         * lib/unistr/u16-cmp.c: New file.
1280         * lib/unistr/u32-cmp.c: New file.
1281
1282         * modules/unistr/u8-cpy: New file.
1283         * modules/unistr/u16-cpy: New file.
1284         * modules/unistr/u32-cpy: New file.
1285         * lib/unistr/u8-cpy.c: New file.
1286         * lib/unistr/u16-cpy.c: New file.
1287         * lib/unistr/u32-cpy.c: New file.
1288         * lib/unistr/u-cpy.h: New file.
1289
1290         * modules/unistr/u8-cpy-alloc: New file.
1291         * modules/unistr/u16-cpy-alloc: New file.
1292         * modules/unistr/u32-cpy-alloc: New file.
1293         * lib/unistr/u8-cpy-alloc.c: New file.
1294         * lib/unistr/u16-cpy-alloc.c: New file.
1295         * lib/unistr/u32-cpy-alloc.c: New file.
1296         * lib/unistr/u-cpy-alloc.h: New file.
1297
1298         * modules/unistr/u8-endswith: New file.
1299         * modules/unistr/u16-endswith: New file.
1300         * modules/unistr/u32-endswith: New file.
1301         * lib/unistr/u8-endswith.c: New file.
1302         * lib/unistr/u16-endswith.c: New file.
1303         * lib/unistr/u32-endswith.c: New file.
1304         * lib/unistr/u-endswith.h: New file.
1305
1306         * modules/unistr/u8-mblen: New file.
1307         * modules/unistr/u16-mblen: New file.
1308         * modules/unistr/u32-mblen: New file.
1309         * lib/unistr/u8-mblen.c: New file.
1310         * lib/unistr/u16-mblen.c: New file.
1311         * lib/unistr/u32-mblen.c: New file.
1312
1313         * modules/unistr/u8-mbtouc: New file.
1314         * modules/unistr/u16-mbtouc: New file.
1315         * modules/unistr/u32-mbtouc: New file.
1316         * lib/unistr/u8-mbtouc.c: New file.
1317         * lib/unistr/u16-mbtouc.c: New file.
1318         * lib/unistr/u32-mbtouc.c: New file.
1319
1320         * modules/unistr/u8-mbtouc-safe: New file.
1321         * modules/unistr/u16-mbtouc-safe: New file.
1322         * modules/unistr/u32-mbtouc-safe: New file.
1323         * lib/unistr/u8-mbtouc-safe.c: New file.
1324         * lib/unistr/u16-mbtouc-safe.c: New file.
1325         * lib/unistr/u32-mbtouc-safe.c: New file.
1326
1327         * modules/unistr/u8-move: New file.
1328         * modules/unistr/u16-move: New file.
1329         * modules/unistr/u32-move: New file.
1330         * lib/unistr/u8-move.c: New file.
1331         * lib/unistr/u16-move.c: New file.
1332         * lib/unistr/u32-move.c: New file.
1333         * lib/unistr/u-move.h: New file.
1334
1335         * modules/unistr/u8-next: New file.
1336         * modules/unistr/u16-next: New file.
1337         * modules/unistr/u32-next: New file.
1338         * lib/unistr/u8-next.c: New file.
1339         * lib/unistr/u16-next.c: New file.
1340         * lib/unistr/u32-next.c: New file.
1341
1342         * modules/unistr/u8-prev: New file.
1343         * modules/unistr/u16-prev: New file.
1344         * modules/unistr/u32-prev: New file.
1345         * lib/unistr/u8-prev.c: New file.
1346         * lib/unistr/u16-prev.c: New file.
1347         * lib/unistr/u32-prev.c: New file.
1348
1349         * modules/unistr/u8-set: New file.
1350         * modules/unistr/u16-set: New file.
1351         * modules/unistr/u32-set: New file.
1352         * lib/unistr/u8-set.c: New file.
1353         * lib/unistr/u16-set.c: New file.
1354         * lib/unistr/u32-set.c: New file.
1355         * lib/unistr/u-set.h: New file.
1356
1357         * modules/unistr/u8-startswith: New file.
1358         * modules/unistr/u16-startswith: New file.
1359         * modules/unistr/u32-startswith: New file.
1360         * lib/unistr/u8-startswith.c: New file.
1361         * lib/unistr/u16-startswith.c: New file.
1362         * lib/unistr/u32-startswith.c: New file.
1363         * lib/unistr/u-startswith.h: New file.
1364
1365         * modules/unistr/u8-stpcpy: New file.
1366         * modules/unistr/u16-stpcpy: New file.
1367         * modules/unistr/u32-stpcpy: New file.
1368         * lib/unistr/u8-stpcpy.c: New file.
1369         * lib/unistr/u16-stpcpy.c: New file.
1370         * lib/unistr/u32-stpcpy.c: New file.
1371         * lib/unistr/u-stpcpy.h: New file.
1372
1373         * modules/unistr/u8-stpncpy: New file.
1374         * modules/unistr/u16-stpncpy: New file.
1375         * modules/unistr/u32-stpncpy: New file.
1376         * lib/unistr/u8-stpncpy.c: New file.
1377         * lib/unistr/u16-stpncpy.c: New file.
1378         * lib/unistr/u32-stpncpy.c: New file.
1379         * lib/unistr/u-stpncpy.h: New file.
1380
1381         * modules/unistr/u8-strcat: New file.
1382         * modules/unistr/u16-strcat: New file.
1383         * modules/unistr/u32-strcat: New file.
1384         * lib/unistr/u8-strcat.c: New file.
1385         * lib/unistr/u16-strcat.c: New file.
1386         * lib/unistr/u32-strcat.c: New file.
1387         * lib/unistr/u-strcat.h: New file.
1388
1389         * modules/unistr/u8-strchr: New file.
1390         * modules/unistr/u16-strchr: New file.
1391         * modules/unistr/u32-strchr: New file.
1392         * lib/unistr/u8-strchr.c: New file.
1393         * lib/unistr/u16-strchr.c: New file.
1394         * lib/unistr/u32-strchr.c: New file.
1395
1396         * modules/unistr/u8-strcmp: New file.
1397         * modules/unistr/u16-strcmp: New file.
1398         * modules/unistr/u32-strcmp: New file.
1399         * lib/unistr/u8-strcmp.c: New file.
1400         * lib/unistr/u16-strcmp.c: New file.
1401         * lib/unistr/u32-strcmp.c: New file.
1402
1403         * modules/unistr/u8-strcpy: New file.
1404         * modules/unistr/u16-strcpy: New file.
1405         * modules/unistr/u32-strcpy: New file.
1406         * lib/unistr/u8-strcpy.c: New file.
1407         * lib/unistr/u16-strcpy.c: New file.
1408         * lib/unistr/u32-strcpy.c: New file.
1409         * lib/unistr/u-strcpy.h: New file.
1410
1411         * modules/unistr/u8-strcspn: New file.
1412         * modules/unistr/u16-strcspn: New file.
1413         * modules/unistr/u32-strcspn: New file.
1414         * lib/unistr/u8-strcspn.c: New file.
1415         * lib/unistr/u16-strcspn.c: New file.
1416         * lib/unistr/u32-strcspn.c: New file.
1417         * lib/unistr/u-strcspn.h: New file.
1418
1419         * modules/unistr/u8-strdup: New file.
1420         * modules/unistr/u16-strdup: New file.
1421         * modules/unistr/u32-strdup: New file.
1422         * lib/unistr/u8-strdup.c: New file.
1423         * lib/unistr/u16-strdup.c: New file.
1424         * lib/unistr/u32-strdup.c: New file.
1425         * lib/unistr/u-strdup.h: New file.
1426
1427         * modules/unistr/u8-strlen: New file.
1428         * modules/unistr/u16-strlen: New file.
1429         * modules/unistr/u32-strlen: New file.
1430         * lib/unistr/u8-strlen.c: New file.
1431         * lib/unistr/u16-strlen.c: New file.
1432         * lib/unistr/u32-strlen.c: New file.
1433         * lib/unistr/u-strlen.h: New file.
1434
1435         * modules/unistr/u8-strmblen: New file.
1436         * modules/unistr/u16-strmblen: New file.
1437         * modules/unistr/u32-strmblen: New file.
1438         * lib/unistr/u8-strmblen.c: New file.
1439         * lib/unistr/u16-strmblen.c: New file.
1440         * lib/unistr/u32-strmblen.c: New file.
1441
1442         * modules/unistr/u8-strmbtouc: New file.
1443         * modules/unistr/u16-strmbtouc: New file.
1444         * modules/unistr/u32-strmbtouc: New file.
1445         * lib/unistr/u8-strmbtouc.c: New file.
1446         * lib/unistr/u16-strmbtouc.c: New file.
1447         * lib/unistr/u32-strmbtouc.c: New file.
1448
1449         * modules/unistr/u8-strncat: New file.
1450         * modules/unistr/u16-strncat: New file.
1451         * modules/unistr/u32-strncat: New file.
1452         * lib/unistr/u8-strncat.c: New file.
1453         * lib/unistr/u16-strncat.c: New file.
1454         * lib/unistr/u32-strncat.c: New file.
1455         * lib/unistr/u-strncat.h: New file.
1456
1457         * modules/unistr/u8-strncmp: New file.
1458         * modules/unistr/u16-strncmp: New file.
1459         * modules/unistr/u32-strncmp: New file.
1460         * lib/unistr/u8-strncmp.c: New file.
1461         * lib/unistr/u16-strncmp.c: New file.
1462         * lib/unistr/u32-strncmp.c: New file.
1463
1464         * modules/unistr/u8-strncpy: New file.
1465         * modules/unistr/u16-strncpy: New file.
1466         * modules/unistr/u32-strncpy: New file.
1467         * lib/unistr/u8-strncpy.c: New file.
1468         * lib/unistr/u16-strncpy.c: New file.
1469         * lib/unistr/u32-strncpy.c: New file.
1470         * lib/unistr/u-strncpy.h: New file.
1471
1472         * modules/unistr/u8-strnlen: New file.
1473         * modules/unistr/u16-strnlen: New file.
1474         * modules/unistr/u32-strnlen: New file.
1475         * lib/unistr/u8-strnlen.c: New file.
1476         * lib/unistr/u16-strnlen.c: New file.
1477         * lib/unistr/u32-strnlen.c: New file.
1478         * lib/unistr/u-strnlen.h: New file.
1479
1480         * modules/unistr/u8-strpbrk: New file.
1481         * modules/unistr/u16-strpbrk: New file.
1482         * modules/unistr/u32-strpbrk: New file.
1483         * lib/unistr/u8-strpbrk.c: New file.
1484         * lib/unistr/u16-strpbrk.c: New file.
1485         * lib/unistr/u32-strpbrk.c: New file.
1486         * lib/unistr/u-strpbrk.h: New file.
1487
1488         * modules/unistr/u8-strrchr: New file.
1489         * modules/unistr/u16-strrchr: New file.
1490         * modules/unistr/u32-strrchr: New file.
1491         * lib/unistr/u8-strrchr.c: New file.
1492         * lib/unistr/u16-strrchr.c: New file.
1493         * lib/unistr/u32-strrchr.c: New file.
1494
1495         * modules/unistr/u8-strspn: New file.
1496         * modules/unistr/u16-strspn: New file.
1497         * modules/unistr/u32-strspn: New file.
1498         * lib/unistr/u8-strspn.c: New file.
1499         * lib/unistr/u16-strspn.c: New file.
1500         * lib/unistr/u32-strspn.c: New file.
1501         * lib/unistr/u-strspn.h: New file.
1502
1503         * modules/unistr/u8-strstr: New file.
1504         * modules/unistr/u16-strstr: New file.
1505         * modules/unistr/u32-strstr: New file.
1506         * lib/unistr/u8-strstr.c: New file.
1507         * lib/unistr/u16-strstr.c: New file.
1508         * lib/unistr/u32-strstr.c: New file.
1509         * lib/unistr/u-strstr.h: New file.
1510
1511         * modules/unistr/u8-strtok: New file.
1512         * modules/unistr/u16-strtok: New file.
1513         * modules/unistr/u32-strtok: New file.
1514         * lib/unistr/u8-strtok.c: New file.
1515         * lib/unistr/u16-strtok.c: New file.
1516         * lib/unistr/u32-strtok.c: New file.
1517         * lib/unistr/u-strtok.h: New file.
1518
1519         * modules/unistr/u8-uctomb: New file.
1520         * modules/unistr/u16-uctomb: New file.
1521         * modules/unistr/u32-uctomb: New file.
1522         * lib/unistr/u8-uctomb.c: New file.
1523         * lib/unistr/u16-uctomb.c: New file.
1524         * lib/unistr/u32-uctomb.c: New file.
1525
1526         * MODULES.html.sh (Unicode string functions): Add the new modules.
1527
1528 2007-01-08  Bruno Haible  <bruno@clisp.org>
1529
1530         * gnulib-tool (func_all_modules): Use find, not ls, to traverse the
1531         modules directory. Filter out CVS, ChangeLog, COPYING, README also from
1532         subdirectories.
1533
1534 2007-01-08  Karl Berry  <karl@gnu.org>
1535
1536         * doc/error.texi: mention that main() fns must set program_name
1537         when progname is used.
1538
1539 2007-01-08  Paul Eggert  <eggert@cs.ucla.edu>
1540
1541         * m4/wctype.m4 (gl_WCTYPE_H): Compute ABSOLUTE_WCTYPE_H even if
1542         WCTYPE_H is empty, for the benefit of builds from non-distclean
1543         directories.  Problem reported by Eric Blake in
1544         <http://lists.gnu.org/archive/html/bug-gnulib/2007-01/msg00157.html>.
1545
1546 2007-01-08  Bruno Haible  <bruno@clisp.org>
1547
1548         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME): Remove
1549         PROVIDE_CANONICALIZE_FILENAME_MODE macro definition.
1550         * lib/canonicalize.h: Test GNULIB_CANONICALIZE instead of
1551         PROVIDE_CANONICALIZE_FILENAME_MODE.
1552         * modules/canonicalize (configure.ac): Use gl_MODULE_INDICATOR.
1553
1554 2007-01-08  Bruno Haible  <bruno@clisp.org>
1555
1556         * m4/fts.m4 (gl_FUNC_FTS_LGPL): Remove _LGPL_PACKAGE macro definition.
1557         * lib/fts_.h (_LGPL_PACKAGE): Remove macro.
1558         Use !GNULIB_FTS instead of _LGPL_PACKAGE.
1559         * lib/fts.c: Likewise.
1560         * modules/fts (configure.ac): Use gl_MODULE_INDICATOR.
1561
1562 2006-12-25  Bruno Haible  <bruno@clisp.org>
1563
1564         * modules/utf8-ucs4-safe: New file.
1565         * lib/utf8-ucs4-safe.h: New file.
1566         * lib/unistr/utf8-ucs4-safe.c: New file.
1567
1568         * modules/utf16-ucs4-safe: New file.
1569         * lib/utf16-ucs4-safe.h: New file.
1570         * lib/unistr/utf16-ucs4-safe.c: New file.
1571
1572         * MODULES.html.sh (Unicode string functions): Add the new modules.
1573
1574 2007-01-08  Bruno Haible  <bruno@clisp.org>
1575
1576         * modules/utf8-ucs4 (Files, lib_SOURCES): Add unistr/utf8-ucs4.c.
1577         (Depends-on): Add unitypes.
1578         * lib/utf8-ucs4.h: Add double-inclusion guard. Include unitypes.h.
1579         (u8_mbtouc_aux): Move out to separate file.
1580         (u8_mbtouc): Use ucs4_t, uint8_t types.
1581         * lib/unistr/utf8-ucs4.c: New file.
1582
1583         * modules/utf16-ucs4 (Files, lib_SOURCES): Add unistr/utf16-ucs4.c.
1584         (Depends-on): Add unitypes.
1585         * lib/utf16-ucs4.h: Add double-inclusion guard. Include unitypes.h.
1586         (u16_mbtouc_aux): Move out to separate file.
1587         (u16_mbtouc): Use ucs4_t, uint16_t types.
1588         * lib/unistr/utf16-ucs4.c: New file.
1589
1590         * modules/ucs4-utf8 (Files, lib_SOURCES): Add unistr/ucs4-utf8.c.
1591         (Depends-on): Add unitypes.
1592         * lib/ucs4-utf8.h: Add double-inclusion guard. Include unitypes.h.
1593         (u8_uctomb_aux): Move out to separate file.
1594         (u8_uctomb): Use ucs4_t, uint8_t types.
1595         * lib/unistr/ucs4-utf8.c: New file.
1596
1597         * modules/ucs4-utf16 (Files, lib_SOURCES): Add unistr/ucs4-utf16.c.
1598         (Depends-on): Add unitypes.
1599         * lib/ucs4-utf16.h: Add double-inclusion guard. Include unitypes.h.
1600         (u16_uctomb_aux): Move out to separate file.
1601         (u16_uctomb): Use ucs4_t, uint16_t types.
1602         * lib/unistr/ucs4-utf16.c: New file.
1603
1604 2006-12-25  Bruno Haible  <bruno@clisp.org>
1605
1606         * modules/unitypes: New file.
1607         * lib/unitypes.h: New file.
1608         * MODULES.html.sh (func_all_modules): New section "Unicode string
1609         functions". Move ucs4-utf8, ucs4-utf16, utf8-ucs4, utf16-ucs4 to
1610         this section. Add unitypes.
1611
1612 2007-01-08  Bruno Haible  <bruno@clisp.org>
1613
1614         Avoid variable names that conflict with those from libtool.
1615         * m4/lib-link.m4 (AC_LIB_RPATH, AC_LIB_LINKFLAGS_BODY,
1616         AC_LIB_LINKFLAGS_FROM_LIBS): Rename libext to acl_libext,
1617         shlibext to acl_shlibext, libname_spec to acl_libname_spec,
1618         library_names_spec to acl_library_names_spec, hardcode_* to
1619         acl_hardcode_*.
1620         Reported by Ralf Wildenhues.
1621
1622 2007-01-08  Bruno Haible  <bruno@clisp.org>
1623
1624         * m4/gc-arcfour.m4 (gl_GC_ARCFOUR): Remove GC_USE_ARCFOUR macro
1625         definition.
1626         * m4/gc-arctwo.m4 (gl_GC_ARCTWO): Remove GC_USE_ARCTWO macro
1627         definition.
1628         * m4/gc-des.m4 (gl_GC_DES): Remove GC_USE_DES macro definition.
1629         * m4/gc-hmac-md5.m4 (gl_GC_HMAC_MD5): Remove GC_USE_HMAC_MD5 macro
1630         definition.
1631         * m4/gc-hmac-sha1.m4 (gl_GC_HMAC_SHA1): Remove GC_USE_HMAC_SHA1 macro
1632         definition.
1633         * m4/gc-md2.m4 (gl_GC_MD2): Remove GC_USE_MD2 macro definition.
1634         * m4/gc-md4.m4 (gl_GC_MD4): Remove GC_USE_MD4 macro definition.
1635         * m4/gc-md5.m4 (gl_GC_MD5): Remove GC_USE_MD5 macro definition.
1636         * m4/gc-random.m4 (gl_GC_RANDOM): Remove GC_USE_RANDOM macro
1637         definition.
1638         * m4/gc-rijndael.m4 (gl_GC_RIJNDAEL): Remove GC_USE_RIJNDAEL macro
1639         definition.
1640         * m4/gc-sha1.m4 (gl_GC_SHA1): Remove GC_USE_SHA1 macro definition.
1641         * lib/gc-gnulib.c: Use GNULIB_GC_<algorithm> instead of
1642         GC_USE_<algorithm>.
1643         * lib/gc-libgcrypt.c: Likewise.
1644         * modules/gc-arcfour (configure.ac): Use gl_MODULE_INDICATOR.
1645         * modules/gc-arctwo (configure.ac): Likewise.
1646         * modules/gc-des (configure.ac): Likewise.
1647         * modules/gc-hmac-md5 (configure.ac): Likewise.
1648         * modules/gc-hmac-sha1 (configure.ac): Likewise.
1649         * modules/gc-md2 (configure.ac): Likewise.
1650         * modules/gc-md4 (configure.ac): Likewise.
1651         * modules/gc-md5 (configure.ac): Likewise.
1652         * modules/gc-random (configure.ac): Likewise.
1653         * modules/gc-rijndael (configure.ac): Likewise.
1654         * modules/gc-sha1 (configure.ac): Likewise.
1655
1656 2007-01-08  Bruno Haible  <bruno@clisp.org>
1657
1658         * m4/close-stream.m4 (gl_CLOSE_STREAM): Remove GNULIB_CLOSE_STREAM
1659         macro definition.
1660         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Remove GNULIB_FCNTL_SAFER macro
1661         definition.
1662         * m4/stdio-safer.m4 (gl_FOPEN_SAFER): Remove GNULIB_FOPEN_SAFER macro
1663         definition.
1664         * modules/close-stream (configure.ac): Invoke gl_MODULE_INDICATOR.
1665         * modules/fcntl-safer (configure.ac): Likewise.
1666         * modules/fopen-safer (configure.ac): Likewise.
1667         * modules/fwriteerror (configure.ac): Likewise. Remove explicit
1668         GNULIB_FWRITEERROR macro definition.
1669
1670 2007-01-08  Bruno Haible  <bruno@clisp.org>
1671
1672         * m4/gnulib-common.m4: New file.
1673         * gnulib-tool (func_get_autoconf_snippet): Undo last change.
1674         (func_get_filelist): Add m4/gnulib-common.m4.
1675
1676 2007-01-08  Bruno Haible  <bruno@clisp.org>
1677
1678         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Simplify the sorting
1679         command.
1680
1681 2007-01-08  Jim Meyering  <jim@meyering.net>
1682
1683         Use a more robust test for a "can't happen" condition.
1684         * lib/fts.c (fts_read): Revert the change of 2006-11-22, since it
1685         narrowed the st_size value.  Presuming the "can't happen" condition
1686         is true, that narrowing could conceivably convert an invalid st_size
1687         value into a valid one.  Instead, use a change based on Matthew
1688         Woehlke's original patch.
1689
1690         Slight readability improvement: use an assert-like macro
1691         in place of literal "abort ()" uses.
1692         * lib/fts.c (fts_assert): Define.
1693         (fts_set_stat_required, cwd_advance_fd, fts_read, fd_ring_check):
1694         Use this macro instead of a bare 'abort'.
1695
1696 2007-01-05  Paul Eggert  <eggert@cs.ucla.edu>
1697
1698         Don't worry about using IRIX 5.3's wctype.h broken definitions;
1699         simply work around them.
1700         * lib/wctype_.h: Remove test for HAVE_WCTYPE_CTMP_BUG.
1701         (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit, iswgraph, iswlower):
1702         (iswprint, iswpunct, iswspace, iswupper, iswxdigit): Undef before declaring.
1703         Don't bother to define as macros, since the standard doesn't require it.
1704         * m4/wctype.m4 (WCTYPE_H, ABSOLUTE_WCTYPE_H): Simplify, since we no
1705         longer worry about IRIX 5.3.
1706         (HAVE_WCTYPE_CTMP_BUG): Remove.
1707
1708 2007-01-04  Paul Eggert  <eggert@cs.ucla.edu>
1709
1710         * lib/wctype_.h (_ctmp_) [HAVE_WCTYPE_CTMP_BUG]: Now of type wchar_t,
1711         not wint_t.  Also, include <ctype.h>, to fix another IRIX bug.
1712         * m4/wctype.m4 (gl_WCTYPE_H): Likewise.
1713         Problems reported by Georg Schwarz for IRIX 5.3.
1714
1715         * gnulib-tool (autoconf_minversion): Take the maximum version number
1716         found, not the minimum.  Problem reported by James Youngman.
1717
1718 2007-01-03  Karl Berry  <karl@gnu.org>
1719
1720         * doc/error.texi: new file, explaining interaction with progname.
1721         * doc/gnulib.texi: include it.  Update copyright.
1722
1723 2007-01-03  Simon Josefsson  <simon@josefsson.org>
1724
1725         * gnulib-tool (func_create_testdir): Run AC_CANONICAL_BUILD and
1726         AC_CANONICAL_HOST, to improve autobuild outputs.
1727
1728 2007-01-03  Paolo Bonzini  <bonzini@gnu.org>
1729             Yoann Vandoorselaere <yoann.v@prelude-ids.com>
1730
1731         * lib/poll.c (poll): Use recv on Mac OS X to distinguish connected
1732         sockets, server sockets, and other file descriptors.  Count errors
1733         to compute the return value.  Reorder the code a bit to be easier
1734         to follow.  Don't set event bits that were not requested (except
1735         POLLERR and POLLHUP).
1736
1737 2007-01-01  Bruno Haible  <bruno@clisp.org>
1738
1739         * modules/lchmod (Include): Require lchmod.h, not lchown.h.
1740
1741 2007-01-03  Jim Meyering  <jim@meyering.net>
1742
1743         * modules/fts-lgpl (Depends-on): Add i-ring.  Reported by Bruno Haible.
1744
1745 2007-01-02  Bruno Haible  <bruno@clisp.org>
1746
1747         * modules/settime (Include): Require timespec.h.
1748         * modules/nanosleep (Include): Likewise.
1749
1750 2007-01-01  Bruno Haible  <bruno@clisp.org>
1751
1752         * gnulib-tool (func_emit_copyright_notice): Bump year.
1753         (func_get_autoconf_snippet): Emit a GNULIB_<modulename> macro.
1754
1755 2007-01-01  Bruno Haible  <bruno@clisp.org>
1756
1757         Improve support for OpenBSD.
1758         * build-aux/config.rpath (libname_spec): Export.
1759         (library_names_spec): New variable. Export.
1760         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Extract libname_spec and
1761         library_names_spec from the config.rpath output. Locate shared library
1762         through the name pattern in library_names_spec.
1763
1764 2007-01-01  Eric Blake  <ebb9@byu.net>
1765
1766         * lib/version-etc.c (COPYRIGHT_YEAR): Bump for new year.
1767
1768 2006-12-30  Paul Eggert  <eggert@cs.ucla.edu>
1769
1770         * gnulib-tool (SORT): Remove, since we no longer assume GNU sort.
1771         Rewrite so as not to assume GNU sort or "tail -1".  Also, don't
1772         assume the C locale, and avoid an "eval" that could cause trouble.
1773         Problem with SORT reported by Bob Proulx.
1774
1775         * lib/getpagesize.h (getpagesize) [defined __amigaos4__]:
1776         Define.  Trivial patch from Henning Nielsen Lund, originally
1777         sent to bug-grep@gnu.org today.
1778
1779 2006-12-29  Paul Eggert  <eggert@cs.ucla.edu>
1780
1781         * lib/acl.h: Include sys/types.h and sys/stat.h, for mode_t and
1782         struct stat.  Problem reported by Henning Nielsen Lund.
1783         * lib/acl.c: Include acl.h first, to check interface.  Don't
1784         bother to include sys/types.h and sys/stat.h again.
1785
1786 2006-12-28  Paul Eggert  <eggert@cs.ucla.edu>
1787
1788         Import the following change from libc; problem reported by
1789         Sven Verdoolaege.
1790
1791         2005-10-13  Ulrich Drepper  <drepper@redhat.com>
1792
1793         [BZ #1373]
1794         * lib/argp.h: Remove __NTH for __argp_usage inline function.
1795
1796 2006-12-28  Jim Meyering  <jim@meyering.net>
1797
1798         * build-aux/announce-gen: Do not assume that the package
1799         builds any of tar.gz, tar.bz2, and .xdelta files.
1800         Suggestion from Simon Josefsson.
1801
1802 2006-12-28  Simon Josefsson  <simon@josefsson.org>
1803
1804         * modules/announce-gen: New file.
1805
1806 2006-12-27  Paul Eggert  <eggert@cs.ucla.edu>
1807
1808         * lib/mbchar.h: Just include <wctype.h>; the wctype module
1809         handles its gotchas now.
1810         * lib/mbswidth.c: Likewise.
1811         * lib/wcwidth.h: Likewise.
1812         * m4/mbchar.m4 (gl_MBCHAR): Don't bother checking for wctype.h
1813         and iswcntrl; the wctype module does this stuff now.
1814         * m4/mbswidth.m4 (gl_MBSWIDTH): Likewise.
1815         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Likewise.
1816         * modules/mbchar (Depends-on): Add wctype.
1817         * modules/mbswidth (Depends-on): Likewise.
1818         * modules/wcwidth (Depends-on): Likewise.
1819
1820 2006-12-27  Eric Blake  <ebb9@byu.net>
1821
1822         * lib/fnmatch.c: Reinstate inclusion of <wchar.h>, since this
1823         module uses more than what <wctype.h> is required to provide.
1824
1825 2006-12-26  Eric Blake  <ebb9@byu.net>
1826
1827         * gnulib-tool (sed_extract_prog): Avoid space-tab.
1828
1829 2006-12-26  Eric Blake  <ebb9@byu.net>
1830
1831         * modules/absolute-header: New module.
1832         * modules/fcntl (Depends-on): Depend on it.
1833         * modules/inttypes (Depends-on): Likewise.
1834         * modules/stdint (Depends-on): Likewise.
1835         * modules/sys_stat (Depends-on): Likewise.
1836         * modules/wctype (Depends-on): Likewise.
1837         * MODULES.html.sh (Support for building libraries and
1838         executables): Document it.
1839
1840 2006-12-25  Paul Eggert  <eggert@cs.ucla.edu>
1841
1842         * gnulib-tool (SED): Remove, undoing previous change.
1843         The problem was that it broke coreutils on Solaris, because
1844         "sed --posix" leaked into a makefile.
1845         (sed): New alias, if 'alias' and GNU sed.
1846
1847 2006-12-24  Jim Meyering  <jim@meyering.net>
1848
1849         Work around an fchownat bug in glibc-2.4:
1850         http://lists.ubuntu.com/archives/ubuntu-users/2006-September/093218.html
1851         This bug would cause "chown -RP ... DIR" to follow symlinks in DIR,
1852         in spite of the -P option.
1853         * m4/openat.m4 (gl_FUNC_FCHOWNAT, gl_FUNC_FCHOWNAT_DEREF_BUG):
1854         New macros.
1855         (gl_PREREQ_OPENAT): Require gl_FUNC_FCHOWNAT.
1856         * modules/openat (Files): Add lib/fchownat.c.
1857         * lib/openat.c (fchownat): Don't define here.  Move to...
1858         * lib/fchownat.c: ...this new file.
1859
1860 2006-12-23  Paul Eggert  <eggert@cs.ucla.edu>
1861
1862         Fix bug reported by Bruno Haible in
1863         <http://lists.gnu.org/archive/html/bug-gnulib/2006-12/msg00228.html>
1864         where quotearg.c didn't compile on Mac OS X 10.2 because it
1865         lacks <wchar.h> and wint_t.
1866         * lib/wctype_.h (__wctype_wint_t): New type.
1867         Include <stdio.h>, <time.h>, <wchar.h> only if HAVE_WINT_T.
1868         (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit, iswgraph):
1869         (iswlower, iswprint, iswpunct, iswspace, iswupper, ixwxdigit):
1870         Arg is now of type __wctype_wint_t, not wint_t.
1871         * m4/wctype.m4 (gl_WCTYPE_H): Require gt_TYPE_WINT_T, and
1872         substitute HAVE_WINT_T.
1873         * modules/wctype (Files): Add m4/wint_t.m4.
1874         (wctype.h): Substitute HAVE_WINT_T.
1875
1876 2006-12-23  Bruno Haible  <bruno@clisp.org>
1877
1878         * lib/safe-read.h [C++]: Wrap declarations in extern "C".
1879
1880 2006-12-23  Bruno Haible  <bruno@clisp.org>
1881
1882         * lib/canonicalize-lgpl.c (__realpath): Test HAVE_READLINK instead of
1883         S_ISLNK.
1884         Needed because gnulib's sys/stat.h replacement defines S_ISLNK on
1885         mingw.
1886
1887 2006-12-22  Bruno Haible  <bruno@clisp.org>
1888
1889         * lib/copy-file.c: Include acl.h.
1890         (copy_file_preserving) [USE_ACL]: Use copy_acl instead of chmod.
1891         Close the file descriptors only after being done with copy_acl.
1892         * modules/copy-file (Depends-on): Add acl.
1893
1894 2006-12-22  Bruno Haible  <bruno@clisp.org>
1895
1896         * gnulib-tool (SED): New variable.
1897         Use $SED instead of sed everywhere.
1898
1899 2006-12-22  Bruno Haible  <bruno@clisp.org>
1900
1901         * modules/no-c++: New file.
1902         * m4/no-c++.m4: New file.
1903         * MODULES.html.sh (Support for building libraries and executables):
1904         Add no-c++.
1905
1906 2006-12-22  Paul Eggert  <eggert@cs.ucla.edu>
1907
1908         * m4/mktime.m4 (AC_FUNC_MKTIME): Sync from Autoconf.
1909         Include <limits.h>, and use its INT_MAX to rewrite the
1910         j loop so that it does not overflow 'int'.  Problem reported by
1911         Ralf Wildenhues in
1912         <http://lists.gnu.org/archive/html/bug-gnulib/2006-12/msg00084.html>.
1913         Play it safe by shifting left by 1 rather than multiplying by 2,
1914         as GCC is less likely to optimize this away when the value
1915         is signed (when it assumes overflow leads to undefined behavior).
1916         Also, don't assume time_t uses two's complement.
1917
1918 2006-12-21  Paul Eggert  <eggert@cs.ucla.edu>
1919
1920         * MODULES.html.sh: New module wctype.
1921         * lib/wctype_.h, m4/wctype.m4, modules/wctype: New files.
1922         * lib/fnmatch.c: Don't bother to include <wchar.h> before
1923         <wctype.h>, since the new wctype module should fix this.
1924         * lib/quotearg.c: Include <wctype.h> unconditionally, since
1925         the wctype module should arrange for it.
1926         * lib/regex_internal.h: Likewise.
1927         * m4/quotearg.m4 (gl_QUOTEARG): Don't check for wctype.h or iswprint,
1928         since the wctype module should handle this now.
1929         * m4/regex.m4 (gl_PREREQ_REGEX): Don't check for wctype.h.
1930         * modules/fnmatch (Depends-on): Add wctype.
1931         * modules/quotearg (Depends-on): Likewise.
1932         * modules/regex (Depends-on): Likewise.
1933
1934 2006-12-19  Bruno Haible  <bruno@clisp.org>
1935
1936         * lib/strdup.h [C++]: Wrap definitions in extern "C".
1937         Suggested by Lorenzo Bettini <bettini@dsi.unifi.it>.
1938
1939 2006-12-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1940
1941         * modules/savewd (Depends-on): Fix dependency on fcntl.
1942
1943 2006-12-18  Paul Eggert  <eggert@cs.ucla.edu>
1944
1945         * m4/stdint.m4 (gl_STDINT_H): Set STDINT_H to empty if stdint.h
1946         conforms to C99, rather than relying on the user's environment
1947         setting of STDINT_H.
1948
1949 2006-12-18  Paul Eggert  <eggert@cs.ucla.edu>
1950         and Eric Blake  <ebb9@byu.net>
1951
1952         * lib/dirname.h (DOUBLE_SLASH_IS_DISTINCT_ROOT): Default to 0, not 1.
1953         This is more consistent with the other defines here.
1954         * m4/double-slash-root.m4 (gl_DOUBLE_SLASH_ROOT):
1955         Port to z/OS.  Problem reported by Paul Gilmartin.
1956         Change local vars to use gl_ prefix rather than ac_.
1957         Don't define DOUBLE_SLASH_IS_DISTINCT_ROOT to 0, for consistency
1958         with other defines.
1959         * modules/double-slash-root: New module.
1960         * modules/dirname (Files): Remove m4/double-slash-root.m4.
1961         (Depends-on): Add double-slash-root.
1962         * MODULES.html.sh (File system functions): Mention new module.
1963
1964 2006-12-14  Paul Eggert  <eggert@cs.ucla.edu>
1965
1966         * lib/yesno.c [!ENABLE_NLS]: Don't include getline.h.
1967         (yesno) [!ENABLE_NLS]: Don't invoke getline or rpmatch.
1968         This is for the benefit of gzip, which doesn't do i18n.
1969
1970 2006-12-12  Jim Meyering  <jim@meyering.net>
1971
1972         * m4/acl.m4 (gl_ACL_GET_FILE): Fix logic error.
1973         Reported by Andreas Schwab <schwab@suse.de>.
1974
1975 2006-12-12  Bruno Haible  <bruno@clisp.org>
1976
1977         Merge these changes.
1978         2006-09-05  Bruno Haible  <bruno@clisp.org>
1979         * lib/iconvme.c (iconv_string): No need to save and restore errno when
1980         iconv_alloc succeeded.
1981         (iconv_alloc): Don't assume that malloc() or realloc(), when failing,
1982         sets errno to ENOMEM. (malloc on GNU/kFreeBSD doesn't.) No need to
1983         test for " && dest " at the end - dest is always != NULL there. Call
1984         iconv with 4xNULL arguments initially, to reset the state. Call iconv
1985         with 2xNULL arguments, also to flush the state storage. Handle the
1986         IRIX iconv behaviour. Realloc the final result, to throw away unused
1987         memory.
1988
1989 2006-12-11  Paul Eggert  <eggert@cs.ucla.edu>
1990
1991         * m4/openat.m4 (gl_FUNC_OPENAT): Don't compile mkdirat
1992         and fchmodat unconditionally, since glibc 2.4 has them.
1993         Problem reported by Arkadiusz Miskiewicz.
1994
1995 2006-12-10  Bruno Haible  <bruno@clisp.org>
1996
1997         * gnulib-tool (func_import): Show the include files only for those
1998         modules that are copied and specified.
1999         Reported by Karl Berry.
2000
2001 2006-12-08  Jim Meyering  <jim@meyering.net>
2002
2003         * build-aux/announce-gen ($VERSION): Don't use of $Revision...$.
2004         Instead, use Emacs' time-stamp write hook.  Note that the time is UTC.
2005
2006         * build-aux/announce-gen: Add two new options, both optional:
2007         --bootstrap-tools=TOOL_LIST
2008               a comma-separated list of tools, e.g.,
2009               autoconf,automake,bison,gnulib
2010         --gnulib-snapshot-date=DATE
2011               if gnulib is in the bootstrap tool list,
2012               then report this as the snapshot date.
2013               If not specified, use the current date/time.
2014               If you specify a date here, be sure it's UTC.
2015
2016 2006-12-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2017
2018         * tests/test-argp-2.sh: Fix test to match actual output.
2019         (func_compare): Fix sed script to be portable.
2020
2021 2006-12-05  Paul Eggert  <eggert@cs.ucla.edu>
2022
2023         * lib/utimens.c (futimens) [HAVE_BUGGY_NFS_TIME_STAMPS]: Add a
2024         workaround for this case.  It is not autoconfigured now; offhand
2025         it's hard to see how to autoconfigure it.
2026
2027 2006-12-03  Paul Eggert  <eggert@cs.ucla.edu>
2028
2029         * lib/mkdir-p.c (make_dir_parents): Fix race condition when making
2030         a directory that is about to be chowned.  Such a directory's
2031         initial file permissions should permit the owner only and this
2032         should not be changed until after the chown, since the group and
2033         other bits would be incorrect if they granted permission before
2034         the chown.
2035
2036         Fix porting problem for iswctype reported by Georg Schwarz in:
2037         http://lists.gnu.org/archive/html/bug-coreutils/2006-12/msg00017.html
2038         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Require HAVE_ISWCTYPE, too.
2039         * lib/regex_internal.h (RE_ENABLE_I18N): Likewise.
2040         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for iswctype, too.
2041         * m4/regex.m4 (gl_PREREQ_REGEX): Likewise.
2042
2043 2006-12-03  Jim Meyering  <jim@meyering.net>
2044
2045         * lib/fts.c (fts_load): Don't set sp->fts_dev here, since
2046         p->fts_statp may not yet be defined.
2047         (fts_read): Instead, set it in the caller, once p->fts_statp is
2048         sure to be defined, and corresponds to a top-level directory.
2049         This bug made du -x fail.  Here's the coreutils test case:
2050         http://git.sv.gnu.org/gitweb/?p=coreutils.git;a=commit;h=ba45154d8e9f
2051         Reported by Mike Frysinger.
2052
2053 2006-12-01  Jim Meyering  <jim@meyering.net>
2054
2055         * modules/savewd (Depends-on): Add fcntl_h to avoid self-test
2056         build failure due to missing definition of HAVE_WORKING_O_NOFOLLOW.
2057         Reported by Simon Josefsson.
2058
2059 2006-11-30  Jim Meyering  <jim@meyering.net>
2060
2061         * m4/warning.m4: Use the all-permissive copyright notice
2062         recommended by RMS (rather than LGPL).
2063         * m4/vararrays.m4: Likewise.
2064         * m4/flexmember.m4: Likewise.
2065
2066 2006-11-29  Bruno Haible  <bruno@clisp.org>
2067
2068         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
2069         noinst_LIBRARIES. Augment noinst_LIBRARIES and noinst_LTLIBRARIES
2070         using +=.
2071         Reported by Simon Josefsson <simon@josefsson.org>.
2072
2073 2006-11-28  James Youngman <jay@gnu.org>
2074
2075         * README: Advise users that they might find the bug-gnulib@gnu.org
2076         and autotools-announce@gnu.org mailing lists useful.
2077
2078 2006-11-28  Bruno Haible  <bruno@clisp.org>
2079
2080         * m4/ptrdiff_max.m4: Remove file.
2081
2082 2006-11-21  Bruno Haible  <bruno@clisp.org>
2083
2084         * m4/eoverflow.m4 (gl_EOVERFLOW): Use AC_COMPUTE_INT instead of
2085         _AC_COMPUTE_INT.
2086         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
2087         * m4/ptrdiff_max.m4 (gl_PTRDIFF_MAX): Use AC_COMPUTE_INT instead of
2088         _AC_COMPUTE_INT.
2089         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
2090         * m4/size_max.m4 (gl_SIZE_MAX): Use AC_COMPUTE_INT instead of
2091         _AC_COMPUTE_INT.
2092         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
2093
2094 2006-11-28  Jim Meyering  <jim@meyering.net>
2095
2096         * lib/regcomp.c (parse_branch): Rename local, exp->expr, to avoid
2097         warning from "gcc -Wshadow" about shadowing the builtin.
2098
2099 2006-11-27  Bruno Haible  <bruno@clisp.org>
2100
2101         * m4/stdint.m4 (gl_STDINT_BITSIZEOF): Use AC_COMPUTE_INT instead of
2102         _AC_COMPUTE_INT.
2103         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
2104
2105 2006-11-27  Bruno Haible  <bruno@clisp.org>
2106             Paul Eggert  <eggert@cs.ucla.edu>
2107
2108         * lib/regex.h (__restrict_arr): Redo logic of #if, for clarity.
2109
2110 2006-11-26  Bruno Haible  <bruno@clisp.org>
2111
2112         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
2113         noinst_LTLIBRARIES.
2114
2115 2006-11-27  Paul Eggert  <eggert@cs.ucla.edu>
2116             Bruno Haible  <bruno@clisp.org>
2117
2118         * lib/gettext.h (_LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS): Define to 0
2119         if compiling with "gcc -ansi".
2120
2121 2006-11-26  Paul Eggert  <eggert@cs.ucla.edu>
2122
2123         Fix some incompatibilities with gcc -ansi -pedantic.
2124         * lib/regex.h (__restrict_arr): Don't use the [restrict] syntax
2125         if compiling pedantically with GCC, unless it's C99 or later.
2126         Don't trust sys/cdefs.h's definition of __restrict_arr, either, as
2127         it mishandles gcc -ansi -pedantic as well.
2128         * lib/regex_internal.h (re_token_t): Don't use enum bitfields
2129         if gcc -pedantic.
2130         * lib/regexec.c (check_node_accept_bytes): Don't use auto
2131         initializers for struct if -pedantic, unless it's C99 or later.
2132
2133 2006-11-25  Nix  <nix@esperi.org.uk>  (tiny change)
2134
2135         * m4/fcntl_h.m4 (gl_FCNTL_H): Test the atime, not the mtime.
2136         Don't close an fd more than once. Identical atimes indicate
2137         success, not failure.
2138
2139 2006-11-22  Robinson Mittmann <bob@hoplon.com>  (tiny change)
2140
2141         * lib/sincosl.c (kernel_sinl): Fix typo in threshold.
2142
2143 2006-11-23  Jim Meyering  <jim@meyering.net>
2144
2145         * build-aux/announce-gen: New file.  From coreutils.
2146
2147 2006-11-22  Jim Meyering  <jim@meyering.net>
2148
2149         Work around a compile-time error from the HP-UX 11.00 /bin/cc.
2150         * lib/fts.c (enum Fts_stat): Give this previously-anon enum a name.
2151         (fts_read): Use a temporary to narrow the overused st_size member
2152         before using it in a switch statement.  Reported by Matthew Woehlke.
2153
2154         * m4/clock_time.m4 (gl_CLOCK_TIME): Quote AC_SUBST argument.
2155         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Likewise.
2156
2157 2006-11-20  Bruno Haible  <bruno@clisp.org>
2158
2159         * gettext.m4 (AM_GNU_GETTEXT): Revert 2005-07-28 patch: Use
2160         changequote instead of pairs of brackets.
2161         Reported by Andreas Schwab <schwab@suse.de>.
2162
2163 2006-11-21  Jim Meyering  <jim@meyering.net>
2164
2165         * lib/fts.c (fts_safe_changedir): Move a declaration "up",
2166         so as to remain compatible with older compilers.
2167         Patch from Michael Deutschmann.
2168
2169 2006-11-20  Paul Eggert  <eggert@cs.ucla.edu>
2170
2171         * MODULES.html.sh (File system functions): Add openat.
2172
2173         * lib/openat.h (rpl_fstatat): New macro, if
2174         [HAVE_OPENAT && ! LSTAT_FOLLOWS_SLASHED_SYMLINK.
2175         (fstatat): Define to rpl_fstatat under the same conditions,
2176         unless COMPILING_FSTATAT.
2177         * m4/openat.m4 (gl_FUNC_OPENAT): Compile fstatat.c too, if fstatat
2178         seems to have the bug.
2179         * lib/fstatat.c: New file.
2180         * modules/openat (Files): Add it.
2181
2182 2006-11-20  Bruno Haible  <bruno@clisp.org>
2183
2184         * Makefile: New file.
2185
2186 2006-11-20  Jim Meyering  <jim@meyering.net>
2187
2188         The beginnings of syntax-related checks for gnulib.
2189         * lib/Makefile: New file.
2190         * lib/t-idcache: New script.  Ensure that the two halves of
2191         idcache.c stay in sync.
2192
2193         * lib/idcache.c: Adjust comments in user- and group- portions to
2194         be more accurate, and to be consistent with one another.
2195
2196 2006-11-20  Jim Meyering  <jim@meyering.net>
2197
2198         * lib/idcache.c: Restore most of the 2006-11-06 patch, so as to
2199         continue using the flexible array member (thus, this module performs
2200         half as many malloc calls), with the addition that...
2201         (getgroup, getuser): Consistently record a non-match via an empty
2202         "name" string, and map an empty string match to a NULL return value.
2203         * modules/idcache (Depends-on): Re-add flexmember.
2204
2205         * lib/idcache.c (getuser): Remove all uses of the register keyword.
2206         (getuidbyname, getgroup, getgidbyname): Likewise.
2207
2208         Use cleaner syntax: NULL rather than 0.
2209         * lib/idcache.c (getuidbyname, getgidbyname): Return NULL, not 0.
2210
2211 2006-11-20  Paul Eggert  <eggert@cs.ucla.edu>
2212
2213         * lib/idcache.c: Undo most recent patch, dated 2006-11-06.
2214         It mishandled the case where the group was missing.
2215         Problem reported by Greg Schafer.
2216         * modules/idcache: Likewise.
2217
2218 2006-11-18  Jim Meyering  <jim@meyering.net>
2219
2220         * check-module (%exempt_header): Add exception for some
2221         conditionally-included headers.
2222
2223         * modules/i-ring (Depends-on): Add verify.
2224         (License): Change to LGPL.
2225
2226 2006-11-16  Paul Eggert  <eggert@cs.ucla.edu>
2227
2228         * modules/getaddinfo (Depends-on): Remove inttostr; add snprintf.
2229         * lib/getaddrinfo.c: Include snprintf.h rather than intprops.h
2230         and inttostr.h.  Use snprintf rather than uinttostr, so that
2231         LGPLed code doesn't depend on GPLed.
2232
2233 2006-11-17  Paul Eggert  <eggert@cs.ucla.edu>
2234
2235         * modules/inline (License): Change from GPL to LGPL.
2236
2237 2006-11-17  Jim Meyering  <jim@meyering.net>
2238
2239         * modules/d-type (License): Switch to LGPL.
2240
2241 2006-11-15  Bruno Haible  <bruno@clisp.org>
2242
2243         * m4/alloca.m4 (gl_FUNC_ALLOCA): Fix the AC_CACHE_CHECK message.
2244
2245 2006-11-15  Eric Blake  <ebb9@byu.net>
2246
2247         * m4/allocsa.m4 (gl_ALLOCSA): Don't invoke macro already picked up by
2248         the module dependency.
2249
2250 2006-11-15  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
2251             Bruno Haible  <bruno@clisp.org>
2252
2253         * gnulib-tool (func_create_testdir): Add license consistency check.
2254
2255 2006-11-15  Eric Blake  <ebb9@byu.net>
2256
2257         * m4/alloca.m4 (gl_FUNC_ALLOCA): Use AC_CACHE_CHECK to avoid a
2258         random "(cached)" in configure output.
2259
2260 2006-11-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2261
2262         * m4/inttypes.m4 (gl_INTTYPES_H): Use AC_CACHE_CHECK so that the
2263         test for conforming inttypes.h is both announced and cached.
2264
2265         * MODULES.html.sh (seen_modules, seen_files): New variables.
2266         (func_module): Rewrite to use a few less gnulib-tool and sed
2267         invocations.  Avoid a couple of quadratic algorithms for ...
2268         (missed_modules, missed_files): ... these, with ...
2269         (func_append, func_tmpdir): ... these new functions, from
2270         gnulib-tool.  Analogously, install traps for cleanup.
2271
2272         * tests/test-gc.c (main): Remove unused variables.
2273         * tests/test-read-file.c: Include stdlib.h, for 'free'.
2274
2275 2006-11-14  Paul Eggert  <eggert@cs.ucla.edu>
2276
2277         * modules/inttostr (License): Change to LGPL.
2278
2279 2006-11-14  Eric Blake  <ebb9@byu.net>
2280
2281         * modules/tempname (License): Change to LGPL.
2282
2283 2006-11-14  Eric Blake  <ebb9@byu.net>
2284
2285         * doc/functions.texi (Function Portability): *printf functions on
2286         Cygwin now understand all POSIX size specifiers.
2287
2288 2006-11-14  Bruno Haible  <bruno@clisp.org>
2289
2290         * modules/c-ctype (License): Change to LGPL.
2291
2292 2006-11-12  Bruno Haible  <bruno@clisp.org>
2293
2294         * m4/lib-link.m4 (AC_LIB_LINKFLAGS, AC_LIB_HAVE_LINKFLAGS,
2295         AC_LIB_LINKFLAGS_BODY): Also set a LIB${NAME}_PREFIX variable. Needed
2296         for GNOME libraries, for which the include files are installed in
2297         subdirectories of $prefix/include.
2298
2299 2006-11-12  Bruno Haible  <bruno@clisp.org>
2300
2301         * m4/lib-link.m4: Require at least autoconf-2.54.
2302         (AC_LIB_LINKFLAGS_BODY) [autoconf < 2.61]: Turn dots into the library
2303         name to underscores for the --with option.
2304
2305 2006-11-13  Bruno Haible  <bruno@clisp.org>
2306
2307         * gnulib-tool (func_create_testdir): Set gl_source_base correctly in
2308         the tests directory.
2309         Reported by Ralf Wildenhues.
2310
2311 2006-11-13  Bruno Haible  <bruno@clisp.org>
2312
2313         * gnulib-tool (func_emit_initmacro_start): Also override AC_LIBSOURCES.
2314         (func_emit_initmacro_end): Undo the override here.
2315         (func_emit_initmacro_done): Emit a definition for gl_LIBSOURCES.
2316         Works around the famous automake error in coreutils.
2317
2318 2006-11-13  Eric Blake  <ebb9@byu.net>
2319
2320         * lib/gl_anytree_oset.h (gl_tree_search_atleast): Return the
2321         element, not its node.
2322
2323 2006-11-12  Bruno Haible  <bruno@clisp.org>
2324
2325         * gnulib-tool (func_emit_lib_Makefile_am): Replace occurrences of
2326         '$(top_srcdir)/build-aux/', taking into account the real auxdir.
2327
2328 2006-11-12  Bruno Haible  <bruno@clisp.org>
2329
2330         * gnulib-tool: New option --local-symlink.
2331         (func_usage): Document it.
2332         (lsymbolic): New variable.
2333         (func_import, func_create_testdir): If --symlink was not specified,
2334         test whether --local-symlink was specified and the file comes from
2335         the local_gnulib_dir.
2336
2337 2006-11-12  Bruno Haible  <bruno@clisp.org>
2338
2339         * gnulib-tool (func_ln): New function.
2340         (func_ln_if_changed, func_create_testdir): Use it instead of "ln -s".
2341
2342 2006-11-12  Bruno Haible  <bruno@clisp.org>
2343
2344         Finish support for source files in subdirectories.
2345         * gnulib-tool (func_emit_lib_Makefile_am): If some of the source files
2346         are in subdirectories, set uses_subdirs and add 'subdir-objects' to
2347         AUTOMAKE_OPTIONS.
2348         (func_import, func_create_testdir): Invoke AM_PROG_CC_C_O in this case.
2349
2350 2006-11-12  Bruno Haible  <bruno@clisp.org>
2351
2352         * gnulib-tool (func_get_automake_snippet): Synthesize also an
2353         EXTRA_lib_SOURCES augmentation.
2354         (func_emit_lib_Makefile_am): Initialize EXTRA_lib..._SOURCES to empty.
2355
2356 2006-11-12  Jim Meyering  <jim@meyering.net>
2357
2358         Make fts (in FTS_CWDFD mode) more efficient by caching a few open
2359         file descriptors.  This also averts a failure on systems with
2360         native openat support when a traversed directory lacks "x" access.
2361         * lib/fts_.h: Include "i-ring.h"
2362         (struct FTS) [fts_fd_ring]: New member.
2363         * lib/fts.c (RESTORE_INITIAL_CWD): Also call fd_ring_clear.
2364         (FCHDIR): Add parentheses.
2365         (fd_ring_check, fd_ring_print) [!FTS_DEBUG]: Define away.
2366         (cwd_advance_fd): Add a 3rd parameter.  Adjust all callers.
2367         When descending, rather than simply closing the previous
2368         fts_cwd_fd value, push that file descriptor onto the ring.
2369         (same_fd, fd_ring_print, fd_ring_check) [FTS_DEBUG]: New functions.
2370         (fts_open): Initialize the new fd_ring member.
2371         (fts_close): Clear the ring.
2372         (fts_safe_changedir): When possible, use our new fd_ring to skip
2373         the diropen and fstat and dev/ino comparison that would normally
2374         accompany a virtual `chdir ("..")'.
2375
2376         * modules/fts (Depends-on): Add i-ring.
2377         * modules/i-ring: New module.
2378         * lib/i-ring.c, lib/i-ring.h, lib/i-ring-test.c: New files.
2379         * m4/i-ring.m4: New file.
2380
2381 2006-11-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2382
2383         * gnulib-tool (func_create_testdir): Fix replacement of
2384         `build-aux' in configure.ac.  Run autotools in gltests
2385         subdirectory.
2386         (func_create_testdir, func_create_megatestdir, test): There is
2387         no need for '--force' in most autotool invocations in a new
2388         tree.  Actually fail the whole test if any of the tools, or the
2389         configure or make stages fail.
2390
2391         Sync from Automake.
2392         * build-aux/gnupload: Revert last change.  Add pointer to upload
2393         instructions of the GNU Maintenance Instructions.
2394         Suggestion by Karl Berry.
2395
2396 2006-11-10  Jim Meyering  <jim@meyering.net>
2397
2398         * lib/fts.c [FTS_DEBUG]: Don't try to print a pointer via %s.
2399
2400 2006-11-09  Paul Eggert  <eggert@cs.ucla.edu>
2401
2402         * lib/gettext.h (dgettext, dcgettext, ngettext) [! ENABLE_NLS]:
2403         (dngettext, dcngettext, bindtextdomain) [! ENABLE_NLS]:
2404         (bind_textdomain_codeset) [! ENABLE_NLS]:
2405         Evaluate all the arguments.  That way, callers get compatible behavior
2406         if the arguments have side effects.  Also, it avoids some GCC
2407         diagnostics in some cases; Joel E. Denny reported problems when Bison
2408         was configured with --enable-gcc-warnigs.
2409
2410 2006-11-10  Jim Meyering  <jim@meyering.net>
2411
2412         * m4/inline.m4 (gl_INLINE): Check with the compiler, not cpp, so that
2413         relevant options in CFLAGS (like -O, -fno-inline) are taken into
2414         account.
2415
2416 2006-11-10  Jim Meyering  <jim@meyering.net>
2417
2418         * modules/inline: New file/module.
2419         * modules/xalloc (Files): Remove m4/inline.m4.
2420         (Depends-on): Add inline, instead.
2421         * modules/oset: Likewise.
2422         * modules/list: Likewise.
2423
2424 2006-11-09  Paul Eggert  <eggert@cs.ucla.edu>
2425
2426         * lib/stdint_.h (uintmax_t): Fix typo: int64_t -> uint64_t.
2427         Problem reported by Matthew Woehlke.
2428
2429 2006-11-09  Bruno Haible  <bruno@clisp.org>
2430
2431         * lib/tempname.c (gen_tempname): Remove variant that invokes
2432         __gen_tempname.
2433         * m4/tempname.m4 (gl_FUNC_GEN_TEMPNAME): Don't test for
2434         __gen_tempname.
2435
2436 2006-11-08  Bruno Haible  <bruno@clisp.org>
2437
2438         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Set ac_cv_type_long_long_int
2439         to 'yes' instead of 'cross-compiling'.
2440
2441 2006-11-08  Paul Eggert  <eggert@cs.ucla.edu>
2442
2443         * lib/quotearg.h (quotearg_free): New decl.
2444         * lib/quotearg.c (quotearg_free): New function.
2445         (slot0, nslots, slotvec0, slotvec):
2446         Now file-scope so that quotearg_free can get at them.
2447
2448 2006-11-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2449
2450         Sync from Automake.
2451         * build-aux/gnupload: Add missing 'gnu' to example URL.
2452         Report by Karl Berry.
2453
2454 2006-11-08  Bruno Haible  <bruno@clisp.org>
2455
2456         * m4/inline.m4 (gl_INLINE): Also test __NO_INLINE__.
2457         Suggested by Paul Eggert.
2458
2459 2006-11-08  Jim Meyering  <jim@meyering.net>
2460
2461         * lib/fts.c [!_LGPL_PACKAGE]: Don't include fcntl--.h twice.
2462         It's already included if !_LIBC.
2463         (fts_safe_changedir): Add a comment.
2464
2465 2006-11-07  Paul Eggert  <eggert@cs.ucla.edu>
2466
2467         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Detect bug in
2468         Tandem NonStop Kernel (OSS) cc -O circa 2004, reported by
2469         Matthew Woehlke.
2470
2471         * lib/xalloc.h (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): Move
2472         definitions up, to avoid colliding with change below.
2473         (static_inline) [HAVE_INLINE]: New macro.
2474         (xnmalloc, xnrealloc, x2nrealloc, xcharalloc):
2475         Provide extern decls when !HAVE_INLINE.  Do not define unless
2476         static_inline is defined, either by us or by xmalloc.c.  Use
2477         static_inline rather than static inline.
2478         (XCALLOC): Optimize sizeof(T) = 1 case.
2479         * lib/xmalloc.c (static_inline) [!HAVE_INLINE]: New macro.
2480
2481 2006-11-07  Bruno Haible  <bruno@clisp.org>
2482
2483         * lib/xalloc.h (XNMALLOC): Restore optimization of sizeof(T) = 1 case.
2484         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Require gl_INLINE instead of
2485         AC_C_INLINE.
2486         * modules/xalloc (Files): Add m4/inline.m4.
2487
2488 2006-11-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2489
2490         * README: Fix typo.
2491         * doc/gnulib.texi (Miscellaneous Notes): Likewise, rename...
2492         (Miscellanous Notes): ...from this.
2493
2494 2006-11-07  Paul Eggert  <eggert@cs.ucla.edu>
2495
2496         * m4/flexmember.m4 (AC_C_FLEXIBLE_ARRAY_MEMBER):
2497         Mention that offsetof should be used instead of sizeof.
2498         From Bruno Haible.
2499
2500 2006-11-07  Bruno Haible  <bruno@clisp.org>
2501
2502         * lib/w32spawn.h (prepare_spawn): Use XNMALLOC instead of xmalloc.
2503
2504 2006-11-06  Paul Eggert  <eggert@cs.ucla.edu>
2505
2506         Simplify xmalloc expressions. Add overflow check in xmalloc arguments.
2507         * lib/gl_anyavltree_list2.h (create_subtree_with_contents):
2508         (gl_tree_create, gl_tree_add_first, gl_tree_add_last):
2509         (gl_tree_add_before, gl_tree_add_after):
2510         Use XMALLOC instead of xmalloc, and XCALLOC instead of xzalloc.
2511         * lib/gl_anyhash_list2.h (hash_resize): Likewise.
2512         * lib/gl_anylinked_list2.h (gl_linked_create_empty, gl_linked_create):
2513         (gl_linked_add_first, gl_linked_add_last, gl_linked_add_before):
2514         (gl_linked_add_after, gl_linked_add_at): Likewise.
2515         * lib/gl_anyrbtree_list2.h (create_subtree_with_contents):
2516         (gl_tree_create, gl_tree_add_first, gl_tree_add_last):
2517         (gl_tree_add_before, gl_tree_add_after): Likewise.
2518         * lib/gl_anytree_list2.h (gl_tree_create_empty): Likewise.
2519         * lib/gl_anytree_oset.h (gl_tree_create_empty): Likewise.
2520         * lib/gl_anytreehash_list1.h (add_to_bucket): Likewise.
2521
2522 2006-11-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2523
2524         * lib/gl_oset.h: Use C comment style, not C++ comment style.
2525
2526 2006-11-06  Bruno Haible  <bruno@clisp.org>
2527
2528         * m4/inline.m4: New file.
2529         * m4/gl_list.m4 (gl_LIST): Require gl_INLINE.
2530         * modules/list (Files): Add m4/inline.m4.
2531         * modules/oset (Files): Likewise.
2532
2533 2006-11-06  Paul Eggert  <eggert@cs.ucla.edu>
2534
2535         * lib/idcache.c: Include <stddef.h>, for offsetof.
2536         (struct userid.name): Change from char * to a flexible array member.
2537         All uses changed.
2538         * modules/idcache (Depends-on): Add flexmember.
2539
2540         * MODULES.html.sh (Core language properties): New module flexmember.
2541         * modules/flexmember, m4/flexmember.m4: New files.
2542
2543         * lib/xalloc.h (xnmalloc, xnrealloc, x2nrealloc): Now static
2544         inline functions that are identical with the old xnmalloc_inline,
2545         xnrealloc_inline, x2nrealloc_inline of lib/xmalloc.c.  This is so
2546         that we can avoid some unnecessary integer multiplications and
2547         divisions in the common case where the element size is known at
2548         compile time.
2549         (XNMALLOC) [HAVE_INLINE]: Remove special case, which is no longer
2550         needed.
2551         (xnboundedmalloc): Remove.
2552         (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): Use lower-case letters for
2553         arguments, for consistency with rest of this header.
2554         (xcharalloc): Rewrite using XNMALLOC.
2555         * lib/xmalloc.c (xnmalloc_inline, xnmalloc, xnrealloc_inline):
2556         (xnrealloc, x2nrealloc_inline, x2nrealloc): Remove.  The *_inline
2557         versions have been moved to lib/xalloc.h and renamed to be the
2558         non-*_inline versions.
2559         (xmalloc, xrealloc): Implement without reference to the xnmalloc
2560         and xnrealloc functions, since those functions are now inline and
2561         now call us.
2562         (x2realloc): Invoke x2realloc, not x2realloc_inline, to accommodate
2563         renaming described above.
2564         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Remove AC_C_INLINE since
2565         xmalloc.c no longer uses inline directly.  gl_PREREQ_XALLOC now
2566         captures the dependency in AC_C_INLINE.
2567
2568         New module canonicalize-lgpl, proposed by Charles Wilson in
2569         <http://lists.gnu.org/archive/html/bug-gnulib/2006-11/msg00020.html>
2570         with a few small changes afterwards.
2571         * MODULES.html.sh (File system functions): New module
2572         canonicalize-lgpl.
2573         * lib/canonicalize.h: Add comments for canonicalize_filename_mode
2574         and canonicalize_file_name.
2575         * lib/canonicalize-lgpl.c, m4/canonicalize-lgpl.m4:
2576         * modules/canonicalize-lgpl: New files.
2577
2578 2006-11-05  Bruno Haible  <bruno@clisp.org>
2579
2580         * gnulib-tool (func_import, func_create_testdir): Create directories
2581         also for files in subdirectories of lib/.
2582
2583 2006-11-05  Bruno Haible  <bruno@clisp.org>
2584
2585         * lib/gl_array_list.c (gl_array_iterator_next): Make pointer decrement
2586         ANSI C compliant.
2587
2588 2006-11-03  Bruno Haible  <bruno@clisp.org>
2589
2590         Simplify xmalloc expressions. Add overflow check in xmalloc arguments.
2591         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Require AC_C_INLINE.
2592         * lib/xalloc.h (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): New macros.
2593         (xnboundedmalloc): New inline function.
2594         * lib/classpath.c (new_classpath): Use XNMALLOC instead of xmalloc.
2595         * lib/clean-temp.c (create_temp_dir): Use XNMALLOC, XMALLOC instead of
2596         xmalloc.
2597         * lib/concatpath.c (concatenated_pathname): Use XNMALLOC instead of
2598         xmalloc.
2599         * lib/fatal-signal.c (at_fatal_signal): Use XNMALLOC instead of xmalloc.
2600         * lib/findprog.c (find_in_path): Use XNMALLOC instead of xmalloc.
2601         * lib/gl_array_list.c (gl_array_create_empty): Use XMALLOC instead of
2602         xmalloc.
2603         (gl_array_create): Use XNMALLOC, XMALLOC instead of xmalloc.
2604         * lib/gl_array_oset.c (gl_array_create_empty): Use XNMALLOC instead of
2605         xmalloc.
2606         * lib/gl_avltree_oset.c (gl_tree_add_first, gl_tree_add_before,
2607         gl_tree_add_after): Use XMALLOC instead of xmalloc.
2608         * lib/gl_carray_list.c (gl_carray_create_empty): Use XMALLOC instead of
2609         xmalloc.
2610         (gl_carray_create): Use XNMALLOC, XMALLOC instead of xmalloc.
2611         * lib/gl_rbtree_oset.c (gl_tree_add_first, gl_tree_add_before,
2612         gl_tree_add_after): Use XMALLOC instead of xmalloc.
2613         * lib/gl_sublist.c (gl_sublist_create): Use XMALLOC instead of xmalloc.
2614         * lib/pagealign_alloc.c (new_memnode): Use XMALLOC instead of xmalloc.
2615         * lib/sh-quote.c (shell_quote_argv): Use XNMALLOC instead of xmalloc.
2616         * lib/xvasprintf.c (xstrcat): Use XNMALLOC instead of xmalloc.
2617
2618 2006-11-03  Bruno Haible  <bruno@clisp.org>
2619
2620         * lib/c-ctype.h [C++]: Define functions without name mangling.
2621         * lib/fwriteerror.h [C++]: Likewise.
2622         * lib/gcd.h [C++]: Likewise.
2623         * lib/linebreak.h [C++]: Likewise.
2624
2625 2006-11-03  Paul Eggert  <eggert@cs.ucla.edu>
2626
2627         * lib/canonicalize.h: (canonicalize_mode_t, CAN_EXISTING):
2628         (CAN_ALL_BUT_LAST, CAN_MISSING, canonicalize_filename_mode):
2629         Define only if PROVIDE_CANONICALIZE_FILENAME_MODE is defined.
2630         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME):
2631         Check for functions and headers just once.
2632         Check for declaration of canonicalize_file_name.
2633         Define PROVIDE_CANONICALIZE_FILENAME_MODE.
2634
2635 2006-11-02  Charles Wilson  <cygwin@cwilson.fastmail.fm>
2636
2637         * gnulib-tool (func_import): Fix typo in actioncmd.
2638
2639 2006-11-02  Bruno Haible  <bruno@clisp.org>
2640
2641         * gnulib-tool (func_get_automake_snippet): Interpret a backslash-
2642         newline sequence in the Makefile.am snippet as a space, like "make"
2643         does.
2644         Reported by Roger Persson <perrog@gmail.com>.
2645
2646 2006-11-01  Bruno Haible  <bruno@clisp.org>
2647
2648         * m4/strcase.m4 (gl_FUNC_STRNCASECMP): Check whether strncasecmp is
2649         already declared in <string.h>.
2650         * lib/strcase.h (strncasecmp): Don't declare it if yes.
2651
2652 2006-11-01  Bruno Haible  <bruno@clisp.org>
2653
2654         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Don't define strcasecmp here.
2655         * lib/strcase.h: Include <string.h>.
2656         (strcasecmp): Define to rpl_strcasecmp here.
2657
2658 2006-11-01  Bruno Haible  <bruno@clisp.org>
2659
2660         * lib/printf-parse.c (PRINTF_PARSE): Cast malloc/realloc results.
2661
2662 2006-11-01  Eric Blake  <ebb9@byu.net>
2663
2664         * lib/mkstemp-safer.c (mkstemp_safer): Allow C++ compilation.
2665
2666         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Allow C++ configuration.
2667
2668 2006-10-29  Bruno Haible  <bruno@clisp.org>
2669
2670         Make it compile in C++ mode.
2671         * lib/full-write.c (full_rw): Add a cast.
2672
2673 2006-11-01  Bruno Haible  <bruno@clisp.org>
2674
2675         * gnulib-tool (func_get_automake_snippet): Change sed_combine_lines to
2676         be POSIX compliant.
2677         Reported by Roger Persson <perrog@gmail.com>.
2678
2679 2006-11-01  Eric Blake  <ebb9@byu.net>
2680
2681         * lib/getopt_.h: Fix comments.
2682
2683 2006-10-31  Eric Blake  <ebb9@byu.net>
2684
2685         * modules/tmpdir (Depends-on): Add sys_stat.
2686         * modules/mkdtemp (Depends-on): Add tempname, drop unistd.
2687         * lib/mkdtemp.c (gen_tempname): Remove; tempname covers this.
2688         * lib/tmpdir.c (S_ISDIR): Simplify, thanks to sys_stat.
2689         * m4/mkdtemp.m4 (gl_PREREQ_MKDTEMP): Simplify, thanks to
2690         tempname.
2691
2692 2006-10-31  Paul Eggert  <eggert@cs.ucla.edu>
2693
2694         Avoid some C++ diagnostics reported by Bruno Haible.
2695         * lib/quotearg.c (clone_quoting_options): Use xmemdup rather than
2696         xmalloc.
2697         (quotearg_alloc): Use xcharalloc rather than xmalloc.
2698         (struct slotvec): Move to top level.
2699         (quotearg_n_options): Rewrite to avoid xmalloc.
2700         * lib/xalloc.h (xcharalloc): New function.
2701         * (xrealloc, xnrealloc, x2realloc, x2nrealloc, xmemdup):
2702         [defined __cplusplus]: Add function template that provides result
2703         type propagation.  This part of the change is from Bruno Haible.
2704
2705 2006-10-29  Bruno Haible  <bruno@clisp.org>
2706
2707         Make it compile in C++ mode.
2708         * lib/striconv.c (mem_cd_iconv): Cast malloc/realloc result.
2709         * lib/strnlen1.c (strnlen1): Cast memchr result.
2710         * lib/mbchar.h (mb_copy): Rename arguments to 'new_mbc', 'old_mbc'.
2711         * lib/clean-temp.c (string_equals, string_hash): Add casts.
2712         (create_temp_dir): Rename local variable 'template'.
2713         (compile_csharp_using_sscli): Add cast.
2714         * lib/fatal-signal.c (at_fatal_signal): Cast xmalloc result.
2715         * lib/findprog.c (find_in_path): Likewise.
2716         * lib/linebreak.c (mbs_width_linebreaks): Cast malloc result.
2717         * lib/wait-process.c (register_slave_subprocess): Likewise.
2718
2719 2006-10-22  Bruno Haible  <bruno@clisp.org>
2720
2721         * modules/tsearch: New file.
2722         * lib/tsearch.h: New file.
2723         * lib/tsearch.c: New file, from glibc-2.5 with small modifications.
2724         * m4/tsearch.m4: New file.
2725         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add tsearch.
2726
2727 2006-10-29  Eric Blake  <ebb9@byu.net>
2728
2729         * lib/arcfour.c: Assume config.h.
2730         * lib/arctwo.c: Likewise.
2731         * lib/base64.c: Likewise.
2732         * lib/check-version.c: Likewise.
2733         * lib/crc.c: Likewise.
2734         * lib/des.c: Likewise.
2735         * lib/gc-gnulib.c: Likewise.
2736         * lib/gc-libgcrypt.c: Likewise.
2737         * lib/gc-pbkdf2-sha1.c: Likewise.
2738         * lib/getaddrinfo.c: Likewise.
2739         * lib/getdelim.c: Likewise.
2740         * lib/getline.c: Likewise.
2741         * lib/hmac-md5.c: Likewise.
2742         * lib/hmac-sha1.c: Likewise.
2743         * lib/iconvme.c: Likewise.
2744         * lib/md2.c: Likewise.
2745         * lib/md4.c: Likewise.
2746         * lib/memxor.c: Likewise.
2747         * lib/read-file.c: Likewise.
2748         * lib/readline.c: Likewise.
2749         * lib/rijndael-alg-fst.c: Likewise.
2750         * lib/rijndael-api-fst.c: Likewise.
2751         * lib/xgetdomainname.c: Likewise.
2752
2753 2006-10-28  Eric Blake  <ebb9@byu.net>
2754
2755         * lib/xstrndup.c: Assume config.h.
2756
2757 2006-10-27  Paul Eggert  <eggert@cs.ucla.edu>
2758
2759         Move stat.h-substitute stuff from lib/stat-macros.h to lib/stat_.h.
2760         stat-macros.h is now for our own macros, whereas stat_h is for
2761         macros in the <sys/stat.h> name space.
2762         * lib/stat-macros.h: Remove copyright notice, as this file is now tiny.
2763         (STAT_MACROS_H): Remove.
2764         (S_IFMT, S_ISBLK, S_ISCHR, S_ISDIR, S_ISFIFO, S_ISLNK, S_ISNAM):
2765         (S_ISMPB, S_ISMPC, S_ISNWK, S_ISREG, S_ISSOCK, S_ISDOOR, S_ISPORT):
2766         (S_TYPEISMQ, S_TYPEISTMO, S_TYPEISSEM, S_TYPEISSHM, S_ISCTG, S_ISOFD):
2767         (S_ISOFL, S_ISWHT, S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IRGRP):
2768         (S_IROTH, S_IWUSR, S_IWGRP, S_IWOTH, S_IXUSR, S_IXGRP, S_IXOTH):
2769         (S_IRWXU, S_IRWXG, S_IRWXO, S_IXUGO, S_IRWXUGO):
2770         Move these macros to ...
2771         * lib/stat_.h: here.  Don't include stat-macros.h.
2772         * lib/canonicalize.c: Don't include stat-macros.h.
2773         * lib/chown.c: Likewise.
2774         * lib/euidaccess.c: Likewise.
2775         * lib/file-type.c: Likewise.
2776         * lib/filemode.c: Likewise.
2777         * lib/glob.c: Likewise.
2778         * lib/isapipe.c: Likewise.
2779         * lib/lchown.c: Likewise.
2780         * lib/lstat.c: Likewise.
2781         * lib/mkdir-p.c: Likewise.
2782         * lib/rmdir.c: Likewise.
2783         * m4/lchown.m4 (gl_FUNC_LCHOWN): Don't require gl_STAT_MACROS.
2784         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Don't check for io.h
2785         unless mkdir isn't declared, to speed up 'configure'.
2786         Always create sys/stat.h, since it's unlikely any real sys/stat.h
2787         would define all the S_* symbols.
2788         * modules/canonicalize (Depends-on):
2789         Depend on sys_stat, not stat-macros.
2790         * modules/chown: Likewise.
2791         * modules/euidaccess: Likewise.
2792         * modules/filemode: Likewise.
2793         * modules/file-type: Likewise.
2794         * modules/glob: Likewise.
2795         * modules/isapipe: Likewise.
2796         * modules/lchown: Likewise.
2797         * modules/lstat: Likewise.
2798         * modules/mkancesdirs: Likewise.
2799         * modules/rmdir: Likewise.
2800         * modules/mkdir-p (Depends-on): Also depend on sys_stat.
2801         * modules/modechange: Likewise.
2802         * modules/stat-macros (Files): Remove m4/stat-macros.m4.
2803         (configure.ac): Remove gl_STAT_MACROS.
2804         * modules/sys_stat (Depends-on): Remove stat-macros.
2805
2806 2006-10-27  Bruno Haible  <bruno@clisp.org>
2807
2808         * m4/signed.m4: Remove file.
2809         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_ARGS_: Remove bh_C_SIGNED
2810         invocation.
2811         * modules/vasnprintf (Files): Remove m4/signed.m4.
2812
2813 2006-10-27  Bruno Haible  <bruno@clisp.org>
2814
2815         Update to GNU gettext 0.16.
2816         * modules/gettext (Files): Add m4/intl.m4, m4/intldir.m4. Remove
2817         m4/inttypes-h.m4, m4/signed.m4.
2818         * m4/gettext.m4: Update to GNU gettext 0.16.
2819         * m4/intl.m4: New file, from GNU gettext.
2820         * m4/intldir.m4: New file, from GNU gettext.
2821         * config/srclist.txt: Update
2822
2823 2006-10-27  Eric Blake  <ebb9@byu.net>
2824
2825         * MODULES.html.sh: Document tempname.
2826         * modules/mkstemp (Depends-on): Add tempname, and drop transitive
2827         dependencies.
2828         (Files): Move lib/tempname.c...
2829         * modules/tempname: ...to this new module.
2830         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Remove tempname checks.
2831         (gl_PREREQ_TEMPNAME): Move...
2832         * m4/tempname.m4: ...to this new file.
2833         * lib/mkstemp.c (includes) [!_LIBC]: Use tempname.h.
2834         * modules/sys_stat (Depends-on): Add stat-macros.
2835         * lib/stat_.h (includes): Pick up stat macros.
2836         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Replace <sys/stat.h>
2837         if stat macros are broken.
2838         * lib/tempname.c (includes): No need to include "stat-macros.h".
2839         (__gen_tempname) [!_LIBC]: Expose as gen_tempname.
2840         (direxists, __path_search) [!_LIBC]: Don't compile these in
2841         gnulib; the tmpdir module covers that.
2842         * lib/tempname.h: New file.
2843
2844 2006-10-26  Paul Eggert  <eggert@cs.ucla.edu>
2845
2846         * COPYING: Explain how gnulib-tool converts licence headers.
2847         Almost all wording by Eric Blake.
2848
2849 2006-10-25  Paul Eggert  <eggert@cs.ucla.edu>
2850
2851         * lib/mbchar.h (is_basic_table): Make read-only.
2852         * lib/mbchar.c (is_basic_table): Likewise.
2853         Reported by John Darrington.
2854
2855 2006-10-25  Bruno Haible  <bruno@clisp.org>
2856
2857         * lib/progname.h (set_program_name): Undefine before defining.
2858
2859 2006-10-25  Bruno Haible  <bruno@clisp.org>
2860
2861         * lib/gettext.h (_LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS): Define to
2862         false for non-gcc C++ compilers.
2863         Reported by Nelson H. F. Beebe <beebe@math.utah.edu>.
2864
2865 2006-10-24  Bruno Haible  <bruno@clisp.org>
2866
2867         * lib/striconv.c (mem_cd_iconv, str_cd_iconv): Treat all non-GNU
2868         iconv implementations like Irix iconv.
2869
2870 2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
2871
2872         * modules/vararrays: New file.
2873         * m4/vararrays.m4: New file, taken from diffutils.
2874         * MODULES.html.sh: New module vararrays.
2875
2876 2006-10-24  Karl Berry  <karl@gnu.org>
2877
2878         * doc/gnulib-intro.texi: --- instead of --; non-naive naive.
2879         Don't call GNU Unix.
2880
2881 2006-10-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2882
2883         * users.txt: Add Libtool.
2884
2885         Sync from Libtool:
2886
2887         2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
2888
2889         * lib/argz.c: Remove check for HAVE_CONFIG_H, to conform
2890         to gnulib's policy of including config.h unconditionally.
2891
2892 2006-10-24  Bruno Haible  <bruno@clisp.org>
2893
2894         * modules/wcwidth (Files): Add m4/wint_t.m4.
2895         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Require gt_TYPE_WINT_T.
2896         * lib/wcwidth.h (iswprint): Use 'int' if 'wint_t' is not defined.
2897
2898 2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
2899
2900         * lib/getdate.y (yyerror): Make the arguments pointer-to-const,
2901         to pacify GCC with some -W flags enabled.  Problem reported by
2902         Bruno Haible.
2903
2904 2006-10-24  Jim Meyering  <jim@meyering.net>
2905
2906         * MODULES.html.sh: Remove uinttostr.  It's not a module.
2907         Reported by Karl Berry.
2908
2909 2006-10-23  Bruno Haible  <bruno@clisp.org>
2910
2911         * lib/fts.c (fts_build): Move variable declaration, for C89 compliance.
2912
2913 2006-10-24  Bruno Haible  <bruno@clisp.org>
2914
2915         * lib/gl_list.h: Use C comment style, not C++ comment style.
2916
2917 2006-10-23  Eric Blake  <ebb9@byu.net>
2918
2919         * lib/getaddrinfo.c (includes): Add missing include.
2920
2921 2006-10-23  Bruno Haible  <bruno@clisp.org>
2922             Paul Eggert  <eggert@cs.ucla.edu>
2923
2924         Ability to rename obstack_free.
2925         * lib/obstack.h (__obstack_free): New macro. Declare instead of
2926         obstack_free.
2927         (obstack_free): Invoke the __obstack_free macro.
2928         * lib/obstack.c (obstack_free): Use __obstack_free macro.
2929
2930 2006-10-23  Bruno Haible  <bruno@clisp.org>
2931             Paul Eggert  <eggert@cs.ucla.edu>
2932
2933         * lib/argp.h (argp_parse, __argp_parse): Comment out the identifiers
2934         __argc, __argv from the declaration. (They are defined as macros on
2935         mingw.)
2936
2937 2006-10-22  Bruno Haible  <bruno@clisp.org>
2938
2939         * doc/gnulib-intro.texi: New file.
2940         * doc/gnulib.texi: Include it.
2941
2942 2006-10-21  Bruno Haible  <bruno@clisp.org>
2943
2944         * doc/gnulib.texi: Split the chapter "Gnulib" into 3 chapters
2945         "Introduction", "Miscellanous Notes", "Particular Modules".
2946
2947 2006-10-21  Bruno Haible  <bruno@clisp.org>
2948
2949         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
2950         Change mostlyclean-local rule to avoid sh syntax error from bash
2951         versions 2.00..2.05 when $(MOSTLYCLEANDIRS) is empty.
2952
2953 2006-10-23  Jim Meyering  <jim@meyering.net>
2954
2955         * lib/getaddrinfo.c (getnameinfo): Use new lightweight uinttostr,
2956         in place of snprintf.
2957
2958         * modules/inttostr (Files): Add lib/uinttostr.c.
2959         * lib/uinttostr.c (inttostr): New file/function.
2960         * lib/inttostr.h (uinttostr): Declare.
2961         * m4/inttostr.m4: Add AC_LIBOBJ([uinttostr]).
2962         * MODULES.html.sh (Numeric conversion functions <stdlib.h>):
2963         Add uinttostr.
2964         * modules/getaddrinfo (Depends-on): Remove snprintf.  Add inttostr.
2965
2966 2006-10-21  Paul Eggert  <eggert@cs.ucla.edu>
2967
2968         * lib/canonicalize.c (ELOOP): Define if not already defined.
2969         Problem reported by Bruno Haible in
2970         <http://lists.gnu.org/archive/html/bug-gnulib/2006-10/msg00282.html>.
2971
2972 2006-10-21  Paul Eggert  <eggert@cs.ucla.edu>
2973
2974         * lib/stdint_.h [defined _AIX]: Don't include <sys/types.h>.
2975         Problem reported by Perry Smith and Ville Laurikari.
2976
2977         * lib/getndelim2.c (SSIZE_MAX): Use same defn that getdelim.c
2978         uses.
2979
2980 2006-10-19  Bruno Haible  <bruno@clisp.org>
2981
2982         * lib/getndelim2.c (SSIZE_MAX): Provide fallback definition. Needed
2983         for mingw.
2984
2985 2006-10-19  Bruno Haible  <bruno@clisp.org>
2986
2987         * lib/openat-priv.h (EOPNOTSUPP): Provide fallback definition.
2988         Needed for mingw.
2989
2990 2006-10-19  Bruno Haible  <bruno@clisp.org>
2991
2992         * m4/size_max.m4 (gl_SIZE_MAX): Cache the result.
2993
2994 2006-10-19  Bruno Haible  <bruno@clisp.org>
2995
2996         * m4/allocsa.m4 (gl_ALLOCSA): Invoke gl_FUNC_ALLOCA, don't AC_REQUIRE
2997         it.
2998
2999 2006-10-19  Bruno Haible  <bruno@clisp.org>
3000
3001         * m4/alloca.m4 (gl_FUNC_ALLOCA): Cache the result of the AC_EGREP_CPP
3002         invocation.
3003
3004 2006-10-19  Bruno Haible  <bruno@clisp.org>
3005
3006         * gnulib-tool (func_create_testdir): Don't include ftruncate and
3007         mountlist by default.
3008
3009 2006-10-16  Bruno Haible  <bruno@clisp.org>
3010
3011         * lib/c-strstr.c: Include c-strstr.h.
3012
3013 2006-10-18  Charles Wilson  <cygwin@cwilson.fastmail.fm>
3014
3015         * gnulib-tool: Don't clobber $sourcebase when $local_gnulib_dir ends
3016         in a slash.
3017
3018 2006-10-18  Bruno Haible  <bruno@clisp.org>
3019
3020         * lib/lock.h [C++]: Wrap definitions in extern "C".
3021
3022 2006-10-18  Bruno Haible  <bruno@clisp.org>
3023
3024         * gnulib-tool (func_emit_initmacro_end): Remove duplicates from the
3025         gl_LIBOBJS list.
3026
3027 2006-10-18  Bruno Haible  <bruno@clisp.org>
3028
3029         * lib/findprog.c (find_in_path): Avoid "gcc -Wwrite-strings" warning.
3030
3031 2006-10-19  Paul Eggert  <eggert@cs.ucla.edu>
3032
3033         * lib/xstrtol.h: Include gettext.h.
3034         (_STRTOL_ERROR): Wrap English-language formats inside gettext.
3035         Problem reported by Eric Blake.
3036         * modules/xstrtol (Depends-on): Add gettext-h.
3037
3038 2006-10-19  Paul Eggert  <eggert@cs.ucla.edu>  (tiny change)
3039
3040         * lib/strftime.c (advance): New macro.
3041         (add): Use it to avoid adding 0 to a FILE *.  FILE can be an
3042         incomplete type, so you can't add 0 to it.  Problem and patch
3043         reported by Eelco Dolstra for dietlibc.
3044
3045 2006-10-18  Jim Meyering  <jim@meyering.net>
3046
3047         * lib/readutmp.c (desirable_utmp_entry): Use "bool" as the
3048         type for a local, and rename it: s/up/user_proc/.
3049
3050 2006-10-18  Sergey Poznyakoff  <gray@gnu.org.ua>
3051
3052         * lib/readutmp.c (desirable_utmp_entry): Implement new flag:
3053         READ_UTMP_USER_PROCESS.
3054         * lib/readutmp.h (READ_UTMP_USER_PROCESS): New flag
3055
3056 2006-10-17  Paul Eggert  <eggert@cs.ucla.edu>
3057
3058         * lib/localcharset.c: Do not check HAVE_SETLOCALE.
3059         * m4/localcharset.m4 (gl_LOCALCHARSET): Don't check for setlocale.
3060
3061 2006-10-17  Eric Blake  <ebb9@byu.net>
3062
3063         * lib/sigprocmask.c (sigprocmask): Fix typo.
3064
3065         * m4/signalblocking.m4 (gl_PREREQ_SIGPROCMASK): Fix typo.
3066
3067         * modules/clean-temp (Makefile.am): Don't add to make output...
3068         (configure.ac): ...instead define SIGNAL_SAFE_LIST inside
3069         config.h.
3070
3071 2006-10-17  Bruno Haible  <bruno@clisp.org>
3072
3073         * lib/gettext.h (gettext, ngettext, pgettext, npgettext): Define
3074         differently if DEFAULT_TEXT_DOMAIN is set.
3075
3076 2006-10-16  Bruno Haible  <bruno@clisp.org>
3077
3078         * lib/clean-temp.c: Include fwriteerror.h.
3079
3080 2006-10-16  Bruno Haible  <bruno@clisp.org>
3081
3082         * getndelim2.m4 (gl_GETNDELIM2): Remove 2003-10-23 hack.
3083
3084 2006-10-16  Bruno Haible  <bruno@clisp.org>
3085
3086         * m4/signalblocking.m4 (gl_PREREQ_SIGPROCMASK): Also test for sigset_t.
3087         * lib/sigprocmask.h: Include <sys/types.h>.
3088         (sigset_t): Use the system's definition if present.
3089
3090 2006-10-17  Eric Blake  <ebb9@byu.net>
3091
3092         * lib/xvasprintf.c (includes): Assume config.h.
3093         * lib/xasprintf.c (includes): Likewise.
3094
3095 2006-10-16  Paul Eggert  <eggert@cs.ucla.edu>
3096
3097         * lib/fsusage.c (PROPAGATE_ALL_ONES): Don't assume uintmax_t is
3098         at least as wide as intmax_t.
3099
3100 2006-10-16  Alexandre Duret-Lutz  <adl@gnu.org>
3101
3102         (Imported from Automake.)
3103         * build-aux/gnupload: Update to version 1.1 of directive file.
3104
3105 2006-10-16  Eric Blake  <ebb9@byu.net>
3106
3107         * modules/configmake (Makefile.am): Add pkglibexecdir support, to
3108         match Automake 1.10a.
3109
3110 2006-10-14  Bruno Haible  <bruno@clisp.org>
3111
3112         * modules/sigprocmask: New file.
3113         * lib/sigprocmask.h: New file.
3114         * lib/sigprocmask.c: New file.
3115         * m4/signalblocking.m4 (gl_SIGNALBLOCKING): Renamed from
3116         gt_SIGNALBLOCKING. When not defining HAVE_POSIX_SIGNALBLOCKING,
3117         request sigprocmask.o.
3118         (gl_PREREQ_SIGPROCMASK): New macro.
3119         * modules/fatal-signal (Files): Remove m4/signalblocking.m4.
3120         (Depends-on): Add sigprocmask.
3121         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Don't require
3122         gt_SIGNALBLOCKING. Test for 'raise' only once.
3123         * lib/fatal-signal.c: Include sigprocmask.h.
3124         (fatal_signal_set, init_fatal_signal_set, block_fatal_signals,
3125         unblock_fatal_signals): Define always.
3126         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
3127         sigprocmask.
3128
3129 2006-10-14  Paul Eggert  <eggert@cs.ucla.edu>
3130
3131         Sync from Automake.
3132         * build-aux/install-sh (posix_mkdir): Reject FreeBSD 6.1 mkdir -p -m,
3133         which incorrectly sets the mode of an existing destination
3134         directory.  In some cases the unpatched install-sh could do the
3135         equivalent of "chmod 777 /" or "chmod 0 /" on a buggy FreeBSD
3136         system.  We hope this is rare in practice, but it's clearly worth
3137         fixing.  Problem reported by Alex Unleashed in
3138         <http://lists.gnu.org/archive/html/bug-autoconf/2006-10/msg00012.html>.
3139         Also, don't bother to check for -m bugs unless we're using -m;
3140         suggested by Stepan Kasal.
3141
3142 2006-10-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3143
3144         Sync from Automake.
3145         * build-aux/depcomp (gcc3): Put dependency extraction flags before the
3146         `-c' flag, so they appear at the same position as in %FASTDEP%
3147         mode in depend2.am.  Fixes build failure for FreeBSD's c89,
3148         which ignores unknown options only after the first non-option.
3149         Bug report against M4 by Nelson H. F. Beebe.
3150
3151 2006-10-13  Jim Meyering  <jim@meyering.net>
3152
3153         Fix a bug in yesterday's change.
3154         * lib/fts.c (fts_open): When using FTS_XDEV|FTS_NOSTAT,
3155         p->fts_statp->st_dev would be used uninitialized.
3156         Ensures that we always call fts_stat on the very first entry.
3157         Miklos Szeredi reported that find -xdev stopped working.
3158
3159 2006-10-12  Bruno Haible  <bruno@clisp.org>
3160
3161         * gnulib-tool (func_get_automake_snippet): Append an automatically
3162         computed EXTRA_DIST augmentation.
3163         * modules/acl (Makefile.am): Remove EXTRA_DIST augmentation.
3164         * modules/alloca-opt (Makefile.am): Likewise.
3165         * modules/allocsa (Makefile.am): Likewise.
3166         * modules/arcfour (Makefile.am): Likewise.
3167         * modules/arctwo (Makefile.am): Likewise.
3168         * modules/argmatch (Makefile.am): Likewise.
3169         * modules/argz (Makefile.am): Likewise.
3170         * modules/atexit (Makefile.am): Likewise.
3171         * modules/backupfile (Makefile.am): Likewise.
3172         * modules/byteswap (Makefile.am): Likewise.
3173         * modules/c-strtod (Makefile.am): Likewise.
3174         * modules/c-strtold (Makefile.am): Likewise.
3175         * modules/calloc (Makefile.am): Likewise.
3176         * modules/canon-host (Makefile.am): Likewise.
3177         * modules/canonicalize (Makefile.am): Likewise.
3178         * modules/chdir-long (Makefile.am): Likewise.
3179         * modules/chdir-safer (Makefile.am): Likewise.
3180         * modules/check-version (Makefile.am): Likewise.
3181         * modules/chown (Makefile.am): Likewise.
3182         * modules/cloexec (Makefile.am): Likewise.
3183         * modules/close-stream (Makefile.am): Likewise.
3184         * modules/closeout (Makefile.am): Likewise.
3185         * modules/crc (Makefile.am): Likewise.
3186         * modules/csharpexec (Makefile.am): Likewise.
3187         * modules/cycle-check (Makefile.am): Likewise.
3188         * modules/des (Makefile.am): Likewise.
3189         * modules/dev-ino (Makefile.am): Likewise.
3190         * modules/dirfd (Makefile.am): Likewise.
3191         * modules/dirname (Makefile.am): Likewise.
3192         * modules/dup2 (Makefile.am): Likewise.
3193         * modules/eealloc (Makefile.am): Likewise.
3194         * modules/error (Makefile.am): Likewise.
3195         * modules/euidaccess (Makefile.am): Likewise.
3196         * modules/exclude (Makefile.am): Likewise.
3197         * modules/exitfail (Makefile.am): Likewise.
3198         * modules/fcntl-safer (Makefile.am): Likewise.
3199         * modules/fcntl (Makefile.am): Likewise.
3200         * modules/file-type (Makefile.am): Likewise.
3201         * modules/fileblocks (Makefile.am): Likewise.
3202         * modules/filemode (Makefile.am): Likewise.
3203         * modules/filenamecat (Makefile.am): Likewise.
3204         * modules/fnmatch (Makefile.am): Likewise.
3205         * modules/fopen-safer (Makefile.am): Likewise.
3206         * modules/fpending (Makefile.am): Likewise.
3207         * modules/fprintftime (Makefile.am): Likewise.
3208         * modules/free (Makefile.am): Likewise.
3209         * modules/fsusage (Makefile.am): Likewise.
3210         * modules/ftruncate (Makefile.am): Likewise.
3211         * modules/fts (Makefile.am): Likewise.
3212         * modules/gc-arcfour (Makefile.am): Likewise.
3213         * modules/gc-des (Makefile.am): Likewise.
3214         * modules/gc-hmac-md5 (Makefile.am): Likewise.
3215         * modules/gc-hmac-sha1 (Makefile.am): Likewise.
3216         * modules/gc-md4 (Makefile.am): Likewise.
3217         * modules/gc-pbkdf2-sha1 (Makefile.am): Likewise.
3218         * modules/gc-sha1 (Makefile.am): Likewise.
3219         * modules/gc (Makefile.am): Likewise.
3220         * modules/getaddrinfo (Makefile.am): Likewise.
3221         * modules/getcwd (Makefile.am): Likewise.
3222         * modules/getdelim (Makefile.am): Likewise.
3223         * modules/getdomainname (Makefile.am): Likewise.
3224         * modules/getgroups (Makefile.am): Likewise.
3225         * modules/gethostname (Makefile.am): Likewise.
3226         * modules/gethrxtime (Makefile.am): Likewise.
3227         * modules/getline (Makefile.am): Likewise.
3228         * modules/getloadavg (Makefile.am): Likewise.
3229         * modules/getlogin_r (Makefile.am): Likewise.
3230         * modules/getndelim2 (Makefile.am): Likewise.
3231         * modules/getopt (Makefile.am): Likewise.
3232         * modules/getpagesize (Makefile.am): Likewise.
3233         * modules/getpass-gnu (Makefile.am): Likewise.
3234         * modules/getpass (Makefile.am): Likewise.
3235         * modules/getsubopt (Makefile.am): Likewise.
3236         * modules/gettime (Makefile.am): Likewise.
3237         * modules/gettimeofday (Makefile.am): Likewise.
3238         * modules/getugroups (Makefile.am): Likewise.
3239         * modules/getusershell (Makefile.am): Likewise.
3240         * modules/glob (Makefile.am): Likewise.
3241         * modules/group-member (Makefile.am): Likewise.
3242         * modules/hard-locale (Makefile.am): Likewise.
3243         * modules/hash (Makefile.am): Likewise.
3244         * modules/hmac-md5 (Makefile.am): Likewise.
3245         * modules/hmac-sha1 (Makefile.am): Likewise.
3246         * modules/human (Makefile.am): Likewise.
3247         * modules/idcache (Makefile.am): Likewise.
3248         * modules/imaxabs (Makefile.am): Likewise.
3249         * modules/imaxdiv (Makefile.am): Likewise.
3250         * modules/inet_ntop (Makefile.am): Likewise.
3251         * modules/inet_pton (Makefile.am): Likewise.
3252         * modules/intprops (Makefile.am): Likewise.
3253         * modules/inttostr (Makefile.am): Likewise.
3254         * modules/inttypes (Makefile.am): Likewise.
3255         * modules/isapipe (Makefile.am): Likewise.
3256         * modules/javaversion (Makefile.am): Likewise.
3257         * modules/lchmod (Makefile.am): Likewise.
3258         * modules/lchown (Makefile.am): Likewise.
3259         * modules/localcharset (Makefile.am): Likewise.
3260         * modules/long-options (Makefile.am): Likewise.
3261         * modules/lstat (Makefile.am): Likewise.
3262         * modules/malloc (Makefile.am): Likewise.
3263         * modules/mathl (Makefile.am): Likewise.
3264         * modules/mbchar (Makefile.am): Likewise.
3265         * modules/md2 (Makefile.am): Likewise.
3266         * modules/md4 (Makefile.am): Likewise.
3267         * modules/md5 (Makefile.am): Likewise.
3268         * modules/memcasecmp (Makefile.am): Likewise.
3269         * modules/memchr (Makefile.am): Likewise.
3270         * modules/memcmp (Makefile.am): Likewise.
3271         * modules/memcoll (Makefile.am): Likewise.
3272         * modules/memcpy (Makefile.am): Likewise.
3273         * modules/memmem (Makefile.am): Likewise.
3274         * modules/memmove (Makefile.am): Likewise.
3275         * modules/mempcpy (Makefile.am): Likewise.
3276         * modules/memrchr (Makefile.am): Likewise.
3277         * modules/memset (Makefile.am): Likewise.
3278         * modules/memxor (Makefile.am): Likewise.
3279         * modules/mkancesdirs (Makefile.am): Likewise.
3280         * modules/mkdir-p (Makefile.am): Likewise.
3281         * modules/mkdir (Makefile.am): Likewise.
3282         * modules/mkdtemp (Makefile.am): Likewise.
3283         * modules/mkstemp (Makefile.am): Likewise.
3284         * modules/mktime (Makefile.am): Likewise.
3285         * modules/modechange (Makefile.am): Likewise.
3286         * modules/mountlist (Makefile.am): Likewise.
3287         * modules/nanosleep (Makefile.am): Likewise.
3288         * modules/obstack (Makefile.am): Likewise.
3289         * modules/openat (Makefile.am): Likewise.
3290         * modules/pagealign_alloc (Makefile.am): Likewise.
3291         * modules/pathmax (Makefile.am): Likewise.
3292         * modules/physmem (Makefile.am): Likewise.
3293         * modules/poll (Makefile.am): Likewise.
3294         * modules/posixtm (Makefile.am): Likewise.
3295         * modules/posixver (Makefile.am): Likewise.
3296         * modules/putenv (Makefile.am): Likewise.
3297         * modules/quote (Makefile.am): Likewise.
3298         * modules/quotearg (Makefile.am): Likewise.
3299         * modules/raise (Makefile.am): Likewise.
3300         * modules/read-file (Makefile.am): Likewise.
3301         * modules/readline (Makefile.am): Likewise.
3302         * modules/readlink (Makefile.am): Likewise.
3303         * modules/readtokens (Makefile.am): Likewise.
3304         * modules/readutmp (Makefile.am): Likewise.
3305         * modules/realloc (Makefile.am): Likewise.
3306         * modules/regex (Makefile.am): Likewise.
3307         * modules/rename-dest-slash (Makefile.am): Likewise.
3308         * modules/rename (Makefile.am): Likewise.
3309         * modules/rijndael (Makefile.am): Likewise.
3310         * modules/rmdir (Makefile.am): Likewise.
3311         * modules/rpmatch (Makefile.am): Likewise.
3312         * modules/safe-read (Makefile.am): Likewise.
3313         * modules/safe-write (Makefile.am): Likewise.
3314         * modules/same-inode (Makefile.am): Likewise.
3315         * modules/same (Makefile.am): Likewise.
3316         * modules/save-cwd (Makefile.am): Likewise.
3317         * modules/savedir (Makefile.am): Likewise.
3318         * modules/setenv (Makefile.am): Likewise.
3319         * modules/settime (Makefile.am): Likewise.
3320         * modules/sha1 (Makefile.am): Likewise.
3321         * modules/sig2str (Makefile.am): Likewise.
3322         * modules/snprintf (Makefile.am): Likewise.
3323         * modules/stat-macros (Makefile.am): Likewise.
3324         * modules/stat-time (Makefile.am): Likewise.
3325         * modules/stdbool (Makefile.am): Likewise.
3326         * modules/stdint (Makefile.am): Likewise.
3327         * modules/stdlib-safer (Makefile.am): Likewise.
3328         * modules/stpcpy (Makefile.am): Likewise.
3329         * modules/stpncpy (Makefile.am): Likewise.
3330         * modules/strcase (Makefile.am): Likewise.
3331         * modules/strcasestr (Makefile.am): Likewise.
3332         * modules/strchrnul (Makefile.am): Likewise.
3333         * modules/strcspn (Makefile.am): Likewise.
3334         * modules/strdup (Makefile.am): Likewise.
3335         * modules/strerror (Makefile.am): Likewise.
3336         * modules/strftime (Makefile.am): Likewise.
3337         * modules/strndup (Makefile.am): Likewise.
3338         * modules/strnlen (Makefile.am): Likewise.
3339         * modules/strpbrk (Makefile.am): Likewise.
3340         * modules/strsep (Makefile.am): Likewise.
3341         * modules/strstr (Makefile.am): Likewise.
3342         * modules/strtod (Makefile.am): Likewise.
3343         * modules/strtoimax (Makefile.am): Likewise.
3344         * modules/strtok_r (Makefile.am): Likewise.
3345         * modules/strtol (Makefile.am): Likewise.
3346         * modules/strtoll (Makefile.am): Likewise.
3347         * modules/strtoul (Makefile.am): Likewise.
3348         * modules/strtoull (Makefile.am): Likewise.
3349         * modules/strtoumax (Makefile.am): Likewise.
3350         * modules/strverscmp (Makefile.am): Likewise.
3351         * modules/sys_socket (Makefile.am): Likewise.
3352         * modules/sys_stat (Makefile.am): Likewise.
3353         * modules/sysexits (Makefile.am): Likewise.
3354         * modules/time_r (Makefile.am): Likewise.
3355         * modules/timegm (Makefile.am): Likewise.
3356         * modules/timespec (Makefile.am): Likewise.
3357         * modules/tmpfile-safer (Makefile.am): Likewise.
3358         * modules/trim (Makefile.am): Likewise.
3359         * modules/unistd-safer (Makefile.am): Likewise.
3360         * modules/unlinkdir (Makefile.am): Likewise.
3361         * modules/unlocked-io (Makefile.am): Likewise.
3362         * modules/userspec (Makefile.am): Likewise.
3363         * modules/utime (Makefile.am): Likewise.
3364         * modules/utimecmp (Makefile.am): Likewise.
3365         * modules/utimens (Makefile.am): Likewise.
3366         * modules/vasnprintf (Makefile.am): Likewise.
3367         * modules/vasprintf (Makefile.am): Likewise.
3368         * modules/vsnprintf (Makefile.am): Likewise.
3369         * modules/xalloc (Makefile.am): Likewise.
3370         * modules/xgetcwd (Makefile.am): Likewise.
3371         * modules/xnanosleep (Makefile.am): Likewise.
3372         * modules/xreadlink (Makefile.am): Likewise.
3373         * modules/xstrtod (Makefile.am): Likewise.
3374         * modules/xstrtol (Makefile.am): Likewise.
3375         * modules/xstrtold (Makefile.am): Likewise.
3376         * modules/yesno (Makefile.am): Likewise.
3377         * modules/getdate (Makefile.am): Don't add getdate.h to EXTRA_DIST.
3378
3379 2006-10-12  Paul Eggert  <eggert@cs.ucla.edu>
3380
3381         * modules/error (Makefile.am): Distribute files through
3382         EXTRA_DIST, not lib_SOURCES.
3383
3384 2006-10-12  Eric Blake  <ebb9@byu.net>
3385
3386         * modules/error (Makefile.am): Distribute files in /lib.
3387         * modules/obstack (Makefile.am): Likewise.
3388
3389 2006-10-12  Bruno Haible  <bruno@clisp.org>
3390
3391         * modules/acl (Makefile.am): Distribute all files in lib/ through
3392         EXTRA_DIST.
3393         * modules/arcfour (Makefile.am): Likewise.
3394         * modules/arctwo (Makefile.am): Likewise.
3395         * modules/argmatch (Makefile.am): Likewise.
3396         * modules/argz (Makefile.am): Likewise.
3397         * modules/atexit (Makefile.am): Likewise.
3398         * modules/backupfile (Makefile.am): Likewise.
3399         * modules/c-strtod (Makefile.am): Likewise.
3400         * modules/c-strtold (Makefile.am): Likewise.
3401         * modules/calloc (Makefile.am): Likewise.
3402         * modules/canon-host (Makefile.am): Likewise.
3403         * modules/canonicalize (Makefile.am): Likewise.
3404         * modules/chdir-long (Makefile.am): Likewise.
3405         * modules/chdir-safer (Makefile.am): Likewise.
3406         * modules/check-version (Makefile.am): Likewise.
3407         * modules/chown (Makefile.am): Likewise.
3408         * modules/cloexec (Makefile.am): Likewise.
3409         * modules/close-stream (Makefile.am): Likewise.
3410         * modules/closeout (Makefile.am): Likewise.
3411         * modules/crc (Makefile.am): Likewise.
3412         * modules/cycle-check (Makefile.am): Likewise.
3413         * modules/des (Makefile.am): Likewise.
3414         * modules/dirfd (Makefile.am): Likewise.
3415         * modules/dirname (Makefile.am): Likewise.
3416         * modules/dup2 (Makefile.am): Likewise.
3417         * modules/euidaccess (Makefile.am): Likewise.
3418         * modules/exclude (Makefile.am): Likewise.
3419         * modules/exitfail (Makefile.am): Likewise.
3420         * modules/fcntl-safer (Makefile.am): Likewise.
3421         * modules/file-type (Makefile.am): Likewise.
3422         * modules/fileblocks (Makefile.am): Likewise.
3423         * modules/filemode (Makefile.am): Likewise.
3424         * modules/filenamecat (Makefile.am): Likewise.
3425         * modules/fnmatch (Makefile.am): Likewise.
3426         * modules/fopen-safer (Makefile.am): Likewise.
3427         * modules/fpending (Makefile.am): Likewise.
3428         * modules/fprintftime (Makefile.am): Likewise.
3429         * modules/free (Makefile.am): Likewise.
3430         * modules/fsusage (Makefile.am): Likewise.
3431         * modules/ftruncate (Makefile.am): Likewise.
3432         * modules/fts (Makefile.am): Likewise.
3433         * modules/gc (Makefile.am): Likewise.
3434         * modules/gc-pbkdf2-sha1 (Makefile.am): Likewise.
3435         * modules/getaddrinfo (Makefile.am): Likewise.
3436         * modules/getcwd (Makefile.am): Likewise.
3437         * modules/getdelim (Makefile.am): Likewise.
3438         * modules/getdomainname (Makefile.am): Likewise.
3439         * modules/getgroups (Makefile.am): Likewise.
3440         * modules/gethostname (Makefile.am): Likewise.
3441         * modules/gethrxtime (Makefile.am): Likewise.
3442         * modules/getline (Makefile.am): Likewise.
3443         * modules/getloadavg (Makefile.am): Likewise.
3444         * modules/getlogin_r (Makefile.am): Likewise.
3445         * modules/getopt (Makefile.am): Likewise.
3446         * modules/getpass (Makefile.am): Likewise.
3447         * modules/getpass-gnu (Makefile.am): Likewise.
3448         * modules/getsubopt (Makefile.am): Likewise.
3449         * modules/gettime (Makefile.am): Likewise.
3450         * modules/gettimeofday (Makefile.am): Likewise.
3451         * modules/getugroups (Makefile.am): Likewise.
3452         * modules/getusershell (Makefile.am): Likewise.
3453         * modules/glob (Makefile.am): Likewise.
3454         * modules/group-member (Makefile.am): Likewise.
3455         * modules/hard-locale (Makefile.am): Likewise.
3456         * modules/hash (Makefile.am): Likewise.
3457         * modules/hmac-md5 (Makefile.am): Likewise.
3458         * modules/hmac-sha1 (Makefile.am): Likewise.
3459         * modules/human (Makefile.am): Likewise.
3460         * modules/idcache (Makefile.am): Likewise.
3461         * modules/imaxabs (Makefile.am): Likewise.
3462         * modules/imaxdiv (Makefile.am): Likewise.
3463         * modules/inet_ntop (Makefile.am): Likewise.
3464         * modules/inet_pton (Makefile.am): Likewise.
3465         * modules/inttostr (Makefile.am): Likewise.
3466         * modules/isapipe (Makefile.am): Likewise.
3467         * modules/lchown (Makefile.am): Likewise.
3468         * modules/long-options (Makefile.am): Likewise.
3469         * modules/lstat (Makefile.am): Likewise.
3470         * modules/malloc (Makefile.am): Likewise.
3471         * modules/mathl (Makefile.am): Likewise.
3472         * modules/mbchar (Makefile.am): Likewise.
3473         * modules/md2 (Makefile.am): Likewise.
3474         * modules/md4 (Makefile.am): Likewise.
3475         * modules/md5 (Makefile.am): Likewise.
3476         * modules/memcasecmp (Makefile.am): Likewise.
3477         * modules/memchr (Makefile.am): Likewise.
3478         * modules/memcmp (Makefile.am): Likewise.
3479         * modules/memcoll (Makefile.am): Likewise.
3480         * modules/memcpy (Makefile.am): Likewise.
3481         * modules/memmem (Makefile.am): Likewise.
3482         * modules/memmove (Makefile.am): Likewise.
3483         * modules/mempcpy (Makefile.am): Likewise.
3484         * modules/memrchr (Makefile.am): Likewise.
3485         * modules/memset (Makefile.am): Likewise.
3486         * modules/memxor (Makefile.am): Likewise.
3487         * modules/mkancesdirs (Makefile.am): Likewise.
3488         * modules/mkdir (Makefile.am): Likewise.
3489         * modules/mkdir-p (Makefile.am): Likewise.
3490         * modules/mkdtemp (Makefile.am): Likewise.
3491         * modules/mkstemp (Makefile.am): Likewise.
3492         * modules/mktime (Makefile.am): Likewise.
3493         * modules/modechange (Makefile.am): Likewise.
3494         * modules/mountlist (Makefile.am): Likewise.
3495         * modules/nanosleep (Makefile.am): Likewise.
3496         * modules/openat (Makefile.am): Likewise.
3497         * modules/pagealign_alloc (Makefile.am): Likewise.
3498         * modules/physmem (Makefile.am): Likewise.
3499         * modules/poll (Makefile.am): Likewise.
3500         * modules/posixtm (Makefile.am): Likewise.
3501         * modules/posixver (Makefile.am): Likewise.
3502         * modules/putenv (Makefile.am): Likewise.
3503         * modules/quote (Makefile.am): Likewise.
3504         * modules/quotearg (Makefile.am): Likewise.
3505         * modules/raise (Makefile.am): Likewise.
3506         * modules/read-file (Makefile.am): Likewise.
3507         * modules/readline (Makefile.am): Likewise.
3508         * modules/readlink (Makefile.am): Likewise.
3509         * modules/readtokens (Makefile.am): Likewise.
3510         * modules/readutmp (Makefile.am): Likewise.
3511         * modules/realloc (Makefile.am): Likewise.
3512         * modules/regex (Makefile.am): Likewise.
3513         * modules/rename (Makefile.am): Likewise.
3514         * modules/rename-dest-slash (Makefile.am): Likewise.
3515         * modules/rijndael (Makefile.am): Likewise.
3516         * modules/rmdir (Makefile.am): Likewise.
3517         * modules/rpmatch (Makefile.am): Likewise.
3518         * modules/safe-read (Makefile.am): Likewise.
3519         * modules/safe-write (Makefile.am): Likewise.
3520         * modules/same (Makefile.am): Likewise.
3521         * modules/save-cwd (Makefile.am): Likewise.
3522         * modules/savedir (Makefile.am): Likewise.
3523         * modules/setenv (Makefile.am): Likewise.
3524         * modules/settime (Makefile.am): Likewise.
3525         * modules/sha1 (Makefile.am): Likewise.
3526         * modules/sig2str (Makefile.am): Likewise.
3527         * modules/snprintf (Makefile.am): Likewise.
3528         * modules/stdlib-safer (Makefile.am): Likewise.
3529         * modules/stpcpy (Makefile.am): Likewise.
3530         * modules/stpncpy (Makefile.am): Likewise.
3531         * modules/strcase (Makefile.am): Likewise.
3532         * modules/strcasestr (Makefile.am): Likewise.
3533         * modules/strchrnul (Makefile.am): Likewise.
3534         * modules/strcspn (Makefile.am): Likewise.
3535         * modules/strdup (Makefile.am): Likewise.
3536         * modules/strerror (Makefile.am): Likewise.
3537         * modules/strftime (Makefile.am): Likewise.
3538         * modules/strndup (Makefile.am): Likewise.
3539         * modules/strnlen (Makefile.am): Likewise.
3540         * modules/strpbrk (Makefile.am): Likewise.
3541         * modules/strsep (Makefile.am): Likewise.
3542         * modules/strstr (Makefile.am): Likewise.
3543         * modules/strtod (Makefile.am): Likewise.
3544         * modules/strtoimax (Makefile.am): Likewise.
3545         * modules/strtok_r (Makefile.am): Likewise.
3546         * modules/strtol (Makefile.am): Likewise.
3547         * modules/strtoll (Makefile.am): Likewise.
3548         * modules/strtoul (Makefile.am): Likewise.
3549         * modules/strtoull (Makefile.am): Likewise.
3550         * modules/strtoumax (Makefile.am): Likewise.
3551         * modules/strverscmp (Makefile.am): Likewise.
3552         * modules/time_r (Makefile.am): Likewise.
3553         * modules/timegm (Makefile.am): Likewise.
3554         * modules/tmpfile-safer (Makefile.am): Likewise.
3555         * modules/unistd-safer (Makefile.am): Likewise.
3556         * modules/unlinkdir (Makefile.am): Likewise.
3557         * modules/userspec (Makefile.am): Likewise.
3558         * modules/utime (Makefile.am): Likewise.
3559         * modules/utimecmp (Makefile.am): Likewise.
3560         * modules/utimens (Makefile.am): Likewise.
3561         * modules/vasnprintf (Makefile.am): Likewise.
3562         * modules/vasprintf (Makefile.am): Likewise.
3563         * modules/vsnprintf (Makefile.am): Likewise.
3564         * modules/xalloc (Makefile.am): Likewise.
3565         * modules/xgetcwd (Makefile.am): Likewise.
3566         * modules/xnanosleep (Makefile.am): Likewise.
3567         * modules/xreadlink (Makefile.am): Likewise.
3568         * modules/xstrtod (Makefile.am): Likewise.
3569         * modules/xstrtol (Makefile.am): Likewise.
3570         * modules/xstrtold (Makefile.am): Likewise.
3571         * modules/yesno (Makefile.am): Likewise.
3572
3573 2006-10-12  Jim Meyering  <jim@meyering.net>
3574
3575         * m4/getloadavg.m4: Revert the change below.
3576
3577         * m4/getloadavg.m4 (gl_GETLOADAVG): Test for the existence of
3578         lib/getloadavg.c using "ls -L", not "test -f".  The latter would
3579         fail with a symlink, which is what coreutils' ./bootstrap now
3580         creates by default.
3581
3582 2006-10-12  Bruno Haible  <bruno@clisp.org>
3583
3584         * lib/inttypes_.h (_LONG_LONG_FORMAT_PREFIX): Don't define for MSVC or
3585         mingw.
3586         (_PRI64_PREFIX, _PRIu64_PREFIX, _SCN64_PREFIX, _SCNu64_PREFIX): Handle
3587         MSVC and mingw explicitly.
3588
3589 2006-10-11  Simon Josefsson  <jas@extundo.com>
3590             Bruno Haible  <bruno@clisp.org>
3591
3592         Add support for multiple gnulib-tool invocations in the scope of a
3593         single configure.ac file.
3594         * gnulib-tool (func_emit_lib_Makefile_am): In the _LIBADD variable,
3595         use a private [LT]LIBOBJS variant. Define a _DEPENDENCIES variable
3596         with the same contents as the _LIBADD variable.
3597         (func_emit_initmacro_start, func_emit_initmacro_end,
3598         func_emit_initmacro_done): New functions.
3599         (func_import, func_create_testdir): Invoke them. Allow the identifiers
3600         gl_LIBOBJS and gl_LTLIBOBJS.
3601
3602 2006-10-11  Bruno Haible  <bruno@clisp.org>
3603
3604         * gnulib-tool (GETTEXTPATH, AUTOHEADER, AUTOPOINT): New variables.
3605         (func_create_testdir): Don't create po/Makefile.am, don't invoke
3606         autoreconf. Instead, invoke autopoint explicitly but move back the
3607         *.m4 files from gnulib.
3608
3609 2006-10-11  Bruno Haible  <bruno@clisp.org>
3610
3611         * gnulib-tool (func_usage): Make module names after --create-testdir
3612         optional.
3613         (func_create_testdir): If no module was specified, use nearly all
3614         modules.
3615
3616 2006-10-12  Jim Meyering  <jim@meyering.net>
3617
3618         Big performance improvement for fts-based tools that use FTS_NOSTAT.
3619         Avoid spurious inode-mismatch problems on non-POSIX file systems.
3620         Details: http://article.gmane.org/gmane.comp.lib.gnulib.bugs/7416
3621         * lib/fts_.h (FTS_DEFER_STAT): Define new flag.
3622         (FTS_OPTIONMASK): Extend the mask to reflect this addition.
3623         * lib/fts.c (DT_IS_KNOWN, DT_MUST_BE): Define.
3624         (FTS_NO_STAT_REQUIRED, FTS_STAT_REQUIRED): Define.
3625         (fts_set_stat_required): New function.
3626         (fts_open): Defer the calls to fts_stat, if possible or requested.
3627         Move the code that maps a command-line fts_info value FTS_DOT to FTS_D
3628         into fts_stat itself.
3629         (fts_read): Perform any required (deferred) fts_stat call.
3630         (fts_build): Likewise, for the directory we're about to open and read.
3631         In the readdir loop, carefully decide whether each entry will require
3632         an eventual call to fts_stat, using dirent.d_type info if available.
3633         (fts_stat): Move the test for whether to honor FTS_COMFOLLOW on
3634         a command line argument into this function.  Update all callers.
3635         Map a return value of FTS_DOT to FTS_D for a command line argument.
3636         * modules/fts (Depends-on): Add d-type.  Alphabetize.
3637         Thanks to Miklos Szeredi for his tenacity and for the initial
3638         bug report about "find" failing on a FUSE-based file system.
3639
3640         * lib/fts.c (fts_open): Use consistent indentation.
3641
3642 2006-10-12  Paul Eggert  <eggert@cs.ucla.edu>
3643
3644         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS): Renamed from
3645         gl_USE_SYSTEM_EXTENSIONS, to fix a coreutils bootstrap failure
3646         reported by Jim Meyering.  All uses of cache variables renamed
3647         to match Autoconf's.
3648         (gl_USE_SYSTEM_EXTENSIONS): New macro, which simply requires
3649         the other one.
3650
3651         * m4/rename-dest-slash.m4 (gl_FUNC_RENAME_TRAILING_DEST_SLASH):
3652         Fix misspelling in diagnostic.
3653
3654 2006-10-11  Paul Eggert  <eggert@cs.ucla.edu>
3655
3656         * lib/mkdir-p.c (HAVE_FCHMOD): Define to false if not already
3657         defined.  Problem reported by Matthew Woehlke.
3658
3659         * lib/inttypes_.h (_LONG_LONG_FORMAT_PREFIX): New macro.
3660         Add support for Tandem NonStop R series.
3661         (_PRI64_PREFIX, _PRIu64_PREFIX, _SCN64_PREFIX, _SCNu64_PREFIX):
3662         Use new macro.
3663
3664         * lib/rename-dest-slash.c: Include stdbool.h but not string.h.
3665         (has_trailing_slash): Omit size arg; all callers changed.
3666         Omit 'inline', since it doesn't help performance and we'd
3667         need to configure it.
3668         Don't count //, ///, etc. as having a trailing slash.
3669         As a side effect, this removes a C99ism reported by Matthew Woehlke.
3670         (rpl_rename_dest_slash): On failure, use rename's errno rather
3671         than (in some cases) an incorrect or junk errno.
3672         Simplify code by removing need to compute length; this does
3673         cause it to make two passes instead of one over the file name,
3674         but it's worth it.
3675
3676         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Undo previous
3677         change, since Autoconf's version may no longer be appropriate now
3678         that we are using CVS Autoconf's version.  Add support for Tandem.
3679
3680 2006-10-11  Paul Eggert  <eggert@cs.ucla.edu>
3681             Bruno Haible  <bruno@clisp.org>
3682
3683         * lib/allocsa.h (sa_alignment_longlong, sa_alignment_max): Test
3684         HAVE_LONG_LONG_INT instead of HAVE_LONG_LONG.
3685         * m4/allocsa.m4 (gl_ALLOCSA): Invoke AC_TYPE_LONG_LONG_INT instead of
3686         gl_AC_TYPE_LONG_LONG.
3687
3688         * lib/printf-args.h (arg_type, argument): Test HAVE_LONG_LONG_INT
3689         instead of HAVE_LONG_LONG.
3690         * lib/printf-args.c (printf_fetchargs): Likewise.
3691         * lib/printf-parse.c (PRINTF_PARSE): Likewise.
3692         * lib/vasnprintf.c (VASNPRINTF): Likewise.
3693         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_ARGS, gl_PREREQ_PRINTF_PARSE,
3694         gl_PREREQ_VASNPRINTF): Invoke AC_TYPE_LONG_LONG_INT instead of
3695         gl_AC_TYPE_LONG_LONG.
3696
3697 2006-10-11  Bruno Haible  <bruno@clisp.org>
3698
3699         * m4/longlong.m4: Add comments.
3700         * m4/ulonglong.m4: Likewise.
3701
3702 2006-10-10  Bruno Haible  <bruno@clisp.org>
3703
3704         Make it possible to #define stpcpy, strdup to aliases.
3705         * lib/stpcpy.c (stpcpy) [!_LIBC]: Don't undefine.
3706         * lib/strdup.c (strdup) [!_LIBC]: Don't undefine.
3707
3708 2006-10-10  Bruno Haible  <bruno@clisp.org>
3709
3710         Make it possible to #define gcd to an alias.
3711         * lib/gcd.c: Include config.h.
3712
3713 2006-10-10  Bruno Haible  <bruno@clisp.org>
3714
3715         Make it possible to #define c_isascii to an alias.
3716         * lib/c-ctype.h: Don't define the macros if NO_C_CTYPE_MACROS is
3717         defined. Undefine the macros before defining them, to avoid gcc
3718         warnings.
3719         * lib/c-ctype.c: Include config.h. Don't undefine the macros; instead,
3720         define NO_C_CTYPE_MACROS early.
3721
3722 2006-10-10  Bruno Haible  <bruno@clisp.org>
3723
3724         Make it possible to #define set_program_name to an alias.
3725         * lib/progname.c: Don't undefine set_program_name; instead, undefine
3726         ENABLE_RELOCATABLE early.
3727
3728 2006-10-10  Paul Eggert  <eggert@cs.ucla.edu>
3729
3730         Port to Tandem NSK OSS, which has 64-bit signed int but at most
3731         32-bit unsigned int.  Problem reported by Matthew Woehlke in:
3732         http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00062.html
3733         More generally, don't assume that 64-bit signed int is available
3734         if unsigned int is, and vice versa.
3735         * lib/inttypes_.h (_PRIu64_PREFIX, _SCNu64_PREFIX): Depend on
3736         unsigned symbols, not on their signed counterparts.
3737         * lib/stdint_.h (uint64_t, uint_least64_t, uint_fast64_t, uintmax_t):
3738         (UINT64_MAX, UINT_LEAST64_MAX, UINT_FAST64_MAX, UINTMAX_MAX):
3739         (UINT64_C, UINTMAX_C):
3740         Likewise.
3741         * lib/strtoimax.c (strtoll): Depend on signed symbols, not their
3742         unsigned counterparts.
3743         (Have_long_long, Unsigned): New macros.
3744         (Int): Renamed from INT.
3745         (strtoimax): Use the new macros.
3746         * m4/stdint.m4 (gl_STDINT_H): Require AC_TYPE_UNSIGNED_LONG_LONG_INT
3747         and substitute HAVE_UNSIGNED_LONG_LONG_INT.
3748         * modules/inttypes (inttypes.h): Substitute
3749         HAVE_UNSIGNED_LONG_LONG_INT.
3750         * modules/stdint (stdint.h): Likewise.
3751         (Files): Add m4/ulonglong.m4.
3752
3753 2006-10-10  Bruno Haible  <bruno@clisp.org>
3754
3755         Fix a gcc -Wshadow warning.
3756         * lib/gl_anyhash_list2.h (hash_resize): Rename local variable 'index'
3757         to 'bucket'.
3758         * lib/gl_anylinked_list2.h (gl_linked_search_from_to,
3759         gl_linked_indexof_from_to): Likewise.
3760         * lib/gl_linkedhash_list.c (add_to_bucket, remove_from_bucket):
3761         Likewise.
3762         * lib/gl_anytreehash_list1.h (add_to_bucket, remove_from_bucket):
3763         Likewise.
3764         * lib/gl_anytreehash_list2.h (gl_tree_search_from_to): Likewise.
3765         Reported by Eric Blake.
3766
3767 2006-10-09  Paul Eggert  <eggert@cs.ucla.edu>
3768
3769         * lib/filemode.h [HAVE_DECL_STRMODE]: Include unistd.h too,
3770         for NetBSD.  Problem reported by Bruno Haible.
3771
3772 2006-10-09  Jim Meyering  <jim@meyering.net>
3773
3774         * lib/lchown.c: Include <sys/stat.h> before "stat-macros.h".
3775         Patch from Bruno Haible.
3776
3777 2006-10-09  Jim Meyering  <jim@meyering.net>
3778
3779         * lib/fts-cycle.c (leave_dir): When "leaving" a top level directory due
3780         to FTS_SKIP, don't copy the parent's uninitialized dev/ino values.
3781         Trigger with e.g., mkdir d && valgrind ./chmod u+rwx d d
3782
3783 2006-10-08  Paul Eggert  <eggert@cs.ucla.edu>
3784
3785         Don't include <config.h> twice; this doesn't work in some cases,
3786         e.g., when config.h has "#define intmax_t long long int" and
3787         we include <config.h>, <inttypes.h>, <config.h> in that order.
3788         Problem reported by Matthew Woehlke in:
3789         http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00073.html
3790         * lib/fprintftime.c: Don't include config.h or fprintftime.h.
3791         * lib/fts-cycle.c: Don't include config.h.
3792         * lib/strftime.c: Include fprintftime.h if FPRINTFTIME is defined.
3793         * lib/xstrtoimax.c: Remove copyright notice since it's short tnow.
3794         Don't include config.h or xstrtol.h.  Define STRTOL_T_MINIMUM
3795         and STRTOL_T_MAXIMUM unconditionally, since we now assume gnulib
3796         inttypes.h.
3797         * lib/xstrtoumax.c: Likewise.
3798         * lib/xstrtol.c: Include config.h and xstrtol.h after defining
3799         __strtol and the like, so that this module is more like its siblings.
3800         (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM) [! defined STRTOL_T_MINIMUM]:
3801         Remove; no longer needed now that we assume gnulib inttypes.h.
3802
3803 2006-10-08  Bruno Haible  <bruno@clisp.org>
3804
3805         * doc/gnulib-tool.texi: Emphasize the drawbacks of the --symlink
3806         option.
3807
3808 2006-10-07  Jim Meyering  <jim@meyering.net>
3809
3810         * modules/inttypes (inttypes.h): Revert what seems to have been
3811         an inadvertent part of today's change: use "|", not "/" in the
3812         substitution for the "/"-containing string, $(ABSOLUTE_INTTYPES_H).
3813
3814 2006-10-07  Bruno Haible  <bruno@clisp.org>
3815
3816         * modules/sublist: New file.
3817
3818 2006-10-07  Bruno Haible  <bruno@clisp.org>
3819
3820         * modules/alloca-opt (alloca.h): Add a "DO NOT EDIT" comment.
3821         * modules/argz (argz.h): Likewise.
3822         * modules/arpa_inet (arpa/inet.h): Likewise.
3823         * modules/byteswap (byteswap.h): Likewise.
3824         * modules/configmake (configmake.h): Likewise.
3825         * modules/fcntl (fcntl.h): Likewise.
3826         * modules/fnmatch (fnmatch.h): Likewise.
3827         * modules/getopt (getopt.h): Likewise.
3828         * modules/glob (glob.h): Likewise.
3829         * modules/inttypes (inttypes.h): Likewise.
3830         * modules/netinet_in (netinet/in.h): Likewise.
3831         * modules/poll (poll.h): Likewise.
3832         * modules/stdbool (stdbool.h): Likewise.
3833         * modules/stdint (stdint.h): Likewise.
3834         * modules/sys_select (sys/select.h): Likewise.
3835         * modules/sys_socket (sys/socket.h): Likewise.
3836         * modules/sys_stat (sys/stat.h): Likewise.
3837         * modules/sysexits (sysexits.h): Likewise.
3838         * modules/unistd (unistd.h): Likewise.
3839         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
3840         Add a "DO NOT EDIT" comment to the generated file.
3841         (func_import): Likewise for gnulib-comp.m4.
3842
3843 2006-10-07  Bruno Haible  <bruno@clisp.org>
3844
3845         * lib/gl_sublist.h: New file.
3846         * lib/gl_sublist.c: New file.
3847
3848 2006-10-06  Paul Eggert  <eggert@cs.ucla.edu>
3849
3850         * lib/mkancesdirs.c (mkancesdirs): Pass to MAKE_DIR both the full file
3851         name (relative to the original working directory) and the file
3852         name component (relative to the temporary working directory).  All
3853         callers changed.
3854         * lib/mkancesdirs.h (mkancesdirs): Adjust prototype to match.
3855         * lib/mkdir-p.c (make_dir_parents): Likewise.
3856         * lib/mkdir-p.h (make_dir_parents): Likewise.
3857
3858 2006-10-06  Eric Blake  <ebb9@byu.net>
3859
3860         Define several macros for use by the clean-temp module.
3861         * m4/close-stream.m4 (gl_CLOSE_STREAM): Define GNULIB_CLOSE_STREAM.
3862         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Define GNULIB_FCNTL_SAFER.
3863         * m4/stdio-safer.m4 (gl_FOPEN_SAFER): Define GNULIB_FOPEN_SAFER.
3864
3865         * lib/clean-temp.h (close_stream_temp): New declaration.
3866         * lib/clean-temp.c (includes): Pull in headers according to what
3867         other modules are in use.
3868         (close_stream_temp) [GNULIB_CLOSE_STREAM]: New function.
3869
3870 2006-10-06  Bruno Haible  <bruno@clisp.org>
3871
3872         * lib/javacomp.c (write_temp_file): Use fopen_temp, fwriteerror_temp
3873         instead of fopen, fwriteerror.
3874
3875 2006-10-06  Bruno Haible  <bruno@clisp.org>
3876
3877         * lib/clean-temp.h (cleanup_temp_file, cleanup_temp_subdir,
3878         cleanup_temp_dir_contents, cleanup_temp_dir): Change return type to
3879         int.
3880         * lib/clean-temp.c (do_unlink, do_rmdir, cleanup_temp_file,
3881         cleanup_temp_subdir, cleanup_temp_dir_contents, cleanup_temp_dir):
3882         Return an error indicator.
3883         Suggested by Eric Blake.
3884
3885 2006-10-06  Bruno Haible  <bruno@clisp.org>
3886
3887         * lib/clean-temp.c (PATH_MAX): Provide a fallback for GNU Hurd.
3888         Reported by Eric Blake.
3889
3890 2006-10-06  Bruno Haible  <bruno@clisp.org>
3891
3892         * modules/closeout (Description): Mention stderr too.
3893
3894 2006-10-06  Bruno Haible  <bruno@clisp.org>
3895         and Paul Eggert  <eggert@cs.ucla.edu>
3896
3897         * lib/closeout.c (close_stdout): Also close stderr.
3898         * lib/closeout.h: Update comment.
3899
3900 2006-10-05  Paul Eggert  <eggert@cs.ucla.edu>
3901
3902         Fix some Darwin-7.9.0 porting problems reported by Bruno Haible in
3903         <http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00063.html>.
3904         * lib/dirchownmod.c: Include lchown.h.
3905         * lib/lchown.c: Don't include files that lchown.h now includes.
3906         Don't declare chown, since lchown.h now does that.
3907         * lib/lchown.h: Include errno.h, sys/types.h, unistd.h.
3908         (lchown): Define to rpl_chown if lchown is declared but
3909         does not exist.  Declare using a prototype if lchown is not
3910         declared.  Add a copyright notice.
3911         * lib/mkstemp.h: Include <unistd.h>.
3912         * lib/openat.c: Include lchown.h.
3913
3914         * lib/fcntl_.h (O_NOFOLLOW): Don't depend on O_NOFOLLOW_IS_INEFFECTIVE;
3915         we now test for that separately.
3916         * lib/fts.c (fts_safe_changedir): Inspect HAVE_WORKING_O_NOFOLLOW
3917         rather than O_NOFOLLOW, when testing whether it's possible to
3918         avoid a race condition reliably.
3919         * lib/savewd.c (savewd_chdir): Likewise.
3920
3921         Remove macros that are no longer needed now that stdint.h is
3922         reliable.
3923         * lib/fsusage.c (UINTMAX_MAX): Remove.
3924         * lib/human.c (SIZE_MAX, UINTMAX_MAX): Remove.
3925         * lib/utimecmp.c (SIZE_MAX): Remove.
3926
3927         * m4/lchown.m4 (gl_FUNC_LCHOWN): Check whether lchown is declared.
3928
3929         * m4/fcntl_h.m4 (gl_FCNTL_H): Define HAVE_WORKING_O_NOFOLLOW instead
3930         of O_NOFOLLOW_IS_INEFFECTIVE.  Define HAVE_WORKING_O_NOATIME if
3931         O_NOATIME works.
3932
3933 2006-10-05  Bruno Haible  <bruno@clisp.org>
3934
3935         * lib/gl_list.h (gl_sortedlist_search_from_to,
3936         gl_sortedlist_indexof_from_to): New declarations.
3937         (gl_list_implementation): New fields sortedlist_search_from_to,
3938         sortedlist_indexof_from_to.
3939         (gl_sortedlist_search_from_to, gl_sortedlist_indexof_from_to): New
3940         inline functions.
3941         * lib/gl_list.c (gl_sortedlist_search_from_to,
3942         gl_sortedlist_indexof_from_to): New functions.
3943         * lib/gl_array_list.c (gl_array_sortedlist_indexof_from_to): New
3944         function.
3945         (gl_array_sortedlist_indexof, gl_array_sortedlist_search): Use it.
3946         (gl_array_sortedlist_search_from_to): New function.
3947         (gl_array_list_implementation): Update.
3948         * lib/gl_carray_list.c (gl_carray_sortedlist_indexof_from_to): New
3949         function.
3950         (gl_carray_sortedlist_indexof, gl_carray_sortedlist_search): Use it.
3951         (gl_carray_sortedlist_search_from_to): New function.
3952         (gl_carray_list_implementation): Update.
3953         * lib/gl_anylinked_list2.h (gl_linked_sortedlist_search_from_to,
3954         gl_linked_sortedlist_indexof_from_to): New functions.
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_list2.h (gl_tree_sortedlist_search_from_to,
3958         gl_tree_sortedlist_indexof_from_to): New functions.
3959         * lib/gl_avltree_list.c (gl_avltree_list_implementation): Update.
3960         * lib/gl_avltreehash_list.c (gl_avltreehash_list_implementation):
3961         Update.
3962         * lib/gl_rbtree_list.c (gl_rbtree_list_implementation): Update.
3963         * lib/gl_rbtreehash_list.c (gl_avltreehash_list_implementation):
3964         Update.
3965
3966 2006-10-05  Bruno Haible  <bruno@clisp.org>
3967
3968         * lib/gl_list.h (gl_list_search_from, gl_list_search_from_to,
3969         gl_list_indexof_from, gl_list_indexof_from_to): New declarations.
3970         (struct gl_list_implementation): Add fields search_from_to,
3971         indexof_from_to. Remove fields search, indexof.
3972         (gl_list_search): Use the search_from_to method.
3973         (gl_list_search_from, gl_list_search_from_to): New functions.
3974         (gl_list_indexof): Use the indexof_from_to method.
3975         (gl_list_indexof_from, gl_list_indexof_from_to): New functions.
3976         * lib/gl_list.c (gl_list_search): Use the search_from_to method.
3977         (gl_list_search_from, gl_list_search_from_to): New functions.
3978         (gl_list_indexof): Use the indexof_from_to method.
3979         (gl_list_indexof_from, gl_list_indexof_from_to): New functions.
3980         * lib/gl_array_list.c (gl_array_indexof_from_to): Renamed from
3981         gl_array_indexof. Add start_index, end_index arguments.
3982         (gl_array_search_from_to): Renamed from gl_array_search. Add
3983         start_index, end_index arguments.
3984         (gl_array_remove, gl_array_list_implementation): Update.
3985         * lib/gl_carray_list.c (gl_carray_indexof_from_to): Renamed from
3986         gl_carray_indexof. Add start_index, end_index arguments.
3987         (gl_carray_search_from_to): Renamed from gl_carray_search. Add
3988         start_index, end_index arguments.
3989         (gl_carray_remove, gl_carray_list_implementation): Update.
3990         * lib/gl_anylinked_list2.h (gl_linked_search_from_to): Renamed from
3991         gl_linked_search. Add start_index, end_index arguments.
3992         (gl_linked_indexof_from_to): Renamed from gl_linked_indexof. Add
3993         start_index, end_index arguments.
3994         (gl_linked_remove): Update.
3995         * lib/gl_linked_list.c (gl_linked_list_implementation): Update.
3996         * lib/gl_linkedhash_list.c (gl_linkedhash_list_implementation): Update.
3997         * lib/gl_anytree_list1.h (iterstack_item_t): Change type of 'rightp'
3998         field to 'size_t'.
3999         * lib/gl_anytree_list2.h (gl_tree_search_from_to): Renamed from
4000         gl_tree_search. Add start_index, end_index arguments.
4001         (gl_tree_indexof_from_to): Renamed from gl_tree_indexof. Add
4002         start_index, end_index arguments.
4003         (gl_tree_remove): Update.
4004         * lib/gl_avltree_list.c (gl_avltree_list_implementation): Update.
4005         * lib/gl_rbtree_list.c (gl_rbtree_list_implementation): Update.
4006         * lib/gl_anytreehash_list1.h (compare_position_threshold): New
4007         function.
4008         * lib/gl_anytreehash_list2.h (gl_tree_search_from_to): Renamed from
4009         gl_tree_search. Add start_index, end_index arguments.
4010         (gl_tree_indexof_from_to): Renamed from gl_tree_indexof. Add
4011         start_index, end_index arguments.
4012         * lib/gl_avltreehash_list.c (gl_avltreehash_list_implementation):
4013         Update.
4014         * lib/gl_rbtreehash_list.c (gl_rbtreehash_list_implementation): Update.
4015
4016 2006-10-05  Bruno Haible  <bruno@clisp.org>
4017
4018         * modules/fwriteerror (configure.ac): Define GNULIB_FWRITEERROR.
4019
4020         * lib/clean-temp.h (open_temp, fopen_temp, close_temp, fclose_temp,
4021         fwriteerror_temp): New declarations.
4022         * lib/clean-temp.c (uintptr_t): Provide fallback definition.
4023         (descriptors): New variable.
4024         (cleanup): First, close the descriptors.
4025         (register_fd, unregister_fd, open_temp, fopen_temp, close_temp,
4026         fclose_temp, fwriteerror_temp): New functions.
4027
4028 2006-10-04  Jim Meyering  <jim@meyering.net>
4029
4030         * lib/fts.c (fts_open): Tiny comment change.
4031
4032 2006-10-04  Bruno Haible  <bruno@clisp.org>
4033
4034         Make it possible to invoke AC_GNU_SOURCE after gl_LOCK_EARLY.
4035         * m4/lock.m4 (gl_LOCK_EARLY_BODY): New macro, extracted code from
4036         gl_LOCK_BODY.
4037         (gl_LOCK_EARLY): Require gl_LOCK_EARLY_BODY, not gl_LOCK_BODY.
4038         (gl_LOCK_BODY): Remove settings of CPPFLAGS, now done in
4039         gl_LOCK_EARLY_BODY.
4040         (gl_LOCK): Require gl_LOCK_BODY.
4041
4042 2006-10-04  Bruno Haible  <bruno@clisp.org>
4043
4044         * lib/gl_oset.h (gl_setelement_threshold_fn): New type.
4045         (gl_oset_search_atleast): New declaration.
4046         (struct gl_oset_implementation): Add field 'search_atleast'.
4047         (gl_oset_search_atleast): New inline function.
4048         * lib/gl_oset.c (gl_oset_search_atleast): New function.
4049         * lib/gl_array_oset.c (gl_array_search_atleast): New function.
4050         (gl_array_oset_implementation): Update.
4051         * lib/gl_anytree_oset.h (gl_tree_search_atleast): New function.
4052         * lib/gl_avltree_oset.c (gl_avltree_oset_implementation): Update.
4053         * lib/gl_rbtree_oset.c (gl_rbtree_oset_implementation): Update.
4054
4055 2006-10-04  Bruno Haible  <bruno@clisp.org>
4056
4057         * lib/fatal-signal.c (fatal_signals) [WOE32]: Add the SIGBREAK signal.
4058
4059 2006-10-03  Bruno Haible  <bruno@clisp.org>
4060
4061         * lib/gl_rbtreehash_list.c (gl_rbtreehash_list_implementation): Renamed
4062         from gl_avltreehash_list_implementation.
4063
4064 2006-10-03  Bruno Haible  <bruno@clisp.org>
4065
4066         * lib/gl_oset.c (gl_oset_add): Fix return type.
4067
4068 2006-10-02  Paolo Bonzini  <bonzini@gnu.org>  (tiny change)
4069
4070         * lib/quotearg.c (mbstate_t) [!HAVE_MBRTOWC]: #define to int.
4071
4072 2006-10-02  Eric Blake  <ebb9@byu.net>
4073
4074         * modules/strnlen (Depends-on): Add extensions.
4075
4076 2006-10-02  Eric Blake  <ebb9@byu.net>
4077
4078         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Use autoconf's
4079         definition in 2.60+.
4080
4081 2006-10-02  Dmitry V. Levin  <ldv@altlinux.org>
4082
4083         * lib/fts.c (fts_close, fts_build, fts_palloc): Remove redundant
4084         checks.
4085
4086 2006-10-02  Bruno Haible  <bruno@clisp.org>
4087
4088         * gnulib-tool (func_emit_lib_Makefile_am): Don't add no-dependencies
4089         to the AUTOMAKE_OPTIONS.
4090         Reported by Jim Meyering.
4091
4092 2006-09-29  Paul Eggert  <eggert@cs.ucla.edu>
4093
4094         Work around bug in Solaris 10 /proc file system:
4095         /proc/self/fd/NNN/.. isn't the parent directory of
4096         the directory whose file descriptor is NNN.  This needs to
4097         be worked around at run time, not compile time, since a
4098         program might be built on Solaris 8, where things work, and
4099         run on Solaris 10.
4100         * lib/openat-priv.h (BUILD_PROC_NAME): Remove.  All callers changed
4101         to use the following interface instead:
4102         (OPENAT_BUFFER_SIZE): New macro.
4103         (openat_proc_name): New function.
4104         * lib/at-func.c (AT_FUNC_NAME): Adjust to above changes.
4105         * lib/openat.c (openat_permissive, openat_needs_fchdir, fdopendir):
4106         Likewise.
4107         * lib/openat-proc.c: New file.
4108         * modules/openat (Files): Add lib/openat-proc.c.
4109         (Depends-on): Add same-inode, stdbool.
4110         * m4/openat.m4 (gl_FUNC_OPENAT): Add AC_LIBOBJ(openat-proc).
4111
4112 2006-09-29  Bruno Haible  <bruno@clisp.org>
4113
4114         * lib/fwriteerror.h (fwriteerror_no_ebadf): New declaration.
4115         * lib/(do_fwriteerror): Renamed from fwriteerror. Add ignore_ebadf
4116         argument. Set stdout_closed before testing for ferror, not after.
4117         (fwriteerror, fwriteerror_no_ebadf): New functions.
4118
4119 2006-09-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4120
4121         * m4/intmax.m4 (gt_TYPE_INTMAX_T): Avoid unused variables warning.
4122
4123 2006-09-28  Paolo Bonzini  <bonzini@gnu.org>
4124
4125         * lib/poll.c (rpl_poll) [__APPLE__]: Use FIONREAD instead of MSG_PEEK.
4126         * m4/poll.m4: Look for sys/ioctl.h and sys/filio.h.
4127
4128 2006-09-28  Jim Meyering  <jim@meyering.net>
4129
4130         * lib/mkdir-p.c: Include "dirchownmod.h", not "dirchownmod.c".
4131         Include <unistd.h>.
4132
4133 2006-09-28  Bruno Haible  <bruno@clisp.org>
4134
4135         * modules/avltreehash-list (Depends-on): Add stdint, remove size_max.
4136         * modules/linkedhash-list (Depends-on): Likewise.
4137         * modules/rbtreehash-list (Depends-on): Likewise.
4138
4139 2006-09-28  Bruno Haible  <bruno@clisp.org>
4140
4141         * lib/strndup.h: Simplify the redefinition of strndup.
4142         (_GL_CONCAT, _GL_XCONCAT, __STRNDUP_ID): Remove macros.
4143         * m4/strndup.m4 (gl_FUNC_STRNDUP): Don't define __STRNDUP_PREFIX.
4144
4145 2006-09-28  Bruno Haible  <bruno@clisp.org>
4146
4147         * lib/gl_avltreehash_list.c: Include <stdint.h> instead of size_max.h.
4148         * lib/gl_linkedhash_list.c: Likewise.
4149         * lib/gl_rbtreehash_list.c: Likewise.
4150
4151 2006-09-27  Paul Eggert  <eggert@cs.ucla.edu>
4152
4153         * lib/canon-host.c (canon_host_r): Work around bug in Darwin 7.9.0
4154         getaddrinfo.
4155
4156         * lib/__fpending.h: Don't include <stdio_ext.h> unless
4157         HAVE_DECL___FPENDING.  This avoids a bug with lsbcc, where
4158         it causes <stdio_ext.h> to cause a compile-time error.
4159         Problem reported by Nelson H. F. Beebe.
4160         * lib/getpass.c: Likewise, except for HAVE_DECL___FSETLOCKING instead
4161         of HAVE_DECL___PENDING.
4162
4163         * m4/fpending.m4 (gl_FUNC_FPENDING): Check for stdio_ext at most once.
4164         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for __fsetlocking's
4165         declaration.
4166
4167 2006-09-27  Jim Meyering  <jim@meyering.net>
4168
4169         This file could end up with a definition for a function
4170         named __strndup, rather than rpl_strndup on a system with
4171         incomplete weak_alias support.
4172         * lib/strndup.c (strndup): Rename from __strndup.
4173         Remove #defines that used to map __strndup to strndup.
4174         Don't use K&R prototypes.
4175         Remove LIBC-related code, since this file is not sync'd with glibc.
4176         * lib/strndup.h: Revamp, accordingly.
4177         * m4/strndup.m4: Modernize.
4178
4179 2006-09-26  Paul Eggert  <eggert@cs.ucla.edu>
4180
4181         * modules/savewd (Depends-on): Add 'raise'.
4182         * lib/savewd.c: Include <signal.h>, for 'raise'.
4183
4184 2006-09-26  Jim Meyering  <jim@meyering.net>
4185
4186         * m4/acl.m4 (AC_FUNC_ACL): Disable ACL support altogether
4187         when we detect Darwin 8.7.0's acl_get_file bug.
4188         Rearrange to perform the new (below) run-test while $LIBS
4189         contains any acl-related library.  Set USE_ACL at the end.
4190         (gl_ACL_GET_FILE): New function.
4191
4192 2006-09-26  Eric Blake  <ebb9@byu.net>
4193
4194         * lib/verror.c: Include <config.h> unconditionally.
4195
4196 2006-09-25  Paul Eggert  <eggert@cs.ucla.edu>
4197
4198         * modules/clock-time (Maintainer): Add self.
4199         * modules/getlogin_r (Depends-on): Add extensions.
4200
4201 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4202
4203         * modules/clock-time: New module.
4204         * modules/nanosleep (Depends-on): Add clock-time.
4205         * modules/gethrxtime (Depends-on): Likewise.
4206         * modules/gettime (Depends-on): Likewise.
4207         * modules/settime (Depends-on): Likewise.
4208
4209         * modules/fts-lgpl: Depend on openat.
4210         * modules/mkancesdirs: Depend on savewd.
4211         * modules/mkdir-p: Likewise.
4212
4213 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4214
4215         * m4/host-os.m4 (gl_HOST_OS): Require AC_CANONICAL_HOST.
4216
4217         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Rename cache variable from
4218         `gl_have_arbitrary_file_name_length_limit' to
4219         `gl_cv_have_arbitrary_file_name_length_limit', so that caching
4220         actually works between configure runs.
4221
4222 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4223             Bruno Haible  <bruno@clisp.org>
4224
4225         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Include <string.h>.
4226
4227 2006-09-25  Jim Meyering  <jim@meyering.net>
4228
4229         * m4/fcntl_h.m4 (gl_FCNTL_H): Fix typo in test for failed open.
4230         This typo caused coreutils/tests/dd/misc to fail on Darwin 8.7.0.
4231
4232 2006-09-25  Eric Blake  <ebb9@byu.net>
4233
4234         * gnulib-tool (func_import, func_create_testdir): Fix typos in
4235         exec's in 2006-09-18 patch when shuffling fds.
4236
4237 2006-09-25  Bruno Haible  <bruno@clisp.org>
4238
4239         * m4/getloadavg.m4 (gl_GETLOADAVG): Fix directory in error message.
4240         Reported by Jim Meyering.
4241
4242 2006-09-24  Jim Meyering  <jim@meyering.net>
4243
4244         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Don't use '>' to
4245         compare a pointer against a literal "0".  That caused failures with
4246         at least HP-UX's hpcc.
4247
4248 2006-09-22  Simon Josefsson  <jas@extundo.com>
4249
4250         * modules/gc-sha1:
4251         * modules/gc-md4:
4252         * modules/gc-hmac-sha1:
4253         * modules/gc-hmac-md5:
4254         * modules/gc-des:
4255         * modules/gc-arcfour: Distribute more files.
4256
4257 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4258
4259         * lib/gl_anylinked_list2.h [lint] (gl_linked_iterator)
4260         (gl_linked_iterator_from_to): Initialize struct completely.
4261         * lib/gl_anytree_list2.h [lint] (gl_tree_iterator): Likewise.
4262         (gl_tree_iterator_from_to): Likewise
4263         * lib/gl_anytree_oset.h [lint] (gl_tree_iterator): Likewise.
4264         * lib/gl_array_list.c [lint] (gl_array_iterator)
4265         (gl_array_iterator_from_to): Likewise.
4266         * lib/gl_array_oset.c [lint] (gl_array_iterator): Likewise.
4267         * lib/gl_carray_list.c [lint] (gl_carray_iterator)
4268         (gl_carray_iterator_from_to): Likewise.
4269
4270         * lib/gc-gnulib.c [GC_USE_HMAC_SHA1]: include hmac.h for hmac_sha1.
4271         * lib/md4.c (md4_process_block): Remove unused variable.
4272         * lib/rijndael-api-fst.c (rijndaelBlockDecrypt): GCC suggests
4273         parentheses for clarity.
4274
4275 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4276
4277         * modules/bison-i18n (Depends-on): Add gettext.
4278
4279 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4280
4281         * m4/fsusage.m4 (gl_STATFS_TRUNCATES): Avoid unused variable.
4282         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): Likewise.
4283         * m4/jm-winsz1.m4 (gl_HEADER_TIOCGWINSZ_IN_TERMIOS_H): Likewise;
4284         also add missing comma that caused broken test.
4285         * m4/link-follow.m4 (gl_AC_FUNC_LINK_FOLLOWS_SYMLINK): Include
4286         stdlib.h, for `abort'.
4287         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Avoid unused
4288         variables.
4289         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Check for and
4290         include unistd.h if present, for `rmdir'.
4291         * m4/physmem.m4 (gl_SYS__SYSTEM_CONFIGURATION): Avoid unused
4292         variables.
4293         * m4/putenv.m4 (gl_FUNC_PUTENV): Rewrite using AC_RUN_IFELSE, and
4294         in the process include standard headers for prototypes.
4295         * m4/readutmp.m4 (gl_READUTMP): Require AC_GNU_SOURCE, so utmpxname
4296         gets declared on GNU/Linux.
4297         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Check for and include
4298         unistd.h, for `rmdir'.
4299         * m4/time_r.m4 (gl_TIME_R): Avoid unused variables.
4300
4301         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Avoid expression that is
4302         always true.
4303         * m4/strndup.m4 (gl_FUNC_STRNDUP): include stdlib.h, for `free'.
4304
4305         * m4/sockpfaf.m4 (gl_SOCKET_FAMILIES): Avoid gcc -Wall warnings.
4306
4307 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4308
4309         * gnulib-tool (func_version): Create output all at once.  This
4310         may help avoid triggering unnecessary SIGPIPEs, and at any
4311         rate it doesn't hurt.
4312
4313 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4314             Bruno Haible  <bruno@clisp.org>
4315
4316         * m4/lock.m4 (gl_LOCK_BODY): Avoid unused variables warning.
4317         * m4/mbswidth.m4 (gl_MBSWIDTH): Likewise.
4318         * m4/signed.m4 (bh_C_SIGNED): Likewise.
4319
4320         * m4/vasprintf.m4 (gl_PREREQ_VASPRINTF_H): New macro.
4321         (gl_FUNC_VASPRINTF): Invoke it.
4322
4323 2006-09-22  Bruno Haible  <bruno@clisp.org>
4324
4325         * m4/getloadavg.m4 (gl_GETLOADAVG): Expect the directory of
4326         getloadavg.c as first argument.
4327
4328 2006-09-22  Bruno Haible  <bruno@clisp.org>
4329
4330         * gnulib-tool (func_import, func_create_testdir): Set gl_source_base
4331         at the beginning of the gl_INIT macro.
4332         * modules/getloadavg (configure.ac): Pass $gl_source_base to
4333         gl_GETLOADAVG.
4334
4335 2006-09-22  Bruno Haible  <bruno@clisp.org>
4336
4337         * gnulib-tool (func_create_megatestdir): Don't include the config-h
4338         module.
4339         Suggested by Ralf Wildenhues.
4340
4341 2006-09-20  Paul Eggert  <eggert@cs.ucla.edu>
4342
4343         Import this patch from libc:
4344
4345         2006-09-06  Jakub Jelinek  <jakub@redhat.com>
4346
4347         * lib/regex_internal.c (re_string_reconstruct): Handle
4348         offset < pstr->valid_raw_len && pstr->offsets_needed case.
4349         Ensure no bytes read before raw_mbs array.  Pass a saved copy of
4350         pstr->valid_len - 1 rather than pstr->valid_raw_len - 1 to
4351         re_string_context_at.
4352
4353         * m4/regex.m4 (gl_REGEX): Check for locale.h, since the test
4354         now requires it.
4355         (gl_PREREQ_REGEX): Don't check for locale.h any more, since
4356         gl_REGEX now does it for us.
4357         (gl_REGEX): Add test taken from
4358         http://sourceware.org/ml/libc-hacker/2006-09/msg00008.html.
4359
4360         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Require AC_SYS_LARGEFILE.
4361         Check that large offsets work.  Modernize Autoconf usages.
4362         Prefer "yes" to mean a good thing rather than a bad.
4363         Don't put "#define mkstemp" in config.h, as this might interfere
4364         with standard system headers that "#define mkstemp mkstemp64".
4365
4366         * modules/mkstemp (Depends-on): Add extensions, so that
4367         mkstemp is visible on some platforms.
4368         (Makefile.am): Add mkstemp.h to EXTRA_DIST.
4369         (Include): Change to "mkstemp.h" from <stdlib.h>.
4370         (Files): Add mkstemp.h.
4371
4372         * lib/mkstemp.h: New file, since some standard headers
4373         #define mkstemp.
4374         * lib/mkstemp.c: Revamp to put the !_LIBC code together.
4375         Include "mkstemp.h".
4376         Make the _LIBC code resemble glibc original more,
4377         e.g., use K&R style.
4378         * lib/mkstemp-safer.c: Include "mkstemp.h" instead of <stdlib.h>.
4379         (mkstemp): Remove, since mkstemp.h does this for us.
4380         * lib/stdlib--.h: Include mkstemp.h.
4381
4382         Import this patch from libc:
4383
4384         2006-04-07  Ulrich Drepper  <drepper@redhat.com>
4385
4386         * lib/tempname.c (__gen_tempname): Change attempts_min
4387         into a macro.  Use preprocessor to decide how to initialize
4388         attempts [Coverity CID 67].
4389
4390 2006-09-20  Bruno Haible  <bruno@clisp.org>
4391
4392         * lib/mkdtemp.c: Import from libc.
4393         2006-04-07  Ulrich Drepper  <drepper@redhat.com>
4394                 * sysdeps/posix/tempname.c (__gen_tempname): Change
4395                 attempts_min into a macro.  Use preprocessor to decide how to
4396                 initialize attempts [Coverity CID 67].
4397         2001-11-27  Paul Eggert  <eggert@twinsun.com>
4398                 * sysdeps/posix/tempname.c (__gen_tempname): Try at least
4399                 ATTEMPTS_MIN or TMP_MAX times, whichever is greater.
4400
4401 2006-09-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4402
4403         * gnulib-tool (func_exit): New function, to allow to pass the
4404         exit status portably through the trap.  Use everywhere.
4405         (--help, --version): Signal a write error.
4406         (trap): catch SIGPIPE, for write errors.
4407         Exit at the end of the trap, with the correct exit status.
4408
4409 2006-09-19  Karl Berry  <karl@gnu.org>
4410
4411         * doc/gnulib.texi: note about the license texinfo files.
4412
4413 2006-09-19  Eric Blake  <ebb9@byu.net>
4414
4415         * gnulib-tool: Avoid space-tab.
4416
4417 2006-09-18  Paul Eggert  <eggert@cs.ucla.edu>
4418
4419         * lib/getaddrinfo.c (getaddrinfo) [defined HAVE_IPV6]: Fix typo
4420         that prevented coreutils 6.1 from building.  Problem reported
4421         by Petter Reinholdtsen.
4422
4423 2006-09-18  Paul Eggert  <eggert@cs.ucla.edu>
4424
4425         * gnulib-tool (avoidlist): Fix typo that broke options like
4426         --avoid=lock that are used by coreutils bootstrap.
4427
4428 2006-09-18  Mark D. Baushke  <mdb@gnu.org>
4429
4430         * m4/inttypes.m4 (gl_INTTYPES_H): Quote "test" args
4431         more systematically.
4432
4433 2006-09-18  Jim Meyering  <jim@meyering.net>
4434
4435         * lib/savewd.c (savewd_restore): Don't shadow: s/status/child_status/.
4436
4437 2006-09-18  Bruno Haible  <bruno@clisp.org>
4438
4439         * modules/inttypes (Files): Remove m4/inttypes-h.m4.
4440
4441 2006-09-18  Bruno Haible  <bruno@clisp.org>
4442
4443         * m4/inttypes-h.m4 (gl_HEADER_INTTYPES_H): Remove macro.
4444         * m4/inttypes-pri.m4: Require autoconf >= 2.52.
4445         (gt_INTTYPES_PRI): Invoke AC_CHECK_HEADERS on inttypes.h. Test
4446         ac_cv_header_inttypes_h instead of gl_cv_header_inttypes_h.
4447         * m4/gettext.m4: Require autoconf >= 2.52.
4448         (gt_INTL_SUBDIR_CORE): Invoke AC_CHECK_HEADERS on inttypes.h.
4449         * m4/inttypes.m4 (gl_INTTYPES_H): Test ac_cv_header_inttypes_h instead
4450         of gl_cv_header_inttypes_h.
4451
4452 2006-09-18  Bruno Haible  <bruno@clisp.org>
4453
4454         * lib/javaversion.c: Include configmake.h.
4455
4456 2006-09-18  Bruno Haible  <bruno@clisp.org>
4457
4458         * gnulib-tool (func_import, func_create_testdir): Use exec tricks to
4459         avoid that the while loops be executed in a subshell.
4460
4461 2006-09-18  Bruno Haible  <bruno@clisp.org>
4462
4463         * MODULES.html.sh (func_module): Break long lines.
4464         Suggested by Bruce Korb <bkorb@gnu.org>.
4465
4466 2006-09-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4467
4468         Speed up by a factor of 1.12.
4469         * gnulib-tool (nl): New variable.
4470         (func_import): Rewrite include directive extraction to only read each
4471         directive once.
4472
4473 2006-09-17  Bruno Haible  <bruno@clisp.org>
4474
4475         * modules/javaversion (Makefile.am): Remove DEFS setting.
4476         (Depends-on): Add configmake, for PKGDATADIR definition.
4477
4478 2006-09-17  Bruno Haible  <bruno@clisp.org>
4479
4480         * gnulib-tool (func_create_testdir): Rewrite all files at once.
4481
4482 2006-09-17  Bruno Haible  <bruno@clisp.org>
4483
4484         * gnulib-tool (func_append): New function, stolen from libtool.m4.
4485         (func_modules_transitive_closure, func_modules_add_dummy,
4486         func_modules_to_filelist, func_import, func_create_testdir,
4487         func_create_megatestdir, ...): Use it wherever possible.
4488         Suggested by Ralf Wildenhues.
4489
4490 2006-09-16  Karl Berry  <karl@gnu.org>
4491
4492         * doc/fdl.texi (ADDENDUM): switch to @heading from @appendixsubsec,
4493         to avoid sectioning errors.
4494         * doc/lgpl.texi, gpl.texi (Copying): downcase @unnumbered title.
4495         [ifinfo]: blank line after @center-ed titles.
4496         * doc/lgpl.texi (Library Copying): Rename main node to GNU LGPL.
4497         Spell FSF address consistently with others.
4498         (These changes approved by rms.)
4499
4500 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4501
4502         Speed up by a factor of 1.61.
4503         * gnulib-tool (func_modules_transitive_closure): Rewrite to not check
4504         already checked module names again.
4505
4506 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4507
4508         Speed up by a factor of 1.13.
4509         * gnulib-tool (func_import): Rewrite all old_files at once; likewise
4510         for new_files, and the input to func_add_or_update.
4511
4512 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4513
4514         * gnulib-tool (func_all_modules, func_modules_to_filelist, func_import,
4515         func_create_testdir, ...): Change 'sort | uniq' to 'sort -u'.
4516
4517 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
4518
4519         * modules/mkancesdirs (Depends-on): Add fcntl.
4520         * modules/savewd: New file.
4521         * MODULES.html.sh (File system functions): Add savewd.
4522
4523         * modules/configmake (Makefile.am): Add support for the
4524         Automake-supplied PKGLIBDIR, PKGINCLUDEDIR, PKGDATADIR.
4525
4526 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
4527
4528         * m4/savewd.m4: New file.
4529
4530 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
4531
4532         * lib/dirchownmod.c: Don't include fcntl.h; no longer needed.
4533         (dirchownmod): New arg FD.  All callers changed.
4534         Use FD rather than opening the directory ourself, as opening is
4535         now the caller's responsibility.
4536         * lib/dirchownmod.h: Likewise.
4537         * lib/mkancesdirs.c: Include <sys/types.h>, for portability to older
4538         hosts that require <sys/types.h> before <sys/stat.h>.  Include
4539         fcntl.h, savewd.h, and unistd.h, not dirname.h and stat-macros.h.
4540         (test_dir): Remove.
4541         (mkancesdirs): Return length of prefix of FILE that has already
4542         been made, or -2 if there is a child doing the work.  Redo
4543         algorithm so that it is O(N) rather than O(N**2).  Optimize away
4544         ".", and treat ".." specially since it might stray back into
4545         already-created areas.  Use a subprocess if necessary.  New arg
4546         WD; all users changed.  MAKE_DIR function should now return 1
4547         if it creates a directory that is not readable.  Return -2 if
4548         a child process is spun off.
4549         * lib/mkancesdirs.h: Include <stddef.h>, for ptrdiff_t.
4550         Adjust signature to match code.
4551         * lib/mkdir-p.c: Include dirname.h, for IS_ABSOLUTE_FILE_NAME.
4552         (make_dir_parents): Use a subprocess if necessary.  New arg WD;
4553         all users changed.
4554         * lib/savewd.c, lib/savewd.h: New files.
4555
4556 2006-09-15  Jim Meyering  <jim@meyering.net>
4557
4558         * modules/rename-dest-slash: New module.
4559         * MODULES.html.sh (posix_compat): Add it here.
4560
4561         * modules/rename: Reflect vb_FUNC_RENAME -> gl_FUNC_RENAME change.
4562
4563 2006-09-15  Jim Meyering  <jim@meyering.net>
4564
4565         * m4/rename-dest-slash.m4 (gl_FUNC_RENAME_TRAILING_DEST_SLASH): New
4566         file.
4567
4568         * m4/rename.m4 (gl_FUNC_RENAME): Rename from vb_FUNC_RENAME.
4569
4570 2006-09-15  Jim Meyering  <jim@meyering.net>
4571
4572         * lib/rename-dest-slash.c (has_trailing_slash): Use
4573         FILE_SYSTEM_PREFIX_LEN, for non-POSIX systems.
4574         (rpl_rename_dest_slash): Perform the cheaper trailing slash
4575         test before testing whether SRC is a directory.
4576         Suggestions from Bruno Haible.
4577
4578         Avoid a warning about an unused variable.
4579         * lib/regex_internal.c (re_dfa_add_node): Move declaration of "type"
4580         into the #ifdef block where it's used.
4581
4582         * lib/rename-dest-slash.c: New file.
4583
4584 2006-09-14  Bruno Haible  <bruno@clisp.org>
4585
4586         * lib/allocsa.c: Include <config.h> unconditionally.
4587         * lib/asnprintf.c: Likewise.
4588         * lib/asprintf.c: Likewise.
4589         * lib/c-strcasecmp.c: Likewise.
4590         * lib/c-strcasestr.c: Likewise.
4591         * lib/c-strncasecmp.c: Likewise.
4592         * lib/c-strstr.c: Likewise.
4593         * lib/classpath.c: Likewise.
4594         * lib/clean-temp.c: Likewise.
4595         * lib/concatpath.c: Likewise.
4596         * lib/copy-file.c: Likewise.
4597         * lib/csharpcomp.c: Likewise.
4598         * lib/csharpexec.c: Likewise.
4599         * lib/execute.c: Likewise.
4600         * lib/fatal-signal.c: Likewise.
4601         * lib/findprog.c: Likewise.
4602         * lib/fwriteerror.c: Likewise.
4603         * lib/gl_array_list.c: Likewise.
4604         * lib/gl_array_oset.c: Likewise.
4605         * lib/gl_avltree_list.c: Likewise.
4606         * lib/gl_avltree_oset.c: Likewise.
4607         * lib/gl_avltreehash_list.c: Likewise.
4608         * lib/gl_carray_list.c: Likewise.
4609         * lib/gl_linked_list.c: Likewise.
4610         * lib/gl_linkedhash_list.c: Likewise.
4611         * lib/gl_list.c: Likewise.
4612         * lib/gl_oset.c: Likewise.
4613         * lib/gl_rbtree_list.c: Likewise.
4614         * lib/gl_rbtree_oset.c: Likewise.
4615         * lib/gl_rbtreehash_list.c: Likewise.
4616         * lib/imaxabs.c: Likewise.
4617         * lib/imaxdiv.c: Likewise.
4618         * lib/javacomp.c: Likewise.
4619         * lib/javaexec.c: Likewise.
4620         * lib/javaversion.c: Likewise.
4621         * lib/linebreak.c: Likewise.
4622         * lib/localcharset.c: Likewise.
4623         * lib/lock.c: Likewise.
4624         * lib/mbchar.c: Likewise.
4625         * lib/mbswidth.c: Likewise.
4626         * lib/mkdtemp.c: Likewise.
4627         * lib/pipe.c: Likewise.
4628         * lib/printf-args.c: Likewise.
4629         * lib/printf-parse.c: Likewise.
4630         * lib/progname.c: Likewise.
4631         * lib/progreloc.c: Likewise.
4632         * lib/readlink.c: Likewise.
4633         * lib/sh-quote.c: Likewise.
4634         * lib/stpcpy.c: Likewise.
4635         * lib/stpncpy.c: Likewise.
4636         * lib/strcasecmp.c: Likewise.
4637         * lib/strcasestr.c: Likewise.
4638         * lib/strcspn.c: Likewise.
4639         * lib/striconv.c: Likewise.
4640         * lib/strncasecmp.c: Likewise.
4641         * lib/strnlen1.c: Likewise.
4642         * lib/strstr.c: Likewise.
4643         * lib/strtok_r.c: Likewise.
4644         * lib/tls.c: Likewise.
4645         * lib/tmpdir.c: Likewise.
4646         * lib/unicodeio.c: Likewise.
4647         * lib/unsetenv.c: Likewise.
4648         * lib/vasnprintf.c: Likewise.
4649         * lib/vasprintf.c: Likewise.
4650         * lib/wait-process.c: Likewise.
4651         * lib/xallocsa.c: Likewise.
4652         * lib/xsetenv.c: Likewise.
4653         * lib/xstriconv.c: Likewise.
4654
4655 2006-09-13  Simon Josefsson  <jas@extundo.com>
4656
4657         * m4/getdate.m4: Don't AC_LIBOBJ([getdate]), automake takes care of
4658         that internally, suggested by Ralf Wildenhues
4659         <Ralf.Wildenhues@gmx.de>.
4660
4661 2006-09-13  Simon Josefsson  <jas@extundo.com>
4662
4663         * gnulib-tool (func_emit_lib_Makefile_am): Use $(LIBOBJS), not
4664         @LIBOBJS@.
4665         Suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
4666
4667 2006-09-13  Paul Eggert  <eggert@cs.ucla.edu>
4668
4669         * lib/_fpending.c: Include <config.h> unconditionally, since we no
4670         longer worry about uses that don't define HAVE_CONFIG_H.
4671         * lib/acl.c, lib/alloca.c, lib/argmatch.c, lib/atexit.c:
4672         * lib/backupfile.c, lib/basename.c, lib/c-stack.c, lib/c-strtod.c:
4673         * lib/calloc.c,lib/ canon-host.c, lib/canonicalize.c, lib/chdir-long.c:
4674         * lib/chdir-safer.c, lib/chown.c, lib/cloexec.c, lib/close-stream.c:
4675         * lib/closeout.c, lib/creat-safer.c, lib/cycle-check.c, lib/diacrit.c:
4676         * lib/dirchownmod.c, lib/dirfd.c, lib/dirname.c, lib/dup-safer.c:
4677         * lib/dup2.c, lib/error.c, lib/euidaccess.c, lib/exclude.c:
4678         * lib/exitfail.c, lib/fchmodat.c, lib/fchown-stub.c, lib/fd-safer.c:
4679         * lib/file-type.c, lib/fileblocks.c, lib/filemode.c, lib/filenamecat.c:
4680         * lib/fnmatch.c, lib/fopen-safer.c, lib/fprintftime.c, lib/free.c:
4681         * lib/fsusage.c, lib/ftruncate.c, lib/fts-cycle.c, lib/fts.c:
4682         * lib/full-write.c, lib/gai_strerror.c, lib/getcwd.c, lib/getdate.y:
4683         * lib/getdomainname.c, lib/getgroups.c, lib/gethostname.c:
4684         * lib/gethrxtime.c, lib/getloadavg.c, lib/getlogin_r.c:
4685         * lib/getndelim2.c, lib/getnline.c, lib/getopt.c, lib/getopt1.c:
4686         * lib/getpass.c, lib/gettime.c, lib/gettimeofday.c, lib/getugroups.c:
4687         * lib/getusershell.c, lib/glob.c, lib/group-member.c:
4688         * lib/hard-locale.c, lib/hash-pjw.c, lib/hash.c, lib/human.c:
4689         * lib/idcache.c, lib/inet_ntop.c, lib/inet_pton.c, lib/inttostr.c:
4690         * lib/isdir.c, lib/lchown.c, lib/linebuffer.c, lib/long-options.c:
4691         * lib/lstat.c, lib/malloc.c, lib/md5.c, lib/memcasecmp.c, lib/memchr.c:
4692         * lib/memcmp.c, lib/memcoll.c, lib/memcpy.c, lib/memmove.c:
4693         * lib/memrchr.c, lib/mkancesdirs.c, lib/mkdir-p.c, lib/mkdir.c:
4694         * lib/mkdirat.c, lib/mkstemp-safer.c, lib/mkstemp.c, lib/modechange.c:
4695         * lib/mountlist.c, lib/nanosleep.c, lib/obstack.c, lib/open-safer.c:
4696         * lib/openat-die.c, lib/openat.c, lib/pagealign_alloc.c, lib/physmem.c:
4697         * lib/pipe-safer.c, lib/posixtm.c, lib/posixver.c, lib/putenv.c:
4698         * lib/quote.c, lib/quotearg.c, lib/raise.c, lib/readtokens.c:
4699         * lib/readtokens0.c, lib/readutmp.c, lib/realloc.c, lib/regex.c:
4700         * lib/rename.c, lib/rmdir.c, lib/rpmatch.c, lib/safe-read.c:
4701         * lib/same.c, lib/save-cwd.c, lib/savedir.c, lib/setenv.c:
4702         * lib/settime.c, lib/sha1.c, lib/sig2str.c, lib/snprintf.c:
4703         * lib/strdup.c, lib/strerror.c, lib/strftime.c, lib/stripslash.c:
4704         * lib/strndup.c, lib/strnlen.c, lib/strpbrk.c, lib/strtod.c:
4705         * lib/strtoimax.c, lib/strtol.c, lib/strverscmp.c, lib/tempname.c:
4706         * lib/time_r.c, lib/timegm.c, lib/tmpfile-safer.c, lib/unlinkdir.c:
4707         * lib/userspec.c, lib/utime.c, lib/utimecmp.c, lib/utimens.c:
4708         * lib/version-etc-fsf.c, lib/version-etc.c, lib/xalloc-die.c:
4709         * lib/xgetcwd.c, lib/xgethostname.c, lib/xmalloc.c, lib/xmemcoll.c:
4710         * lib/xnanosleep.c, lib/xreadlink.c, lib/xstrtod.c, lib/xstrtoimax.c:
4711         * lib/xstrtol.c, lib/xstrtoumax.c, lib/yesno.c:
4712         Likewise.
4713
4714 2006-09-13  Eric Blake  <ebb9@byu.net>
4715
4716         * lib/getopt.c: Fix typo in last commit.
4717
4718 2006-09-12  Sergey Poznyakoff  <gray@gnu.org.ua>
4719
4720         * lib/argp-help.c (argp_doc): Make sure NULL is not passed to
4721         dgettext.
4722
4723 2006-09-12  Jim Meyering  <jim@meyering.net>
4724
4725         * lib/nanosleep.c: Include <sys/types.h> before sys/select.h, to avoid
4726         compilation failure (due to use of pid_t in latter) on NetBSD 1.6.
4727         Reported by Nelson H. F. Beebe.
4728
4729 2006-09-10  Sergey Poznyakoff  <gray@gnu.org.ua>
4730
4731         * lib/argp-parse.c (__argp_parse) [!_LIBC]: Make sure
4732         program_invocation_name and program_invocation_short_name are
4733         initialized.
4734         * lib/argp-namefrob.h: Move declarations of program_invocation_name
4735         and program_invocation_short_name to argp.h, so they are visible
4736         to user programs.
4737         * lib/argp.h: Likewise
4738
4739 2006-09-10  Bruno Haible  <bruno@clisp.org>
4740
4741         * modules/mkdtemp (Files): Remove m4/ulonglong.m4, m4/stdint_h.m4,
4742         m4/inttypes_h.m4, m4/uintmax_t.m4.
4743
4744 2006-09-10  Bruno Haible  <bruno@clisp.org>
4745
4746         * m4/mkdtemp.m4 (gl_PREREQ_MKDTEMP): Don't require
4747         gl_AC_TYPE_UINTMAX_T.
4748
4749 2006-09-10  Bruno Haible  <bruno@clisp.org>
4750
4751         * lib/mkdtemp.c: Include <stdint.h> always. Don't include <inttypes.h>.
4752
4753 2006-09-09  Sergey Poznyakoff  <gray@gnu.org.ua>
4754
4755         * lib/argp.h (struct argp): Document the N_("..") "\v" N_("..")
4756         convention.  Text proposed by Bruno Haible.
4757         (struct argp_option): Document the use of N_() wrappers.
4758
4759         * lib/argp-help.c (argp_doc): Split the untranslated doc string on
4760         '\v', and translate the two parts separately, instead of feeding
4761         the whole string to gettext.  This allows to exclude
4762         '\v' from the strings visible to the translator by writing doc
4763         strings as N_("..") "\v" N_("..").
4764
4765 2006-09-09  Paul Eggert  <eggert@cs.ucla.edu>
4766
4767         * config/srclist.txt: Undo latest change; the bug was fixed.
4768
4769 2006-09-09  Bruno Haible  <bruno@clisp.org>
4770
4771         * gnulib-tool (func_emit_lib_Makefile_am): Eliminate lib_LDFLAGS
4772         assignments if building a library without libtool.
4773         (func_emit_tests_Makefile_am): Likewise. Handle lib_* variables as
4774         in func_emit_lib_Makefile_am.
4775         (func_import): When building a static library libfoo.a, arrange to
4776         define variables LIBFOO_LIBDEPS and LIBFOO_LTLIBDEPS.
4777         (func_create_testdir): Likewise.
4778         * modules/gc (configure.ac, Makefile.am): If building statically,
4779         augment gl_libdeps and gl_ltlibdeps instead of lib_LDFLAGS.
4780         * modules/iconvme (configure.ac, Makefile.am): Likewise.
4781         * modules/striconv (configure.ac, Makefile.am): Likewise.
4782         Based on a suggestion by Ralf Wildenhues.
4783
4784 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
4785
4786         * m4/mktime.m4 (AC_FUNC_MKTIME): Sync from Autoconf.
4787         Check for unistd.h too, since Autoconf doesn't assume POSIX.
4788         Also:
4789
4790         2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
4791         Add year_2050_test to catch glibc bug 2821
4792         <http://sourceware.org/bugzilla/show_bug.cgi?id=2821>.
4793
4794         2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
4795         Prefer #ifdef to #if.
4796
4797         2006-04-02  Paul Eggert  <eggert@cs.ucla.edu>
4798         Return from 'main' instead of calling 'exit'.
4799
4800 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
4801
4802         * lib/mktime.c (guess_time_tm): Fix bug where mktime
4803         returned the maximum time_t value rather than (time_t) -1.
4804         Problem originally reported by William Bardwell
4805         <http://sourceware.org/bugzilla/show_bug.cgi?id=2821>.
4806
4807         * lib/isapipe.h (HAVE_FIFO_PIPES) [!defined HAVE_FIFO_PIPES]:
4808         Moved to here ...
4809         * lib/isapipe.c (HAVE_FIFO_PIPES) [!defined HAVE_FIFO_PIPES]:
4810         ... from here.
4811
4812 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
4813
4814         * config/srclist.txt: Temporarily comment out mktime.c until glibc bug
4815         2821 is fixed.
4816
4817 2006-09-08  Jim Meyering  <jim@meyering.net>
4818
4819         Don't make generated files read-only.  That would bother too many
4820         people.  However, do retain the ability to work when targets are
4821         read-only: remove the destination and temporary files before writing
4822         them (when generated via sed or echo), or by using the -f option for
4823         both cp and mv commands.  Suggestion to use -f from Paul Eggert.
4824         * modules/alloca-opt, modules/argz, modules/arpa_inet:
4825         * modules/byteswap, modules/configmake, modules/fcntl:
4826         * modules/fnmatch, modules/getopt, modules/glob, modules/inttypes:
4827         * modules/localcharset, modules/netinet_in, modules/poll:
4828         * modules/stdbool, modules/stdint, modules/sys_select:
4829         * modules/sys_socket, modules/sys_stat, modules/sysexits:
4830
4831 2006-09-08  Jim Meyering  <jim@meyering.net>
4832
4833         Avoid new build failure on FreeBSD 6.0.
4834         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Include
4835         <sys/param.h> when testing whether getmntinfo uses statvfs.  Patch by
4836         Pavel Tsekov, in <http://savannah.gnu.org/bugs/?17643>.
4837
4838 2006-09-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4839
4840         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Don't use plain echo.
4841
4842 2006-09-07  Jim Meyering  <jim@meyering.net>
4843
4844         Fix global typo in last change: use chmod u-w, not chmod u-x.
4845         Spotted by Paul Eggert and Bruce Korb.
4846         * modules/alloca-opt, modules/argz, modules/arpa_inet:
4847         * modules/byteswap, modules/configmake, modules/fcntl:
4848         * modules/fnmatch, modules/getopt, modules/glob, modules/inttypes:
4849         * modules/localcharset, modules/netinet_in, modules/poll:
4850         * modules/stdbool, modules/stdint, modules/sys_select:
4851         * modules/sys_socket, modules/sys_stat, modules/sysexits:
4852
4853 2006-09-06  Jim Meyering  <jim@meyering.net>
4854
4855         Make generated files be read-only.
4856         * modules/alloca-opt (Makefile.am): Work also when $@ is read-only.
4857         Ensure that each generated file is now read-only.
4858         * modules/argz: Likewise.
4859         * modules/arpa_inet: Likewise.
4860         * modules/byteswap: Likewise.
4861         * modules/configmake: Likewise.
4862         * modules/fcntl: Likewise.
4863         * modules/fnmatch: Likewise.
4864         * modules/getopt: Likewise.
4865         * modules/glob: Likewise.
4866         * modules/inttypes: Likewise.
4867         * modules/netinet_in: Likewise.
4868         * modules/poll: Likewise.
4869         * modules/stdbool: Likewise.
4870         * modules/stdint: Likewise.
4871         * modules/sys_select: Likewise.
4872         * modules/sys_socket: Likewise.
4873         * modules/sys_stat: Likewise.
4874         * modules/sysexits: Likewise.
4875         * modules/localcharset: Same as above, but continue using temporary
4876         file named "t-$@" (why different?) rather than the "$@-t" used
4877         everywhere else.
4878
4879         * modules/sysexits (Makefile.am): Replace literal occurrences
4880         of "sysexit.h" more readable, and more consistent, "$@".
4881
4882 2006-09-06  Bruno Haible  <bruno@clisp.org>
4883
4884         * modules/striconv: New file.
4885         * modules/xstriconv: New file.
4886         * MODULES.html.sh (Internationalization functions): Add striconv,
4887         xstriconv.
4888
4889 2006-09-06  Bruno Haible  <bruno@clisp.org>
4890
4891         * modules/gc (Makefile.am): Augment lib_LDFLAGS, not lib_LIBADD.
4892         * modules/iconvme (Makefile.am): Likewise. Also handle the case of
4893         not using libtool correctly.
4894
4895 2006-09-06  Bruno Haible  <bruno@clisp.org>
4896
4897         * lib/striconv.h: New file.
4898         * lib/striconv.c: New file, merging iconvme.c with GNU gettext's
4899         iconvstring.c.
4900         * lib/xstriconv.h: New file.
4901         * lib/xstriconv.c: New file.
4902
4903 2006-09-06  Bruno Haible  <bruno@clisp.org>
4904
4905         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
4906         lib_..._LDFLAGS.
4907
4908 2006-09-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4909
4910         * lib/argz_.h: Sync from Libtool.
4911
4912         2006-09-04  George Bosilca <bosilca@cs.utk.edu>
4913                 and Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4914
4915         * lib/libltdl/argz_.h: It's __cplusplus, not _cplusplus.
4916
4917 2006-09-05  Davide Angelocola  <davide.angelocola@tiscali.it>
4918
4919         * modules/trim: New file.
4920
4921 2006-09-05  Davide Angelocola  <davide.angelocola@tiscali.it>
4922
4923         * lib/trim.h: New file.
4924         * lib/trim.c: New file.
4925
4926 2006-09-05  Bruno Haible  <bruno@clisp.org>
4927
4928         * MODULES.html.sh (String handling): Add trim.
4929
4930 2006-09-04  Karl Berry  <karl@gnu.org>
4931
4932         * config/srclist.txt (signed.m4, gettext.m4): changes not propagated
4933         until next release.
4934
4935 2006-09-03  Bruno Haible  <bruno@clisp.org>
4936
4937         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Locate mingw shared libraries
4938         correctly.
4939
4940 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
4941
4942         * m4/getloadavg.m4 (gl_GETLOADAVG): Use CONFIGURING_GETLOADAVG,
4943         not gl_GETLOADAVG.  Omit unneeded semicolons.
4944         Problems reported by Ralf Wildenhues in
4945         <http://lists.gnu.org/archive/html/bug-gnulib/2006-09/msg00000.html>.
4946         (gl_PREREQ_GETLOADAVG): Use AC_DEFUN, not m4_define.  Put
4947         at the end, which is the usual gnulib style.
4948
4949         * m4/fstypename.m4 (gl_FSTYPENAME): Use AC_CHECK_MEMBERS instead
4950         of doing all the work ourselves.
4951         * m4/fsusage.m4 (gl_PREREQ_FSUSAGE_EXTRA): Don't check for
4952         sys/statvfs.h since the code doesn't use HAVE_SYS_STATVFS_H.
4953
4954 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
4955
4956         * lib/getloadavg.c: Use CONFIGURING_GETLOADAVG, not gl_GETLOADAVG.
4957         Problem reported by Ralf Wildenhues in
4958         <http://lists.gnu.org/archive/html/bug-gnulib/2006-09/msg00000.html>.
4959
4960         * lib/mountlist.c: All uses of HAVE_F_FSTYPENAME_IN_STATFS replaced by
4961         HAVE_STRUCT_STATFS_F_FSTYPENAME.
4962
4963 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
4964
4965         * gnulib-tool (func_emit_lib_Makefile_am): Fix typos in
4966         yesterday's patch by changing test -n to test -z.
4967
4968 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
4969
4970         * modules/getloadavg (Files): Add m4/getloadavg.m4.
4971         (configure.ac): AC_FUNC_GETLOADAVG -> gl_GETLOADAVG, as
4972         the former is now obsolescent.
4973
4974         * modules/chdir-long (Depends-on): Add fcntl.
4975
4976 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
4977
4978         * m4/fnmatch.m4: Add comment that Autoconf AC_FUNC_FNMATCH is
4979         obsolescent, and programs should use gnulib instead.
4980         * m4/getloadavg.m4: New file, with contents taken from Autoconf
4981         but with prefixes changed.
4982
4983 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
4984
4985         * lib/getloadavg.c [defined gl_GETLOADAVG]: Don't include config.h
4986         or stdbool.h, because they might not exist while configuring.
4987
4988         * lib/chdir-long.c: Include <fcntl.h>, for O_DIRECTORY.
4989         Don't include unistd.h or limits.h; not needed, since chdir-long.h
4990         does that for us.
4991         (O_DIRECTORY): Remove.
4992
4993 2006-08-31  Eric Blake  <ebb9@byu.net>
4994
4995         * gnulib-tool: Don't let emacs change spaces to TAB.
4996
4997 2006-08-31  Bruno Haible  <bruno@clisp.org>
4998
4999         * gnulib-tool: When calling func_import more than once, do it in a
5000         subshell.
5001         Reported by Eric Blake <ebb9@byu.net>.
5002
5003 2006-08-31  Bruno Haible  <bruno@clisp.org>
5004
5005         * gnulib-tool (nl): Remove variable.
5006         (sed_transform_lib_file): Use more robust test for config-h module.
5007         (func_import): Fix typo in 2006-08-25 patch.
5008
5009 2006-08-31  Bruno Haible  <bruno@clisp.org>
5010
5011         * gnulib-tool (func_emit_lib_Makefile_am): When --makefile-name was
5012         specified, augment Makefile.am variables instead of assigning them.
5013
5014 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
5015
5016         Work around a bug in both the Linux and SunOS 64-bit kernels:
5017         nanosleep mishandles sleeps for longer than 2**31 seconds.
5018         Problem reported by Frank v Waveren in
5019         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00298.html>.
5020         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Require gl_CLOCK_TIME.
5021         Check for nanosleep bug.
5022         (LIB_NANOSLEEP): Append clock_gettime library if needed.
5023
5024 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
5025
5026         Work around a bug in both the Linux and SunOS 64-bit kernels:
5027         nanosleep mishandles sleeps for longer than 2**31 seconds.
5028         Problem reported by Frank v Waveren in
5029         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00298.html>.
5030         * lib/nanosleep.c (BILLION): New constant.
5031         (getnow) [HAVE_BUG_BIG_NANOSLEEP]: New functions.
5032         (rpl_nanosleep) [HAVE_BUG_BIG_NANOSLEEP]: Completely new
5033         implementation.
5034
5035 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
5036
5037         * modules/nanosleep (Depends-on): Add gettime.
5038
5039 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
5040         and Simon Josefsson  <jas@extundo.com>
5041         and Oskar Liljeblad  <oskar@osk.mine.nu>
5042
5043         * MODULES.html.sh (Support for building documentation): Add gpl, lgpl.
5044         * gnulib-tool (func_import): New license type 'unmodifiable license
5045         text'.
5046         * modules/fdl: Use it.  Longer description.
5047         * module/gpl, module/lgpl: New files.
5048
5049 2006-08-30  Jim Meyering  <jim@meyering.net>
5050
5051         * lib/isapipe.c (isapipe): Rename local s/fd/fd_pair/ to avoid
5052         shadowing the parameter.
5053
5054 2006-08-29  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5055
5056         Sync from Libtool:
5057
5058         2006-08-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5059
5060         * lib/libltdl/argz.c: Use `#ifdef HAVE_CONFIG_H', to facilitate code
5061         sharing with gnulib.  Report by Eric Blake.
5062
5063 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
5064
5065         * modules/isapipe: New file.
5066         * MODULES.html.sh (File descriptor based Input/Output): Add isapipe.
5067
5068 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
5069
5070         * modules/configmake (Makefile.am): Add a comment, and omit
5071         the CONFIGMAKE_ prefix from generated macro names.  Suggested
5072         by Bruno Haible.
5073
5074 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
5075
5076         * m4/isapipe.m4: New file.
5077
5078 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
5079
5080         * lib/isapipe.c, lib/isapipe.h: New files.
5081
5082 2006-08-29  Jim Meyering  <jim@meyering.net>
5083
5084         * modules/configmake (Makefile.am): Make configmake.h depend on
5085         Makefile.  Otherwise, a stale configmake.h could hang around.
5086
5087 2006-08-29  Eric Blake  <ebb9@byu.net>
5088
5089         * lib/error.c (error_at_line, print_errno_message): Match libc, after
5090         resolution of upstream bug 3044.
5091
5092 2006-08-29  Bruno Haible  <bruno@clisp.org>
5093
5094         * modules/localcharset (Depends-on): Add configmake.
5095         (Makefile.am): Remove setting of LIBDIR through DEFS.
5096
5097 2006-08-29  Bruno Haible  <bruno@clisp.org>
5098
5099         * lib/localcharset.c: Include configmake.h in order to get LIBDIR
5100         defined.
5101
5102 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
5103
5104         * modules/fcntl: New file.
5105         * modules/chdir-safer (Depends-on): Add fcntl.
5106         * modules/fts: Likewise.
5107         * modules/mkdir-p: Likewise.
5108
5109         * modules/stdint (Makefile.am): Do not substitute ABSOLUTE_INTTYPES_H.
5110         This undoes the most recent change, since we're now addressing the
5111         problem in a different way.
5112
5113         * gnulib-tool (emit_lib_Makefile_am): Don't put $makefile_name
5114         into output, since the output might be called Makefile.am even
5115         if $makefile_name is something different.
5116         (func_import): Use $makefile_am rather than
5117         ${makefile_name-Makefile.am}, to fix a bug where makefile_name was
5118         empty.
5119
5120         * modules/inttypes (Files): Add m4/inttypes-h.m4.
5121
5122 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
5123
5124         * m4/inttypes.m4 (gl_INTTYPES_H): Move ABSOLUTE_INTTYPES_H code here...
5125         * m4/stdint.m4 (gl_STDINT_H): ... from here.  This undoes the most
5126         recent change to stdint.m4, since we're now addressing the problem in a
5127         different way.
5128
5129 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
5130
5131         * m4/fcntl_h.m4: New file.
5132
5133 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
5134
5135         * lib/fcntl_.h: New file.
5136         * lib/chdir-safer.c (O_DIRECTORY, O_NOFOLLOW): Remove, now that we have
5137         the fcntl module.
5138         * lib/dirchownmod.c: Likewise.
5139         * lib/fts.c: Likewise.
5140
5141         * lib/inttypes_.h [defined _GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H]:
5142         Include @ABSOLUTE_INTTYPES_H@ if available, but do nothing else.
5143         * lib/stdint_.h (_GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H): Define
5144         just before including <inttypes.h>, to avoid circular inclusion.
5145
5146 2006-08-28  Jim Meyering  <jim@meyering.net>
5147
5148         * doc/visibility.texi: Actually read and correct the grammar of the
5149         sentence affected by yesterday's change.
5150
5151 2006-08-28  Eric Blake  <ebb9@byu.net>
5152
5153         * modules/inttypes (Makefile.am): Fix sed error when inttypes.h
5154         needs wrapper.
5155
5156 2006-08-28  Eric Blake  <ebb9@byu.net>
5157
5158         * m4/inttypes.m4 (gl_INTTYPES_H): Fix missing #endif.
5159
5160 2006-08-28  Eric Blake  <ebb9@byu.net>
5161
5162         * m4/codeset.m4 (AM_LANGINFO_CODESET): Avoid compiler warning.
5163
5164 2006-08-28  Bruno Haible  <bruno@clisp.org>
5165
5166         * modules/c-strstr: New file, from GNU gettext.
5167         * MODULES.html.sh (String handling): Add c-strstr.
5168
5169 2006-08-28  Bruno Haible  <bruno@clisp.org>
5170
5171         * m4/inttypes.m4 (gl_INTTYPES_H): Don't test for the existence of SCNX*
5172         macros.
5173         Reported by Eric Blake.
5174
5175 2006-08-28  Bruno Haible  <bruno@clisp.org>
5176
5177         * lib/vasnprintf.c (EOVERFLOW): Remove definition.
5178         (VASNPRINTF): Return a string of length > INT_MAX without failing.
5179         * lib/vasprintf.c: Include errno.h, limits.h.
5180         (EOVERFLOW): New fallback definition.
5181         (vasprintf): Test here whether the string length is > INT_MAX.
5182         * lib/vsnprintf.c: Include errno.h, limits.h.
5183         (EOVERFLOW): New fallback definition.
5184         (vsnprintf): Fix bug when generated string was too long for the buffer.
5185         Test here whether the string length is > INT_MAX.
5186
5187 2006-08-28  Bruno Haible  <bruno@clisp.org>
5188
5189         * lib/inttypes_.h (SCNX*): Remove definitions.
5190         Reported by Eric Blake.
5191
5192 2006-08-28  Bruno Haible  <bruno@clisp.org>
5193
5194         * lib/c-strstr.h: New file, from GNU gettext.
5195         * lib/c-strstr.c: New file, from GNU gettext.
5196
5197 2006-08-28  Bruno Haible  <bruno@clisp.org>
5198
5199         * gnulib-tool: Reorder some statements.
5200
5201 2006-08-28  Bruno Haible  <bruno@clisp.org>
5202
5203         * gnulib-tool: New option --makefile-name.
5204         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am): Use
5205         $makefile_name.
5206         (func_import): Write $makefile_name to the cache file, and read it from
5207         there unless explicitly specified. Use $makefile_name as file name
5208         instead of Makefile.am. Adjust the recommendations accordingly.
5209
5210 2006-08-28  Bruno Haible  <bruno@clisp.org>
5211
5212         * gnulib-tool (func_verify_module): Check against misapplying patch.
5213
5214 2006-08-28  Bruno Haible  <bruno@clisp.org>
5215
5216         * gnulib-tool (func_relativize, func_relconcat): New functions.
5217         Give an error if --local-dir is given with --update.
5218         Remove trailing slashes from $local_gnulib_dir.
5219         (func_import): Store the relativized $local_gnulib_dir in
5220         gnulib-cache.m4, and read it from there if not specified explicitly.
5221
5222 2006-08-28  Bruno Haible  <bruno@clisp.org>
5223
5224         * gnulib-tool (func_get_tests_module): Don't assume that $gnulib_dir
5225         is the current directory. Respect also $local_gnulib_dir.
5226
5227 2006-08-28  Bruno Haible  <bruno@clisp.org>
5228             Simon Josefsson  <jas@extundo.com>
5229
5230         BeOS portability.
5231         * lib/getaddrinfo.c (PF_INET, PF_UNSPEC): New macros.
5232
5233 2006-08-27  Jim Meyering  <jim@meyering.net>
5234
5235         * doc/visibility.texi: Remove duplicate word: "pointer".
5236
5237 2006-08-26  Bruno Haible  <bruno@clisp.org>
5238
5239         * modules/inttypes (Files): Add lib/inttypes_.h, remove lib/inttypes.h.
5240         Add m4/inttypes.m4, remove m4/_inttypes_h.m4 and m4/include_next.m4.
5241         (Makefile.am): Create inttypes.h from inttypes_.h.
5242         * modules/stdint (Makefile.am): Substitute also ABSOLUTE_INTTYPES_H.
5243
5244         * modules/imaxabs: New file.
5245
5246         * modules/imaxdiv: New file.
5247
5248 2006-08-26  Bruno Haible  <bruno@clisp.org>
5249
5250         * m4/inttypes.m4: New file.
5251         * m4/_inttypes_h.m4: Remove file.
5252         * m4/inttypes-pri.m4 (gt_INTTYPES_PRI): Also AC_SUBST
5253         PRI_MACROS_BROKEN.
5254         * m4/stdint.m4 (gl_STDINT_H): Define also ABSOLUTE_INTTYPES_H.
5255
5256         * m4/imaxabs.m4: New file.
5257
5258         * m4/imaxdiv.m4: New file.
5259
5260 2006-08-26  Bruno Haible  <bruno@clisp.org>
5261
5262         * lib/inttypes_.h: New file.
5263         * lib/inttypes.h: Remove file.
5264         * lib/stdint_.h: Include <inttypes.h> through its absolute filename.
5265
5266         * lib/imaxabs.c: New file.
5267
5268         * lib/imaxdiv.c: New file.
5269
5270 2006-08-25  Paul Eggert  <eggert@cs.ucla.edu>
5271
5272         New config-h module, so that "make" output needn't be cluttered
5273         by -DHAVE_CONFIG_H.
5274         * MODULES.html.sh (Support for building libraries and executables):
5275         Add config-h.
5276         * modules/config-h: New file.
5277         * gnulib-tool (nl, sed_transform_lib_file): New vars.
5278         (func_import): Turn "#ifdef HAVE_CONFIG_H" to "#if 1" if
5279         the config-h module is used.
5280
5281         New configmake module, so that "make" output needn't be cluttered
5282         by fluff like '-DLIBDIR=\"/usr/local/lib\"'.
5283         * MODULES.html.sh (Support for building libraries and executables):
5284         Add configmake.
5285         * modules/configmake: New file.
5286
5287 2006-08-25  Paul Eggert  <eggert@cs.ucla.edu>
5288
5289         * m4/config-h.m4: New file.
5290
5291 2006-08-24  Paul Eggert  <eggert@cs.ucla.edu>
5292
5293         * config/srclist.txt: Add elisp-comp.
5294
5295 2006-08-24  Paul Eggert  <eggert@cs.ucla.edu>
5296
5297         * MODULES.html.sh (Support for building libraries and executables):
5298         Add elisp-comp.
5299         * build-aux/elisp-comp: New file.
5300         * modules/elisp-comp: New file.
5301
5302 2006-08-24  Bruno Haible  <bruno@clisp.org>
5303
5304         * gnulib-tool (func_create_testdir): Use non-default values of
5305         sourcebase and m4base.
5306
5307 2006-08-24  Bruno Haible  <bruno@clisp.org>
5308
5309         * MODULES.html.sh (Compatibility checks for POSIX:2001 functions: Fix
5310         HTML structure.
5311
5312 2006-08-23  Paul Eggert  <eggert@cs.ucla.edu>
5313
5314         * modules/openat (Depends-on): Add lchown.
5315
5316 2006-08-23  Bruno Haible  <bruno@clisp.org>
5317
5318         * gnulib-tool (func_import, func_create_testdir): Emit an invocation
5319         of gl_LOCK_EARLY instead of gl_LOCK.
5320
5321 2006-08-23  Bruno Haible  <bruno@clisp.org>
5322
5323         * m4/lock.m4 (gl_LOCK_BODY): Change the default value of gl_use_threads
5324         on OSF/1 to no.
5325         Reported by Stephen Cartwright <sgcartwr@ucalgary.ca>.
5326
5327 2006-08-23  Bruno Haible  <bruno@clisp.org>
5328
5329         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Don't consider BeOS statvfs
5330         as unusable.
5331
5332         * m4/lock.m4 (gl_LOCK_EARLY): Renamed from gl_LOCK.
5333         (gl_LOCK_BODY): Remove gl_PREREQ_LOCK invocation.
5334         (gl_LOCK): New macro.
5335
5336 2006-08-22  Simon Josefsson  <jas@extundo.com>
5337
5338         * modules/gc-md5 (Makefile.am): Need to add md5.h, after changes
5339         to md5 module.
5340
5341 2006-08-22  Simon Josefsson  <jas@extundo.com>
5342
5343         * MODULES.html.sh: Add "Support for maintaining and release
5344         projects".
5345
5346         * build-aux/gnupload: New file, from coreutils.
5347
5348 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
5349
5350         Avoid the need for AC_LIBSOURCES in m4 macros.
5351         * modules/arcfour (EXTRA_DIST): Add arcfour.h.
5352         * modules/arctwo (EXTRA_DIST): Add arctwo.h.
5353         * modules/check-version (EXTRA_DIST): Add check-version.h.
5354         * modules/crc (EXTRA_DIST): Add crc.h.
5355         * modules/des (EXTRA_DIST): Add des.h.
5356         * modules/gc (EXTRA_DIST): Add gc.h.
5357         * modules/getdelim (EXTRA_DIST): Add getdelim.h.
5358         * modules/getline (EXTRA_DIST): Add getline.h.
5359         * modules/getlogin_r (EXTRA_DIST): Add getlogin_r.h.
5360         * modules/hmac-md5 (EXTRA_DIST): Add hmac.h.
5361         * modules/hmac-sha1 (EXTRA_DIST): Add hmac.h.
5362         * modules/md2 (EXTRA_DIST): Add md2.h.
5363         * modules/md4 (EXTRA_DIST): Add md4.h.
5364         * modules/pagealign_alloc (EXTRA_DIST): Add pagealign_alloc.h.
5365         * modules/read-file (EXTRA_DIST): Add read-file.h.
5366         * modules/readline (EXTRA_DIST): Add readline.h.
5367         * modules/rijndael (EXTRA_DIST): Add rijndael-alg-fst.h,
5368         rijndael-api-fst.h.
5369
5370 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
5371
5372         * m4/rijndael.m4 (gl_ARCFOUR):
5373         * m4/arctwo.m4 (gl_ARCTWO):
5374         * m4/check-version.m4 (gl_CHECK_VERSION):
5375         * m4/crc.m4 (gl_CRC):
5376         * m4/des.m4 (gl_DES):
5377         * m4/gc-pbkdf2-sha1.m4 (gl_GC_PBKDF2_SHA1):
5378         * m4/gc.m4 (gl_GC):
5379         * m4/getdelim.m4 (gl_FUNC_GETDELIM):
5380         * m4/getline.m4 (gl_FUNC_GETLINE):
5381         * m4/getlogin_r.m4 (gl_GETLOGIN_R_SUBSTITUTE):
5382         * m4/hmac-md5.m4 (gl_HMAC_MD5):
5383         * m4/hmac-sha1.m4 (gl_HMAC_SHA1):
5384         * m4/md2.m4 (gl_MD2):
5385         * m4/md4.m4 (gl_MD4):
5386         * m4/pagealign_alloc.m4 (gl_PAGEALIGN_ALLOC):
5387         * m4/read-file.m4 (gl_FUNC_READ_FILE):
5388         * m4/readline.m4 (gl_FUNC_READLINE):
5389         * m4/rijndael.m4 (gl_RIJNDAEL):
5390         Don't use AC_LIBSOURCES; instead, rely on the files in ../modules/
5391         to get the necessary .h files and whatnot.
5392
5393 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
5394
5395         * config/srclist.txt: Remove gnupload, since coreutils now syncs from
5396         gnulib rather than the other way around.
5397         * config/srclistvars.sh (COREUTILS): Remove.
5398
5399 2006-08-22  Jim Meyering  <jim@meyering.net>
5400
5401         * modules/mkdir-p (Makefile.am): Fix typo: s/lib+SOURCES/lib_SOURCES/.
5402
5403         * modules/getpass-gnu (Makefile.am): Add getpass.h to EXTRA_DIST.
5404
5405 2006-08-22  Eric Blake  <ebb9@byu.net>
5406
5407         * modules/regexprops-generic: New file.
5408         * MODULES.html.sh (Support for building documentation): List it.
5409
5410 2006-08-22  Eric Blake  <ebb9@byu.net>
5411
5412         * m4/stdint_h.m4 (gl_AC_HEADER_STDINT_H): Avoid compiler warning.
5413         * m4/inttypes_h.m4 (gl_AC_HEADER_INTTYPES_H): Likewise.
5414         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Likewise.
5415         * m4/intmax_t.m4 (gt_AC_TYPE_INTMAX_T): Likewise.
5416
5417 2006-08-22  Bruno Haible  <bruno@clisp.org>
5418
5419         * gnulib-tool (func_emit_lib_Makefile_am): Don't treat lib_LIBRARIES
5420         and lib_LTLIBRARIES like the other lib_* variables.
5421
5422 2006-08-22  Bruno Haible  <bruno@clisp.org>
5423
5424         * build-aux/x-to-1.in: New file, from GNU gettext.
5425
5426 2006-08-22  Bruno Haible  <bruno@clisp.org>
5427
5428         * m4/readutmp.m4 (gl_READUTMP): Compile readutmp.c only if <utmp.h> or
5429         <utmpx.h> exists.
5430
5431 2006-08-22  Bruno Haible  <bruno@clisp.org>
5432
5433         * lib/readutmp.h: Skip most definitions if neither <utmp.h> nor
5434         <utmpx.h> exists.
5435
5436 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
5437
5438         BeOS portability.
5439         * lib/dirchownmod.c (dirchownmod): Don't use fchmod if it doesn't
5440         exist.
5441         Problem reported by Bruno Haible.
5442
5443 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
5444
5445         Avoid the need for AC_LIBSOURCES in m4 macros.
5446         * modules/acl (EXTRA_DIST): Add acl.h.
5447         * modules/argmatch (Files): Add m4/argmatch.m4.
5448         (configure.ac): Add gl_ARGMATCH.
5449         (EXTRA_DIST): Renamed from lib_SOURCES, for
5450         consistency with the other modules.  Remove argmatch.c.
5451         * modules/backupfile (EXTRA_DIST): Add backupfile.h.
5452         * modules/c-strtod (EXTRA_DIST): Add c-strtod.h.
5453         * modules/c-strtold (EXTRA_DIST): Add c-strtod.c, c-strtod.h.
5454         * modules/canonhost (EXTRA_DIST): Add c-canonhost.h.
5455         * modules/canonicalize (EXTRA_DIST): Add canonicalize.h.
5456         * modules/chdir-long (EXTRA_DIST): Add chdir-long.h.
5457         * modules/chdir-safer (EXTRA_DIST): Add chdir-safer.h.
5458         * modules/cloexec (EXTRA_DIST): Add cloexec.h.
5459         * modules/close-stream (EXTRA_DIST): Add close-stream.h.
5460         * modules/closeout (EXTRA_DIST): Add closeout.h.
5461         * modules/cycle-check (EXTRA_DIST): Add cycle-check.h.
5462         * modules/dev-ino (EXTRA_DIST): Add dev-ino.h.
5463         * modules/dirfd (EXTRA_DIST): Add dirfd.h.
5464         * modules/dirname (EXTRA_DIST): Renamed from lib_SOURCES.  Add
5465         dirname.h; remove basename.c and stripslash.c.
5466         * modules/exclude (EXTRA_DIST): Add exclude.h.
5467         * modules/exitfail (EXTRA_DIST): Add exitfail.h.
5468         * modules/fcntl-safer (EXTRA_DIST): Add fcntl-safer.h fcntl--.h.
5469         * modules/file-type (EXTRA_DIST): Add file-type.h.
5470         * modules/filemode (EXTRA_DIST): Add filemode.h.
5471         * modules/filenamecat (EXTRA_DIST): Add filenamecat.h.
5472         * modules/fopen-safer (EXTRA_DIST): Add stdio-safer.h stdio--.h.
5473         * modules/fpending (EXTRA_DIST): Add __fpending.h.
5474         * modules/fprintftime (EXTRA_DIST): Add fprintftime.h.
5475         * modules/fsusage (EXTRA_DIST): Add fsusage.h.
5476         * modules/fts (EXTRA_DIST): Add fts_.h fts-cycle.c.
5477         * modules/getcwd (EXTRA_DIST): Add getcwd.h.
5478         * modules/getdate (EXTRA_DIST): Add getdate.c.
5479         * modules/gethrxtime (EXTRA_DIST): Add gethrxtime.h xtime.h.
5480         * modules/getpagesize (EXTRA_DIST): Add getpagesize.h.
5481         * modules/getpass (EXTRA_DIST): Add getpass.h.
5482         * modules/glob (EXTRA_DIST): Add glob_.h glob-libc.h.
5483         * modules/group-member (EXTRA_DIST): Add group-member.h.
5484         * modules/hard-locale (EXTRA_DIST): Add hard-locale.h.
5485         * modules/hash (EXTRA_DIST): Add hash.h.
5486         * modules/human (EXTRA_DIST): Add human.h.
5487         * modules/inttypes (EXTRA_DIST): Add inttypes.h.
5488         * modules/lchmod (EXTRA_DIST): Add lchmod.h.
5489         * modules/lchown (EXTRA_DIST): Add lchown.h.
5490         * modules/long-options (EXTRA_DIST): Add long-options.h.
5491         * modules/lstat (EXTRA_DIST): Add lstat.h.
5492         * modules/md5 (EXTRA_DIST): Add memcasecmp.h.
5493         * modules/memcoll (EXTRA_DIST): Add memcoll.h.
5494         * modules/mempcpy (EXTRA_DIST): Add mempcpy.h.
5495         * modules/memrchr (EXTRA_DIST): Add memrchr.h.
5496         * modules/memxor (EXTRA_DIST): Add memxor.h.
5497         * modules/mkancesdirs (EXTRA_DIST): Add mkancesdirs.h.
5498         * modules/mkdir-p (EXTRA_DIST): Add modechange.h.
5499         * modules/mountlist (EXTRA_DIST): Add mountlist.h.
5500         * modules/openat (EXTRA_DIST): Add at-func.c openat.h openat-priv.h.
5501         * modules/pathmax (EXTRA_DIST): Add pathmax.h.
5502         * modules/physmem (EXTRA_DIST): Add physmem.h.
5503         * modules/posixtm (EXTRA_DIST): Add posixtm.h.
5504         * modules/posixver (EXTRA_DIST): Add posixver.h.
5505         * modules/quote (EXTRA_DIST): Add quote.h.
5506         * modules/quotearg (EXTRA_DIST): Add quotearg.h.
5507         * modules/readtokens (EXTRA_DIST): Add readtokens.h.
5508         * modules/readutmp (EXTRA_DIST): Add readutmp.h.
5509         * modules/regex (EXTRA_DIST): Add regcomp.c regex.h regex_internal.c
5510         regex_internal.h regexec.c.
5511         * modules/safe-read (EXTRA_DIST): Add safe-read.h.
5512         * modules/safe-write (EXTRA_DIST): Add safe-write.h.
5513         * modules/same (EXTRA_DIST): Add same.h.
5514         * modules/same-inode (EXTRA_DIST): Add same-inode.h.
5515         * modules/save-cwd (EXTRA_DIST): Add save-cwd.h.
5516         * modules/savedir (EXTRA_DIST): Add savedir.h.
5517         * modules/sha1 (EXTRA_DIST): Add sha1.h.
5518         * modules/sig2str (EXTRA_DIST): Add sig2str.h.
5519         * modules/stat-macros (EXTRA_DIST): Add stat-macros.h.
5520         * modules/stat-time (EXTRA_DIST): Add stat-time.h.
5521         * modules/stdlib-safer (EXTRA_DIST): Add stdlib-safer.h stdlib--.h.
5522         * modules/strdup (EXTRA_DIST): Add strdup.h.
5523         * modules/strftime (EXTRA_DIST): Add strftime.h.
5524         * modules/strndup (EXTRA_DIST): Add strndup.h.
5525         * modules/strnlen (EXTRA_DIST): Add strnlen.h.
5526         * modules/strverscmp (EXTRA_DIST): Add strverscmp.h.
5527         * modules/time_r (EXTRA_DIST): Add time_r.h.
5528         * modules/timespec (EXTRA_DIST): Add timespec.h.
5529         * modules/tmpfile-safer (EXTRA_DIST): Add stdio-safer.h stdio--.h.
5530         * modules/unistd-safer (EXTRA_DIST): Add unistd-safer.h unistd--.h.
5531         * modules/unlinkdir (EXTRA_DIST): Add unlinkdir.h.
5532         * modules/unlocked-io (EXTRA_DIST): Add unlocked-io.h.
5533         * modules/userspec (EXTRA_DIST): Add userspec.h.
5534         * modules/utimecmp (EXTRA_DIST): Add utimecmp.h.
5535         * modules/utimens (EXTRA_DIST): Add utimens.h.
5536         * modules/xalloc (EXTRA_DIST): Add xalloc.h.
5537         * modules/xgetcwd (EXTRA_DIST): Add xgetcwd.h.
5538         * modules/xnanosleep (EXTRA_DIST): Add xnanosleep.h.
5539         * modules/xreadlink (EXTRA_DIST): Add xreadlink.h.
5540         * modules/xstrtod (EXTRA_DIST): Add xstrtod.h.
5541         * modules/xstrtol (EXTRA_DIST): Add xstrtol.h.
5542         * modules/xstrtold (EXTRA_DIST): Add xstrtod.c xstrtod.h.
5543         * modules/yesno (EXTRA_DIST): Add yesno.h.
5544
5545 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
5546
5547         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Check for fchmod.
5548
5549         * m4/argmatch.m4: New file, from coreutils with AC_LIBSOURCES removed.
5550         * m4/dev-ino.m4, same-inode.m4: Remove.
5551
5552         * m4/_inttypes_h.m4 (gl_INTTYPES_H):
5553         * m4/acl.m4 (AC_FUNC_ACL):
5554         * m4/backupfile.m4 (gl_BACKUPFILE):
5555         * m4/c-strtod.m4 (gl_C99_STRTOLD):
5556         * m4/canon-host.m4 (gl_CANON_HOST):
5557         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME):
5558         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG):
5559         * m4/chdir-safer.m4 (gl_CHDIR_SAFER):
5560         * m4/cloexec.m4 (gl_CLOEXEC):
5561         * m4/close-stream.m4 (gl_CLOSE_STREAM):
5562         * m4/closeout.m4 (gl_CLOSEOUT):
5563         * m4/dirfd.m4 (gl_FUNC_DIRFD):
5564         * m4/dirname.m4 (gl_DIRNAME):
5565         * m4/exclude.m4 (gl_EXCLUDE):
5566         * m4/exitfail.m4 (gl_EXITFAIL):
5567         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER):
5568         * m4/file-type.m4 (gl_FILE_TYPE):
5569         * m4/filemode.m4 (gl_FILEMODE):
5570         * m4/filenamecat.m4 (gl_FILE_NAME_CONCAT):
5571         * m4/fpending.m4 (gl_FUNC_FPENDING):
5572         * m4/fprintftime.m4 (gl_FPRINTFTIME):
5573         * m4/fts.m4 (gl_FUNC_FTS):
5574         * m4/getcwd.m4 (gl_FUNC_GETCWD_NULL):
5575         * m4/getdate.m4 (gl_GETDATE):
5576         * m4/gethrxtime.m4 (gl_GETHRXTIME):
5577         * m4/getpagesize.m4 (gl_GETPAGESIZE):
5578         * m4/getpass.m4 (gl_FUNC_GETPASS):
5579         * m4/gettime.m4 (gl_GETTIME):
5580         * m4/getugroups.m4 (gl_GETUGROUPS):
5581         * m4/glob.m4 (gl_GLOB_SUBSTITUTE):
5582         * m4/group-member.m4 (gl_FUNC_GROUP_MEMBER):
5583         * m4/hard-locale.m4 (gl_HARD_LOCALE):
5584         * m4/hash.m4 (gl_HASH):
5585         * m4/idcache.m4 (gl_IDCACHE):
5586         * m4/lchmod.m4 (gl_FUNC_LCHMOD):
5587         * m4/lchown.m4 (gl_FUNC_LCHOWN):
5588         * m4/long-options.m4 (gl_LONG_OPTIONS):
5589         * m4/lstat.m4 (gl_FUNC_LSTAT):
5590         * m4/md5.m4 (gl_MD5):
5591         * m4/memcasecmp.m4 (gl_MEMCASECMP):
5592         * m4/memcoll.m4 (gl_MEMCOLL):
5593         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY):
5594         * m4/memrchr.m4 (gl_FUNC_MEMRCHR):
5595         * m4/memxor.m4 (gl_MEMXOR):
5596         * m4/mkancesdirs.m4 (gl_MKANCESDIRS):
5597         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS):
5598         * m4/modechange.m4 (gl_MODECHANGE):
5599         * m4/mountlist.m4 (gl_MOUNTLIST):
5600         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP):
5601         * m4/openat.m4 (gl_FUNC_OPENAT):
5602         * m4/pathmax.m4 (gl_PATHMAX):
5603         * m4/physmem.m4 (gl_PHYSMEM):
5604         * m4/posixtm.m4 (gl_POSIXTM):
5605         * m4/posixver.m4 (gl_POSIXVER):
5606         * m4/quote.m4 (gl_QUOTE):
5607         * m4/quotearg.m4 (gl_QUOTEARG):
5608         * m4/readtokens.m4 (gl_READTOKENS):
5609         * m4/readutmp.m4 (gl_READUTMP):
5610         * m4/regex.m4 (gl_REGEX):
5611         * m4/safe-read.m4 (gl_SAFE_READ):
5612         * m4/safe-write.m4 (gl_SAFE_WRITE):
5613         * m4/same.m4 (gl_SAME):
5614         * m4/save-cwd.m4 (gl_SAVE_CWD):
5615         * m4/savedir.m4 (gl_SAVEDIR):
5616         * m4/settime.m4 (gl_SETTIME):
5617         * m4/sha1.m4 (gl_SHA1):
5618         * m4/sig2str.m4 (gl_FUNC_SIG2STR):
5619         * m4/stat-macros.m4 (gl_STAT_MACROS):
5620         * m4/stat-time.m4 (gl_STAT_TIME):
5621         * m4/stdio-safer.m4 (gl_FOPEN_SAFER):
5622         * m4/stdlib-safer.m4 (gl_STDLIB_SAFER):
5623         * m4/strdup.m4 (gl_FUNC_STRDUP):
5624         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME):
5625         * m4/strndup.m4 (gl_FUNC_STRNDUP):
5626         * m4/strnlen.m4 (gl_FUNC_STRNLEN):
5627         * m4/strverscmp.m4 (gl_FUNC_STRVERSCMP):
5628         * m4/time_r.m4 (gl_TIME_R):
5629         * m4/timespec.m4 (gl_TIMESPEC):
5630         * m4/unistd-safer.m4 (gl_UNISTD_SAFER):
5631         * m4/unlinkdir.m4 (gl_UNLINKDIR):
5632         * m4/unlocked-io.m4 (gl_FUNC_GLIBC_UNLOCKED_IO):
5633         * m4/userspec.m4 (gl_USERSPEC):
5634         * m4/utimecmp.m4 (gl_UTIMECMP):
5635         * m4/utimens.m4 (gl_UTIMENS):
5636         * m4/xalloc.m4 (gl_XALLOC):
5637         * m4/xgetcwd.m4 (gl_XGETCWD):
5638         * m4/xnanosleep.m4 (gl_XNANOSLEEP):
5639         * m4/xreadlink.m4 (gl_XREADLINK):
5640         * m4/xstrtod.m4 (gl_XSTRTOD):
5641         * m4/yesno.m4 (gl_YESNO):
5642         Don't use AC_LIBSOURCES; instead, rely on the files in ../modules/
5643         to get the necessary .h files and whatnot.
5644
5645 2006-08-21  Mark D. Baushke  <mdb@gnu.org>
5646             Bruno Haible  <bruno@clisp.org>
5647
5648         * gnulib-tool (func_verify_module): Work around Sun's non-POSIX 1003.2
5649         /bin/sh understanding of '!' conditional negation.
5650
5651 2006-08-21  Jim Meyering  <jim@meyering.net>
5652
5653         * modules/openat (Depends-on): Really alphabetize.
5654
5655         * modules/acl (Depends-on): Add error and quote.
5656
5657         * check-module (find_included_lib_files): Add at-func.c to the
5658         ok-to-include-more-than-once white list.
5659
5660         * modules/openat (Depends-on): Add lstat.  Alphabetize.
5661
5662 2006-08-21  Bruno Haible  <bruno@clisp.org>
5663
5664         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
5665         Emit a pkgdata_DATA variable only if some snippets add contents to it.
5666         Reported by Martin Lambers <marlam@marlam.de>.
5667
5668 2006-08-21  Bruno Haible  <bruno@clisp.org>
5669
5670         * gnulib-tool (func_emit_lib_Makefile_am): If the snippets already
5671         specify an installation location, don't emit a noinst_LIBRARIES or
5672         noinst_LTLIBRARIES assignment.
5673
5674 2006-08-21  Bruno Haible  <bruno@clisp.org>
5675
5676         BeOS portability.
5677         * modules/mbchar (Include): Don't test HAVE_WCTYPE_H any more, since
5678         BeOS has mbrtowc() but no <wctype.h>.
5679
5680 2006-08-21  Bruno Haible  <bruno@clisp.org>
5681
5682         BeOS portability.
5683         * m4/mbchar.m4 (gl_MBCHAR): Compile mbchar.c also if <wctype.h> doesn't
5684         exist.
5685
5686 2006-08-21  Bruno Haible  <bruno@clisp.org>
5687
5688         BeOS portability.
5689         * lib/mbchar.h: Include <wctype.h> only if it exists.
5690
5691 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
5692
5693         Remove files that are no longer needed by their respective modules.
5694         * m4/obstack.m4: Remove.
5695         * m4/strerror_r.m4: Remove.
5696         * m4/uint32_t.m4: Remove.
5697         * m4/uintptr_t.m4: Remove.
5698         * m4/ullong_max.m4: Remove.
5699         * m4/xstrtoimax.m4: Remove.
5700         * m4/xstrtoumax.m4: Remove.
5701
5702         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Do not require
5703         gl_AC_TYPE_UINTMAX_T, gl_STRUCT_DEV_INO, or gl_SAME_INODE, since gnulib
5704         dependencies now capture this.
5705
5706         * m4/cycle-check.m4 (gl_CYCLE_CHECK):
5707         Do not use AC_LIBSOURCES, since gnulib modules now do this.
5708         * m4/fsusage.m4 (gl_FSUSAGE): Likewise.
5709         * m4/human.m4 (gl_HUMAN): Likewise.
5710         * m4/inttostr.m4 (gl_INTTOSTR): Likewise.
5711         * m4/xstrtol.m4 (gl_XSTRTOL): Likewise.
5712
5713         * m4/filemode.m4 (gl_FILEMODE): Require AC_STRUCT_ST_DM_MODE.
5714
5715         * m4/filemode.m4 (gl_PREREQ_FSUSAGE_EXTRA): Do not require
5716         gl_AC_TYPE_INTMAX_T or gl_AC_TYPE_UINTMAX_T, since we now require
5717         stdint.
5718         * m4/human.m4 (gl_HUMAN): Likewise.
5719         * m4/inttostr.m4 (gl_PREREQ_INTTOSTR): Likewise.
5720         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Likewise.
5721         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Likewise.
5722         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Likewise.
5723         * m4/xstrtol (gl_XSTRTOL): Likewise.
5724
5725         * m4/gethrxtime.m4 (gl_XTIME): gl_AC_TYPE_LONG_LONG ->
5726         AC_TYPE_LONG_LONG_INT.
5727         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Likewise.
5728         * m4/strtoll.m4 (gl_FUNC_STRTOLL): Likewise.
5729         * m4/strtoull.m4 (gl_FUNC_STRTOULL): Likewise, for unsigned long.
5730         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Likewise.
5731
5732         * m4/human.m4 (gl_HUMAN): Do not require AM_STDBOOL_H since we depend
5733         on stdbool.
5734
5735         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL_H, gl_PREREQ_XSTRTOL): Remove.
5736         (gl_PREREQ_XSTRTOUL): Remove.
5737
5738         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Check for hasmntopt.
5739
5740         * m4/posixver.m4: Fix comment since head -1 now works even in POSIX
5741         mode.
5742
5743 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
5744
5745         Add and change modules to make it easier for coreutils to use
5746         gnulib-tool.
5747         * modules/backupfile (Files): Remove m4/d-ino.m4.
5748         (Depends-on): Add d-ino.
5749         * modules/cycle-check (Depends-on): Add stdint.
5750         (lib_SOURCES): Add cycle-check.h.
5751         * modules/d-ino: New module.
5752         * modules/d-type: New module.
5753         * modules/error (Files): Remove m4/strerror_r.m4.
5754         * modules/filemode (Files): Add m4/st_dm_mode.m4.
5755         * modules/fsuage (Files): Remove m4/ulonglong.m4, m4/stdint_h.m4,
5756         m4/inttypes_h.m4, m4/uintmax_t.m4.
5757         (Depends-on): Add stdint.
5758         (lib_SOURCES): Add fsusage.h.
5759         * modules/getcwd (Files): Remove d-ino.m4.
5760         (Depends-on): Add d-ino.
5761         * modules/getndelim2 (Depends-on): Add stdint.
5762         * modules/glob (Files): Remove m4/d-type.m4.
5763         (Depends-on): Add d-type.
5764         * modules/host-os: New module.
5765         * modules/human (Files):  Remove m4/ulonglong.m4, m4/stdint_h.m4,
5766         m4/inttypes_h.m4, m4/uintmax_t.m4.
5767         * Depends-on: Add stdint.
5768         (lib_SOURCES): Add human.h.
5769         * modules/inttostr (Files): Remove m4/intmax_t.m4,
5770         m4/inttostr.m4, m4/inttypes_h.m4, m4/longlong.m4, m4/stdint_h.m4,
5771         m4/uintmax_t.m4, m4/ulonglong.m4.
5772         (Depends-on): Add stdint.
5773         (EXTRA_DIST): Add inttostr.h.
5774         * modules/lchmod: New module.
5775         * modules/link-follow: New module.
5776         * modules/mkdir-p (Files): Remove lib/lchmod.h, m4/lchmod.m4.
5777         (Depends-on): Add lchmod.
5778         * modules/mkstemp (Files): Remove m4/ulonglong.m4,
5779         m4/stdint_h.m4, m4/inttypes_h.m4, m4/uintmax_t.m4.
5780         (Depends-on): Add stdint.
5781         * modules/obstack (Files): Remove m4/inttypes_h.m4, m4/obstack.m4,
5782         m4/stdint_h.m4, m4/uintmax_t.m4, m4/ulonglong.m4.
5783         (Depends-on): Add stdint.
5784         (configure.ac): Change gl_OBSTACK to AC_FUNC_OBSTACK.
5785         * modules/perl: New module.
5786         * modules/regex (Depends-on): Add stdint.
5787         * modules/rmdir-errno: New module.
5788         * modules/strtoimax (Files): Remove m4/stdint_h.m4, m4/inttypes_h.m4,
5789         m4/intmax_t.m4.
5790         (Depends-on): Add stdint.
5791         * modules/strtoumax (Files): Remove m4/stdint_h.m4, m4/inttypes_h.m4,
5792         m4/uintmax_t.m4.
5793         (Depends-on): Add stdint.
5794         * modules/unlink-busy: New module.
5795         * modules/utimecmp (Depends-on): Add stdint.
5796         * modules/uptime: New module.
5797         * modules/winsz-ioctl: New module.
5798         * modules/winsz-termios: New module.
5799         * modules/xnanosleep (Depends-on): Add nanosleep.
5800         * modules/ullong_max: Remove.
5801         * modules/xstrtoimax (Files): Remove m4/xstrtoimax.m4.
5802         (configure.ac): Remove gl_XSTRTOIMAX; no action needed now.
5803         * modules/xstrtol (Files): Remove m4/ulonglong.m4, m4/longlong.m4,
5804         m4/stdint_h.m4, m4/inttypes_h.m4, m4/uintmax_t.m4, m4/intmax_t.m4.
5805         (Depends-on): Add inttypes.
5806         (lib_SOURCES): Add xstrtol.h.
5807         * modules/xstrtoumax (Files): Remove m4/xstrtoumax.m4.
5808         (configure.ac): Remove gl_XSTRTOUMAX; no action needed now.
5809         * MODULES.html.sh: Move 'assert' into the assert section.
5810         Move 'dummy' into the linking section.
5811         Remove ullong_max.
5812         Add section for compatibility checks for POSIX:2001 functions,
5813         and put d-ino, d-type, link-follow, rmdir-errno, unlink-busy,
5814         winsz-ioctl, and winsz-termios into it.
5815         Add lchmod.
5816         Add top-level Misc section and put host-os, perl, and uptime
5817         into it.
5818
5819 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
5820
5821         * lib/cycle-check.h: Include <stdint.h> unconditionally, since we
5822         now assume the stdint module.  Do not include inttypes.h.
5823         * lib/fsusage.h: Likewise.
5824         * lib/getndelim2.c: Likewise.
5825         * lib/human.h: Likewise.
5826         * lib/inttostr.h: Likewise.
5827         * lib/obstack.c: Likewise.
5828         * lib/regex_internal.h: Likewise.
5829         * lib/tempname.c: Likewise.
5830         * lib/utimecmp.c: Likewise.
5831         * lib/xstrtol.h: Likewise.
5832
5833         * lib/stat_.h: Fix typo: HAVE_FUNC_LSTAT -> HAVE_LSTAT.
5834
5835         * lib/strtoimax.c: Adjust to macro name changes in Autoconf,
5836         e.g., HAVE_LONG_LONG -> HAVE_LONG_LONG_INT.
5837         * lib/xtime.h: Likewise.
5838
5839 2006-08-19  Paul Eggert  <eggert@cs.ucla.edu>
5840
5841         * modules/openat (Files): Add lib/fchmodat.c.
5842         Fixes problem reported by Jay Youngman.
5843
5844 2006-08-19  Paul Eggert  <eggert@cs.ucla.edu>
5845
5846         * lib/fchmodat.c: New file, from coreutils.  This was inadvertently
5847         omitted in the 2006-08-17 update.  Problem reported by Jay Youngman.
5848
5849 2006-08-18  Paul Eggert  <eggert@cs.ucla.edu>
5850             Bruno Haible  <bruno@clisp.org>
5851
5852         * m4/bison-i18n.m4 (BISON_I18N): Also handle the case where yacc exists
5853         and is a script that invokes bison. Tighten the code. Add comments.
5854
5855 2006-08-18  Jim Meyering  <jim@meyering.net>
5856
5857         * m4/gethrxtime.m4 (gl_PREREQ_GETHRXTIME): Also check for
5858         CLOCK_REALTIME, since gethrxtime may revert to using clock_gettime via
5859         gettime.c.  Gabor Z. Papp reported that gethrxtime-using programs
5860         failed to link due to unresolved clock_gettime on a linux-2.4.x system.
5861
5862 2006-08-18  Bruno Haible  <bruno@clisp.org>
5863
5864         * modules/bison-i18n: New file.
5865         * MODULES.html.sh (Internationalization functions): Add it.
5866
5867 2006-08-18  Bruno Haible  <bruno@clisp.org>
5868
5869         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Also check for
5870         sys/statvfs.h. When getmntinfo was found, check its declaration and
5871         set either MOUNTED_GETMNTINFO or MOUNTED_GETMNTINFO2 depending on it.
5872
5873 2006-08-18  Bruno Haible  <bruno@clisp.org>
5874
5875         * m4/bison-i18n.m4: New file, from bison.
5876
5877 2006-08-18  Bruno Haible  <bruno@clisp.org>
5878
5879         * lib/mountlist.c [MOUNTED_GETMNTINFO2]: Include sys/statvfs.h.
5880         (ME_DUMMY): Treat "kernfs" as a dummy.
5881         (read_file_system_list) [MOUNTED_GETMNTINFO2]: Implement.
5882
5883 2006-08-17  Paul Eggert  <eggert@cs.ucla.edu>
5884
5885         Update from coreutils.
5886
5887         2006-08-15  Jim Meyering  <jim@meyering.net>
5888
5889         * m4/openat.m4 (gl_FUNC_OPENAT): Add at-func.c via AC_LIBSOURCES.
5890
5891         2006-01-17  Jim Meyering  <jim@meyering.net>
5892
5893         * m4/fts.m4 (gl_FUNC_FTS_CORE): Depend on gl_FUNC_OPENAT.
5894
5895         2006-01-11  Jim Meyering  <jim@meyering.net>
5896
5897         * m4/openat.m4 (gl_FUNC_OPENAT): Require and compile fchmodat.c.
5898         Check for the lchmod function.
5899
5900 2006-08-17  Paul Eggert  <eggert@cs.ucla.edu>
5901
5902         Update from coreutils.
5903
5904         * lib/__fpending.h: Add copyright notice.
5905         * lib/fprintftime.h: Likewise.
5906         * lib/savedir.c: Use (C) in copyright notice.
5907         * lib/savedir.h: Likewise.
5908
5909         2006-08-15  Jim Meyering  <jim@meyering.net>
5910
5911         * lib/at-func.c: New file, with the logic of all emulated at-functions.
5912         * lib/openat-priv.h: Include <errno.h> and define ENOSYS,
5913         in support of the EXPECTED_ERRNO macro.
5914         * lib/openat.c (fstatat, unlinkat, fchownat): Remove function
5915         definitions.  Instead, define the appropriate symbols and include
5916         "at-func.c".
5917         * lib/mkdirat.c (mkdirat): Likewise.
5918         * lib/fchmodat.c (fchmodat): Likewise.
5919         (ENOSYS): Remove definition.
5920         * lib/openat.c: Don't include <errno.h>, now that "openat-priv.h" does
5921         it.  Don't include "unistd--.h" -- it wasn't ever used.
5922
5923         2006-01-17  Jim Meyering  <jim@meyering.net>
5924
5925         Rewrite fts.c not to change the current working directory,
5926         by using openat, fstatat, fdopendir, etc..
5927
5928         * lib/fts.c [! _LIBC]: Include "openat.h" and "unistd--.h".
5929         (HAVE_OPENAT_SUPPORT): Define.
5930         [_LIBC] (fchdir): Don't undef or define; no longer used.
5931         (FCHDIR): Define in terms of cwd_advance_fd rather than fchdir.
5932         Now, this `function' always succeeds, and consumes its file descriptor
5933         parameter -- so callers must not close such FDs.  Update callers.
5934         (diropen_fd, opendirat, cwd_advance_fd): New functions.
5935         (diropen): Add parameter, SP.  Adjust all callers.
5936         Implement using diropen_fd, rather than open.
5937         (fts_open): Initialize new member, fts_cwd_fd.
5938         Remove fts_rft-setting code.
5939         (fts_close): Close fts_cwd_fd, if necessary.
5940         (__opendir2): Define in terms of opendir or opendirat,
5941         depending on whether the FST_NOCHDIR flag is set.
5942         (fts_build): Since fts_safe_changedir consumes its FD, and since
5943         this code must do `closedir(dirp)', dup the dirfd(dirp) argument,
5944         and close the dup'd file descriptor upon failure.
5945         (fts_stat): Use fstatat(...AT_SYMLINK_NOFOLLOW) in place of lstat.
5946         (fts_safe_changedir): Tweak semantics to reflect that this function
5947         now calls cwd_advance_fd and hence consumes its FD argument.
5948         * lib/fts_.h [struct FTS] (fts_cwd_fd): New member.
5949         [struct FTS] (fts_rft): Remove now-unused member.
5950         [struct FTS] (fts_cycle.state): Improve comment.
5951
5952         * lib/openat.c (openat_needs_fchdir): New function.
5953         * lib/openat.h (openat_needs_fchdir): Declare it.
5954
5955 2006-08-16  Paul Eggert  <eggert@cs.ucla.edu>
5956
5957         * lib/memcoll.c (memcoll): Set errno = 0 in the shortcut case, too.
5958         Problem and fix reported by Pádraig Brady in
5959         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00099.html>.
5960
5961 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
5962
5963         * modules/cycle-check (configure.ac): Add gl_CYCLE_CHECK.
5964
5965 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
5966
5967         * lib/memcoll.c (memcoll): Optimize for the common case where the
5968         arguments are bytewise equal.
5969
5970 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
5971
5972         * doc/regexprops-generic.texi: Add a copyright notice.
5973
5974 2006-08-15  Bruno Haible  <bruno@clisp.org>
5975
5976         * modules/tmpdir (License): Change to LGPL.
5977
5978 2006-08-15  Bruno Haible  <bruno@clisp.org>
5979
5980         * gnulib-tool (func_all_modules, func_verify_module): COPYING is not a
5981         module.
5982
5983 2006-08-14  Simon Josefsson  <jas@extundo.com>
5984
5985         * config/srclist.txt: Add gnupload.
5986
5987 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
5988
5989         Change copyright notice from LGPL 2 to GPL 2, since that's the
5990         standard form used in the gnulib repository.
5991         * tests/test-lock.c: Likewise.
5992         * tests/test-stdint.c: Likewise.
5993         * tests/test-tls.c: Likewise.
5994
5995         * users.txt: Add bison, diffutils, libprelude, prelude-lml,
5996         prelude-manager.  User shorter URLs for GNU projects, without '?'.
5997         Add copyright notice.
5998
5999         * check-module: Add copyright notice.  Output a copyright
6000         notice if "--version" is specified.
6001         * modules/COPYING: New file.
6002         * tests/test-getaddrinfo.c: Add copyright notice.
6003         * tests/test-verify.c: Likewise.
6004
6005 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
6006
6007         Change copyright notice from LGPL 2 to GPL 2, since that's the
6008         standard form used in the gnulib repository.
6009         * lib/lock.c: LGPL -> GPL.
6010         * lib/lock.h: Likewise.
6011         * lib/strnlen1.c: Likewise.
6012         * lib/strnlen1.h: Likewise.
6013         * lib/tls.c: Likewise.
6014         * lib/tls.h: Likewise.
6015         * lib/tmpdir.c: Likewise.
6016
6017         * lib/TODO: Remove; this belongs only in coreutils.
6018
6019 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
6020
6021         Add copyright notices to long-enough files that lack them, since
6022         otherwise the files aren't clearly free.  Use the same notice that
6023         getdate.texi already uses.
6024         * doc/alloca-opt.texi: Add copyright notice.
6025         * doc/alloca.texi: Likewise.
6026         * doc/ctime.texi: Likewise.
6027         * doc/functions.texi: Likewise.
6028         * doc/gcd.texi: Likewise.
6029         * doc/gnulib-tool.texi: Likewise.
6030         * doc/inet_ntoa.texi: Likewise.
6031         * doc/visibility.texi: Likewise.
6032
6033         * doc/getdate.texi: Update FDL version from 1.1 to 1.2.
6034         * doc/quote.texi: Add copyright notice.
6035
6036         * doc/solaris-versions: Add SunOS 5.10, SunOS 1.x, SunOS 4.0, SunOS
6037         4.0.x, SunOS 4.1.1.1, SunOS 4.1.1_U1, SunOS 4.1.3B.  SunOS 4.1.3
6038         was Solaris 1.1A.  Remove space before B in Solaris 1.1.1B.
6039         Mention SunOS 5.11.  Mention that everything before SunOS 5.7
6040         is now obsolete, and give a pointer to the Sun list.
6041         Add copyright notice.
6042
6043 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
6044
6045         * config/srclistvars.sh: Add copyright notice.
6046
6047 2006-08-14  Eric Blake  <ebb9@byu.net>
6048
6049         Import the following change from libc:
6050
6051         2006-08-12  Ulrich Drepper  <drepper@redhat.com>
6052
6053         Upstream bug 2997.
6054         * lib/misc/error.c: Add space between program name and message if file
6055         name is missing.
6056
6057 2006-08-12  Karl Berry  <karl@gnu.org>
6058
6059         * config/srclist.txt (ssize_t.m4, sig_atomic_t.m4, signalblocking.m4):
6060         remove, these originate in gnulib now.
6061
6062 2006-08-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6063
6064         * doc/Makefile (standards.info standards.html standards.dvi):
6065         Also depend on make-stds.texi.
6066
6067 2006-08-11  Paul Eggert  <eggert@cs.ucla.edu>
6068
6069         * lib/pipe-safer.c (pipe_safer): Fix misspelling: HAVE_FUNC_PIPE ->
6070         HAVE_PIPE.  Fix a file descriptor leak when fd_safer fails.
6071
6072         * lib/regex_internal.c (re_string_skip_chars): Don't assume WEOF fits
6073         in wchar_t.  Problem reported by Eric Blake.
6074
6075         * lib/snprintf.c (snprintf): memcpy LEN bytes, not SIZE - 1, when
6076         LEN is smaller than SIZE.  Suggested by Bruno Haible.
6077         Also, help the compiler to keep LEN in a register.
6078
6079 2006-08-11  Eric Blake  <ebb9@byu.net>
6080
6081         * users.txt: Sort.  Add tar.
6082
6083 2006-08-11  Bruno Haible  <bruno@clisp.org>
6084
6085         * users.txt: New file.
6086
6087 2006-08-11  Bruno Haible  <bruno@clisp.org>
6088
6089         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Include <stdio.h> and <time.h>
6090         before <wchar.h>. Needed for OSF/1 and BSD/OS.
6091
6092 2006-08-10  Paul Eggert  <eggert@cs.ucla.edu>
6093
6094         * modules/snprintf (Depends-on): Remove minmax.
6095         (Maintainer): Add self and Bruno.
6096
6097 2006-08-10  Paul Eggert  <eggert@cs.ucla.edu>
6098
6099         * lib/.cppi-disable: Add snprintf.h, socket_.h.
6100         * lib/snprintf.c: Include <errno.h> and <limits.h>.
6101         (EOVERFLOW): Define if the system does not.
6102         Do not include "minmax.h"; it wasn't used.
6103         (snprintf): Don't assume size_t promotes to an unsigned type.
6104         Fix bug when generated string was too long for the buffer: the
6105         buffer's contents are supposed to be the initial prefix of the
6106         output.  Don't assume vasnprintf returns EOVERFLOW if the size
6107         exceeds INT_MAX; do the check ourselves.
6108
6109         Import the following changes from libc:
6110
6111         2006-06-02  Jakub Jelinek  <jakub@redhat.com>
6112
6113         * lib/posix/regex_internal.c (re_string_skip_chars): If no character
6114         has been converted at all, set *last_wc to WEOF.  If mbrtowc failed,
6115         set wc to the byte which couldn't be converted.
6116         (re_string_reconstruct): Don't clear valid_raw_len before calling
6117         re_string_skip_chars.  If wc is WEOF after re_string_skip_chars, set
6118         tip_context using re_string_context_at.
6119
6120         2006-05-02  Ulrich Drepper  <drepper@redhat.com>
6121
6122         * lib/posix/regex.h: g++ still cannot handled [restrict].
6123
6124         2006-04-21  Ulrich Drepper  <drepper@redhat.com>
6125
6126         * lib/posix/regex.h: Remove special handling for VMS.
6127
6128 2006-08-10  Jim Meyering  <jim@meyering.net>
6129
6130         * modules/same-inode: New module.
6131         * modules/dev-ino: New module.
6132         * modules/cycle-check: Depend on these modules, rather than simply
6133         including their .h files.
6134         (Makefile.am): Don't list cycle-check.[ch] here, now that they're
6135         required via m4/cycle-check.m4.
6136         * modules/same: Depend on new same-inode module, rather than
6137         including same-inode.h.
6138         * modules/chdir-safer: New file.
6139
6140         * modules/chown (Depends-on): Add stat-macros.
6141
6142 2006-08-10  Jim Meyering  <jim@meyering.net>
6143
6144         * m4/cycle-check.m4: New file.
6145         Require gl_STRUCT_DEV_INO and gl_SAME_INODE.
6146         * m4/dev-ino.m4, m4/same-inode.m4: New files.
6147
6148 2006-08-10  Eric Blake  <ebb9@byu.net>
6149
6150         * modules/verror (Depends-on): Remove bogus gl_VERROR that snuck
6151         in from original proposal.
6152
6153 2006-08-10  Eric Blake  <ebb9@byu.net>
6154         and Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
6155
6156         * gnulib-tool (func_import): Detect unexpanded macros in gnulib
6157         namespace.
6158
6159 2006-08-10  Bruno Haible  <bruno@clisp.org>
6160
6161         * gnulib-tool (func_create_testdir): Detect unexpanded macros here
6162         as well.
6163
6164 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
6165
6166         Sync from coreutils.
6167
6168         2006-07-19  Mike Frysinger  <vapier@gentoo.org>
6169
6170         * lib/mountlist.c [ME_REMOTE]: Filter out cifs.
6171         Reported by Toralf Förster in <http://bugs.gentoo.org/141012>.
6172
6173 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
6174
6175         * modules/restrict: Remove; no longer needed now that we assume
6176         Autoconf 2.59 or later.
6177         * MODULES.html.sh: Remove 'restrict'.
6178         * modules/argp (Depends-on): Remove 'restrict'.
6179         * modules/base64 (Depends-on): Likewise.
6180         * modules/gc (Depends-on): Likewise.
6181         * modules/getaddrinfo (Depends-on): Likewise.
6182         * modules/glob (Depends-on): Likewise.
6183         * modules/inet_ntop (Depends-on): Likewise.
6184         * modules/inet_pton (Depends-on): Likewise.
6185         * modules/memxor (Depends-on): Likewise.
6186         * modules/regex (Depends-on): Likewise.
6187         * modules/strtok_r (Depends-on): Likewise.
6188         * modules/time_r (Depends-on): Likewise.
6189
6190 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
6191
6192         * m4/argp.m4 (gl_ARGP): Require AC_C_RESTRICT.
6193         * m4/gc.m4 (gl_PREREQ_GC): Likewise.
6194         * m4/glob.m4 (gl_PREREQ_GLOB): Likewise.
6195         * m4/inet_ntop.m4 (gl_PREREQ_INET_NTOP): Likewise.
6196         * m4/inet_pton.m4 (gl_PREREQ_INET_PTON): Likewise.
6197         * m4/memxor.m4 (gl_MEMXOR): Likewise.
6198         * m4/restrict.m4: Remove; no longer needed.  All remaining uses of
6199         gl_C_RESTRICT replaced by AC_C_RESTRICT.
6200
6201         Merge from coreutils.
6202         * m4/regex.m4 (gl_PREREQ_REGEX): Require AC_C_RESTRICT, not
6203         gl_C_RESTRICT, now that we assume Autoconf 2.59 or later.
6204         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Likewise.
6205         * m4/time_r.m4 (gl_TIME_R): Likewise.
6206
6207 2006-08-09  Karl Berry  <karl@gnu.org>
6208
6209         * config/srclist.txt: no more gettext-tools, per Bruno.
6210
6211 2006-08-08  Eric Blake  <ebb9@byu.net>
6212
6213         * modules/verror: New module.
6214         * MODULES.html.sh: Document it.
6215
6216 2006-08-08  Eric Blake  <ebb9@byu.net>
6217
6218         * lib/verror.h, lib/verror.c: New files.
6219
6220 2006-08-08  Eric Blake  <ebb9@byu.net>
6221
6222         * lib/verror.c (verror_at_line): Work around glibc bug 2997, so that
6223         verror_at_line output complies with GNU Coding Standards even when
6224         file is NULL.
6225
6226 2006-08-07  Bruno Haible  <bruno@clisp.org>
6227
6228         * lib/allocsa.h (sa_alignof) [_AIX]: Also consider 'long long' in newer
6229         versions of AIX.
6230         Reported by Ralf Wildenhues.
6231
6232 2006-08-07  Bruno Haible  <bruno@clisp.org>
6233
6234         * gnulib-tool (func_create_testdir): Wrap the set of autoconf snippets
6235         in an AC_DEFUN. Needed so that the autoconf snippets can use
6236         AC_REQUIRE.
6237
6238 2006-08-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6239
6240         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
6241         Initialize pkgdata_DATA.
6242         * modules/javaversion (Makefile.am): Add to pkgdata_DATA, rather than
6243         overriding it.
6244
6245 2006-08-06  Eric Blake  <ebb9@byu.net>
6246
6247         * lib/error.h: Fold in some upstream changes from glibc.
6248         * lib/error.c: Likewise.
6249
6250 2006-08-04  Bruno Haible  <bruno@clisp.org>
6251
6252         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
6253         Make the mostlyclean-local rule depend on mostlyclean-generic.
6254         Reported by Jim Meyering. Solution suggested by Ralf Wildenhues.
6255
6256 2006-07-31  Bruno Haible  <bruno@clisp.org>
6257
6258         * m4/localcharset.m4 (gl_LOCALCHARSET): Remove tests for <stddef.h>,
6259         <stdlib.h>, <string.h>.
6260
6261 2006-07-30  Bruno Haible  <bruno@clisp.org>
6262
6263         * modules/readlink (License): Change to LGPL.
6264
6265 2006-07-30  Bruno Haible  <bruno@clisp.org>
6266
6267         * modules/javaversion (Makefile.am): Distribute javaversion.java and
6268         javaversion.class. Also install javaversion.class in $(pkgdatadir) and
6269         set PKGDATADIR to point to it.
6270
6271 2006-07-30  Bruno Haible  <bruno@clisp.org>
6272
6273         * modules/csharpexec (configure.ac): Comment out macro invocation.
6274         * modules/javaexec (configure.ac): Likewise.
6275         * modules/javacomp-script (configure.ac): Likewise.
6276
6277         * modules/csharpcomp-script (configure.ac): Use AC_REQUIRE.
6278
6279 2006-07-30  Bruno Haible  <bruno@clisp.org>
6280
6281         * modules/clean-temp (Depends-on): Add linkedhash-list, remove
6282         linked-list.
6283
6284 2006-07-30  Bruno Haible  <bruno@clisp.org>
6285
6286         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Assume <string.h> exists.
6287
6288 2006-07-30  Bruno Haible  <bruno@clisp.org>
6289
6290         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
6291         Initialize MOSTLYCLEANFILES to core and *.stackdump, so that core dumps
6292         get removed.
6293
6294 2006-07-29  Bruno Haible  <bruno@clisp.org>
6295
6296         Make it possible for gnulib-tool to work with locally modified or
6297         augmented gnulib repositories.
6298         * gnulib-tool (func_usage): Document --local-dir option.
6299         (local_gnulib_dir): New variable.
6300         Handle --local-dir option.
6301         (func_lookup_file): New function.
6302         (func_all_modules, func_verify_module): Look also in $local_gnulib_dir.
6303         (func_get_description, func_get_filelist, func_get_description,
6304         func_get_filelist, func_get_dependencies, func_get_autoconf_snippet,
6305         func_get_automake_snippet, func_get_include_directive,
6306         func_get_license, func_get_maintainer): Use func_lookup_file.
6307         (func_import, func_create_testdir): Use func_lookup_file.
6308
6309 2006-07-29  Bruno Haible  <bruno@clisp.org>
6310
6311         * modules/setenv (Depends-on): Add unistd.
6312
6313 2006-07-29  Bruno Haible  <bruno@clisp.org>
6314
6315         * lib/setenv.c: Undo unintended modification done on 2006-02-27.
6316
6317 2006-07-29  Bruno Haible  <bruno@clisp.org>
6318
6319         * lib/localcharset.c: Assume <stddef.h>, <stdlib.h>, <string.h> exist.
6320
6321 2006-07-29  Bruno Haible  <bruno@clisp.org>
6322
6323         * gnulib-tool (import, update): If there is no Makefile.am, look at
6324         aclocal.m4, instead of bailing out.
6325
6326 2006-07-29  Bruno Haible  <bruno@clisp.org>
6327
6328         * gnulib-tool (func_usage): Revert most of the 2006-07-15 change.
6329         Categorize the options by when they are useful.
6330
6331 2006-07-29  Bruno Haible  <bruno@clisp.org>
6332
6333         * gnulib-tool (func_usage): Document option --no-libtool.
6334         Handle option --no-libtool.
6335         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am): Update
6336         for changed semantics of $libtool variable.
6337         (func_import): Likewise. If libtool is not used, show this through
6338         an option --no-libtool.
6339         (func_create_testdir): Update.
6340
6341 2006-07-29  Bruno Haible  <bruno@clisp.org>
6342
6343         * gnulib-tool (func_import): Extend error message about missing
6344         --doc-base.
6345
6346 2006-07-29  Bruno Haible  <bruno@clisp.org>
6347
6348         * gnulib-tool (func_import): Don't create the $docbase directory if
6349         there is no file to store there.
6350
6351 2006-07-29  Bruno Haible  <bruno@clisp.org>
6352
6353         * gnulib-tool (autoconf_minversion): If a --dir option is given and
6354         relevant, look for configure.ac there, not in the current directory.
6355         Also use a simple search for AC_PREREQ, not "autoconf --trace".
6356
6357 2006-07-29  Bruno Haible  <bruno@clisp.org>
6358
6359         * gnulib-tool (SORT): New variable.
6360         (func_usage): Undocument --assume-autoconf option.
6361         Remove --assume-autoconf option handling.
6362         (autoconf_minversion): Determine from the contents of configure.ac.
6363         (func_import): Remove autoconf_minversion handling.
6364         Suggested by Eric Blake.
6365
6366 2006-07-29  Bruno Haible  <bruno@clisp.org>
6367
6368         * doc/gnulib-tool.texi (gl_LIBTOOL): Mention --no-libtool option.
6369
6370 2006-07-29  Bruno Haible  <bruno@clisp.org>
6371
6372         * config/srclist.txt (*setenv.[ch]): Remove rules.
6373
6374 2006-07-28  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
6375
6376         * m4/inet_pton.m4, inet_ntop.m4: Check for netinet/in.h too.
6377
6378 2006-07-28  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
6379
6380         * lib/inet_ntop.h, inet_pton.h: Need to include netinet/in.h before
6381         arpa/inet.h.
6382
6383 2006-07-28  Simon Josefsson  <jas@extundo.com>
6384
6385         * modules/inet_ntop (Depends-on): Depend on arpa_inet.
6386         * modules/inet_pton (Depends-on): Likewise.
6387
6388 2006-07-28  Simon Josefsson  <jas@extundo.com>
6389
6390         * m4/netinet_in_h.m4: New file.
6391
6392 2006-07-28  Simon Josefsson  <jas@extundo.com>
6393
6394         * lib/inet_ntop.h, inet_pton.h: No need to guard netinet/in.h
6395         #include's.
6396
6397 2006-07-28  Simon Josefsson  <jas@extundo.com>
6398
6399         * lib/inet_ntop.h, inet_pton.h: No need to guard arpa/inet.h
6400         #include's.
6401
6402 2006-07-28  Paul Eggert  <eggert@cs.ucla.edu>
6403
6404         * lib/modechange.c (mode_compile): Numeric modes now affect setuid and
6405         setgid on directories only if they set these bits.
6406         * lib/modechange.h: Remove obsolete comment about masks.
6407
6408 2006-07-28  Eric Blake  <ebb9@byu.net>
6409
6410         * lib/regex_internal.h (struct re_dfa_t) [!_LIBC]: Avoid invalid C89
6411         macro expansion.
6412
6413 2006-07-28  Bruno Haible  <bruno@clisp.org>
6414
6415         * lib/inet_ntop.h, inet_pton.h: Use #if HAVE* instead of #ifdef HAVE*.
6416
6417 2006-07-28  Bruno Haible  <bruno@clisp.org>
6418
6419         * m4/mbchar.m4 (gl_MBCHAR): Also test for iswcntrl.
6420
6421 2006-07-28  Bruno Haible  <bruno@clisp.org>
6422
6423         * lib/mbchar.h (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit,
6424         iswgraph, iswlower, iswprint, iswpunct, iswspace, iswupper, iswxdigit):
6425         Define fallbacks.
6426         Avoids link error on FreeBSD 4.x.
6427         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
6428
6429         * lib/wcwidth.h (iswprint): Assume an ASCII compatible wide character
6430         encoding.
6431         * lib/mbswidth.c (iswcntrl): Likewise.
6432
6433 2006-07-27  Bruno Haible  <bruno@clisp.org>
6434
6435         * m4/stdint.m4 (gl_STDINT_H): Define __STDC_CONSTANT_MACROS during the
6436         test.
6437
6438 2006-07-27  Bruno Haible  <bruno@clisp.org>
6439
6440         * lib/stdint_.h (INT*_C, UINT*_C) [C++]: Define these if
6441         __STDC_CONSTANT_MACROS is defined, not if __STDC_LIMIT_MACROS is
6442         defined.
6443
6444 2006-07-26  Eric Blake  <ebb9@byu.net>
6445
6446         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Check for missing pipe.
6447
6448 2006-07-26  Eric Blake  <ebb9@byu.net>
6449
6450         * lib/mkstemp-safer.c [! HAVE_MKSTEMP]: Add prototype for platforms
6451         like mingw that lack mkstemp.
6452         * lib/pipe-safer.c (pipe_safer) [!HAVE_FUNC_PIPE]: Provide fallback to
6453         avoid compilation warning on mingw.
6454
6455 2006-07-26  Bruno Haible  <bruno@clisp.org>
6456
6457         * m4/stdint.m4 (gl_STDINT_H): Also verify the existence of the macros
6458         INT*_MIN, INT_LEAST*_MAX, INT_LEAST*_MIN, UINT_LEAST*_MAX,
6459         INT_FAST*_MIN, INTPTR_MIN.
6460
6461 2006-07-25  Bruno Haible  <bruno@clisp.org>
6462
6463         * modules/version-etc (Depends-on): Add stdarg.
6464
6465 2006-07-25  Bruno Haible  <bruno@clisp.org>
6466
6467         * m4/stdint.m4 (gl_INTEGER_TYPE_SUFFIX): Avoid 'eval' in front of
6468         complex commands.
6469
6470 2006-07-25  Bruno Haible  <bruno@clisp.org>
6471
6472         * lib/version-etc.c (version_etc_va): Use va_copy, assumed to be
6473         defined in <stdarg.h> or config.h.
6474
6475 2006-07-24  Paul Eggert  <eggert@cs.ucla.edu>
6476
6477         * m4/stdio-safer.m4 (gl_FOPEN_SAFER, gl_TMPFILE_SAFER): New macros.
6478         (gl_STDIO_SAFER): Remove.
6479
6480 2006-07-24  Paul Eggert  <eggert@cs.ucla.edu>
6481
6482         * MODULES.html.sh (File stream based Input/Output):
6483         Add fopen-safer, tmpfile-safer; remove stdio-safer.
6484         * modules/getusershell (Depends-on): Change stdio-safer to fopen-safer.
6485         * modules/fopen-safer, modules/tmpfile-safer: New files.
6486         * modules/stdio-safer: Remove.
6487
6488 2006-07-24  Bruno Haible  <bruno@clisp.org>
6489
6490         * modules/tmpdir: New file.
6491         * MODULES.html.sh (File system functions): Add it.
6492
6493 2006-07-24  Bruno Haible  <bruno@clisp.org>
6494
6495         * modules/javacomp (Depends-on): Add unistd, javaversion, binary-io,
6496         getline, pathname, fwriteerror, clean-temp, xvasprintf, strstr.
6497
6498 2006-07-24  Bruno Haible  <bruno@clisp.org>
6499
6500         * modules/clean-temp: New file.
6501
6502 2006-07-24  Bruno Haible  <bruno@clisp.org>
6503
6504         * m4/tmpdir.m4: New file, from GNU gettext.
6505
6506 2006-07-24  Bruno Haible  <bruno@clisp.org>
6507
6508         * lib/tmpdir.h: New file, from GNU gettext.
6509         * lib/tmpdir.c: New file, from GNU gettext.
6510
6511 2006-07-24  Bruno Haible  <bruno@clisp.org>
6512
6513         * lib/clean-temp.h: New file, from GNU gettext.
6514         * lib/clean-temp.c: New file, from GNU gettext.
6515
6516 2006-07-23  Eric Blake  <ebb9@byu.net>
6517
6518         * modules/stdio-safer (Files): Add tmpfile-safer.c.
6519         (Depends-on): Add binary-io.
6520
6521 2006-07-23  Eric Blake  <ebb9@byu.net>
6522
6523         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Add tmpfile-safer.c.
6524
6525 2006-07-23  Eric Blake  <ebb9@byu.net>
6526
6527         * lib/tmpfile-safer.c: New file.
6528         * lib/stdio-safer.h (fopen_safer): Add prototype.
6529         * lib/stdio--.h (tmpfile): Make safer.
6530
6531 2006-07-23  Bruno Haible  <bruno@clisp.org>
6532
6533         * lib/gl_anylinked_list2.h (ASYNCSAFE): New macro.
6534         (gl_linked_add_first, gl_linked_add_last, gl_linked_add_before,
6535         gl_linked_add_after, gl_linked_add_at, gl_linked_remove_node,
6536         gl_linked_remove_at): Use it.
6537
6538 2006-07-22  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
6539         and Simon Josefsson <jas@extundo.com>
6540
6541         * lib/getaddrinfo.h (AI_PASSIVE): Make sure it is defined.
6542
6543         * lib/getaddrinfo.c (getaddrinfo): Support AI_PASSIVE.
6544
6545 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
6546
6547         * modules/close-stream: New file.
6548         * modules/closeout (Description): Make it clear that it exits
6549         with a diagnostic on error.
6550         (Depends-on): Add close-stream.  Remove fpending, stdbool.
6551         * MODULES.html.sh (File stream based Input/Output): Add close-stream.
6552
6553 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
6554
6555         * m4/close-stream.m4: New file.
6556
6557 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
6558
6559         * lib/close-stream.c, lib/close-stream.h: New files.
6560
6561 2006-07-22  Bruno Haible  <bruno@clisp.org>
6562
6563         Merge from GNU gettext 0.15.
6564
6565         2006-05-01  Bruno Haible  <bruno@clisp.org>
6566
6567                 * build-aux/javacomp.sh.in: Update for changed javacomp.m4.
6568
6569         2006-07-22  Bruno Haible  <bruno@clisp.org>
6570
6571                 * modules/javaversion: New file.
6572                 * MODULES.html.sh (Java): Add javaversion.
6573
6574         2006-03-12  Bruno Haible  <bruno@clisp.org>
6575
6576                 * build-aux/javaexec.sh.in: Update for changed javaexec.m4.
6577
6578         2005-12-04  Bruno Haible  <bruno@clisp.org>
6579
6580                 * build-aux/csharpexec.sh.in: Add support for 'clix' launcher
6581                 (untested).
6582
6583         2006-06-21  Bruno Haible  <bruno@clisp.org>
6584
6585                 Avoid warnings from recent versions of mcs.
6586                 * build-aux/csharpcomp.sh.in (options_mcs): Don't use options
6587                 -o, -L, -r any more. Use options documented since mcs-1.0
6588                 instead. Similarly for -g.
6589
6590         2005-12-04  Bruno Haible  <bruno@clisp.org>
6591
6592                 * build-aux/csharpcomp.sh.in: Suffix for resources is
6593                 .resources, not .resource.
6594
6595         2005-07-09  Bruno Haible  <bruno@clisp.org>
6596
6597                 * build-aux/csharpcomp.sh.in (options_csc): For -l option,
6598                 add a .dll suffix.
6599                 Reported by Mark Junker <mjscod@gmx.de>.
6600
6601         2006-07-22  Bruno Haible  <bruno@clisp.org>
6602
6603                 * modules/gettext: Upgrade to gettext-0.15.
6604                 (Files): Remove m4/isc-posix.m4. Add m4/lock.m4,
6605                 m4/visibility.m4.
6606                 Replace m4/inttypes.m4 with m4/inttypes-h.m4.
6607
6608 2006-07-22  Bruno Haible  <bruno@clisp.org>
6609
6610         Merge from GNU gettext 0.15.
6611
6612         2006-03-25  Bruno Haible  <bruno@clisp.org>
6613
6614                 * lib-link.m4 (AC_LIB_LINKFLAGS_FROM_LIBS): New macro.
6615
6616         2006-07-21  Bruno Haible  <bruno@clisp.org>
6617
6618                 * javacomp.m4 (gt_JAVACOMP): Convert target_version "null" to
6619                 "1.1".
6620
6621         2006-05-09  Bruno Haible  <bruno@clisp.org>
6622
6623                 * javacomp.m4 (gt_JAVACOMP): On Cygwin, set
6624                 CLASSPATH_SEPARATOR to a semicolon. Use CLASSPATH_SEPARATOR
6625                 for the conftestver execution.
6626
6627         2006-05-01  Bruno Haible  <bruno@clisp.org>
6628
6629                 * javacomp.m4 (gt_JAVACOMP): Accept a source-version and an
6630                 optional target-version argument. Verify that the compiler
6631                 groks source of the specified source-version, or add -source
6632                 option as necessary. Verify that the compiler produces
6633                 bytecode in the specified target-version, or add -target and
6634                 -source options as necessary. Make the result of the test
6635                 available as variable CONF_JAVAC. Also log error output in
6636                 config.log.
6637
6638         2006-03-11  Bruno Haible  <bruno@clisp.org>
6639
6640                 * javacomp.m4 (gt_JAVACOMP): Treat gcj-4.x like gcj-3.x.
6641
6642         2006-05-09  Bruno Haible  <bruno@clisp.org>
6643
6644                 * javaexec.m4 (gt_JAVAEXEC): On Cygwin, set
6645                 CLASSPATH_SEPARATOR to a semicolon.
6646
6647         2006-03-12  Bruno Haible  <bruno@clisp.org>
6648
6649                 * javaexec.m4 (gt_JAVAEXEC): Make the result of the test
6650                 available as variable CONF_JAVA, for subsequent autoconf
6651                 tests. Also log error output in config.log.
6652
6653         2006-07-19  Bruno Haible  <bruno@clisp.org>
6654
6655                 * getline.m4 (AM_FUNC_GETLINE): When cross-compiling, assume
6656                 that getline works on glibc2 systems. Needed to avoid trouble
6657                 in relocatable.c.
6658                 Reported by Nils Magnus Larsgard <nmlarsgaard@atmel.no>.
6659
6660         2005-12-04  Bruno Haible  <bruno@clisp.org>
6661
6662                 * csharpexec.m4 (gt_CSHARPEXEC): Add support for 'clix'
6663                 launcher (untested).
6664
6665         2005-12-04  Bruno Haible  <bruno@clisp.org>
6666
6667                 * csharpcomp.m4 (gt_CSHARPCOMP): Also set CSHARPCOMPFLAGS.
6668
6669         2006-07-22  Bruno Haible  <bruno@clisp.org>
6670
6671                 * gettext.m4: Update from GNU gettext-0.15.
6672                 * nls.m4: Likewise.
6673                 * po.m4: Likewise.
6674                 * inttypes-pri.m4: Likewise.
6675                 * inttypes-h.m4: Renamed from inttypes.m4.
6676                 (gl_HEADER_INTTYPES_H): Renamed from gt_HEADER_INTTYPES_H.
6677
6678 2006-07-22  Bruno Haible  <bruno@clisp.org>
6679
6680         Merge from GNU gettext 0.15.
6681
6682         2005-07-05  Bruno Haible  <bruno@clisp.org>
6683
6684                 * printf-args.c (printf_fetchargs): Work around broken
6685                 definition of wint_t on mingw.
6686
6687         2005-02-12  Bruno Haible  <bruno@clisp.org>
6688
6689                 * xallocsa.h: Add extern "C" for C++.
6690
6691         2006-05-17  Bruno Haible  <bruno@clisp.org>
6692
6693                 Cygwin portability.
6694                 * progreloc.c (WIN32_NATIVE): Renamed from WIN32.
6695
6696         2006-04-30  Bruno Haible  <bruno@clisp.org>
6697
6698                 * progreloc.c: Include <mach-o/dyld.h> if available.
6699                 (find_executable): Use _NSGetExecutablePath when possible.
6700
6701         2006-05-06  Charles Wilson  <cygwin@cwilson.fastmail.fm>
6702
6703                 * progreloc.c (maybe_executable) [CYGWIN]: Use the access()
6704                 function.
6705
6706         2005-12-29  Bruno Haible  <bruno@clisp.org>
6707
6708                 * progreloc.c (set_program_name_and_installdir): Fix
6709                 compilation error.
6710
6711         2005-12-04  Bruno Haible  <bruno@clisp.org>
6712
6713                 Cygwin portability.
6714                 * progreloc.c: Include <windows.h> also on Cygwin.
6715                 (find_executable): Add support for Cygwin.
6716                 (set_program_name_and_installdir): Handle also platforms with
6717                 nonempty EXEEXT.
6718
6719         2006-07-11  Bruno Haible  <bruno@clisp.org>
6720
6721                 * javacomp.c: Fix a comment.
6722                 Reported by Jim Meyering.
6723
6724         2006-04-30  Bruno Haible  <bruno@clisp.org>
6725
6726                 * javacomp.h (compile_java_class): Add source_version,
6727                 target_version arguments.
6728                 * javacomp.c: Rewritten to choose only a compiler that
6729                 respects the specified source_version and target_version.
6730
6731         2006-06-27  Bruno Haible  <bruno@clisp.org>
6732
6733                 Assume correct S_ISDIR macro.
6734                 * mkdtemp.c: Remove test of STAT_MACROS_BROKEN.
6735
6736         2006-07-22  Bruno Haible  <bruno@clisp.org>
6737
6738                 * javaversion.h: New file, from GNU gettext.
6739                 * javaversion.c: New file, from GNU gettext.
6740                 * javaversion.java: New file, from GNU gettext.
6741                 * javaversion.class: New file, from GNU gettext.
6742
6743         2006-05-17  Bruno Haible  <bruno@clisp.org>
6744
6745                 Cygwin portability.
6746                 * javaexec.c (execute_java_class): Test for jview program
6747                 also on Cygwin.
6748
6749         2006-04-09  Bruno Haible  <bruno@clisp.org>
6750
6751                 * fatal-signal.c: Don't include string.h.
6752                 (at_fatal_signal): Use a copying loop instead of memcpy.
6753
6754         2005-12-04  Bruno Haible  <bruno@clisp.org>
6755
6756                 * csharpexec.c: Add support for 'clix' launcher (untested).
6757                 (execute_csharp_using_sscli): New function.
6758                 (execute_csharp_program): Call it.
6759
6760         2006-06-21  Bruno Haible  <bruno@clisp.org>
6761
6762                 Avoid warnings from recent versions of mcs.
6763                 * csharpcomp.c (compile_csharp_using_mono): Don't use options
6764                 -o, -L, -r any more. Use options documented since mcs-1.0
6765                 instead. Similarly for -g.
6766
6767         2005-07-09  Bruno Haible  <bruno@clisp.org>
6768
6769                 * csharpcomp.c (compile_csharp_using_sscli): For -l option,
6770                 add a .dll suffix.
6771                 Reported by Mark Junker <mjscod@gmx.de>.
6772
6773         2006-06-17  Bruno Haible  <bruno@clisp.org>
6774
6775                 * config.charset: Update for NetBSD 3.0.
6776
6777         2006-05-17  Bruno Haible  <bruno@clisp.org>
6778
6779                 Cygwin portability.
6780                 * localcharset.c (WIN32_NATIVE): Renamed from WIN32.
6781
6782         2006-05-16  Bruno Haible  <bruno@clisp.org>
6783
6784                 * localcharset.c [CYGWIN]: Include <windows.h>.
6785                 (get_charset_aliases): For Cygwin, return the same CPxxx
6786                 aliases list as under WIN32.
6787                 (locale_charset) [CYGWIN]: Try to retrieve the encoding from
6788                 the environment variables. Fall back to GetACP().
6789
6790         2006-04-05  Bruno Haible  <bruno@clisp.org>
6791
6792                 * config.charset: Update Juan Manuel Guerrero's address.
6793
6794         2005-02-12  Bruno Haible  <bruno@clisp.org>
6795
6796                 * allocsa.h: Add extern "C" for C++.
6797
6798         2005-02-10  Bruno Haible  <bruno@clisp.org>
6799
6800                 * allocsa.h (sa_alignof): Define differently with AIX xlc, to
6801                 avoid a bug of this compiler on AIX 3.2.5 dealing with enums.
6802
6803         2006-07-22  Bruno Haible  <bruno@clisp.org>
6804
6805                 * gettext.h: Update to GNU gettext-0.15.
6806
6807 2006-07-22  Bruno Haible  <bruno@clisp.org>
6808
6809         * config/srclist.txt: Resync printf-args.c, vasnprintf.c,
6810         localcharset.c, mkdtemp.c, config.rpath, lib-ld.m4, lib-link.m4,
6811         lib-prefix.m4, longdouble.m4, ssize_t.m4.
6812
6813 2006-07-21  Eric Blake  <ebb9@byu.net>
6814
6815         * modules/stdlib-safer: New file.
6816         * MODULES.html.sh (File stream based Input/Output): Add
6817         stdlib-safer.
6818
6819 2006-07-21  Eric Blake  <ebb9@byu.net>
6820
6821         * lib/stdlib-safer.h: New file from coreutils, required by
6822         stdlib--.h.
6823
6824 2006-07-20  Paul Eggert  <eggert@cs.ucla.edu>
6825
6826         * gnulib-tool (func_usage): Document --assume-autoconf='latest-stable'.
6827
6828 2006-07-20  Bruno Haible  <bruno@clisp.org>
6829
6830         * gnulib-tool: Recognize new option --assume-autoconf.
6831         (autoconf_minversion): New variable.
6832         (func_get_filelist): Use it to decide whether to add onceonly_2_57.m4.
6833
6834 2006-07-20  Bruno Haible  <bruno@clisp.org>
6835
6836         * MODULES.html.sh (func_all_modules): Add a missing func_begin_table.
6837
6838 2006-07-19  Derek R. Price  <derek@ximbiot.com>
6839
6840         * lib/getaddrinfo.h: Don't define unimplemented AI_* flags.
6841         Reindent and repaginate.
6842
6843 2006-07-19  Derek Price  <derek@ximbiot.com>
6844
6845         * doc/gnulib.texi (Libtool and Windows):  Eliminate passive voice.
6846         Correct grammar.
6847
6848 2006-07-17  Bruno Haible  <bruno@clisp.org>
6849
6850         * modules/list: New file.
6851         * modules/array-list: New file.
6852         * modules/carray-list, modules/carray-list-tests: New files.
6853         * modules/linked-list, modules/linked-list-tests: New files.
6854         * modules/avltree-list, modules/avltree-list-tests: New files.
6855         * modules/rbtree-list, modules/rbtree-list-tests: New files.
6856         * modules/linkedhash-list, modules/linkedhash-list-tests: New files.
6857         * modules/avltreehash-list, modules/avltreehash-list-tests: New files.
6858         * modules/rbtreehash-list, modules/rbtreehash-list-tests: New files.
6859         * modules/oset: New file.
6860         * modules/array-oset: New file.
6861         * modules/avltree-oset, modules/avltree-oset-tests: New files.
6862         * modules/rbtree-oset, modules/rbtree-oset-tests: New files.
6863         * tests/test-carray_list.c: New file.
6864         * tests/test-linked_list.c: New file.
6865         * tests/test-avltree_list.c: New file.
6866         * tests/test-rbtree_list.c: New file.
6867         * tests/test-linkedhash_list.c: New file.
6868         * tests/test-avltreehash_list.c: New file.
6869         * tests/test-rbtreehash_list.c: New file.
6870         * tests/test-avltree_oset.c: New file.
6871         * tests/test-rbtree_oset.c: New file.
6872         * MODULES.html.sh (Container data structures): New section.
6873
6874 2006-07-17  Bruno Haible  <bruno@clisp.org>
6875
6876         * m4/gl_list.m4: New file.
6877
6878 2006-07-17  Bruno Haible  <bruno@clisp.org>
6879
6880         * lib/gl_list.h: New file.
6881         * lib/gl_list.c: New file.
6882         * lib/gl_array_list.h: New file.
6883         * lib/gl_array_list.c: New file.
6884         * lib/gl_carray_list.h: New file.
6885         * lib/gl_carray_list.c: New file.
6886         * lib/gl_linked_list.h: New file.
6887         * lib/gl_linked_list.c: New file.
6888         * lib/gl_anylinked_list1.h: New file.
6889         * lib/gl_anylinked_list2.h: New file.
6890         * lib/gl_avltree_list.h: New file.
6891         * lib/gl_avltree_list.c: New file.
6892         * lib/gl_anyavltree_list1.h: New file.
6893         * lib/gl_anyavltree_list2.h: New file.
6894         * lib/gl_rbtree_list.h: New file.
6895         * lib/gl_rbtree_list.c: New file.
6896         * lib/gl_anyrbtree_list1.h: New file.
6897         * lib/gl_anyrbtree_list2.h: New file.
6898         * lib/gl_anytree_list1.h: New file.
6899         * lib/gl_anytree_list2.h: New file.
6900         * lib/gl_linkedhash_list.h: New file.
6901         * lib/gl_linkedhash_list.c: New file.
6902         * lib/gl_anyhash_list1.h: New file.
6903         * lib/gl_anyhash_list2.h: New file.
6904         * lib/gl_avltreehash_list.h: New file.
6905         * lib/gl_avltreehash_list.c: New file.
6906         * lib/gl_rbtreehash_list.h: New file.
6907         * lib/gl_rbtreehash_list.c: New file.
6908         * lib/gl_anytreehash_list1.h: New file.
6909         * lib/gl_anytreehash_list2.h: New file.
6910
6911         * lib/gl_oset.h: New file.
6912         * lib/gl_oset.c: New file.
6913         * lib/gl_array_oset.h: New file.
6914         * lib/gl_array_oset.c: New file.
6915         * lib/gl_avltree_oset.h: New file.
6916         * lib/gl_avltree_oset.c: New file.
6917         * lib/gl_rbtree_oset.h: New file.
6918         * lib/gl_rbtree_oset.c: New file.
6919         * lib/gl_anytree_oset.h: New file.
6920
6921 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
6922
6923         * m4/mkancesdirs.m4: New file.
6924         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Mention dirchownmod.c,
6925         dirchownmod.h.  Don't require AC_FUNC_ALLOCA, gl_AFS, gl_CHDIR_SAFER;
6926         no longer needed.  Require gl_FUNC_LCHOWN, since dirchownmod.c needs
6927         it.
6928
6929 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
6930
6931         * lib/dirchownmod.c, lib/dirchownmod.h, lib/mkancesdirs.c:
6932         * lib/mkancesdirs.h: New files.
6933         * lib/mkdir-p.c: Don't include alloca.h, stdio.h, sys/types.h,
6934         unistd.h, string.h, chdir-safer.h, dirname.h, lchmod.h, lchown.h,
6935         save-cwd.h.  Instead, include dirchownmod.h and mkancesdirs.h.
6936         (make_dir_parents): New args MAKE_ANCESTOR, OPTIONS, ANNOUNCE,
6937         MODE_BITS.  Remove options VERBOSE_FMT_STRING, CWD_ERRNO.  All
6938         callers changed.  Revamp internals significantly, by not
6939         attempting to create directories that are temporarily more
6940         permissive than the final results.  Do not attempt to use
6941         save_cwd/restore_cwd; it isn't worth it for mkdir and install.
6942         This removes some race conditions, fixes some bugs, and simplifies
6943         things.  Use new dirchownmod function to do owner and mode changes.
6944         * lib/mkdir-p.h: Likewise.
6945         * lib/modechange.c (octal_to_mode): New function.
6946         (struct mode_change): New member mentioned.
6947         (make_node_op_equals): New arg mentioned.  All callers changed.
6948         (mode_compile): Keep track of which mode bits the user has explicitly
6949         mentioned.
6950         (mode_adjust): New arg DIR, so that we implement the X op correctly.
6951         New arg PMODE_BITS, to keep track of which mode bits the user
6952         mentioned; it treats S_ISUID and S_ISGID speciall.
6953         All callers changed.
6954         * lib/modechange.h: Likewise.
6955
6956 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
6957
6958         * MODULES.html.sh: Add mkancestors.
6959         * modules/mkancesdirs: New module.
6960         * modules/mkdir-p (Files): Remove lib/chdir-safer.c, lib/chdir-safer.h,
6961         lib/same-inode.h, m4/afs.m4, m4/chdir-safer.m4.
6962         The chdir-safer and afs files are now orphans; I'll remove them
6963         unless someone speaks up.
6964         Add lib/dirchownmod.c, lib/dirchownmod.h.
6965         (Depends-on): Remove alloca, chown, save-cwd, dirname.
6966         Add lchown, mkancesdirs.
6967         (Maintainer): Add self.
6968
6969 2006-07-15  Karl Berry  <karl@gnu.org>
6970
6971         * gnulib-tool: help message wording/arrangement.
6972
6973 2006-07-14  Simon Josefsson  <jas@extundo.com>
6974
6975         * doc/gnulib.texi (Libtool and Windows): New section.
6976
6977 2006-07-12  Simon Josefsson  <jas@extundo.com>
6978
6979         * modules/gendocs (License): Fix license, approved by Karl.
6980
6981 2006-07-12  Eric Blake  <ebb9@byu.net>
6982
6983         * MODULES.html.sh: Add gendocs.
6984
6985 2006-07-11  Eric Blake  <ebb9@byu.net>
6986
6987         * modules/fdl: New module, to install doc/fdl.texi.
6988         * MODULES.html.sh: Add new section for documentation modules.
6989         * gnulib-tool: Avoid space-tab.
6990         (--doc-base): New option, to manage files from doc.
6991
6992 2006-07-11  Eric Blake  <ebb9@byu.net>
6993
6994         * m4/absolute-header.m4: Fix comments to match recent change.
6995
6996 2006-07-11  Eric Blake  <ebb9@byu.net>
6997
6998         * gnulib-tool: List --doc-base before --tests-base.
6999
7000 2006-07-11  Derek R. Price  <derek@ximbiot.com>
7001
7002         * lib/glob.c: s/NAMLEN/_D_EXACT_NAMLEN/.
7003
7004 2006-07-11  Bruno Haible  <bruno@clisp.org>
7005
7006         * README: Mention where to put documentation.
7007
7008 2006-07-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
7009
7010         * doc/functions.texi, gnulib-tool.texi, gnulib.texi: Fix some typos.
7011
7012 2006-07-10  Paul Eggert  <eggert@cs.ucla.edu>
7013
7014         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Like today's change
7015         to stdint.m4.
7016
7017 2006-07-10  Paul Eggert  <eggert@cs.ucla.edu>
7018
7019         * m4/stdint.m4 (gl_STDINT_H): Like yesterday's change to
7020         absolute-header.m4.  Also, set ABSOLUTE_STDINT_H to a string
7021         "no/such/file/stdint.h" when there is no such file, so that
7022         the resulting C code can be parsed by dodgy compilers.
7023         Problems reported by Bob Proulx.
7024
7025 2006-07-10  Derek R. Price  <derek@ximbiot.com>
7026
7027         * lib/backupfile.c, dirfd.h, fts.c, getcwd.c, glob.c, glob_.h:
7028         Ignore the obsolescent !HAVE_DIRENT_H case.  Consolidate NAMLEN
7029         macros into the GNU _D_EXACT_NAMLEN.
7030         * lib/savedir.c:  Likewise.
7031         (savedirstream): Use _D_EXACT_NAMLEN in preference to strlen.
7032
7033 2006-07-10  Derek R. Price  <derek@ximbiot.com>
7034         and Paul Eggert  <eggert@cs.ucla.edu>
7035
7036         * m4/backupfile.m4, d-ino.m4, d-type.m4, dirfd.m4, fts.m4, getcwd.m4:
7037         * m4/savedir.m4:
7038         Ignore the obsolescent !HAVE_DIRENT_H case.  Consolidate NAMLEN
7039         macros into the GNU _D_EXACT_NAMLEN.
7040
7041 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
7042
7043         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Use "" rather than <>
7044         around the absolute name, to work around a problem with the HP-UX
7045         11.23 native C compiler, reported by Bob Proulx.
7046
7047 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
7048
7049         * doc/maintain.texi, make-stds.texi: Sync from
7050         <http://savannah.gnu.org/projects/gnustandards>.
7051
7052 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
7053
7054         * build-aux/depcomp, build-aux/install-sh: Sync from Automake.
7055
7056 2006-07-09  Jim Meyering  <jim@meyering.net>
7057
7058         * m4/glob.m4: Remove a doubled word in a comment.
7059
7060 2006-07-09  Jim Meyering  <jim@meyering.net>
7061
7062         * lib/argp-pv.c: Remove a doubled word in a comment.
7063         * lib/check-version.c (check_version): Likewise.
7064         * lib/javacomp.c (compile_java_class): Likewise.
7065
7066 2006-07-08  Paul Eggert  <eggert@cs.ucla.edu>
7067
7068         * gnulib-tool (func_get_filelist): Don't echo m4/onceonly_2_57.m4,
7069         for the benefit of people using Autoconf 2.60.  If you want to
7070         support older Autoconf versions you can copy m4/onceonly_2_57.m4
7071         (or m4/onceonly.m4, if pre-2.57) manually.
7072
7073 2006-07-08  Jim Meyering  <jim@meyering.net>
7074
7075         * m4/link-follow.m4: Remove one of two adjacent "whether"s in a
7076         comment.
7077         * m4/getopt.m4: Remove one of two adjacent "your"s in a comment.
7078         * m4/regex.m4 (gl_REGEX): Remove one of two adjacent "the"s in a
7079         comment.
7080
7081 2006-07-08  Jim Meyering  <jim@meyering.net>
7082
7083         * lib/getndelim2.h (getndelim2): Remove doubled "after" in comment.
7084
7085 2006-07-07  Simon Josefsson  <jas@extundo.com>
7086
7087         * tests/test-crc.c: Change expected crc value, the test vector
7088         were probably computed using the old broken crc.c?
7089
7090 2006-07-06  Simon Josefsson  <jas@extundo.com>
7091
7092         * modules/sys_socket (Files): Add m4/sockpfaf.m4 (this module is
7093         now the canonical place for the M4 file).
7094
7095         * modules/getaddrinfo (Files): Remove m4/sockpfaf.m4, we get it
7096         from the sys_socket dependency now.
7097
7098         * modules/inet_pton (Files): Ditto.
7099
7100         * modules/inet_ntop (Files): Ditto.
7101
7102 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
7103
7104         * modules/getusershell (configure.ac): Use gl_FUNC_GETUSERSHELL,
7105         not gl_PREREQ_GETUSERSHELL.
7106
7107 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
7108
7109         * m4/_inttypes_h.m4 (gl_INTTYPES_H): Use AC_CHECK_DECLS_ONCE
7110         with only one argument, for Autoconf 2.60.
7111         * m4/fileblocks.m4 (gl_PREREQ_FILEBLOCKS): AC_CHECK_DECLS_ONCE may
7112         expand to nothing, so add a shell command to avoid syntax error.
7113         * m4/getpass.m4 (gl_PREREQ_GETPASS): Likewise.
7114
7115 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
7116
7117         * lib/strtod.c (strtod): cast the argument of tolower to unsigned char.
7118
7119 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
7120
7121         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Don't check for getenv decl;
7122         no longer needed.  Check for isblank decl.
7123         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Don't check for getenv decl.
7124         * m4/regex.m4 (gl_PREREQ_REGEX): Dheck for isblank decl instead
7125         of existence.
7126
7127 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
7128
7129         * lib/getloadavg.c: Use __VMS, not VMS.
7130         * lib/getopt.c: Likewise.
7131         * lib/getpagesize.h: Likewise.
7132         * lib/glob.c: Remove most VMS cruft; it hasn't been tested for a while
7133         and probably does not work.
7134
7135 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
7136
7137         * lib/.cppi-disable: Add wcwidth.
7138         * lib/fnmatch.c (ISBLANK): Remove.  All uses changed to isblank.
7139         (isblank) [! (defined isblank || HAVE_DECL_ISBLANK)]: New macro.
7140         (ISGRAPH): Remove.  All uses changed to isgraph.
7141         (FOLD) [!defined _LIBC]: Remove special case.
7142         * lib/getdate.y (lookup_word): Remove no-longer-needed call to islower.
7143         * lib/regex_internal.h (isblank): Depend on HAVE_DECL_ISBLANK, not
7144         HAVE_ISBLANK.
7145         * lib/strftime.c (TOLOWER, TOUPPER) [!defined _LIBC]: Remove special
7146         case.
7147
7148 2006-07-06  Jim Hyslop  <jhyslop@dreampossible.ca>  (tiny change)
7149
7150         * lib/getaddrinfo.c: Changes to compile under MSVC6: changed
7151         '#if WIN32_NATIVE' to '#ifdef' & moved WSAAPI macro inside
7152         brackets.  Other minor changes to suppress some compiler
7153         warnings.
7154
7155 2006-07-06  Derek R. Price  <derek@ximbiot.com>
7156         and Paul Eggert  <eggert@cs.ucla.edu>
7157
7158         * m4/backupfile.m4 (gl_BACKUPFILE): Check for dirent.h, instead
7159         of invoking obsolescent AC_HEADER_DIRENT macro.
7160         * m4/d-ino.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_INO): Likewise.
7161         * m4/d-type.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Likewise.
7162         * m4/dirfd.m4 (gl_FUNC_DIRFD): Likewise.
7163         * m4/fts.m4 (gl_FUNC_FTS_CORE): Likewise.
7164         * m4/getcwd.m4 (gl_PREREQ_GETCWD): Likewise.
7165         * m4/glob.m4 (gl_PREREQ_GLOB): Likewise.
7166         * m4/savedir.m4 (gl_SAVEDIR): Likewise.
7167         * m4/readdir.m4: Remove; no longer needed.
7168
7169 2006-07-06  Derek R. Price  <derek@ximbiot.com>
7170         and Paul Eggert  <eggert@cs.ucla.edu>
7171
7172         * lib/backupfile.c [HAVE_DIRENT_H && ! HAVE_NDIR_H]:
7173         Don't worry about this obsolete case any more.
7174         (HAVE_DIR): Remove.  All uses removed; we now assume you can read
7175         directories.
7176         * lib/dirfd.h [HAVE_DIRENT_H && ! HAVE_NDIR_H]: Don't
7177         worry about this obsolete case any more.
7178         * lib/fts.c: Likewise.
7179         * lib/getcwd.c: Likewise.
7180         * lib/glob.h: Likewise.
7181         * lib/savedir.c: Likewise.
7182
7183 2006-07-05  Paul Eggert  <eggert@cs.ucla.edu>
7184
7185         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Use AC_CHECK_DECLS_ONCE
7186         rather than AC_CHECK_DECLS for strtoimax and strtoumax.
7187         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Remove; no longer
7188         needed.
7189         All uses removed.
7190         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
7191         * m4/strtoul.m4 (gl_PREREQ_STRTOUL): Likewise.
7192         * m4/exclude.m4 (gl_EXCLUDE): Don't check for isascii; no longer
7193         needed.
7194         * m4/getdate.m4 (gl_GETDATE): Likewise.
7195         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Likewise.
7196         * m4/memcasecmp.m4 (gl_MEMCASECMP): Likewise.
7197         * m4/strtod.m4 (gl_FUNC_STRTOD): Likewise.
7198         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
7199         * m4/strtoul.m4 (gl_PREREQ_STRTOUL): Likewise.
7200         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
7201         * m4/exclude.m4 (gl_EXCLUDE): Don't require AC_C_INLINE; no longer
7202         needed.
7203
7204 2006-07-05  Paul Eggert  <eggert@cs.ucla.edu>
7205
7206         * lib/memcasecmp.c: Include <limits.h>.
7207         (memcasecmp): Don't assume UCHAR_MAX <= INT_MAX.
7208         * lib/strtod.c (strtod): Don't assume isspace works on negative chars.
7209         Don't assume isdigit succeeds only on '0' through '9'.
7210
7211 2006-07-05  Eric Blake  <ebb9@byu.net>
7212
7213         * modules/getaddrinfo (Depends-on): Add snprintf.
7214
7215 2006-07-05  Eric Blake  <ebb9@byu.net>
7216
7217         * m4/sockpfaf.m4 (gl_SOCKET_FAMILIES): Use gl_HEADER_SYS_SOCKET
7218         to avoid 'header present but could not be compiled' on cygwin.
7219
7220 2006-07-05  Eric Blake  <ebb9@byu.net>
7221
7222         * lib/getaddrinfo.h (NI_NUMERICHOST, NI_NUMERICSERV): Define if
7223         missing from netdb.h.
7224         * lib/getaddrinfo.c (includes): Include inet_ntop and snprintf.
7225
7226 2006-07-05  Derek R. Price  <derek@ximbiot.com>
7227
7228         * m4/calloc.m4 (_AC_FUNC_CALLOC_IF): Don't require AC_HEADER_STDC;
7229         no longer needed.
7230         * m4/exclude.m4 (gl_EXCLUDE): Likewise.
7231         * m4/getdate.m4 (gl_GETDATE): Likewise.
7232         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Likewise.
7233         * m4/memcasecmp.m4 (gl_MEMCASECMP): Likewise.
7234         * m4/strtod.m4 (gl_FUNC_STRTOD): Likewise.
7235         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
7236         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
7237
7238 2006-07-05  Derek R. Price  <derek@ximbiot.com>
7239
7240         * lib/exclude.c (IN_CTYPE_DOMAIN, is_space): Remove; no longer needed.
7241         All uses of is_space replaced by isspace.
7242         * lib/exit.h: Don't talk about STDC_HEADERS.
7243         * lib/fnmatch.c (ISASCII): Remove; no longer needed.  All uses removed.
7244         (ISPRINT, ISDIGIT, ISALNUM, ISALPHA, ISCNTRL, ISLOWER, ISPUNCT):
7245         (ISSPACE, ISUPPER, ISXDIGIT): Remove; no longer needed.  All uses
7246         replaced by isprint etc.
7247         * lib/getdate.y (IN_CTYPE_DOMAIN, ISSPACE, ISALPHA, ISLOWER): Likewise.
7248         * lib/getusershell.c (IN_CTYPE_DOMAIN, ISSPACE): Likewise.
7249         * lib/memcasecmp.c (IN_CTYPE_DOMAIN, ISLOWER, TOUPPER): Likewise.
7250         * lib/strtod.c (IN_CTYPE_DOMAIN, ISSPACE, ISDIGIT, TOLOWER): Likewise.
7251         * lib/strtol.c (IN_CTYPE_DOMAIN): Likewise.
7252         * lib/xstrtol.c (IN_CTYPE_DOMAIN, ISSPACE): Likewise.
7253
7254 2006-07-05  Bruno Haible  <bruno@clisp.org>
7255
7256         * m4/strndup.m4 (gl_FUNC_STRNDUP): When cross-compiling, check whether
7257         the function exists, before testing against AIX.
7258         Reported by Martin Lambers <marlam@marlam.de>.
7259
7260 2006-07-04  Paul Eggert  <eggert@cs.ucla.edu>
7261
7262         * modules/cycle-check (lib_SOURCES): Add same-inode.h.
7263         From Mark D. Baushke.
7264
7265 2006-07-04  Paul Eggert  <eggert@cs.ucla.edu>
7266
7267         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Prepend three slashes
7268         to the absolute name, not just one, to bypass Sun C 5.8's
7269         "warning: #include of /usr/include/... may be non-portable".
7270
7271 2006-07-04  Eric Blake  <ebb9@byu.net>
7272
7273         * modules/dirname-tests: New test module.
7274         * tests/test-dirname.c: New file, replacing dirname.c
7275         TEST_DIRNAME section that was recently deleted.
7276
7277 2006-07-04  Bruno Haible  <bruno@clisp.org>
7278
7279         Assume ANSI C header files and <ctype.h> functions.
7280         * lib/mbswidth.c (IN_CTYPE_DOMAIN, ISPRINT, ISCNTRL): Remove macros.
7281         (mbsnwidth): Use isprint, iscntrl instead.
7282
7283 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
7284
7285         Merge from coreutils.
7286         * MODULES.html.sh: Add xstrtold.
7287         * modules/xstrtold: New file.
7288         * modules/cycle-check (Files): Add lib/same-inode.h.
7289         * modules/dirname (Files): Add m4/double-slash-root.m4.
7290         * modules/getcwd (Files): Add m4/getcwd-abort-bug.m4.
7291         * modules/mkdir-p (Files): Add lib/same-inode.h.
7292         * modules/same (Files): Add lib/same-inode.h.
7293
7294 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
7295
7296         * m4/absolute-header.m4: Renamed from full-header-path.m4.
7297         This is to keep the terminology clean; POSIX talks about
7298         "absolute pathnames", not "full pathnames", but the GNU
7299         Coding Standards say to use "path" for something else;
7300         so use "absolute" to keep both sides happy.
7301         (gl_ABSOLUTE_HEADER): Renamed from gl_FULL_HEADER_PATH.
7302         Set gl_absolute_header, not gl_full_header_path.
7303         Set gl_cv_absolute_<header>, not gl_full_path_<header>.
7304         Define ABSOLUTE_<HEADER>, not FULL_PATH_<HEADER>.
7305         All uses changed.
7306
7307         Merge from coreutils.
7308
7309         2006-06-30  Paul Eggert  <eggert@cs.ucla.edu>
7310
7311         * m4/c-strtod.m4 (gl_C_STRTOLD): Add c-strtod.c to LIBSOURCES.
7312         Require gl_USE_SYSTEM_EXTENSIONS, not gl_C_STRTOD, since we don't
7313         want to require the building of c-strtod.o.
7314         * m4/lib-check.m4 (cu_LIB_CHECK): Remove SEQ_LIBM, since seq no longer
7315         needs -lm directly.
7316         * m4/xstrtod.m4 (gl_XSTRTOLD): New macro.
7317
7318         2006-06-19  Paul Eggert  <eggert@cs.ucla.edu>
7319
7320         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Prefer binutils's
7321         --as-needed option if available.  Problem reported by Albert Chin in
7322         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00114.html>.
7323         However, use -Wl,--as-needed, not bare --as-needed, since HP-UX 11.11
7324         cc merely issues a bunch of annoying warnings for --as-needed
7325         (this problem was reported by Bob Proulx).  Also, try linking with
7326         -lm to detect a bug in binutils 2.16 (this problem was reported
7327         by Ralf Wildenhues).
7328
7329         2006-06-18  Jim Meyering  <jim@meyering.net>
7330
7331         Test for a bug that causes glibc's getcwd to suffer a failed assertion.
7332         * m4/getcwd-abort-bug.m4 (gl_FUNC_GETCWD_ABORT_BUG): New file and
7333         macro.
7334         * m4/getcwd.m4 (gl_FUNC_GETCWD): If we detect support for getcwd_null,
7335         also check for glibc-2.4's abort-inducing bug.
7336
7337         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Fix typo.
7338         Low-probability clean-up should be to use rmdir to get rid of
7339         the just-created directory, not unlink.
7340
7341         * m4/ftruncate.m4 (gl_FUNC_FTRUNCATE): If ftruncate is missing, make
7342         configure fail, and request a bug report to inform us about it.
7343         Add a comment that, barring reports to the contrary, in 2007 we'll
7344         assume ftruncate is universally available.
7345
7346         2006-04-17  Paul Eggert  <eggert@cs.ucla.edu>
7347
7348         * m4/filemode.m4 (gl_FILEMODE): Check for strmode declaration.
7349
7350         2006-03-12  Jim Meyering  <jim@meyering.net>
7351
7352         * m4/chdir-safer.m4 (gl_CHDIR_SAFER): Add same-inode.h to the list.
7353         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Likewise.
7354         * m4/same.m4 (gl_SAME): Likewise.
7355         * m4/root-dev-ino.m4 (gl_ROOT_DEV_INO): Likewise.
7356
7357         2006-03-11  Eric Blake  <ebb9@byu.net>
7358
7359         * m4/double-slash-root.m4: New file, provides gl_DOUBLE_SLASH_ROOT.
7360         * m4/dirname.m4 (gl_DIRNAME): Use gl_DOUBLE_SLASH_ROOT.
7361         * m4/dos.m4 (FILE_SYSTEM_PREFIX_LEN): Move from here to dirname.h.
7362         (FILE_SYSTEM_DRIVE_PREFIX_CAN_BE_RELATIVE): New define.
7363
7364 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
7365
7366         * lib/stdint_.h: Include <sys/types.h> after @FULL_PATH_STDINT_H@, for
7367         MacOS X 10.4.6.  Don't mention <sys/int_types.h>.  Problems
7368         reported by Mark D. Baushke, one in
7369         <http://lists.gnu.org/archive/html/bug-gnulib/2006-07/msg00015.html>.
7370
7371         Merge from coreutils.
7372
7373         * lib/.cppi-disable: Add stdint_.h.
7374         * lib/.cvsignore: Add stdint.h.
7375
7376         2006-06-30  Paul Eggert  <eggert@cs.ucla.edu>
7377
7378         * lib/xstrtod.c (XSTRTOD, DOUBLE): New macros, so that we can support
7379         both double and long double versions.
7380         (XSTRTOD): Renamed from xstrtod.  Use DOUBLE internally.
7381         * lib/xstrtold.c: New file.
7382         * lib/xstrtod.h (xstrtold): New decl.
7383
7384         2006-05-22  Paul Eggert  <eggert@cs.ucla.edu>
7385
7386         * lib/filemode.c (setst): Remove.
7387         (strmode): Rewrite to avoid setst.  This makes the code shorter,
7388         (arguably) clearer, and the generated code is a bit smaller on my
7389         Debian GNU/Linux stable x86 host.
7390
7391         2006-04-17  Paul Eggert  <eggert@cs.ucla.edu>
7392
7393         * lib/filemode.c: Include "filemode.h" first, to test the interface.
7394         Assume that filemode.h includes sys/types.h and sys/stat.h.
7395         (HAVE_ST_DM_MODE): New macro, moved here from ls.c.
7396         (ftypelet): Reorder to put common cases first, for efficiency.
7397         Add 'P', 'w'.  Remove 'M', since it's now the caller's responsibility
7398         to do 'M'.
7399         (strmode): Renamed from mode_string, and now stores 12 bytes instead
7400         of 10, for compatibility with FreeBSD.  All callers changed.
7401         (filemodestring): Now stores 12 bytes instead of 10, and sets file
7402         types that can't be deduced solely from st_mode.  First arg is now a
7403         const pointer.
7404         * lib/filemode.h (HAVE_DECL_STRMODE): Include <string.h> for strmode.
7405         (strmode): Renamed from mode_string.
7406         (filemodestring): New decl.
7407         * lib/stat-macros.h: Don't undef S_ISDOOR, since it's never buggy.
7408         (S_ISDOOR): Don't bother with S_IFDOOR, since that code is never
7409         needed.
7410         (S_ISPORT, S_ISWHT): New macros, if not already defined.
7411
7412         2006-04-12  Paul Eggert  <eggert@cs.ucla.edu>
7413
7414         * lib/fsusage.c: Don't include <inttypes.h> or <stdint.h>, since
7415         fsusage.h now does that.  Include fsusage.h first, to test interface.
7416         Prefer statvfs if it works, since it's blessed by POSIX.  Attempt
7417         at most one method (the old code could have generated decls that
7418         didn't conform to C89, not that this was ever exercised).
7419         * lib/fsusage.h: Include <inttypes.h> and <stdint.h> if they exist.
7420
7421         2006-03-19  Jim Meyering  <jim@meyering.net>
7422
7423         Work even in a chroot where d_ino values for entries in "/"
7424         don't match the stat.st_ino values for the same names.
7425         * lib/getcwd.c (__getcwd): When no d_ino value matches the target inode
7426         number, iterate through all entries again, using lstat instead.
7427         Reported by Kenshi Muto in http://bugs.debian.org/355810, and by
7428         Zouhir Hafidi in https://bugzilla.redhat.com/bugzilla/190656.
7429
7430         * lib/getcwd.c (__getcwd): Clarify a comment.
7431         Use memcpy in place of a call to strcpy.
7432
7433         2006-03-12  Jim Meyering  <jim@meyering.net>
7434
7435         * lib/fts-cycle.c (leave_dir): If cycle-check's saved dev-ino pair
7436         matches that of the current directory (which we're about to chdir ".."
7437         out of), then save the dev-ino of the parent, instead.
7438
7439         * lib/same-inode.h (SAME_INODE): New file/macro.
7440         * lib/chdir-safer.c (SAME_INODE): Remove definition.
7441         Include "same-inode.h", instead.
7442         * lib/same.c: Likewise.
7443         * lib/cycle-check.h: Include "same-inode.h".
7444         (CYCLE_CHECK_REFLECT_CHDIR_UP): Define.
7445         * lib/cycle-check.c (SAME_INODE): Remove definition.
7446         * lib/root-dev-ino.h: Include "same-inode.h".
7447
7448         2006-03-11  Eric Blake  <ebb9@byu.net>
7449
7450         * lib/same.c (same_name): s/base_name/last_component/
7451         * lib/backupfile.c (check_extension, numbered_backup): Likewise.
7452         * lib/filenamecat.c (file_name_concat): Likewise.
7453
7454         2006-03-11  Eric Blake  <ebb9@byu.net>,
7455                     Paul Eggert  <eggert@cs.ucla.edu>
7456
7457         * lib/dirname.h (FILE_SYSTEM_PREFIX_LEN): Move here from dos.m4.
7458         [FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX]: Don't treat 1: as a
7459         drive prefix.
7460         (IS_ABSOLUTE_FILE_NAME): Treat all drive letters as absolute on
7461         platforms like cygwin with FILE_SYSTEM_DRIVE_PREFIX_IS_ABSOLUTE.
7462         (last_component): New method.
7463         * lib/dirname.c (dir_len): Determine when drive letters need a
7464         subsequent slash.  Preserve // when it is special.
7465         (dir_name): Don't append dot when drive letter is absolute.
7466         [TEST_DIRNAME]: Move into a full-blown gnulib test.
7467         * lib/basename.c (base_name): New semantics - malloc the result.
7468         Preserve // when it is special.  Preserve relative files that look
7469         like drive letters.
7470         (base_len): Preserve // when it is special.
7471         (last_component): New method, similar to old base_name semantics.
7472         * lib/stripslash.c (strip_trailing_slashes): Use last_component, not
7473         base_name.  Strip redundant slashes from ///.
7474
7475 2006-07-03  Jim Meyering  <jim@meyering.net>
7476
7477         * lib/cycle-check.h (CYCLE_CHECK_REFLECT_CHDIR_UP): Abort if this
7478         macro is used before the first cycle_check call.
7479
7480 2006-07-03  Eric Blake  <ebb9@byu.net>
7481
7482         * modules/dirname (Depends-on): Add xstrndup.
7483
7484 2006-07-02  Paul Eggert  <eggert@cs.ucla.edu>
7485
7486         * m4/stdint.m4 (gl_STDINT_H): Use more-mnemonic identifiers for
7487         test cases, so that config.log is a bit easier to follow.
7488
7489 2006-07-02  Paul Eggert  <eggert@cs.ucla.edu>
7490
7491         * lib/stdint_.h (intmax_t, uintmax_t): Prefer long to long long if
7492         both are 64 bits, since this seems to be the tradition, and this
7493         prevents gcc -Wformat from warning about usages with PRIuMAX.  If
7494         we ever run into a host that prefers long long to long in this
7495         case, we'll need another configure-time test.  Problem reported by
7496         Jim Meyering.
7497
7498 2006-07-02  Eric Blake  <ebb9@byu.net>
7499
7500         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Simplify by using AC_CHECK_DECLS.
7501
7502 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
7503
7504         * modules/inttypes (Depends-on): No longer depends on stdint.
7505         * modules/stdint (Description): Say more about assumptions.
7506         Say that the fast types might differ.  Say macros are used.
7507         (Files): Remove m4/size_max.m4, m4/wchar_t.m4.  Add m4/longlong.m4.
7508         (Makefile.am): Revise list of substituted symbols to match
7509         new stdint.m4.
7510         * modules/stdint-tests (Files): Add m4/wchar_t.m4, m4/wint_t.m4.
7511         (configure.ac): Add gt_TYPE_WCHAR_T, gt_TYPE_WINT_T.
7512         * tests/test-stdint.c (verify_same_types)
7513         [! (__GNUC__ >= 2 && DO_PEDANTIC)]: Put in a decl, so that
7514         the code conforms to C99/C89.
7515         Test for WCHAR_MIN and WCHAR_MAX only if HAVE_WCHAR_T.
7516         Test for WINT_MIN and WINT_MAX only if HAVE_WINT_T.
7517
7518 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
7519
7520         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Backport from Autoconf 2.60,
7521         but fix a bug, by requiring at least 64 bits.
7522         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Likewise.
7523         * m4/longlong.m4 (gl_AC_TYPE_LONG_LONG): Now just call
7524         AC_TYPE_LONG_LONG_INT.  This macro is obsolete and will go soon.
7525         * m4/ulonglong.m4 (gl_AC_TYPE_UNSIGNED_LONG_LONG) Likewise.
7526
7527         * m4/stdint.m4 (gl_STDINT_H): Rewrite to accommodate stdint_.h
7528         changes.  Make 2.59 a prerequisite.  Check and substitute for
7529         HAVE_LONG_LONG_INT.  Rely on Autoconf to check for stdint.h and
7530         inttypes.h.  Do not use special include files; just use the
7531         defaults.  Check for sys/inttypes.h and sys/bitypes.h in the usual
7532         way now.  Remove no-longer-needed tests for HAVE_LONG_64BIT,
7533         HAVE_LONG_LONG_64BIT, int8_t, int16_t, int32_t, int64_t, uint8_t,
7534         uint16_t, uint32_t uint64_t, int_least8_t, int_least16_t,
7535         int_least32_t, int_least64_t, uint_least8_t, uint_least16_t,
7536         uint_least32_t, uint_least64_t, int_fast8_t, int_fast16_t,
7537         int_fast32_t, int_fast64_t, uint_fast8_t uint_fast16_t,
7538         uint_fast32_t, uint_fast64_t, intptr_t, uintptr_t, intmax_t,
7539         uintmax_t, INT8_MIN, INT8_MAX, UINT8_MAX, INT16_MIN, INT16_MAX,
7540         UINT16_MAX, INT32_MIN, INT32_MAX, UINT32_MAX, INT64_MIN,
7541         INT64_MAX, UINT64_MAX, INT_LEAST8_MIN, INT_LEAST8_MAX,
7542         UINT_LEAST8_MAX, INT_LEAST16_MIN, INT_LEAST16_MAX,
7543         UINT_LEAST16_MAX, INT_LEAST32_MIN, INT_LEAST32_MAX,
7544         UINT_LEAST32_MAX, INT_LEAST64_MIN, INT_LEAST64_MAX,
7545         UINT_LEAST64_MAX, INT_FAST8_MIN, INT_FAST8_MAX, UINT_FAST8_MAX,
7546         INT_FAST16_MIN, INT_FAST16_MAX, UINT_FAST16_MAX, INT_FAST32_MIN,
7547         INT_FAST32_MAX, UINT_FAST32_MAX, INT_FAST64_MIN, INT_FAST64_MAX,
7548         UINT_FAST64_MAX, INTPTR_MIN, INTPTR_MAX, UINTPTR_MAX, INTMAX_MIN,
7549         INTMAX_MAX, UINTMAX_MAX, PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN,
7550         SIG_ATOMIC_MAX, SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN,
7551         WINT_MAX.  Check for C99 conformance more strictly, by detecting
7552         bugs in glibc 2.4, Solaris 10, and OpenBSD 3.9.  On the other hand do
7553         not check for things that C99 does not require, e.g., int8_t.  If
7554         a test isn't needed unless <stdint.h> isn't working, and is
7555         unlikely to be needed for any other reason, then don't do it
7556         unless <stdint.h> isn't working.  Do not check for ptrdiff_t or
7557         size_t, since we assume C89 freestanding at least.  Do not check
7558         for sig_atomic_t, wchar_t, or wint_t, since the code now does
7559         the right thing even if the types are not defined.  Instead use:
7560         (gl_STDINT_TYPE_PROPERTIES): New macro.
7561         (gl_HEADER_STDINT_H, gl_HEADER_INTTYPES_H): Remove.  Don't bother
7562         testing whether <sys/types.h> clashes, as Autoconf does this for
7563         us now.  All uses removed.
7564         (gl_STDINT_CHECK_TYPES, gl_STDINT_MISSING_BOUND):
7565         (gl_STDINT_MISSING_BOUNDS, gl_STDINT_MISSING_BOUNDS2):
7566         (gl_CHECK_TYPE_SAME):
7567         Remove; no longer needed.
7568         (gl_STDINT_BITSIZEOF): Don't bother to check whether the type
7569         exists, since we'll return 0 anyway in that case.
7570         (gl_INTEGER_TYPE_SUFFIX, gl_STDINT_INCLUDES): New macros.
7571
7572 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
7573
7574         * lib/stdint_.h (_GL_STDINT_H): Renamed from _STDINT_H, to avoid
7575         possible collision with system files.
7576         (<stdio.h>, <time.h>, <wchar.h>) [defined __cplusplus && ! defined
7577         __STDC_CONSTANT_MACROS)]: Do not include, since we don't need
7578         WCHAR_MIN and WCHAR_MAX in this case.
7579         (<stddef.h>): Do not include; no longer needed.
7580         (<sys/types.h>): Include if @HAVE_SYS_TYPES_H@, not if
7581         (defined(__OpenBSD__) || defined(__bsdi__) || defined(__sgi)).
7582         (<sys/inttypes.h>): Include if @HAVE_SYS_INTTYPES_H@ &&
7583         !@HAVE_INTTYPES_H@, not if (defined(__FreeBSD__)
7584         && (__FreeBSD__ >= 3) && (__FreeBSD__ <= 4)).
7585         (__STDINT_H__) [@HAVE_STDINT_H@ && defined __sgi && ! defined
7586         __c99]: Define, to work around IRIX <stdint.h> incompatibility.
7587         (@FULL_PATH_STDINT_H@) [!(defined(__sgi) && @HAVE_INTTYPES_H@ &&
7588         !defined(__c99))]: Include in this case too, since it's harmless
7589         now.
7590         (<inttypes.h>) [@HAVE_INTTYPES_H@]: Include, since it's no longer
7591         dangerous to do so.
7592         (@FULL_PATH_INTTYPES_H@) [(defined(__hpux) || defined(_AIX)) &&
7593         @HAVE_INTTYPES_H@]: Do not include, since we now include <inttypes.h>.
7594         (_STDINT_MIN, _STDINT_MAX): New macros.
7595         (int8_t, uint8_t, int16_t, uint16_t, int32_t, uint32_t, int64_t):
7596         (uint64_t, int_least8_t, uint_least8_t, int_least16_t):
7597         (uint_least16_t, int_least32_t, uint_least32_t, int_least64_t):
7598         (uint_least64_t, int_fast8_t, uint_fast8_t, int_fast16_t):
7599         (uint_fast16_t, int_fast32_t, uint_fast32_t, int_fast64_t):
7600         (uint_fast64_t, intptr_t, uintptr_t, intmax_t, uintmax_t): Now
7601         macros, not typedefs; this simplifies things quite a bit.
7602         Use long int for all types narrower than int64_t.
7603         (intmax_t, uintmax_t, INTMAX_C, UINTMAX_C):
7604         Define in terms of long long int or int64_t or long int,
7605         not int64_t or int32_t.  This saves some compile-time testing.
7606         (INT8_MIN, INT8_MAX, UINT8_MAX, INT16_MIN, INT16_MAX, UINT16_MAX):
7607         (INT32_MIN, INT32_MAX, UINT32_MAX, INT64_MIN, INT64_MAX):
7608         (UINT64_MAX, INT_LEAST8_MIN, INT_LEAST8_MAX, UINT_LEAST8_MAX):
7609         (INT_LEAST16_MIN, INT_LEAST16_MAX, UINT_LEAST16_MAX):
7610         (INT_LEAST32_MIN, INT_LEAST32_MAX, UINT_LEAST32_MAX):
7611         (INT_LEAST64_MIN, INT_LEAST64_MAX, UINT_LEAST64_MAX, INT_FAST8_MIN):
7612         (INT_FAST8_MAX, UINT_FAST8_MAX, INT_FAST16_MIN, INT_FAST16_MAX):
7613         (UINT_FAST16_MAX, INT_FAST32_MIN, INT_FAST32_MAX, UINT_FAST32_MAX):
7614         (INT_FAST64_MIN, INT_FAST64_MAX, UINT_FAST64_MAX, INTPTR_MIN):
7615         (INTPTR_MAX, UINTPTR_MAX, INTMAX_MIN, INTMAX_MAX, UINTMAX_MAX):
7616         (PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX):
7617         (SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN, WINT_MAX):
7618         undef any previous version and define our own version, for
7619         simplicity and consistency with the new macros for types.
7620         (PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX):
7621         (SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN, WINT_MAX):
7622         Simplify definitions by using _STDINT_MIN and _STDINT_MAX
7623         where appropriate.  Rely on new symbols @PTRDIFF_T_SUFFIX@,
7624         @SIG_ATOMIC_T_SUFFIX@, @SIZE_T_SUFFIX@, @WCHAR_T_SUFFIX@,
7625         @WINT_T_SUFFIX@ to keep things simple here.
7626         (UINT8_C, UINT16_C, UINT32_C, INT64_C, UINT64_C):
7627         Simplify by assuming typical 8/16/32/64 host, since we're
7628         already doing that elsewhere anyway.
7629         Use (LONG_MAX >> 31 >> 31 == 1) rather than @HAVE_LONG_64BIT@,
7630         and assume long long int is 64 bits if available.  This
7631         speeds up 'configure'.
7632
7633 2006-07-01  Eric Blake  <ebb9@byu.net>
7634
7635         * m4/stdarg.m4 (gl_STDARG_H): Use proper AH_VERBATIM.
7636         Reported by Andreas Buening.
7637
7638 2006-07-01  Eric Blake  <ebb9@byu.net>
7639
7640         * m4/stdarg.m4 (gl_STDARG_H): Properly parenthesize gl_va_copy.
7641
7642 2006-06-30  Jim Hyslop  <jhyslop@dreampossible.ca>  (tiny change)
7643
7644         * lib/getaddrinfo.c: fixed typo
7645
7646 2006-06-29  Jim Meyering  <jim@meyering.net>
7647
7648         * modules/strftime (Maintainer): Add my name, since with the
7649         FPRINTFTIME changes strftime.c has forked from glibc.
7650
7651 2006-06-29  Eric Blake  <ebb9@byu.net>
7652
7653         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Use AC_C_INLINE.
7654
7655 2006-06-29  Eric Blake  <ebb9@byu.net>
7656
7657         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): New file.
7658
7659 2006-06-29  Eric Blake  <ebb9@byu.net>
7660
7661         * lib/stat_.h: New file.
7662
7663 2006-06-29  Eric Blake  <ebb9@byu.net>
7664
7665         * lib/stat_.h (rpl_mkdir): Declare inline, to avoid warnings about
7666         unused static function.
7667
7668 2006-06-29  Eric Blake  <ebb9@byu.net>
7669
7670         * doc/functions.texi (Function Portability): Document missing lstat
7671         on mingw.
7672
7673 2006-06-29  Eric Blake  <ebb9@byu.net>
7674
7675         * MODULES.html.sh: Add sys_stat.
7676         * modules/sys_stat: New module.
7677         * modules/mkstemp (Depends-on): Add sys_stat.
7678
7679 2006-06-29  Derek R. Price  <derek@ximbiot.com>
7680
7681         * m4/strftime.m4: Don't call AC_FUNC_STRFTIME.
7682
7683 2006-06-29  Derek R. Price  <derek@ximbiot.com>
7684
7685         * m4/c-bs-a.m4: Removed.
7686
7687 2006-06-29  Derek R. Price  <derek@ximbiot.com>
7688
7689         * lib/strftime.c: Assume strftime() exists.
7690
7691 2006-06-29  Derek Price  <derek@ximbiot.com>
7692
7693         * modules/c-bs-a: Removed - \a is C89.
7694         * MODULES.html.sh: Remove c-bs-a.
7695
7696 2006-06-29  Bruno Haible  <bruno@clisp.org>
7697
7698         * modules/wcwidth (License): Change to LGPL.
7699
7700 2006-06-28  Simon Josefsson  <jas@extundo.com>
7701
7702         * tests/test-getaddrinfo.c: Test getnameinfo too.  Call WSAStartup
7703         on _WIN32.
7704
7705         * modules/getaddrinfo (Depends-on): Add inet_ntop, needed by
7706         getnameinfo.
7707
7708 2006-06-28  Simon Josefsson  <jas@extundo.com>
7709
7710         * m4/getaddrinfo.m4: Look for getnameinfo prototypes too.
7711
7712 2006-06-28  Simon Josefsson  <jas@extundo.com>
7713
7714         * lib/getaddrinfo.c: Try to load ws2_32.dll on Windows, to find the
7715         functions there.  It will succeed on Windows XP, but on Windows
7716         2000 and (presumably) earlier, it will fail, and use the internal
7717         re-implementation.
7718         (use_win32_p): New function.
7719         (getaddrinfo): Use strtoul on servname, to support numeric ports.
7720         Support AI_NUMERICSERV to disable getservbyname.
7721         (getnameinfo): New function, only supports
7722         NI_NUMERICHOST|NI_NUMERICSERV for now.
7723
7724         * lib/getaddrinfo.h: Test and check for AI_* flags separately, MinGW
7725         only have some of them.  Add AI_NUMERICSERV.  Add prototype for
7726         getnameinfo.
7727
7728 2006-06-28  Eric Blake  <ebb9@byu.net>
7729
7730         * modules/wcwidth: New file.
7731         * modules/mbchar (Depends-on): Add wcwidth.
7732         * modules/mbswidth (Depends-on): Add wcwidth.
7733         * MODULES.html.sh: Add wcwidth.
7734
7735 2006-06-28  Eric Blake  <ebb9@byu.net>
7736
7737         * m4/mbswidth.m4 (gl_MBSDWIDTH): Move wcwidth from here...
7738         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): ...to this new file.
7739
7740 2006-06-28  Eric Blake  <ebb9@byu.net>
7741
7742         * lib/xvasprintf.h: Fix comments.
7743
7744 2006-06-28  Eric Blake  <ebb9@byu.net>
7745
7746         * lib/mbchar.h (wcwidth): Include wcwidth.h.
7747         * lib/mbswidth.c (wcwidth): Move from here...
7748         * lib/wcwidth.h: ...to this new file.
7749
7750 2006-06-28  Derek R. Price  <derek@ximbiot.com>
7751
7752         * m4/savedir.m4: Remove AC_FUNC_CLOSEDIR_VOID requirement.
7753
7754         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Don't require AC_C_CONST, since
7755         it's obsolete.
7756         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME): Likewise.
7757
7758 2006-06-28  Derek R. Price  <derek@ximbiot.com>
7759
7760         * lib/savedir.c (CLOSEDIR): Remove.  All uses changed to closedir.
7761         Autoconf 2.60 says this stuff was obsolete.
7762
7763 2006-06-28  Bruno Haible  <bruno@clisp.org>
7764
7765         * modules/wcwidth (Files): Add m4/wchar_t.m4.
7766
7767 2006-06-28  Bruno Haible  <bruno@clisp.org>
7768
7769         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Also require AC_C_INLINE and
7770         gt_TYPE_WCHAR_T.
7771
7772 2006-06-28  Bruno Haible  <bruno@clisp.org>
7773
7774         * lib/wcwidth.h: Declare nothing if !HAVE_WCHAR_T. Provide a fallback
7775         declaration for wcwidth.
7776         * lib/mbswidth.c: Restore the includes of <wchar.h> and <wctypes.h>.
7777
7778 2006-06-28  Bruno Haible  <bruno@clisp.org>
7779
7780         * lib/mkdtemp.c [MINGW]: Include <io.h>.
7781         (mkdir): Define using _mkdir.
7782
7783 2006-06-28  Bruno Haible  <bruno@clisp.org>
7784
7785         * lib/getaddrinfo.h: Fix POSIX URL.
7786         * lib/getaddrinfo.c (WIN32_NATIVE): New macro. Use it instead of
7787         _WIN32.
7788         (use_win32_p): Make static.
7789         (getaddrinfo): Reject service name if it is empty or does not consist
7790         solely of decimal digits, or if its value is > 65535.
7791         (getnameinfo): Remove useless casts.
7792
7793 2006-06-27  Simon Josefsson  <jas@extundo.com>
7794
7795         * modules/sys_select: New file, suggested by Bruno Haible, Paul
7796         Eggert and Martin Lambers.
7797
7798 2006-06-27  Simon Josefsson  <jas@extundo.com>
7799
7800         * m4/sys_select_h.m4: New file, suggested by Bruno Haible, Paul
7801         Eggert and Martin Lambers.
7802
7803 2006-06-27  Bruno Haible  <bruno@clisp.org>
7804
7805         * m4/stdint.m4 (gl_STDINT_BITSIZEOF): For nonexistent types, set the
7806         result to 0, not to empty.
7807         Reported by Martin Neitzel <neitzel@sco.gaertner.de>.
7808
7809 2006-06-27  Bruno Haible  <bruno@clisp.org>
7810
7811         * lib/stdint_.h (intmax_t, uintmax_t): Undefine before typedef.
7812
7813 2006-06-26  Simon Josefsson  <jas@extundo.com>
7814
7815         * m4/inet_ntop.m4: Don't check for sys/types.h, we assume it is
7816         present.
7817
7818 2006-06-26  Paul Eggert  <eggert@cs.ucla.edu>
7819
7820         * lib/base64.c (B64): Use _ as the formal parameter, not x, to avoid
7821         bug in IBM C V6 for AIX.  Problem reported by Larry Jones in
7822         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00181.html>.
7823
7824 2006-06-26  Mark D. Baushke  <mdb@gnu.org>
7825
7826         * m4/stdint.m4 (gl_STDINT_H): Treat BSD/OS like OpenBSD.
7827
7828 2006-06-26  Bruno Haible  <bruno@clisp.org>
7829
7830         * modules/stdint (Makefile.am): Also substitute HAVE_WCHAR_H.
7831
7832 2006-06-26  Bruno Haible  <bruno@clisp.org>
7833
7834         * m4/stdint.m4 (gl_STDINT_H): Test also for <wchar.h>.
7835
7836 2006-06-26  Bruno Haible  <bruno@clisp.org>
7837
7838         * m4/stdint.m4 (gl_STDINT_H): Don't include <stdint.h> when using the
7839         SGI C compiler in pre-C99 mode.
7840         Suggested by Mark D. Baushke and Larry Jones.
7841
7842 2006-06-26  Bruno Haible  <bruno@clisp.org>
7843
7844         * lib/stdint_.h: Include <wchar.h> if necessary for WCHAR_MIN or
7845         WCHAR_MAX.
7846         Reported by Mark D. Baushke and Larry Jones.
7847
7848 2006-06-26  Bruno Haible  <bruno@clisp.org>
7849
7850         * lib/stdint_.h: Don't include <stdint.h> when using the SGI C compiler
7851         in pre-C99 mode.
7852         Suggested by Mark D. Baushke and Larry Jones.
7853
7854 2006-06-23  Simon Josefsson  <jas@extundo.com>
7855             Bruno Haible  <bruno@clisp.org>
7856
7857         * gnulib-tool (func_emit_lib_Makefile_am): Define MOSTLYCLEANDIRS.
7858         Emit mostlyclean-local rule.
7859         (func_emit_tests_Makefile_am): Likewise.
7860         * modules/sys_socket (Makefile.am): Use MOSTLYCLEANDIRS.
7861
7862 2006-06-23  Mark D. Baushke  <mdb@gnu.org>
7863
7864         * lib/stdint_.h: Treat BSD/OS like OpenBSD.
7865
7866 2006-06-23  Bruno Haible  <bruno@clisp.org>
7867
7868         * tests/test-stdint.c: Update to match ISO C 99 Technical
7869         Corrigendum 1.
7870
7871 2006-06-23  Bruno Haible  <bruno@clisp.org>
7872
7873         * m4/stdint.m4 (gl_STDINT_H): Treat IRIX like OpenBSD.
7874
7875 2006-06-23  Bruno Haible  <bruno@clisp.org>
7876
7877         * lib/stdint_.h: Treat IRIX like OpenBSD.
7878
7879 2006-06-23  Bruno Haible  <bruno@clisp.org>
7880
7881         * lib/stdint_.h (UINT8_C, UINT16_C, UINT32_C): Define according to
7882         ISO C 99 Technical Corrigendum 1.
7883
7884 2006-06-22  Simon Josefsson  <jas@extundo.com>
7885
7886         * m4/sockpfaf.m4: Include winsock2.h too, to make it work under
7887         MinGW.
7888
7889 2006-06-22  Paul Eggert  <eggert@cs.ucla.edu>
7890
7891         * lib/glob.c (collated_compare): Remove 'const' uses that weren't
7892         needed.  Some compiler complained about some of them.  Problem reported
7893         by Larry Jones in
7894         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00172.html>.
7895
7896 2006-06-21  Simon Josefsson  <jas@extundo.com>
7897
7898         * tests/test-getaddrinfo.c: New file.
7899
7900         * modules/getaddrinfo-tests: New file.
7901
7902         * MODULES.html.sh: Add inet_pton.
7903
7904         * modules/inet_pton: New file.
7905
7906 2006-06-21  Simon Josefsson  <jas@extundo.com>
7907
7908         * m4/getaddrinfo.m4: Don't define WINVER.  Look for gethostbyname in
7909         -lws2_32 too.  Fixes getaddrinfo on Windows 2000, with the price
7910         of using the (limited) gnulib implementation on Windows XP.
7911
7912         * m4/inet_pton.m4: New file.
7913
7914 2006-06-21  Simon Josefsson  <jas@extundo.com>
7915
7916         * lib/getaddrinfo.c (getaddrinfo): Set ai_family in the return
7917         variable.
7918
7919         * lib/socket_.h: Don't define WINVER.
7920
7921         * lib/inet_pton.h, inet_pton.c: New file, taken from glibc but
7922         slightly modified to work in gnulib.
7923
7924 2006-06-21  Simon Josefsson  <jas@extundo.com>
7925
7926         * doc/gnulib.texi (Windows sockets): Add.
7927
7928 2006-06-21  Paul Eggert  <eggert@cs.ucla.edu>
7929
7930         * lib/read-file.c (fread_file): Start with buffer allocation of
7931         0 bytes rather than 1 byte; this simplifies the code.
7932         Don't invoke feof; it's not needed.  Refactor to avoid duplicate
7933         code to free buffer and save/restore errno.
7934         (internal_read_file): Remove unused local.
7935
7936 2006-06-20  Paul Eggert  <eggert@cs.ucla.edu>
7937
7938         * lib/openat.c (openat): Use ?:, not if, to work around GCC bug 4210
7939         <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=4210>.
7940         Problem reported by Denis Excoffier in
7941         <http://lists.gnu.org/archive/html/bug-tar/2006-06/msg00023.html>.
7942
7943 2006-06-19  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
7944
7945         * modules/sys_socket, modules/socklen: Include sys/types since
7946         FreeBSD 4.x's sys/socket.h needs it.
7947
7948 2006-06-19  Simon Josefsson  <jas@extundo.com>
7949
7950         * lib/inet_ntop.c: Always build inet_ntop4, since inet_ntop6 calls it.
7951
7952 2006-06-19  Paul Eggert  <eggert@cs.ucla.edu>
7953
7954         * lib/alloca_.h (alloca) [defined alloca]: Don't define or declare.
7955
7956 2006-06-19  Bruno Haible  <bruno@clisp.org>
7957
7958         * m4/stdint.m4 (gl_STDINT_H): Enclose the values of FULL_PATH_STDINT_H
7959         and FULL_PATH_INTTYPES_H in angle brackets.
7960         Reported by Mark D. Baushke <mdb@gnu.org>.
7961
7962 2006-06-17  Eric Blake  <ebb9@byu.net>
7963
7964         * m4/rmdir-errno.m4 (gl_FUNC_FMDIR_NOTEMPTY): Assume errno.h declares
7965         errno.
7966
7967 2006-06-17  Bruno Haible  <bruno@clisp.org>
7968
7969         * m4/stdint.m4 (gl_STDINT_H) [FreeBSD >= 5]: Don't include
7970         <sys/inttypes.h>.
7971
7972 2006-06-17  Bruno Haible  <bruno@clisp.org>
7973
7974         * m4/setenv.m4 (gl_PREREQ_SETENV, gl_PREREQ_UNSETENV): Remove test
7975         whether errno is declared. Assume <errno.h> declares errno.
7976
7977 2006-06-17  Bruno Haible  <bruno@clisp.org>
7978
7979         * lib/stdint_.h [FreeBSD >= 5]: Don't include <sys/inttypes.h>.
7980
7981 2006-06-17  Bruno Haible  <bruno@clisp.org>
7982
7983         * lib/stdint_.h (_UINT8_T, _UINT32_T, _UINT64_T): New macros. Fixes a
7984         problem on Solaris 2.5.1.
7985
7986 2006-06-16  Eric Blake  <ebb9@byu.net>
7987
7988         * lib/unsetenv.c [!defined errno]: Assume errno.h declares errno.
7989         * lib/unicodeio.c [!defined errno]: Likewise.
7990         * lib/strtol.c [!defined errno]: Likewise.
7991         * lib/strtod.c [!defined errno]: Likewise.
7992
7993 2006-06-15  Eric Blake  <ebb9@byu.net>
7994
7995         * m4/ssize_t.m4 (gt_TYPE_SSIZE_T): Work in spite of -Werror.
7996
7997 2006-06-15  Eric Blake  <ebb9@byu.net>
7998
7999         * config/srclist.txt (ssize_t.m4): Lose sync.
8000
8001 2006-06-15  Bruno Haible  <bruno@clisp.org>
8002
8003         * modules/stdint (Files): Include m4/full-header-path.m4,
8004         m4/size_max.m4, m4/wchar_t.m4.
8005         (Makefile.am): Many more substitutions.
8006         * modules/stdint-tests: New file.
8007         * tests/test-stdint.c: New file.
8008
8009 2006-06-15  Bruno Haible  <bruno@clisp.org>
8010
8011         * m4/stdint.m4 (gl_STDINT_H): Rewritten to produce a complete stdint.h.
8012         (gl_HEADER_STDINT_H, gl_HEADER_INTTYPES_H, gl_STDINT_CHECK_TYPES,
8013         gl_STDINT_MISSING_BOUND, gl_STDINT_MISSING_BOUNDS,
8014         gl_STDINT_MISSING_BOUNDS2, gl_STDINT_BITSIZEOF, gl_CHECK_TYPES_SIGNED,
8015         gl_CHECK_TYPE_SAME): New macros.
8016
8017 2006-06-15  Bruno Haible  <bruno@clisp.org>
8018
8019         * m4/size_max.m4 (gl_SIZE_MAX): Make it work also when cross-compiling.
8020
8021 2006-06-15  Bruno Haible  <bruno@clisp.org>
8022
8023         * lib/stdint_.h: Rewritten to be fully auto-configured.
8024         Fixes bug on HP-UX/IA64.
8025
8026 2006-06-11  Paul Eggert  <eggert@cs.ucla.edu>
8027
8028         * lib/getdate.y (__attribute__): Don't define if already defined.
8029         Problem reported by Larry Jones.
8030         * lib/utimens.c (__attribute__): Likewise.
8031
8032 2006-06-04  Paul Eggert  <eggert@cs.ucla.edu>
8033
8034         * lib/regexec.c (group_nodes_into_DFAstates): Fix a buffer overrun
8035         reported by Andreas Schwab.
8036
8037 2006-05-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8038             Bruno Haible  <bruno@clisp.org>
8039
8040         * m4/strndup.m4 (gl_FUNC_STRNDUP): Replace the AC_REPLACE_FUNCS with a
8041         check for the declaration of strnlen and a run test that exposes the
8042         AIX 5.1 strnlen bug.  In the failure case, #define strndup to
8043         rpl_strndup.
8044
8045 2006-05-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8046             Bruno Haible  <bruno@clisp.org>
8047
8048         * lib/strndup.c (strndup) [!_LIBC]: Don't undefine macro definition.
8049
8050 2006-05-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8051
8052         * m4/c-strtod.m4 (gl_C99_STRTOLD): Use a link test rather than a
8053         compile test, for Tru64 4.0D.
8054
8055 2006-05-28  Karl Berry  <karl@gnu.org>
8056
8057         * config/srclist.txt (printf-args.c): lose sync.
8058
8059 2006-05-26  Martin Lambers  <marlam@marlam.de>
8060
8061         * lib/getpass.c: Updates the test for the native W32 API, and adds
8062         missing includes, thus fixing compilation warnings.
8063
8064 2006-05-25  Sergey Poznyakoff  <gray@gnu.org.ua>
8065
8066         * lib/exclude.c (exclude_fnmatch): New function.
8067         (excluded_file_name): Call exclude_fnmatch.
8068         * lib/exclude.h (excluded_file_name): New prototype
8069
8070 2006-05-25  Paul Eggert  <eggert@cs.ucla.edu>
8071
8072         * lib/tempname.c (small_open, large_open): New macros.
8073         (__open, __open64) [!_LIBC]: Remove.
8074         (__gen_tempname): Use small_open and large_open instead of __open
8075         and __open64.  This fixes a portability bug on HP-UX 11.11i
8076         reported by Simon Wing-Tang in
8077         <http://lists.gnu.org/archive/html/bug-coreutils/2006-05/msg00114.html>.
8078
8079 2006-05-24  Bruno Haible  <bruno@clisp.org>
8080
8081         * lib/printf-args.c (printf_fetchargs): Turn NULL pointers for
8082         TYPE_STRING and TYPE_WIDE_STRING into a non-NULL replacement.
8083         Reported by Thorsten Maerz <torte@netztorte.de> via
8084         Aaron Stone <aaron@serendipity.cx>.
8085
8086 2006-05-19  Paul Eggert  <eggert@cs.ucla.edu>
8087
8088         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Rename cache variables to use
8089         gl_ rather than jm_.  Link, don't run, so that cross-compiles are
8090         allowed.  Check that resulting type is arithmetic.  Move AC_REQUIRE
8091         and AC_CHECK_HEADERS_ONCE outside of AC_CACHE_CHECK, since they're
8092         not really conditional on the cache.
8093         (gl_PREREQ_NANOSLEEP): Check for sys/select.h.
8094
8095 2006-05-19  Paul Eggert  <eggert@cs.ucla.edu>
8096
8097         * lib/nanosleep.c [HAVE_SYS_SELECT_H]: Include <sys/select.h>.
8098         Use the usual Autoconf way to include <time.h> and/or sys/time.h.
8099         (my_usleep): Don't mishandle maximum value.
8100
8101 2006-05-19  Jim Meyering  <jim@meyering.net>
8102
8103         * lib/getugroups.c: Correct an outdated comment.  From Bruno Haible.
8104
8105 2006-05-17  Bruno Haible  <bruno@clisp.org>
8106
8107         Cygwin portability.
8108         * lib/classpath.c (PATH_SEPARATOR) [CYGWIN]: Define as ':'.
8109
8110 2006-05-17  Bruno Haible  <bruno@clisp.org>
8111
8112         * lib/stdint_.h: Fix recognition of Cygwin.
8113
8114 2006-05-15  Bruno Haible  <bruno@clisp.org>
8115
8116         * build-aux/config.rpath: Improve support for Sun C 5.9 on Linux, based
8117         on libtool patch by Ralf Wildenhues.
8118
8119 2006-05-14  Paul Eggert  <eggert@cs.ucla.edu>
8120
8121         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Fix overly-picky
8122         test for C99 conformance; (bool) 0.5 is an integer constant
8123         expression, but (bool) -0.5 is not.  Problem reported by Fedor
8124         Sergeev in <http://forum.sun.com/jive/thread.jspa?threadID=96202>.
8125
8126 2006-05-11  Simon Josefsson  <jas@extundo.com>
8127
8128         * m4/xvasprintf.m4: Fix obvious typo.
8129
8130 2006-05-11  Jim Meyering  <jim@meyering.net>
8131
8132         * lib/sha1.c (sha1_buffer): Correct comment: s/MD5/SHA1/.  From
8133         James Lemley.
8134
8135 2006-05-10  Simon Josefsson  <jas@extundo.com>
8136
8137         * lib/md4.c: Typo fix, update copyright years.
8138         (K1, K2): Don't use L because it turn computations into 64-bit on
8139         64-bit platforms.
8140
8141 2006-05-10  Paul Eggert  <eggert@cs.ucla.edu>
8142
8143         * lib/crc.c (crc32_update): Remove unnecessary L suffix.
8144         * lib/md4.c (rol): Cast right-shift arg to uint32_t to prevent
8145         unwanted sign propagation, e.g., on hosts with 64-bit int.
8146         There still are some problems with reeelly weird theoretical hosts
8147         (e.g., 33-bit int) but it's not worth worrying about now.
8148         * lib/sha1.c (rol): Likewise.
8149         (K1, K2, K3, K4): Remove unnecessary L suffix.
8150
8151 2006-05-10  Bruno Haible  <bruno@clisp.org>
8152
8153         * lib/des.c: Cast to avoid warnings.
8154
8155 2006-05-09  Bruno Haible  <bruno@clisp.org>
8156
8157         * modules/xvasprintf (Files): Add m4/xvasprintf.m4.
8158         (Depends-on): Depend also on xsize, stdarg.
8159         (configure.ac): Add gl_XVASPRINTF.
8160
8161 2006-05-09  Bruno Haible  <bruno@clisp.org>
8162
8163         * m4/xvasprintf.m4: New file.
8164
8165 2006-05-09  Bruno Haible  <bruno@clisp.org>
8166
8167         * lib/xvasprintf.c: Include limits.h, string.h, xsize.h.
8168         (EOVERFLOW): Define fallback value.
8169         (xstrcat): New function.
8170         (xvasprintf): Recognize the special case of a string concatenation.
8171
8172 2006-05-08  Eric Blake  <ebb9@byu.net>
8173
8174         * gnulib-tool (func_version): Base copyright year on CVS date.
8175         (func_emit_copyright_notice): New function.
8176         (func_emit_lib_Makefile_am): Use it.
8177         (func_emit_tests_Makefile_am): Likewise.
8178         (func_import): Likewise.
8179
8180 2006-05-08  Bruno Haible  <bruno@clisp.org>
8181
8182         * modules/stdarg: New file.
8183         * MODULES.html.sh (func_all_modules): Add section for <stdarg.h>.
8184
8185 2006-05-08  Bruno Haible  <bruno@clisp.org>
8186
8187         * m4/stdarg.m4: New file, from GNU gettext.
8188
8189 2006-05-08  Bruno Haible  <bruno@clisp.org>
8190
8191         * config/srclist.txt (build-aux/config.rpath): different from latest
8192         release.
8193
8194 2006-05-08  Bruno Haible  <bruno@clisp.org>
8195
8196         * build-aux/config.rpath: Add support for Sun C 5.9 on Linux.
8197
8198 2006-05-05  Jim Meyering  <jim@meyering.net>
8199
8200         * m4/warning.m4: New file, derived from bison's file by the same name.
8201
8202 2006-05-03  Bruno Haible  <bruno@clisp.org>
8203
8204         * lib/stdint_.h: Shorter URL.
8205         * lib/inttypes.h: Likewise.
8206
8207 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
8208
8209         * modules/inttypes (Maintainer): Change from Derek Price to 'all'.
8210
8211 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
8212
8213         * lib/verify.h: Document the internals better.  Most of this change
8214         was written by Bruno Haible.
8215
8216 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
8217
8218         * doc/verify.texi: New file, partly based on a proposal by
8219         Bruno Haible.
8220
8221 2006-05-02  Bruno Haible  <bruno@clisp.org>
8222
8223         * m4/full-header-path.m4 (gl_FULL_HEADER_PATH): Move the include_next
8224         test from here...
8225         * m4/_inttypes_h.m4 (gl_INTTYPES_H): ... to here.
8226
8227 2006-04-29  Bruno Haible  <bruno@clisp.org>
8228
8229         * lib/gcd.c: Use WORD_T and GCD instead of unsigned long and gcd.
8230         Suggested by Oskar Liljeblad <oskar@osk.mine.nu>.
8231
8232 2006-04-29  Bruno Haible  <bruno@clisp.org>
8233
8234         * gnulib-tool: Make --update option actually work.
8235
8236 2006-04-29  Bruno Haible  <bruno@clisp.org>
8237
8238         * doc/gcd.texi: New file.
8239         * doc/gnulib.texi: Include it.
8240
8241 2006-04-25  Paul Eggert  <eggert@cs.ucla.edu>
8242
8243         * lib/getdate.y (get_date): When adding relative date, start with the
8244         initial time, not with the result of the first mktime call.
8245
8246 2006-04-25  Bruno Haible  <bruno@clisp.org>
8247
8248         * gnulib-tool (func_import): Output the include directives in three
8249         blocks, sorted separately.
8250         Reported by Ben Pfaff <blp@cs.stanford.edu>.
8251
8252 2006-04-24  Paul Eggert  <eggert@cs.ucla.edu>
8253
8254         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Use prototype
8255         to define main with arguments, for C++.  Reported by Eric Blake.
8256         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC):
8257         Prefer 'int main ()' to 'int main (void)', for C++.
8258         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Likewise.
8259         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Specify a return type
8260         for 'main', for C99 and C++.
8261
8262 2006-04-24  Paul Eggert  <eggert@cs.ucla.edu>
8263
8264         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Use return, not exit.
8265         Don't assume that exit status -1 is valid.
8266         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
8267         * m4/putenv.m4 (gl_FUNC_PUTENV): Likewise.
8268         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Likewise.
8269         * m4/readdir.m4 (GL_FUNC_READDIR): Include <stdlib.h>.
8270         * m4/rename.m4 (vb_FUNC_RENAME): Likewise.
8271         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Use AC_RUN_IFELSE,
8272         not AC_TRY_RUN.  Use return, not exit.  Don't assume that
8273         functions can be used without declaring them, or that you can
8274         exit with status -1.
8275         * m4/utimes-null.m4 (gl_FUNC_UTIMES_NULL): Likewise.
8276
8277 2006-04-24  Karl Berry  <karl@gnu.org>
8278
8279         * config/srclist.txt (longdouble.m4): sync lost.
8280
8281 2006-04-24  Eric Blake  <ebb9@byu.net>
8282
8283         * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Avoid unused variable warning.
8284
8285 2006-04-24  Bruno Haible  <bruno@clisp.org>
8286
8287         * m4/poll.m4 (gl_FUNC_POLL): When cross-compiling, reject also the
8288         poll() implementation in AIX.
8289         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
8290
8291 2006-04-24  Bruno Haible  <bruno@clisp.org>
8292
8293         * m4/poll.m4 (gl_FUNC_POLL): Rearrange code, so that POLL_H gets
8294         assigned exactly once.
8295
8296 2006-04-23  Claudio Fontana  <claudio@gnu.org>
8297             Bruno Haible  <bruno@clisp.org>
8298
8299         * modules/gettext (Makefile.am): Add a -I flag for <libintl.h>.
8300         * gnulib-tool (func_emit_lib_Makefile_am): Emit empty default value
8301         for AM_CPPFLAGS.
8302
8303 2006-04-23  Bruno Haible  <bruno@clisp.org>
8304
8305         * modules/copy-file: Depend on unistd.
8306         * modules/execute: Likewise.
8307         * modules/fatal-signal: Likewise.
8308         * modules/findprog: Likewise.
8309         * modules/mkdtemp : Likewise.
8310         * modules/pipe: Likewise.
8311         * modules/wait-process: Likewise.
8312
8313 2006-04-23  Bruno Haible  <bruno@clisp.org>
8314
8315         * lib/fwriteerror.c (fwriteerror): Call fclose also when an error
8316         condition was already detected.
8317         Reported by Ben Pfaff <blp@cs.stanford.edu>.
8318
8319 2006-04-23  Bruno Haible  <bruno@clisp.org>
8320
8321         * lib/copy-file.c: Include <unistd.h> unconditionally.
8322         * lib/execute.c: Likewise.
8323         * lib/fatal-signal.c: Likewise.
8324         * lib/findprog.c: Likewise.
8325         * lib/mkdtemp.c: Likewise.
8326         * lib/pipe.h: Likewise.
8327         * lib/pipe.c: Likewise.
8328         * lib/wait-process.h: Likewise.
8329
8330 2006-04-23  Bruno Haible  <bruno@clisp.org>
8331
8332         * gnulib-tool (func_usage): Fix --import description. Document
8333         --update.
8334         (func_import): Create temporary file in a temporary directory, if
8335         --dry-run is specified. Silence errors from 'grep' when there are no
8336         m4 files in $m4dir.
8337         (func_create_testdir): Silence errors from 'grep' when there are no
8338         m4 files in $m4dir.
8339         Reported by Karl Berry <karl@freefriends.org>.
8340
8341 2006-04-20  Bruno Haible  <bruno@clisp.org>
8342
8343         * m4/argp.m4 (gl_ARGP): Don't call AC_CHECK_DECLS_ONCE with more than
8344         one argument, so that the code will be portable to Autoconf 2.60.
8345         * m4/getlogin_r.m4 (gl_PREREQ_GETLOGIN_R): Likewise.
8346         * m4/getpass.m4 (gl_PREREQ_GETPASS): Likewise.
8347         * m4/unlocked-io.m4 (gl_FUNC_GLIBC_UNLOCKED_IO): Likewise.
8348
8349 2006-04-19  Derek Price  <derek@ximbiot.com>
8350             Eric Blake  <ebb9@byu.net>
8351
8352         * m4/full-header-path.m4 (gl_FULL_HEADER_PATH): Use </full/path.h>
8353         rather than "/full/path.h".  Update comment to match.  Shorten &
8354         generalize m4_translit call via AS_TR_CPP.
8355
8356 2006-04-19  Derek Price  <derek@ximbiot.com>
8357             Eric Blake  <ebb9@byu.net>
8358
8359         * lib/inttypes.h: Correct grammar in comment.
8360
8361 2006-04-18  Derek Price  <derek@ximbiot.com>
8362             Paul Eggert  <eggert@cs.ucla.edu>
8363
8364         * modules/inttypes: New file.
8365         * modules/strtoimax, modules/strtoumax: Depend on inttypes.
8366
8367 2006-04-18  Derek Price  <derek@ximbiot.com>
8368             Paul Eggert  <eggert@cs.ucla.edu>
8369
8370         * m4/_inttypes_h.m4, m4/full-header-path.m4, m4/include_next.m4:
8371         New files.
8372
8373 2006-04-18  Derek Price  <derek@ximbiot.com>
8374             Paul Eggert  <eggert@cs.ucla.edu>
8375
8376         * lib/inttypes.h: New file.
8377         * lib/strtoimax.c: Assume <inttypes.h>.
8378
8379 2006-04-15  Paul Eggert  <eggert@cs.ucla.edu>
8380
8381         * lib/utimens.c (futimens): glibc futimesat messes up if /proc
8382         isn't mounted.  Problem reported by Kir Kolyshkin.
8383
8384 2006-04-13  Paul Eggert  <eggert@cs.ucla.edu>
8385
8386         * lib/regcomp.c (init_dfa): Don't use wchar_t or wctype_t if
8387         RE_ENABLE_I18N is not defined.  Problem reported by Mark D. Baushke via
8388         Derek R. Price.
8389         * lib/regex.h (RE_DUP_MAX): Update comment to match current
8390         implementation.
8391
8392 2006-04-12  Eric Blake  <ebb9@byu.net>
8393
8394         * modules/time_r (Makefile.am): Remove lib_SOURCES line, as this
8395         is now done automatically by the corresponding Autoconf macro.
8396
8397 2006-04-11  Paul Eggert  <eggert@cs.ucla.edu>
8398
8399         * m4/time_r.m4 (gl_TIME_R): Add AC_LIBSOURCES for time_r.c and
8400         time_r.h.
8401
8402 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
8403
8404         Merge regex changes from libc, removing some of our
8405         POSIX-conformance changes that were rejected and redoing them in a
8406         less-intrusive way.
8407
8408         * lib/regcomp.c (re_compile_internal, init_dfa):
8409         Length arg is now size_t, not Idx.  All uses changed.
8410         (peek_token): Forward decl now says internal_function.
8411         (__re_error_msgid, __re_error_msgid_idx):
8412         Now static rather than extern with attribute_hidden.
8413         (re_compile_pattern) [!defined _LIBC]: Use K&R-style defn.
8414         For some reason libc prefers K&R style defns for external functions.
8415         (regerror) [!defined _LIBC]: Likewise.
8416         (re_set_syntax, re_compile_fastmap, regcomp, regfree, re_comp):
8417         (seek_collating_symbol_entry, lookup_collation_sequence_value):
8418         (build_range_exp, build_collating_symbol):
8419         Use K&R-style defn.
8420         (re_compile_fastmap): Use '\0' to memset, not 0.
8421         (utf8_sb_map): Make the calculations more obvious.
8422         (init_dfa, parse_bracket_exp, build_charclass_op):
8423         Call calloc and cast result, as glibc does.
8424         (init_word_char, fetch_token, peek_token, peek_token_bracket):
8425         (build_range_exp, build_collating_symbol):
8426         Now internal functions.
8427
8428         * lib/regex.c [!defined _LIBC]: Allow compiling with C++ compilers.
8429
8430         * lib/regex.h (__USE_GNU_REGEX): New macro.  Don't depend on
8431         _REGEX_SOURCE any more; depend on _GNU_SOURCE instead.
8432         Don't depend on VMS; depend on __VMS instead, for POSIX
8433         namespace cleanness.
8434         (regoff_t): Define to ssize_t, not long int.
8435
8436         Remove the REG_ macros named below.  Instead, make the old names
8437         (e.g., RE_BACKSLASH_ESCAPE_IN_LISTS) visible only if
8438         __USE_GNU_REGEX.
8439         (REG_BACKSLASH_ESCAPE_IN_LISTS):
8440         (REG_BK_PLUS_QM, REG_CHAR_CLASSES, REG_CONTEXT_INDEP_ANCHORS):
8441         (REG_CONTEXT_INDEP_OPS, REG_CONTEXT_INVALID_OPS):
8442         (REG_DOT_NEWLINE, REG_DOT_NOT_NULL, REG_HAT_LISTS_NOT_NEWLINE):
8443         (REG_INTERVALS, REG_LIMITED_OPS, REG_NEWLINE_ALT):
8444         (REG_NO_BK_BRACES, REG_NO_BK_PARENS, REG_NO_BK_REFS):
8445         (REG_NO_BK_VBAR, REG_NO_EMPTY_RANGES):
8446         (REG_UNMATCHED_RIGHT_PAREN_ORD, REG_NO_POSIX_BACKTRACKING):
8447         (REG_NO_GNU_OPS, REG_DEBUG, REG_INVALID_INTERVAL_ORD):
8448         (REG_IGNORE_CASE, REG_CARET_ANCHORS_HERE):
8449         (REG_CONTEXT_INVALID_DUP, REG_NO_SUB, REG_SYNTAX_EMACS):
8450         (REG_SYNTAX_AWK, REG_SYNTAX_GNU_AWK, REG_SYNTAX_POSIX_AWK):
8451         (REG_SYNTAX_GREP, REG_SYNTAX_EGREP, REG_SYNTAX_POSIX_EGREP):
8452         (REG_SYNTAX_ED, REG_SYNTAX_SED, _REG_SYNTAX_POSIX_COMMON):
8453         (REG_SYNTAX_POSIX_BASIC, REG_SYNTAX_POSIX_MINIMAL_BASIC):
8454         (REG_SYNTAX_POSIX_EXTENDED, REG_SYNTAX_POSIX_MINIMAL_EXTENDED):
8455         (REG_DUP_MAX, REG_UNALLOCATED, REG_REALLOCATE, REG_FIXED):
8456         (REG_NREGS):
8457         Remove.  All uses replaced by the old RE_* names.
8458         (RE_BACKSLASH_ESCAPE_IN_LISTS):
8459         (RE_BK_PLUS_QM, RE_CHAR_CLASSES, RE_CONTEXT_INDEP_ANCHORS):
8460         (RE_CONTEXT_INDEP_OPS, RE_CONTEXT_INVALID_OPS):
8461         (RE_DOT_NEWLINE, RE_DOT_NOT_NULL, RE_HAT_LISTS_NOT_NEWLINE):
8462         (RE_INTERVALS, RE_LIMITED_OPS, RE_NEWLINE_ALT):
8463         (RE_NO_BK_BRACES, RE_NO_BK_PARENS, RE_NO_BK_REFS):
8464         (RE_NO_BK_VBAR, RE_NO_EMPTY_RANGES):
8465         (RE_UNMATCHED_RIGHT_PAREN_ORD, RE_NO_POSIX_BACKTRACKING):
8466         (RE_NO_GNU_OPS, RE_DEBUG, RE_INVALID_INTERVAL_ORD):
8467         (RE_IGNORE_CASE, RE_CARET_ANCHORS_HERE):
8468         (RE_CONTEXT_INVALID_DUP, RE_NO_SUB):
8469         Don't bother having these macros be independent of each others'
8470         values, since they no longer exist in the POSIX name space.
8471
8472         Rename the following member names back to their old names,
8473         unless !__USE_GNU_REGEX.  All uses changed back.
8474         (buffer): Renamed from re_buffer.
8475         (allocated): Renamed from re_allocated.
8476         (used): Renamed from re_used.
8477         (syntax): Renamed from re_syntax.
8478         (fastmap): Renamed from re_fastmap.
8479         (translate): Renamed from re_translate.
8480         (can_be_null): Renamed from re_can_be_null.
8481         (regs_allocated): Renamed from re_regs_allocated.
8482         (fastmap_accurate): Renamed from re_fastmap_accurate.
8483         (no_sub): Renamed from re_no_sub.
8484         (not_bol): Renamed from re_not_bol.
8485         (not_eol): Renamed from re_not_eol.
8486         (newline_anchor): Renamed from re_newline_anchor.
8487         (num_regs): Renamed from rm_num_regs.
8488         (start): Renamed from rm_start.
8489         (end): Renamed from rm_end.
8490
8491         (free_state): Move up a bit.
8492
8493         * lib/regex_internal.h (inline) [__GNUC__ < 3 && defined _LIBC]:
8494         #define to be empty.
8495         (ASCII_CHARS): New macro, replacing all uses of 0x80 and/or SBC_MAX / 2
8496         when that is what is intended.
8497         (SBC_MAX): Define to UCHAR_MAX + 1, not 256.
8498         (__re_error_msgid, __re_error_msgid_idx): Remove decls; not needed.
8499         (MAX): New macro.
8500         (re_xmalloc, re_calloc, re_xrealloc, re_x2realloc): Remove.
8501         All uses changed back to re_malloc, etc.  It's now the caller's
8502         responsibility to check for overflow; all callers changed.
8503         (re_alloc_oversized, re_x2alloc_oversized, re_xnmalloc, re_xnrealloc):
8504         (re_x2nrealloc): Remove.
8505         (free_state): Remove decl.
8506
8507         * lib/regexc.c (regexec, re_match, re_search, re_match_2, re_search_2):
8508         (re_set_registers, re_exec):
8509         Use K&R-style defn.
8510
8511         2006-01-31  Roland McGrath  <roland@redhat.com>
8512
8513         * lib/regcomp.c (calc_eclosure_iter): Remove dead variables.
8514         Reported by Mike Frysinger <vapier@gentoo.org>.
8515
8516         2006-01-15  Andreas Jaeger  <aj@suse.de>
8517
8518         [BZ #1950]
8519         * lib/regex_internal.c (re_string_reconstruct): Adjust for
8520         build_wcs_upper_buffer change.
8521         (build_wcs_upper_buffer): Change return type.
8522
8523         2005-12-10  Ulrich Drepper  <drepper@redhat.com>
8524
8525         * lib/regex_internal.h: Include <stdint.h> if available.
8526
8527         2005-12-06  Paolo Bonzini  <bonzini@gnu.org>
8528
8529         * lib/regex_internal.h (SIZE_MAX): Provide a default definition.
8530
8531         2005-10-14  Ulrich Drepper  <drepper@redhat.com>
8532
8533         * lib/regcomp.c: Adjust for changed secondary hash function.
8534
8535         2005-09-30  Ulrich Drepper  <drepper@redhat.com>
8536
8537         * lib/regex.h: Pretty printing.
8538         Clean up namespace a bit.
8539
8540         2005-09-30  Jakub Jelinek  <jakub@redhat.com>
8541
8542         * lib/regexec.c (update_cur_sifted_state, check_arrival,
8543         check_arrival_add_next_nodes): Avoid using uninitialized variable.
8544
8545         2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
8546                     Ulrich Drepper  <drepper@redhat.com>
8547
8548         [BZ #1302]
8549         * lib/regex_internal.h (bitset_t): Renamed from bitset.  All uses
8550         changed.
8551         (bitset_word_t): Renamed from bitset_word.  All uses changed.
8552
8553         2005-09-22  Ulrich Drepper  <drepper@redhat.com>
8554
8555         [BZ #281]
8556         * lib/regex.h: Define RE_TRANSLATE_TYPE as unsigned char *.
8557         * lib/regcomp.c: Remove unnecessary uses of
8558         unsigned RE_TRANSLATE_TYPE.
8559         * lib/regex_internal.h: Likewise.
8560         * lib/regex_internal.c: Likewise.
8561         * lib/regexec.c: Likewise.
8562         Based on a patch by Stepan Kasal <kasal@ucw.cz>.
8563
8564         2005-09-07  Ulrich Drepper  <drepper@redhat.com>
8565
8566         * lib/regexec.c (find_recover_state): Remove unnecessary
8567         initialization.
8568         (transit_state_bkref): Make DFA a const pointer.
8569         (get_subexp): Likewise.
8570         (check_arrival): Likewise.
8571         (update_cur_sifted_state): Likewise.
8572         (re_search_internal): Likewise.
8573         (prune_impossible_nodes): Likewise.
8574         (acquire_init_state_context): Likewise.
8575         (proceed_next_node): Likewise.
8576         (set_regs): Likewise.
8577         (free_fail_stack_return): Likewise.
8578         (check_arrival_expand_ecl): Mark DFA parameter as const.
8579         (check_arrival_expand_ecl_sub): Likewise.
8580         (check_subexp_limits): Likewise.
8581         (sub_epsilon_src_nodes):  Likewise.
8582         (add_epsilon_src_nodes):  Likewise.
8583         (merge_state_array): Likewise.
8584         (update_regs): Likewise.
8585         (build_trtable): Likewise.
8586         (sift_states_backward): Mark MCTX parameter as const.
8587         (build_sifted_states): Likewise.
8588         (update_cur_sifted_state): Likewise.
8589         (sift_states_mkref): Likewise.
8590         (check_arrival_expand_ecl): Mark eclosure as const.
8591         (check_dst_limits_calc_pos_1): Likewise.
8592         * lib/regex_internal.h (re_match_context_t): Make dfa a const
8593         pointer.
8594
8595         2005-09-06  Ulrich Drepper  <drepper@redhat.com>
8596
8597         * lib/regexec.c (merge_state_with_log): Define dfa as const pointer.
8598         (transit_state_sb): Likewise.
8599         (transit_state_mb): Likewise.
8600         (sift_states_iter_mb): Likewise.
8601         (check_arrival_add_next_nodes): Likewise.
8602         (check_node_accept_bytes): Change first parameter to pointer-to-const.
8603         [_LIBC] (re_search_2_stub): Use mempcpy.
8604
8605         * lib/regex_internal.c (re_string_reconstruct): Avoid calling
8606         mbrtowc for very simple UTF-8 case.
8607
8608         * lib/regex_internal.c (re_acquire_state): Make DFA pointer arg
8609         a pointer-to-const.
8610         (re_acquire_state_context): Likewise.
8611         * lib/regex_internal.h: Adjust prototypes.
8612
8613         * lib/regex.c: Prevent using C++ compilers.
8614
8615         * lib/regex_internal.c (re_acquire_state): Minor code rearrangement.
8616         (re_acquire_state_context): Likewise.
8617
8618 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
8619
8620         * modules/regex (Depends-on): Add ssize_t.
8621
8622 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
8623
8624         * m4/regex.m4 (gl_REGEX): Check for new glibc interface to
8625         translation table.
8626
8627 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
8628
8629         * doc/gnulib-tool.texi (Modified imports): pathname -> file name.
8630
8631 2006-03-29  Mark D. Baushke  <mdb@gnu.org>
8632             Bruno Haible  <bruno@clisp.org>
8633
8634         * lib/stdint_.h: On OpenBSD, don't redefine types already included in
8635         <sys/types.h> and <inttypes.h>.
8636
8637 2006-03-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8638
8639         * m4/argz.m4 (gl_FUNC_ARGZ): If we define `error_t', also define
8640         `__error_t_defined', so argp.h will not typedef the former.
8641
8642 2006-03-25  Paul Eggert  <eggert@cs.ucla.edu>
8643
8644         * m4/regex.m4 (gl_REGEX): Don't insist on REG_SYNTAX_POSIX_EGREP,
8645         REG_SYNTAX_EMACS, and REG_IGNORE_CASE.  Settle for the traditional
8646         glibc names.  Even if glibc is changed to conform to POSIX, the
8647         traditional names will be available anyway, since regex depends on
8648         the extensions module.  Also, fix a longstanding typo in the
8649         implementation of Spencer ERE test #75 from grep 2.3.  Problems
8650         reported by Emanuele Giaquinta.  Also, change sense of cached
8651         variable, so that the message makes sense.
8652
8653 2006-03-24  Simon Josefsson  <jas@extundo.com>
8654
8655         * lib/base64.c: Fix problems reported by Eric Blake <ebb9@byu.net>,
8656         including some doc fixes.
8657         (base64_encode_alloc): Fix +1 bug on allocation failures.
8658
8659 2006-03-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8660
8661         * lib/base64.c (base64_encode): Do not read past end of array with
8662         unsanitized input on systems with CHAR_BIT > 8.
8663
8664 2006-03-24  Eric Blake  <ebb9@byu.net>
8665
8666         * lib/time_r.c (copy_string_result): Remove, as it is no longer used.
8667
8668 2006-03-22  Karl Berry  <karl@gnu.org>
8669
8670         * config/srclist.txt (*setenv.[ch]): get from coreutils.
8671         * config/srclistvars.sh (COREUTILS): new var.
8672
8673 2006-03-17  Jim Meyering  <jim@meyering.net>
8674
8675         * m4/regex.m4 (gl_REGEX): Fix typo in last change:
8676         s/_REGEX_WIDE_OFFSETS/_REGEX_LARGE_OFFSETS/.
8677
8678 2006-03-16  Paul Eggert  <eggert@cs.ucla.edu>
8679
8680         * m4/regex.m4 (gl_REGEX): Don't check for off_t, since the code
8681         no longer needs it.  Instead, check that regoff_t is as least
8682         as wide as ptrdiff_t.
8683
8684         Don't define _REGEX_WIDE_OFFSETS unless using the included regex,
8685         so that our regex.h stays compatible with the installed regex.
8686         This is helpful for installers who configure --without-included-regex.
8687         Problem reported by Emanuele Giaquinta.
8688
8689 2006-03-16  Paul Eggert  <eggert@cs.ucla.edu>
8690
8691         * lib/regex.h (regoff_t) [defined _REGEX_LARGE_OFFSETS]:
8692         Typedef to long int, not to off_, as POSIX will likely change
8693         in that direction.
8694
8695 2006-03-15  Eric Blake  <ebb9@byu.net>
8696
8697         * m4/dirfd.m4 (gl_FUNC_DIRFD): Use AC_REQUIRE for AC_HEADER_DIRENT.
8698
8699 2006-03-13  Sergey Poznyakoff  <gray@gnu.org.ua>
8700
8701         * lib/argp-help.c (validate_uparams): Fix typo
8702         * lib/argp-parse.c (argp_default_options): Consistently begin help
8703         messages with a lowercase letter.
8704
8705 2006-03-11  Paul Eggert  <eggert@cs.ucla.edu>
8706
8707         * lib/time_r.h (asctime_r, ctime_r): Remove.  These functions can
8708         overrun buffers and shouldn't be used (much as gets shouldn't be
8709         used).
8710         * lib/time_r.c (asctime_r, ctime_r): Likewise.
8711
8712 2006-03-08  Simon Josefsson  <jas@extundo.com>
8713
8714         * m4/gc-random.m4: Permit 'no' as variable values and fix warnings,
8715         suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
8716
8717 2006-03-08  Simon Josefsson  <jas@extundo.com>
8718
8719         * m4/gc-random.m4: Call AC_CANONICAL_HOST and use $host_os instead of
8720         $target, suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
8721
8722 2006-03-08  Simon Josefsson  <jas@extundo.com>
8723
8724         * lib/gc-gnulib.c (randomize): Don't open files called 'no', they
8725         signal that configure disabled the device.
8726
8727 2006-03-08  Simon Josefsson  <jas@extundo.com>
8728
8729         * build-aux/maint.mk: Fix refresh-po, to handle no translated
8730         languages.
8731
8732 2006-03-07  Simon Josefsson  <jas@extundo.com>
8733
8734         * modules/getopt (Depends-on): Add unistd.
8735
8736         * modules/unistd: New file.
8737
8738 2006-03-07  Simon Josefsson  <jas@extundo.com>
8739
8740         * modules/gc-random: New file.
8741
8742 2006-03-07  Simon Josefsson  <jas@extundo.com>
8743
8744         * m4/unistd_h.m4: New file.
8745
8746 2006-03-07  Simon Josefsson  <jas@extundo.com>
8747
8748         * m4/readline.m4 (gl_FUNC_READLINE): Rewrite the cached part of the
8749         test to be side-effect free by storing the result in the cache
8750         variable gl_cv_lib_readline, and moving the assignment of
8751         LIBREADLINE and LTLIBREADLINE outside the COMMANDS-TO-SET-IT.
8752         From Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
8753
8754 2006-03-07  Simon Josefsson  <jas@extundo.com>
8755
8756         * m4/gc-random.m4: New file, mostly from gc.m4.  Warn instead of
8757         error on missing devices (the functions will return an error).
8758
8759         * m4/gc.m4: Move random stuff to gc-random.m4
8760
8761 2006-03-07  Simon Josefsson  <jas@extundo.com>
8762
8763         * lib/unistd_.h: New file.
8764
8765 2006-03-07  Simon Josefsson  <jas@extundo.com>
8766
8767         * lib/gc-libgcrypt.c, gc-gnulib.c: Use GC_USE_RANDOM.
8768
8769 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
8770
8771         * m4/unistd_h.m4 (gl_HEADER_UNISTD): Rename, to match modules file.
8772         Problem reported by Juan Manuel Guerrero.
8773
8774 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
8775
8776         * lib/c-stack.c: Include unistd.h unconditionally, since we now assume
8777         the unistd module.
8778         * lib/getlogin_r.c: Likewise.
8779         * lib/getlogin_r.h: Likewise.
8780         * lib/glob.c: Likewise.
8781         * lib/pagealign_alloc.c: Likewise.
8782         * lib/unistd_.h: Remove; no longer needed.
8783
8784 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
8785
8786         * MODULES.html.sh (Support for systems lacking POSIX:2001):
8787         Add unistd.
8788         * modules/c-stack (Depends-on): Add unistd.
8789         * modules/getlogin_r: Likewise.
8790         * modules/glob: Likewise.
8791         * modules/pagealign_alloc: Likewise.
8792         * modules/unistd (Files): Remove lib/unistd_.h.
8793         (EXTRA_DIST): Remove.
8794         (unistd.h): Create using 'echo' rather than 'cp', so that we don't
8795         need unistd_.h.
8796         (MOSTLYCLEANFILES): Remove unistd.h-t.
8797
8798 2006-03-03  Simon Josefsson  <jas@extundo.com>
8799
8800         * build-aux/maint.mk: Add several syntax checks from CoreUtils.
8801
8802 2006-03-03  Simon Josefsson  <jas@extundo.com>
8803
8804         * build-aux/maint.mk: Add refresh-po rule, based on ideas from
8805         libidn and bison.
8806
8807 2006-03-03  Simon Josefsson  <jas@extundo.com>
8808
8809         * build-aux/maint.mk: Add indent target.
8810
8811 2006-03-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de> (tiny change)
8812
8813         * m4/poll.m4 (gl_FUNC_POLL): If we deem poll(2) unacceptable, use
8814         our replacement poll.h in any case, to avoid a differing
8815         declaration from a system header.  Seen on AIX.
8816
8817 2006-03-01  Simon Josefsson  <jas@extundo.com>
8818
8819         * lib/readline.c: Fix typo, tiny patch from Stepan Kasal
8820         <kasal@ucw.cz>.
8821
8822 2006-03-01  Paul Eggert  <eggert@cs.ucla.edu>
8823
8824         * modules/gettime (Depends-on): Add extensions module.
8825         * modules/nanosleep (Depends-on): Likewise.
8826         * modules/settime (Depends-on): Likewise.
8827
8828 2006-03-01  Paul Eggert  <eggert@cs.ucla.edu>
8829
8830         * m4/clock_time.m4 (gl_CLOCK_TIME): Require gl_USE_SYSTEM_EXTENSIONS,
8831         not merely AC_GNU_SOURCE, for the benefit of Solaris 10 when compiled
8832         pedantically.
8833         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
8834         * m4/timespec.m4 (gl_TIMESPEC): Likewise.
8835
8836         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Use "=" with "test",
8837         not "==".  Reported by Ralf Wildenhues.
8838
8839 2006-03-01  Karl Berry  <karl@gnu.org>
8840
8841         * doc/Copyright/request-*: new files, synced from gnuorg.
8842
8843 2006-03-01  Karl Berry  <karl@gnu.org>
8844
8845         * config/srclist.txt (Copyright/*): new entries.
8846
8847 2006-02-28  Simon Josefsson  <jas@extundo.com>
8848
8849         * lib/getopt.c: Protect #include of unistd.h, for MSVS.
8850
8851 2006-02-27  Simon Josefsson  <jas@extundo.com>
8852
8853         * lib/base64.h: Indent #define's.  From Jim Meyering
8854         <jim@meyering.net>.
8855
8856 2006-02-27  Jim Meyering  <jim@meyering.net>
8857
8858         Revert the change of 2006-02-24, so these files can continue
8859         to be sync'd from gettext.
8860         * lib/mkdtemp.c, setenv.c, unsetenv.c: *Un*-normalize inclusion
8861         of `config.h'.
8862
8863 2006-02-26  Paul Eggert  <eggert@cs.ucla.edu>
8864
8865         * modules/intprops: New file.
8866         * MODULES.html.sh (Numeric conversion functions <stdlib.h>):
8867         Add intprops.
8868         * modules/getloadavg (Files): Remove lib/intprops.h.
8869         (Depends-on): Add intprops.
8870         * modules/human: Likewise.
8871         * modules/inttostr: Likewise.
8872         * modules/openat: Likewise.
8873         * modules/sig2str: Likewise.
8874         * modules/userspec: Likewise.
8875         * modules/utimecmp: Likewise.
8876         * modules/xnanosleep: Likewise.
8877         * modules/xstrtol: Likewise.
8878
8879 2006-02-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny changes)
8880
8881         * modules/xstrtod: Omit xstrtod.h, xstrtod.c; they're in LIB_SOURCES.
8882         * modules/lock-tests (TESTS): Use $(EXEEXT).
8883         * modules/tls-tests: Likewise.
8884         * modules/argp-tests: Likewise.
8885         (check_PROGRAMS): New var, replacing...
8886         (noinst_PROGRAMS, test_argp_SOURCES): Remove.
8887
8888 2006-02-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8889
8890         * lib/mkdtemp.c, lib/setenv.c, lib/unsetenv.c: Normalize inclusion of
8891         `config.h'.
8892
8893 2006-02-24  Paul Eggert  <eggert@cs.ucla.edu>
8894
8895         * lib/glob.c: Say "invalid" rather than "illegal" in comments.
8896
8897 2006-02-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8898
8899         Sync from coreutils.
8900         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Require gl_FUNC_LCHMOD and
8901         gl_CHDIR_SAFER.
8902
8903 2006-02-22  Jim Meyering  <jim@meyering.net>
8904
8905         Sync from coreutils.
8906         * m4/chdir-safer.m4: New file.
8907
8908 2006-02-20  Paul Eggert  <eggert@cs.ucla.edu>
8909
8910         * lib/getcwd.c (AT_FDCWD): Work around a bug in Solaris 9 and 10, where
8911         AT_FDCWD exceeds INT_MAX.
8912         * lib/openat.h (AT_FDCWD): Likewise.
8913
8914 2006-02-17  Eric Blake  <address@hidden>
8915
8916         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Fix caching error.
8917
8918 2006-02-16  Simon Josefsson  <jas@extundo.com>
8919
8920         * modules/getaddrinfo (Depends-on): Add sys_socket.
8921
8922 2006-02-15  Simon Josefsson  <jas@extundo.com>
8923
8924         * build-aux/maint.mk: Add dsyntax-check rule.
8925
8926 2006-02-15  Eric Blake  <ebb9@byu.net>
8927
8928         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Don't attempt using
8929         winsock2.h or ws2tcpip.h when sys/socket.h is present. Fixes
8930         'present but cannot compile' warnings on cygwin.
8931         * m4/socklen.m4 (gl_TYPE_SOCKLEN_T): Use gl_HEADER_SYS_SOCKET.  Don't
8932         use ws2tcpip.h if sys/socket.h works.
8933         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Use gl_HEADER_SYS_SOCKET.
8934         (gl_GETADDRINFO): Don't use ws2tcpip.h when sys/socket.h is present.
8935
8936 2006-02-14  Simon Josefsson  <jas@extundo.com>
8937
8938         * modules/maintainer-makefile (Files): Rename.
8939
8940         * build-aux/GNUmakefile: Rename Makefile.maint to maint.mk
8941         and (the local) Makefile.cfg to maint-cfg.mk.
8942
8943         * build-aux/Makefile.maint, build-aux/maint.mk: Renamed the former
8944         to the latter.
8945
8946         * modules/maintainer-makefile: New module.
8947
8948         * build-aux/Makefile.maint: New file, from GNU CoreUtils, although
8949         severaly stripped to make it possible to build it up from scratch
8950         with reliable tests.
8951
8952         * build-aux/GNUmakefile: New file, from GNU CoreUtils with some
8953         fixes to permit overriding the default actions when configure and
8954         makefile are not available.
8955
8956 2006-02-14  Paul Eggert  <eggert@cs.ucla.edu>
8957
8958         Sync from coreutils.
8959         * modules/lstat (Depends-on): Don't depend on xalloc.
8960         (License): Change from GPL to LGPL, since this is now simply a
8961         replacement for a libc function.
8962
8963 2006-02-14  Jim Meyering  <jim@meyering.net>
8964
8965         Sync from coreutils.
8966
8967         Eliminate the unwelcome (albeit unlikely) possibility of xmalloc
8968         failure on deficient systems, and simplify gnulib lgpl dependencies.
8969         * lib/lstat.c (rpl_lstat): Rewrite to use stat() in place of the
8970         xmalloc/lstat combination.  Based on a patch from Bruno Haible.
8971
8972         * lib/xalloc-die.c: Remove unused definition of N_.
8973
8974 2006-02-14  Jim Meyering  <jim@meyering.net>
8975
8976         Sync from coreutils.
8977         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): Invoke
8978         AC_CHECK_FUNCS(getmntent) unconditionally so that tests of
8979         $ac_cv_func_getmntent (e.g., in gl_LIST_MOUNTED_FILE_SYSTEMS) need not
8980         double-quote uses of that variable, to accommodate the rare case in
8981         which getmntent is available in none of the libraries checked.  This
8982         happens at least on FreeBSD 5.0.
8983
8984 2006-02-13  Simon Josefsson  <jas@extundo.com>
8985
8986         * gnulib-tool (Usage): Fix --import, from
8987         karl@freefriends.org (Karl Berry).
8988
8989 2006-02-13  Sergey Poznyakoff  <gray@gnu.org.ua>
8990
8991         * lib/argp-fmtstream.c: Restore another bugfix lost on 2005-12-12
8992
8993 2006-02-07  Sergey Poznyakoff  <gray@gnu.org.ua>
8994
8995         * lib/argp-namefrob.h: Restore changes accidentally lost during the
8996         "autoupdate" on 2005-12-12.
8997
8998 2006-02-07  Paul Eggert  <eggert@cs.ucla.edu>
8999
9000         * modules/closeout (Depends-on): Remove atexit.
9001
9002 2006-02-07  Paul Eggert  <eggert@cs.ucla.edu>
9003
9004         * lib/closeout.c (close_stdout): Don't assume 'bool' converts nonzero
9005         ints to 0 or 1, as this isn't true for the stdbool.h substitute.
9006
9007 2006-02-05  Paul Eggert  <eggert@cs.ucla.edu>
9008
9009         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Don't #define
9010         __EXTENSIONS__ if this causes compilation to fail.  Problem
9011         reported by Nelson H. F. Beebe with Solaris 10 and Sun C 5.7
9012         c89 -D_XOPEN_SOURCE -D_XOPEN_SOURCE_EXTENDED.
9013
9014 2006-01-27  Paul Eggert  <eggert@cs.ucla.edu>
9015
9016         * lib/fnmatch.c (L_): Renamed from L, to work around a bug in
9017         Mac OS X 10.3.9 with GCC 3 reported by Claudio Fontana in
9018         <http://lists.gnu.org/archive/html/bug-gnulib/2006-01/msg00074.html>.
9019         All uses changed.
9020
9021 2006-01-26  Simon Josefsson  <jas@extundo.com>
9022
9023         * lib/socket_.h: Set WINVER to 0x0501, to make sure getaddrinfo
9024         prototype is visible on mingw32.
9025
9026         * lib/getaddrinfo.h: Define EAI_ADDRFAMILY and EAI_SYSTEM if not set,
9027         for mingw32.
9028
9029         * lib/gai_strerror.c, getaddrinfo.h: Protect netdb.h #include (for
9030         mingw32).
9031
9032 2006-01-26  Paul Eggert  <eggert@cs.ucla.edu>
9033
9034         * lib/fts.c (diropen): Open with O_NOCTTY | O_NONBLOCK too.  Don't
9035         attempt to open for write; this always fails, at least on POSIX
9036         hosts.  This reinstates the 2006-01-09 change, which was
9037         inadvertently removed.
9038
9039 2006-01-26  Bruno Haible  <bruno@clisp.org>
9040
9041         * gnulib-tool (func_import): Use "trap 'exit $?' instead of "trap :".
9042         Reported by Paul Eggert.
9043
9044 2006-01-26  Bruno Haible  <bruno@clisp.org>
9045             Paul Eggert  <eggert@cs.ucla.edu>
9046
9047         * lib/stdbool_.h (_Bool)
9048         [(! (defined __cplusplus || defined __BEOS__)
9049           && !defined __GNUC__
9050           && !(defined __HP_cc || defined __xlc__
9051                || (defined __SUNPRO_C && (__SUNPRO_C < 0x550 || __STDC__ == 1))
9052                || defined __sgi))]:
9053         #define to signed char in these cases too; this simplifies
9054         the code (so that we don't have to worry about HP-UX, AIX, SunPRO,
9055         etc., separately) and makes it more conservative.
9056
9057 2006-01-25  Simon Josefsson  <jas@extundo.com>
9058
9059         * m4/getaddrinfo.m4: Look for getaddrinfo inside ws2tcip.h and
9060         -lws2_32.  Protect sys/socket.h and netdb.h #include's.  Include
9061         ws2tcpip.h with WINVER=0x0501.  All for mingw32.
9062
9063 2006-01-25  Sergey Poznyakoff  <gray@gnu.org.ua>
9064
9065         * lib/argp-namefrob.h: Bugfix. Remove stray #
9066
9067 2006-01-25  Paul Eggert  <eggert@cs.ucla.edu>
9068
9069         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check for xlc bug if __GCC__ too,
9070         so that we test the test.
9071         Check for yet another HP-UX cc bug involving *bool |= bool.
9072
9073 2006-01-25  Karl Berry  <karl@gnu.org>
9074
9075         * config/srclist.txt (vasnprintf.c): sync lost.
9076
9077 2006-01-25  Jim Meyering  <jim@meyering.net>
9078
9079         Sync from the stable (b5) branch of coreutils:
9080
9081         * lib/fts.c (fts_children): Don't let close() clobber errno from
9082         failed fchdir().
9083
9084         * lib/fts.c (fts_stat): When following a symlink-to-directory,
9085         don't necessarily interpret stat-fails+lstat-succeeds as indicating
9086         a dangling symlink.  That can also happen at least for ELOOP.
9087         The fix: return FTS_SLNONE only when the stat errno is ENOENT.
9088         FYI, this bug predates the inclusion of fts.c in coreutils.
9089
9090         * lib/fts.c (fts_open): Put new maxarglen declaration and uses
9091         in their own block, so pre-c99 compilers don't object.
9092
9093         Avoid the double-free (first in fts_read, second in fts_close) that
9094         would occur when an `active' directory is made inaccessible (e.g.,
9095         via chmod a-x) during a traversal.
9096         * lib/fts.c (fts_read): After a failed fchdir, update sp->fts_cur
9097         before returning.  Reproduce this failure by
9098         mkdir -p a/b; cd a; chmod a-x . b
9099         Reported by Stavros Passas.
9100
9101 2006-01-25  Jim Meyering  <jim@meyering.net>
9102
9103         * lib/fileblocks.c: Remove more useless parentheses.
9104         * lib/readutmp.h: Likewise.
9105
9106 2006-01-25  Bruno Haible  <bruno@clisp.org>
9107
9108         * lib/stdbool_.h (_Bool) [IRIX cc]: Define as 'signed char', to avoid
9109         warnings.
9110         Reported by Paul Eggert.
9111
9112 2006-01-25  Bruno Haible  <bruno@clisp.org>
9113
9114         * gnulib-tool (func_import): Use "trap :" instead of "trap -" to get
9115         rid of a trap command. For Solaris sh.
9116         Reported by Mark D. Baushke <mdb@gnu.org>.
9117
9118 2006-01-24  Simon Josefsson  <jas@extundo.com>
9119
9120         * lib/socket_.h (SHUT_WR, SHUT_RDWR): Don't hardcode, suggested by
9121         Bruno.
9122
9123 2006-01-24  Karl Berry  <karl@gnu.org>
9124
9125         * config/srclist.txt (argp-namefrob.h): sync lost.
9126
9127 2006-01-24  Jim Meyering  <jim@meyering.net>
9128
9129         * modules/openat (Files): Add lib/intprops.h.
9130         From Mark D. Baushke.
9131
9132 2006-01-24  Jim Meyering  <jim@meyering.net>
9133
9134         * m4/openat.m4 (gl_FUNC_OPENAT): Add AC_LIBSOURCES([intprops.h]).
9135         Reported by Mark D. Baushke.
9136
9137 2006-01-24  Jim Meyering  <jim@meyering.net>
9138
9139         * lib/socket_.h: Remove useless parentheses in uses of cpp `defined'.
9140
9141 2006-01-24  Bruno Haible  <bruno@clisp.org>
9142
9143         * modules/strnlen (Maintainer): Change from glibc to all.
9144
9145 2006-01-24  Bruno Haible  <bruno@clisp.org>
9146
9147         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check for IBM and HP-UX bugs.
9148         Patch by Paul Eggert.
9149
9150 2006-01-24  Bruno Haible  <bruno@clisp.org>
9151
9152         * lib/stdbool_.h (_Bool) [__cplusplus]: Don't define if the compiler
9153         already has it.
9154         Report and patch by Albert Chin-A-Young  <china@thewrittenword.com> on
9155         2005-11-26.
9156
9157         * lib/stdbool_.h (_Bool) [HP-UX cc, AIX cc,xlc]: Define as
9158         'signed char' to avoid problems with the built-in _Bool type.
9159         Reported by Paul Eggert on 2005-11-26.
9160
9161 2006-01-24  Bruno Haible  <bruno@clisp.org>
9162
9163         * gnulib-tool (func_import): Avoid constructing complicated sed
9164         expressions inside backquote.
9165         Report and solution by Mark D. Baushke <mdb@gnu.org>.
9166
9167 2006-01-23  Ulrich Drepper  <drepper@redhat.com>
9168
9169         These changes imported from libc.
9170         * lib/getopt.c: Use __fxprintf instead of inline stream orientation
9171         test and two separate function calls.
9172         * lib/strndup.c (__strndup): Add libc_hidden_def.
9173
9174 2006-01-23  Simon Josefsson  <jas@extundo.com>
9175
9176         * modules/lock-tests: Use check_PROGRAMS instead of noinst_PROGRAMS.
9177         Remove the test_*_SOURCES variable: automake infers it by default.
9178         * modules/tls-tests: Likewise.
9179
9180 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
9181
9182         Work around porting bugs reported by Dieter in
9183         <http://lists.gnu.org/archive/html/bug-bison/2006-01/msg00049.html>.
9184         * lib/getopt.c (_NOPROTO): Remove; no longer needed.
9185         Include <stdlib.h> and <unistd.h> in all environments; it's safe now.
9186         Include "getopt.h" first, to check interface.
9187         (getenv): Declare only if defined HAVE_DECL_GETENV &&
9188         !HAVE_DECL_GETENV.
9189         * lib/strndup.c [!_LIBC]: Include "strndup.h" to get prototype.
9190         (__strndup): Revert to K&R-style function dfns, the glibc style.
9191         * lib/strnlen.c: Don't claim it's taken from glibc; it's not.
9192         (strnlen, __strnlen): Remove #defines and #undefs; not needed.
9193         Include strnlen.h first, to get prototype properly.
9194         (strnlen): Renamed from __strnlen.
9195         Remove weak alias.
9196
9197 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
9198
9199         * m4/getopt.m4 (gl_PREREQ_GETOPT): Check for getenv decl.
9200
9201 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
9202
9203         * config/srclist.txt: Adjust to reflect glibc reorganization.
9204         This affects only comments.
9205
9206 2006-01-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
9207
9208          * gnulib-tool, build-aux/csharpcomp.sh.in: Do not pass `-q' to mktemp.
9209          Reported by Bruce Korb <bkorb@gnu.org>.
9210
9211 2006-01-22  Paul Eggert  <eggert@cs.ucla.edu>
9212
9213         * lib/quotearg.c (quotearg_buffer_restyled): Add "default: break;"
9214         to pacify gcc -Wswitch-default.
9215
9216 2006-01-22  Bruno Haible  <bruno@clisp.org>
9217
9218         * lib/vasnprintf.c (VASNPRINTF): In the computation of the size of the
9219         temporary buffer for sprintf, take into account the precision also
9220         for 'd', 'i', 'u', 'o', 'x', 'X'.
9221
9222 2006-01-21  Sergey Poznyakoff  <gray@gnu.org.ua>
9223
9224         * modules/argp-tests: New module
9225         * tests/test-argp.c: New file
9226         * tests/test-argp-2.sh: New file
9227
9228 2006-01-21  Sergey Poznyakoff  <gray@gnu.org.ua>
9229
9230         * lib/argp-help.c (usage_long_opt): Do not print DOC options.
9231         (__argp_base_name): Removed
9232         * lib/argp-namefrob.h (__argp_basename): Removed definition. Was a
9233         typo.
9234         (__argp_base_name): Provide macro definition or extern declaration
9235         depending on the configuration
9236
9237 2006-01-20  Simon Josefsson  <jas@extundo.com>
9238
9239         * modules/inet_ntop (Depends-on): Depend on sys_socket.
9240
9241 2006-01-20  Simon Josefsson  <jas@extundo.com>
9242
9243         * lib/inet_ntop.h: Unconditionally include sys/socket.h.
9244
9245 2006-01-20  Paul Eggert  <eggert@cs.ucla.edu>
9246
9247         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Use -Wl,-z,ignore
9248         rather than -Xlinker -z -Xlinker ignore, as it's more portable.
9249         Suggested by Bruno Haible.
9250
9251 2006-01-20  Karl Berry  <karl@gnu.org>
9252
9253         * config/srclist.txt (argp-fmtstream.h, localcharset.c): comment out
9254         until changes propagate, I guess.
9255
9256 2006-01-19  Simon Josefsson  <jas@extundo.com>
9257
9258         * m4/socklen.m4: Look in ws2tcpip.h too, for mingw32.
9259
9260 2006-01-19  Simon Josefsson  <jas@extundo.com>
9261
9262         * lib/socket_.h: Map SHUT_RD, SHUT_WR, SHUT_RDWR correctly.
9263
9264 2006-01-19  Simon Josefsson  <jas@extundo.com>
9265
9266         * gnulib-tool: Set check_PROGRAMS.
9267
9268         * modules/arcfour-tests, modules/arctwo-tests, modules/crc-tests,
9269         modules/des-tests, modules/gc-arcfour-tests,
9270         modules/gc-arctwo-tests, modules/gc-des-tests,
9271         modules/gc-hmac-md5-tests, modules/gc-hmac-sha1-tests,
9272         modules/gc-md2-tests, modules/gc-md4-tests, modules/gc-md5-tests,
9273         modules/gc-pbkdf2-sha1-tests, modules/gc-rijndael-tests,
9274         modules/gc-sha1-tests, modules/gc-tests, modules/hmac-md5-tests,
9275         modules/hmac-sha1-tests, modules/md2-tests, modules/md4-tests,
9276         modules/md5-tests, modules/readline, modules/rijndael-tests: Use
9277         check_PROGRAMS instead of noinst_PROGRAMS to be able to remove
9278         test_*_SOURCES.
9279
9280 2006-01-18  Simon Josefsson  <jas@extundo.com>
9281
9282         * modules/socklen (Depends-on): Depend on sys_socket.
9283
9284 2006-01-18  Simon Josefsson  <jas@extundo.com>
9285
9286         * modules/arcfour-tests, modules/arctwo-tests, modules/crc-tests,
9287         modules/des-tests, modules/gc-arcfour-tests,
9288         modules/gc-arctwo-tests, modules/gc-des-tests,
9289         modules/gc-hmac-md5-tests, modules/gc-hmac-sha1-tests,
9290         modules/gc-md2-tests, modules/gc-md4-tests, modules/gc-md5-tests,
9291         modules/gc-pbkdf2-sha1-tests, modules/gc-rijndael-tests,
9292         modules/gc-sha1-tests, modules/gc-tests, modules/hmac-md5-tests,
9293         modules/hmac-sha1-tests, modules/md2-tests, modules/md4-tests,
9294         modules/md5-tests, modules/readline, modules/rijndael-tests: Add
9295         $(EXEEXT) to automake TESTS variable, for mingw32.
9296
9297 2006-01-17  Simon Josefsson  <jas@extundo.com>
9298
9299         * modules/socklen (Include): Need sys/socket.h.
9300
9301 2006-01-17  Bruno Haible  <bruno@clisp.org>
9302
9303         * modules/ssize_t (Include): Add <sys/types.h>.
9304
9305 2006-01-16  Paul Eggert  <eggert@cs.ucla.edu>
9306
9307         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Don't use ldd, as
9308         it's not portable and it doesn't work with cross-compiles.
9309         Problem reported by Bruno Haible.  Fix missing-$ typo in
9310         'test "gl_cv_ignore_unused_libraries" ...' that prevented
9311         -zignore from being used with Sun's C compiler.
9312
9313 2006-01-12  Simon Josefsson  <jas@extundo.com>
9314
9315         * lib/base64.c: Fix warning, reported by Bruno Haible
9316         <bruno@clisp.org> and patch by Paul Eggert <eggert@CS.UCLA.EDU>.
9317
9318 2006-01-12  Bruno Haible  <bruno@clisp.org>
9319
9320         * modules/ldd: New file.
9321         * build-aux/ldd.sh.in: New file.
9322         * MODULES.html.sh (Support for building libraries and executables): Add
9323         ldd.
9324
9325 2006-01-12  Bruno Haible  <bruno@clisp.org>
9326
9327         * m4/ldd.m4: New file.
9328
9329 2006-01-12  Bruno Haible  <bruno@clisp.org>
9330
9331         * gnulib-tool (func_import, func_create_testdir): Don't go into an
9332         endless loop while replacing $auxdir with build-aux.
9333
9334 2006-01-11  Simon Josefsson  <jas@extundo.com>
9335
9336         * lib/stdint_.h (SIZE_MAX): Add missing (.
9337
9338 2006-01-11  Paul Eggert  <eggert@cs.ucla.edu>
9339
9340         Sync from coreutils.
9341         * lib/md5.c: Fix commentary typos.
9342         (alignof, UNALIGNED_P): No need for a GCC-specific version.
9343         * lib/md5.h (__attribute__): Remove; unused.
9344         * lib/sha1.c: Fix commentary to match md5 better.
9345         * lib/sha1.h (struct sha1_ctx): Use a word buffer, not a byte buffer,
9346         so that we don't need to worry about alignment.  All uses changed.
9347         This merges the 2005-10-28 md5 change into sha1.
9348
9349 2006-01-11  Jim Meyering  <jim@meyering.net>
9350
9351         Sync from coreutils.
9352         * lib/md5.c (OP): Fix spacing.
9353
9354 2006-01-11  Bruno Haible  <bruno@clisp.org>
9355
9356         Ensure automatic ordering between gl_LOCK and gl_ARGP.
9357         * m4/lock.m4 (gl_LOCK_BODY): Renamed from gl_LOCK.
9358         (gl_LOCK): New macro, requiring gl_LOCK_BODY.
9359
9360 2006-01-11  Bruno Haible  <bruno@clisp.org>
9361
9362         Ensure automatic ordering between gl_LOCK and gl_ARGP.
9363         * gnulib-tool (func_import, func_create_testdir): Put gl_LOCK into
9364         the "early" section as well.
9365
9366 2006-01-11  Bruno Haible  <bruno@clisp.org>
9367
9368         Avoid "ar: no archive members specified" error on MacOS X.
9369         * gnulib-tool (func_modules_add_dummy): New function.
9370         (func_import, func_create_testdir): Invoke it.
9371
9372 2006-01-11  Bruno Haible  <bruno@clisp.org>
9373
9374         * gnulib-tool (func_import, func_create_testdir): Replace build-aux
9375         with $auxdir in AC_CONFIG_FILES statements.
9376
9377 2006-01-11  Bruno Haible  <bruno@clisp.org>
9378
9379         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
9380         Initialize also noinst_HEADERS to empty.
9381
9382 2006-01-11  Bruno Haible  <bruno@clisp.org>
9383
9384         * gnulib-tool (AUTOMAKEPATH, AUTOCONF, ACLOCAL, AUTOMAKE): New
9385         variables.
9386         (func_create_megatestdir): Call aclocal, autoconf, automake here, not
9387         autoreconf.
9388
9389 2006-01-11  Bruno Haible  <bruno@clisp.org>
9390
9391         * gnulib-tool (AUTOCONF, ACLOCAL, AUTOMAKE, AUTORECONF): Make
9392         overridable by the user.
9393         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
9394
9395 2006-01-10  Simon Josefsson  <jas@extundo.com>
9396
9397         * modules/sys_socket: New file.
9398
9399 2006-01-10  Simon Josefsson  <jas@extundo.com>
9400
9401         * m4/sys_socket_h.m4: New file.
9402
9403 2006-01-10  Simon Josefsson  <jas@extundo.com>
9404
9405         * lib/socket_.h: New file.
9406
9407 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
9408
9409         * modules/readutmp (Maintainer): Add myself.
9410
9411 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
9412
9413         * m4/memcoll.m4 (gl_MEMCOLL): Don't require AC_FUNC_MEMCMP, undoing
9414         the 2002-12-31 change.  Problem and fix reported by Bruno Haible.
9415         People who are still concerned with buggy memcmp implementations
9416         can invoke gl_FUNC_MEMCMP themselves.
9417
9418 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
9419
9420         * lib/regex_internal.h (BITSET_WORD_BITS):
9421         Work around a bug in 64-bit PGC (before version 6.1-2), where the
9422         preprocessor mishandles large unsigned values as if they were signed.
9423         Problem reported by Claudio Fontana in
9424         <http://lists.gnu.org/archive/html/bug-gnulib/2005-12/msg00061.html>.
9425
9426 2006-01-10  Jim Meyering  <jim@meyering.net>
9427
9428         Avoid the double-free (first in fts_read, second in fts_close) that
9429         would occur when an `active' directory is made inaccessible (e.g.,
9430         via chmod a-x) during a traversal.
9431         * lib/fts.c (fts_read): After a failed fchdir, update sp->fts_cur
9432         before returning.  Reproduce this failure by
9433         mkdir -p a/b; cd a; chmod a-x . b
9434         Reported by Stavros Passas.
9435
9436         Sync from coreutils.
9437         * lib/sha1.c: Tweak grammar in a comment.
9438
9439 2006-01-10  Jim Meyering  <jim@meyering.net>
9440
9441         * m4/fpending.m4: Also include <stdio.h>, for Dragonfly.
9442         Patch by Joerg Sonnenberger.
9443
9444 2006-01-10  Bruno Haible  <bruno@clisp.org>
9445
9446         * modules/readutmp: Depend on module free.
9447         * modules/strtok_r: Depend on module restrict.
9448
9449 2006-01-10  Bruno Haible  <bruno@clisp.org>
9450
9451         * modules/gettext (configure.ac): Add an invocation of
9452         AM_GNU_GETTEXT_VERSION. Needed since autoreconf is used by gnulib-tool.
9453
9454 2006-01-10  Bruno Haible  <bruno@clisp.org>
9455
9456         * m4/localcharset.m4 (gl_LOCALCHARSET): Also test for getc_unlocked.
9457         Reported by Werner Lemberg <wl@gnu.org>.
9458
9459 2006-01-10  Bruno Haible  <bruno@clisp.org>
9460
9461         * lib/localcharset.c: Update from GNU gettext.
9462
9463 2006-01-10  Bruno Haible  <bruno@clisp.org>
9464
9465         * lib/argp.h (__const): Remove macro. Use const instead.
9466         * lib/argp-fmtstream.h (__const): Likewise.
9467         * lib/glob_.h (__const): Remove macro.
9468         * lib/glob-libc.h: Use const instead of __const.
9469
9470 2006-01-10  Bruno Haible  <bruno@clisp.org>
9471
9472         * gnulib-tool (func_emit_tests_Makefile_am): Emit an empty SUBDIR
9473         variable.
9474         Needed to avoid an automake error regarding the 'gettext' module.
9475
9476 2006-01-09  Simon Josefsson  <jas@extundo.com>
9477
9478         * modules/inet_ntop (Depends-on): Add restrict.
9479
9480 2006-01-09  Simon Josefsson  <jas@extundo.com>
9481
9482         * modules/gc-rijndael-tests (License): Put under LGPL.
9483
9484         * modules/gc-des-tests (License): Likewise.
9485
9486         * modules/gc-arcfour-tests (License): Likewise.
9487
9488         * modules/gc-arctwo-tests (License): Likewise.
9489
9490         * modules/gc-pbkdf2-sha1-tests (License): Likewise.
9491
9492         * modules/gc-hmac-sha1-tests (Files): Likewise.
9493
9494         * modules/gc-hmac-md5-tests (License): Likewise.
9495
9496         * modules/gc-sha1-tests (License): Likewise.
9497
9498         * modules/gc-md5-tests (License): Likewise.
9499
9500         * modules/gc-md4-tests (License): Likewise.
9501
9502         * modules/gc-md2-tests (License): Likewise.
9503
9504         * modules/gc-tests (License): Likewise.
9505
9506         * modules/des-tests (License): Likewise.
9507
9508         * modules/md4-tests (License): Likewise.
9509
9510         * modules/md2-tests (License): Likewise.
9511
9512 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
9513
9514         Sync from coreutils:
9515
9516         * MODULES.html.sh (build_lib): New section, with new lib-ignore module.
9517         * modules/lib-ignore: New file.
9518         * modules/mkdir-p (Files): Add chdir-safer.c, chdir-safer.h, lchmod.h,
9519         chdir-safer.m4, lchmod.m4.
9520         * modules/openat: Add mkdirat.c, openat-priv.h.
9521
9522 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
9523
9524         Sync from coreutils.
9525         * m4/lib-ignore.m4: New file.
9526         * m4/lchmod.m4: New file.
9527
9528 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
9529
9530         Sync from coreutils.
9531         * lib/chdir-long.c (cdb_free): Don't bother trying to open directory
9532         for write access: POSIX says that must fail.
9533         * lib/fts.c (diropen): Likewise.
9534         * lib/save-cwd.c (save_cwd): Likewise.
9535         * lib/chdir-long.c (cdb_free): Open with O_NOCTTY | O_NONBLOCK as
9536         well, for minor improvements on hosts that lack O_DIRECTORY.
9537         * lib/chown.c (rpl_chown) [CHOWN_MODIFIES_SYMLINK]:
9538         Don't try O_WRONLY unless O_RDONLY failed wth EACCES.
9539         Fall back on chown if open failed with EACCES.
9540
9541         * lib/gettime.c (gettime) [!defined OK_TO_USE_1S_CLOCK]:
9542         Report an error at compile-time if only a 1-second nominal clock
9543         resolution is found.
9544
9545         * lib/lchmod.h: New file.
9546         * lib/mkdir-p.c: Include lchmod.h, lchown.h.
9547         (make_dir_parents): Use lchown rather than chown, and
9548         lchmod rather than chmod.
9549
9550         * lib/mountlist.c (ME_DUMMY): "none" and "proc" file systems are
9551         dummies too.  Problem with "none" reported by Bob Proulx.  Problem with
9552         "proc" reported by n0dalus.
9553
9554         * lib/mountlist.c: Include <limits.h>.
9555         (dev_from_mount_options)
9556         [defined MOUNTED_GETMNTENT1 || defined MOUNTED_GETMNTENT2]:
9557         New function.  It no longer assumes "dev=" has the System V meaning
9558         on Linux (since it doesn't).  It also parses "dev=" more carefully.
9559         (read_file_system_list)
9560         [defined MOUNTED_GETMNTENT1 || defined MOUNTED_GETMNTENT2]: Use it.
9561         MOUNTED_GETMNTENT2 is new here; the code didn't used to look for
9562         dev= in that case.
9563
9564         * lib/posixtm.h (PDS_PRE_2000): New macro.
9565         * lib/posixtm.c (year): Arg is now syntax_bits rather than
9566         allow_century.  All usages changed.  Reject dates outside the range
9567         1969-1999 if PDS_PRE_2000 is used.
9568
9569 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
9570
9571         Sync from coreutils.
9572         * doc/getdate.texi (General date syntax): Invalid dates are rejected.
9573         (Time of day items): Mention the possibility of leap seconds.
9574         Problem reported by Dr. David Alan Gilbert.
9575
9576 2006-01-09  Jim Meyering  <jim@meyering.net>
9577
9578         Sync from coreutils.
9579
9580         * lib/version-etc.c (COPYRIGHT_YEAR): Update to 2006.
9581
9582         * lib/chdir-safer.h, lib/chdir-safer.c: New files.
9583
9584         * lib/modechange.c (mode_compile): Reject an invalid mode string
9585         that starts with an octal digit.  From Andreas Gruenbacher.
9586
9587         * lib/openat.c: Include "fcntl--.h" and "unistd--.h", to map open
9588         and dup to open_safer and dup_safer, respectively.
9589         (openat_permissive): Fix typo in comment.
9590
9591         * lib/openat.c: Don't include <stdlib.h>, <unistd.h>, <fcntl.h>,
9592         "gettext.h"; either no longer needed or are guaranteed by openat.h.
9593         (_): Remove; no longer needed.
9594         (openat): Renamed from rpl_openat; no need for rpl_openat
9595         since openat.h renames openat for us.
9596         Replace most of the body with a call to openat_permissive,
9597         to avoid duplicate code.
9598         Port to (probably hypothetical) environments were mode_t is
9599         wider than int.
9600         (openat_permissive): Require mode arg, so that we can check
9601         types better.  Put it just after flags.  Change cwd failure
9602         indicator from pointer-to-bool to pointer-to-errno-value.
9603         All callers changed.
9604         Invoke openat_save_fail and/or openat_restore_fail if
9605         cwd_errno is null, so that openat can call us.
9606         (openat_permissive, fdopendir, fstatat, unlinkat):
9607         Simplify errno handling to avoid some duplicate code,
9608         as it's OK to set errno on success.
9609         * lib/openat.h: Revamp code so that function macros depend on
9610         __OPENAT_PREFIX only, not also on AT_FDCWD.
9611         (openat_ro): Remove.  Caller changed to use openat_permissive.
9612         (openat_permissive): Now a macro, if not a function.
9613         (openat_restore_fail, openat_save_fail): Now always functions,
9614         since mkdirat needs them even if __OPENAT_PREFIX is defined.
9615
9616         * lib/openat-priv.h: New file, defining macros used by mkdirat.c
9617         and openat.c.
9618         * lib/mkdirat.c: Include openat-priv.h.
9619         Remove definitions of macros defined therein.
9620         * lib/openat.c: Likewise.
9621
9622         * lib/mkdirat.c (mkdirat): New file and function.
9623         * lib/openat.h (mkdirat): Declare.
9624
9625         * lib/openat.c (fdopendir): Don't change errno when returning non-NULL.
9626
9627         * lib/openat.h (openat_permissive): Declare.
9628         (openat_ro): Define.
9629
9630         * lib/openat.c (EXPECTED_ERRNO): New macro.
9631         (openat_permissive): New function -- used in remove.c rewrite.
9632         (all functions): Set errno just before returning, only if there
9633         was an actual failure.
9634         Use EXPECTED_ERRNO rather than comparing against only ENOTDIR.
9635
9636         Emulate openat-family functions using Linux's procfs, if possible.
9637         Idea and some code based on Ulrich Drepper's glibc changes.
9638
9639         * lib/openat.c: (BUILD_PROC_NAME): New macro.
9640         Include <stdio.h>, <string.h>, "alloca.h" and "intprops.h".
9641         (rpl_openat): Emulate by trying to open /proc/self/fd/%d/%s,
9642         before falling back on save_cwd and restore_cwd.
9643         (fdopendir, fstatat, unlinkat): Likewise.
9644
9645         * lib/openat.c (fstatat, unlinkat): Perform the syscall directly,
9646         skipping the save_cwd...restore_cwd overhead, if FILE is absolute.
9647
9648         * lib/openat.c (rpl_openat): Use the promoted type (int), not mode_t,
9649         as second argument to va_arg.  Otherwise, some versions of gcc
9650         warn that `if this code is reached, the program will abort'.
9651
9652 2006-01-09  Jim Meyering  <jim@meyering.net>
9653
9654         Sync from coreutils.
9655         * m4/openat.m4 (gl_FUNC_OPENAT): Require and compile mkdirat.c.
9656         Require openat-priv.h.
9657
9658 2006-01-09  Bruno Haible  <bruno@clisp.org>
9659
9660         * modules/strnlen (Include): Use strnlen.h.
9661
9662 2006-01-09  Bruno Haible  <bruno@clisp.org>
9663
9664         * m4/stdint.m4 (gl_STDINT_H): Also test for <sys/bitypes.h>.
9665
9666 2006-01-09  Bruno Haible  <bruno@clisp.org>
9667
9668         * lib/sysexit_.h (EX_OK): New macro.
9669         Suggested by Martin Lambers <marlam@marlam.de>.
9670
9671 2006-01-09  Bruno Haible  <bruno@clisp.org>
9672
9673         * lib/stdint_.h: On Linux libc4 and libc5, include <sys/bitypes.h> and
9674         don't define _STDINT_H_NEED_SIGNED_INT_TYPES.
9675
9676 2006-01-09  Bruno Haible  <bruno@clisp.org>
9677
9678         * lib/stdint_.h (SIZE_MAX): Write the value without involving negative
9679         numbers.
9680
9681 2006-01-09  Bruno Haible  <bruno@clisp.org>
9682
9683         * lib/javacomp.sh.in: Move to ../build-aux/javacomp.sh.in.
9684         * lib/javaexec.sh.in: Move to ../build-aux/javaexec.sh.in.
9685         * lib/csharpcomp.sh.in: Move to ../build-aux/csharpcomp.sh.in.
9686         * lib/csharpexec.sh.in: Move to ../build-aux/csharpexec.sh.in.
9687
9688 2006-01-09  Bruno Haible  <bruno@clisp.org>
9689
9690         * build-aux/javacomp.sh.in: New file, moved from lib/.
9691         * modules/javacomp-script (Files): Update.
9692         (configure.ac): Add AC_CONFIG_FILES invocation.
9693         (EXTRA_DIST): Remove variable.
9694
9695         * build-aux/javaexec.sh.in: New file, moved from lib/.
9696         * modules/javaexec (Files): Update.
9697         (configure.ac): Add AC_CONFIG_FILES invocation.
9698         (EXTRA_DIST): Remove javaexec.sh.in.
9699
9700         * build-aux/csharpcomp.sh.in: New file, moved from lib/.
9701         * modules/csharpcomp-script (Files): Update.
9702         (configure.ac): Add AC_CONFIG_FILES invocation.
9703         (EXTRA_DIST): Remove variable.
9704
9705         * build-aux/csharpexec.sh.in: New file, moved from lib/.
9706         * modules/csharpexec (Files): Update.
9707         (configure.ac): Add AC_CONFIG_FILES invocation.
9708         (EXTRA_DIST): Remove csharpexec.sh.in.
9709
9710 2006-01-09  Andreas Gruenbacher  <agruen@suse.de>
9711
9712         Sync from coreutils.
9713
9714         Add POSIX ACL support
9715         * lib/acl.h (copy_acl, set_acl): Add declarations.
9716         * lib/acl.c (acl_entries): Add fallback implementation for POSIX ACL
9717         systems other than Linux.
9718         (chmod_or_fchmod): New function: use fchmod when possible,
9719         and chmod otherwise.
9720         (file_has_acl): Add a POSIX ACL implementation, with a
9721         Linux-specific subcase.
9722         (copy_acl): Add: copy an acl and S_ISUID, S_ISGID, and
9723         S_ISVTX from one file to another.  Fall back to fchmod/chmod when
9724         acls are unsupported.
9725         (set_acl): Add: set a file's acl and S_ISUID, S_ISGID, and
9726         S_ISVTX to a defined value.  Fall back to fchmod/chmod when acls
9727         are unsupported.
9728
9729 2006-01-09  Andreas Gruenbacher  <agruen@suse.de>
9730
9731         Sync from coreutils.
9732         * m4/acl.m4 (AC_FUNC_ACL): Add POSIX ACL and Linux-specific acl tests.
9733
9734 2006-01-07  Bruno Haible  <bruno@clisp.org>
9735
9736         * gnulib-tool (func_import): Add an AC_PROG_RANLIB dependency to
9737         gl_EARLY.
9738
9739 2006-01-04  Paul Eggert  <eggert@cs.ucla.edu>
9740
9741         * lib/strftime.c (tzname): Don't declare if it is already #defined.
9742         Problem reported for Mingw by Mark Junker.
9743
9744 2006-01-04  Paul Eggert  <eggert@cs.ucla.edu>
9745
9746         * README: Gnulib normally doesn't generate a tarball.
9747
9748 2006-01-03  Paul Eggert  <eggert@cs.ucla.edu>
9749
9750         * lib/xtime.h (xtime_make, xtime_nonnegative_nsec, xtime_nsec): Use
9751         long int, not int, for nanosecond counts, so that people who are
9752         used to POSIX struct timespec won't be surprised.  Reported by Jim
9753         Meyering.
9754
9755 2005-12-28  Bruno Haible  <bruno@clisp.org>
9756
9757         * build-aux/config.rpath: Update from GNU gettext.
9758
9759 2005-12-16  Jim Meyering  <jim@meyering.net>
9760
9761         * modules/fprintftime: New module.
9762         * MODULES.html.sh (Date and time <time.h>): Add fprintftime.
9763
9764 2005-12-16  Jim Meyering  <jim@meyering.net>
9765
9766         * m4/fprintftime.m4: New file.
9767
9768 2005-12-16  Jim Meyering  <jim@meyering.net>
9769
9770         * lib/fprintftime.c, lib/fprintftime.h: New files.
9771
9772 2005-12-15  Simon Josefsson  <jas@extundo.com>
9773
9774         * modules/socklen (configure.ac): Fix M4 macro name, to align with
9775         new m4/socklen.m4.
9776
9777 2005-12-10  Sergey Poznyakoff  <gray@gnu.org.ua>
9778
9779         * m4/argp.m4: Define HAVE_DECL_PROGRAM_INVOCATION_NAME and
9780         HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME
9781
9782 2005-12-10  Sergey Poznyakoff  <gray@gnu.org.ua>
9783
9784         * lib/argp-fmtstream.c (__argp_fmtstream_update): Fix coredump
9785         * lib/argp-help.c (fill_in_uparams): Check if the constructed
9786         struct uparams is valid. Fall back to the default values if it is
9787         not.
9788
9789 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
9790
9791         * modules/argp (Files): Add argp-pin.c
9792         (Depends-on): dirname
9793         (lib_SOURCES): Add argp-pin.c
9794
9795 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
9796
9797         * m4/argp.m4:  Check if program_invocation_name and
9798         program_invocation_short_name are declared and define appropriate
9799         macros if they are not.
9800
9801 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
9802
9803         * lib/argp-help.c (__argp_base_name): New function
9804         (__argp_short_program_name): Rewrite using __argp_base_name
9805         * lib/argp-namefrob.h: Define program_invocation_name and
9806         program_invocation_short_name if requested
9807         (__argp_base_name): Add prototype
9808         * lib/argp-parse.c (argp_def): Use gettext wrappers
9809         (argp_default_parser): Use __argp_base_name
9810         * lib/argp-pin.c: New file. Defines program_invocation_name and
9811         program_invocation_short_name on systems that lack them.
9812
9813 2005-12-07  Paul Eggert  <eggert@cs.ucla.edu>
9814
9815         * m4/stat-time.m4 (gl_STAT_TIME): Add check for
9816         TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC, to fix IRIX 5.3
9817         porting problem reported by Georg Schwarz in
9818         <http://lists.gnu.org/archive/html/bug-coreutils/2005-12/msg00083.html>.
9819
9820 2005-12-07  Paul Eggert  <eggert@cs.ucla.edu>
9821
9822         * lib/stat-time.h (STATE_TIMESPEC, STAT_TIMESPEC_NS): Add check for
9823         TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC, to fix IRIX 5.3
9824         porting problem reported by Georg Schwarz in
9825         <http://lists.gnu.org/archive/html/bug-coreutils/2005-12/msg00083.html>.
9826
9827 2005-12-05  Bruno Haible  <bruno@clisp.org>
9828
9829         * lib/csharpcomp.sh.in (options_csc): For -l option, add a .dll suffix.
9830         * lib/csharpcomp.c (compile_csharp_using_sscli): Likewise.
9831         Reported by Mark Junker <mjscod@gmx.de>.
9832
9833 2005-12-02  Paul Eggert  <eggert@cs.ucla.edu>
9834
9835         * m4/socklen.m4 (gl_TYPE_SOCKLEN_T): Renamed from gl_SOCKLEN_T.
9836         Use implementation from Albert Chin, with some
9837         comments/corrections by Stepan Kasal and myself.
9838
9839 2005-12-02  Bruno Haible  <bruno@clisp.org>
9840
9841         * gnulib-tool (func_import): Accept GPLed build tool modules when
9842         --lgpl is given.
9843         * modules/csharpcomp-script: New file.
9844         * modules/csharpcomp: Depend on it.
9845         * modules/javacomp-script: New file.
9846         * modules/javacomp: Depend on it.
9847         Suggested by Simon Josefsson.
9848
9849 2005-12-01  Paul Eggert  <eggert@cs.ucla.edu>
9850
9851         * m4/regex.m4 (gl_REGEX): Check whether off_t can be used in a switch
9852         statement, to work around an HP-UX 10.20 compiler bug reported by
9853         Peter O'Gorman.
9854
9855 2005-11-29  Paul Eggert  <eggert@cs.ucla.edu>
9856
9857         * modules/savedir (Depends-on): Add openat.
9858
9859 2005-11-29  Paul Eggert  <eggert@cs.ucla.edu>
9860
9861         * lib/stdint_.h (intmax_t) [defined intmax_t]: Do not declare.
9862         (uintmax_t) [defined uintmax_t]: Do not declare.
9863         (SIZE_MAX) [defined SIZE_MAX]: Do not define.
9864         This works around a problem if intmax_t.m4 and/or uintmax_t.m4
9865         and/or size_max.m4 are also used.  Problem reported by Mark D. Baushke.
9866         (SIZE_MAX): Define to ((size_t) -1), not (~(size_t)0), for the
9867         sake of portability to weird hosts that C allows (though we don't
9868         know of any practical examples).
9869
9870         * lib/savedir.h (fdsavedir): New decl.
9871         * lib/savedir.c (fdsavedir, savedirstream): New functions; the latter
9872         contains most of the former guts of savedir.
9873         (savedir): Use savedirstream.
9874         Include "openat.h".
9875
9876 2005-11-25  Paul Eggert  <eggert@cs.ucla.edu>
9877
9878         * modules/obstack (Files): Add m4/ulonglong.m4.
9879         Problem reported by Davide Angelocola.
9880
9881 2005-11-15  Paul Eggert  <eggert@cs.ucla.edu>
9882
9883         * lib/xstrtod.c: Don't bother with #pragma STDC FENV_ACCESS ON, as
9884         coreutils no longer futzes with rounding modes.
9885
9886 2005-11-14  Jim Meyering  <jim@meyering.net>
9887
9888         * lib/mkstemp-safer.c: Include <config.h>, required for possible
9889         replacement of mkstemp.
9890
9891 2005-11-10  Simon Josefsson  <jas@extundo.com>
9892
9893         * lib/readline.c: Remove EOL.
9894
9895 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
9896
9897         * modules/gethrxtime (Depends-on): Add gettime.
9898
9899 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
9900
9901         * m4/gethrxtime.m4 (gl_PREREQ_GETHRXTIME): Don't require AC_HEADER_TIME
9902         or gettimeofday; no longer needed.
9903
9904 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
9905
9906         * lib/gethrxtime.c: Include "timespec.h" rather than the sys/time /
9907         time business.
9908         (gethrxtime) [! (HAVE_NANOUPTIME
9909         || (defined CLOCK_MONOTONIC && HAVE_CLOCK_GETTIME)
9910         || HAVE_MICROUPTIME)]: Fall back on gettime rather than rolling
9911         our own approximation.
9912
9913 2005-11-08  Eric Blake  <ebb9@byu.net>
9914
9915         * lib/inet_ntop.h: Use #if !, not #ifndef, for AC_CHECK_DECLS.
9916
9917 2005-11-08  Eric Blake  <ebb9@byu.net>
9918
9919         * lib/getaddrinfo.h: Use #if !, not #ifndef, for AC_CHECK_DECLS.
9920
9921 2005-11-04  Bruno Haible  <bruno@clisp.org>
9922
9923         * gnulib-tool: Implement --update mode.
9924
9925 2005-10-30  Paul Eggert  <eggert@cs.ucla.edu>
9926
9927         Fix porting problem reported by Theodoros V. Kalamatianos.
9928         * lib/utimens.c (futimens) [HAVE_WORKING_UTIMES && HAVE_FUTIMES]:
9929         Don't assume that futimes failing means we must fail.
9930
9931 2005-10-30  Paul Eggert  <eggert@cs.ucla.edu>
9932
9933         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Revamp wording and local
9934         variables to suggest the intended function of the PATH_MAX check.
9935
9936 2005-10-30  Kean Johnston  <jkj@sco.com>
9937
9938         Trivial changes to support SCO systems.
9939         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Check for MAXPATHLEN as well
9940         as PATH_MAX.
9941         * m4/fpending.m4 (gl_FUNC_FPENDING): Correct check for SCO systems,
9942         where __ptr is null when no I/O is pending.
9943
9944 2005-10-29  Paul Eggert  <eggert@cs.ucla.edu>
9945
9946         * lib/getcwd.c (__getcwd): Don't assume that system calls after readdir
9947         leave errno alone.  Problem reported by Dmitry V. Levin.
9948
9949 2005-10-28  Simon Josefsson  <jas@extundo.com>
9950
9951         * tests/test-gc-md4.c, tests/test-gc-md5.c, tests/test-gc-sha1.c:
9952         Test more.
9953
9954         * tests/test-gc-md2.c, tests/test-md2.c: New files.
9955
9956         * modules/md2, modules/md2-tests: New files.
9957
9958 2005-10-28  Simon Josefsson  <jas@extundo.com>
9959
9960         * m4/inet_ntop.m4: More tests.
9961
9962         * m4/gc-md2.m4, md2.m4: New file.
9963
9964 2005-10-28  Simon Josefsson  <jas@extundo.com>
9965
9966         * lib/inet_ntop.h, inet_ntop.c: Make it work under mingw32: Add
9967         "restrict" keywords, as per POSIX.  Protect the function
9968         declaration around HAVE_DECL_INET_NTOP rather than HAVE_INET_NTOP.
9969         Don't use K&R prototypes.  Check the sprintf return values.
9970         Re-define EAFNOSUPPORT if not present.  Indent.
9971
9972         * lib/md5.h, md5.c: Simplify buffer handling visavi alignment,
9973         suggested by Bruno Haible <bruno@clisp.org>.
9974
9975         * lib/gc-gnulib.c, gc-libgcrypt.c: Check calloc return value.
9976
9977         * lib/gc.h: Add MD2 and RMD160 length defines.  Add prototypes.
9978
9979         * lib/gc-libgcrypt.c: Add MD2 (which is not available through
9980         libgcrypt).
9981
9982         * lib/gc-gnulib.c: Add MD2.  Implement gc_hash_* API.
9983
9984         * lib/md2.h, lib/md2.c: New files.
9985
9986 2005-10-28  Paul Eggert  <eggert@cs.ucla.edu>
9987
9988         * lib/savedir.c (savedir): Don't assume that xrealloc etc. leave
9989         errno alone.  Problem reported by Frederic Jolliton.
9990
9991 2005-10-27  Paul Eggert  <eggert@cs.ucla.edu>
9992
9993         * modules/verify (License): Change from GPL to LGPL.  This is a
9994         tiny module and there are apparently near-equivalents that are
9995         under the BSD license.
9996
9997 2005-10-24  Simon Josefsson  <jas@extundo.com>
9998
9999         * modules/sha1: Relicense to LGPL.
10000
10001 2005-10-24  Simon Josefsson  <jas@extundo.com>
10002
10003         * lib/md4.h: Shrink buffer size, now that we changed the type.
10004
10005 2005-10-23  Simon Josefsson  <jas@extundo.com>
10006
10007         * gnulib-tool (func_import): Fix --tests-base.
10008
10009 2005-10-22  Simon Josefsson  <jas@extundo.com>
10010
10011         * modules/arcfour (Depends-on): Need stdint.
10012
10013 2005-10-22  Simon Josefsson  <jas@extundo.com>
10014
10015         * m4/gc.m4: Don't be fooled by --disable-*random-device parameters,
10016         suggested by Bruno Haible <bruno@clisp.org>.  Fix error messages.
10017
10018 2005-10-22  Simon Josefsson  <jas@extundo.com>
10019
10020         * lib/md4.h, md4.c: Simplify buffer handling visavi alignment,
10021         suggested by Bruno Haible <bruno@clisp.org>.
10022
10023 2005-10-22  Simon Josefsson  <jas@extundo.com>
10024
10025         * lib/crc.h: Include stddef.h, for size_t.
10026
10027 2005-10-22  Simon Josefsson  <jas@extundo.com>
10028
10029         * lib/arcfour.h, arcfour.c: Use fixed size indices in the
10030         arcfour_context struct (simplify test vector testing in GNU
10031         Shishi).
10032
10033 2005-10-21  Simon Josefsson  <jas@extundo.com>
10034
10035         * modules/des, modules/des-tests: New files.
10036
10037         * modules/gc-des, modules/gc-des-tests: New files.
10038
10039         * tests/test-des.c, tests/test-gc-des.c: New file.
10040
10041 2005-10-21  Simon Josefsson  <jas@extundo.com>
10042
10043         * modules/arctwo, modules/arctwo-tests: New files.
10044
10045         * tests/test-arctwo.c: New file.
10046
10047         * modules/gc-arctwo, modules/gc-arctwo-tests: New files.
10048
10049         * tests/test-gc-arctwo.c: New file.
10050
10051 2005-10-21  Simon Josefsson  <jas@extundo.com>
10052
10053         * m4/gc.m4: Don't use libgcrypt if gcrypt.h isn't found, suggested by
10054         Bruno Haible <bruno@clisp.org>.
10055
10056         * m4/gc-des.m4: New file.
10057
10058 2005-10-21  Simon Josefsson  <jas@extundo.com>
10059
10060         * m4/arctwo.m4: New file.
10061
10062         * m4/gc-arctwo.m4: New file.
10063
10064 2005-10-21  Simon Josefsson  <jas@extundo.com>
10065
10066         * lib/rijndael-api-fst.c: Fix bugs in CBC mode for more than one
10067         block.
10068
10069 2005-10-21  Simon Josefsson  <jas@extundo.com>
10070
10071         * lib/hmac-md5.c (hmac_md5): Add comments, suggested by Bruno Haible
10072         <bruno@clisp.org>.
10073
10074         * lib/hmac-sha1.c (hmac_sha1): Likewise.
10075
10076         * lib/crc.c (crc32_update): Actually use crc parameter, suggested by
10077         Bruno Haible <bruno@clisp.org>.
10078
10079         * lib/crc.h: Include stdint.h directly, suggested by Bruno Haible
10080         <bruno@clisp.org>.
10081
10082 2005-10-21  Simon Josefsson  <jas@extundo.com>
10083
10084         * lib/gc-libgcrypt.c (gc_cipher_open): Handle ECB.
10085
10086 2005-10-21  Simon Josefsson  <jas@extundo.com>
10087
10088         * lib/gc-gnulib.c: Support ARCTWO in CBC mode.
10089
10090 2005-10-21  Simon Josefsson  <jas@extundo.com>
10091
10092         * lib/des.h, lib/des.c: New files.
10093
10094         * lib/gc-gnulib.c: Support DES.c
10095
10096 2005-10-21  Simon Josefsson  <jas@extundo.com>
10097
10098         * lib/arctwo.h, lib/arctwo.c: New files.
10099
10100         * lib/gc-gnulib.c: Support ARCTWO.
10101
10102 2005-10-21  Simon Josefsson  <jas@extundo.com>
10103
10104         * lib/arctwo.h (arctwo_setkey): Protect variable in CPP macro,
10105         suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
10106
10107 2005-10-21  Simon Josefsson  <jas@extundo.com>
10108
10109         * gnulib-tool (func_import, func_create_testdir): Define automake
10110         conditional GL_COND_LIBTOOL if libtool is used (to be used by modules
10111         Makefile.am snippet),
10112         suggested by Bruno Haible <bruno@clisp.org>.
10113
10114         * modules/gc (Makefile.am): Use it.
10115
10116 2005-10-21  Bruno Haible  <bruno@clisp.org>
10117
10118         * gnulib-tool (func_import, func_create_testdir): Add quoting to last
10119         patch.
10120
10121 2005-10-19  Simon Josefsson  <jas@extundo.com>
10122
10123         * tests/test-gc-rijndael.c: New file.
10124
10125         * modules/gc-rijndael, modules/gc-rijndael-test: New files.
10126
10127 2005-10-19  Simon Josefsson  <jas@extundo.com>
10128
10129         * tests/test-gc-md4.c, tests/test-gc-md5.c: Test gc_hash_buffer
10130         interface too.
10131
10132 2005-10-19  Simon Josefsson  <jas@extundo.com>
10133
10134         * tests/test-gc-arcfour.c: New file.
10135
10136         * modules/gc-arcfour, modules/gc-arcfour-tests: New files.
10137
10138 2005-10-19  Simon Josefsson  <jas@extundo.com>
10139
10140         * modules/gc-md4, modules/gc-md4-tests: New file.
10141
10142         * tests/test-gc-md4.c: New file.
10143
10144 2005-10-19  Simon Josefsson  <jas@extundo.com>
10145
10146         * m4/gc-md4.m4: New file.
10147
10148 2005-10-19  Simon Josefsson  <jas@extundo.com>
10149
10150         * m4/gc-hmac-md5.m4, gc-hmac-sha1.m4, gc-md4.m4,
10151         gc-md5.m4, gc-sha1.m4: Fix typo, suggested by Stepan Kasal
10152         <kasal@ucw.cz>.
10153
10154 2005-10-19  Simon Josefsson  <jas@extundo.com>
10155
10156         * m4/gc-arcfour.m4: New file.
10157
10158         * m4/gc-rijndael.m4: New file.
10159
10160 2005-10-19  Simon Josefsson  <jas@extundo.com>
10161
10162         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Support MD4.
10163
10164 2005-10-19  Simon Josefsson  <jas@extundo.com>
10165
10166         * lib/gc-gnulib.c: Support ARCFOUR.
10167
10168 2005-10-19  Simon Josefsson  <jas@extundo.com>
10169
10170         * lib/gc-gnulib.c: Implement gc_cipher_* API, currently only with AES
10171         support.
10172
10173         * lib/gc.h: Add ECB enum type.
10174
10175         * lib/hmac-md5.c, hmac-sha1.c: Include memxor.h.
10176
10177 2005-10-18  Simon Josefsson  <jas@extundo.com>
10178
10179         * tests/test-md5.c: New file.
10180
10181         * modules/md5-tests: New file.
10182
10183 2005-10-18  Simon Josefsson  <jas@extundo.com>
10184
10185         * tests/test-md4.c: New file.
10186
10187         * modules/md4, modules/md4-tests: New files.
10188
10189 2005-10-18  Simon Josefsson  <jas@extundo.com>
10190
10191         * m4/md4.m4: New file.
10192
10193 2005-10-18  Simon Josefsson  <jas@extundo.com>
10194
10195         * lib/md4.h, lib/md4.c: New files, based on md5.?.
10196
10197 2005-10-17  Stepan Kasal  <kasal@ucw.cz>
10198
10199         * gnulib-tool (func_create_testdir): Omit the second check whether
10200         BUILT_SOURCES in nonempty.
10201
10202 2005-10-17  Simon Josefsson  <jas@extundo.com>
10203
10204         * tests/test-rijndael.c: New file.
10205
10206 2005-10-17  Simon Josefsson  <jas@extundo.com>
10207
10208         * modules/sha1: Depend on stdint instead of md5.
10209
10210         * modules/md5: Depend on stdint, remove uint32_t.
10211
10212 2005-10-17  Simon Josefsson  <jas@extundo.com>
10213
10214         * modules/gc-sha1-tests: New file.
10215
10216         * tests/test-gc-sha1.c: New file.
10217
10218 2005-10-17  Simon Josefsson  <jas@extundo.com>
10219
10220         * m4/md5.m4: Remove call to uint32_t.m4.
10221
10222 2005-10-17  Simon Josefsson  <jas@extundo.com>
10223
10224         * lib/sha1.c: Use uint32_t instead of md5_uint32.t
10225
10226         * lib/sha1.h: Use stdint.h and uint32_t instead of md5_uint32 from
10227         md5.h.
10228
10229         * lib/md5.c: Use uin32_t.  Fix non-gcc UNALIGNED_P macro.
10230
10231         * lib/md5.h: Use stdint.h and uint32_t.  Doc fix.
10232
10233 2005-10-17  Simon Josefsson  <jas@extundo.com>
10234
10235         * lib/gc.h, gc-libgcrypt.c: Add more hash types/functions.
10236
10237 2005-10-17  Simon Josefsson  <jas@extundo.com>
10238
10239         * lib/gc.h, gc-libgcrypt.c: Add ciphers.
10240
10241 2005-10-17  Simon Josefsson  <jas@extundo.com>
10242
10243         * lib/gc-libgcrypt.c (gc_hmac_sha1): Fix assert.
10244
10245         * lib/gc.h (gc_nonce, gc_pseudo_random, gc_random): Add prototypes.
10246
10247 2005-10-17  Bruno Haible  <bruno@clisp.org>
10248
10249         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Change the return statement so
10250         that it can also be used in a test.
10251
10252 2005-10-16  Bruno Haible  <bruno@clisp.org>
10253
10254         * gnulib-tool (func_emit_tests_Makefile_am): Also define
10255         TESTS_ENVIRONMENT, so that individual tests can augment it.
10256
10257         * gnulib-tool (func_create_testdir): Use an intermediate target for
10258         building $(BUILT_SOURCES). Needed because BUILT_SOURCES can contain
10259         macros, like $(ALLOCA_H), which cannot be passed through the command
10260         line.
10261
10262 2005-10-15  Simon Josefsson  <jas@extundo.com>
10263
10264         * modules/rijndael-tests: New file.
10265
10266         * modules/rijndael: New file.
10267
10268 2005-10-15  Simon Josefsson  <jas@extundo.com>
10269
10270         * m4/rijndael.m4: New file.
10271
10272 2005-10-15  Simon Josefsson  <jas@extundo.com>
10273
10274         * lib/rijndael-api-fst.h, lib/rijndael-api-fst.c: New files.
10275
10276         * lib/rijndael-alg-fst.h, lib/rijndael-alg-fst.c: New files.
10277
10278 2005-10-14  Simon Josefsson  <jas@extundo.com>
10279
10280         * tests/test-arcfour.c: New file.
10281
10282         * modules/arcfour, modules/arcfour-tests: New files.
10283
10284 2005-10-14  Simon Josefsson  <jas@extundo.com>
10285
10286         * m4/arcfour.m4: New file.
10287
10288 2005-10-14  Simon Josefsson  <jas@extundo.com>
10289
10290         * lib/arcfour.h, lib/arcfour.c: New files.
10291
10292 2005-10-14  Roland McGrath  <roland@redhat.com>
10293
10294         Import from libc.  [BZ #1331]
10295         * lib/obstack.h [!__STDC__] (obstack_int_grow_fast): Fix misnamed
10296         macro argument.
10297         Reported by Matej Vela <vela@debian.org>.
10298
10299 2005-10-14  Paul Eggert  <eggert@cs.ucla.edu>
10300
10301         * lib/obstack.c [defined _LIBC && defined USE_IN_LIBIO]: Don't
10302         include <wchar.h>; no longer needed.
10303
10304 2005-10-14  Paul Eggert  <eggert@cs.ucla.edu>
10305
10306         * config/srclist.txt: Add glibc bug 321 for obstack.c, obstack.h.
10307
10308 2005-10-14  Jakub Jelinek  <jakub@redhat.com>
10309         and  Ulrich Drepper  <drepper@redhat.com>
10310
10311         Import from libc.
10312         * lib/obstack.c (print_and_abort) [defined _LIBC]: Use __fxprintf
10313         instead of inline stream orientation test and two separate
10314         function calls.  Pay no attention to USE_IN_LIBIO.
10315
10316 2005-10-13  Simon Josefsson  <jas@extundo.com>
10317
10318         * modules/gc-hmac-md5-tests: New file.
10319
10320         * tests/test-gc-hmac-sha1.c: New file.
10321
10322         * tests/test-gc.c (main): Remove MD5 and HMAC-MD5 tests.
10323
10324         * modules/gc-hmac-md5-tests: New file.
10325
10326         * tests/test-gc-md5.c: New file.
10327
10328         * modules/gc-md5-tests: New file.
10329
10330 2005-10-13  Simon Josefsson  <jas@extundo.com>
10331
10332         * lib/gc-pbkdf2-sha1.c (gc_pbkdf2_sha1): Optimize CEIL computation.
10333         Move memory allocation outside of loop.
10334
10335 2005-10-13  Paul Eggert  <eggert@cs.ucla.edu>
10336
10337         * lib/mkdir-p.c (make_dir_parents): Don't report an error if an
10338         intermediate directory is in a read-only file system.  Problem
10339         reported by Eric Blake.
10340
10341 2005-10-13  Oskar Liljeblad  <oskar@osk.mine.nu>
10342
10343         * modules/human (Depends-on): Depend on xstrtoumax, not xstrtol.
10344
10345 2005-10-12  Simon Josefsson  <jas@extundo.com>
10346
10347         * tests/test-hmac-sha1.c: New file.
10348
10349         * modules/hmac-sha1-tests: New file.
10350
10351         * modules/hmac-sha1: New file.
10352
10353 2005-10-12  Simon Josefsson  <jas@extundo.com>
10354
10355         * modules/gc-sha1: New file.
10356
10357 2005-10-12  Simon Josefsson  <jas@extundo.com>
10358
10359         * modules/gc-pbkdf2-sha1, modules/gc-pbkdf2-sha1-tests: New files.
10360
10361         * tests/test-gc-pbkdf2-sha1.c: New file.
10362
10363 2005-10-12  Simon Josefsson  <jas@extundo.com>
10364
10365         * modules/gc-md5, modules/gc-hmac-md5: New files.
10366
10367         * modules/gc (Files): Remove md5, memxor and hmac files.
10368
10369 2005-10-12  Simon Josefsson  <jas@extundo.com>
10370
10371         * m4/gc-pbkdf2-sha1.m4: New file.
10372
10373         * m4/gc-hmac-sha1.m4: New file.
10374
10375         * m4/gc-sha1: New file.
10376
10377         * m4/hmac-sha1.m4: New file.
10378
10379 2005-10-12  Simon Josefsson  <jas@extundo.com>
10380
10381         * m4/gc-md5.m4, m4/gc-hmac-md5.m4: New files.
10382
10383         * m4/gc.m4: Don't call gl_MD5, gl_MEMXOR or gl_HMAC_MD5.
10384
10385 2005-10-12  Simon Josefsson  <jas@extundo.com>
10386
10387         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Use Gc_rc for return types,
10388         suggested by Bruno Haible <bruno@clisp.org>.
10389
10390 2005-10-12  Simon Josefsson  <jas@extundo.com>
10391
10392         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Support SHA-1.
10393
10394 2005-10-12  Simon Josefsson  <jas@extundo.com>
10395
10396         * lib/gc-pbkdf2-sha1.c: New file.
10397
10398         * lib/gc.h: Add gc_pbkdf2_sha1 prototype.
10399
10400 2005-10-12  Simon Josefsson  <jas@extundo.com>
10401
10402         * lib/gc-libgcrypt.c (gc_hmac_sha1): New function.
10403
10404         * lib/gc-gnulib.c (gc_hmac_sha1): New function.
10405
10406 2005-10-12  Simon Josefsson  <jas@extundo.com>
10407
10408         * lib/gc-gnulib.c: Condition MD5 and HMAC-MD5 use on GC_USE_MD5 and
10409         GC_USE_HMAC_MD5, respectively.
10410
10411         * lib/gc-libgcrypt.c (gc_md5): Fix assert call.
10412         (gc_md5): Fix typo.
10413
10414         * lib/gc.h (gc_hash_buffer): Use gc_hash in prototype.
10415
10416         * lib/gc-libgcrypt.c (gc_hash_buffer): Ditto.
10417
10418         * lib/gc-gnulib.c (gc_hash_buffer): Ditto.
10419
10420 2005-10-12  Bruno Haible  <bruno@clisp.org>
10421
10422         * m4/stdbool.m4 (gl_STDBOOL_H): Define as an alias of AM_STDBOOL_H.
10423         Reported by Stepan Kasal <kasal@ucw.cz>.
10424
10425 2005-10-11  Simon Josefsson  <jas@extundo.com>
10426
10427         * tests/test-crc.c: New file.
10428
10429         * modules/crc, modules/crc-tests: New files.
10430
10431 2005-10-11  Simon Josefsson  <jas@extundo.com>
10432
10433         * m4/crc.m4: New file.
10434
10435 2005-10-11  Simon Josefsson  <jas@extundo.com>
10436
10437         * lib/gc.h: Add gc_hash and gc_hash_buffer.
10438
10439         * lib/gc-gnulib.c (gc_hash_buffer): Add.  Reorder #include's.
10440
10441         * lib/gc-libgcrypt.c (gc_hash_buffer): Add.
10442
10443 2005-10-11  Simon Josefsson  <jas@extundo.com>
10444
10445         * lib/crc.h, lib/crc.c: New files.
10446
10447         * lib/gc.h (gc_hash_buffer): Add doc.
10448
10449 2005-10-11  Bruno Haible  <bruno@clisp.org>
10450
10451         * modules/c-strcasestr: New file.
10452         * MODULES.html.sh (String handling <string.h>): Add c-strcasestr.
10453
10454 2005-10-11  Bruno Haible  <bruno@clisp.org>
10455
10456         * modules/c-strcase: New file.
10457         * MODULES.html.sh (String handling <string.h>): Add c-strcase.
10458
10459 2005-10-11  Bruno Haible  <bruno@clisp.org>
10460
10461         * lib/strcasecmp.c: Include limits.h.
10462         (strcasecmp): Avoid integer overflow on exotic platforms.
10463         * lib/strncasecmp.c: Include limits.h.
10464         (strncasecmp): Avoid integer overflow on exotic platforms.
10465         Reported by Paul Eggert.
10466
10467 2005-10-11  Bruno Haible  <bruno@clisp.org>
10468
10469         * lib/c-strcasestr.h: New file, from GNU gettext.
10470         * lib/c-strcasestr.c: New file, from GNU gettext.
10471
10472 2005-10-11  Bruno Haible  <bruno@clisp.org>
10473
10474         * lib/c-strcase.h: New file, from GNU gettext.
10475         * lib/c-strcasecmp.c: New file, from GNU gettext.
10476         * lib/c-strncasecmp.c: New file, from GNU gettext.
10477
10478 2005-10-10  Paul Eggert  <eggert@cs.ucla.edu>
10479
10480         * modules/mempcpy (License): GPL -> LGPL.
10481         * modules/strchrnul (License): Likewise.
10482         * modules/sysexits (License): Likewise.
10483
10484 2005-10-08  Simon Josefsson  <jas@extundo.com>
10485
10486         * config/srclist.txt: Bug 1423 is closed, but 1439 remains.
10487
10488 2005-10-07  Simon Josefsson  <jas@extundo.com>
10489
10490         * m4/memxor.m4: Remove gl_C_RESTRICT call.
10491
10492 2005-10-06  Simon Josefsson  <jas@extundo.com>
10493
10494         * tests/test-hmac-md5.c: New file.
10495
10496         * modules/hmac-md5-tests: New file.
10497
10498         * modules/hmac-md5: New file.
10499
10500 2005-10-06  Simon Josefsson  <jas@extundo.com>
10501
10502         * m4/hmac-md5.m4: New file.
10503
10504         * m4/memxor.m4: Require gl_C_RESTRICT.
10505
10506 2005-10-06  Simon Josefsson  <jas@extundo.com>
10507
10508         * lib/memxor.c (memxor): Avoid casts and warnings.
10509
10510 2005-10-06  Simon Josefsson  <jas@extundo.com>
10511
10512         * lib/hmac-md5.c: New file.
10513
10514         * lib/hmac.h: New file.
10515
10516 2005-10-06  Paul Eggert  <eggert@cs.ucla.edu>
10517
10518         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check that bool
10519         promotes to int, not unsigned int, to catch the AIX 5.3
10520         compiler bug.
10521
10522 2005-10-05  Simon Josefsson  <jas@extundo.com>
10523
10524         * modules/memxor: New file.
10525
10526         * modules/iconv (Files): Move config.rpath to havelib, it is used
10527         there.
10528
10529         * modules/havelib (Files): Add config.rpath.
10530
10531 2005-10-05  Simon Josefsson  <jas@extundo.com>
10532
10533         * m4/memxor.m4: New file.
10534
10535 2005-10-05  Simon Josefsson  <jas@extundo.com>
10536
10537         * lib/memxor.c (memxor): Fix compiler error.
10538
10539         * lib/md5.h (MD5_DIGEST_SIZE, MD5_BLOCK_SIZE): Add, see also
10540         <http://sourceware.org/bugzilla/show_bug.cgi?id=1423>.
10541
10542         * lib/memxor.h, lib/memxor.c: New files.
10543
10544         * lib/getaddrinfo.h: Don't protect sys/types.h with HAVE_SYS_TYPES_H,
10545         we assume all systems have it, suggested by Jim Meyering
10546         <jim@meyering.net>.  Remove HAVE_SYS_SOCKET_H test too, to see if
10547         any systems lack sys/socket.h; mingw32 is known to lack it, but we
10548         don't support it yet anyway.  Also remove HAVE_NETDB_H test, for
10549         same reasons.
10550
10551 2005-10-05  Simon Josefsson  <jas@extundo.com>
10552
10553         * config/srclist.txt: Add glibc bug 1423 for md5.h.
10554
10555 2005-10-05  Paul Eggert  <eggert@cs.ucla.edu>
10556
10557         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Don't check for
10558         sys/socket.h, netdb.h, sys/types.h; the checks areno longer
10559         needed, since the source code now assumes these .h files.
10560
10561 2005-10-05  Derek Price  <derek@ximbiot.com>
10562
10563         * lib/getdelim.c (SIZE_MAX): New macro, if not already defined.
10564
10565 2005-10-05  Bruno Haible  <bruno@clisp.org>
10566
10567         * modules/stdint (License): Change to LGPL.
10568
10569 2005-10-04  Simon Josefsson  <jas@extundo.com>
10570
10571         * lib/getaddrinfo.h: Move sys/types.h include first, reported by "Mark
10572         D. Baushke" <mdb@gnu.org>.
10573
10574 2005-10-04  Bruno Haible  <bruno@clisp.org>
10575
10576         * lib/verify.h (verify_true): Provide alternative definition for C++.
10577
10578 2005-10-03  Paul Eggert  <eggert@cs.ucla.edu>
10579
10580         * lib/getdelim.c: Include getdelim.h first.  Include <limits.h>.
10581         (SSIZE_MAX): New macro, if not already defined.
10582         (getdelim): Fix buffer overrun on 64-bit hosts with lines longer
10583         than 2 GiB.
10584
10585 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
10586
10587         Sync from coreutils.
10588         * m4/openat.m4 (gl_FUNC_OPENAT): Check for fdopendir.
10589         * m4/ullong_max.m4 (gl_ULLONG_MAX): Simplify so that it merely
10590         defines ULONG_MAX_LT_ULLONG_MAX.  Thomas M.Ott reports that
10591         ULLONG_MAX doesn't work with 2.7.2.1.
10592
10593 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
10594
10595         * modules/xreadlink (Makefile.am): Remove lib_SOURCES.
10596         From Ben Pfaff.
10597
10598         * modules/exclude (Depends-on): Depend on verify.
10599         * modules/strtoimax (Depends-on): Likewise.
10600         * modules/utimecmp (Depends-on): Likewise.
10601
10602 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
10603
10604         * lib/exclude.c: Include verify.h.
10605         (verify): Remove.  All callers changed to use verify.h's version.
10606         * lib/strtoimax.c: Likewise.
10607         * lib/utimecmp.c: Likewis.e
10608
10609         Sync from coreutils.
10610         * lib/.cppi-disable: Add getaddrinfo.h, getdelim.h, getline.h,
10611         getpass.c, mbchar.h, mbuiter.h, strcase.h, strnlen.h, strnlen1.h.
10612         * lib/.cvsignore: Add fts.h, search.h, t-fpending.
10613         * lib/settime.c (settime): Fix { typo in previous patch.  Also, don't
10614         bother returning ENOSYS if settimeofday or stime fails; just let
10615         them return whatever errno they want to return.
10616         * lib/utimens.c: Include unistd.h, for dup2.
10617         (futimens): Fix typo: HAVE_FUTIMESAT was misspelled in an #if.
10618         (futimens) [! HAVE_FUTIMESAT]: If !file, set errno before returning -1.
10619
10620 2005-10-02  Jim Meyering  <jim@meyering.net>
10621
10622         Sync from coreutils.
10623         * m4/utimes.m4 (gl_FUNC_UTIMES): Detect the version of utimes
10624         from glibc-2.2.5 that fails for read-only files.
10625
10626 2005-10-02  Jim Meyering  <jim@meyering.net>
10627
10628         Sync from coreutils.
10629         * lib/fts-cycle.c [HAVE_CONFIG_H]: Include <config.h>.
10630         * lib/openat-die.c: Use `#ifdef HAVE_CONFIG_H', not
10631         `#if HAVE_CONFIG_H'.
10632         * lib/openat.c (fdopendir): Do not define if HAVE_FDOPENDIR.
10633         Remove AT_FDCWD test.
10634         Do not consume the fd unless successful.
10635         * lib/openat.h (fdopendir): Do not define if HAVE_FDOPENDIR.
10636         * lib/settime.c (settime): Move the HAVE_STIME block `up' into an #elif
10637         block, so that we don't even try to compile it if settimeofday is
10638         available.  This works around a compilation failure on OSF1 V5.1,
10639         due to stime requiring a `long int*' while tv_sec is `int'.
10640
10641 2005-10-02  Alfred M. Szmidt  <ams@gnu.org>
10642
10643         Sync from coreutils.
10644         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Compare $gl_have_path...
10645         against `yes', rather than just testing for nonempty.
10646
10647 2005-10-01  Simon Josefsson  <jas@extundo.com>
10648
10649         * m4/getaddrinfo.m4: Include sys/types.h for sys/socket.h, on FreeBSD
10650         and Darwin.
10651
10652         * m4/getaddrinfo.m4: Use AC_GNU_SOURCE, GNU only declare getaddrinfo
10653         as an (POSIX) extension.  Check for sys/types.h, sys/socket.h, and
10654         netdb.h too, needed by getaddrinfo.h.  Check if getaddrinfo,
10655         freeaddrinfo and gai_strerror are declared by the POSIX headers.
10656         Check if struct addrinfo is declared.
10657
10658 2005-10-01  Simon Josefsson  <jas@extundo.com>
10659
10660         * lib/getaddrinfo.h: Protect #include's of sys/socket.h and netdb.h.
10661         Only define struct addrinfo if !HAVE_STRUCT_ADDRINFO.  Protect
10662         AI_* and EAI_* definitions.  Protect function declarations.
10663
10664 2005-10-01  Jim Meyering  <jim@meyering.net>
10665
10666         Sync from coreutils.
10667
10668         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Look for getservbyname in these
10669         libraries [inet nsl socket xnet].  Nelson Beebe reported that with
10670         native cc on Solaris 7, getaddrinfo.c requires -lsocket.
10671         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Check for gethostbyname
10672         in the inet and nsl libraries.  Required on Solaris 5.7.
10673
10674 2005-10-01  Jim Meyering  <jim@meyering.net>
10675
10676         Sync from coreutils.
10677         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Check for gethostbyname
10678         in the inet and nsl libraries.  Required on Solaris 5.7.
10679
10680 2005-10-01  Eric Blake  <ebb9@byu.net>  (tiny change)
10681
10682         * lib/getdelim.c (getdelim): Remove unused variables.
10683
10684 2005-09-29  Paul Eggert  <eggert@cs.ucla.edu>
10685
10686         * lib/xtime.h (XTIME_PRECISION): Now of type int, not long long int,
10687         so that the code works even with ancient cpp.  Portability problem
10688         with GCC 2.7.2.1 reported by Thomas M.Ott.
10689
10690 2005-09-27  Paul Eggert  <eggert@cs.ucla.edu>
10691
10692         * modules/regex (Depends-on): Add strcase.
10693
10694         * modules/gethostname (Licence): Change from GPL to LGPL, since
10695         gethostname.c is a trivial implementation of a standard library
10696         function.
10697         * modules/poll (License): Change from GPL to LGPL, since it's
10698         derived from LGPL code.
10699
10700 2005-09-27  Jim Meyering  <jim@meyering.net>
10701
10702         * lib/getcwd.c: Change #ifdef<TAB>HAVE_CONFIG_H to #ifdef
10703         HAVE_CONFIG_H.
10704
10705         * lib/intprops.h (signed_type_or_expr__): Define.
10706         (INT_STRLEN_BOUND) [__GNUC__]: Use a slightly tighter bound
10707         for unsigned types.
10708
10709 2005-09-26  Paul Eggert  <eggert@cs.ucla.edu>
10710
10711         * lib/verify.h (verify_expr): Remove, replacing with:
10712         (verify_true): New macro that returns true instead of void.
10713         (verify_type__): Remove.
10714         (verify): Use verify_true rather than verify_type__.
10715
10716 2005-09-26  Bruno Haible  <bruno@clisp.org>
10717
10718         * modules/mbchar (Include): Mention that HAVE_WCHAR_H && HAVE_WCTYPE_H
10719         is necessary.
10720         (lib_SOURCES): Remove mbchar.c.
10721         * modules/mbfile (Include): Mention that HAVE_MBRTOWC is necessary.
10722         (Files): Add m4/mbrtowc.m4.
10723         * modules/mbiter: Likewise.
10724         * modules/mbuiter: Likewise.
10725
10726 2005-09-26  Bruno Haible  <bruno@clisp.org>
10727
10728         * m4/mbchar.m4 (gl_MBCHAR): Check for wchar.h and wctype.h. Don't
10729         compile mbchar.c if they are not both present.
10730         * m4/mbfile.m4 (gl_MBFILE): Require gl_FUNC_MBRTOWC.
10731         * m4/mbiter.m4 (gl_MBITER): Likewise.
10732         * m4/strstr.m4 (gl_PREREQ_STRSTR): Use AC_REQUIRE.
10733         * m4/strcasestr.m4 (gl_PREREQ_STRCASESTR): Likewise.
10734         * m4/strcase.m4 (gl_PREREQ_STRCASECMP): Likewise.
10735
10736 2005-09-25  Jim Meyering  <jim@meyering.net>
10737
10738         * modules/inet_ntop (Depends-on): Add socklen, since inet_ntop.c
10739         also uses socklen_t.
10740
10741 2005-09-24  Paul Eggert  <eggert@cs.ucla.edu>
10742
10743         * lib/utimens.c (ENOSYS): Define if not already defined.
10744         (futimens): Support having a null PATH if the file descriptor
10745         is nonnegative.
10746
10747         * lib/regex_internal.h (__GNUC_PREREQ, always_inline, inline, pure):
10748         Remove.
10749         (__attribute): Define to empty unless GCC 3.1 or later.
10750         This works around a core dump on OpenBSD 3.4, which has GCC
10751         2.95.3, which dumps core when given __attribute__(()).  It also
10752         simplifies other tests, since we really don't want to bother with
10753         worrying about which ancient version of GCC supported what.
10754         Original problem reported by Yoann Vandoorselaere, with part of
10755         the fix suggested by Derek Price.
10756
10757 2005-09-24  Jim Meyering  <jim@meyering.net>
10758
10759         * lib/verify.h (verify_type__): Use `unsigned int' as the bitfield type
10760         so we can once again use a positive bitfield width of 1 -- now we
10761         don't have to explain why we were using a bitfield width of 2.
10762
10763 2005-09-23  Paul Eggert  <eggert@cs.ucla.edu>
10764
10765         * m4/regex.m4 (gl_REGEX): If replacing, define regcomp to rpl_regcomp,
10766         and similarly for the other external symbols.  Problem reported
10767         by James Gallager.
10768
10769         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Catch Sun Studio 10u1 on Linux
10770         bug reported by Jim Meyering.
10771
10772         * m4/utimens.m4 (gl_UTIMENS): Check for futimesat.
10773         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Undo previous change;
10774         not needed, since socklen is a prerequisite module.
10775
10776 2005-09-23  Paul Eggert  <eggert@cs.ucla.edu>
10777
10778         * lib/getaddrinfo.c [HAVE_NETINET_IN_H]: Include <netinet/in.h>.
10779         Problem reported by Eric Blake.
10780         (getaddrinfo): Initialize se so that it's not garbage.
10781         Redo internal storage allocation so that it doesn't make unportable
10782         assumptions about alignment.
10783         Fix a memory leak.
10784
10785         * lib/utimens.c (futimens): Use futimesat if available.
10786         Prefer it to futimes since it doesn't have the futimes bug.
10787
10788         * lib/verify.h (GL_CONCAT0, GL_CONCAT): Remove.
10789         (verify): Don't use the __LINE__ trick, as it doesn't work in general.
10790         Instead, declare a function that returns a pointer to an array,
10791         and use verify_type__ to declare the size of the array.
10792         Problem and germ of a solution reported by Bruno Haible.
10793         (verify_type__): Use 2, not 1, for bitfield size, to avoid
10794         a warning with Irix 6.5 cc.  Problem reported by Bruno Haible.
10795
10796 2005-09-23  Jim Meyering  <jim@meyering.net>
10797
10798         Sync from coreutils.
10799         Correct build failure (socklen_t not defined) on at least
10800         mips-sgi-irix6.5 and alphaev67-dec-osf5.1.
10801         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Require gl_SOCKLEN_T.
10802
10803 2005-09-23  Jim Meyering  <jim@meyering.net>
10804
10805         * modules/getaddrinfo (Depends-on): Add socklen.
10806
10807 2005-09-23  Bruno Haible  <bruno@clisp.org>
10808
10809         * tests/test-verify.c: New file.
10810
10811 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
10812
10813         Sync from coreutils.
10814
10815         * modules/argmatch (Depends-on): Add verify.
10816         * modules/getloadavg (Depends-on): Depend on fcntl-safer, not
10817         unistd-safer.
10818         * modules/save-cwd (Depends-on): Likewise.
10819
10820         * modules/openat (Files): Add lib/openat-die.c.
10821         (Depends-on): Remove error, exitfail.
10822         Add dirname.
10823
10824         * modules/verify: New file.
10825         * MODULES.html.sh (Diagnostics <assert.h>): New section,
10826         with "verify" module.
10827
10828 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
10829
10830         Sync from coreutils.
10831
10832         * m4/backupfile.m4, calloc.m4, chown.m4, cloexec.m4, dup2.m4:
10833         * m4/fileblocks.m4, free.m4, ftruncate.m4, getcwd.m4, getpagesize.m4:
10834         * m4/getugroups.m4, group-member.m4, idcache.m4, link-follow.m4:
10835         * m4/mkstemp.m4, mktime.m4, mountlist.m4, nanosleep.m4, pathmax.m4:
10836         * m4/physmem.m4, posixver.m4, putenv.m4, safe-read.m4, same.m4:
10837         * m4/save-cwd.m4, stdio-safer.m4, unistd-safer.m4, unlinkdir.m4:
10838         * m4/userspec.m4, xgetcwd.m4, xreadlink.m4:
10839         Don't bother checking for string.h, stdlib.h, unistd.h.
10840         * m4/fts.m4 (gl_FUNC_FTS_CORE): Don't require
10841         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK; that's now the lstat
10842         module's job.
10843         * m4/jm-macros.m4 (gl_MACROS): Likewise.
10844         * m4/prereq.m4 (gl_PREREQ): Add gl_FUNC_LSTAT.
10845
10846         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): New macro.
10847         (gl_GETDATE): Use it.
10848
10849         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Don't bother checking for unistd.h.
10850
10851 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
10852
10853         Sync from coreutils.
10854
10855         * lib/.cppi-disable: Add regcomp.c, regex_internal.c, regex_internal.h,
10856         stat-time.h.
10857         * lib/argmatch.h: Include verify.h
10858         (ARGMATCH_VERIFY): Use verify rather than rolling our own.
10859         (ARGMATCH_ASSERT): Remove; unused.
10860         * lib/canonicalize.c: Assume STDC_HEADERS.
10861         * lib/exclude.c: Include "strcase.h".
10862         * lib/regex_internal.h [!defined _LIBC]: Likewise.
10863         * lib/getusershell.c: Include stdio--.h rather than stdio.h
10864         and stdio-safer.h.
10865         (getusershell): Call fopen, not fopen_safer.
10866         * lib/save-cwd.c: Include fcntl--.h rather than fcntl.h.
10867         Do not include unistd-safer.h.
10868         (save_cwd): Don't call fd_safer; no longer needed
10869         now that we include fcntl--.h.
10870
10871         * lib/getdate.y (relative_time): New type.
10872         (RELATIVE_TIME_0): New constant.
10873         (parser_control): Use relative_time instead of doing it ourselves.
10874         (%union): Add new relative_time rel member.
10875         (tYEAR_UNIT, tMONTH_UNIT, tHOUR_UNIT, tMINUTE_UNIT, tSEC_UNIT):
10876         Now typeless.
10877         (relunit, relunit_snumber): Now of type rel.
10878         (zone, rel, relunit, get_date): Adjust to above changes.
10879
10880         * lib/getloadavg.c: Include fcntl--.h rather than fcntl.h.
10881         Do not include unistd-safer.h.
10882         (getloadavg): Don't call fd_safer; no longer needed
10883         now that we include fcntl--.h.
10884
10885         * lib/mkdir-p.c (ENOSYS): Define to EEXIST if not defined.
10886         (make_dir_parents): Treat ENOSYS like EEXIST.
10887
10888         Improve quality of diagnostics on restore_cwd failure.
10889         * lib/mkdir-p.h (make_dir): Remove.  All uses replaced by mkdir.
10890         (make_dir_parents): Last arg is now int * (for errno), not bool *.
10891         * lib/mkdir-p.c (make_dir, make_dir_parents): Likewise.
10892         Rewrite "mkdir -p" algorithm to avoid the need for "stat"
10893         each time through the loop.  Do not diagnose restore_cwd failure;
10894         that is the caller's job (and perhaps the caller does not care).
10895
10896         * lib/mkdir-p.c (CLEANUP_CWD, CLEANUP): Remove.
10897         (make_dir_parents): Revamp to avoid need for CLEANUP_CWD, CLEANUP.
10898         If the file already exists but is not a directory, don't bother
10899         to try to make its parents.
10900         Close potential file descriptor leak if we can't chdir("/") (!).
10901         Don't always return true if chdir($PWD) fails; return true only
10902         if the requested action was done successfully (except for the
10903         chdir($PWD)).
10904         Don't log final directory unless we actually made it.
10905         Refactor to avoid duplicate code to fix up permissions.
10906         Don't attempt to fix up parent permissions if chdir($PWD) fails.
10907
10908         * lib/strftime.c (my_strftime): Rewrite the previous change slightly,
10909         to make it a bit faster and (I hope) clearer.
10910         * lib/strftime.c (my_strftime): Add support for %:z, %::z, %:::z.
10911         Fix bug in formats like %2N.
10912
10913         * lib/verify.h: New file.
10914
10915 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
10916
10917         Sync from coreutils.
10918         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Check for netinet/in.h.
10919
10920 2005-09-22  Jim Meyering  <jim@meyering.net>
10921
10922         Sync from coreutils.
10923
10924         * m4/lstat.m4 (gl_FUNC_LSTAT):
10925         Use AC_LIBSOURCES to require lstat.c and lstat.h.
10926         Remove obsolete comment.
10927         * m4/xreadlink.m4: Use AC_LIBSOURCES and AC_LIBOBJ.
10928         * m4/xstrtod.m4: Likewise.
10929
10930         * m4/openat.m4 (gl_FUNC_OPENAT): Add openat-die.c.
10931
10932 2005-09-22  Jim Meyering  <jim@meyering.net>
10933
10934         Sync from coreutils.
10935
10936         * lib/backupfile.c: Use ARGMATCH_VERIFY, just in case.
10937
10938         * lib/posixtm.c (posixtime) [lint]: Initialize *all* of tm0, not just
10939         the .tm_year member, since otherwise gcc-4.0 would now warn about
10940         tm_zone, tm_gmtoff, tm_isdst, tm_yday, tm_wday.
10941
10942         * lib/quotearg.c (quotearg_n_options): Change code to be suboptimal, in
10943         order to avoid an unsuppressible warning from gcc on 64-bit systems.
10944
10945         * lib/getdate.y (get_date): Undo part of the 2005-04-04 change, so that
10946         the command "date -d'2005-03-27 +1 day'" succeeds once again, even
10947         when run in a time zone for which daylight savings time is in effect
10948         for the starting date.
10949
10950         * lib/mkdir-p.c (make_dir_parents): Don't let a failed chdir($PWD)
10951         stop us from restricting permissions of just-created absolute-named
10952         directories.
10953         * lib/mkdir-p.c (CLEANUP_CWD): Return *true*, not false when failing
10954         to restore initial working directory.
10955         * lib/mkdir-p.c (make_dir_parents): New parameter:
10956         different_working_dir, to tell caller if/when we change the working
10957         directory and are unable to return to the initial one.
10958         * lib/mkdir-p.h (make_dir_parents): Update prototype.
10959         * lib/mkdir-p.c (CLEANUP_CWD): Change one more `return 1' to
10960         `return false'.  This fixes a bug introduced on 2004-07-30.
10961
10962         * lib/openat.c (fdopendir): Be sure to close the supplied
10963         file descriptor before returning.  This makes our replacement
10964         implementation a little closer to Solaris's, where fdopendir
10965         ties the file descriptor to the returned DIR* pointer.
10966         * lib/openat.c (unlinkat): New function.
10967         * lib/openat.h (unlinkat): Add prototype.
10968         * lib/openat-die.c (openat_save_fail): Rename from openat_save_die.
10969         (openat_restore_fail): Rename from openat_restore_die.
10970         * lib/openat.c, openat.h: Reflect s/_die/_fail/ renaming.
10971
10972         Provide an alternative to exiting immediately upon save_cwd or
10973         restore_cwd failure.  Now, an application can arrange e.g.,
10974         to perform a longjump in that case.
10975         * lib/openat.c: Include dirname.h.
10976         Use IS_ABSOLUTE_FILE_NAME rather than testing for leading slash.
10977         (rpl_openat, fdopendir, fstatat): Call openat_save_die
10978         and openat_restore_die rather than calling error directly.
10979         Don't include "error.h" or "exitfail.h"; they're no longer needed.
10980
10981         * lib/openat-die.c (openat_save_die, openat_restore_die): New file.
10982         * lib/openat.h (openat_save_die, openat_restore_die): Declare and
10983         define.
10984
10985         * lib/strftime.c [FPRINTFTIME] (fprintftime): Provide a new interface:
10986         size_t fprintftime (FILE *fp, char const *fmt, struct tm const *tm,
10987                             int utc, int nanoseconds);
10988         Background:
10989         date should not have to allocate a megabyte of virtual memory to
10990         handle a format argument like +%1048575T.  When implemented with
10991         strftime, it must allocate such a buffer, use strftime to fill it
10992         in, print it, then free it.
10993         With fprintftime, it simply prints everything and exits.
10994         With no need for memory allocation, that's one fewer way to fail.
10995         * lib/strftime.c (my_strftime): Parse the colons of %:::z *after* the
10996         optional field width, not before, so we accept %9:z, not %:9z.
10997         (my_strftime): Be sure to use L_('x') for literals.
10998
10999         * lib/backupfile.c, lib/canon-host.c, lib/canonicalize.c, lib/chown.c:
11000         * lib/cloexec.c, lib/dup-safer.c, lib/dup2.c, lib/euidaccess.c:
11001         * lib/fd-safer.c, lib/fileblocks.c, lib/fopen-safer.c, lib/fsusage.c:
11002         * lib/ftruncate.c, lib/getcwd.c, lib/getcwd.h, lib/getloadavg.c:
11003         * lib/getopt_.h, lib/getpagesize.h, lib/getugroups.c:
11004         * lib/group-member.c, lib/human.h, lib/idcache.c, lib/mkdir-p.c:
11005         * lib/mountlist.c, lib/nanosleep.c, lib/pathmax.h, lib/physmem.c:
11006         * lib/posixver.c, lib/putenv.c, lib/raise.c, lib/safe-read.c:
11007         * lib/same.c, lib/save-cwd.c, lib/setenv.c, lib/settime.c:
11008         * lib/tempname.c, lib/unlinkdir.c, lib/unsetenv.c, lib/userspec.c:
11009         * lib/xgethostname.c, lib/xreadlink.c:
11010         Assume HAVE_UNISTD_H, i.e., include <unistd.h> unconditionally.
11011
11012         * lib/chown.c, lib/cloexec.c, lib/dup-safer.c, lib/dup2.c:
11013         * lib/fsusage.c, lib/getcwd.c, lib/getloadavg.c, lib/mountlist.c:
11014         * lib/openat.h, lib/save-cwd.c, lib/tempname.c:
11015         Assume HAVE_FCNTL_H (i.e., include <fcntl.h> unconditionally,
11016         and don't include <sys/file.h>).
11017
11018 2005-09-22  Eric Blake  <ebb9@byu.net>  (tiny change)
11019
11020         Sync from coreutils.
11021
11022         * lib/getloadavg.c (getloadavg) [__CYGWIN__]: Port to cygwin.
11023         [__linux__]: Allocate a big enough buffer for /proc/loadavg.
11024         [!LDAV_DONE]: Avoid unused variable warning.
11025
11026 2005-09-21  Bruno Haible  <bruno@clisp.org>
11027
11028         * lib/unicodeio.h (unicode_to_mb): New declaration.
11029
11030 2005-09-20  Derek Price  <derek@ximbiot.com>
11031
11032         * lib/getaddrinfo.c: Don't include <netdb.h> included from
11033         getaddrinfo.h.
11034
11035 2005-09-20  Bruno Haible  <bruno@clisp.org>
11036
11037         * gnulib-tool: Remove trailing slashes from the values specified for
11038         --source-base, --m4-base, --tests-base, --aux-dir.
11039         Suggested by Simon Josefsson <jas@extundo.com>.
11040
11041 2005-09-20  Bruno Haible  <bruno@clisp.org>
11042
11043         * gnulib-tool (func_all_modules, func_modules_transitive_closure,
11044         func_modules_to_filelist, func_import, func_create_testdir): Make all
11045         sorting results locale-independent, so that gnulib-cache.m4 doesn't
11046         change when gnulib-tool is invoked in a different locale.
11047
11048 2005-09-19  Simon Josefsson  <jas@extundo.com>
11049
11050         * m4/socklen.m4: Fix typo.
11051
11052 2005-09-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
11053
11054         Use a consistent style for including <config.h>.
11055         * lib/__fpending.c, lib/acl.c, lib/argmatch.c, lib/argp-help.c,
11056         lib/argp-parse.c, lib/argp-pvh.c, lib/backupfile.c, lib/basename.c,
11057         lib/c-stack.c, lib/calloc.c, lib/check-version.c, lib/cloexec.c,
11058         lib/closeout.c, lib/copy-file.c, lib/creat-safer.c, lib/cycle-check.c,
11059         lib/dirfd.c, lib/dirname.c, lib/dup-safer.c, lib/dup2.c,
11060         lib/euidaccess.c, lib/exclude.c, lib/exitfail.c, lib/fatal-signal.c,
11061         lib/fd-safer.c, lib/file-type.c, lib/fileblocks.c, lib/filemode.c,
11062         lib/filenamecat.c, lib/findprog.c, lib/fnmatch.c, lib/fopen-safer.c,
11063         lib/free.c, lib/fsusage.c, lib/ftruncate.c, lib/full-write.c,
11064         lib/fwriteerror.c, lib/getaddrinfo.c, lib/getcwd.c, lib/getdelim.c,
11065         lib/getline.c, lib/getlogin_r.c, lib/getndelim2.c, lib/getnline.c,
11066         lib/getopt1.c, lib/getpass.c, lib/group-member.c, lib/hard-locale.c,
11067         lib/hash-pjw.c, lib/hash.c, lib/human.c, lib/idcache.c,
11068         lib/inet_ntop.c, lib/isdir.c, lib/long-options.c, lib/malloc.c,
11069         lib/memcasecmp.c, lib/memcmp.c, lib/memcoll.c, lib/memcpy.c,
11070         lib/memmove.c, lib/mkdir-p.c, lib/modechange.c, lib/mountlist.c,
11071         lib/open-safer.c, lib/physmem.c, lib/pipe-safer.c, lib/pipe.c,
11072         lib/poll.c, lib/posixver.c, lib/progname.c, lib/progreloc.c,
11073         lib/putenv.c, lib/quote.c, lib/quotearg.c, lib/readline.c,
11074         lib/readlink.c, lib/realloc.c, lib/regex.c, lib/rename.c, lib/rmdir.c,
11075         lib/rpmatch.c, lib/safe-read.c, lib/same.c, lib/save-cwd.c,
11076         lib/savedir.c, lib/sig2str.c, lib/strcspn.c, lib/strerror.c,
11077         lib/stripslash.c, lib/strncasecmp.c, lib/strndup.c, lib/strnlen.c,
11078         lib/strnlen1.c, lib/strsep.c, lib/strstr.c, lib/strtod.c,
11079         lib/strtoimax.c, lib/strtol.c, lib/strverscmp.c, lib/tempname.c,
11080         lib/time_r.c, lib/userspec.c, lib/utimecmp.c, lib/version-etc-fsf.c,
11081         lib/version-etc.c, lib/wait-process.c, lib/xalloc-die.c, lib/xgetcwd.c,
11082         lib/xmalloc.c, lib/xmemcoll.c, lib/xnanosleep.c, lib/xreadlink.c,
11083         lib/xsetenv.c, lib/xstrndup.c, lib/xstrtoimax.c, lib/xstrtol.c,
11084         lib/xstrtoumax.c, lib/yesno.c:
11085         Standardize inclusion of config.h.
11086         * lib/__fpending.h, lib/dirfd.h, lib/getdate.h, lib/human.h,
11087         lib/inttostr.h:  Removed inclusion of config.h from header files.
11088         * lib/inttostr.c:  Adjusted in-tree users.
11089         * lib/timespec.h: Remove superfluous warning to include config.h.
11090         * lib/atexit.c, lib/chdir-long.c, lib/chown.c, lib/fchown-stub.c,
11091         lib/getgroups.c, lib/gettimeofday.c, lib/lchown.c, lib/lstat.c,
11092         lib/mkdir.c, lib/mkstemp.c, lib/nanosleep.c, lib/openat.c, lib/raise.c,
11093         lib/readtokens0.c, lib/readutmp.c, lib/unlinkdir.c: Guard inclusion of
11094         config.h with HAVE_CONFIG_H.
11095
11096 2005-09-19  Jim Meyering  <jim@meyering.net>
11097
11098         * modules/pathmax (License): Change to LGPL.
11099
11100 2005-09-19  Derek Price  <derek@ximbiot.com>
11101
11102         * config/srclist.txt: glibc's glob.h is now in lib/glob-libc.h.
11103
11104 2005-09-19  Bruno Haible  <bruno@clisp.org>
11105
11106         * gnulib-tool (import): Provide default for --tests-base.
11107
11108 2005-09-19  Bruno Haible  <bruno@clisp.org>
11109
11110         * doc/quote.texi: New file, extracted from gnulib.texi.
11111         * doc/ctime.texi: New file, extracted from gnulib.texi.
11112         * doc/inet_ntoa.texi: New file, extracted from gnulib.texi.
11113         * doc/gnulib-tool.texi: New file, extracted from gnulib.texi.
11114         * doc/gnulib.texi: Include them.
11115
11116 2005-09-18  Bruno Haible  <bruno@clisp.org>
11117
11118         Portability fix.
11119         * gnulib-tool (func_readlink): New function.
11120         (func_ln_if_changed): Use it.
11121
11122 2005-09-18  Bruno Haible  <bruno@clisp.org>
11123
11124         * gnulib-tool: Support --with-tests also with --import.
11125         (func_emit_tests_Makefile_am): Use variables $m4base and $testsbase.
11126         (func_import): Use variables $testsbase and $inctests. Emit a
11127         gl_TESTS_BASE form into gnulib-cache.m4. Create $testsbase/Makefile.am.
11128         Remind the user to add AC_CONFIG_FILES($testsdir/Makefile) and
11129         SUBDIRS += $testsdir.
11130         (func_create_testdir): Update.
11131
11132 2005-09-18  Bruno Haible  <bruno@clisp.org>
11133
11134         * gnulib-tool: Revise --dry-run implementation. Use variable $doit
11135         instead of $dry_run.
11136         (func_cp_if_changed, func_mv_if_changed): Remove functions.
11137         (func_ln_if_changed): Don't handle dry-run here.
11138         (func_import): In dry-run mode, detect more precisely which actions
11139         would be performed, and don't use "...ing" verbs.
11140
11141 2005-09-18  Bruno Haible  <bruno@clisp.org>
11142
11143         * gnulib-tool (func_tmpdir): New function, taken from GNU gettextize.
11144         (func_import): Use join on two temporary files instead of three nested
11145         loops, in order to determine which files are new or old.
11146
11147 2005-09-18  Bruno Haible  <bruno@clisp.org>
11148
11149         * gnulib-tool (func_import): Comment out code that spits out the
11150         new files with --dry-run.
11151
11152 2005-09-18  Bruno Haible  <bruno@clisp.org>
11153
11154         * doc/gnulib.texi (Invoking gnulib-tool): 50% rewritten.
11155
11156 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
11157
11158         * lib/stat-time.h: New file.
11159         * lib/timespec.h (ST_TIME_CMP_NS, ST_TIME_CMP, ATIME_CMP, CTIME_CMP):
11160         (MTIME_CMP, TIMESPEC_NS): Remove.  Now done by stat-time.h,
11161         in a different way.
11162         (timespec_cmp): New function.
11163         * lib/utimecmp.c: Include stat-time.h.
11164         (SYSCALL_RESOLUTION): Depend on whether various struct stat
11165         members exist, not on the obsolescent ST_MTIM_NSEC.
11166         (utimecmp): Use the new stat-time functions rater than TIMESPEC_NS.
11167
11168 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
11169
11170         * config/srclist.txt: Remove glibc bug 1033 and uncomment mktime.c.
11171
11172 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
11173
11174         * MODULES.html.sh (File system functions): Add stat-time.
11175         * modules/stat-time: New file.
11176         * modules/timespec (Files): Remove m4/st_mtim.m4; this
11177         is now done in a different way, by the stat-time module.
11178         * modules/utimecmp (Depends-on): Add stat-time.
11179
11180 2005-09-15  Paul Eggert  <eggert@cs.ucla.edu>
11181
11182         * m4/st_mtim.m4: Remove.  Superseded by...
11183         * m4/stat-time.m4: New file.
11184         * m4/timespec.m4 (gl_TIMESPEC): Require AC_C_INLINE.
11185         Do not invoke AC_STRUCT_ST_MTIM_NSEC; no longer needed.
11186
11187 2005-09-15  Derek Price  <derek@ximbiot.com>
11188
11189         * m4/strstr.m4 (gl_FUNC_STRSTR): Don't define strstr here.
11190
11191 2005-09-15  Derek Price  <derek@ximbiot.com>
11192
11193         * lib/regex_internal.h: Blank `pure' for GNUC < 3.
11194         * lib/regex_internal.c: Ditto, using this...
11195         (__GNUC_PREREQ): ...new macro.
11196         * lib/regcomp.c, regexec.c: Blank `always_inline' for GNUC < 3.1
11197         using...
11198         (__GNUC_PREREQ): ...this new macro.
11199
11200         * lib/strstr.h: Include string.h. Define strstr as a macro here.
11201
11202 2005-09-15  Derek Price  <derek@ximbiot.com>
11203             Paul Eggert  <eggert@cs.ucla.edu>
11204
11205         * lib/regcomp.c, regexec.c, regex_internal.c: Back out previous
11206         changes, consolidating in...
11207         * lib/regex_internal.h: ...this file.
11208
11209 2005-09-13  Jim Meyering  <jim@meyering.net>
11210
11211         * lib/canon-host.c: Filter through gnu indent and reword comments
11212         slightly.
11213         * lib/canon-host.h (ch_strerror_r): Tweak cpp indentation and spacing.
11214
11215 2005-09-13  Derek Price  <derek@ximbiot.com>
11216
11217         * lib/canon-host.c (canon_host_r): Set *cherror on memory allocation
11218         failure.
11219         Reported by Jim Meyering  <jim@meyering.net>.
11220
11221 2005-09-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
11222
11223         * lib/base64.c: Typo.
11224         (base64_encode): Put b64str in initialized data section.
11225
11226 2005-09-12  Paul Eggert  <eggert@cs.ucla.edu>
11227
11228         Merge glibc and coreutils changes into gnulib, plus a few
11229         extra fixes.
11230         * lib/md5.c: Use #error rather than a string.
11231         (CYCLIC): New macro, from glibc source.  Use it instead of rol.
11232         * lib/md5.h (__GNUC_PREREQ, __THROW): Define if not defined already.
11233         (__attribute__): Define to empty for non recent-GCC.
11234         (__md5_buffer, __md5_finish_ctx, __md5_init_ctx, __md5_process_block):
11235         (__md5_process_bytes, __md5_read_ctx, __md5_stream):
11236         Renamed from their non-__ counterparts, with new macros replacing
11237         them if not _LIBC.  Add __THROW attribute.
11238         (rol): Remove.
11239         (struct md5_ctx): Align buffer if using GCC.
11240         * lib/sha1.h (struct sha1_ctx): Likewise.
11241         * lib/sha1.c (SWAP): Renamed from the NOTSWAP.  All uses changed.
11242         The old name was backwards.
11243         (NOTSWAP): Remove; not used.
11244         (rol): New macro, moved here from md5.h.
11245         (sha1_process_block): Remove a FIXME that doesn't make sense.
11246
11247 2005-09-12  Derek Price  <derek@ximbiot.com>
11248
11249         Return usable errors from canon-host.
11250         * lib/canon-host.h: New file.
11251         * lib/canon-host.c (canon_host): Wrap...
11252         (canon_host_r): ...this new function, which now relies exclusively on
11253         getaddrinfo.
11254         (ch_strerror): New function.
11255         (last_cherror): New global.
11256         * lib/getaddrinfo.c: Move include of getaddrinfo.h first to test
11257         interface.
11258         (getaddrinfo): Add AI_CANONNAME functionality.  Don't do arithmetic on
11259         void *.
11260         (freeaddrinfo): Free ai->ai_canonname when set.
11261
11262 2005-09-12  Derek Price  <derek@ximbiot.com>
11263
11264         Make canon-host require getaddrinfo.
11265         * m4/canon-host.m4 (gl_CANON_HOST): Remove most dependencies.
11266         AC_LIBSOURCE canon-host.h.  Call...
11267         (gl_PREREQ_CANON_HOST): ...this new function, which requires
11268         gl_GETADDRINFO.
11269         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Compile gai_strerror when needed.
11270
11271 2005-09-12  Derek Price  <derek@ximbiot.com>
11272
11273         * modules/canon-host: Add canon-host.h.  Depend on getaddrinfo.  Make
11274         LGPL.
11275         * modules/getaddrinfo: Add link to opengroup spec.  Depend on strdup.
11276
11277 2005-09-12  Derek Price  <derek@ximbiot.com>
11278
11279         * lib/gai_strerror.c: Include config.h when available.  Include
11280         getaddrinfo.h before other headers to test interface.
11281         Reported by Larry Jones <lawrence.jones@ugs.com>.
11282
11283 2005-09-12  Derek Price  <derek@ximbiot.com>
11284             Paul Eggert  <eggert@cs.ucla.edu>
11285
11286         * modules/glob (Files): Add glob-libc.h.
11287
11288 2005-09-12  Derek Price  <derek@ximbiot.com>
11289             Paul Eggert  <eggert@cs.ucla.edu>
11290
11291         * m4/glob.m4 (gl_GLOB_SUBSTITUTE): AC_LIBSOURCES for glob.c,
11292         glob_.h, glob-libc.h.
11293         (gl_PREREQ_GLOB): Remove _SYS_CDEFS_H hack; no longer needed.
11294
11295 2005-09-12  Derek Price  <derek@ximbiot.com>
11296             Paul Eggert  <eggert@cs.ucla.edu>
11297
11298         * lib/glob-libc.h: Renamed from glob_.h.  The new version is
11299         taken from libc's glob.h, except with '#ifdef __GLOB_GNULIB'
11300         protecting things that should be done only in gnulib contexts.
11301         * lib/glob_.h: New file, containing only the glob things needed for
11302         gnulib.
11303         (GLOB_PREFIX): Remove.  All uses changed to look for __GLOB_GNULIB.
11304         (__GLOB_CONCAT, __GLOB_XCONCAT, __GLOB_ID): Remove; no longer needed.
11305         (glob, globfree, glob_pattern_p): Now defined simply in terms of
11306         rpl_glob, rpl_globfree, rpl_glob_pattern_p.
11307         (__GLOB_GNULIB): New macro, to keep the glob.h changes clearer
11308         and to respect the namespace rules better.
11309
11310 2005-09-08  Simon Josefsson  <jas@extundo.com>
11311
11312         * modules/socklen: New file.
11313
11314 2005-09-08  Simon Josefsson  <jas@extundo.com>
11315
11316         * m4/socklen.m4: New file.
11317
11318 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
11319
11320         * modules/utimens (Files): Add m4/utimbuf.m4, since
11321         m4/utimens.m4 requires gl_CHECK_TYPE_STRUCT_UTIMBUF.
11322         Reported by Sergey Poznyakoff.
11323
11324 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
11325
11326         * lib/glob.c (glob, globfree, __glob_pattern_p): Use old-style function
11327         definitions, since that's the preferred style in glibc.
11328         Fix a minor spacing issue, and update copyright notice to match
11329         glibc's.
11330
11331 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
11332
11333         * config/srclist.txt: Remove glibc bug 1061; it's been fixed.
11334
11335 2005-09-06  Simon Josefsson  <jas@extundo.com>
11336
11337         * lib/getpass.c (getpass): Fix typo, test for HAVE_TCSETATTR and not
11338         TCSETATTR.  Reported by Derek Price <derek@ximbiot.com>.
11339
11340 2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
11341
11342         * lib/regex_internal.h (bitset_not): Add parens to avoid gcc -Wall
11343         warning.
11344
11345 2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
11346
11347         * config/srclist.txt: Add glibc bug 1302.
11348
11349 2005-09-05  Paul Eggert  <eggert@cs.ucla.edu>
11350
11351         Change bitset word type from unsigned int to unsigned long int,
11352         as this has better performance on typical 64-bit hosts.
11353         Port bitset code to hosts with unusual word sizes.
11354         * lib/regcomp.c (build_equiv_class, build_charclass, build_range_exp):
11355         (build_collating_symbol):
11356         Prefer bitset to re_bitset_ptr_t in prototypes, when the actual
11357         argument is a bitset.  This is merely a style issue, but it makes
11358         it clearer that an entire array is expected.
11359         (re_compile_fastmap_iter, init_dfa, init_word_char, optimize_subexps):
11360         * lib/regcomp.c (lower_subexp, parse_bracket_exp, built_charclass_op):
11361         Port to the case where bitset_word is not the same as unsigned int.
11362         * lib/regex_internal.h (bitset_set, bitset_clear, bitset_contain):
11363         (bitset_not, bitset_merge, bitset_set_all, bitset_mask):
11364         Likewise.
11365         * lib/regexec.c (check_dst_limits_calc_pos_1,
11366         check_subexp_matching_top):
11367         (build_trtable, group_nodes_into_DFAstates):
11368         Likewise.
11369         * lib/regcomp.c (re_compile_fastmap_iter, utf8_sb_map, optimize_utf8):
11370         Don't assume that SBC_MAX is a multiple of BITSET_WORD_BITS.
11371         * lib/regex_internal.h (bitset_set_all, bitset_not): Likewise.
11372         * lib/regexec.c (group_nodes_into_DFAstates): Likewise.
11373         * lib/regcomp.c (utf8_sb_map): Don't assume UINT_MAX == 0xffffffff.
11374         * lib/regcomp.c (optimize_subexps, lower_subexp):
11375         Work even if bitset_word has holes in its bitwise representation.
11376         * lib/regex_internal.h (BITSET_WORD_BITS): Likewise.
11377         * lib/regexec.c (check_dst_limits_calc_pos_1,
11378         check_subexp_matching_top):
11379         Likewise.
11380         * lib/regex_internal.c (re_string_reconstruct):
11381         Don't assume UCHAR_MAX == 255.
11382         * lib/regex_internal.h (bitset_set_all): Likewise.
11383         * lib/regex_internal.h (BITSET_WORD_BITS): Renamed from UINT_BITS.
11384         All uses changed.
11385         (BITSET_WORDS): Renamed from BITSET_UINTS.  All uses changed.
11386         (bitset_word): New type, replacing 'unsigned int' for bitset uses.
11387         All uses changed.
11388         (BITSET_WORD_MAX): New macro.
11389         (bitset_set, bitset_clear, bitset_contain, bitset_empty):
11390         (bitset_set_all, bitset_copy):  Now inline functions, not macros.
11391         (bitset_empty, bitset_copy):
11392         Prefer sizeof (bitset) to multiplying it out ourselves.
11393         (bitset_not_merge): Remove; unused.
11394         (bitset_contain): Return bool, not unsigned int with one bit on.
11395         All callers changed.
11396         * lib/regexec.c (build_trtable): Don't assume bitset has no stricter
11397         alignment than re_node_set; do this by defining a new internal
11398         type struct dests_alloc and using it to allocate memory.
11399
11400 2005-09-05  Bruno Haible  <bruno@clisp.org>
11401
11402         * gnulib-tool (func_import): Fix comparison in handling of symbolic
11403         links.
11404
11405 2005-09-04  Martin Lambers  <marlam@marlam.de>  (tiny change)
11406
11407         * modules/size_max (Makefile.am): Add size_max.h
11408
11409 2005-09-04  Derek Price  <derek@ximbiot.com>
11410
11411         * gnulib-tool (func_import): Fix reversed $symbolic logic.
11412
11413 2005-09-03  Simon Josefsson  <jas@extundo.com>
11414
11415         * gnulib-tool: Fix typo.
11416
11417 2005-09-03  Simon Josefsson  <jas@extundo.com>
11418
11419         * config/srclist.txt: Add glibc bug 1293.
11420
11421 2005-09-03  Derek Price  <derek@ximbiot.com>
11422
11423         * m4/getlogin_r (gl_GETLOGIN_R): Fix cut & paste error.
11424         From Larry Jones <lawrence.jones@ugs.com>.
11425
11426 2005-09-02  Simon Josefsson  <jas@extundo.com>
11427
11428         * modules/socklen: New file.
11429
11430 2005-09-02  Simon Josefsson  <jas@extundo.com>
11431
11432         * modules/havelib: New module.
11433
11434         * modules/gettext, modules/iconv, modules/lock, modules/readline:
11435         Use havelib.
11436
11437 2005-09-02  Paul Eggert  <eggert@cs.ucla.edu>
11438
11439         Check for arithmetic overflow when calculating sizes, to prevent
11440         some buffer-overflow issues.  These patches are conservative, in the
11441         sense that when I couldn't determine whether an overflow was possible,
11442         I inserted a run-time check.
11443         * lib/regex_internal.h (re_xmalloc, re_xrealloc, re_x2realloc): New
11444         macros.
11445         (SIZE_MAX) [!defined SIZE_MAX]: New macro.
11446         (re_alloc_oversized, re_x2alloc_oversized, re_xnmalloc):
11447         (re_xnrealloc, re_x2nrealloc): New inline functions.
11448         * lib/regcomp.c (init_dfa, analyze, build_range_exp,
11449         parse_bracket_exp):
11450         (build_equiv_class, build_charclass): Check for arithmetic overflow
11451         in size expression calculations.
11452         * lib/regex_internal.c (re_string_realloc_buffers):
11453         (build_wcs_upper_buffer, re_node_set_add_intersect):
11454         (re_node_set_init_union, re_node_set_insert, re_node_set_insert_last):
11455         (re_dfa_add_node, register_state): Likewise.
11456         * lib/regexec.c (re_search_stub, re_copy_regs, re_search_internal):
11457         (prune_impossible_nodes, push_fail_stack, set_regs, check_arrival):
11458         (build_trtable, extend_buffers, match_ctx_init, match_ctx_add_entry):
11459         (match_ctx_add_subtop, match_ctx_add_sublast): Likewise.
11460
11461 2005-09-02  Paul Eggert  <eggert@cs.ucla.edu>
11462
11463         * modules/inttostr (Files): Add m4/inttypes_h.m4, m4/stdint_h.m4,
11464         m4/ulonglong.m4.  Problem reported by Martin Lambers.
11465
11466 2005-09-02  Bruno Haible  <bruno@clisp.org>
11467
11468         Support for lib vs. lib64 distinction on biarch platforms.
11469         * m4/lib-prefix.m4 (AC_LIB_PREPARE_MULTILIB): New macro.
11470         (AC_LIB_PREFIX): Require it. Use $acl_libdirstem instead of 'lib'.
11471         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Likewise.
11472
11473 2005-09-02  Bruno Haible  <bruno@clisp.org>
11474
11475         * gnulib-tool (import): In the other first-use case, provide defaults
11476         as well.
11477
11478 2005-09-02  Bruno Haible  <bruno@clisp.org>
11479
11480         * config/srclist.txt: lib-link.m4 and lib-prefix.m4 currently have
11481         patches not yet found in the latest gettext release.
11482
11483 2005-09-01  Paul Eggert  <eggert@cs.ucla.edu>
11484
11485         * lib/glob.c (GET_LOGIN_NAME_MAX): Renamed from LOGIN_NAME_MAX,
11486         to avoid a collision with bits/local_lim.h in glibc.
11487         All uses changed.  Problem reported by Dmitry V. Levin in
11488         <http://sources.redhat.com/bugzilla/show_bug.cgi?id=1060>.
11489
11490         * lib/regex_internal.c (build_wcs_upper_buffer): Fix portability
11491         bugs in int versus size_t comparisons.
11492         (re_string_context_at): Fix bug where the code assumed that
11493         Idx is signed.
11494
11495         Use bool where appropriate.
11496         * lib/regcomp.c (re_set_fastmap): ICASE arg is bool, not int.
11497         All callers changed.
11498         (calc_eclosure_iter): Likewise, for ROOT arg.
11499         (parse_bracket_element): Likewise, for ACCEPT_HYPHEN arg.
11500         (build_charclass_op): Likewise, for NON_MATCH arg.
11501         * lib/regex_internal.c (re_string_allocate, re_string_construct):
11502         (re_string_construct_common): Likewise, for ICASE arg.
11503         * lib/regexec.c (re_search_2_stub, re_search_stub):
11504         Likewise, for RET_LEN arg.
11505         (check_matching): Likewise, for FL_LONGEST_MATCH arg.
11506         (set_regs): Likewise, for FL_BACKTRACK arg.
11507         * lib/regcomp.c (re_compile_fastmap_iter, optimize_utf8):
11508         (duplicate_node_closure, calc_inveclosure, calc_eclosure):
11509         (calc_eclosure_iter, parse_bracket_exp):
11510         Use bool for internal variables that are booleans.
11511         * lib/regexec.c (re_search_internal, check_matching,
11512         proceed_next_node):
11513         (set_regs, build_sifted_states, sift_states_bkref):
11514         (check_arrival_add_next_nodes, check_arrival_expand_ecl_sub):
11515         (expand_bkref_cache, build_trtable, group_nodes_into_DFAstates):
11516         (find_collation_sequence_value):
11517         Likewise.
11518         * lib/regex_internal.c (re_node_set_insert, re_node_set_insert_last):
11519         (re_node_set_compare):
11520         Return bool, not int. All callers changed.
11521         * lib/regexec.c (check_halt_node_context, check_dst_limits):
11522         (build_trtable, check_node_accept): Likewise.
11523         * lib/regex_internal.h: Include stdbool.h.
11524
11525         Fix bugs uncovered when converting to bool.
11526         * lib/regcomp.c (calc_eclosure_iter): Check for storage allocation
11527         failure instead of charging ahead blindly.
11528         * lib/regex_internal.c (register_state): Likewise.
11529         * lib/regexec.c (re_search_2_stub): Use simpler method than boolean
11530         for freeing internal storage.
11531         (group_nodes_into_DFA_states): Use unsigned int, not int, for
11532         bitset pieces used as boolean, to avoid undefined behavior
11533         on hosts that do int overflow checking.
11534
11535 2005-09-01  Paul Eggert  <eggert@cs.ucla.edu>
11536
11537         * config/srclist.txt: Add glibc bugs 1285-1287.
11538
11539 2005-09-01  Jim Meyering  <jim@meyering.net>
11540
11541         * m4/lchown.m4: Require gl_FUNC_CHOWN, for the definition of
11542         CHOWN_MODIFIES_SYMLINK, which is used by lchown.c.
11543         Require gl_STAT_MACROS, too.
11544
11545 2005-09-01  Bruno Haible  <bruno@clisp.org>
11546
11547         * gnulib-tool (import): In the first-use case, provide defaults.
11548
11549 2005-09-01  Bruno Haible  <bruno@clisp.org>
11550
11551         * gnulib-tool (func_import): Remove the .tmp files.
11552
11553 2005-09-01  Bruno Haible  <bruno@clisp.org>
11554
11555         * gnulib-tool (func_import): Fix handling of symbolic links.
11556
11557 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
11558
11559         On 64-bit hosts (where size_t is 64 bits and int is 32 bits), the
11560         old glibc regex code mishandles strings longer than 2**31 bytes.
11561         This patch fixes this when the regex code is used in gnulib
11562         (i.e., outside glibc).
11563
11564         This patch should not affect the use of the regex code inside
11565         glibc.  No doubt this problem also needs to be handled for glibc
11566         as well, but the result will be an incompatible change to the
11567         glibc ABI, and the old ABI will have to be supported too.  That
11568         can be the the subject for another patch.
11569
11570         * lib/regex.h (_REGEX_LARGE_OFFSETS): New feature-test macro,
11571         governing whether the rest of this patch is active.  By default,
11572         the macro is disabled and the patch has no effect.
11573         (regoff_t) [defined _REGEX_LARGE_OFFSETS]: Define to off_t, not int.
11574         (__re_idx_t, __re_size_t, __re_long_size_t): New types.
11575         (struct re_pattern_buffer, re_search, re_search_2, re_match):
11576         (re_match_2, re_set_registers): Use the new types.
11577         * lib/regex_internal.h (Idx, re_hashval_t): New types.
11578         (REG_MISSING, REG_ERROR, REG_VALID_INDEX, REG_VALID_NONZERO_INDEX):
11579         New macros.
11580         (re_node_set, re_charset_t, re_token_t, re_string_realloc_buffers):
11581         (re_string_context_at, bin_tree_t, re_dfastate_t):
11582         (struct re_state_table_entry, state_array_t, re_sub_match_last_t):
11583         (re_sub_match_top_t, re_match_context_t, re_sift_context_t):
11584         (struct re_fail_stack_ent_t, struct re_fail_stack_t, struct re_dfa_t):
11585         (re_string_char_size_at, re_string_wchar_at):
11586         (re_string_elem_size_at):
11587         Use the new types and macros to port to 64-bit hosts.
11588         Use unsigned types for internal values, so that the code
11589         mostly works even for arrays larger than SSIZE_MAX.
11590         * lib/regcomp.c (re_compile_internal, init_dfa, duplicate_node):
11591         (search_duplicated_node, calc_eclosure_iter, fetch_number):
11592         (parse_reg_exp, parse_branch, parse_expression, parse_sub_exp):
11593         (build_equiv_class, build_charclass, re_compile_fastmap_iter):
11594         (free_dfa_content, create_initial_state, optimize_utf8, analyze):
11595         (optimize_subexps, calc_first, link_nfa_nodes, duplicate_node_closure):
11596         (calc_inveclosure, parse_dup_op, build_range_exp):
11597         (build_collating_symbol, parse_bracket_exp, build_charclass_op):
11598         (fetch_number, create_token_tree, mark_opt_subexp):
11599         Likewise.
11600         * lib/regex_internal.c (re_string_construct_common,
11601         create_ci_newstate):
11602         (create_cd_newstate, re_string_allocate, re_string_construct):
11603         (re_string_realloc_buffers, build_wcs_upper_buffer):
11604         (re_string_skip_chars, build_upper_buffer, re_string_translate_buffer):
11605         (re_string_reconstruct, re_string_peek_byte_case):
11606         (re_string_fetch_byte_case, re_string_context_at):
11607         (re_node_set_alloc, re_node_set_init_1, re_node_set_init_2):
11608         (re_node_set_init_copy, re_node_set_add_intersect):
11609         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
11610         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
11611         (re_node_set_remove_at, re_dfa_add_node, calc_state_hash):
11612         (re_acquire_state, re_acquire_state_context, register_state):
11613         Likewise.
11614         * lib/regex.c (match_ctx_init, match_ctx_add_entry,
11615         search_cur_bkref_entry):
11616         (match_ctx_add_subtop, match_ctx_add_sublast, sift_ctx_init):
11617         (re_search_internal, re_search_2_stub, re_search_stub)
11618         (re_copy_regs, check_matching, check_halt_state_context, update_regs):
11619         (push_fail_stack, sift_states_iter_mb, build_sifted_states):
11620         (update_cur_sifted_state, check_dst_limits):
11621         (check_dst_limits_calc_pos_1, check_dst_limits_calc_pos):
11622         (check_subexp_limits, sift_states_bkref, merge_state_array):
11623         (check_subexp_matching_top, get_subexp, get_subexp_sub):
11624         (find_subexp_node, check_arrival, check_arrival_add_next_nodes):
11625         (check_arrival_expand_ecl, check_arrival_expand_ecl_sub):
11626         (expand_bkref_cache, check_node_accept_bytes):
11627         (group_nodes_into_DFAstates, check_node_accept, regexec, re_match):
11628         (re_search, re_match_2, re_search_2, prune_impossible_nodes):
11629         (acquire_init_state_context, check_halt_node_context):
11630         (proceed_next_node, pop_fail_stack, set_regs, free_fail_stack_return):
11631         (sift_states_backward, clean_state_log_if_needed):
11632         (sub_epsilon_src_nodes, add_epsilone_src_nodes, merge_state_with_log):
11633         (find_recover_state, transit_state_sb, transit_state_mb):
11634         (transit_state_bkref, build_trtable, match_ctx_clean):
11635         Likewise.
11636         * lib/regcomp.c (parse_dup_op): Add an extra test if Idx is unsigned,
11637         to work around an assumption that REG_MISSING is negative.
11638
11639         * lib/regcomp.c (re_comp) [defined _REGEX_RE_COMP || defined _LIBC]:
11640         (seek_collating_symbol_entry) [defined _LIBC]:
11641         (lookup_collation_sequence_value) [defined _LIBC]:
11642         (build_range_exp, build_collating_symbol) [defined _LIBC]:
11643         Use prototypes rather than old-style function definitions.
11644         * lib/regexec.c (re_exec) [defined _REGEX_RE_COMP || defined _LIBC]:
11645         (transit_state_sb) [0]:
11646         (find_collation_sequence_value) [defined _LIBC]: Likewise.
11647
11648         * lib/regexec.c (re_search_internal): Simplify update of rm_so and
11649         rm_eo.
11650
11651         * lib/regcomp.c (re_compile_fastmap_iter, init_dfa, init_word_char):
11652         (optimize_subexps, lower_subexp):
11653         Don't assume 1<<31 has defined behavior on hosts with 32-bit int,
11654         since the signed shift might overflow.  Use 1u<<31 instead.
11655         * lib/regex_internal.h (bitset_set, bitset_clear, bitset_contain):
11656         Likewise.
11657         * lib/regexec.c (check_dst_limits_calc_pos_1,
11658         check_subexp_matching_top): Likewise.
11659
11660         * lib/regcomp.c (optimize_subexps, lower_subexp):
11661         Use CHAR_BIT rather than 8, for clarity.
11662         * lib/regexec.c (check_dst_limits_calc_pos_1):
11663         (check_subexp_matching_top): Likewise.
11664         * lib/regcomp.c (init_dfa): Make table_size unsigned, so that we don't
11665         have to worry about portability issues when shifting it left.
11666         Remove no-longer-needed test for table_size > 0.
11667         * lib/regcomp.c (parse_sub_exp): Do not shift more bits than there are
11668         in a word, as the resulting behavior is undefined.
11669         * lib/regexec.c (check_dst_limits_calc_pos_1): Likewise;
11670         in one case, a <= should have been an <, and in another case the
11671         whole test was missing.
11672         * lib/regex_internal.h (BYTE_BITS): Remove.  All uses changed to
11673         the standard name CHAR_BIT.
11674         * lib/regexec.c (match_ctx_add_entry): Don't assume that ~0 == -1;
11675         this is not true on one's complement and signed-magnitude hosts.
11676
11677         * lib/regex_internal.h (re_sub_match_top_t): Remove unused member
11678         next_last_offset.
11679         (struct re_dfa_t): Remove unused member states_alloc.
11680         * lib/regcomp.c (init_dfa): Don't initialize unused members.
11681
11682 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
11683
11684         * m4/regex.m4 (gl_REGEX): Require AC_SYS_LARGEFILE, Define
11685         _REGEX_LARGE_OFFSETS).  Test for regoff_t/off_t bug in 64-bit
11686         and large-file glibc and in 32-bit large-file Solaris.
11687
11688 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
11689
11690         * lib/regex_internal.c (re_string_reconstruct): Don't assume buffer
11691         lengths fit in regoff_t; this isn't true if regoff_t is the same
11692         width as size_t.
11693         * lib/regex.c (re_search_internal): 5th arg is LAST_START
11694         (= START + RANGE) instead of RANGE.  This avoids overflow
11695         problems when regoff_t is the same width as size_t.
11696         All callers changed.
11697         (re_search_2_stub): Check for overflow when adding the
11698         sizes of the two strings.
11699         (re_search_stub): Check for overflow when adding START
11700         to RANGE; if it occurs, substitute the extreme value.
11701
11702 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
11703
11704         * config/srclist.txt: Add glibc bugs 1273, 1278-1282, 1284.
11705
11706 2005-08-31  Jim Meyering  <jim@meyering.net>
11707
11708         * lib/regcomp.c (search_duplicated_node): Make first pointer arg
11709         a pointer-to-const.
11710         * lib/regex_internal.c (create_ci_newstate, create_cd_newstate):
11711         (register_state): Likewise.
11712         * lib/regexec.c (search_cur_bkref_entry, check_dst_limits):
11713         (check_dst_limits_calc_pos_1, check_dst_limits_calc_pos):
11714         (group_nodes_into_DFAstates): Likewise.
11715
11716 2005-08-31  Jim Meyering  <jim@meyering.net>
11717
11718         * check-module: Add a FIXME comment.
11719
11720 2005-08-31  Eric Blake  <ebb9@byu.net>
11721
11722         * modules/unistd-safer (Files): Add unistd--.h.
11723         * modules/stdio-safer (Files): Add stdio--.h.
11724
11725 2005-08-31  Derek Price  <derek@ximbiot.com>
11726
11727         * lib/getdelim.c (getdelim): Return EOF on EOF.
11728         Reported by Larry Jones <lawrence.jones@ugs.com>.
11729
11730 2005-08-31  Bruno Haible  <bruno@clisp.org>
11731
11732         Avoid unnecessary diffs in the generated lib/Makefile.am.
11733         * gnulib-tool (func_emit_lib_Makefile_am): Don't write the cmd into
11734         the generated files.
11735         (func_import): Don't set cmd.
11736
11737 2005-08-31  Bruno Haible  <bruno@clisp.org>
11738
11739         * lib/strstr.c: Include <stddef.h>, for NULL.
11740         * lib/strcasestr.c: Likewise.
11741         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
11742
11743 2005-08-31  Bruno Haible  <bruno@clisp.org>
11744
11745         * gnulib-tool: New option --macro-prefix.
11746         (func_import): Use macro_prefix.
11747         (import): Handle option --macro-prefix.
11748
11749 2005-08-31  Bruno Haible  <bruno@clisp.org>
11750
11751         * gnulib-tool (import): Rename most ac_* variables to cached_*.
11752         Also use new variables cached_lgpl, cached_libtool.
11753
11754 2005-08-31  Bruno Haible  <bruno@clisp.org>
11755
11756         * gnulib-tool (func_import): Require AC_GNU_SOURCE etc. instead of
11757         always instantiating them.
11758
11759 2005-08-31  Bruno Haible  <bruno@clisp.org>
11760
11761         * gnulib-tool (func_import): Read the previous cached settings
11762         from gnulib-cache.m4 and gnulib-comp.m4. Remove files that were
11763         earlier added by gnulib but are now dropped. Warn when a gnulib file
11764         overwrites a non-gnulib file.
11765
11766 2005-08-31  Bruno Haible  <bruno@clisp.org>
11767
11768         * gnulib-tool (func_import): Generate two files gnulib-cache.m4 and
11769         gnulib-comp.m4 instead of a single gnulib.m4, to make it easy for
11770         projects that don't keep autogenerated files in CVS. Put into
11771         actioncmd only the specified modules, not the transitive closure.
11772
11773 2005-08-31  Bruno Haible  <bruno@clisp.org>
11774
11775         * gnulib-tool (func_import): Fix defaulting of $libname and $libtool.
11776         Create directories that shall be filled.
11777         (import): Don't look for gl_* macros in configure.ac. Recurse across
11778         all directories containing a gnulib-cache.m4 files, if meaningful.
11779
11780 2005-08-31  Bruno Haible  <bruno@clisp.org>
11781
11782         * gnulib-tool (func_import): Emit also a stub for gl_LIBTOOL.
11783         (import): Set seen_libtool when we see gl_LIBTOOL.
11784
11785 2005-08-31  Bruno Haible  <bruno@clisp.org>
11786
11787         * gnulib-tool (func_import): Also copy m4/gnulib-tool.m4. Omit
11788         declaration macro definitions from generated gnulib.m4.
11789
11790 2005-08-30  Oskar Liljeblad  <oskar@osk.mine.nu>
11791
11792         * lib/iconvme.h: Add prototype for iconv_alloc.
11793
11794 2005-08-29  Simon Josefsson  <jas@extundo.com>
11795
11796         * lib/iconvme.c: Fix errno.
11797
11798 2005-08-29  Bruno Haible  <bruno@clisp.org>
11799
11800         * gnulib-tool: Enclose all occurrences of $destdir in "...", so
11801         that it works when the directory contains spaces.
11802
11803 2005-08-29  Bruno Haible  <bruno@clisp.org>
11804
11805         * gnulib-tool (import): Avoid unnecessary spaces in $avoidlist.
11806
11807 2005-08-29  Bruno Haible  <bruno@clisp.org>
11808
11809         * gnulib-tool (func_import): Emit more comments into gnulib.m4.
11810         Emit more advice.
11811
11812 2005-08-29  Bruno Haible  <bruno@clisp.org>
11813         and Stepan Kasal  <kasal@ucw.cz>
11814
11815         * check-module: If more parameters are given, check each of them
11816         separately; add more exceptions, as noted by Jim Meyering.
11817         (check_module): New procedure.
11818         (%exempt_header): Now contains all exceptions.
11819
11820 2005-08-29  Ben Pfaff  <blp@cs.stanford.edu>
11821
11822         * modules/byteswap (Makefile.am): Fix rule to not assume GNU make.
11823
11824 2005-08-29  Oskar Liljeblad  <oskar@osk.mine.nu>
11825
11826         * lib/iconvme.c: Split iconv_string into iconv_alloc.
11827
11828 2005-08-28  Bruno Haible  <bruno@clisp.org>
11829
11830         * m4/gnulib-tool.m4: New file.
11831
11832 2005-08-27  Jim Meyering  <jim@meyering.net>
11833
11834         * modules/unistd-safer (Files): Add pipe-safer.c.
11835         * modules/fcntl-safer (Files): Add creat-safer.c.
11836
11837 2005-08-27  Jim Meyering  <jim@meyering.net>
11838
11839         * m4/stdlib-safer.m4: New file.  From coreutils.
11840         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Add stdio--.h.
11841         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Add creat-safer.c to the
11842         AC_LIBSOURCES list and arrange to compile it via AC_LIBOBJ.
11843         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Likewise, add pipe-safer.c.
11844         Add pipe-safer.c and unistd--.h to the AC_LIBSOURCES list.
11845
11846 2005-08-27  Jim Meyering  <jim@meyering.net>
11847
11848         * lib/fopen-safer.c: Merge minor changes from coreutils.
11849         * lib/dup-safer.c: Likewise.
11850         * lib/fd-safer.c: Likewise.
11851
11852         Merge from coreutils.
11853         * lib/stdio--.h: New file.
11854         * lib/stdlib--.h: New file.
11855         * lib/mkstemp-safer.c: New file.
11856
11857         GNU tar needs these.
11858         * lib/pipe-safer.c: New file.
11859         * lib/creat-safer.c: New file.
11860         * lib/fcntl--.h (creat): Define to creat_safer.
11861         * lib/fcntl-safer.h: Include <sys/types.h> and declare creat_safer.
11862         * lib/unistd--.h (pipe): Define to pipe_safer.
11863         * lib/unistd-safer.h: Declare pipe_safer.
11864
11865 2005-08-26  Simon Josefsson  <jas@extundo.com>
11866
11867         * lib/getpass.c: Use _WIN32 instead of WIN32, suggested by Bruno
11868         Haible <bruno@clisp.org>.
11869
11870 2005-08-26  Paul Eggert  <eggert@cs.ucla.edu>
11871
11872         * lib/regex_internal.h: Remove all references to
11873         RE_NO_INTERNAL_PROTOTYPES; no longer neeeded now that we assume C89
11874         or better.
11875         (bitset_not, bitset_merge, bitset_not_merge):
11876         (bitset_mask, re_string_allocate, re_string_construct):
11877         (re_string_reconstruct, re_string_destruct, re_string_elem_size_at):
11878         (re_string_char_size_at, re_string_wchar_at, re_string_peek_byte_case):
11879         (re_string_fetch_byte_case, re_node_set_alloc, re_node_set_init_1):
11880         (re_node_set_init_2, re_node_set_init_copy, re_node_set_add_intersect):
11881         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
11882         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
11883         (re_node_set_remove_at, re_dfa_add_node, re_acquire_state):
11884         (re_acquire_state_context):
11885         Remove unnecessary forward decls.
11886         (re_string_char_size_at, re_string_wchar_at, re_string_elem_size_at):
11887         Put __attribute at function definition,
11888         now that the function decl has been removed.
11889         * lib/regex_internal.c (re_string_peek_byte_case):
11890         (re_string_fetch_byte_case, re_node_set_compare, re_node_set_contains):
11891         Likewise.
11892
11893 2005-08-25  Stepan Kasal  <kasal@ucw.cz>
11894
11895         * m4/regex.m4: Add AC_PREREQ(2.50).
11896         (gl_REGEX): If --with-included-regex was given, skip the autodetection.
11897
11898 2005-08-25  Simon Josefsson  <jas@extundo.com>
11899
11900         * m4/getpass.m4: Check for termios.h, tcgetattr, tcsetattr, and
11901         __fsetlocking.
11902
11903 2005-08-25  Simon Josefsson  <jas@extundo.com>
11904
11905         * lib/getpass.c: Add WIN32 implementation.  Conditionalize use of
11906         termios.h, tcgetattr, tcsetattr and __fsetlocking.  Remove some
11907         GLIBC specific code.
11908
11909 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
11910
11911         Make regex safe for g++.  This fixes one real bug (an "err"
11912         that should have been "*err").  g++ problem reported by
11913         Sam Steingold.
11914         * lib/regex_internal.h (re_calloc): New macro, consistent with
11915         re_malloc etc.  All callers of calloc changed to use re_calloc.
11916         * lib/regex_internal.c (build_wcs_upper_buffer): Return reg_errcode_t,
11917         not int.  All callers changed.
11918         * lib/regcomp.c (re_compile_fastmap_iter): Don't use
11919         alloca (mb_cur_max); just use an array of size MB_LEN_MAX.
11920         * lib/regexec.c (push_fail_stack): Use re_realloc, not realloc.
11921         (find_recover_state): Change "err" to "*err"; this fixes what
11922         appears to be a real bug.
11923         (check_arrival_expand_ecl_sub): Be consistent about reg_errcode_t
11924         versus int.
11925
11926 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
11927
11928         * modules/regex (Depends-on): Add malloc, since the code
11929         assumes that !malloc(0) means failure.
11930
11931 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
11932
11933         * lib/regexec.c (set_regs): Don't alloca with an unbounded size.
11934
11935         alloca modernization/simplification for regex.
11936         * lib/regex.c: Remove portability cruft for alloca.  This no longer
11937         needs to be at the start of the file, and can be moved into
11938         regex_internal.h and simplified.
11939         * lib/regex_internal.h: Include <alloca.h>.
11940         (__libc_use_alloca) [!defined _LIBC]: New macro.
11941         * lib/regexec.c (build_trtable): Remove "#ifdef _LIBC", since the code
11942         now works outside glibc.
11943
11944 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
11945
11946         * config/srclist.txt: Add glibc bugs 1241, 1245.
11947
11948 2005-08-25  Jim Meyering  <jim@meyering.net>
11949
11950         * lib/open-safer.c: Include <config.h>.
11951         Otherwise, we'd lose LARGEFILE support in any file using
11952         e.g. "fcntl--.h"
11953
11954 2005-08-25  Bruno Haible  <bruno@clisp.org>
11955
11956         * m4/minmax.m4: Require autoconf 2.52.
11957         (gl_MINMAX_IN_HEADER): Add comments. Use m4_pushdef/m4_popdef instead
11958         of define/undefine. Use AS_TR_SH and AS_TR_CPP as more robust
11959         alternatives of translit over the alphabet.
11960         Based on a patch from Stepan Kasal <kasal@ucw.cz>.
11961
11962 2005-08-24  Simon Josefsson  <jas@extundo.com>
11963
11964         * tests/test-getpass.c: New file.
11965
11966 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
11967
11968         * m4/regex.m4 (gl_REGEX): Use POSIX-compliant spellings when testing
11969         for GNU regex features.
11970
11971 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
11972
11973         * lib/regcomp.c (regerror): 2nd arg is 'restrict', as per POSIX.
11974         * lib/regex.h (regerror): Likewise.
11975
11976         * lib/regex.c: Do not include <sys/types.h>, as POSIX no longer
11977         requires this.  (The code never needed it.)
11978
11979         * lib/regcomp.c, regex_internal.c, regex_internal.h, regexec.c:
11980         All uses of recently-renamed identifiers changed to use the new,
11981         POSIX-compliant names.  The code will build and run just fine
11982         without these changes, but it's better to eat our own dog food
11983         and use the standard-conforming names.
11984
11985         * lib/regex.h: Fix a multitude of POSIX name space violations.
11986         These changes have an effect only for programs that define
11987         _POSIX_C_SOURCE, _POSIX_SOURCE, or _XOPEN_SOURCE; they
11988         do not change anything for programs compiled in the normal way.
11989         Also, there is no effect on the ABI.
11990
11991         (_REGEX_SOURCE): New macro.
11992         Do not include <stddef.h> if _XOPEN_SOURCE and VMS are both
11993         defined and _GNU_SOURCE is not; this fixes a name space violation.
11994
11995         Rename the following macros to obey POSIX requirements.
11996         The old names are still visible as macros if _REGEX_SOURCE is defined.
11997         (REG_BACKSLASH_ESCAPE_IN_LISTS): renamed from
11998         RE_BACKSLASH_ESCAPE_IN_LISTS.
11999         (REG_BK_PLUS_QM): renamed from RE_BK_PLUS_QM.
12000         (REG_CHAR_CLASSES): renamed from RE_CHAR_CLASSES.
12001         (REG_CONTEXT_INDEP_ANCHORS): renamed from RE_CONTEXT_INDEP_ANCHORS.
12002         (REG_CONTEXT_INDEP_OPS): renamed from RE_CONTEXT_INDEP_OPS.
12003         (REG_CONTEXT_INVALID_OPS): renamed from RE_CONTEXT_INVALID_OPS.
12004         (REG_DOT_NEWLINE): renamed from RE_DOT_NEWLINE.
12005         (REG_DOT_NOT_NULL): renamed from RE_DOT_NOT_NULL.
12006         (REG_HAT_LISTS_NOT_NEWLINE): renamed from RE_HAT_LISTS_NOT_NEWLINE.
12007         (REG_INTERVALS): renamed from RE_INTERVALS.
12008         (REG_LIMITED_OPS): renamed from RE_LIMITED_OPS.
12009         (REG_NEWLINE_ALT): renamed from RE_NEWLINE_ALT.
12010         (REG_NO_BK_BRACES): renamed from RE_NO_BK_BRACES.
12011         (REG_NO_BK_PARENS): renamed from RE_NO_BK_PARENS.
12012         (REG_NO_BK_REFS): renamed from RE_NO_BK_REFS.
12013         (REG_NO_BK_VBAR): renamed from RE_NO_BK_VBAR.
12014         (REG_NO_EMPTY_RANGES): renamed from RE_NO_EMPTY_RANGES.
12015         (REG_UNMATCHED_RIGHT_PAREN_ORD): renamed from
12016         RE_UNMATCHED_RIGHT_PAREN_ORD.
12017         (REG_NO_POSIX_BACKTRACKING): renamed from RE_NO_POSIX_BACKTRACKING.
12018         (REG_NO_GNU_OPS): renamed from RE_NO_GNU_OPS.
12019         (REG_DEBUG): renamed from RE_DEBUG.
12020         (REG_INVALID_INTERVAL_ORD): renamed from RE_INVALID_INTERVAL_ORD.
12021         (REG_IGNORE_CASE): renamed from RE_ICASE.  This renaming is a bit
12022         unusual, since we can't clash with the POSIX REG_ICASE.
12023         (REG_CARET_ANCHORS_HERE): renamed from RE_CARET_ANCHORS_HERE.
12024         (REG_CONTEXT_INVALID_DUP): renamed from RE_CONTEXT_INVALID_DUP.
12025         (REG_NO_SUB): renamed from RE_NO_SUB.
12026         (REG_SYNTAX_EMACS): renamed from RE_SYNTAX_EMACS.
12027         (REG_SYNTAX_AWK): renamed from RE_SYNTAX_AWK.
12028         (REG_SYNTAX_GNU_AWK): renamed from RE_SYNTAX_GNU_AWK.
12029         (REG_SYNTAX_POSIX_AWK): renamed from RE_SYNTAX_POSIX_AWK.
12030         (REG_SYNTAX_GREP): renamed from RE_SYNTAX_GREP.
12031         (REG_SYNTAX_EGREP): renamed from RE_SYNTAX_EGREP.
12032         (REG_SYNTAX_POSIX_EGREP): renamed from RE_SYNTAX_POSIX_EGREP.
12033         (REG_SYNTAX_ED): renamed from RE_SYNTAX_ED.
12034         (REG_SYNTAX_SED): renamed from RE_SYNTAX_SED.
12035         (_REG_SYNTAX_POSIX_COMMON): renamed from _RE_SYNTAX_POSIX_COMMON.
12036         (REG_SYNTAX_POSIX_BASIC): renamed from RE_SYNTAX_POSIX_BASIC.
12037         (REG_SYNTAX_POSIX_MINIMAL_BASIC): renamed from
12038         RE_SYNTAX_POSIX_MINIMAL_BASIC.
12039         (REG_SYNTAX_POSIX_EXTENDED): renamed from RE_SYNTAX_POSIX_EXTENDED.
12040         (REG_SYNTAX_POSIX_MINIMAL_EXTENDED): renamed from
12041         RE_SYNTAX_POSIX_MINIMAL_EXTENDED.
12042         (REG_DUP_MAX): renamed from RE_DUP_MAX.  No need to undef it.
12043         (REG_UNALLOCATED): Renamed from REGS_UNALLOCATED.
12044         (REG_REALLOCATE): Renamed from REGS_REALLOCATE.
12045         (REG_FIXED): Renamed from REGS_FIXED.
12046         (REG_NREGS): Renamed from RE_NREGS.
12047
12048         (REG_ICASE, REG_NEWLINE, REG_NOSUB): Do not depend on the values
12049         of other REG_* macros, since POSIX says the user is allowed to
12050         #undef these macros selectively.
12051
12052         (reg_errcode_t): Update comment stating what other tables need
12053         to be consistent.
12054
12055         Rename the following enum values to obey POSIX requirements.
12056         The old names are still visible as macros.
12057         (_REG_ENOSYS): Renamed from REG_ENOSYS.  Define even if _XOPEN_SOURCE
12058         is not defined, since GNU is supposed to be a superset of POSIX as
12059         much as possible, and since we want reg_errcode_t to be a signed
12060         type for implementation consistency.
12061         (_REG_NOERROR): Renamed from REG_NOERROR.
12062         (_REG_NOMATCH): Renamed from REG_NOMATCH.
12063         (_REG_BADPAT): Renamed from REG_BADPAT.
12064         (_REG_ECOLLATE): Renamed from REG_ECOLLATE.
12065         (_REG_ECTYPE): Renamed from REG_ECTYPE.
12066         (_REG_EESCAPE): Renamed from REG_EESCAPE.
12067         (_REG_ESUBREG): Renamed from REG_ESUBREG.
12068         (_REG_EBRACK): Renamed from REG_EBRACK.
12069         (_REG_EPAREN): Renamed from REG_EPAREN.
12070         (_REG_EBRACE): Renamed from REG_EBRACE.
12071         (_REG_BADBR): Renamed from REG_BADBR.
12072         (_REG_ERANGE): Renamed from REG_ERANGE.
12073         (_REG_ESPACE): Renamed from REG_ESPACE.
12074         (_REG_BADRPT): Renamed from REG_BADRPT.
12075         (_REG_EEND): Renamed from REG_EEND.
12076         (_REG_ESIZE): Renamed from REG_ESIZE.
12077         (_REG_ERPAREN): Renamed from REG_ERPAREN.
12078         (REG_ENOSYS, REG_NOERROR, REG_NOMATCH, REG_BADPAT, REG_ECOLLATE):
12079         (REG_ECTYPE, REG_EESCAPE, REG_ESUBREG, REG_EBRACK, REG_EPAREN):
12080         (REG_EBRACE, REG_BADBR, REG_ERANGE, REG_ESPACE, REG_BADRPT, REG_EEND):
12081         (REG_ESIZE, REG_ERPAREN): Now macros, not enum constants.
12082
12083         (_REG_RE_NAME, _REG_RM_NAME): New macros.
12084         (REG_TRANSLATE_TYPE): Renamed from RE_TRANSLATE_TYPE.  All uses
12085         changed.  But support the old name if the new one is not defined
12086         and if _REGEX_SOURCE.
12087
12088         Change the following member names in struct re_pattern_buffer.
12089         The old names are still supported if !_REGEX_SOURCE.
12090         The new names are always supported, regardless of _REGEX_SOURCE.
12091         (re_buffer): Renamed from buffer.
12092         (re_allocated): Renamed from allocated.
12093         (re_used): Renamed from used.
12094         (re_syntax): Renamed from syntax.
12095         (re_fastmap): Renamed from fastmap.
12096         (re_translate): Renamed from translate.
12097         (re_can_be_null): Renamed from can_be_null.
12098         (re_regs_allocated): Renamed from regs_allocated.
12099         (re_fastmap_accurate): Renamed from fastmap_accurate.
12100         (re_no_sub): Renamed from no_sub.
12101         (re_not_bol): Renamed from not_bol.
12102         (re_not_eol): Renamed from not_eol.
12103         (re_newline_anchor): Renamed from newline_anchor.
12104
12105         Change the following member names in struct re_registers.
12106         The old names are still supported if !_REGEX_SOURCE.
12107         The new names are always supported, regardless of _REGEX_SOURCE.
12108         (rm_num_regs): Renamed from num_regs.
12109         (rm_start): Renamed from start.
12110         (rm_end): Renamed from end.
12111
12112         (re_set_syntax, re_compile_pattern, re_compile_fastmap):
12113         (re_search, re_search_2, re_match, re_match_2, re_set_registers):
12114         Prepend __ to parameter names.
12115
12116         Undo yesterday's changes.
12117
12118 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
12119
12120         * config/srclist.txt: Remove glibc bug 1233 and add 1236, which
12121         supersedes it. Add glibc bugs 1237, 1238, 1240.  Comment out
12122         lib/regex.c.
12123
12124 2005-08-24  Jim Meyering  <jim@meyering.net>
12125
12126         Sync from coreutils.
12127         * m4/fcntl-safer.m4: New file.
12128
12129         * m4/xgetcwd.m4: Use AC_LIBSOURCES and AC_LIBOBJ to indicate source
12130         and object files for this module.
12131
12132 2005-08-24  Jim Meyering  <jim@meyering.net>
12133
12134         Sync from coreutils.
12135         * lib/fcntl--.h, lib/fcntl-safer.h, lib/open-safer.c: New files.
12136
12137 2005-08-24  Jim Meyering  <jim@meyering.net>
12138
12139         * modules/xgetcwd (Makefile.am): Remove `lib_SOURCES += ...' line,
12140         now that xgetcwd.m4 requires xgetcwd.c and xgetcwd.h.
12141
12142 2005-08-24  Jim Meyering  <jim@meyering.net>
12143
12144         * modules/fcntl-safer: New module.
12145         * modules/fts (Depends-on): Add fcntl-safer.
12146         * MODULES.html.sh (File descriptor based Input/Output):
12147         Add fcntl-safer.
12148
12149 2005-08-24  Bruno Haible  <bruno@clisp.org>
12150
12151         Support for unit test modules.
12152         * modules/README: Mention tests modules.
12153         * modules/TEMPLATE-TESTS: New file.
12154         * gnulib-tool: New options --extract-tests-module, --with-tests and
12155         --tests-base (unused for the moment).
12156         (testsbase, inctests): New variables.
12157         (func_all_modules): Exclude TEMPLATE-TESTS and *-tests.
12158         (func_verify_module): Exclude TEMPLATE-TESTS.
12159         (func_verify_nontests_module, func_verify_tests_module): New functions.
12160         (func_get_dependencies): Add implicit dependency for tests modules.
12161         (func_get_tests_module): New function.
12162         (func_modules_transitive_closure): When --with-tests was specified,
12163         include the unit tests as well, unless explicitly avoided.
12164         (func_emit_lib_Makefile_am): Ignore the tests modules here.
12165         (func_emit_tests_Makefile_am): New function.
12166         (func_create_testdir): When --with-tests was specified, emit a
12167         tests/ directory.
12168         * MODULES.html.sh (Future developments): Update.
12169
12170 2005-08-24  Bruno Haible  <bruno@clisp.org>
12171
12172         * modules/tls-tests: New file.
12173         * tests/test-tls.c: New file, from GNU gettext.
12174
12175 2005-08-24  Bruno Haible  <bruno@clisp.org>
12176
12177         * modules/lock-tests: New file.
12178         * tests/test-lock.c: New file, from GNU gettext.
12179
12180 2005-08-24  Bruno Haible  <bruno@clisp.org>
12181
12182         * lib/lock.h: Add multiple inclusion guard.
12183         * lib/tls.h: Add multiple inclusion guard.
12184
12185 2005-08-24  Bruno Haible  <bruno@clisp.org>
12186
12187         * gnulib-tool: Add support for the --aux-dir option to
12188         --create-testdir, --create-megatestdir, --test, --megatest.
12189         (func_create_testdir, func_create_megatestdir): Optionally emit a
12190         AC_CONFIG_AUX_DIR directive.
12191         (create-testdir, create-megatestdir, test, megatest): Provide a
12192         default value for $auxdir.
12193
12194 2005-08-24  Bruno Haible  <bruno@clisp.org>
12195
12196         * gnulib-tool (import): Use compound statement instead of subshell
12197         where possible.
12198
12199 2005-08-24  Bruno Haible  <bruno@clisp.org>
12200
12201         * gnulib-tool (import): Change --aux-dir default to "build-aux".
12202
12203 2005-08-24  Bruno Haible  <bruno@clisp.org>
12204
12205         * gnulib-tool (func_version): Update.
12206
12207 2005-08-24  Bruno Haible  <bruno@clisp.org>
12208
12209         * gnulib-tool (func_import, func_create_testdir,
12210         func_create_megatestdir): Quote all autoconf macro arguments.
12211
12212 2005-08-24  Bruno Haible  <bruno@clisp.org>
12213
12214         * gnulib-tool (func_create_megatestdir): Call autoreconf without the
12215         option --force, because --force causes the aclocal.m4 of each
12216         subdirectory to be newer than the corresponding config.h.in.
12217
12218 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
12219
12220         * m4/regex.m4 (gl_INCLUDED_REGEX): Remove; no longer used.
12221         All contents moved to gl_REGEX.
12222         (gl_REGEX): Don't bother checking whether lib/regex.c exists;
12223         assume that it does.
12224
12225 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
12226
12227         * lib/regex.h (REG_NOSYS)
12228         [!defined _XOPEN_SOURCE && 200112L <= _POSIX_C_SOURCE]:
12229         Define, since POSIX requires it as of 2001.
12230         (_REG_ENOSYS)
12231         [! (defined _XOPEN_SOURCE || 200112L <= _POSIX_C_SOURCE)]:
12232         New private symbol, used to keep the enum signed in all cases.
12233         * lib/regex.h (RE_NO_EMPTY_RANGES): Fix doc bug reported by James
12234         Youngman in
12235         <http://lists.gnu.org/archive/html/bug-gnulib/2005-07/msg00132.html>.
12236
12237         * lib/regex_internal.c (re_string_skip_chars, register_state):
12238         (calc_state_hash):
12239         Remove forward decls; no longer needed now that we use prototypes.
12240         * lib/regexec.c (acquire_init_state_context, check_halt_node_context):
12241         (proceed_next_node, pop_fail_stack, sub_epsilon_src_nodes):
12242         (clean_state_log_if_needed): Likewise.
12243
12244 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
12245
12246         * config/srclist.txt: Add glibc bugs 1231-1233.
12247
12248 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
12249
12250         Fix problems reported by Sam Steingold in
12251         <http://lists.gnu.org/archive/html/bug-gnulib/2005-08/msg00007.html>.
12252         * lib/regexec.c (sift_states_bkref): Fix portability bug: the code
12253         assumed that reg_errcode_t is a signed type, which is not
12254         necessarily true if _XOPEN_SOURCE is not defined.
12255         * lib/regex_internal.c (calc_state_hash): Put 'inline' before type,
12256         since some compilers warn about it otherwise.
12257
12258 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
12259
12260         * lib/regcomp.c (create_initial_state): Remove duplicate decl.
12261         (init_word_char, create_initial_state, duplicate_node_closure):
12262         (fetch_token, peek_token_bracket, build_range_exp):
12263         (build_collating_symbol): Remove forward decls; no longer needed
12264         now that we use prototypes.
12265
12266         * lib/regcomp.c:
12267         (re_compile_pattern, re_set_syntax, re_compile_fastmap):
12268         (re_compile_fastmap_iter, regcomp, regerror, regfree):
12269         (re_compile_internal, init_dfa, init_word_char, free_workarea_compile):
12270         (create_initial_state, optimize_utf8, analyze, postorder, preorder):
12271         (optimize_subexps, lower_subexps, lower_subexp, calc_first, calc_next):
12272         (link_nfa_nodes, duplicate_node_closure, search_duplicated_node):
12273         (duplicate_node, calc_inveclosure, calc_eclosure, calc_eclosure_iter):
12274         (fetch_token, peek_token, peek_token_bracket, parse, parse_reg_exp):
12275         (parse_branch, parse_expression, parse_sub_exp, parse_dup_op):
12276         (build_range_exp, build_collating_symbol, parse_bracket_exp):
12277         (parse_bracket_element, parse_bracket_symbol, build_equiv_class):
12278         (build_charclass, build_charclass_op, fetch_number, create_tree):
12279         (create_token_tree, mark_opt_subexp, duplicate_tree):
12280         Use prototypes rather than old-style definitions.
12281
12282         * lib/regex_internal.c:
12283         (re_string_allocate, re_string_construct, re_string_realloc_buffers):
12284         (re_string_construct_common, build_wcs_buffer, build_wcs_upper_buffer):
12285         (re_string_skip_chars, build_upper_buffer, re_string_translate_buffer):
12286         (re_string_reconstruct, re_string_peek_byte_case):
12287         (re_string_fetch_byte_case, re_string_destruct, re_string_context_at):
12288         (re_node_set_alloc, re_node_set_init_1, re_node_set_init_2):
12289         (re_node_set_init_copy, re_node_set_add_intersect):
12290         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
12291         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
12292         (re_node_set_remove_at, re_dfa_add_node, calc_state_hash):
12293         (re_acquire_state, re_acquire_state_context, register_state):
12294         (create_ci_newstate, create_cd_newstate, free_state):
12295         Likewise.
12296         * lib/regexec.c (regexec, re_match, re_search, re_match_2,
12297         re_search_2):
12298         (re_search_2_stub, re_search_stub, re_copy_regs, re_set_registers):
12299         (re_search_internal, prune_impossible_nodes):
12300         (acquire_init_state_context, check_matching, static):
12301         (check_halt_node_context, check_halt_state_context, proceed_next_node):
12302         (push_fail_stack, pop_fail_stack, set_regs, free_fail_stack_return):
12303         (update_regs, sift_states_backward, build_sifted_states):
12304         (clean_state_log_if_needed, merge_state_array):
12305         (update_cur_sifted_state, add_epsilon_src_nodes):
12306         (sub_epsilon_src_nodes, check_dst_limits, check_dst_limits_calc_pos_1):
12307         (check_dst_limits_calc_pos, check_subexp_limits, sift_states_bkref):
12308         (sift_states_iter_mb, transit_state, merge_state_with_log, static):
12309         (find_recover_state, check_subexp_matching_top, transit_state_mb):
12310         (transit_state_bkref, get_subexp, get_subexp_sub, find_subexp_node):
12311         (check_arrival, check_arrival_add_next_nodes):
12312         (check_arrival_expand_ecl, check_arrival_expand_ecl_sub):
12313         (expand_bkref_cache, build_trtable, group_nodes_into_DFAstates):
12314         (check_node_accept_bytes, check_node_accept, extend_buffers):
12315         (match_ctx_init, match_ctx_clean, match_ctx_free, match_ctx_add_entry):
12316         (search_cur_bkref_entry, match_ctx_add_subtop, match_ctx_add_sublast):
12317         (sift_ctx_init):
12318         Likewise.
12319
12320         * lib/regex_internal.h:
12321         (re_string_allocate, re_string_construct, re_string_reconstruct):
12322         (re_string_realloc_buffers, build_wcs_buffer, build_wcs_upper_buffer):
12323         (build_upper_buffer, re_string_translate_buffer, re_string_destruct):
12324         (re_string_elem_size_at, re_string_char_size_at, re_string_wchar_at):
12325         (re_string_context_at, re_string_peek_byte_case):
12326         (re_string_fetch_byte_case): Declare even if RE_NO_INTERNAL_PROTOTYPES
12327         is defined, since we now use prototypes always.
12328
12329         * lib/regex.h (_RE_ARGS): Remove.  No longer needed, since we assume
12330         C89 or better.  All uses removed.
12331
12332 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
12333
12334         * config/srclist.txt: Add glibc bugs 1220-1227.
12335
12336 2005-08-20  Jim Meyering  <jim@meyering.net>
12337
12338         * lib/regexec.c (regexec, re_search_stub) [!_LIBC]: Omit declaration
12339         of unused local, dfa.
12340
12341 2005-08-20  Bruno Haible  <bruno@clisp.org>
12342
12343         * m4/regex.m4 (gl_PREREQ_REGEX): Require AC_GNU_SOURCE.
12344
12345 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
12346
12347         * lib/regex_internal.c (re_string_realloc_buffers, re_node_set_insert):
12348         (re_node_set_insert_last, re_dfa_add_node):
12349         Rename local variables to avoid GCC shadowing warnings.
12350
12351 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
12352
12353         * lib/regex_internal.c (re_acquire_state, re_acquire_state_context)
12354         [defined lint]: Suppress bogus uninitialized-variable warnings.
12355
12356         * lib/regcomp.c (duplicate_node): Return new index, not an error code,
12357         and let the caller return REG_ESPACE if out of space.  This
12358         removes an uninitialied-variable warning with GCC 4.0.1, and also
12359         avoids taking the address of a local variable.  All callers
12360         changed.
12361
12362 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
12363
12364         * config/srclist.txt: Comment out $LIBCSRC/posix/regex_internal.c,
12365         $LIBCSRC/posix/regexec.c.
12366         Add glibc bug 1217 for regcomp.c.
12367
12368 2005-08-19  Jim Meyering  <jim@meyering.net>
12369
12370         * lib/regexec.c (proceed_next_node): Redo local variables to
12371         avoid GCC shadowing warnings.
12372
12373 2005-08-18  Bruno Haible  <bruno@clisp.org>
12374
12375         * lib/strstr.c (strstr): Fix return value in multibyte case.
12376         * lib/strcasestr.c (strcasestr): Likewise.
12377
12378 2005-08-17  Paul Eggert  <eggert@cs.ucla.edu>
12379
12380         * lib/regex.h: Remove useless space-before-tab.  From coreutils.
12381
12382 2005-08-17  Jim Meyering  <jim@meyering.net>
12383
12384         Make the %s format (seconds since the epoch) work for a negative
12385         number and when used with a zero-padded field width, e.g. %015s.
12386
12387         * lib/strftime.c (my_strftime): Move the `do_number_sign_and_padding'
12388         label so that it precedes the code to set `digits'.  Otherwise,
12389         %0Ns wouldn't work.  Before this change, `date -d @-22 +%05s' would
12390         print `00-22'.  Now, it prints `-0022', as it should.
12391
12392 2005-08-17  Bruno Haible  <bruno@clisp.org>
12393
12394         * modules/strstr (Files): Add m4/mbrtowc.m4.
12395         (Depends-on): Add mbuiter.
12396
12397 2005-08-17  Bruno Haible  <bruno@clisp.org>
12398
12399         * modules/strcasestr: New file.
12400         * MODULES.html.sh (String handling, based on ANSI C 89): Add
12401         strcasestr.
12402
12403 2005-08-17  Bruno Haible  <bruno@clisp.org>
12404
12405         * modules/strcase (Depends-on): Add mbuiter. Remove strnlen1, mbchar.
12406
12407 2005-08-17  Bruno Haible  <bruno@clisp.org>
12408
12409         * modules/mbuiter: New file.
12410         * MODULES.html.sh (Extended multibyte and wide character utilities):
12411         Add mbuiter.
12412
12413 2005-08-17  Bruno Haible  <bruno@clisp.org>
12414
12415         * m4/strstr.m4 (gl_FUNC_STRSTR): Use the replacement function always.
12416         (gl_PREREQ_STRSTR): Use gl_FUNC_MBRTOWC.
12417
12418 2005-08-17  Bruno Haible  <bruno@clisp.org>
12419
12420         * m4/strcasestr.m4: New file.
12421
12422 2005-08-17  Bruno Haible  <bruno@clisp.org>
12423
12424         * lib/strstr.h: Ignore HAVE_STRSTR, always declare the gnulib function.
12425         * lib/strstr.c: Completely rewritten, with multibyte locale support.
12426
12427 2005-08-17  Bruno Haible  <bruno@clisp.org>
12428
12429         * lib/strcasestr.h: New file.
12430         * lib/strcasestr.c: New file.
12431
12432 2005-08-17  Bruno Haible  <bruno@clisp.org>
12433
12434         * lib/strcasecmp.c: Use mbuiter.h.
12435
12436 2005-08-17  Bruno Haible  <bruno@clisp.org>
12437
12438         * lib/mbuiter.h: New file.
12439
12440 2005-08-16  Paul Eggert  <eggert@cs.ucla.edu>
12441
12442         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Do not override the results
12443         of gl_GETOPT_SUBSTITUTE.  That way, if both gl_GETOPT_SUBSTITUTE
12444         and gl_GETOPT are both invoked via different paths (as happens
12445         with GNU tar CVS because it uses both argp and getopt), the former
12446         wins.
12447
12448 2005-08-16  Bruno Haible  <bruno@clisp.org>
12449
12450         * modules/tls: New file.
12451         * MODULES.html.sh (Multithreading): Add tls.
12452
12453 2005-08-16  Bruno Haible  <bruno@clisp.org>
12454
12455         * modules/strnlen1: New file.
12456         * MODULES.html.sh (String handling): Add strnlen1.
12457
12458 2005-08-16  Bruno Haible  <bruno@clisp.org>
12459
12460         * modules/strcase (Files): Add m4/mbrtowc.m4.
12461         (Depends-on): Add strnlen1, mbchar.
12462
12463 2005-08-16  Bruno Haible  <bruno@clisp.org>
12464
12465         * modules/mbiter: New file.
12466         * MODULES.html.sh (Extended multibyte and wide character utilities):
12467         Add mbiter.
12468
12469 2005-08-16  Bruno Haible  <bruno@clisp.org>
12470
12471         * modules/mbfile: New file.
12472         * MODULES.html.sh (Extended multibyte and wide character utilities):
12473         Add mbfile.
12474
12475 2005-08-16  Bruno Haible  <bruno@clisp.org>
12476
12477         * modules/mbchar: New file.
12478         * MODULES.html.sh (Extended multibyte and wide character utilities):
12479         New section.
12480
12481 2005-08-16  Bruno Haible  <bruno@clisp.org>
12482
12483         * m4/tls.m4: New file, from GNU gettext.
12484
12485 2005-08-16  Bruno Haible  <bruno@clisp.org>
12486
12487         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Use the replacement function
12488         always.
12489         (gl_PREREQ_STRCASECMP): Use gl_FUNC_MBRTOWC.
12490
12491 2005-08-16  Bruno Haible  <bruno@clisp.org>
12492
12493         * m4/mbiter.m4: New file.
12494
12495 2005-08-16  Bruno Haible  <bruno@clisp.org>
12496
12497         * m4/mbfile.m4: New file.
12498
12499 2005-08-16  Bruno Haible  <bruno@clisp.org>
12500
12501         * m4/mbchar.m4: New file.
12502
12503 2005-08-16  Bruno Haible  <bruno@clisp.org>
12504
12505         * lib/tls.h: New file, from GNU gettext.
12506         * lib/tls.c: New file, from GNU gettext.
12507
12508 2005-08-16  Bruno Haible  <bruno@clisp.org>
12509
12510         * lib/strnlen1.h: New file.
12511         * lib/strnlen1.c: New file.
12512
12513 2005-08-16  Bruno Haible  <bruno@clisp.org>
12514
12515         * lib/strcasecmp.c (struct mbiter_multi): Remove at_end field.
12516         (mbi_init): Update.
12517         (mbi_avail, mbi_advance): Let the iteration end before the terminating
12518         NUL byte, not after it.
12519
12520 2005-08-16  Bruno Haible  <bruno@clisp.org>
12521
12522         * lib/strcase.h (strcasecmp): Add note in comments.
12523         * lib/strncasecmp.c: Use code from strcasecmp.c.
12524         * lib/strcasecmp.c: Use mbchar module. Define private mbiter variant.
12525         (strcasecmp): Work correctly in multibyte locales.
12526
12527 2005-08-16  Bruno Haible  <bruno@clisp.org>
12528
12529         * lib/mbiter.h: New file.
12530
12531 2005-08-16  Bruno Haible  <bruno@clisp.org>
12532
12533         * lib/mbfile.h: New file.
12534
12535 2005-08-16  Bruno Haible  <bruno@clisp.org>
12536
12537         * lib/mbchar.h: New file.
12538         * lib/mbchar.c: New file.
12539
12540 2005-08-16  Bruno Haible  <bruno@clisp.org>
12541
12542         * lib/mbchar.h (mb_cmp, mb_casecmp): Order the invalid characters after
12543         the valid ones. Makes the comparison operations transitive:
12544         cmp (a, b) < 0 && cmp (b, c) < 0 ==> cmp (a, c) < 0.
12545         * lib/strcasecmp.c (strcasecmp): Use mb_casecmp.
12546
12547 2005-08-15  Simon Josefsson  <jas@extundo.com>
12548
12549         * modules/ssize_t (License): Change to 'unlimited'.
12550
12551         * gnulib-tool (sed_extract_prog): Recognize 'unlimited' license.
12552
12553 2005-08-15  Paul Eggert  <eggert@cs.ucla.edu>
12554
12555         * config/srclist.txt: Comment out $LIBCSRC/posix/regex.h.
12556         Add comments for each pending glibc patch.
12557
12558 2005-08-15  Bruno Haible  <bruno@clisp.org>
12559
12560         * lib/regex.h (__restrict_arr): Don't define to __restrict if
12561         __cplusplus is defined.
12562
12563 2005-08-14  Jim Meyering  <jim@meyering.net>
12564
12565         Sync from coreutils.
12566
12567         * lib/fts-cycle.c (setup_dir, enter_dir, leave_dir, free_dir):
12568         Use the hash-table-based cycle-detection code not just when
12569         FTS_TIGHT_CYCLE_CHECK if specified, but also with FTS_LOGICAL.
12570         Reported by James Youngman in
12571         <http://lists.gnu.org/archive/html/bug-gnulib/2005-08/msg00011.html>.
12572         * lib/fts_.h: Mention that with FTS_LOGICAL, we use
12573         FTS_TIGHT_CYCLE_CHECK.
12574         * lib/fts.c (fts_cross_check) [FTS_DEBUG]:
12575         s/active_dir_ht/fts_cycle.ht/. This lets us compile with -DFTS_DEBUG,
12576         once again.
12577         * lib/fts.c [! _LIBC]: Include "lstat.h" rather than rolling our own.
12578         * lib/fts.c (fd_safer): Remove decl.
12579         Include fcntl--.h rather than unistd-safer.h
12580         (fts_safe_changedir): Don't call fd_safer; no longer needed
12581         now that we include fcntl--.h.
12582
12583 2005-08-12  Simon Josefsson  <jas@extundo.com>
12584
12585         * modules/getndelim2: Use ssize_t module.
12586         * modules/getnline: Likewise.
12587         * modules/safe-read: Likewise.
12588         * modules/xreadlink: Likewise.
12589
12590         * modules/ssize_t: New file.
12591
12592 2005-08-12  Simon Josefsson  <jas@extundo.com>
12593
12594         * m4/readline.m4: Look for termcap, curses or ncurses if required.
12595
12596 2005-08-12  Simon Josefsson  <jas@extundo.com>
12597
12598         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
12599         ssize_t.
12600
12601 2005-08-12  Simon Josefsson  <jas@extundo.com>
12602
12603         * MODULES.html.sh (Extra functions based on ANSI C 89: Misc): Add
12604         readline, getdelim and check_version.
12605         (Support for systems lacking ISO C 99: Sizes of integer types):
12606         Add size_max.
12607
12608 2005-08-12  Bruno Haible  <bruno@clisp.org>
12609
12610         * m4/readline.m4 (gl_FUNC_READLINE): Look for ncurses first.
12611
12612 2005-08-11  Simon Josefsson  <jas@extundo.com>
12613
12614         * modules/readline: New file.
12615
12616         * modules/strnlen (Files): Add strnlen.h.
12617
12618 2005-08-11  Simon Josefsson  <jas@extundo.com>
12619
12620         * m4/readline.m4: New file.
12621
12622 2005-08-11  Simon Josefsson  <jas@extundo.com>
12623
12624         * lib/readline.h, readline.c: New file.
12625
12626 2005-08-11  Simon Josefsson  <jas@extundo.com>
12627
12628         * doc/gnulib.texi (Initial import, Finishing touches): Mention
12629         gl_AVOID.
12630
12631 2005-08-11  Bruno Haible  <bruno@clisp.org>
12632
12633         * lib/strnlen.h (strnlen): Change parameter name to match comment.
12634
12635 2005-08-10  Stepan Kasal  <kasal@ucw.cz>
12636
12637         * m4/onceonly_2_57.m4: Really require Autoconf 2.57.
12638
12639 2005-08-10  Simon Josefsson  <jas@extundo.com>
12640
12641         * tests/test-iconvme.c: New file.
12642
12643 2005-08-10  Simon Josefsson  <jas@extundo.com>
12644
12645         * m4/strnlen.m4: New file.
12646
12647         * m4/strndup.m4: Don't check for strnlen declaration, done in
12648         strnlen.m4.
12649
12650 2005-08-10  Simon Josefsson  <jas@extundo.com>
12651
12652         * lib/strndup.c: Use strnlen.h.
12653
12654         * lib/strnlen.h: New file.
12655
12656 2005-08-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
12657
12658         * README: Typos.
12659
12660 2005-08-02  Simon Josefsson  <jas@extundo.com>
12661
12662         * modules/readline: New file.
12663
12664 2005-08-02  Simon Josefsson  <jas@extundo.com>
12665
12666         * modules/getdelim: New file.
12667
12668         * modules/getline: Rewrite, don't use getndelim2.
12669
12670 2005-08-02  Simon Josefsson  <jas@extundo.com>
12671
12672         * m4/getline.m4: Separate out getdelim stuff into separate module.
12673
12674         * m4/getdelim.m4: New file.
12675
12676 2005-08-02  Simon Josefsson  <jas@extundo.com>
12677
12678         * lib/getline.h, getline.c: Rewrite.
12679
12680         * lib/getdelim.h, lib/getdelim.c: New files, ported from glibc.
12681
12682 2005-07-31  Bruno Haible  <bruno@clisp.org>
12683
12684         * lib/lock.h (gl_lock_initializer): New macro.
12685         (gl_lock_define_initialized): Use it.
12686         (gl_rwlock_initializer): New macro.
12687         (gl_rwlock_define_initialized): Use it.
12688         (gl_recursive_lock_initializer): New macro.
12689         (gl_recursive_lock_define_initialized): Use it.
12690
12691 2005-07-30  Karl Berry  <karl@gnu.org>
12692
12693         * doc/gnulib.texi (Initial import): mention -I$(top_builddir)/lib.
12694         Report from Ben Pfaff, regarding getopt.
12695
12696 2005-07-26  Paul Eggert  <eggert@cs.ucla.edu>
12697
12698         Add support to getopt for Emacs, which doesn't use LIBOBJS in the
12699         normal way.
12700         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE_HEADER): New macro.
12701         (gl_GETOPT_SUBSTITUTE): Use it.  Invoke gl_PREREQ_GETOPT.
12702         (gl_GETOPT_IFELSE, gl_GETOPT_CHECK_HEADERS): New macros.
12703         (gl_GETOPT): Use the new macros.  Most of the implementation
12704         is moved to the new macros.  This is for programs like Emacs
12705         that don't want all the functionality of gl_GETOPT.
12706
12707 2005-07-26  Bruno Haible  <bruno@clisp.org>
12708
12709         * m4/lock.m4: Update from GNU gettext.
12710
12711 2005-07-26  Bruno Haible  <bruno@clisp.org>
12712
12713         * lib/lock.h: Update from GNU gettext.
12714         * lib/lock.c: Update from GNU gettext.
12715
12716 2005-07-25  Paul Eggert  <eggert@cs.ucla.edu>
12717
12718         * m4/regex.m4 (gl_INCLUDED_REGEX): Use AC_RUN_IFELSE instead of the
12719         obsolescent AC_TRY_RUN.  Include the default includes files, for
12720         'exit'.
12721
12722 2005-07-24  Bruno Haible  <bruno@clisp.org>
12723
12724         * modules/visibility: New file.
12725         * MODULES.html.sh (Misc): Add visibility.
12726
12727 2005-07-24  Bruno Haible  <bruno@clisp.org>
12728
12729         * m4/visibility.m4: New file.
12730
12731 2005-07-24  Bruno Haible  <bruno@clisp.org>
12732
12733         * doc/visibility.texi: New file.
12734
12735 2005-07-22  Bruno Haible  <bruno@clisp.org>
12736
12737         * modules/alloca-opt (Makefile.am): Remove explicit dependency on
12738         $(ALLOCA_H), redundant through BUILT_SOURCES.
12739         * modules/argz (Makefile.am): Remove explicit dependency on $(ARGZ_H),
12740         redundant through BUILT_SOURCES.
12741         * modules/byteswap (Makefile.am): Remove explicit dependency on
12742         $(BYTESWAP_H), redundant through BUILT_SOURCES.
12743         * modules/fnmatch (Makefile.am): Remove explicit dependency on
12744         $(FNMATCH_H), redundant through BUILT_SOURCES.
12745         * modules/getopt (Makefile.am): Remove explicit dependency on
12746         $(GETOPT_H), redundant through BUILT_SOURCES.
12747         * modules/glob (Makefile.am): Remove explicit dependency on $(GLOB_H),
12748         redundant through BUILT_SOURCES.
12749         * modules/poll (Makefile.am): Remove explicit dependency on $(POLL_H),
12750         redundant through BUILT_SOURCES.
12751         * modules/stdbool (Makefile.am): Remove explicit dependency on
12752         $(STDBOOL_H), redundant through BUILT_SOURCES.
12753         * modules/stdint (Makefile.am): Remove explicit dependency on
12754         $(STDINT_H), redundant through BUILT_SOURCES.
12755         * modules/sysexits (Makefile.am): Add $(SYSEXITS_H) to BUILT_SOURCES.
12756         Remove explicit dependency on $(SYSEXITS_H).
12757         Reported by Alexandre Duret-Lutz <adl@src.lip6.fr>.
12758
12759 2005-07-18  Simon Josefsson  <jas@extundo.com>
12760
12761         * lib/check-version.c (check_version): Accept identical versions too.
12762
12763 2005-07-18  Bruno Haible  <bruno@clisp.org>
12764
12765         * modules/lock: New file.
12766         * MODULES.html.sh (Multithreading): New section.
12767
12768 2005-07-18  Bruno Haible  <bruno@clisp.org>
12769
12770         * m4/lock.m4: New file, from GNU gettext.
12771
12772 2005-07-18  Bruno Haible  <bruno@clisp.org>
12773
12774         * lib/lock.h: New file, from GNU gettext.
12775         * lib/lock.c: New file, from GNU gettext.
12776
12777 2005-07-18  Bruno Haible  <bruno@clisp.org>
12778
12779         * lib/lock.h (gl_once_t): New type.
12780         (gl_once_define, gl_once): New macros.
12781         * lib/lock.c (fresh_once): New variable.
12782         (glthread_once, glthread_once_call, glthread_once_singlethreaded): New
12783         functions.
12784
12785 2005-07-16  Simon Josefsson  <jas@extundo.com>
12786
12787         * doc/gnulib.texi (Library version handling): Add ELF symbol collision
12788         workaround, suggested by Bruno.
12789
12790 2005-07-15  Paul Eggert  <eggert@cs.ucla.edu>
12791
12792         * modules/xalloc (Depends-on): Add xalloc-die.
12793         * modules/xvasprintf (Depends-on): Add xalloc-die.
12794
12795 2005-07-15  Paul Eggert  <eggert@cs.ucla.edu>
12796
12797         * lib/quotearg.c: Add translator comment suggested by Bruno Haible,
12798         with a minor change.
12799
12800 2005-07-15  Bruno Haible  <bruno@clisp.org>
12801
12802         * m4/poll.m4 (gl_FUNC_POLL): Check against MacOS X 10.4 poll() bug.
12803         When using lib/poll.c, define poll as rpl_poll.
12804
12805 2005-07-14  Paul Eggert  <eggert@cs.ucla.edu>
12806
12807         * modules/argp (Depends-on): Remove unlocked-io.
12808
12809 2005-07-14  Derek Price  <derek@ximbiot.com>
12810
12811         * m4/glob.m4 (gl_GLOB): Cache glob interface check result.  Add check
12812         for glob symlink bug.
12813
12814 2005-07-14  Bruno Haible  <bruno@clisp.org>
12815
12816         * m4/argp.m4 (gl_ARGP): Remove invocation of gl_FUNC_GLIBC_UNLOCKED_IO.
12817         Instead, test for *_unlocked function declarations directly.
12818
12819 2005-07-11  Simon Josefsson  <jas@extundo.com>
12820
12821         * modules/size_max: New file.
12822
12823         * modules/xsize: Depend on size_max module for size_max.m4.
12824
12825 2005-07-11  Simon Josefsson  <jas@extundo.com>
12826
12827         * lib/size_max.h: New file.
12828
12829 2005-07-11  Paul Eggert  <eggert@cs.ucla.edu>
12830
12831         * lib/version-etc-fsf.c (version_etc_copyright): Parameterize the
12832         copyright symbol and the year.
12833         * lib/version-etc.c (COPYRIGHT_YEAR): New constant.
12834         (version_etc_va): Use parameterized copyright notice.
12835         Reword to conform to the current GNU coding standards.
12836
12837 2005-07-11  Karl Berry  <karl@gnu.org>
12838
12839         * doc/gnulib.texi (Quoting): new node.
12840         (Initial import): more info, from Patrice.
12841
12842 2005-07-11  Bruno Haible  <bruno@clisp.org>
12843
12844         * gnulib-tool (func_usage): Document option --avoid.
12845         (Command line options): Handle --avoid.
12846         (func_acceptable): New function.
12847         (func_modules_transitive_closure): Use it.
12848
12849 2005-07-11  Bruno Haible  <bruno@clisp.org>
12850
12851         * MODULES.html.sh: Use shortcut URLs to the www.opengroup.org site.
12852         Reported by Jim Meyering.
12853
12854 2005-07-10  Bruno Haible  <bruno@clisp.org>
12855
12856         * m4/size_max.m4 (gl_SIZE_MAX): Cast ~(size_t)0 back to size_t.
12857         Needed when size_t is smaller than 'unsigned int'.
12858         Reported by Paul Eggert.
12859
12860 2005-07-09  Sergey Poznyakoff  <gray@gnu.org.ua>
12861
12862         * modules/argp (Depends-on): Add unlocked-io
12863
12864 2005-07-09  Sergey Poznyakoff  <gray@gnu.org.ua>
12865
12866         * lib/argp-namefrob.h: Include unlocked-io.h. Removed unnecessary
12867         block of defines.
12868
12869 2005-07-08  Paul Eggert  <eggert@cs.ucla.edu>
12870
12871         * config/srclist.txt: Comment out regcomp.c, since we have a porting
12872         fix now.
12873
12874 2005-07-08  Eric Blake  <ebb9@byu.net>  (tiny change)
12875         and Paul Eggert  <eggert@cs.ucla.edu>
12876
12877         * lib/regcomp.c (init_dfa, build_range_exp): Store __btowc value
12878         in wint_t, not wchar_t.  Remove now-unnecessary cast.
12879
12880 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
12881
12882         * modules/regex (Files): Add lib/regex_internal.c,
12883         lib/regex_internal.h, lib/regexec.c, lib/regcomp.c, m4/codeset.m4.
12884         (Depends-on): Add extensions.
12885         (Makefile.am): Remove lib_SOURCES; now done by m4 code.
12886
12887 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
12888
12889         * m4/backupfile.m4 (gl_BACKUPFILE): Use AC_CHECK_FUNCS_ONCE on
12890         pathconf.
12891         * m4/same.m4 (gl_SAME): Likewise.
12892         Require AC_SYS_LONG_FILE_NAMES; bug reported by Gerrit P. Haase.
12893
12894         * m4/regex.m4: Adjust to new libc regex implementation.
12895         (gl_INCLUDED_REGEX): Add AC_LIBSOURCES for
12896         all the .c and .h parts of (the new) regex.
12897         Quote the m4 stuff better.
12898         Check for RE_ICASE bug of old gnulib.
12899         Check for REG_STARTEND of recent libc.
12900         Rename local variables from jm_* to gl_*.
12901         Quote operand of "test -f".
12902         Say "recent enough" version of libc, not "version 2".
12903         (gl_PREREQ_REGEX): Remove AC_FUNC_ALLOCA, since alloca is a
12904         prerequisite module.  Remove AC_HEADER_STDC; no longer needed.
12905         Check for locale.h, isblank, mbrtowc, wcrtomb, wcscoll.
12906         Remove check for btowc, isascii.
12907         Require AM_LANGINFO_CODESET.
12908
12909 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
12910
12911         * lib/regex.c, regex.h: Sync from libc.
12912         * lib/regcomp.c, lib/regexec_internal.c, lib/regex_internal.h:
12913         * lib/regexec.c:
12914         New files, synced from libc, except that regex_internal.h
12915         currently has a small porting fix.
12916
12917 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
12918
12919         * config/srclist.txt: Add regcomp.c, regex.c, regex.h,
12920         regex_internal.c, regexec.c.
12921         Add regex_internal.h too, but as a comment, since the libc version
12922         is currently broken in gnulib mode.
12923
12924 2005-07-06  Paul Eggert  <eggert@cs.ucla.edu>
12925
12926         Support programs like Emacs that use gnulib but not gettext.
12927         * MODULES.html.sh (Internationalization functions): Add gettext-h.
12928         * modules/gettext-h: New file.
12929         * modules/gettext (Files): Remove lib/gettext.h.
12930         (Depends-on): Add gettext-h.
12931         (Makefile.am): Remove lib_SOURCES.
12932         * modules/argmatch, modules/c-stack, modules/closeout:
12933         * modules/copy-file, modules/csharpcomp, modules/csharpexec:
12934         * modules/execute, modules/file-type, modules/getaddrinfo:
12935         * modules/getopt, modules/human, modules/javacomp:
12936         * modules/javaexec, modules/mkdir-p, modules/obstack:
12937         * modules/openat, modules/pagealign_alloc, modules/pipe:
12938         * modules/quotearg, modules/regex, modules/rpmatch:
12939         * modules/unicodeio, modules/userspec, modules/version-etc:
12940         * modules/wait-process, modules/xalloc-die, modules/xmemcoll:
12941         * modules/xsetenv:
12942         Depend on gettext-h, not gettext.
12943
12944 2005-07-05  Paul Eggert  <eggert@cs.ucla.edu>
12945
12946         * gnulib-tool (func_import): Add support for 'public domain' license.
12947         * modules/alloca, modules/atexit, modules/memmove:
12948         Now public domain, not GPL.
12949         * modules/dup2, modules/getpagesize, modules/malloc, modules/memset:
12950         * modules/realloc, modules/strerror, modules/strtod:
12951         Now LGPL, not GPL.
12952
12953 2005-07-05  Bruno Haible  <bruno@clisp.org>
12954
12955         * m4/mbrtowc.m4 (gl_FUNC_MBRTOWC): Upgrade to version from current
12956         autoconf CVS. Needed for mingw.
12957
12958 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
12959
12960         Remove the dependency of the strftime module on the tzset module.
12961         * modules/strftime (Depends-on): Remove dependency on tzset.
12962
12963 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
12964
12965         Remove the dependency of the strftime module on the tzset module.
12966         * m4/strftime.m4 (gl_FUNC_STRFTIME): Don't require
12967         gl_FUNC_TZSET_CLOBBER.
12968
12969 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
12970
12971         Remove the dependency of the strftime module on the tzset module.
12972         * lib/strftime.c (my_strftime)
12973         [! defined _LIBC && ! HAVE_RUN_TZSET_TEST]:
12974         Copy the input structure, to work around some of the bug with
12975         Solaris 2.5.1 and Solaris 2.6.  If you still care about these old
12976         Solaris releases, you should also use the tzset module, but we won't
12977         require it as a dependency any more since we don't want LGPLed code
12978         to depend on GPLed code.
12979
12980 2005-07-02  Jim Meyering  <jim@meyering.net>
12981
12982         * m4/chown.m4, cloexec.m4, dup2.m4, fsusage.m4:
12983         * m4/getcwd-path-max.m4, getcwd.m4, mkstemp.m4, mountlist.m4:
12984         * m4/pagealign_alloc.m4, save-cwd.m4, unistd-safer.m4:
12985         Don't check for fcntl.h, and don't test for HAVE_FCNTL_H.
12986
12987 2005-07-02  Jim Meyering  <jim@meyering.net>
12988
12989         * lib/backupfile.c (backup_args): Change a `0' to NULL.
12990
12991 2005-07-01  Paul Eggert  <eggert@cs.ucla.edu>
12992
12993         * lib/xnanosleep.c: Include timespec.h, since OpenBSD 3.4 <time.h>
12994         declares only 'struct timespec;' (!).
12995
12996 2005-07-01  Jim Meyering  <jim@meyering.net>
12997
12998         * lib/chown.c, cloexec.c, dup-safer.c, dup2.c, fsusage.c, getcwd.c:
12999         * lib/getloadavg.c, mountlist.c, openat.h, pagealign_alloc.c:
13000         * lib/save-cwd.c, tempname.c:
13001         Assume HAVE_FCNTL_H (i.e., include <fcntl.h> unconditionally,
13002         and don't include <sys/file.h>).
13003
13004 2005-06-29  Jim Meyering  <jim@meyering.net>
13005
13006         * lib/mkdir-p.c (make_dir_parents): Don't apply sizeof to a hard-coded
13007         type name.  Use the variable name instead.
13008         * lib/idcache.c (getuser, getuidbyname, getgroup, getgidbyname):
13009         Likewise.
13010
13011 2005-06-28  Simon Josefsson  <jas@extundo.com>
13012
13013         * modules/check-version (Files): Add check-version.m4.
13014
13015 2005-06-28  Simon Josefsson  <jas@extundo.com>
13016
13017         * m4/check-version.m4: New file, suggested by Jim Meyering
13018         <jim@meyering.net>.
13019
13020 2005-06-28  Simon Josefsson  <jas@extundo.com>
13021
13022         * lib/check-version.h, lib/check-version.c: New files.
13023
13024 2005-06-28  Simon Josefsson  <jas@extundo.com>
13025
13026         * lib/base64.c (base64_encode): Indent.  Rename 'b64' to avoid
13027         collision with global variable.  Better indentation.  Don't
13028         increment buffer pointer beyond buffer end.  Based on comments
13029         from Paul Eggert <eggert@cs.ucla.edu>.
13030
13031         * lib/base64.h: Indent.
13032
13033 2005-06-28  Simon Josefsson  <jas@extundo.com>
13034
13035         * doc/gnulib.texi (Library version handling): New section.
13036
13037 2005-06-28  Jim Meyering  <jim@meyering.net>
13038
13039         * check-module (find_included_lib_files): Hard-code another
13040         pair of exceptions: fts.c includes fts-cycle.c and unistd-safer.h
13041         but modules/fts-lgpl (correctly) does not list those files.
13042
13043         * modules/canonicalize (Files): Add lib/pathmax.h.
13044
13045 2005-06-25  Simon Josefsson  <jas@extundo.com>
13046
13047         * modules/check-version: New file.
13048
13049 2005-06-24  Paul Eggert  <eggert@cs.ucla.edu>
13050
13051         * lib/canon-host.c (canon-host): Append trailing "," to 0 in
13052         initializer of struct addrinfo, as an indication that we don't
13053         care how many members the structure has.
13054
13055 2005-06-24  Derek Price  <derek@ximbiot.com>
13056         and Bruno Haible  <bruno@clisp.org>
13057
13058         Remove stat module & update lstat.
13059         * m4/lstat.m4 (gl_FUNC_LSTAT): Drop AC_FUNC_LSTAT in favor of
13060         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
13061         * m4/stat.m4: Remove this file.
13062
13063 2005-06-24  Derek Price  <derek@ximbiot.com>
13064         and Bruno Haible  <bruno@clisp.org>
13065
13066         Remove stat module & update lstat.
13067         * lib/stat.c: Remove this file...
13068         (slash_aware_lstat): ...moving this content and its support...
13069         * lib/lstat.c (rpl_lstat): ...into here.
13070         * lib/lstat.h: New file.
13071
13072 2005-06-24  Derek Price  <derek@ximbiot.com>
13073         and Bruno Haible  <bruno@clisp.org>
13074
13075         Remove stat module & update lstat.
13076         * config/srclist.txt (libc sources): Remove stat.
13077
13078 2005-06-24  Derek Price  <derek@ximbiot.com>
13079         and Bruno Haible  <bruno@clisp.org>
13080
13081         Remove stat module & update lstat.
13082         * MODULES.html.sh (stat): Remove.
13083         * MODULES.html: Regenerated.
13084         * modules/lstat (Description): Correct function name.
13085         (Files): Add "lstat.h".
13086         (Depends-on): Remove stat, add xalloc, stat-macros.
13087         * modules/stat: Remove this file.
13088         (Include): Add "lstat.h", remove <sys/stat.h>.
13089
13090 2005-06-23  Paul Eggert  <eggert@cs.ucla.edu>
13091
13092         * lib/mktime.c: Include <string.h> even if !DEBUG.  (From glibc.)
13093         (ranged_convert): Don't save conversion in a temporary struct.
13094         This causes a warning with GCC 4.0.0, and anyway in the typical
13095         case it's not worth the extra 100 bytes or so of code.
13096         (ranged_convert, __mktime_internal): When calling a function via a
13097         pointer P, use P () rather than (*P) (), as we now assume C89 or
13098         better.
13099
13100 2005-06-22  Paul Eggert  <eggert@cs.ucla.edu>
13101
13102         * lib/readutmp.c (desirable_utmp_entry): Fix bug where "who -b" and
13103         "who -r" failed to give output.  Problem reported by Tim Waugh.
13104
13105         * lib/xmalloc.c (HAVE_GNU_CALLOC): New constant.
13106         (xcalloc): Use it to avoid needless tests.
13107         Problem reported by Jim Meyering.
13108
13109 2005-06-20  Derek Price  <derek@ximbiot.com>
13110
13111         * m4/bison.m4: Note that precious decls of YACC & YFLAGS will be
13112         unnecessary for Autoconfs > 2.59c.
13113
13114 2005-06-16  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
13115
13116         * lib/argp.h (__option_is_short): Check upper limit of
13117         __key. Isprint() requires its argument to have the value
13118         of an unsigned char or EOF.
13119
13120 2005-06-16  Jim Meyering  <jim@meyering.net>
13121
13122         * lib/calloc.c (rpl_calloc): Allocate a 1-byte buffer (not 1xS or Nx1)
13123         when either N or S is zero.
13124
13125 2005-06-16  Derek Price  <derek@ximbiot.com>
13126
13127         * m4/bison.m4: Declare YACC & YFLAGS precious.
13128
13129 2005-06-10  Paul Eggert  <eggert@cs.ucla.edu>
13130
13131         * lib/fnmatch.c (fnmatch): If there is an encoding error in a
13132         multibyte string or pattern, fall back on unibyte matching.
13133         Problem reported by James Youngman.
13134
13135 2005-06-08  Bruno Haible  <bruno@clisp.org>
13136
13137         * modules/csharpcomp: New file.
13138         * MODULES.html.sh (C#): Add csharpcomp.
13139
13140 2005-06-08  Bruno Haible  <bruno@clisp.org>
13141
13142         * m4/csharpcomp.m4: New file, from GNU gettext.
13143
13144 2005-06-08  Bruno Haible  <bruno@clisp.org>
13145
13146         * lib/csharpcomp.h: New file, from GNU gettext.
13147         * lib/csharpcomp.c: New file, from GNU gettext.
13148         * lib/csharpcomp.sh.in: New file, from GNU gettext.
13149
13150 2005-06-08  Bruno Haible  <bruno@clisp.org>
13151
13152         * lib/binary-io.h (fileno): Undefine before defining it. Avoids a gcc
13153         warning on mingw.
13154
13155 2005-06-07  Derek Price  <derek@ximbiot.com>
13156
13157         Sync from CVS.
13158         * lib/glob_.h: Indent nested #ifdef.
13159
13160 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
13161
13162         Sync from coreutils.
13163         Use "file name" when talking about file names, instead of "filename"
13164         or "path", as per the GNU coding standards.
13165         * lib/mkdir-p.c: Renamed from makepath.c.
13166         (make_dir_parents): Renamed from make_path.  All callers changed.
13167         * lib/mkdir-p.h: Likewise.  All includers changed.
13168         * lib/filenamecat.c: Renamed from path-concat.c.
13169         (file_name_concat): Renamed from path_concat.  All callers changed.
13170         [TEST_FILE_NAME_CONCAT]: Renamed from TEST_PATH_CONCAT.
13171         * lib/filenamecat.h: Likewise.  All includers changed.
13172         * lib/acl.c: Don't use "path" or "filename" to mean "file name"
13173         in comments or local variable names.
13174         * lib/basename.c: Likewise.
13175         * lib/canonicalize.c, canonicalize.h: Likewise.
13176         * lib/dirname.c, dirname.h: Likewise.
13177         * lib/euidaccess.c: Likewise.
13178         * lib/exclude.c: Likewise
13179         * lib/fnmatch_.h, fnmatch_loop.c: Likewise.
13180         * lib/fsusage.c, fsuage.h: Likewise.
13181         * lib/fts.c, fts_.h: Likewise.
13182         * lib/getcwd.c: Likewise.
13183         * lib/getloadavg.c: Likewise.
13184         * lib/mkstemp.c: Likewise.
13185         * lib/mountlist.c, mountlist.h: Likewise.
13186         * lib/openat.c, openat.h: Likewise.
13187         * lib/readlink-stub.c: Likewise.
13188         * lib/readutmp.c, readutmp.h: Likewise.
13189         * lib/rename.c: Likewise.
13190         * lib/rmdir.c: Likewise.
13191         * lib/same.c: Likewise.
13192         * lib/savedir.c: Likewise.
13193         * lib/stripslash.c: Likewise.
13194         * lib/tempname.c: Likewise.
13195         * lib/xreadlink.c: Likewise.
13196         * lib/exclude.c (excluded_file_name): Renamed from excluded_filename.
13197         All uses changed.
13198         * lib/exclude.h: Likewise.
13199
13200         * lib/euidaccess.c (getuid, getgid, getuid, getegid)
13201         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
13202         * lib/idcache.c (getpwuid, getpwnam, getgrgid, getgrnam)
13203         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
13204         * lib/pathmax.h: Include <limits.h> unconditionally, since other
13205         files have been getting away with it for years (MORE/BSD 4.3
13206         is extinct now).
13207         * lib/userspec.c (getpwnam, getgrnam, getgrgid)
13208         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
13209
13210         * lib/pathmax.h (_POSIX_PATH_MAX) [!defined _POSIX_PATH_MAX]:
13211         Define to 256, not 255, as per modern POSIX.
13212
13213 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
13214
13215         Sync from coreutils.
13216         Use "file name" when talking about file names, instead of "filename"
13217         or "path", as per the GNU coding standards.
13218         * MODULES.html.sh: mkdir-p renamed from makepath.
13219         filenamecat renamed from path-concat.
13220         * modules/filenamecat: Renamed from modules/path-concat.
13221         (Files): filenamecat.h and filenamecat.c renamed from
13222         path-concat.h and path-concat.c.
13223         (configure.ac): gl_FILE_NAME_CONCAT, not gl_PATH_CONCAT.
13224         (Include): filenamecat.h, not path-concat.h.
13225         * modules/mkdir-p: Renamed from modules/makepath.
13226         (Files): mkdir-p.h and mkdir-p.c renamed from makepath.h and
13227         makepath.c.
13228         (configure.ac): gl_MKDIR_PARENTS, not gl_MAKEPATH.
13229         (Include): mkdir-p.h, not makepath.h.
13230
13231 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
13232
13233         Sync from coreutils.
13234         * m4/mkdir-p.m4: Renamed from makepath.m4.
13235         (gl_MKDIR_PARENTS): Renamed from gl_MAKEPATH.  All uses changed.
13236         Rename files from makepath.c to mkdir-p.c, and from
13237         makepath.h to mkdir-p.h.
13238         * m4/filenamecat.m4: Renamed from path-concat.m4.
13239         (gl_FILE_NAME_CONCAT): Renamed from gl_PATH_CONCAT.  All uses changed.
13240         Rename files from path-concat.c to filenamecat.c,
13241         and from path-concat.h to filenamecat.h.
13242         * m4/getcwd-path-max.m4: Don't use "path" or "filename" to mean
13243         "file name" in local variables or comments.
13244         * m4/rename.m4: Likewise.
13245
13246 2005-06-01  Bruno Haible  <bruno@clisp.org>
13247
13248         * modules/csharpexec: New file.
13249         * MODULES.html.sh (C#): New section.
13250
13251 2005-06-01  Bruno Haible  <bruno@clisp.org>
13252
13253         * m4/csharp.m4: New file, from GNU gettext.
13254         * m4/csharpexec.m4: New file, from GNU gettext.
13255
13256 2005-06-01  Bruno Haible  <bruno@clisp.org>
13257
13258         * lib/csharpexec.h: New file, from GNU gettext.
13259         * lib/csharpexec.c: New file, from GNU gettext.
13260         * lib/csharpexec.sh.in: New file, from GNU gettext.
13261
13262 2005-05-31  Derek Price  <derek@ximbiot.com>
13263             Paul Eggert  <eggert@cs.ucla.edu>
13264
13265         Sync from cvs.
13266         * m4/glob.m4: s/MISSING_SYS_CDEFS_H/_SYS_CDEFS_H/ and comment.
13267
13268 2005-05-31  Derek Price  <derek@ximbiot.com>
13269             Paul Eggert  <eggert@cs.ucla.edu>
13270
13271         Sync from cvs.
13272         * lib/glob_.h: s/MISSING_SYS_CDEFS_H/_SYS_CDEFS_H/ and comment.
13273
13274 2005-05-29  Derek Price  <derek@ximbiot.com>
13275
13276         * config/srclist.txt (glob_.h, glob.c): Add these files.
13277
13278 2005-05-29  Derek Price  <derek@ximbiot.com>
13279
13280         * MODULES.html.sh: Add glob to Enhanced POSIX.2001 section.
13281         * modules/glob: New file.
13282         * modules/getlogin_r: Add link to POSIX spec in description.
13283
13284 2005-05-29  Derek Price  <derek@ximbiot.com>
13285             Paul Eggert  <eggert@cs.ucla.edu>
13286
13287         * m4/glob.m4: New file.
13288
13289 2005-05-29  Derek Price  <derek@ximbiot.com>
13290             Paul Eggert  <eggert@cs.ucla.edu>
13291
13292         * lib/glob_.h, lib/glob.c: New files.
13293
13294 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
13295
13296         * modules/fts (Files): Remove m4/inttypes-pri.m4.
13297         * modules/fts-lgpl (Depends-on): Remove gettext.
13298
13299 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
13300
13301         * m4/fts.m4 (gl_FUNC_FTS_CORE): Don't check for inttypes.h or stdint.h,
13302         and don't require gt_INTTYPES_PRI.
13303
13304 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
13305
13306         * lib/getlogin_r.c (getlogin_r): Don't set errno to 0 on return.
13307
13308         * lib/fts.c: Don't worry about debugging on pre-C99-compatible hosts;
13309         the configuration hassle isn't worth it.
13310         Include inttypes.h and stdint.h unconditionally if FTS_DEBUG.
13311         (LONGEST_MODIFIER, PRIuMAX): Remove.
13312
13313 2005-05-27  Bruno Haible  <bruno@clisp.org>
13314
13315         * lib/getlogin_r.h: Remove second include of <stddef.h>.
13316
13317 2005-05-26  Paul Eggert  <eggert@cs.ucla.edu>
13318
13319         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Define
13320         _POSIX_PTHREAD_SEMANTICS for Solaris.
13321
13322 2005-05-25  Derek Price  <derek@ximbiot.com>
13323
13324         * MODULES.html.sh: Add getlogin_r to POSIX.2001 support section.
13325
13326 2005-05-25  Derek Price  <derek@ximbiot.com>
13327             Paul Eggert  <eggert@cs.ucla.edu>
13328
13329         * modules/getlogin_r, m4/getlogin_r.m4: New files.
13330         * lib/getlogin_r.c, getlogin_r.h: New files.
13331
13332 2005-05-25  Bruno Haible  <bruno@clisp.org>
13333             Derek Price  <derek@ximbiot.com>
13334
13335         * lib/getlogin_r.h: Simplify API documentation.
13336
13337 2005-05-23  Derek Price  <derek@ximbiot.com>
13338
13339         * modules/minmax (Files): Add m4/minmax.m4.
13340         (configure.ac): Add gl_MINMAX.
13341
13342 2005-05-22  Paul Eggert  <eggert@cs.ucla.edu>
13343
13344         * lib/fts.c (fd_safer) [_LGPL_PACKAGE]: New static function,
13345         so that unistd-safer.h (GPL'ed code) need not be included.
13346
13347 2005-05-22  Bruno Haible  <bruno@clisp.org>
13348
13349         * m4/minmax.m4: New file.
13350         Based on a patch by Derek Price <derek@ximbiot.com>.
13351
13352 2005-05-22  Bruno Haible  <bruno@clisp.org>
13353
13354         * lib/stdint_.h (_STDINT_H_HAVE_INT64): New macro. Use it in #ifdefs.
13355         (INT64_MIN): Fix definition.
13356         Suggested by Paul Eggert <eggert@cs.ucla.edu>.
13357
13358         * lib/stdint_.h (_STDINT_H_NEED_SIGNED_INT_TYPES): Renamed from
13359         NEED_SIGNED_INT_TYPES.
13360
13361         * lib/stdint_.h (_STDINT_H_HAVE_SYSTEM_INTTYPES): Renamed from
13362         HAVE_SYSTEM_INTTYPES.
13363
13364 2005-05-22  Bruno Haible  <bruno@clisp.org>
13365
13366         * lib/minmax.h: Include <limits.h> only when it defines MIN, MAX.
13367         Also include <sys/param.h> if it defines MIN, MAX.
13368         Based on a patch by Derek Price <derek@ximbiot.com>.
13369
13370 2005-05-21  Jim Meyering  <jim@meyering.net>
13371
13372         * modules/fts (Files): Add m4/inttypes-pri.m4.
13373         (Depends-on): Add lstat and remove gettext.  Alphabetize.
13374
13375 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
13376
13377         New fts module.
13378         * lib/fts.c: Don't include "cycle-check.h" or "hash.h".
13379         (setup_dir, free_dir): New functions.
13380         (enter_dir, leave_dir): Define trivial
13381         alternatives of _LGPL_PACKAGE.  Move to fts-cycle.c if !_LGPL_PACKAGE.
13382         (HT_INITIAL_SIZE, ENTER_DIR): Remove.  All uses removed.
13383         (LEAVE_DIR): Fix typo: pass Fts and Ent to leave_dir.
13384         (struct Active_dir, AD_compare, AD_hash, enter_dir, leave_dir):
13385         Move to fts-cycle.c.
13386         (fts_open): Use setup_dir.
13387         (fts_close): Use free_dir.
13388         (fts_read): Have just one copy of the ENTER_DIR code rather than three.
13389         This adds a label and some gotos, but the alternatives were messier.
13390         Check for memory allocation failure when entering a dir.
13391         (fts_stat) [_LGPL_PACKAGE]: Bring back glibc cycle detection code.
13392         * lib/fts_.h (_LGPL_PACKAGE) [defined _LIBC]: New macro.
13393         (FTS): New member fts_cycle, that is a union that contains the
13394         old active_dir_ht and cycle_state.  All uses changed to mention
13395         fts_cycle.ht and fts_cycle.state.
13396         * lib/fts-cycle.c: New file, containing GPL'ed code migrated out of
13397         fts.c, with the following changes:
13398         (setup_dir, free_dir): New functions.
13399         (enter_dir): Now returns bool.  Return true if successful, false
13400         if memory exhausted.  All callers changed.
13401         Do not bother partly cleaning up on
13402         memory allocation failure; that is free_dir's job.
13403         However, free ad if hash_insert fails, to avoid memory leak.
13404         (enter_dir, leave_dir): Accommodate change to FTS by inspecting
13405         fts->fts_options to see which union member to use.
13406
13407 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
13408
13409         * m4/fts.m4 (gl_FUNC_FTS_CORE): Renamed from gl_FUNC_FTS.
13410         (gl_FUNC_FTS, gl_FUNC_FTS_LGPL): New macros.
13411
13412 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
13413
13414         * MODULES.html.sh (File system functions): Add fts, fts-lgpl.
13415
13416 2005-05-20  Jim Meyering  <jim@meyering.net>
13417
13418         * lib/unlinkdir.h (cannot_unlink_dir) [UNLINK_CANNOT_UNLINK_DIR]:
13419         Now a macro, to pacify GCC.
13420
13421 2005-05-20  Eric Blake  <ebb9@byu.net>  (tiny change)
13422
13423         * m4/chown.m4 (gl_FUNC_CHOWN): Correct sense of test for honoring IDs
13424         of -1.
13425
13426 2005-05-20  Eric Blake  <ebb9@byu.net>  (tiny change)
13427
13428         * lib/chown.c (rpl_chown): Return -1 on failure.
13429
13430 2005-05-18  Paul Eggert  <eggert@cs.ucla.edu>
13431
13432         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME]):
13433         Don't check for stddef.h.
13434         * m4/fts.m4 (gl_FUNC_FTS): Don't require AC_HEADER_STDC, as we
13435         don't use its results.
13436         Don't check for fcntl.h, stddef.h, stdlib.h, string.h, unistd.h,
13437         since we include them unconditionally.  Don't require
13438         AM_STDBOOL_H, since stdbool is a prerequisite.
13439         Don't require AC_C_CONST, AC_TYPE_SIZE_T or check for ptrdiff_t
13440         since we assume C89 or better.
13441         Don't require AC_FUNC_CLOSEDIR_VOID, AC_FUNC_LSTAT, or AC_FUNC_STAT,
13442         as we don't use their results.
13443         Don't check for fchdir, memmove, memset, strrchr, as we use
13444         them unconditionally.
13445         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER): Don't define
13446         GETTIMEOFDAY_CLOBBERS_LOCALTIME_BUFFER, since nobody uses it.
13447
13448 2005-05-18  Paul Eggert  <eggert@cs.ucla.edu>
13449
13450         * lib/canonicalize.c: Include canonicalize.h first, to test interface.
13451         Include <stddef.h> unconditionally, since we assume C89 now.
13452         All uses of PTR_INT_TYPE replaced by ptrdiff_t.
13453         * lib/fts.c: Include fts_.h first, to check interface.
13454         Do not include intprops.h; no longer needed.
13455         Include cycle-check.h and hash.h, since fts_.h no longer does.
13456         Remove unnecessary casts of closedir to void.
13457         (fts_build): Use a simpler method (not involving TYPE_SIGNED) to
13458         decide whether to decrement nlinks.
13459         * lib/fts_.h: Do not include hash.h or cycle-check.h; no longer needed.
13460         (FTS): Use struct hash_table * instead of Hash_table, so that
13461         we no longer need to include hash.h here.
13462
13463 2005-05-18  Jim Meyering  <jim@meyering.net>
13464
13465         * modules/dirfd (License): Change to LGPL.  Most of the code
13466         is already in the public domain.
13467
13468 2005-05-18  Jim Meyering  <jim@meyering.net>
13469
13470         * m4/fts.m4 (AC_LIBSOURCES): Add intprops.h to the list.
13471         Reported by Yoann Vandoorselaere.
13472
13473 2005-05-17  Jim Meyering  <jim@meyering.net>
13474
13475         * m4/fts.m4: New file, from coreutils.
13476
13477 2005-05-17  Jim Meyering  <jim@meyering.net>
13478
13479         * lib/fts.c, lib/fts_.h: New files, from coreutils.
13480
13481 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
13482
13483         Sync from coreutils.
13484         * m4/unlinkdir.m4: New file.
13485
13486 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
13487
13488         Sync from coreutils.
13489         * lib/unlinkdir.c, lib/unlinkdir.h: New files.
13490         * lib/gethrxtime.c, lib/gethrxtime.h, lib/getpass.h, lib/mountlist.h,
13491         lib/path-concat.c, lib/regex.h, lib/unlocked-io.h, lib/xtime.h:
13492         White space changes only.
13493         * lib/makepath.c (make_path): Port to hosts where leading "//" is
13494         special.
13495         * lib/yesno.c: Include getline.h, not ctype.h.
13496         (yesno): Don't remove leading white space; POSIX doesn't allow it.
13497         Use getline to remove arbitrary restriction on response length.
13498
13499 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
13500
13501         * config/srclist-update: Spell out "Street" in FSF postal
13502         mail address; this is the style the FSF seems to prefer.
13503
13504         * build-aux/depcomp, build-aux/install-sh, build-aux/mdate-sh,
13505         build-aux/missing, build-aux/mkinstalldirs: Sync from Automake;
13506         this updates FSF postal mail address.
13507
13508         Sync from coreutils.
13509         * modules/unlinkdir: New file.
13510         * modules/yesno (Depends-on): Add getline.
13511         * MODULES.html.sh (File system functions): Add unlinkdir.
13512
13513 2005-05-13  Paul Eggert  <eggert@cs.ucla.edu>
13514
13515         * lib/byteswap_.h, lib/getsubopt.h, lib/iconvme.h, lib/strsep.c,
13516         lib/strsep.h:
13517         Change the initial comment to refer to GPL, not LGPL.
13518         gnulib-tool will change it to LGPL as needed.
13519
13520         * lib/__fpending.c, lib/acl.c, lib/acl.h, lib/alloca_.h, lib/allocsa.c,
13521         lib/allocsa.h, lib/argmatch.c, lib/argmatch.h, lib/argp-ba.c,
13522         lib/argp-eexst.c, lib/argp-fmtstream.c, lib/argp-fmtstream.h,
13523         lib/argp-fs-xinl.c, lib/argp-help.c, lib/argp-namefrob.h,
13524         lib/argp-parse.c, lib/argp-pv.c, lib/argp-pvh.c, lib/argp-xinl.c,
13525         lib/argp.h, lib/argz.c, lib/argz_.h, lib/asnprintf.c, lib/asprintf.c,
13526         lib/atanl.c, lib/backupfile.c, lib/backupfile.h, lib/base64.c,
13527         lib/base64.h, lib/basename.c, lib/binary-io.h, lib/byteswap_.h,
13528         lib/c-ctype.c, lib/c-ctype.h, lib/c-stack.c, lib/c-stack.h,
13529         lib/c-strtod.c, lib/calloc.c, lib/canon-host.c, lib/canonicalize.c,
13530         lib/canonicalize.h, lib/ceill.c, lib/chdir-long.c, lib/chdir-long.h,
13531         lib/chown.c, lib/classpath.c, lib/classpath.h, lib/cloexec.c,
13532         lib/closeout.c, lib/closeout.h, lib/concatpath.c, lib/config.charset,
13533         lib/copy-file.c, lib/copy-file.h, lib/cycle-check.c, lib/cycle-check.h,
13534         lib/diacrit.c, lib/diacrit.h, lib/dirfd.c, lib/dirfd.h, lib/dirname.c,
13535         lib/dirname.h, lib/dummy.c, lib/dup-safer.c, lib/dup2.c, lib/eealloc.h,
13536         lib/error.c, lib/error.h, lib/euidaccess.c, lib/exclude.c,
13537         lib/exclude.h, lib/execute.c, lib/execute.h, lib/exit.h,
13538         lib/exitfail.c, lib/exitfail.h, lib/expl.c, lib/fatal-signal.c,
13539         lib/fatal-signal.h, lib/fd-safer.c, lib/file-type.c, lib/file-type.h,
13540         lib/fileblocks.c, lib/filemode.c, lib/filemode.h, lib/findprog.c,
13541         lib/findprog.h, lib/floorl.c, lib/fnmatch.c, lib/fnmatch_.h,
13542         lib/fnmatch_loop.c, lib/fopen-safer.c, lib/free.c, lib/frexpl.c,
13543         lib/fsusage.c, lib/fsusage.h, lib/full-read.c, lib/full-read.h,
13544         lib/full-write.c, lib/full-write.h, lib/fwriteerror.c,
13545         lib/fwriteerror.h, lib/gai_strerror.c, lib/gcd.c, lib/gcd.h,
13546         lib/getaddrinfo.c, lib/getaddrinfo.h, lib/getcwd.c, lib/getcwd.h,
13547         lib/getdate.h, lib/getdate.y, lib/getdomainname.c, lib/getdomainname.h,
13548         lib/getgroups.c, lib/gethostname.c, lib/gethrxtime.c, lib/gethrxtime.h,
13549         lib/getline.c, lib/getline.h, lib/getloadavg.c, lib/getndelim2.c,
13550         lib/getndelim2.h, lib/getnline.c, lib/getnline.h, lib/getopt.c,
13551         lib/getopt1.c, lib/getopt_.h, lib/getopt_int.h, lib/getpagesize.h,
13552         lib/getpass.c, lib/getpass.h, lib/getsubopt.c, lib/getsubopt.h,
13553         lib/gettext.h, lib/gettime.c, lib/gettimeofday.c, lib/getugroups.c,
13554         lib/getusershell.c, lib/group-member.c, lib/group-member.h,
13555         lib/hard-locale.c, lib/hard-locale.h, lib/hash-pjw.c, lib/hash-pjw.h,
13556         lib/hash.c, lib/hash.h, lib/human.c, lib/human.h, lib/iconvme.c,
13557         lib/iconvme.h, lib/idcache.c, lib/inet_ntop.h, lib/intprops.h,
13558         lib/inttostr.c, lib/inttostr.h, lib/isdir.c, lib/javacomp.c,
13559         lib/javacomp.h, lib/javacomp.sh.in, lib/javaexec.c, lib/javaexec.h,
13560         lib/javaexec.sh.in, lib/lbrkprop.h, lib/lchown.c, lib/ldexpl.c,
13561         lib/linebreak.c, lib/linebreak.h, lib/linebuffer.c, lib/linebuffer.h,
13562         lib/localcharset.c, lib/localcharset.h, lib/logl.c, lib/long-options.c,
13563         lib/long-options.h, lib/lstat.c, lib/makepath.c, lib/makepath.h,
13564         lib/malloc.c, lib/mathl.h, lib/mbswidth.c, lib/mbswidth.h, lib/md5.c,
13565         lib/md5.h, lib/memcasecmp.c, lib/memcasecmp.h, lib/memchr.c,
13566         lib/memcmp.c, lib/memcoll.c, lib/memcoll.h, lib/memcpy.c, lib/memmem.c,
13567         lib/memmem.h, lib/mempcpy.c, lib/mempcpy.h, lib/memrchr.c,
13568         lib/memrchr.h, lib/memset.c, lib/minmax.h, lib/mkdir.c, lib/mkdtemp.c,
13569         lib/mkdtemp.h, lib/mkstemp.c, lib/mktime.c, lib/modechange.c,
13570         lib/modechange.h, lib/mountlist.c, lib/mountlist.h, lib/nanosleep.c,
13571         lib/obstack.c, lib/obstack.h, lib/openat.c, lib/openat.h,
13572         lib/pagealign_alloc.c, lib/pagealign_alloc.h, lib/path-concat.c,
13573         lib/path-concat.h, lib/pathmax.h, lib/pathname.h, lib/physmem.c,
13574         lib/physmem.h, lib/pipe.c, lib/pipe.h, lib/poll.c, lib/poll_.h,
13575         lib/posixtm.c, lib/posixtm.h, lib/posixver.c, lib/printf-args.c,
13576         lib/printf-args.h, lib/printf-parse.c, lib/printf-parse.h,
13577         lib/progname.c, lib/progname.h, lib/progreloc.c, lib/putenv.c,
13578         lib/quote.c, lib/quote.h, lib/quotearg.c, lib/quotearg.h, lib/raise.c,
13579         lib/readlink.c, lib/readtokens.c, lib/readtokens.h, lib/readtokens0.c,
13580         lib/readtokens0.h, lib/readutmp.c, lib/readutmp.h, lib/realloc.c,
13581         lib/ref-add.sin, lib/ref-del.sin, lib/regex.c, lib/regex.h,
13582         lib/rename.c, lib/rmdir.c, lib/rpmatch.c, lib/safe-read.c,
13583         lib/safe-read.h, lib/safe-write.c, lib/safe-write.h, lib/same.c,
13584         lib/same.h, lib/save-cwd.c, lib/save-cwd.h, lib/savedir.c,
13585         lib/savedir.h, lib/setenv.c, lib/setenv.h, lib/settime.c,
13586         lib/sh-quote.c, lib/sh-quote.h, lib/sha1.c, lib/sha1.h, lib/sig2str.c,
13587         lib/sig2str.h, lib/sincosl.c, lib/snprintf.c, lib/snprintf.h,
13588         lib/sqrtl.c, lib/stat-macros.h, lib/stat.c, lib/stdbool_.h,
13589         lib/stdint_.h, lib/stdio-safer.h, lib/stpcpy.c, lib/stpcpy.h,
13590         lib/stpncpy.c, lib/stpncpy.h, lib/strcase.h, lib/strcasecmp.c,
13591         lib/strchrnul.c, lib/strchrnul.h, lib/strcspn.c, lib/strdup.c,
13592         lib/strdup.h, lib/strerror.c, lib/strftime.c, lib/strftime.h,
13593         lib/stripslash.c, lib/strndup.c, lib/strndup.h, lib/strnlen.c,
13594         lib/strpbrk.c, lib/strpbrk.h, lib/strsep.c, lib/strsep.h, lib/strstr.c,
13595         lib/strstr.h, lib/strtod.c, lib/strtoimax.c, lib/strtok_r.c,
13596         lib/strtok_r.h, lib/strtol.c, lib/strtoll.c, lib/strtoul.c,
13597         lib/strtoull.c, lib/strverscmp.c, lib/strverscmp.h, lib/sysexit_.h,
13598         lib/tempname.c, lib/time_r.c, lib/time_r.h, lib/timegm.c, lib/timegm.h,
13599         lib/timespec.h, lib/trigl.c, lib/trigl.h, lib/ucs4-utf16.h,
13600         lib/ucs4-utf8.h, lib/unicodeio.c, lib/unicodeio.h, lib/unistd-safer.h,
13601         lib/unlocked-io.h, lib/unsetenv.c, lib/userspec.c, lib/utf16-ucs4.h,
13602         lib/utf8-ucs4.h, lib/utime.c, lib/utimecmp.c, lib/utimecmp.h,
13603         lib/utimens.c, lib/vasnprintf.c, lib/vasnprintf.h, lib/vasprintf.c,
13604         lib/vasprintf.h, lib/version-etc-fsf.c, lib/version-etc.c,
13605         lib/version-etc.h, lib/vsnprintf.c, lib/vsnprintf.h, lib/w32spawn.h,
13606         lib/wait-process.c, lib/wait-process.h, lib/xalloc-die.c, lib/xalloc.h,
13607         lib/xallocsa.c, lib/xallocsa.h, lib/xasprintf.c, lib/xgetcwd.c,
13608         lib/xgetcwd.h, lib/xgetdomainname.c, lib/xgetdomainname.h,
13609         lib/xgethostname.c, lib/xmalloc.c, lib/xmemcoll.c, lib/xnanosleep.c,
13610         lib/xreadlink.c, lib/xreadlink.h, lib/xsetenv.c, lib/xsetenv.h,
13611         lib/xsize.h, lib/xstrndup.c, lib/xstrndup.h, lib/xstrtod.c,
13612         lib/xstrtod.h, lib/xstrtoimax.c, lib/xstrtol.c, lib/xstrtol.h,
13613         lib/xstrtoumax.c, lib/xtime.h, lib/xvasprintf.c, lib/xvasprintf.h,
13614         lib/yesno.c, lib/yesno.h:
13615         Update FSF postal mail address.
13616
13617 2005-05-13  Paul Eggert  <eggert@cs.ucla.edu>
13618
13619         * MODULES.html.sh, README, gnulib-tool, tests/test-base64.c,
13620         tests/test-memmem.c, tests/test-stpncpy.c:
13621         Update FSF postal mail address.
13622
13623 2005-05-13  Bruno Haible  <bruno@clisp.org>
13624
13625         * lib/stdint_.h (int64_t, uint64_t, int_least64_t, uint_least64_t,
13626         int_fast64_t, uint_fast64_t, intmax_t, uintmax_t, INT64_MIN, INT64_MAX,
13627         UINT64_MAX, INT_LEAST64_MIN, INT_LEAST64_MAX, UINT_LEAST64_MAX,
13628         INT_FAST64_MIN, INT_FAST64_MAX, UINT_FAST64_MAX, INTMAX_MIN,
13629         INTMAX_MAX, UINTMAX_MAX, INT64_C, UINT64_C, INTMAX_C, UINTMAX_C):
13630         Add support for 64-bit integers in the MSVC compiler.
13631
13632 2005-05-12  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
13633
13634         * modules/getdate (Makefile.am): Add getdate.c to EXTRA_DIST
13635
13636 2005-05-12  Eric Blake  <ebb9@byu.net>  (tiny change)
13637
13638         * gnulib-tool (func_import): Sort and uniquify recommended includes.
13639
13640 2005-05-11  Paul Eggert  <eggert@cs.ucla.edu>
13641
13642         * doc/getdate.texi (General date syntax): Don't say that date
13643         date --iso-8601=ns generates acceptable dates; it doesn't yet.
13644         Problem reported by Nic Ferrier.
13645
13646 2005-05-10  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
13647
13648         * lib/getaddrinfo.c: Don't fail when SOCK_STREAM or SOCK_DGRAM are
13649         specified in ai_socktype. Fix invalid ai_protocol
13650         check. ai_protocol is usually set to 0 or depending on
13651         ai_family/ai_socktype to IPPROTO_TCP / IPPROTO_UDP.  Checking for
13652         SOCK_STREAM / SOCK_DGRAM in ai_protocol was invalid.  Set
13653         ai_socktype / ai_protocol in the returned addrinfo structure.
13654
13655 2005-05-10  Simon Josefsson  <jas@extundo.com>
13656
13657         * m4/getaddrinfo.m4: Look in libnsl/libsocket for getaddrinfo, from
13658         Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
13659
13660 2005-05-10  Karl Berry  <karl@gnu.org>
13661
13662         * doc/fdl.texi, gpl.texi, lgpl.texi, COPYING: update FSF address
13663         (from http://www.gnu.org/licenses).
13664         * doc/COPYING.LIB: also rename to COPYING.LESSER.
13665         * doc/COPYING.DOC: remove; per rms, only needed in doc files, so
13666         fdl.texi suffices.
13667
13668 2005-05-10  Karl Berry  <karl@gnu.org>
13669
13670         * config/srclist.txt (COPYING.LESSER): rename from COPYING.LIB.
13671         (COPYING.DOC): remove.
13672
13673         * config/srclist-update: new FSF address.
13674
13675 2005-05-10  Derek Price  <derek@ximbiot.com>
13676
13677         * m4/getopt.m4 (gl_GETOPT): Check for Solaris 10 bug, not decl, when
13678         possible.
13679
13680 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
13681             Bruno Haible  <bruno@clisp.org>
13682
13683         * modules/inet_ntop: New file.
13684         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
13685         inet_ntop.
13686
13687 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
13688             Bruno Haible  <bruno@clisp.org>
13689
13690         * m4/inet_ntop.m4: New file.
13691
13692 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
13693             Bruno Haible  <bruno@clisp.org>
13694
13695         * lib/inet_ntop.h: New file.
13696         * lib/inet_ntop.c: New file, from glibc with modifications.
13697
13698 2005-05-09  Paul Eggert  <eggert@cs.ucla.edu>
13699
13700         * modules/time_r (License): Change to LGPL.
13701         * modules/extensions (License): Change to LGPL.  Actually,
13702         the license is more permissive than that, but currently gnulib-tool
13703         doesn't know how to handle more-permissive licenses.
13704
13705         * modules/stat-macros (Depends-on): Don't depend on stat-macros (!).
13706         Problem reported by Dave Love.
13707
13708 2005-05-08  Jim Meyering  <jim@meyering.net>
13709
13710         * lib/classpath.c (PATH_SEPARATOR): Remove insignificant trailing
13711         blank.
13712
13713 2005-05-06  Paul Eggert  <eggert@cs.ucla.edu>
13714
13715         * modules/argmatch (Depends-on): Add stdbool.
13716         * modules/backupfile (Depends-on): Likewise.
13717         * modules/chdir-long (Depends-on): Likewise.
13718         * modules/closeout (Depends-on): Likewise.
13719         * modules/cycle-check (Depends-on): Likewise.
13720         * modules/dirname (Depends-on): Likewise.
13721         * modules/fnmatch (Depends-on): Likewise.
13722         * modules/fsusage (Depends-on): Likewise.
13723         * modules/fwriteerror (Depends-on): Likewise.
13724         * modules/getcwd (Depends-on): Likewise.
13725         * modules/getloadavg (Depends-on): Likewise.
13726         * modules/hard-locale (Depends-on): Likewise.
13727         * modules/makepath (Depends-on): Likewise.
13728         * modules/mountlist (Depends-on): Likewise.
13729         * modules/nanosleep (Depends-on): Likewise.
13730         * modules/posixtm (Depends-on): Likewise.
13731         * modules/quotearg (Depends-on): Likewise.
13732         * modules/readtokens (Depends-on): Likewise.
13733         * modules/readtokens0 (Depends-on): Likewise.
13734         * modules/readutmp (Depends-on): Likewise.
13735         * modules/save-cwd (Depends-on): Likewise.
13736         * modules/strftime (Depends-on): Likewise.
13737         * modules/userspec (Depends-on): Likewise.
13738         * modules/utimecmp (Depends-on): Likewise.
13739         * modules/xgetcwd (Depends-on): Likewise.
13740         * modules/xnanosleep (Depends-on): Likewise.
13741         * modules/xstrtod (Depends-on): Likewise.
13742         * modules/yesno (Depends-on): Likewise.
13743
13744 2005-05-05  Paul Eggert  <eggert@cs.ucla.edu>
13745
13746         * m4/getopt.m4 (gl_GETOPT): Check for Solaris 10 getopt, and avoid
13747         needless checks.
13748
13749 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
13750
13751         Merge from coreutils.  Among other things,
13752         add bulletproofing for cases where stdin, stdout, or stderr are closed.
13753         * lib/fd-safer.c: New file.
13754         * lib/fcntl-safer.h, open-safer.c: Remove.
13755         * lib/chdir-long.c: Fix comment "fetish" -> "coreutils".
13756         * lib/dup-safer.c: Include unistd-safer.h first.
13757         Don't include errno.h.
13758         (dup_safer) [!defined F_DUPFD]: Let fd_safer do the real work.
13759         * lib/file-type.h: Don't assume invoker included sys/stat.h first.
13760         * lib/file-type.c: Rely on file-type.h change.
13761         * lib/getloadavg.c: Include unistd-safer.h.
13762         (getloadavg): Use safer open.
13763         * lib/getusershell.c: Include "stdio-safer.h".
13764         (getusershell): Use safer fopen.
13765         * lib/long-options.c (long_options): Use NULL rather than 0.
13766         * lib/modechange.h (mode_free): Remove; all callers changed to invoke
13767         'free'.
13768         * lib/modechange.c: Likewise.
13769         xstrtol.h, stdbool.h, stddef.h: Don't include; no longer needed.
13770         (MODE_DONE): New constant.
13771         (struct mode_change): Remove 'next' member.
13772         (make_node_op_equals): New function; like the old one of the
13773         same name, except it allocates an array.
13774         (mode_compile, mode_create_from_ref): Use it.
13775         (mode_compile): Allocate result as an array, not a linked list.
13776         Parse octal string ourself, so that we catch mistakes like "+0".
13777         (mode_adjust): Arg is an array, not a linked list.
13778         * lib/modechange.c: Include stat-macros.h, xalloc.h.
13779         (S_ISDIR, S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR):
13780         (S_IRGRP, S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH, S_IRXWU):
13781         (S_IRWXG, S_IRWXO, CHMOD_MODE_BITS):
13782         Remove.  This is now stat-macros.h's job.
13783         (talloc): Remove.  All callers replaced by xalloc, so that
13784         our invokers don't have to worry about reporting memory failures.
13785         (make_node_op_equals): Remove.
13786         (MODE_ORDINARY_CHAGE, MODE_X_IF_ANY_X, MODE_COPY_EXISTING):
13787         New constants.
13788         (struct mode_change): Moved here from modechange.h.
13789         (mode_append_entry): Remove.
13790         (mode_compile): Remove MASKED_OPS arg, since it encouraged
13791         apps to have incorrect behavior.  Use simpler algorithm for head
13792         and tail.  Don't futz with umask; that's now the job of mode_adjust.
13793         Detect more invalid usages rather than having somewhat-random behavior.
13794         Don't insert an "a=" action, as that leads to incorrect behavior.
13795         (mode_compile, mode_create_from_ref): Return NULL on error instead
13796         of an enum, since now there's only one way to have an error.  All
13797         callers changed.
13798         (mode_adjust): Accept new arg UMASK_VALUE, and interpret it
13799         at the correct time.  Simplify calculation of "+u" and its ilk.
13800         Don't mishandle "+X".
13801         (mode_free): Remove "register" and localize decls.
13802         * lib/modechange.h (MODE_X_IF_ANY_X, MODE_COPY_EXISTING):
13803         (struct mode_change): Move to modechange.c; callers don't
13804         need to see this stuff.
13805         (MODE_MASK_EQUALS, MODE_MASK_PLUS, MODE_MASK_MINUS, MODE_MASK_ALL):
13806         (MODE_INVALID, MODE_MEMORY_EXHAUSTED, MODE_BAD_REFERENCE): Remove.
13807         (mode_change, mode_adjust): Reflect the new signatures noted above.
13808         * lib/nanosleep.c (rpl_nanosleep): Include "timespec.h" before macros
13809         that might redefine system include files.
13810         (siginterrupt) [!HAVE_SIGINTERRUPT]: New macro.
13811         (my_usleep): Use NULL rather than (void *) 0.
13812         (rpl_nanosleep) [!defined SA_NOCLDSTOP]:
13813         Use siginterrupt to specify that system calls should be interrupted.
13814         (rpl_nanosleep): Move initialization of suspended closer to call of
13815         my_usleep.
13816         * lib/readutmp.h (read_utmp): New arg OPTIONS.  All uses changed.
13817         * lib/readutmp.c: Likewise.  Include signal.h, stdbool.h.
13818         (desirable_utmp_entry): New function.
13819         (read_utmp) [defined UTMP_NAME_FUNCTION]: Redo memory allocation
13820         using x2nrealloc, to simplify logic.
13821         (read_utmp) [!defined UTMP_NAME_FUNCTION]: Check for overflow in
13822         size calculation.  Do not assume utmp file is a regular file.
13823         * lib/readutmp.h (UT_PID): Moved here from ../src/who.c.
13824         (READ_UTMP_CHECK_PIDS): New constant.
13825         * lib/save-cwd.c: Include unistd-safer.h.
13826         (save_cwd): Use fd_safer.
13827         * lib/tempname.c (S_ISDIR, S_IRUSR, S_IRUSR, S_IWUSR, S_IXUSR): Remove.
13828         [!_LIBC] Include "stat-macros.h" instead.
13829         * lib/unistd-safer.h (fd_safer): New decl.
13830
13831 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
13832
13833         * modules/getloadavg (Depends-on): Add unistd-safer.
13834         * modules/getusershell (Depends-on): Add stdio-safer.
13835         * modules/lstat (Depends-on): Remove xalloc.
13836         * modules/mkstemp (Depends-on): Add stat-macros.
13837         * modules/modechange (Depends-on): Remove xstrtol.
13838         Add stat-macros, xalloc.
13839         * modules/save-cwd (Depends-on): Add unistd-safer.
13840         * modules/stdio-safer (Makefile.am): Remove lib_SOURCES.
13841         * modules/unistd-safer (Files): Add lib/fd-safer.c
13842         (Makefile.am): Remove lib_SOURCES.
13843
13844         * MODULES.html.sh (Enhancements for POSIX:2001 functions):
13845         Remove fcntl-safer; unistd-safer supersedes it.
13846
13847 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
13848
13849         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Don't require
13850         AC_HEADER_STAT.
13851         * m4/lchown.m4 (gl_FUNC_CHOWN): Likewise.
13852         (gl_PREREQ_CHOWN): Remove.
13853         * m4/lstat.m4 (gl_FUNC_LSTAT): Require AC_FUNC_LSTAT instead of calling
13854         it.  Don't require AC_HEADER_STAT.
13855         (gl_PREREQ_LSTAT): Remove.
13856         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Check stdint.h only once.
13857         Don't require AC_HEADER_STAT.
13858         * m4/rmdir.m4 (gl_FUNC_RMDIR): Don't require AC_HEADER_STAT.
13859         (gl_PREREQ_RMDIR): Remove.
13860         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME): Don't
13861         mention stat-macros.h or AC_HEADER_STAT, since we'll make
13862         the stat-macros module a prerequisite.
13863         * m4/file-type.m4 (gl_FILE_TYPE): Likewise.
13864         * m4/filemode.m4 (gl_FILEMODE): Likewise.
13865         * m4/makepath.m4 (gl_MAKEPATH): Likewise.
13866         * m4/modechange.m4 (gl_MODECHANGE): Likewise.
13867         * m4/clock_time.m4 (gl_CLOCK_TIME): Use gl_ rather than fetish_ for
13868         variable names.
13869         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Renamed from
13870         fetish_FUNC_RMDIR_NOTEMPTY.  All uses changed.  Use gl_ for
13871         variable prefixes.
13872         * m4/fcntl-safer.m4: Remove.
13873         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Use AC_LIBSOURCES and AC_LIBOBJ.
13874         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Likewise.
13875         Invoke gl_PREREQ_FD_SAFER.
13876         (gl_PREREQ_FD_SAFER): New macro.
13877         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): Check for siginterrupt.
13878         * m4/readutmp.m4 (gl_READUTMP): Require AC_C_INLINE.
13879         Use AC_CHECK_HEADERS_ONCE and AC_CHECK_FUNCS_ONCE when possible.
13880         Remove duplicate call to AC_LIBOBJ(readutmp).
13881         (gl_PREREQ_READUTMP): Remove.  All uses inlined.
13882
13883         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Check for message, not for
13884         MAP_ANON.  Problem reported by Moriyoshi Koizumi to bug-cvs.
13885
13886 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
13887
13888         * MODULES.html.sh (Misc): Add byteswap.
13889
13890 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
13891
13892         * modules/getcwd (Depends-on): Add extensions.
13893         * modules/openat (Depends-on): Likewise.
13894
13895 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
13896
13897         * modules/byteswap: New file.
13898
13899 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
13900
13901         * m4/byteswap.m4: New file.
13902
13903 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
13904
13905         * lib/byteswap_.h: New file.
13906
13907 2005-04-25  Karl Berry  <karl@gnu.org>
13908
13909         * m4/gettext.m4: Update from GNU gettext 0.14.4.
13910
13911 2005-04-25  Albert Chin  <china@thewrittenword.com>
13912
13913         * lib/regex.c: Include <stdio.h>, as a workaround to a Compaq Desktop
13914         Toolkit C bug.
13915
13916 2005-04-21  Oskar Liljeblad  <oskar@osk.mine.nu>
13917
13918         * gnulib-tool (Options): Add -s for --symlink/--symbolic.
13919         (func_ln_if_changed) Remove forcibly for no error message
13920         in case file does not exist.
13921
13922 2005-04-19  Simon Josefsson  <jas@extundo.com>
13923
13924         * gnulib-tool (Options): Make --symlink mean --symbolic.
13925
13926 2005-04-18  Oskar Liljeblad  <oskar@osk.mine.nu>
13927
13928         * doc/gnulib.texi (Initial import): Fix.  Mention --aux-dir.
13929
13930 2005-04-16  Simon Josefsson  <jas@extundo.com>
13931
13932         * modules/getpass-gnu (Makefile.am): Don't mention getpass.h.
13933
13934 2005-04-15  Simon Josefsson  <jas@extundo.com>
13935
13936         * m4/getpass.m4 (gl_FUNC_GETPASS): Use AC_LIBSOURCES.
13937
13938 2005-04-15  Simon Josefsson  <jas@extundo.com>
13939
13940         * gnulib-tool: Rename --symlink to --symbolic.
13941
13942 2005-04-15  Oskar Liljeblad  <oskar@osk.mine.nu>
13943
13944         * gnulib-tool: Add -s, --symlink option to gnulib-tool to make
13945         symbolic links to files instead of copying/moving.  Add --aux-dir,
13946         specifying directory relative --dir where auxiliary build tools
13947         are placed.
13948
13949 2005-04-14  Bruno Haible  <bruno@clisp.org>
13950
13951         * modules/allocsa (License): Change to LGPL.
13952         Requested by Yoann Vandoorselaere <yoann@prelude-ids.org>.
13953
13954 2005-04-13  Paul Eggert  <eggert@cs.ucla.edu>
13955
13956         * lib/getdate.y (zone): Allow relunit_snumber after tZONE, so
13957         that "UTC +1 second" continues to work.  Problem reported
13958         by Dmitry V. Levin.
13959         (relunit_snumber): New rule.
13960         (relunit): Use it.
13961
13962 2005-04-12  Paul Eggert  <eggert@cs.ucla.edu>
13963
13964         * lib/getdate.y (universal_time_zone_table): New constant.
13965         (time_zone_table): Remove GMT, UT, UTC entries; they're now in
13966         universal_time_zone_table.
13967         (lookup_zone): Prefer universal_time_zone_table to
13968         local_time_zone_table, so that "GMT" time stamps are allowed in
13969         London during the summer.  Problem reported by Ian Abbott.
13970
13971 2005-04-12  Jim Meyering  <jim@meyering.net>
13972
13973         * lib/human.c (humblock): Set *options even when returning due to
13974         xstrtoumax conversion failure.  Thanks to a used-uninitialized
13975         warning from gcc-4.
13976
13977 2005-04-09  Jim Meyering  <jim@meyering.net>
13978
13979         * lib/posixtm.c (posixtime) [lint]: Avoid spurious warning from gcc-4's
13980         -Wuninitialized: initialize tm0.tm_year.
13981
13982 2005-04-04  Paul Eggert  <eggert@cs.ucla.edu>
13983
13984         * lib/getdate.y (parser_control): rels_seen is now a boolean, not a
13985         count, since there's no maximum.  All uses changed.
13986         Add member dsts_seen.
13987         (local_zone): Accumulate dsts_seen rather than relying on tm_isdst
13988         not being INT_MAX.
13989         (get_date): Initialize dsts_seen, and check that it doesn't go over 1.
13990         Use pc_rels_seen to decide whther a date is absolute.
13991
13992         * lib/getdate.y (number): Don't overwrite year.
13993         (get_date): Initialize pc.year.digits to 0, not 4, to enable above
13994         check.
13995
13996 2005-04-02  Simon Josefsson  <jas@extundo.com>
13997
13998         * lib/getaddrinfo.h: Fix OpenBSD compilation failure, inspired by tiny
13999         patch from Yoann Vandoorselaere <yoann@prelude-ids.org>.
14000
14001 2005-03-28  Eric Blake  <ebb9@byu.net>  (tiny change)
14002
14003         * m4/getcwd-path-max.m4: Return success on systems such as Cygwin
14004         where no absolute path name can be longer than PATH_MAX.
14005
14006 2005-03-27  Jim Meyering  <jim@meyering.net>
14007
14008         * lib/argmatch.c: Clarify comment: null-terminated -> NULL-terminated.
14009
14010 2005-03-26  Paul Eggert  <eggert@cs.ucla.edu>
14011
14012         * lib/intprops.h (INT_STRLEN_BOUND, INT_BUFSIZE_BOUND):
14013         "one's complement" -> "ones' complement" in comment, as per Knuth.
14014         "value of type" -> "type or expression" in comment.
14015         * lib/mktime.c, strftime.c: Propagate intprops.h comment nits.
14016
14017 2005-03-26  Jim Meyering  <jim@meyering.net>
14018
14019         Comment nits.
14020         * lib/intprops.h: Add the apostrophe in `(one|two)'s complement'.
14021         Correct typos: s/or/of/.
14022
14023 2005-03-26  Jim Meyering  <jim@meyering.net>
14024
14025         * modules/check-include-files: Move to ../ and rename to...
14026         * check-module: ...this.
14027
14028 2005-03-25  Jim Meyering  <jim@meyering.net>
14029
14030         * modules/xvasprintf (Files): Add xalloc.h.
14031
14032 2005-03-23  Paul Eggert  <eggert@cs.ucla.edu>
14033
14034         * modules/gettext (Files): config/config.rpath ->
14035         build-aux/config.rpath
14036         * modules/iconv (Files): Likewise.
14037         Problem reported by Oskar Liljeblad.
14038
14039 2005-03-23  Jim Meyering  <jim@meyering.net>
14040
14041         * modules/check-include-files: New script to check for
14042         missing dependencies, multiple includes, etc.
14043
14044         * modules/c-strtold (Depends-on): Add xalloc.
14045         * modules/c-strtod (Depends-on): Add xalloc.
14046         * modules/hash (Depends-on): Add xalloc.
14047         (Files): Remove lib/xalloc.h.
14048
14049         * modules/gethrxtime (Files): Add lib/gethrxtime.h.
14050         * modules/userspec (Files): Add lib/inttostr.h.
14051
14052 2005-03-23  Jim Meyering  <jim@meyering.net>
14053
14054         * lib/canonicalize.c: Remove duplicate `#include "stat-macros.h"'.
14055
14056 2005-03-22  Jim Meyering  <jim@meyering.net>
14057
14058         * modules/stat-macros: New module.
14059         * modules/canonicalize, modules/euidaccess, modules/file-type,
14060         * modules/filemode, modules/lchown, modules/makepath,
14061         * modules/rmdir, modules/stat: Depend on new stat-macros module
14062         rather than listing lib/stat-macros.h manually.
14063         Don't add stat-macros.h to lib_SOURCES or list it in Files: section.
14064
14065 2005-03-22  Jim Meyering  <jim@meyering.net>
14066
14067         * m4/stat-macros.m4 (gl_STAT_MACROS): New file/macro.
14068
14069 2005-03-22  Bruno Haible  <bruno@clisp.org>
14070
14071         * config/srclist.txt: Replace target directory 'config' with
14072         'build-aux'.
14073         * config/config.guess, config.sub, config.rpath, depcomp, install-sh:
14074         * config/mdate-sh, missing, mkinstalldirs, texinfo.tex: Move to
14075         ../build-aux/.
14076
14077 2005-03-21  Paul Eggert  <eggert@cs.ucla.edu>
14078
14079         * modules/chdir-long (Depends-on): Add mempcpy.
14080
14081         * modules/acl, modules/backupfile, modules/c-strtod,
14082         modules/c-strtold, modules/canon-host, modules/canonicalize,
14083         modules/cloexec, modules/closeout, modules/dirfd, modules/dirname,
14084         modules/exclude, modules/exitfail, modules/file-type,
14085         modules/filemode, modules/fpending, modules/fsusage, modules/getcwd,
14086         modules/getdate, modules/getline, modules/getpagesize,
14087         modules/getpass, modules/getugroups, modules/group-member,
14088         modules/hard-locale, modules/hash, modules/human, modules/idcache,
14089         modules/inttostr, modules/long-options, modules/makepath,
14090         modules/md5, modules/memcasecmp, modules/memcoll,
14091         modules/modechange, modules/mountlist, modules/path-concat,
14092         modules/pathmax, modules/physmem, modules/posixtm, modules/posixver,
14093         modules/quote, modules/quotearg, modules/readtokens, modules/readutmp,
14094         modules/safe-read, modules/safe-write, modules/same, modules/savedir,
14095         modules/settime, modules/sha1, modules/sig2str, modules/strdup,
14096         modules/strftime, modules/strndup, modules/strverscmp,
14097         modules/timespec, modules/unlocked-io, modules/userspec,
14098         modules/utimecmp, modules/utimens, modules/xalloc, modules/xstrtol,
14099         modules/yesno:
14100         Remove lib_SOURCES line from Makefile.am section, as this is now
14101         done automatically by the corresponding Autoconf macro.
14102
14103 2005-03-21  Jim Meyering  <jim@meyering.net>
14104
14105         Changes imported from coreutils.
14106
14107         * lib/cycle-check.c: Don't include xalloc.h.
14108
14109         * lib/path-concat.c: Don't include assert.h.
14110         (path_concat): Remove assertion that would have triggered
14111         for ABASE starting with more than one slash.
14112         Reported by Andreas Schwab.
14113
14114         * lib/path-concat.c (path_concat): Set *BASE_IN_RESULT
14115         properly when ABASE is an absolute file name.
14116         Correct the description of this function.
14117         Include <assert.h>.
14118         Add an assertion and a test driver.
14119         This fixes a bug introduced on 2004-07-02.
14120         Andreas Schwab reported the resulting failure of cp --parents:
14121         http://lists.gnu.org/archive/html/bug-coreutils/2005-01/msg00130.html
14122
14123 2005-03-21  Jim Meyering  <jim@meyering.net>
14124
14125         * m4/chdir-long.m4 (gl_PREREQ_CHDIR_LONG): Invoke gl_FUNC_MEMRCHR.
14126         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Check for memrchr decl.
14127
14128 2005-03-21  Jim Meyering  <jim@meyering.net>
14129         and  Paul Eggert  <eggert@cs.ucla.edu>
14130
14131         * m4/acl.m4, m4/backupfile.m4, m4/c-strtod.m4, m4/canon-host.m4,
14132         m4/canonicalize.m4, m4/cloexec.m4, m4/closeout.m4, m4/dirfd.m4,
14133         m4/dirname.m4, m4/exclude.m4, m4/exitfail.m4, m4/file-type.m4,
14134         m4/filemode.m4, m4/fpending.m4, m4/fsusage.m4, m4/getcwd.m4,
14135         m4/getdate.m4, m4/getline.m4, m4/getpagesize.m4, m4/getpass.m4,
14136         m4/getugroups.m4, m4/group-member.m4, m4/hard-locale.m4, m4/hash.m4,
14137         m4/human.m4, m4/idcache.m4, m4/inttostr.m4, m4/long-options.m4,
14138         m4/makepath.m4, m4/md5.m4, m4/memcasecmp.m4, m4/memcoll.m4,
14139         m4/modechange.m4, m4/mountlist.m4, m4/nanosleep.m4, m4/path-concat.m4,
14140         m4/pathmax.m4, m4/physmem.m4, m4/posixtm.m4, m4/posixver.m4,
14141         m4/quote.m4, m4/quotearg.m4, m4/readtokens.m4, m4/readutmp.m4,
14142         m4/safe-read.m4, m4/safe-write.m4, m4/same.m4, m4/savedir.m4,
14143         m4/settime.m4, m4/sha1.m4, m4/sig2str.m4, m4/strdup.m4, m4/strftime.m4,
14144         m4/strndup.m4, m4/strverscmp.m4, m4/timespec.m4, m4/unlocked-io.m4,
14145         m4/userspec.m4, m4/utimecmp.m4, m4/utimens.m4, m4/xalloc.m4,
14146         m4/xnanosleep.m4, m4/xstrtol.m4, m4/yesno.m4:
14147         Use AC_LIBSOURCES and AC_LIBOBJ to indicate source and object files
14148         for these modules.
14149
14150 2005-03-18  Paul Eggert  <eggert@cs.ucla.edu>
14151
14152         * lib/strftime.c (my_strftime): If the underlying strftime returns 0
14153         (which shouldn't happen), generate nothing instead of returning 0
14154         immediately, so that nstrftime (NULL, ...) doesn't return 0.
14155
14156 2005-03-16  Bruno Haible  <bruno@clisp.org>
14157
14158         * modules/stdint (Makefile.am): Use HAVE_LONG_LONG_64BIT instead of
14159         HAVE_LONGLONG_64BIT.
14160
14161 2005-03-16  Bruno Haible  <bruno@clisp.org>
14162
14163         * m4/stdint.m4 (gl_STDINT_H): Define HAVE_LONG_LONG_64BIT instead of
14164         HAVE_LONGLONG_64BIT.
14165
14166 2005-03-16  Bruno Haible  <bruno@clisp.org>
14167
14168         * lib/stdint_.h: Use HAVE_LONG_LONG_64BIT instead of
14169         HAVE_LONGLONG_64BIT.
14170
14171 2005-03-15  Paul Eggert  <eggert@cs.ucla.edu>
14172
14173         * lib/strftime.c (my_strftime): Prepend space to format so that we can
14174         reliably distinguish strftime failure from empty output on POSIX
14175         hosts.
14176
14177 2005-03-15  Paul Eggert  <eggert@cs.ucla.edu>
14178
14179         * lib/iconvme.c (SIZE_MAX): New macro, if not already defined.
14180         (iconv_string): Don't guess a size-zero buffer, as that might cause
14181         buffer overrun.  Instead, avoid multiplying by MB_LEN_MAX if the
14182         result would be 'too large', where 'too large' is (heuristically)
14183         the square root of SIZE_MAX, divided by MB_LEN_MAX to allay
14184         overflow concerns.  This will prevent some unwanted malloc failures
14185         when the inputs are very large.
14186
14187 2005-03-15  Karl Berry  <karl@gnu.org>
14188
14189         * config/srclist.txt (config.rpath): from gettext.
14190         * config/config.rpath: update.
14191
14192 2005-03-15  Bruno Haible  <bruno@clisp.org>
14193
14194         * lib/regex.c (byte_re_match_2_internal): Rename local variable 'not'
14195         to 'negate'.
14196
14197         * lib/regex.c (byte_re_match_2_internal): Reduce scope of same_str_p
14198         variable.
14199
14200         * lib/regex.c (EXTEND_BUFFER, regcomp): Cast the realloc/malloc
14201         results.
14202
14203 2005-03-14  Simon Josefsson  <jas@extundo.com>
14204
14205         * lib/timegm.h: Use proper prototype CPP guards, reported by Dave Love
14206         <fx@gnu.org>.
14207
14208 2005-03-14  Paul Eggert  <eggert@cs.ucla.edu>
14209
14210         * lib/mktime.c (TYPE_TWOS_COMPLEMENT, TYPE_ONES_COMPLEMENT,
14211         TYPE_SIGNED_MAGNITUDE, TYPE_MINIMUM, TYPE_MAXIMUM): Sync from
14212         intprops.h.
14213         * lib/strtol.c: Likewise.
14214
14215 2005-03-14  Jim Meyering  <jim@meyering.net>
14216
14217         * lib/strftime.c (my_strftime) [HAVE_STRFTIME && ! (_NL_CURRENT
14218         && HAVE_STRUCT_ERA_ENTRY)]: Initialize the first byte of ubuf[]
14219         to be nonzero so that we (and caller) can detect the difference
14220         between a valid zero-length expansion and an error return, even
14221         when the underlying strftime fails before writing anything into
14222         that location.
14223
14224 2005-03-14  Bruno Haible  <bruno@clisp.org>
14225
14226         * m4/lib-link.m4, gettext.m4, nls.m4, po.m4:
14227         Update from GNU gettext 0.14.3.
14228
14229 2005-03-10  Jim Meyering  <jim@meyering.net>
14230
14231         * m4/save-cwd.m4 (gl_SAVE_CWD): Check for fchdir.
14232
14233 2005-03-10  Jim Meyering  <jim@meyering.net>
14234
14235         * lib/save-cwd.c [!HAVE_FCHDIR]: Define open, fchdir, and chdir_long
14236         so that this module works on systems without fchdir.
14237
14238 2005-03-09  Paul Eggert  <eggert@cs.ucla.edu>
14239
14240         Factor int-properties macros into a single file, except for
14241         glibc-related files.
14242         * lib/intprops.h: New file.
14243         * lib/getloadavg.c: Include it instead of limits.h.
14244         (INT_STRLEN_BOUND): Remove.
14245         * lib/human.c: Include intprops.h.
14246         (group_number): Use INT_STRLEN_BOUND instead of rolling it ourself.
14247         * lib/human.h (LONGEST_HUMAN_READABLE): Use 146/485 rather than
14248         302/1000.
14249         * lib/inttostr.h: Include intprops.h instead of limits.h.
14250         (INT_STRLEN_BOUND, INT_BUFSIZE_BOUND): Remove.
14251         * lib/mktime.c (TYPE_IS_INTEGER, TYPE_TWOS_COMPLEMENT): New macros,
14252         for consistency with intprops.h.
14253         (time_t_is_integer, twos_complement_arithmetic): Use them.
14254         * lib/sig2str.h: Include <signal.h>, intprops.h.
14255         (INT_STRLEN_BOUND): Remove.
14256         * lib/strftime.c (TYPE_SIGNED): Remove.
14257         (INT_STRLEN_BOUND): Switch to same implementation as intprops.h.
14258         * lib/strtol.c: Adjust comments to match intprops.h.
14259         * lib/userspec.c: Include intprops.h.
14260         (TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Remove.
14261         * lib/utimecmp.c, xnanosleep.c, xstrtol.c: Likewise.
14262         * lib/utimecmp.c (utimecmp): Use TYPE_IS_INTEGER, TYPE_TWOS_COMPLEMENT
14263         instead of rolling our own expressions.
14264         * lib/xstrtol.c: Include xstrtol.h first, to test interface.
14265
14266         * lib/strftime.c: Include <stdbool.h>.  Use bool where appropriate,
14267         instead of int.
14268         (my_strftime): Do not mishandle years close to INT_MAX, by doing
14269         the right thing even if adding 1900 would overflow.  Similarly
14270         for tm_mon + 1 and tm_yday + 1.
14271         Make %Y always equivalent to %C%y, and similarly for %G and %g.
14272         (DO_NUMBER, DO_NUMBER_SPACEPAD): Set digits to d, not a conditional.
14273         (DO_SIGNED_NUMBER): New macro.
14274         (my_strftime) [HAVE_TZNAME]: Don't dump core if tp->tm_dst > 1.
14275
14276 2005-03-07  Bruno Haible  <bruno@clisp.org>
14277
14278         * m4/mmap-anon.m4 (MAP_FILE, MAP_FAILED): Remove definitions.
14279
14280 2005-03-07  Bruno Haible  <bruno@clisp.org>
14281
14282         * lib/pagealign_alloc.c (MAP_FILE, MAP_FAILED): Define fallbacks.
14283
14284 2005-03-04  Derek R. Price  <derek@ximbiot.com>
14285
14286         * gnulib-tool (func_cp_if_changed, func_mv_if_changed): New functions.
14287         (func_import): Only replace files via --import when they have actually
14288         changed.
14289
14290 2005-03-03  Derek R. Price  <derek@ximbiot.com>
14291
14292         * m4/mmap-anon.m4: New file.
14293         * m4/pagealign_alloc.m4: New file.
14294
14295 2005-03-03  Derek R. Price  <derek@ximbiot.com>
14296             Bruno Haible  <bruno@clisp.org>
14297
14298         * modules/pagealign_alloc: New file.
14299         * MODULES.html.sh (Memory management functions): Add pagealign_alloc.
14300
14301 2005-03-03  Derek R. Price  <derek@ximbiot.com>
14302             Bruno Haible  <bruno@clisp.org>
14303
14304         * lib/pagealign_alloc.h: New file.
14305         * lib/pagealign_alloc.c: New file.
14306
14307 2005-03-03  Bruno Haible  <bruno@clisp.org>
14308
14309         * m4/inttypes.m4, isc-posix.m4, once-only.m4:
14310         Use an all-permissive copyright notice, recommended by RMS.
14311
14312 2005-03-02  Bruno Haible  <bruno@clisp.org>
14313
14314         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Undo the replacement here. Because
14315         of AIX, the replacement has to be done only after <string.h> is
14316         included, therefore not in config.h. stpncpy.h does the replacement,
14317         and stpncpy.c uses it.
14318
14319 2005-03-02  Bruno Haible  <bruno@clisp.org>
14320
14321         * lib/stpncpy.h (stpncpy): Define as a macro without arguments, so that
14322         stpncpy.c uses it.
14323
14324 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
14325
14326         Remove workaround for bug in Linux kernel 2.6.8 or thereabouts.
14327         The workaround isn't strictly needed for POSIX conformance, and
14328         it's too much of a pain to configure and maintain.  We'll ask
14329         people to fix their kernels instead.
14330         * lib/xnanosleep.c: Don't include gethrxtime.h or xtime.h.
14331         (NANOSLEEP_BUG_WORKAROUND): Remove.
14332         (xnanosleep): Remove the workaround.
14333
14334 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
14335
14336         * modules/gettime (Makefile.am): Remove lib_SOURCES line.
14337         Reported by Derek Price.
14338         (Include): Add "timespec.h".
14339
14340         * modules/xnanosleep (Depends-on): Remove gethrxtime.
14341
14342 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
14343
14344         * m4/xnanosleep.m4 (gl_XNANOSLEEP): Remove configuration attempting
14345         to detect nanosleep bug.
14346
14347 2005-03-01  Bruno Haible  <bruno@clisp.org>
14348
14349         * lib/vasnprintf.c (EOVERFLOW): Define to a fallback if needed.
14350
14351 2005-02-26  Paul Eggert  <eggert@cs.ucla.edu>
14352
14353         * modules/gethrxtime: New file.
14354         * modules/xnanosleep (Files): Add m4/xnanosleep.m4.
14355         (Depends-on): Add gethrxtime.
14356         (configure.ac): Add gl_XNANOSLEEP.
14357         (Makefile.am): Remove lib_SOURCES line.
14358
14359 2005-02-25  Paul Eggert  <eggert@cs.ucla.edu>
14360
14361         * m4/gethrxtime.m4, m4/xnanosleep.m4: New files.
14362         * m4/gettime.m4 (gl_GETTIME): Check for nanotime.
14363
14364 2005-02-25  Paul Eggert  <eggert@cs.ucla.edu>
14365
14366         * lib/gethrxtime.h, lib/gethrxtime.c, lib/xtime.h: New files.
14367         * lib/timespec.h (gettime): Return void, since it always
14368         succeeds now.  All uses changed.
14369         * lib/gettime.c (gettime) Likewise.
14370         [HAVE_NANOTIME]: Prefer nanotime.
14371         Assume gettimeofday succeeds, as POSIX requires.
14372         Assime time () succeeds, since other code already does.
14373         * lib/xnanosleep.c: Include xtime.h and gethrxtime.h, not xalloc.h.
14374         (timespec_subtract): Remove.
14375         (NANOSLEEP_BUG_WORKAROUND): New constant.
14376         (xnanosleep): Use gethrxtime rather than gettime; this simplifies
14377         things considerably.  Use it only on GNU/Linux hosts, since the
14378         workaround shouldn't be needed elsewhere.
14379
14380 2005-02-24  Bruno Haible  <bruno@clisp.org>
14381
14382         * modules/gettext (Files): Add m4/glibc2.m4.
14383
14384 2005-02-24  Bruno Haible  <bruno@clisp.org>
14385
14386         * m4/gettext.m4, intdiv0.m4, intmax.m4, inttypes-pri.m4, lcmessage.m4:
14387         * m4/lib-link.m4, lib-prefix.m4, nls.m4, po.m4, printf-posix.m4:
14388         * m4/progtest.m4:
14389         Update from GNU gettext 0.14.2.
14390         * m4/glibc2.m4: New file, from GNU gettext 0.14.2.
14391
14392 2005-02-24  Bruno Haible  <bruno@clisp.org>
14393
14394         * lib/localcharset.c: Update from GNU gettext 0.14.2.
14395         * lib/config.charset: Update from GNU gettext 0.14.2.
14396
14397 2005-02-24  Bruno Haible  <bruno@clisp.org>
14398
14399         * lib/gettext.h: Update from GNU gettext 0.14.2.
14400
14401 2005-02-23  Simon Josefsson  <jas@extundo.com>
14402
14403         * m4/iconvme.m4: New file.
14404
14405 2005-02-23  Jim Meyering  <jim@meyering.net>
14406
14407         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Revert yesteday's
14408         change.
14409         Thanks to Bruno Haible for catching it.
14410
14411 2005-02-22  Simon Josefsson  <jas@extundo.com>
14412
14413         * modules/iconvme: New file.
14414
14415         * MODULES.html.sh: Add iconvme.
14416
14417 2005-02-22  Simon Josefsson  <jas@extundo.com>
14418
14419         * lib/iconvme.h, lib/iconvme.c: New files, from libc.
14420
14421 2005-02-22  Simon Josefsson  <jas@extundo.com>
14422
14423         * config/srclist.txt: Sync iconvme.h, iconvme.c from libc.
14424
14425 2005-02-22  Jim Meyering  <jim@meyering.net>
14426
14427         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Fix typo:
14428         s/ifndef/ifdef/.
14429
14430 2005-02-20  Neil Conway  <neilc@samurai.com>
14431
14432         * lib/xgethostname.c (xgethostname): Check for ENOMEM, which is
14433         returned by OSX/Darwin if the specified buffer is not large
14434         enough for the hostname.
14435
14436 2005-02-03  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
14437
14438         * lib/argp-help.c (__argp_help): Create a fake struct argp_state and
14439         pass it to _help, otherwise the latter coredumps trying to
14440         dereference state.root_argp.
14441
14442 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
14443
14444         * modules/chdir-long (Depends-on): Add memrchr.
14445         * modules/memrchr (Files): Add lib/memrchr.h.
14446         (Include): "memrchr.h".
14447
14448 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
14449
14450         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Add AC_LIBSOURCES, for memrchr.h.
14451
14452 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
14453
14454         * lib/memrchr.h: New file.
14455         * lib/chdir-long.c: Include it.
14456         * lib/memrchr.c [!defined _LIBC]: Include it rather than <string.h>
14457         Don't bother including stddef.h.
14458
14459 2005-02-01  Paul Eggert  <eggert@cs.ucla.edu>
14460
14461         * lib/mountlist.h (MOUNTLIST_H_): New macro, to protect against double
14462         inclusion.
14463         Include <sys/types.h>, for dev_t.
14464         (ME_DUMMY, ME_REMOTE): Move from here....
14465         * lib/mountlist.c (ME_DUMMY, ME_REMOTE): To here.
14466         (ME_DUMMY): Count "subfs" as a dummy.  Problem reported by
14467         Dmitry V. Levin.
14468         Include mountlist.h first, to test the interface.
14469
14470 2005-01-29  Bruno Haible  <bruno@clisp.org>
14471
14472         * lib/progname.c (program_name): Initialize.
14473         Needed when linking statically on MacOS X.
14474
14475 2005-01-28  Paul Eggert  <eggert@cs.ucla.edu>
14476
14477         Sync from coreutils.
14478         * modules/getloadavg (Files): Remove m4/getloadavg.m4.
14479         (Depends-on): Add c-strtod.
14480         (configure.ac): Replace gl_FUNC_GETLOADAVG with AC_FUNC_GETLOADAVG.
14481
14482 2005-01-28  Paul Eggert  <eggert@cs.ucla.edu>
14483
14484         Sync from coreutils.
14485         * m4/getloadavg.m4, glibc.m4, search-libs.m4: Remove.
14486
14487         Remove files that are specific to coreutils.
14488         * m4/check-decl.m4, jm-macros.m4, lib-check.m4, prereq.m4: Remove.
14489
14490 2005-01-28  Bruno Haible  <bruno@clisp.org>
14491
14492         * modules/javacomp: New file.
14493         * MODULES.html.sh (Java): Add javacomp.
14494
14495 2005-01-28  Bruno Haible  <bruno@clisp.org>
14496
14497         * m4/javacomp.m4: New file, from GNU gettext.
14498
14499 2005-01-28  Bruno Haible  <bruno@clisp.org>
14500
14501         * lib/javacomp.sh.in: New file, from GNU gettext.
14502         * lib/javacomp.h: New file, from GNU gettext.
14503         * lib/javacomp.c: New file, from GNU gettext.
14504
14505 2005-01-26  Simon Josefsson  <jas@extundo.com>
14506
14507         * lib/gai_strerror.c: Use GPL in header.
14508
14509 2005-01-26  Bruno Haible  <bruno@clisp.org>
14510
14511         * modules/javaexec: New file.
14512         * MODULES.html.sh (Java): Add javaexec.
14513
14514 2005-01-26  Bruno Haible  <bruno@clisp.org>
14515
14516         * m4/javaexec.m4: New file, from GNU gettext.
14517
14518 2005-01-26  Bruno Haible  <bruno@clisp.org>
14519
14520         * lib/javaexec.sh.in: New file, from GNU gettext.
14521         * lib/javaexec.h: New file, from GNU gettext.
14522         * lib/javaexec.c: New file, from GNU gettext.
14523
14524 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
14525
14526         * modules/lchown (Depends-on): Remove lchown.h
14527
14528 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
14529
14530         * m4/sysexits.m4 (gl_SYSEXITS): Reverted logic. SYSEXITS_H
14531         must be defined if the header file was not found, in order
14532         to provide a replacement. Reported by Todd Vierling <tv@duh.org>
14533
14534 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
14535
14536         * lib/argp-help.c (hol_entry_help): Avoid using non-constant
14537         initializers for struct pentry_state.
14538         (__argp_error): Check return value of __asprintf
14539         (__argp_failure): Translate error message
14540
14541         * lib/argp-parse.c: Removed braces around the expansion of N_()
14542
14543 2005-01-23  Paul Eggert  <eggert@cs.ucla.edu>
14544
14545         * m4/acl.m4, afs.m4, alloca.m4, argp.m4, assert.m4, atexit.m4,
14546         backupfile.m4, base64.m4, bison.m4, c-bs-a.m4, c-stack.m4,
14547         c-strtod.m4, calloc.m4, canon-host.m4, canonicalize.m4,
14548         clock_time.m4, cloexec.m4, closeout.m4, d-ino.m4, d-type.m4,
14549         dirfd.m4, dirname.m4, dos.m4, dup2.m4, error.m4, euidaccess.m4,
14550         exclude.m4, exitfail.m4, extensions.m4, fcntl-safer.m4,
14551         file-type.m4, fileblocks.m4, filemode.m4, fnmatch.m4, fpending.m4,
14552         free.m4, fstypename.m4, fsusage.m4, ftruncate.m4, getaddrinfo.m4,
14553         getcwd-path-max.m4, getcwd.m4, getdate.m4, getdomainname.m4,
14554         getgroups.m4, gethostname.m4, getline.m4, getndelim2.m4,
14555         getnline.m4, getopt.m4, getpagesize.m4, getpass.m4, getsubopt.m4,
14556         gettime.m4, gettimeofday.m4, getugroups.m4, getusershell.m4,
14557         group-member.m4, hard-locale.m4, hash.m4, host-os.m4, human.m4,
14558         idcache.m4, inttostr.m4, isdir.m4, jm-winsz1.m4, jm-winsz2.m4,
14559         link-follow.m4, long-options.m4, ls-mntd-fs.m4, lstat.m4,
14560         makepath.m4, mathl.m4, md5.m4, memcasecmp.m4, memchr.m4,
14561         memcmp.m4, memcoll.m4, memcpy.m4, memmem.m4, memmove.m4,
14562         memrchr.m4, memset.m4, mkdir-slash.m4, mkstemp.m4, mktime.m4,
14563         modechange.m4, mountlist.m4, nanosleep.m4, obstack.m4,
14564         path-concat.m4, pathmax.m4, perl.m4, physmem.m4, poll.m4,
14565         posixtm.m4, posixver.m4, putenv.m4, quote.m4, quotearg.m4,
14566         readdir.m4, readtokens.m4, readutmp.m4, regex.m4, rename.m4,
14567         restrict.m4, rmdir-errno.m4, rmdir.m4, rpmatch.m4, same.m4,
14568         savedir.m4, settime.m4, sha1.m4, sig2str.m4, snprintf.m4,
14569         sockpfaf.m4, st_dm_mode.m4, st_mtim.m4, stat.m4, stdint.m4,
14570         stdio-safer.m4, strchrnul.m4, strdup.m4, strerror.m4,
14571         strerror_r.m4, strftime.m4, strndup.m4, strnlen.m4, strsep.m4,
14572         strtod.m4, strtoimax.m4, strtok_r.m4, strtol.m4, strtoll.m4,
14573         strtoul.m4, strtoull.m4, strtoumax.m4, strverscmp.m4, sysexits.m4,
14574         time_r.m4, timegm.m4, timespec.m4, tm_gmtoff.m4, tzset.m4,
14575         uint32_t.m4, uintptr_t.m4, unistd-safer.m4, unlink-busy.m4,
14576         unlocked-io.m4, uptime.m4, userspec.m4, utimbuf.m4, utime.m4,
14577         utimecmp.m4, utimens.m4, utimes-null.m4, vsnprintf.m4, xalloc.m4,
14578         xgetcwd.m4, xreadlink.m4, xstrndup.m4, xstrtod.m4, xstrtoimax.m4,
14579         xstrtol.m4, xstrtoumax.m4, yesno.m4:
14580         Use an all-permissive copyright notice, recommended by RMS.
14581
14582 2005-01-21  Paul Eggert  <eggert@cs.ucla.edu>
14583
14584         * modules/chdir-long (Depends-on): Remove mempcpy.
14585
14586 2005-01-21  Jim Meyering  <jim@meyering.net>
14587
14588         * lib/openat.h (AT_SYMLINK_NOFOLLOW): Define to 4096, so it's the
14589         same value as for Solaris 9.
14590
14591         * lib/chdir-long.c (chdir_long): Rewrite to remove limitation on
14592         component length.  This included changing the parameter to be
14593         of type `char *' rather than `char const *'.
14594         * lib/chdir-long.h (chdir_long): Update prototype.
14595
14596         * lib/openat.c (fdopendir, fstatat): New functions.
14597         * lib/openat.h: Include headers required for use of DIR and struct
14598         stat.
14599         [AT_SYMLINK_NOFOLLOW]: Define.
14600         (fdopendir, fstatat): Add prototypes.
14601
14602 2005-01-21  Bruno Haible  <bruno@clisp.org>
14603
14604         * modules/classpath: New file.
14605         * MODULES.html.sh (Java): Add classpath.
14606
14607 2005-01-21  Bruno Haible  <bruno@clisp.org>
14608
14609         * lib/classpath.h: New file, from GNU gettext.
14610         * lib/classpath.c: New file, from GNU gettext.
14611
14612 2005-01-20  Simon Josefsson  <jas@extundo.com>
14613
14614         * modules/version-etc-fsf: New file.
14615
14616 2005-01-20  Simon Josefsson  <jas@extundo.com>
14617
14618         * lib/version-etc-fsf.c: New file, with version_etc_copyright.
14619         * lib/version-etc.c: Remove version_etc_copyright.
14620         * lib/version-etc.h (version_etc_copyright): Use [] instead of * in
14621         prototype, suggested by Paul Eggert <eggert@CS.UCLA.EDU>.
14622
14623 2005-01-20  Simon Josefsson  <jas@extundo.com>
14624
14625         * lib/base64.h (isbase64): Add.
14626
14627         * lib/base64.c (isb64): Rename to isbase64, use to_uchar instead of
14628         using a unsigned prototype, don't inline.
14629         (base64_decode): Use it.
14630
14631 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
14632
14633         * m4/save-cwd.m4 (gl_SAVE_CWD): Remove check for fcntl; we now assume
14634         it.
14635
14636 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
14637
14638         * lib/save-cwd.c (save_cwd): Remove code to support the case
14639         where fchdir is missing or flaky.
14640
14641 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
14642
14643         * MODULES.html.sh (Command-line arguments): Add version-etc-fsf.
14644
14645 2005-01-19  Paul Eggert  <eggert@cs.ucla.edu>
14646
14647         * modules/mempcpy (Makefile.am): Remove mention of mempcpy.h;
14648         AC_LIBSOURCES now does this.
14649         * MODULES.html.sh (Sizes of integer types <limits.h>): New element,
14650         with new ullong_max module.
14651
14652 2005-01-19  Bruno Haible  <bruno@clisp.org>
14653
14654         * modules/sh-quote: New file.
14655         * MODULES.html.sh (Executing programs): Add sh-quote.
14656
14657 2005-01-19  Bruno Haible  <bruno@clisp.org>
14658
14659         * lib/sh-quote.h: New file, from GNU gettext.
14660         * lib/sh-quote.c: New file, from GNU gettext.
14661
14662 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
14663
14664         Merge from coreutils.
14665         * m4/ullong_max.m4: New file.
14666         * m4/jm-macros.m4 (gl_MACROS): Require gl_ULLONG_MAX.
14667         (gl_MACROS): Assume localeconv exists.
14668
14669 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
14670
14671         Merge changes from coreutils, as described below in several
14672         changelogs dated today.
14673
14674         * lib/save-cwd.c: Include "save-cwd.h" before other include files.
14675         (O_DIRECTORY): Remove; not needed here, since "." must be
14676         a directory.  All uses removed.
14677         (save_cwd): Use __sgi || __sun, not sun || __sun.  __sun is
14678         universal on Suns, and we also need to test for IRIX.
14679         Revamp code to use 'if' rather than '#if'.
14680         Avoid unnecessary comparison of cwd->desc to 0.
14681
14682         * lib/utimens.c (futimens): Robustify the previous patch, by checking
14683         for known valid error numbers rather than observed invalid ones.
14684
14685 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
14686
14687         * modules/ullong_max: New file.
14688
14689         * modules/chdir-long, modules/openat: New files.
14690         * modules/save-cwd (Depends-on): Depend on chdir-long.
14691         (Makefile.am): Remove lib_SOURCES; now handled by AC_LIBSOURCES.
14692
14693 2005-01-18  Jim Meyering  <jim@meyering.net>
14694
14695         Merge from coreutils.
14696         * m4/chdir-long.m4, m4/openat.m4: New files.
14697         * m4/save-cwd.m4 (gl_SAVE_CWD): Add AC_LIBSOURCES for save-cwd.c,
14698         save-cwd.h.  Add AC_LIBOBJ for save-cwd.
14699         * m4/chown.m4 (gl_FUNC_CHOWN): When cross-compiling, assume that chown
14700         is sane and DOES follow symlinks.  Besides, testing 20 different
14701         systems found no broken chown implementations.
14702         Prompted by a change in rsync's copy of this macro.
14703         * m4/jm-macros.m4 (gl_MACROS): Require gl_FUNC_CHDIR_LONG.
14704
14705         * m4/lchown.m4 (gl_FUNC_LCHOWN): Use AC_LIBSOURCES.
14706
14707         * m4/utimes.m4: Work around tests/touch/empty-file failure on a system
14708         (sparc64, Linux-2.4.28, glibc-2.3.3) that didn't honor utimes'
14709         NULL-means-set-to-current-time semantics.
14710         Remove temporary file immediately, rather than waiting
14711         for configure's at-exit trap code to do it.
14712
14713 2005-01-18  Jim Meyering  <jim@meyering.net>
14714
14715         * lib/version-etc.c (version_etc_copyright): Update copyright date.
14716
14717         * lib/utimens.c (futimens): Account for the fact that futimes
14718         can also fail with errno == ENOSYS or errno == ENOENT.
14719         Patch from Dmitry V. Levin.
14720
14721         Change the name of the robust chdir function from chdir to chdir_long.
14722         * lib/save-cwd.c: Include chdir-long.h rather than chdir.h.
14723         (restore_cwd): Use chdir_long, not chdir.
14724         * lib/chdir-long.c: Renamed from chdir.c.
14725         * lib/chdir-long.h: Renamed from chdir.h.
14726         [!defined PATH_MAX]: Define chdir_long to chdir on systems like the
14727         Hurd.
14728
14729 2005-01-18  Bruno Haible  <bruno@clisp.org>
14730
14731         * m4/allocsa.m4, m4/codeset.m4, m4/copy-file.m4, m4/eaccess.m4:
14732         * m4/eealloc.m4, m4/eoverflow.m4, m4/execute.m4, m4/fatal-signal.m4:
14733         * m4/findprog.m4, m4/glibc21.m4, m4/iconv.m4, m4/intmax_t.m4:
14734         * m4/inttypes_h.m4, m4/lib-ld.m4, m4/lib-link.m4, m4/lib-prefix.m4:
14735         * m4/linebreak.m4, m4/localcharset.m4, m4/longdouble.m4:
14736         * m4/longlong.m4, m4/mbrtowc.m4, m4/mbstate_t.m4, m4/mbswidth.m4:
14737         * m4/mkdtemp.m4, m4/pipe.m4, m4/readlink.m4, m4/safe-read.m4:
14738         * m4/safe-write.m4, m4/setenv.m4, m4/sig_atomic_t.m4:
14739         * m4/signalblocking.m4, m4/signed.m4, m4/size_max.m4, m4/ssize_t.m4:
14740         * m4/stdbool.m4, m4/stdint_h.m4, m4/stpcpy.m4, m4/stpncpy.m4:
14741         * m4/strcase.m4, m4/strcspn.m4, m4/strpbrk.m4, m4/strstr.m4:
14742         * m4/ucs4-utf.m4, m4/uintmax_t.m4, m4/ulonglong.m4, m4/unicodeio.m4:
14743         * m4/utf-ucs4.m4, m4/vasnprintf.m4, m4/vasprintf.m4:
14744         * m4/wait-process.m4, m4/wchar_t.m4, m4/wint_t.m4, m4/xsize.m4:
14745         Use an all-permissive copyright notice, recommended by RMS.
14746
14747 2005-01-18  Bob Proulx  <bob@proulx.com>
14748
14749         * lib/obstack.c [DEFAULT_ALIGNMENT]: Use an intermediate type to
14750         simplify offsetof() macro construct to avoid compile failure with
14751         native HP-UX 11.0 ANSI C compiler.
14752
14753 2005-01-17  Bruno Haible  <bruno@clisp.org>
14754
14755         * lib/stpncpy.c: Remove HAVE_STPNCPY and gnu_stpncpy renaming,
14756         redundant because stpncpy.m4 takes care of it.
14757
14758 2005-01-17  Bruno Haible  <bruno@clisp.org>
14759
14760         * lib/progreloc.c: Include xalloc.h instead of xmalloc.h.
14761
14762 2005-01-17  Bruno Haible  <bruno@clisp.org>
14763
14764         * lib/progreloc.c (xstrdup): Define as strdup if no xmalloc should be
14765         used.
14766
14767 2005-01-17  Bruno Haible  <bruno@clisp.org>
14768
14769         * lib/fwriteerror.h (fwriteerror): Change specification to include
14770         fclose.
14771         * lib/fwriteerror.c: Include <stdbool.h>.
14772         (fwriteerror): At the end, close the file stream. Record whether
14773         stdout was already closed.
14774
14775 2005-01-17  Bruno Haible  <bruno@clisp.org>
14776
14777         * lib/execute.c (environ): Declare if needed.
14778         * lib/pipe.c (environ): Likewise.
14779         Reported by Michael Schloh von Bennewitz <michael.schloh@cw.com>.
14780
14781 2005-01-11  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
14782
14783         * modules/argp: Depend on vsnprintf
14784
14785 2005-01-10  Jim Meyering  <jim@meyering.net>
14786
14787         * modules/closeout (Depends-on): Add atexit.
14788
14789 2005-01-06  Bruno Haible  <bruno@clisp.org>
14790
14791         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Rename stpncpy to gnu_stpncpy here.
14792
14793 2005-01-04  Paul Eggert  <eggert@cs.ucla.edu>
14794
14795         * lib/human.c (SIZE_MAX, UINTMAX_MAX): Move these conditional
14796         definitions to be after all include files, to avoid collisions.
14797         Problem reported by Bob Proulx.
14798
14799 2005-01-04  Jim Meyering  <jim@meyering.net>
14800
14801         Changes imported from coreutils.
14802         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Rather than using "conftestXXXXXX"
14803         as the mkstemp template, use a temporary directory and an
14804         8.3-friendly template to avoid trouble on systems like DJGPP.
14805         Reported by Juan M. Guerrero via Stepan Kasal.
14806         * m4/(gl_FUNC_MKSTEMP): Include <unistd.h> for the declaration of
14807         close. Remove the temporary directory right away, rather than waiting
14808         for configure's at-exit trap code to do it.
14809         Suggestion from Stepan Kasal.
14810
14811 2005-01-01  Simon Josefsson  <jas@extundo.com>
14812
14813         * gnulib-tool: Print #include directives when --import'ing.
14814
14815 2004-12-28  Simon Josefsson  <jas@extundo.com>
14816
14817         * tests/test-base64.c: Include required header files.  Remove
14818         unused variables.
14819
14820 2004-12-28  Paul Eggert  <eggert@cs.ucla.edu>
14821
14822         * modules/error (Depends-on): Remove gettext.
14823
14824 2004-12-28  Paul Eggert  <eggert@cs.ucla.edu>
14825
14826         * lib/error.c [!_LIBC && !ENABLE_NLS]: Do not include "gettext.h";
14827         not needed.  This removes a dependency on the gettext module.
14828         [defined _LIBC]: Do not include <libintl.h>; not needed.
14829
14830 2004-12-24  Paul Eggert  <eggert@cs.ucla.edu>
14831
14832         * m4/c-strtod.m4 (gl_C99_STRTOLD): New macro.
14833         (gl_C_STRTOD): Use it instead of AC_CHECK_DECLS_ONCE(strtold).
14834
14835 2004-12-24  Paul Eggert  <eggert@cs.ucla.edu>
14836
14837         * lib/c-strtod.c (STRTOD): Depend on HAVE_C99_STRTOLD, not
14838         HAVE_DECL_STRTOLD.
14839
14840 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
14841
14842         * modules/getdate (Depends-on): Remove alloca-opt.
14843
14844 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
14845
14846         * m4/getdate.m4 (gl_GETDATE): Remove AC_FUNC_ALLOCA.
14847
14848 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
14849
14850         * lib/argp-parse.c: Include <stddef.h>.
14851         (alignof, alignto): New macros.
14852         (parser_init): Don't assume that void * is aligned sufficiently
14853         for struct option.
14854
14855         * lib/getdate.y (YYSTACK_USE_ALLOCA): Define to 0, since there's no
14856         need to extend the stack.
14857         (YYINITDEPTH): New macro, so that the initial stack isn't overly
14858         large.
14859
14860 2004-12-22  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
14861
14862         * lib/argp-parse.c (parser_init): Avoid arithmetics on void pointers.
14863
14864 2004-12-19  Paul Eggert  <eggert@cs.ucla.edu>
14865
14866         * modules/regex (lib_SOURCES): Remove regex.c, undoing previous
14867         (2004-10-24) change.  Apparently this was a false alarm.
14868
14869         * modules/getdate: Depend on alloca-opt, not alloca.
14870
14871 2004-12-19  Paul Eggert  <eggert@cs.ucla.edu>
14872
14873         * lib/alloca_.h: Conditionalize on _GNULIB_ALLOCA_H, not _ALLOCA_H.
14874         Remove now-obsolete comment about AIX.
14875         * lib/getdate.y: Include <alloca.h> only if HAVE_ALLOCA.
14876         (YYSTACK_USE_ALLOCA): Define to 0 if !HAVE_ALLOCA.
14877         (YYMAXDEPTH): New macro.
14878
14879 2004-12-18  Simon Josefsson  <jas@extundo.com>
14880
14881         * modules/alloca: Depend on alloca-opt, instead of duplicating it.
14882
14883 2004-12-18  Bruno Haible  <bruno@clisp.org>
14884
14885         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Also test for sigaction.
14886
14887 2004-12-18  Bruno Haible  <bruno@clisp.org>
14888
14889         * lib/fatal-signal.c (fatal_signals): Make non-const.
14890         (init_fatal_signals): New function.
14891         (uninstall_handlers, install_handlers): Ignore signals that were set to
14892         SIG_IGN.
14893         (at_fatal_signal): Call init_fatal_signals.
14894         (init_fatal_signal_set): Likewise. Ignore signals that were set to
14895         SIG_IGN.
14896         Reported by Paul Eggert.
14897
14898 2004-12-18  Bruno Haible  <bruno@clisp.org>
14899
14900         * doc/alloca.texi: New file.
14901         * doc/alloca-opt.texi: New file.
14902
14903 2004-12-17  Jim Meyering  <jim@meyering.net>
14904
14905         * config/install-sh: Use `(exit N); exit N', not `(exit N); exit'.
14906         Otherwise, install-sh could exit with improper exit status when
14907         exiting via a trapped interrupt.  Thanks to a report from Bob Proulx.
14908
14909 2004-12-16  Simon Josefsson  <jas@extundo.com>
14910
14911         * tests/test-base64.c: Add license.
14912
14913 2004-12-15  Stepan Kasal  <address@hidden>
14914
14915         * gnulib-tool (func_emit_lib_Makefile_am): Shorten a long sed command.
14916
14917 2004-12-12  Paul Eggert  <eggert@cs.ucla.edu>
14918
14919         * modules/getcwd (Files): Add m4/d-ino.m4.
14920         Suggested by Mark D. Baushke.
14921
14922 2004-12-08  Paul Eggert  <eggert@cs.ucla.edu>
14923
14924         * lib/getdate.y (textint): New member "negative".
14925         (time_zone_hhmm): New function.
14926         Expect 14 shift-reduce conflicts, not 13.
14927         (o_colon_minutes): New rule.
14928         (time, zone): Use it to add support for +HH:MM, UTC+HH:MM.
14929         (yylex): Set the "negative" member of signed numbers.
14930
14931 2004-12-08  Paul Eggert  <eggert@cs.ucla.edu>
14932
14933         * doc/getdate.texi (Time of day items, Time zone items):
14934         Describe new formats +00:00, UTC+00:00.
14935
14936 2004-12-07  Paul Eggert  <eggert@cs.ucla.edu>
14937
14938         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): Fix typo in previous change:
14939         spurious "-l"s.  Problem reported by Stepan Kasal.
14940
14941 2004-12-06  Paul Eggert  <eggert@cs.ucla.edu>
14942
14943         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): New macro, to work around bug
14944         in Autoconf 2.59.  Problem reported by Mark D. Baushke.
14945
14946 2004-12-04  Simon Josefsson  <jas@extundo.com>
14947
14948         * modules/getaddrinfo (License): Add LGPL, reported by Yoann
14949         Vandoorselaere <yoann@prelude-ids.org>.
14950
14951 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
14952
14953         Changes imported from coreutils.
14954         * m4/hard-locale.m4 (gl_HARD_LOCALE): Assume locale.h and setlocale
14955         exist.
14956         * m4/human.m4 (gl_HUMAN): Assume locale.h and localeconv exist.
14957
14958 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
14959
14960         Changes imported from coreutils.
14961         * lib/hard-locale.c: Assume <locale.h> exists.
14962         Include "strdup.h".
14963         (GLIBC_VERSION): New macro.
14964         (hard_locale): Assume setlocale exists.
14965         Rewrite to avoid #ifdef.
14966         Use strdup rather than malloc + strcpy.
14967         * lib/human.c: Assume <locale.h> exists.
14968         (human_readable): Assume localeconv exists.
14969
14970 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
14971
14972         * modules/hard-locale (Depends-on): Add strdup.
14973
14974 2004-12-01  Jakub Jelinek  <jakub@redhat.com>
14975
14976         * lib/mktime.c (__mktime_internal): If SEC_REQUESTED != SEC,
14977         convert T2, not T.  (Imported from libc.)
14978
14979 2004-11-30  Simon Josefsson  <jas@extundo.com>
14980
14981         * modules/restrict (License): Change to LGPL.
14982
14983 2004-11-30  Simon Josefsson  <jas@extundo.com>
14984
14985         * m4/restrict.m4: Add copyright and copying conditions.
14986
14987 2004-11-30  Simon Josefsson  <jas@extundo.com>
14988
14989         * m4/base64.m4: New file.
14990
14991 2004-11-30  Simon Josefsson  <jas@extundo.com>
14992
14993         * MODULES.html.sh (Extra functions based on ANSI C 89): Add
14994         base64.
14995
14996         * tests/test-base64.c: New file.
14997
14998         * modules/base64: New file.
14999
15000 2004-11-30  Paul Eggert  <eggert@cs.ucla.edu>
15001
15002         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX):
15003         Define HAVE_PARTLY_WORKING_GETCWD if getcwd is partly working.
15004
15005         * m4/readutmp.m4 (gl_READUTMP): Don't check for sys/param.h.
15006
15007 2004-11-30  Paul Eggert  <eggert@cs.ucla.edu>
15008
15009         * lib/getcwd.c (is_ENAMETOOLONG): New macro.
15010         (__getcwd.c): Don't restore errno; glibc doesn't.
15011         [HAVE_PARTLY_WORKING_GETCWD && !defined AT_FDCWD]: Try system getcwd
15012         first, falling back to our code only if its results look suspicious.
15013         Ensure that the resulting buffer is only as large as necessary.
15014
15015         * lib/readutmp.c: Include readutmp.h first.
15016         Include <errno.h>, since readutmp.h no longer does that.
15017         * lib/readutmp.h: Don't include <errno.h>,
15018         <sys/param.h>, <time.h>; not needed to establish interface.
15019         (errno): Remove decl.
15020         (HAVE_STRUCT_XTMP_UT_TYPE): Remove; no longer needed.
15021         (UT_TYPE_EQ, UT_TYPE_NOT_DEFINED, UT_TYPE_BOOT_TIME,
15022         UT_TYPE_USER_PROCESS, IS_USER_PROCESS): New macros.
15023
15024 2004-11-28  Simon Josefsson  <jas@extundo.com>
15025
15026         * lib/base64.h, base64.c: New file.
15027
15028 2004-11-27  Paul Eggert  <eggert@cs.ucla.edu>
15029
15030         * lib/getcwd.h: New file, which I forgot to check in on 2004-11-25.
15031
15032 2004-11-26  Paul Eggert  <eggert@cs.ucla.edu>
15033
15034         * modules/getcwd (Files): Add lib/getcwd.h, m4/getcwd.m4.
15035         (Depends-on): Remove pathmax, same.  Add mempcpy.
15036         (configure.ac): GL_FUNC_GETCWD_PATH_MAX -> gl_FUNC_GETCWD.
15037         (Makefile.am): Append getcwd.h to lib_SOURCES.
15038         (Include): Add getcwd.h.
15039         (Maintainer): Change from Jim Meyering to "all, glibc",
15040         since getdate now uses intended-for-glibc code.
15041         * modules/xgetcwd (Files): Remove m4/getcwd.m4.
15042         (Depends-on): Depend on getcwd.  Do not depend on pathmax.
15043
15044 2004-11-25  Paul Eggert  <eggert@cs.ucla.edu>
15045
15046         Fix problems reported by Scott S. Tinsley for HP-UX 11.11 using
15047         HP's ANSI C compiler.
15048         * lib/fsusage.c (statvfs) [HAVE_SYS_STATVFS_H]: Remove decl.
15049         Declaring int functions causes warnings on some modern systems and
15050         shouldn't be needed to compile on ancient ones.
15051         * lib/same.c (MIN) [defined MIN]: Don't define, since it's already
15052         defined.
15053
15054         * lib/getcwd.c: Replace by a copy of glibc/sysdeps/posix/getcwd.c, but
15055         with the following changes.
15056         (__set_errno): Parenthesize properly.
15057         Include <stdbool.h>.
15058         (MIN, MAX, MATCHING_INO): New macros.
15059         (__getcwd): Define with prototype, not K&R form.
15060         Use heuristics to allocate default buffer on stack if possible.
15061         If AT_FDCWD is defined, use openat and fstatat to avoid O(N**2)
15062         behavior, and to avoid the PATH_MAX limit when computing
15063         ../../../../...
15064         Use MATCHING_INO to compare inode number to file.
15065         Check for arithmetic overflow in size calculations.
15066         Fix bug in reallocation of dot array that caused getcwd to fail
15067         on directories nested deeper than 75.
15068         Be more careful about saving errno on error.
15069         Do not use realloc; use only free+malloc, as this is a bit
15070         more flexible and avoids a needless copy operation.
15071         Do not inspect st_dev and st_ino for symbolic links; POSIX
15072         doesn't specify the latter.
15073         Check for closedir errors.
15074         Avoid needless casts.
15075         Use "#ifdef weak_alias" around weak_alias, to be like other
15076         glibc code.
15077         The following changes to getcwd.c have effect only when used in
15078         gnulib; they have no effect inside glibc proper.
15079         (#pragma alloca) [defined _AIX && !defined __GNUC__]: Remove,
15080         as alloca isn't used.
15081         (alloca, __alloca): Likewise.
15082         [!_LIBC]: Include "getcwd.h", "mempcpy.h".
15083         Include <stddef.h>, <stdlib.h>, <string.h>, <limits.h>
15084         unconditionally, as gnulib assumes C89 or better.
15085         Do not include <sys/param.h>.
15086         (errno) [!defined __GNU_LIBRARY__ && !defined STDC_HEADERS]: Remove
15087         no-longer-necessary 'extern int errno' decl; gnulib assumes C89 or
15088         better.
15089         (NULL) [!defined NULL]: Remove; we assume C89 or better.
15090         Include <dirent.h> in a way that is compatible with modern Autoconf.
15091         (_D_ALLOC_NAMELEN, _D_EXACT_NAMLEN):
15092         New macros, if not already defined.
15093         Include <unistd.h> if _LIBC, not if __GNU_LIBRARY__.
15094         Use "_LIBC", not "defined _LIBC", for consistency.
15095         (HAVE_MEMPCPY): Remove; no longer needed now that gnulib has
15096         a mempcpy module.
15097         (__lstat, __closedir, __opendir, __readdir) [!_LIBC]: New macros.
15098         (GETCWD_RETURN_TYPE): Remove.  All uses replaced by char *.
15099         * lib/xgetcwd.c: David MacKenzie's old code was removed, so give
15100         credit only to Jim Meyering and adjust the copyright dates.
15101         Do not include <limits.h>, <stdio.h>, <sys/types.h>,
15102         <stdlib.h>, <unistd.h>, "pathmax.h".
15103         Instead, include "xgetcwd.h" (first) and "getcwd.h".
15104         (INITIAL_BUFFER_SIZE): Remove.
15105         (xgetcwd): Rely on getcwd, since we now depend on a reliable one.
15106
15107 2004-11-25  Paul Eggert  <eggert@cs.ucla.edu>
15108
15109         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Renamed from
15110         GL_FUNC_GETCWD_PATH_MAX for consistency.  All uses changed.
15111         Use the _ONCE methods, for efficiency.
15112         Check for fcntl.h.  In test program, include <errno.h>
15113         and <fcntl.h> if available.  Remove old K&R cruft from
15114         test program.  Check for common errors in GNU/Linux,
15115         OpenBSD, and Solaris.  Just set gl_cv_func_getcwd_path_max;
15116         don't do AC_LIBOBJ, as that's getcwd.m4's job.
15117         * m4/getcwd.m4 (gl_FUNC_GETCWD_NULL): Renamed from
15118         AC_FUNC_GETCWD_NULL.  All used changed.  Change cache variable
15119         name accordingly.
15120         (gl_FUNC_GETCWD, gl_PREREQ_GETCWD): New macros.  Revamp to
15121         accommodate new getcwd.c.
15122         * m4/jm-macros.m4 (gl_MACROS): Don't require GL_FUNC_GETCWD_PATH_MAX.
15123         * m4/prereq.m4 (gl_PREREQ): Add gl_FUNC_MEMPCPY.
15124         * m4/xgetcwd.m4 (gl_XGETCWD): Replace with gl_FUNC_GETCWD, since
15125         that's all we need now.
15126
15127 2004-11-23  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
15128
15129         * m4/argp.m4 (gl_ARGP): Require gl_GETOPT_SUBSTITUTE unconditionally:
15130         argp-parse.c depends on getopt internals, that means we should
15131         always use our getopt, to be on the safe side.
15132         * m4/getopt.m4 (gl_GETOPT): Check if GETOPT_H is already set, in
15133         order not to spoil the result of an eventual previous invocation
15134         of gl_GETOPT_SUBSTITUTE.
15135
15136 2004-11-23  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
15137
15138         * lib/getopt_.h: Re-addition of __getopt_argv_const caused
15139         redefinition warnings. To avoid them, include the defines
15140         in `#if !defined __need_getopt ... #endif'. The only place
15141         where __getopt_argv_const is used is in definitions
15142         of getopt_long and getopt_long_only below, which are as well
15143         protected by `#ifndef __need_getopt'.
15144         [defined __GETOPT_PREFIX && !defined __need_getopt]: Undef
15145         __need_getopt after including <stdio.h> and <unistd.h> These
15146         headers might have defined it.
15147
15148 2004-11-23  Paul Eggert  <eggert@cs.ucla.edu>
15149
15150         * m4/utimens.m4 (gl_UTIMENS): Check for futimes function.
15151
15152 2004-11-23  Paul Eggert  <eggert@cs.ucla.edu>
15153
15154         * lib/utimens.c (__attribute__, ATTRIBUTE_UNUSED): New macros.
15155         (futimens): New function, which uses futimes if available.
15156         (futimens, utimens): Support timespec==NULL, with same semantics
15157         as utime and utimens.
15158         * lib/utimens.h (futimens): New decl.
15159
15160 2004-11-23  Jim Meyering  <jim@meyering.net>
15161
15162         * lib/getopt_.h: Remove trailing blanks.
15163
15164 2004-11-23  Jim Meyering  <jim@meyering.net>
15165
15166         * lib/__fpending.c: Add comment.
15167
15168 2004-11-22  Paul Eggert  <eggert@cs.ucla.edu>
15169
15170         * modules/canonicalize (Depends-on): Add xreadlink.
15171         Problem reported by James Youngman.
15172
15173 2004-11-20  Paul Eggert  <eggert@cs.ucla.edu>
15174
15175         * lib/getopt_.h (__GETOPT_CONCAT, __GETOPT_XCONCAT, __GETOPT_ID):
15176         New macros.
15177         (getopt, getopt_long, getopt_long_only, optarg, opterr, optind,
15178         optopt): Use them instead of invoking ## directly; otherwise, the
15179         symbols will be __GETOPT_PREFIXgetopt rather than rpl_getopt.
15180
15181 2004-11-19  Bruno Haible  <bruno@clisp.org>
15182
15183         * lib/strtok_r.c: Move comments from here...
15184         * lib/strtok_r.h: ... to here.
15185
15186 2004-11-17  Paul Eggert  <eggert@cs.ucla.edu>
15187
15188         * m4/calloc.m4 (_AC_FUNC_CALLOC_IF): Check for buggy calloc
15189         implementations that mishandle size_t overflow.
15190
15191 2004-11-17  Paul Eggert  <eggert@cs.ucla.edu>
15192
15193         * lib/realloc.c (rpl_realloc): Call 'free' if n==0, since realloc
15194         might fail.  Problem reported by Yoann Vandoorselaere.
15195         * lib/calloc.c (rpl_calloc): Defend against buggy calloc
15196         implementations that mishandle size_t overflow.
15197
15198 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
15199
15200         * modules/canon-host (Depends-on): Add strdup.
15201
15202 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
15203
15204         * m4/canon-host.m4 (gl_CANON_HOST): Check for getaddrinfo.
15205
15206 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
15207
15208         * lib/canon-host.c: Include "strdup.h".
15209         (canon_host): Use getaddrinfo if available, so that IPv6 works.
15210         Use strdup instead of malloc/strcpy to duplicate strings.
15211
15212         * lib/human.h (LONGEST_HUMAN_READABLE): Add 1 for space before unit.
15213         (human_space_before_unit): New constant.
15214         * lib/human.c (human_readable): Support it.
15215
15216         * lib/xgetcwd.c: Include <limits.h>, for PATH_MAX.
15217         (xgetcwd): Set errno correctly when failing.
15218         Work around Solaris 9 bug: getcwd sets errno==ERANGE even though
15219         the failure is actually due to a PATH_MAX problem.
15220
15221         Further getopt changes to make it more likely that glibc will
15222         buy the changes back.
15223         * lib/getopt.c (POSIXLY_CORRECT): New constant.
15224         (getopt): Use it, so to preserve glibc semantic
15225         * lib/getopt1.c (getopt_long, getopt_long_only): Arg is char * const *
15226         when compiling for libc.
15227         * lib/getopt_.h (__getopt_argv_const): Bring it back.
15228         (getopt_long, getopt_long_only): Use it.
15229
15230         * lib/getopt.c (_getopt_initialize, _getopt_internal_r,
15231         _getopt_internal): New arg POSIXLY_CORRECT.  All callers changed.
15232         (getopt): Argv is now char * const *, as per standard.
15233         (_getopt_internal_r, _getopt_internal): Argv is now char **,
15234         not char *__getopt_argv_const *.
15235         * lib/getopt1.c (getopt_long, _getopt_long_r, getopt_long_only,
15236         _getopt_long_only_r): Likewise.
15237         * lib/getopt_.h (getopt, getopt_long, geopt_long_only): Likewise.
15238         * lib/getopt_int.h (_getopt_internal, _getopt_internal_r,
15239         _getopt_long_r, _getopt_long_only_r): Likewise.
15240         * lib/getopt_.h (__getopt_argv_const): Remove.
15241         (getopt): Argv is now char * const *, as per standard.
15242
15243         * lib/getdate.y (tORDINAL): New token.
15244         (day, relunit): Allow it for relative times.
15245         (relative_time_table): Use tORDINAL for ordinals.
15246
15247 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
15248
15249         * doc/getdate.texi (General date syntax): "next" is 1, not 2.
15250         Document that "second" isn't allowed as an ordinal number.
15251
15252 2004-11-16  Jim Meyering  <jim@meyering.net>
15253
15254         * modules/closeout (Depends-on): Add fpending.
15255
15256 2004-11-15  Jim Meyering  <jim@meyering.net>
15257
15258         * lib/closeout.c: Include "__fpending.h" once again.
15259         Include <stdbool.h>.
15260         (close_stdout): Don't fail just because stdout was closed initially,
15261         since some programs don't write to stdout in the normal course of
15262         operation (other than --version and --help), and we don't want this
15263         function to make e.g. `touch file >&-' fail.
15264         But do fail if it was closed and someone has tried to write to it.
15265         E.g., `printf foo >&-' must fail.
15266
15267 2004-11-13  Jim Meyering  <jim@meyering.net>
15268
15269         * m4/jm-macros.m4: Do require gl_FUNC_FPENDING.
15270
15271 2004-11-12  Simon Josefsson  <jas@extundo.com>
15272
15273         * config/srclist.txt: Add strtok_r.c, glibc bought our changes, but a
15274         small doc fix is still pending.
15275
15276 2004-11-11  Simon Josefsson  <jas@extundo.com>
15277
15278         * modules/strtok_r: New file.
15279
15280         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
15281         strtok_r.
15282
15283 2004-11-11  Simon Josefsson  <jas@extundo.com>
15284
15285         * m4/strtok_r.m4: New file.
15286
15287         * m4/getopt.m4: Replace opterr.
15288
15289 2004-11-11  Simon Josefsson  <jas@extundo.com>
15290
15291         * lib/strtok_r.h, strtok_r.c: New file.
15292
15293 2004-11-11  Paul Eggert  <eggert@cs.ucla.edu>
15294
15295         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE): Define __GETOPT_PREFIX instead
15296         of replacing opterr, getopt, etc.  This should handle the
15297         powerpc-apple-darwin5.5 problem recently noted by Simon Josefsson.
15298
15299 2004-11-11  Paul Eggert  <eggert@cs.ucla.edu>
15300
15301         * lib/getopt_.h (__getopt_argv_const): New macro, to be used so that
15302         we can stop lying to compilers about the constness of argv when we
15303         are compiled outside glibc.
15304         (getopt, getopt_long, getopt_long_only): Use it.
15305         * lib/getopt.c (_getopt_initialize, _getopt_internal_r,
15306         _getopt_internal, getopt): Likewise.
15307         * lib/getopt1.c (getopt_long, _getopt_long_r, getopt_long_only,
15308         _getopt_long_only_r): Likewise.
15309         * lib/getopt_int.h (_getopt_internal, _getopt_internal_r,
15310         _getopt_long_r, _getopt_long_only_r): Likewise.
15311
15312         * lib/getopt_.h [defined __GETOPT_PREFIX && !defined __need_getopt]:
15313         Include <stdlib.h> and <stdio.h>, and <unistd.h> if available.
15314         Then rename getopt to __GETOPT_PREFIX##getopt, and so forth for
15315         the other external symbols.
15316         (getopt) [!defined __GNU_LIBRARY]: Use prototype, not old-style
15317         declaration, since the above renaming now works around collisions.
15318
15319 2004-11-11  Jim Meyering  <jim@meyering.net>
15320
15321         * lib/linebreak.c: Remove trailing blanks.
15322         * lib/alloca_.h: Likewise.
15323         * lib/acosl.c: Likewise.
15324         * lib/euidaccess.c: Likewise.
15325         * lib/allocsa.h: Likewise.
15326
15327 2004-11-10  Simon Josefsson  <jas@extundo.com>
15328
15329         * m4/getaddrinfo.m4: New file.
15330
15331 2004-11-10  Simon Josefsson  <jas@extundo.com>
15332
15333         * lib/getaddrinfo.h, lib/getaddrinfo.c: New files.
15334
15335 2004-11-10  Simon Josefsson  <jas@extundo.com>
15336
15337         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
15338         getaddrinfo.
15339
15340         * modules/getaddrinfo: New file.
15341
15342 2004-11-10  Paul Eggert  <eggert@cs.ucla.edu>
15343
15344         * m4/prereq.m4 (gl_PREREQ): Require gt_FUNC_SETENV.
15345
15346 2004-11-10  Paul Eggert  <eggert@cs.ucla.edu>
15347
15348         * lib/mktime.c (SHR): New macro, which is a portable
15349         substitute for >> that should work even on Crays.
15350         (TIME_T_MIDPOINT, ydhms_diff, __mktime_internal): Use it.
15351         Problem reported by Mark D. Baushke in
15352         <http://lists.gnu.org/archive/html/bug-gnulib/2004-11/msg00071.html>.
15353         * lib/getdate.y (SHR): Likewise.
15354         (tm_diff): Use it.
15355         * lib/strftime.c (SHR): Likewise.
15356         (tm_diff): Use it.
15357         * lib/quotearg.c (struct quoting_options): Use unsigned int for
15358         quote_these_too, so that right shifts are well defined.  All uses
15359         changed.
15360
15361 2004-11-10  Jim Meyering  <jim@meyering.net>
15362
15363         Ensure that no close failure goes unreported.
15364         * lib/closeout.c (close_stdout): Always close stdout.  I.e., don't
15365         return early when it seems there's nothing to flush.
15366         Don't include __fpending.h.
15367
15368 2004-11-10  Jim Meyering  <jim@meyering.net>
15369
15370         * modules/closeout (Depends-on): Remove fpending.
15371
15372 2004-11-10  Jim Meyering  <jim@meyering.net>
15373
15374         * m4/jm-macros.m4 (gl_MACROS): Don't require gl_FUNC_FPENDING.
15375
15376 2004-11-09  Paul Eggert  <eggert@cs.ucla.edu>
15377
15378         * m4/strftime.m4 (_gl_STRFTIME_PREREQS): Remove.  Move its body to
15379         gl_FUNC_STRFTIME.
15380         (gl_FUNC_STRFTIME): Use AC_CHECK_FUNCS_ONCE and AC_CHECK_HEADERS_ONCE
15381         and AC_REQUIRE when possible, to avoid duplicate checks.
15382         Check for <wchar.h>.
15383
15384 2004-11-09  Paul Eggert  <eggert@cs.ucla.edu>
15385
15386         * lib/strftime.c (DO_MULTIBYTE): Check for wchar.h, too.
15387
15388 2004-11-09  Bruno Haible  <bruno@clisp.org>
15389
15390         * m4/sockpfaf.m4: New file.
15391
15392 2004-11-05  Bruno Haible  <bruno@clisp.org>
15393
15394         * lib/readlink.c: Include stddef.h, needed for size_t on Woe32.
15395         Reported by Mark D. Baushke <mdb@cvshome.org>.
15396
15397 2004-11-04  Bruno Haible  <bruno@clisp.org>
15398
15399         2004-09-11  Bruno Haible  <bruno@clisp.org>
15400                 * allocsa.valgrind: New file.
15401         2004-02-06  Bruno Haible  <bruno@clisp.org>
15402                 * allocsa.h (sa_alignof): Define differently with HP-UX cc, to
15403                 avoid a bug of this cc on HP-UX 10.20 dealing with enums.
15404                 Reported by Christopher Seip <chris.seip@hp.com>.
15405
15406 2004-11-04  Bruno Haible  <bruno@clisp.org>
15407
15408         * modules/allocsa (Files): Add lib/allocsa.valgrind.
15409         (Makefile.am): Distribute it.
15410
15411 2004-11-03  Paul Eggert  <eggert@cs.ucla.edu>
15412
15413         * lib/xreadlink.c (xreadlink): AIX and HP-UX readlink return -1
15414         with errno == ERANGE if the buffer is too small.
15415         Problem reported by Mark D. Baushke.
15416
15417 2004-11-03  Albert Chin  <china@thewrittenword.com>
15418             Paul Eggert  <eggert@cs.ucla.edu>
15419
15420         * m4/uint32_t.m4 (gl_AC_TYPE_UINT32_T): When determining uint32_t
15421         equivalent, substitute $ac_type for equivalent type rather than
15422         blindly using uint32_t *always* which won't work if uint32_t is not
15423         available.  Define _UINT32_T to work around typedef of uint32_t if
15424         <sys/sched.h>, <pthread.h>, or <semaphore.h> used on Solaris
15425         2.5.1.
15426
15427 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
15428
15429         * m4/jm-macros.m4: Sync from coreutils.
15430         (gl_MACROS): Check for mbrlen, for pathchk.
15431         (gl_CHECK_ALL_TYPES): Require AC_TYPE_MBSTATE_T, for pathchk.
15432
15433 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
15434
15435         * lib/xreadlink.c (MAXSIZE): New macro.
15436         (xreadlink): Use it instead of SSIZE_MAX.  Ensure initial buffer
15437         size does not exceed MAXSIZE.  Avoid cast.
15438         As suggested by Mark D. Baushke in
15439         <http://lists.gnu.org/archive/html/bug-gnulib/2004-11/msg00009.html>,
15440         if readlink fails with buffer size just under MAXSIZE, try again
15441         with MAXSIZE.
15442
15443 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
15444
15445         * config/srclist.txt: Add mktime.c; glibc bought all our changes.
15446
15447 2004-11-02  Derek R. Price  <derek@ximbiot.com>
15448         and  Paul Eggert  <eggert@cs.ucla.edu>
15449
15450         * lib/getdate.y [!TEST]: Include <stdio.h>, since we use sprintf now.
15451         (get_date): Overparenthesize to avoid GCC warning.
15452
15453 2004-11-02  Bruno Haible  <bruno@clisp.org>
15454
15455         * m4/setenv.m4 (gt_FUNC_SETENV): Define VOID_UNSETENV if unsetenv()
15456         returns void.
15457
15458 2004-11-02  Bruno Haible  <bruno@clisp.org>
15459
15460         * lib/setenv.h (unsetenv): Define as a macro if the system's unsetenv()
15461         function returns void.
15462
15463 2004-11-01  Paul Eggert  <eggert@cs.ucla.edu>
15464
15465         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for declarations of
15466         fflush_unlocked, flockfile, funlockfile, funlockfile,
15467         fputs_unlocked, putc_unlocked.
15468
15469 2004-11-01  Paul Eggert  <eggert@cs.ucla.edu>
15470
15471         * lib/getpass.c (fflush_unlocked, flockfile, funlockfile)
15472         (funlockfile, fputs_unlocked, putc_unlocked): Don't define if
15473         already declared.
15474
15475 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
15476
15477         * modules/getdate (Files): Add doc/getdate.texi.
15478         (Depends-on): Add setenv, xalloc.
15479
15480 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
15481
15482         * lib/getdate.y: Add support for TZ="foo" within a date string.
15483         Fix some bugs near time_t boundaries.  Reject dates with
15484         out-of-range components, e.g., "Sept 31".
15485         Include <stdlib.h>, "setenv.h", "xalloc.h".
15486         (ISDIGIT_LOCALE): Remove; unused.
15487         Note that the TZ and time functions used here are not reentrant.
15488         (mktime_ok, get_tz): New functions.
15489         (TZBUFSIZE): New constant.
15490         (get_date): Parse leading TZ="foo".  Reject out-of-range components;.
15491         This requires that we sometimes generate our own TZ="XXX..." setting.
15492
15493 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
15494
15495         * doc/getdate.texi: New file, from coreutils with modifications for
15496         the new TZ parsing.
15497
15498 2004-10-27  Derek R. Price  <derek@ximbiot.com>
15499
15500         * lib/mktime.c (not_equal_tm): Remove redundant check.
15501
15502 2004-10-24  Paul Eggert  <eggert@cs.ucla.edu>
15503
15504         * modules/regex (lib_SOURCES): Add regex.c.
15505         Reported by James Youngman in
15506         <http://lists.gnu.org/archive/html/bug-gnulib/2004-10/msg00199.html>.
15507
15508 2004-10-24  Paul Eggert  <eggert@cs.ucla.edu>
15509
15510         * lib/getdate.y: Use Bison 1.875 features, and some minor
15511         code cleanups.  This change does not affect semantics.
15512         Don't include <stdlib.h>; no longer needed.
15513         Don't include unlocked-io.h; only the "#if TEST" code uses
15514         stdio, and performance isn't crucial there.
15515         (PC, YYLEX_PARAM, YYPARSE_PARAM): Remove; replaced by
15516         Bison 1.875 features as described below.
15517         All uses of "PC." replaced by "pc->".
15518         (YYSTYPE): Add a forward declaration.
15519         (yylex, yyerror): Use full prototypes in forward decls.
15520         Use "%pure-parser" rather than obsolescent "%pure_parser".
15521         Use %parse-param and %lex-param instead of obsolescent
15522         YYPARSE_PARAM and YYLEX_PARAM.
15523         (meridian_table, month_and_day_table, time_units_table,
15524         relative_time_table, time_zone_table, military_table,
15525         lookup_zone, lookup_word, get_date):
15526         Use NULL instead of 0 where appropriate.
15527         (to_hour): Avoid abort (), to avoid a dependency on
15528         stdlib.h.
15529         (yyerror, yylex): Now accepts parser_control * arg.
15530         (main) [TEST]: Use '\0' rather than 0 for char.
15531
15532 2004-10-22  Paul Eggert  <eggert@cs.ucla.edu>
15533
15534         * m4/getpagesize.m4 (gl_GETPAGESIZE): Check for <sys/param.h>.
15535
15536 2004-10-22  Paul Eggert  <eggert@cs.ucla.edu>
15537
15538         * lib/getpagesize.c (getpagesize): Don't assume <sys/param.h> exists.
15539         It's now the caller's responsibility to handle the case where
15540         !HAVE_GETPAGESIZE && !defined getpagesize.
15541
15542         * lib/mktime.c (leapyear): Arg is long int, not int.
15543
15544 2004-10-18  Paul Eggert  <eggert@cs.ucla.edu>
15545
15546         * lib/argp-fs-xinl.c, argp-xinl.c: Update from glibc.
15547
15548 2004-10-17  Paul Eggert  <eggert@cs.ucla.edu>
15549
15550         * gnulib-tool (func_emit_lib_Makefile_am): Fix typo: a $ was
15551         missing.  Problem reported by James Youngman.
15552
15553 2004-10-16  Simon Josefsson  <jas@extundo.com>
15554
15555         * gnulib-tool: Fix comments.  Fix parse problem.
15556         (func_emit_lib_Makefile_am): Don't hard code a in libgl_a_SOURCES.
15557
15558 2004-10-15  Paul Eggert  <eggert@cs.ucla.edu>
15559
15560         * m4/getopt.m4 (gl_GETOPT): Detect and reject the incompatible BSD
15561         implementation of getopt_long.  Problem reported by Alexander Taler in:
15562         http://lists.gnu.org/archive/html/bug-gnulib/2004-10/msg00103.html
15563
15564 2004-10-15  Bruno Haible  <bruno@clisp.org>
15565
15566         * gnulib-tool: Untabify. Initialize supplied_libname.
15567         (func_usage): More homogenous output.
15568         (func_modules_transitive_closure, func_modules_to_filelist,
15569         func_emit_lib_Makefile_am): New functions.
15570         (func_import): New function, extracted from big case statement. Use
15571         func_get_license, func_modules_transitive_closure,
15572         func_modules_to_filelist, func_emit_lib_Makefile_am. Initialize
15573         opt_lgpl. Don't use test -a, as it's not portable.
15574         (func_create_testdir): Use func_modules_transitive_closure,
15575         func_modules_to_filelist, func_emit_lib_Makefile_am.
15576
15577 2004-10-15  Bruno Haible  <bruno@clisp.org>
15578
15579         * gnulib-tool (func_import): Let gl_INIT define LTALLOCA when needed.
15580
15581 2004-10-15  Bruno Haible  <bruno@clisp.org>
15582
15583         * gnulib-tool (func_emit_lib_Makefile_am): Add markers to separate
15584         the portions belonging to each module.
15585         Suggested by Derek Robert Price <derek@ximbiot.com>.
15586
15587 2004-10-12  Simon Josefsson  <jas@extundo.com>
15588
15589         * lib/getpass.c (fflush_unlocked, flockfile, funlockfile)
15590         (fputs_unlocked, putc_unlocked) [!_LIBCS && !USE_UNLOCKED_IO]: Map
15591         to real functions.
15592
15593 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
15594
15595         * modules/vsnprintf: New file.
15596
15597 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
15598
15599         * m4/vsnprintf.m4: New file.
15600
15601 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
15602
15603         * lib/vsnprintf.h: New file.
15604         * lib/vsnprintf.c: New file.
15605
15606 2004-10-11  Bruno Haible  <bruno@clisp.org>
15607
15608         * MODULES.html.sh (Support for systems lacking ISO C 99): Add
15609         vsnprintf.
15610
15611 2004-10-10  Paul Eggert  <eggert@cs.ucla.edu>
15612
15613         * config/srclistvars.sh: Add GNUSTANDARDS (for eggert only).
15614
15615 2004-10-07  Bruno Haible  <bruno@clisp.org>
15616
15617         * lib/snprintf.c (snprintf): Avoid a memory allocation if the result
15618         fits into the provided buffer.
15619
15620 2004-10-06  Paul Eggert  <eggert@cs.ucla.edu>
15621
15622         * lib/diacrit.c, diacrit.h: Add GPL notice.
15623
15624         * lib/atanl.c, logl.c: Add GPL notice, to match glibc's added LGPL
15625         notice.
15626         * lib/atanl.c (atanl): Keep the code as similar to glibc as possible.
15627         * lib/logl.c (logl): Keep the code as similar to glibc as possible.
15628         This avoids a potential constant-folding bug.
15629
15630 2004-10-05  Bruno Haible  <bruno@clisp.org>
15631
15632         * m4/strsep.m4 (gl_FUNC_STRSEP): Require AC_GNU_SOURCE. Don't check
15633         for the declaration of strsep.
15634
15635 2004-10-05  Bruno Haible  <bruno@clisp.org>
15636
15637         * lib/strsep.h: Don't declare strsep() if HAVE_STRSEP.
15638
15639 2004-10-04  Simon Josefsson  <jas@extundo.com>
15640
15641         * modules/memmem: New file.
15642         * tests/test-memmem.c: New file.
15643         * MODULES.html.sh (Extra functions based on ANSI C 89): Add memmem.
15644
15645 2004-10-04  Simon Josefsson  <jas@extundo.com>
15646
15647         * m4/memmem.m4: New file.
15648
15649 2004-10-04  Simon Josefsson  <jas@extundo.com>
15650
15651         * lib/memmem.h: New file.
15652         * lib/memmem.c: New file, taken from glibc.
15653
15654 2004-10-04  Simon Josefsson  <jas@extundo.com>
15655
15656         * lib/error.c, md5.c, regex.c: Use '#if USE_UNLOCKED_IO' instead of
15657         '#ifdef USE_UNLOCKED_IO'.
15658
15659 2004-10-04  Simon Josefsson  <jas@extundo.com>
15660
15661         * config/srclist.txt: Add memmem from glibc.
15662
15663 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
15664
15665         * modules/xalloc (Files, Makefile.am): Remove xstrdup.c.
15666
15667         * modules/argmatch, modules/argp, modules/closeout, modules/error,
15668         modules/exclude, modules/getdate, modules/getline,
15669         modules/getndelim2, modules/getpass, modules/getpass-gnu,
15670         modules/getusershell, modules/linebuffer, modules/md5,
15671         modules/mountlist, modules/posixtm, modules/readtokens,
15672         modules/readutmp, modules/regex, modules/sha1,
15673         modules/version-etc, modules/yesno:
15674         Remove dependency on unlocked-io.
15675
15676 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
15677
15678         * m4/xalloc.m4 (gl_PREREQ_XSTRDUP): Remove.  All uses removed.
15679
15680         * m4/unlocked-io.m4: Add copyright notice.
15681         (gl_FUNC_GLIBC_UNLOCKED_IO): Define USE_UNLOCKED_IO.
15682
15683 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
15684
15685         * lib/xalloc.h (xmemdup): Renamed from xclone.  All uses changed.
15686         * lib/xmalloc.c (xmemdup): Likewise.
15687         * lib/xalloc.h (CCLONE, CLONE, NEW, XCALLOC, XMALLOC, XREALLOC,
15688         XFREE): Remove these long-obsolescent macros.
15689         * lib/xmalloc.c (xstrdup): Implementation moved here from xstrdup.c
15690         * lib/xstrdup.c: Remove.
15691
15692         * lib/regex.c (re_comp): Cast gettext return value to char *,
15693         Problem reported by Martin Neitzel via Mark D. Baushke.
15694
15695 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
15696
15697         * lib/argmatch.c, closeout.c, error.c, exclude.c, getdate.y,
15698         getndelim2.c, getpass.c, getusershell.c, linebuffer.c,
15699         md5.c, mountlist.c, posixtm.c, readtokens.c, readutmp.c,
15700         regex.c, sha1.c, version-etc.c, yesno.c:
15701         Include "unlocked-io.h" only if USE_UNLOCKED_IO.
15702         * lib/unlocked-io.h: Don't worry about USE_UNLOCKED_IO; that's now
15703         the includer's responsibility.
15704
15705         Sync from coreutils.
15706
15707         * lib/modechange.c (mode_compile): Don't decrement a pointer that
15708         points to the start of a string, as the C Standard says the
15709         resulting behavior is undefined.
15710
15711         * lib/backupfile.h (enum backuptype): Rename none -> no_backups,
15712         simple -> simple_backups, numbered_existing ->
15713         numbered_existing_backups, numbered -> numbered_backups
15714         to avoid shadowing problems.  All uses changed.
15715         * lib/argmatch.c (enum backuptype) [defined TEST]: Likewise.
15716         * lib/backupfile.c (check_extension, numbered_backup):
15717         Rename locals to avoid shadowing 'basename'.
15718         * lib/backupfile.h (VALID_BACKUP_TYPE): Don't evaluate arg more than
15719         once.
15720
15721         * lib/.cppi-disable: Add getopt_.h, getopt_int.h.
15722         * lib/.cvsignore: Add getopt.h.
15723
15724 2004-10-04  Bruno Haible  <bruno@clisp.org>
15725
15726         * modules/README: New file.
15727         * gnulib-tool (func_all_modules, func_verify_module): modules/README is
15728         not a module.
15729
15730 2004-10-02  Jim Meyering  <jim@meyering.net>
15731
15732         * lib/dirfd.h, getpagesize.h: Add copyright notice.
15733
15734 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
15735
15736         * modules/strsep: New file.
15737
15738 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
15739
15740         * m4/strsep.m4: New file.
15741
15742 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
15743
15744         * lib/strsep.h: New file.
15745         * lib/strsep.c: New file.
15746
15747 2004-10-01  Simon Josefsson  <jas@extundo.com>
15748
15749         * lib/snprintf.c (snprintf): Handle size==0.
15750
15751 2004-10-01  Simon Josefsson  <jas@extundo.com>
15752             Bruno Haible  <bruno@clisp.org>
15753
15754         * lib/snprintf.c: Include <stdarg.h>, <stdlib.h>, <string.h>.
15755         (snprintf): Declare 'args'.
15756
15757 2004-10-01  Paul Eggert  <eggert@cs.ucla.edu>
15758
15759         * lib/snprintf.c: Remove comments as to why each header is needed.
15760
15761 2004-10-01  Bruno Haible  <bruno@clisp.org>
15762
15763         * MODULES.html.sh: Add strsep.
15764
15765 2004-09-30  Simon Josefsson  <jas@extundo.com>
15766
15767         * modules/snprintf: New file.
15768
15769 2004-09-30  Simon Josefsson  <jas@extundo.com>
15770
15771         * m4/snprintf.m4: New file.
15772
15773 2004-09-30  Simon Josefsson  <jas@extundo.com>
15774
15775         * lib/snprintf.h, lib/snprintf.c: New files.
15776
15777 2004-09-30  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
15778
15779         * lib/argp-help.c (canon_doc_option): Fixed coredump if *name==NULL
15780         (hol_entry_help): Never translate an empty string.
15781         Do not translate option tag (opt->name) if OPTION_NO_TRANS is set
15782         * lib/argp.h (OPTION_NO_TRANS): New option.
15783
15784 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
15785
15786         * modules/argp (Maintainer): Replace Simon Josefsson
15787         by Sergey Poznyakoff.
15788
15789 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
15790
15791         * config/srclist.txt: Comment-out argp/argp.h, until we get the argp
15792         changes merged back into glibc.
15793
15794 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
15795
15796         * MODULES.html.sh (Support for systems lacking ISO C 99): Add snprintf.
15797
15798 2004-09-29  Oskar Liljeblad  <oskar@osk.mine.nu>
15799
15800         * lib/xvasprintf.c: Include xalloc.h.
15801         (xvasprintf): Use xalloc_die, not xmalloc_die.
15802
15803 2004-09-29  Bruno Haible  <bruno@clisp.org>
15804
15805         * modules/alloca-opt: New file, derived from modules/alloca.
15806         * modules/allocsa: Depend on alloca-opt instead of alloca.
15807         * modules/setenv: Likewise.
15808         * modules/vasnprintf: Likewise.
15809         * MODULES.html.sh: Add alloca-opt.
15810
15811 2004-09-28  Simon Josefsson  <jas@extundo.com>
15812
15813         * gnulib-tool: New parameter --lgpl, to asseert that modules are
15814         LGPL, and to replace license template from GPL to LGPL.
15815
15816 2004-09-28  Paul Eggert  <eggert@cs.ucla.edu>
15817
15818         * modules/dummy: Change license to LGPL.
15819
15820 2004-09-28  Paul Eggert  <eggert@cs.ucla.edu>
15821
15822         * lib/dummy.c: Change copyright notice to FSF, and license to GPL.
15823
15824 2004-09-24  Simon Josefsson  <jas@extundo.com>
15825
15826         * modules/minmax (License): Change from GPL to LGPL.
15827
15828 2004-09-23  Simon Josefsson  <jas@extundo.com>
15829
15830         * gnulib-tool (--import): Typo.
15831
15832 2004-09-23  Simon Josefsson  <jas@extundo.com>
15833
15834         * gnulib-tool (--import): Make sure *.m4 end up in m4/ by default.
15835
15836 2004-09-22  Bruno Haible  <bruno@clisp.org>
15837
15838         * modules/*: Add 'License' field.
15839         * gnulib-tool: Accept --extract-license option.
15840         (func_get_license): New function.
15841
15842 2004-09-21  Bruno Haible  <bruno@clisp.org>
15843
15844         * modules/vasnprintf (Files): Add m4/stdint_h.m4, m4/inttypes_h.m4.
15845         Reported by Simon Josefsson.
15846
15847 2004-09-20  Paul Eggert  <eggert@cs.ucla.edu>
15848
15849         * modules/inttostr (Files): Add m4/longlong.m4, since it uses
15850         gl_AC_TYPE_LONG_LONG.
15851
15852 2004-09-20  Paul Eggert  <eggert@cs.ucla.edu>
15853
15854         * config/srclist.txt: Add getsubopt.c, since libc bought our changes.
15855
15856 2004-09-18  Simon Josefsson  <jas@extundo.com>
15857         and  Paul Eggert  <eggert@cs.ucla.edu>
15858
15859         * gnulib-tool: Replace various ad-hoc automake/autoconf/aclocal
15860         calls with autoreconf.  Define GL_LIB.
15861
15862 2004-09-14  Karl Berry  <karl@gnu.org>
15863
15864         * config/srclist.txt: unsync setenv.c, sigh.
15865
15866 2004-09-13  Paul Eggert  <eggert@cs.ucla.edu>
15867
15868         * lib/argp-pvh.c (argp_program_version_hook): Provide initial value.
15869         Problem reported by Bruno Haible in:
15870         http://lists.gnu.org/archive/html/bug-tar/2004-09/msg00023.html
15871
15872 2004-09-13  Paul Eggert  <eggert@cs.ucla.edu>
15873
15874         * config/srclist.txt: Comment out argp-pvh.c.
15875
15876 2004-09-11  Paul Eggert  <eggert@cs.ucla.edu>
15877
15878         * lib/mempcpy.h: Wrap the entire include file inside #ifndef mempcpy,
15879         in case some system header has #define'd it.  Problem reported by
15880         Soeren D. Schulze in
15881         <http://lists.gnu.org/archive/html/bug-gnulib/2004-09/msg00017.html>.
15882
15883 2004-09-09  Karl Berry  <karl@gnu.org>
15884
15885         * regex.[ch]: delete from the root.  These were supposed to be
15886                 synced with emacs cvs, but this has not happened for about
15887                 a year, and anyway nothing else uses emacs regex.[ch].
15888                 bug-gnulib mail from Jeff Bailey, 9 Sep 2004 15:49:24 -0700.
15889                 lib/regex[.ch] is untouched.
15890
15891 2004-09-09  Bruno Haible  <bruno@clisp.org>
15892
15893         * modules/vasnprintf (Files): Add m4/eoverflow.m4.
15894
15895 2004-09-09  Bruno Haible  <bruno@clisp.org>
15896
15897         * m4/eoverflow.m4: New file, taken from GNU libiconv eilseq.m4 with
15898         modifications.
15899         * m4/vasnprintf.m4 (gl_FUNC_VASNPRINTF): Require gl_EOVERFLOW.
15900
15901 2004-09-08  Oskar Liljeblad  <oskar@osk.mine.nu>
15902
15903         * modules/xvasprintf: New file.
15904         * MODULES.html.sh (Extra functions based on ANSI C 89): Add vasprintf.
15905
15906 2004-09-08  Oskar Liljeblad  <oskar@osk.mine.nu>
15907
15908         * lib/xvasprintf.h: New file.
15909         * lib/xvasprintf.c: New file.
15910         * lib/xasprintf.c: New file.
15911
15912 2004-09-08  Bruno Haible  <bruno@clisp.org>
15913
15914         * m4/stdint.m4: New file, taken from GNU clisp with modifications.
15915
15916 2004-09-08  Bruno Haible  <bruno@clisp.org>
15917
15918         * lib/vasnprintf.c (VASNPRINTF): Signal EOVERFLOW if the resulting
15919         length is > INT_MAX.
15920         * lib/vasprintf.c (vasprintf): Don't test for length > INT_MAX any
15921         more.
15922
15923 2004-09-08  Bruno Haible  <bruno@clisp.org>
15924
15925         * lib/stdint_.h: New file, taken from GNU clisp.
15926
15927 2004-09-08  Bruno Haible  <bruno@clisp.org>
15928             Oskar Liljeblad  <oskar@osk.mine.nu>
15929
15930         * modules/stdint: New file.
15931         * MODULES.html.sh (Support for systems lacking ISO C 99): Add stdint.
15932
15933 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
15934
15935         Import from coreutils.
15936         * lib/userspec.c: Don't use <alloca.h>, so that we don't use alloca on
15937         strings on unbounded length.  alloca's performance benefits aren't
15938         that important here.
15939         (V_STRDUP): Remove.
15940         (parse_with_separator): New function, with most of the internals
15941         of the old parse_user_spec.  Allow user to omit both user and group,
15942         for compatibility with FreeBSD.
15943         Clone only the user name, not the entire spec.
15944         Do not set *uid, *gid unless entirely successful.
15945         Avoid memory leak in some failing cases.
15946         Fix regression for USER.GROUP reported by Dmitry V. Levin in
15947         <http://lists.gnu.org/archive/html/bug-coreutils/2004-08/msg00102.html>
15948         (parse_user_spec): Rewrite to use parse_with_separator.
15949
15950 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
15951
15952         * modules/userspec: Don't depend on alloca.
15953
15954 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
15955
15956         * m4/userspec.m4 (gl_USERSPEC): Don't require AC_FUNC_ALLOCA.
15957
15958 2004-08-17  Paul Eggert  <eggert@cs.ucla.edu>
15959
15960         * MODULES.html.sh: Add xalloc-die, c-strtod, c-strtold, raise,
15961         readtokens0, getcwd, fcntl-safer, canonicalize, cycle-check,
15962         utimecmp, utimens, xnanosleep.  Rename sha to sha1.
15963
15964 2004-08-16  Simon Josefsson  <jas@extundo.com>
15965
15966         * gnulib-tool: Use sed instead of autoconf --trace, inspired by
15967         libtoolize behaviour by "Gary V. Vaughan" <gary@gnu.org>.
15968         Add --dry-run for --import.
15969         Let user provided command line parameters override configure.ac
15970         settings.
15971
15972 2004-08-12  Simon Josefsson  <jas@extundo.com>
15973
15974         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE): New macro,
15975         as discussed with Paul Eggert in threads rooted at
15976         <http://lists.gnu.org/archive/html/bug-gnulib/2004-06/msg00039.html>
15977         and
15978         <http://lists.gnu.org/archive/html/bug-gnulib/2004-07/msg00001.html>.
15979         Before, the test was empty, and relied on ELIDE_CODE in source
15980         code.)
15981         (gl_PREREQ_GETOPT): New macro.
15982         (gl_GETOPT): Use them.
15983
15984 2004-08-12  Simon Josefsson  <jas@extundo.com>
15985
15986         * lib/getopt.c, getopt1.c: Remove ELIDE_CODE hack.
15987         * lib/getopt_.h: Renamed from getopt.h.
15988
15989 2004-08-12  Simon Josefsson  <jas@extundo.com>
15990
15991         * gnulib-tool: Add --source-base, --m4-base, --libtool options.
15992         Change default library name from libfoo to libgnu.
15993         Now, if you have a configure.ac that says:
15994                 gl_SOURCE_BASE(gl)
15995                 gl_M4_BASE(gl/m4)
15996                 gl_MODULES(error getopt etcetera)
15997                 gl_INIT
15998         you can import all you need by running:
15999                 ../gnulib/gnulib-tool --import
16000
16001         * modules/getopt (Files): Rename getopt.h to getopt_.h.
16002         (Makefile.am): Rewrite, use logic from argz.
16003         (Include): Use <getopt.h> instead of "getopt.h".
16004
16005 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
16006
16007         * modules/argp (Files): Add m4/unlocked-io.m4.
16008         (Depends-on): Add extensions.
16009
16010 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
16011
16012         * m4/argp.m4 (gl_ARGP): Do not check for argp.h or argp_parse; nobody
16013         uses HAVE_ARGP_H or HAVE_ARGP_PARSE.
16014         Require gl_FUNC_GLIBC_UNLOCKED_IO, gl_USE_SYSTEM_EXTENSIONS.
16015         Check for program_invocation_name, program_invocation_short_name,
16016         flockfile, funlockfile, features.h, _getopt_long_only_r.
16017
16018 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
16019
16020         * lib/argp-help.c, argp-parse.c: Use "gettext.h" instead of
16021         its complicated substitute.
16022         * lib/argp-help.c: Include <errno.h>, for program_invocation_short_name
16023         and program_invocation_name.
16024         (__argp_basename) [!_LIBC]: Remove; the only use was
16025         replaced by its body.
16026         (__argp_short_program_name): Change condition from
16027         !defined __argp_short_program_name to
16028         ! (defined _LIBC || HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME),
16029         to match argp-namefrob.h.
16030         (__argp_failure): Don't assume strerror_r returns char *.
16031         * lib/argp-parse.c (N_): Define unconditionally.
16032         (argp_default_options): Fill out initializers with 0 to avoid
16033         gcc warnings.
16034
16035 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
16036
16037         * config/srclist.txt: Remove getopt.c, getopt.h (renamed to getopt_.h),
16038         getopt1.c.
16039
16040 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
16041
16042         Merge from coreutils.
16043
16044         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for wmemchr and wmemcpy.
16045
16046         * m4/obstack.m4 (gl_PREREQ_OBSTACK): Require
16047         gl_AC_HEADER_INTTYPES_H, gl_AC_HEADER_STDINT_H, gl_AC_TYPE_UINTMAX_T.
16048
16049 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
16050
16051         Merge from coreutils.
16052
16053         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Don't set to 1 if missing
16054         wmemchr or wmemcpy.  Problem reported by Robert Dahlem
16055         for Reliant Unix 5.43.
16056
16057         * lib/obstack.c: Include <inttypes.h> and <stdint.h> if available.
16058         (union fooround): Use uintmax_t, not long int.
16059         The rest is a merge from libc:
16060         [defined _LIBC]: Include <shlib-compat.h>.
16061         (_obstack) [defined _LIBC]: Remove after 2.3.4.
16062
16063         * lib/settime.c (settime): Recode to avoid warning with
16064         Sun Forte C 6U2.
16065
16066         * lib/strverscmp.c: Convert to UTF-8.
16067
16068 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
16069
16070         * modules/obstack (Files): Add m4/inttypes_h.m4, m4/stdint_h.m4,
16071         m4/uintmax_t.m4.
16072
16073 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
16074
16075         * modules/xalloc-die: New file.
16076         * modules/xalloc: Remove dependencies on error, gettext, exitfail.
16077
16078         * modules/md5 (Files): Add m4/uint32_t.m4.
16079         * modules/sha1: Renamed from modules/sha.
16080         (Files):
16081         Rename lib/sha.h to lib/sha1.h.
16082         Rename lib/sha.c to lib/sha1.c.
16083         Rename m4/sha.m4 to m4/sha1.m4.
16084         (lib_SOURCES): Likewise.
16085         (configure.ac): Rename gl_SHA to gl_SHA1.
16086         (Include): sha.h -> sha1.h.
16087
16088 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
16089
16090         * m4/uint32_t.m4, m4/uintptr_t.m4: New files.
16091         * m4/sha1.m4: Renamed from sha.m4.
16092         (gl_SHA1): Renamed from gl_SHA.  All uses changed.
16093
16094 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
16095
16096         * lib/obstack.h (obstack_empty_p):
16097         Don't assume that chunk->contents is suitably aligned.
16098         * lib/obstack.c (_obstack_begin, _obstack_begin_1, _obstack_newchunk):
16099         Likewise. Problem reported by Benno in
16100         <http://sources.redhat.com/ml/libc-alpha/2004-08/msg00055.html>.
16101
16102         * lib/chown.c (rpl_chown): Work even if the file is writeable but not
16103         readable.  This could be improved further but it'd take some work.
16104
16105 2004-08-08  Simon Josefsson  <jas@extundo.com>
16106
16107         * modules/xgethostname (Depends-on): Remove exit and error (not
16108         used).
16109
16110         * modules/getpass-gnu: Add getpass.h.
16111         (Depends-on): Add stdbool.
16112         * modules/getpass: Add getpass.h.
16113
16114 2004-08-08  Simon Josefsson  <jas@extundo.com>
16115
16116         * m4/getpass.m4 (gl_FUNC_GETPASS, gl_FUNC_GETPASS_GNU):
16117         Check getpass declaration.
16118
16119 2004-08-08  Simon Josefsson  <jas@extundo.com>
16120
16121         * lib/xgethostname.c: Don't include error.h (not used).
16122
16123         * lib/getpass.h: Add.
16124         * lib/getpass.c: Include getpass.h first.
16125
16126 2004-08-08  Paul Eggert  <eggert@cs.ucla.edu>
16127
16128         * lib/xalloc-die.c: New file.
16129         * lib/xalloc.h (xalloc_fail_func, xalloc_msg_memory_exhausted): Remove.
16130         All uses removed.
16131         * lib/xmalloc.c (xalloc_fail_func, xalloc_msg_memory_exhausted):
16132         Likewise. Move inclusions of gettext.h, error.h, exitfail.h to
16133         xalloc-die.c.
16134         (_, N_, xalloc_die): Move to xalloc-die.c.
16135         * lib/userspec.c (parse_user_spaec): Use xstrdup rather than strdup,
16136         so that we needn't mess with xalloc_msg_memory_exhausted.
16137
16138         * lib/sha1.h: Renamed from sha.h.
16139         (SHA1_H): Renamed from _SHA_H.
16140         (sha1_ctx): Renamed from sha_ctx.
16141         (sha1_init_ctx): Renamed from sha_init_ctx.
16142         (sha1_process_block): Renamed from sha_process_block.
16143         (sha1_process_bytes): Renamed from sha_process_bytes.
16144         (sha1_finish_ctx): Renamed from sha_finish_ctx.
16145         (sha1_read_ctx): Renamed from sha_read_ctx.
16146         (sha1_stream): Renamed from sha_stream.
16147         (sha1_buffer): Renamed from sha_buffer.
16148         * lib/sha1.c: Likewise; renamed from sha.c.
16149         Do not include <sys/types.h>.
16150         Include <stddef.h> rather than <stdlib.h>.
16151
16152 2004-08-08  Bruno Haible  <bruno@clisp.org>
16153
16154         * lib/pathname.h (FILE_SYSTEM_PREFIX_LEN): Renamed from
16155         FILESYSTEM_PREFIX_LEN.
16156         * lib/progreloc.c: Likewise.
16157         * lib/concatpath.c (concatenated_pathname): Use FILE_SYSTEM_PREFIX_LEN.
16158
16159 2004-08-06  Simon Josefsson  <jas@extundo.com>
16160
16161         * modules/progname (Depends-on): Don't depend on stdbool.
16162
16163 2004-08-06  Simon Josefsson  <jas@extundo.com>
16164
16165         * modules/getsubopt: New file.
16166         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
16167         getsubopt.
16168
16169 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
16170
16171         More merge from coreutils.
16172
16173         * m4/utimens.m4, m4/utimecmp.m4: New files.
16174         * m4/backupfile.m4, euidacces.m4, acl.m4, afs.m4, calloc.m4, dirfd.m4,
16175         fsusage.m4, jm-macros.m4, ls-mntd-fs.m4, md5.m4, mountlist.m4,
16176         prereq.m4, sha.m4: Import changes from coreutils.
16177
16178 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
16179
16180         More merge from coreutils.
16181         * modules/raise, modules/readtokens0, modules/utimens:
16182         * modules/utimecmp, module/xnanosleep: New files.
16183         * modules/strftime: Add lib/strftime.h.
16184         Change include from <time.h> to "strftime.h".
16185         * modules/yesno: Add lib/yesno.h.
16186         * modules/backupfile: Remove lib/addext.c.
16187         * modules/euidaccess: Add stat-macros.h.
16188         * modules/canonicalize, modules/euidaccess,
16189         modules/filemode, modules/lchown, modules/makepath,
16190         modules/rmdir, modules/stat: Likewise.
16191
16192 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
16193
16194         Merge from tar.
16195         * lib/argp-help.c (make_hol, hol_append): Don't assume that
16196         SIZE_MAX is a valid preprocessor constant.
16197         (__argp_basename): Change from "#ifndef _LIBC"
16198         to "#ifndef __argp_short_program_name", so that
16199         we don't compile these functions for tar.
16200
16201         More merges from coreutils.
16202         * lib/raise.c, lib/readtokens0.h, lib/readtokens0.c, lib/strftime.h:
16203         * lib/utimens.h, lib/utimens.c, lib/utimecmp.h, lib/utimecmp.c:
16204         * lib/xnanosleep.h, lib/xnanosleep.c, lib/yesno.h: New files.
16205         * lib/addext.c: Remove; no longer needed.
16206         * lib/yesno.c, lib/argmatch.h, lib/argmatch.c, lib/backupfile.h,
16207         lib/backupfile.c, lib/euidaccess.c, lib/filemode.c, lib/closeout.c,
16208         lib/dup2.c, lib/exclude.c, lib/fileblocks.c, lib/filemode.c,
16209         lib/fnmatch.c, lib/fnmtahc_loop.c, lib/fopen-safer.c, lib/fsusage.c,
16210         lib/fsusage.h, lib/ftruncate.c, lib/full-write.c, lib/getdate.y,
16211         lib/getloadavg.c, lib/getugroups.c, lib/hard-locale.c,
16212         lib/hard-locale.h, lib/hash.c, lib/human.c, lib/human.h, lib/lchown.c,
16213         lib/lchown.h, lib/makepath.c, lib/makepath.h, lib/md5.c, lib/md5.h,
16214         lib/memchr.c, lib/memcoll.c, lib/memrchr.c, lib/modechange.c,
16215         lib/modechange.h, lib/mountlist.c, lib/mountlist.h, lib/nanosleep.c,
16216         lib/posixtm.c, lib/putenv.c, quotearg.c, lib/quotearg.h,
16217         lib/readtokens.c, lib/readutmp.c, lib/readutmp.h, lib/rmdir.c,
16218         lib/safe-read.c, lib/save-cwd.c, lib/savedir.c, lib/setenv.c,
16219         lib/sig2str.c, lib/stat.c, lib/strtoimax.c, lib/strverscmp.c,
16220         lib/userspec.c, lib/utime.c, lib/version-etc.c., lib/xgethostname.c,
16221         lib/xmemcoll.c, lib/xreadlink.c, lib/xstrtod.c, lib/xstrtod.h,
16222         lib/xstrtoimax.c, lib/xstrtol.c, lib/xstrtol.h, lib/xstrtoumax.c:
16223         Import changes from coreutils.
16224
16225 2004-08-05  Simon Josefsson  <jas@extundo.com>
16226
16227         * m4/strdup.m4: Always run gl_PREREQ_STRDUP, since strdup.h need it.
16228
16229 2004-08-05  Simon Josefsson  <jas@extundo.com>
16230
16231         * m4/getsubopt.m4: New file.
16232
16233 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
16234
16235         Merge from coreutils.
16236
16237         * m4/c-strtod.m4, m4/canonicalize.m4, m4/fcntl-safer.m4:
16238         * m4/getcwd-path-max.m4: New files.
16239
16240         * m4/dos.m4 (gl_AC_DOS): filesystem -> file system renaming.
16241         FILESYSTEM_PREFIX_LEN ->
16242         FILE_SYSTEM_PREFIX_LEN.
16243         FILESYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX ->
16244         FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX.
16245         FILESYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR ->
16246         FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR.
16247
16248         * m4/path-concat.m4 (gl_PATH_CONCAT): Don't require gl_AC_DOS, the
16249         prerequisite modules now handle the DOS stuff.
16250         Don't check for unistd.h.
16251
16252 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
16253
16254         Merge from coreutils.
16255
16256         * lib/.gdb-history: Remove; this doesn't belong here.
16257
16258         * lib/c-strtod.c, lib/c-strtod.h, lib/c-strtold.c, lib/cycle-check.c:
16259         * lib/cycle-check.h, lib/dev-ino.h, lib/canonicalize.h:
16260         * lib/canonicalize.c, lib/fcntl-safer.h, lib/fcntl-safer.c:
16261         * lib/getcwd.c: New files.
16262
16263         * lib/dirname.h: Include <stdbool.h>.
16264         (FILE_SYSTEM_PREFIX_LEN): Renamed from FILESYSTEM_PREFIX_LEN,
16265         for consistency with POSIX terminology.  All uses changed.
16266         (IS_ABSOLUTE_FILE_NAME, IS_RELATIVE_FILE_NAME): New macros.
16267         (strip_trailing_slashes): Use bool for booleans.
16268         * lib/stripslash.c (strip_trailing_slashes): Likewise.
16269
16270         * lib/error.c: Work around bug in OpenBSD 3.4 sterror_r: it
16271         sometimes returns a positive errno value even when it succeeds.
16272         (print_errno_message) [!LIBC]: Fall back on strerror if
16273         __strerror_r fails.
16274
16275         * lib/path-concat.c (mempcpy): Don't define if a system header defines
16276         it. Don't include stdio.h, stdlib.h, unistd.h, strdup.h.
16277         (longest_relative_suffix): New function.
16278         (path_concat): Use it.  Assume first argument is not NULL.
16279         Port to DOS.  Omit redundant separators.
16280         Report an error instead of returning NULL.
16281         Use mempcpy instead of memcpy.
16282         (xpath_concat): Remove: not declared or used.
16283
16284         * lib/same.h: Include <stdbool.h>
16285         (same_name): Return bool, not int.
16286         * lib/same.c (same_name): Likewise.
16287         (errno): Don't declare; we assume C89 or better now.
16288
16289         * lib/stat-macros (S_ISCTG, S_ISOFD, S_ISOFL): New macros,
16290         if not already defined.
16291
16292         * lib/xgetcwd.c (errno): Don't declare; we assume C89 or better now.
16293         * lib/dup-safer.c (errno): Likewise.
16294
16295 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
16296
16297         Merge from coreutils.
16298         * modules/c-strtod, modules/c-strtold, modules/canonicalize:
16299         * modules/cycle-check, modules/fcntl-safer, modules/getcwd: New files.
16300         * modules/path-concat: Don't depend on strdup.
16301
16302 2004-08-03  Simon Josefsson  <jas@extundo.com>
16303
16304         * lib/strdup.h: Only use HAVE_DECL_STRDUP if defined.
16305         * lib/progname.h: Don't include stdbool.h.
16306
16307 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
16308
16309         * modules/fatal: Remove, as the "fatal" module wasn't used or working.
16310         * MODULES.html.sh (func_all_modules): Remove fatal.
16311
16312 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
16313
16314         * m4/fatal.m4: Remove, as the "fatal" module wasn't used or working.
16315
16316 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
16317
16318         * lib/fatal.c, fatal.h: Remove as the "fatal" module wasn't used or
16319         working.
16320
16321 2004-08-02  Simon Josefsson  <jas@extundo.com>
16322
16323         * lib/getsubopt.h: New file, with comments from Bruno Haible.
16324         * lib/getsubopt.c: New file, from glibc, but slightly modified based on
16325         suggestions from Paul Eggert <eggert@cs.ucla.edu>.
16326
16327 2004-08-01  Simon Josefsson  <jas@extundo.com>
16328
16329         * lib/xgetdomainname.c: Include stdlib.h, for free().
16330
16331 2004-07-19  Bruno Haible  <bruno@clisp.org>
16332
16333         * MODULES.html.sh (func_all_modules): Add dummy.
16334
16335 2004-07-16  Simon Josefsson  <jas@extundo.com>
16336
16337         * modules/dummy: New file.
16338
16339 2004-07-16  Simon Josefsson  <jas@extundo.com>
16340
16341         * lib/dummy.c: New file.
16342
16343 2004-07-16  Bruno Haible  <bruno@clisp.org>
16344
16345         * lib/backupfile.h: Add extern "C" for C++.
16346         * lib/closeout.h: Likewise.
16347         * lib/copy-file.h: Likewise.
16348         * lib/findprog.h: Likewise.
16349         * lib/full-write.h: Likewise.
16350         * lib/pathname.h: Likewise.
16351         * lib/progname.h: Likewise.
16352         * lib/stpcpy.h: Likewise.
16353         * lib/stpncpy.h: Likewise.
16354         * lib/strcase.h: Likewise.
16355         * lib/strstr.h: Likewise.
16356         * lib/xalloc.h: Likewise.
16357
16358         * lib/mbswidth.h: Add extern "C" for C++.
16359         Reported by Albert Chin-A-Young <china@thewrittenword.com>.
16360
16361 2004-07-13  Robert Millan  <robertmh@gnu.org>
16362
16363         * m4/host-os.m4: s/KNetBSD/kNetBSD/g and s/KFreeBSD/kFreeBSD/g.
16364
16365 2004-07-09  Simon Josefsson  <jas@extundo.com>
16366
16367         * lib/getndelim2.c: Include stddef.h, for ptrdiff_t.  (FreeBSD 4.9
16368         failed without this.)
16369
16370 2004-07-09  Paul Eggert  <eggert@cs.ucla.edu>
16371
16372         * modules/chown (Files): Add lib/fchown-stub.c, since
16373         gl_PREREQ_CHOWN invokes AC_LIBOBJ(fchown-stub).
16374
16375 2004-07-09  Paul Eggert  <eggert@cs.ucla.edu>
16376
16377         * lib/fchown-stub.c: New file.
16378
16379 2004-06-24  Jim Meyering  <jim@meyering.net>
16380
16381         * lib/obstack.h (obstack_base): Cast to (void *), per documentation.
16382
16383 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
16384
16385         * modules/argz: Omit "#include".
16386
16387         * MODULES.html.sh (func_all_modules): Add calloc, to match
16388         2004-06-01 addition of calloc module.
16389
16390 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
16391
16392         * m4/argz.m4: New file, which is autoupdated from libtool.
16393
16394 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
16395
16396         * lib/argz.c, lib/argz_.h: New files, which are autoupdated from
16397         libtool.
16398
16399 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
16400
16401         * config/srclist-update: Don't insist on "USA." before the
16402         close-comment, as libtool omits the period and puts the */ on a
16403         separate line.
16404         * config/srclist.txt: Add argz.c, argz_.h, argz.m4.
16405         * config/srclistvars.sh: Add LIBTOOL (for eggert only).
16406
16407 2004-06-22  Gary V. Vaughan  <gary@gnu.org>
16408
16409         * modules/argz: New file.
16410         * MODULES.html.sh (func_all_modules): Add argz.
16411
16412 2004-06-12  Jim Meyering  <jim@meyering.net>
16413         and  Paul Eggert  <eggert@cs.ucla.edu>
16414
16415         * modules/hash (Files): Add lib/xalloc.h.
16416         * modules/pipe (Depends-on): Add wait-process.
16417         * modules/stat (Depends-on): Add xalloc.
16418         * modules/userspec (Files): Add lib/userspec.h.
16419         * modules/xstrto
16420
16421         Upgrade from gettext-0.13.
16422         * modules/gettext (Files): Add m4/intmax.m4, m4/longdouble.m4,
16423         m4/longlong.m4, m4/printf-posix.m4, m4/signed.m4, m4/size_max.m4,
16424         m4/wchar_t.m4, m4/wint_t.m4, m4/xsize.m4.
16425
16426 2004-06-10  Jim Meyering  <jim@meyering.net>
16427
16428         * lib/calloc.c: New file.
16429
16430 2004-06-06  Paul Eggert  <eggert@cs.ucla.edu>
16431
16432         * lib/getdate.y (yylex): Allow space between sign and number.
16433         Problem reported by Dan Jacobson.
16434
16435 2004-06-01  Paul Eggert  <eggert@cs.ucla.edu>
16436
16437         Merge from coreutils CVS.
16438
16439         * m4/backupfile.m4, dirname.m4, human.m4, inttypes.m4, longlong.m4,
16440         makepath.m4, memchr.m4, memcmp.m4, mountlist.m4, path-concat.m4,
16441         putenv.m4, quotearg.m4, readutmp.m4, strtoimax.m4, strtoll.m4,
16442         strtoull.m4, strtoumax.m4, ulonglong.m4, vasnprintf.m4,
16443         xstrtol.m4: Fix copyright date and/or serial number.
16444
16445         * m4/chown.m4 (gl_PREREQ_CHOWN): Check for fcntl.h.
16446         See if we need an fchown replacement.
16447         (gl_FUNC_CHOWN_FOLLOWS_SYMLINK): New macro.
16448         (gl_FUNC_CHOWN): Require gl_FUNC_CHOWN_FOLLOWS_SYMLINK,
16449         and use the replacement function if we detect either defect.
16450
16451         * m4/prereq.m4 (gl_PREREQ): Add gl_ALLOCSA, gl_CLOEXEC, gl_INTTOSTR,
16452         gl_UTIMECMP.
16453
16454 2004-06-01  Paul Eggert  <eggert@cs.ucla.edu>
16455         and  Jim Meyering  <jim@meyering.net>
16456
16457         Merge from coreutils CVS.
16458
16459         * lib/stat-macros.h: New file, with contents from file-type.h
16460         and coreutils' system.h.
16461         * lib/file-type.c: Include "stat-macros.h".
16462         * lib/file-type.h (file_type): Move all macro definitions to new file,
16463         stat-macros.h.
16464
16465         * lib/chown.c (rpl_chown) [CHOWN_FAILS_TO_HONOR_ID_OF_NEGATIVE_ONE]:
16466         Wrap old code with this conditional.
16467         [CHOWN_MODIFIES_SYMLINK]: Try to work around a chown
16468         function that does not dereference symlinks.
16469         * lib/lchown.c (lchown) [CHOWN_MODIFIES_SYMLINK]: Just call chown.
16470
16471         * lib/xreadlink.c: Include xreadlink.h first, to catch .h file
16472         dependency problems.
16473         (xreadlink): Accept new arg SIZE, for efficiency.
16474         All decls and uses changed.
16475         * lib/xreadlink.h: Include <stddef.h>, for size_t.
16476
16477         * lib/.cppi-disable: Add alloca_.h, allocsa.h, exit.h, getndelim2.h,
16478         gettext.h, localcharset.h, strdup.h, strndup.h, strtoul.c, time_r.h.
16479
16480         * lib/.cvsignore: Add alloca.h, fnmatch.h, poll.h, stdbool.h,
16481         sysexits.h.
16482
16483 2004-06-01  Jim Meyering  <jim@meyering.net>
16484
16485         * m4/calloc.m4: New file.
16486
16487 2004-05-31  Paul Eggert  <eggert@cs.ucla.edu>
16488
16489         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Detect _Bool bug in HP aC++/ANSI
16490         C B3910B A.05.55 [Dec 04 2003].  Problem reported by Jim Meyering.
16491         Also, fix a typo in a diagnostic.
16492
16493 2004-05-30  Paul Eggert  <eggert@cs.ucla.edu>
16494
16495         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Do not require AC_FUNC_MALLOC
16496         or AC_FUNC_REALLOC.
16497
16498 2004-05-30  Paul Eggert  <eggert@cs.ucla.edu>
16499
16500         * lib/xmalloc.c (HAVE_MALLOC, HAVE_REALLOC): Do not require these
16501         macros to be defined.
16502         (xnmalloc_inline, xnrealloc_inline, xcalloc): Do not die if
16503         the allocator returns NULL because the requested size is zero.
16504
16505 2004-05-20  Paul Eggert  <eggert@cs.ucla.edu>
16506
16507         * lib/malloc/obstack.c (_obstack) [defined _LIBC]: Bring back this
16508         var.  Add comment explaining why libc still defines it.  This
16509         merges the following patch from glibc:
16510         http://sources.redhat.com/ml/libc-alpha/2004-05/msg00157.html
16511
16512 2004-05-20  Andreas Schwab  <schwab@suse.de>
16513
16514         * m4/free.m4: Replace free if it not known to work, not the other
16515         way round.
16516
16517 2004-05-19  Paul Eggert  <eggert@cs.ucla.edu>
16518
16519         * lib/obstack.c (_obstack): Remove unused variable.  It hasn't been
16520         present in glibc since revision 1.1 of this file.
16521         * lib/obstack.h (_obstack_free, obstack_1grow, obstack_1grow_fast,
16522         obstack_alignment_mask, obstack_alloc, obstack_base,
16523         obstack_blank, obstack_blank_fast, obstack_chunk_size,
16524         obstack_copy, obstack_copy0, obstack_finish, obstack_grow,
16525         obstack_grow0, obstack_init, obstack_int_grow,
16526         obstack_int_grow_fast, obstack_make_room, obstack_memory_used,
16527         obstack_next_free, obstack_object_size, obstack_ptr_grow,
16528         obstack_ptr_grow_fast, obstack_room): Remove declarations of
16529         nonexistent functions.
16530
16531 2004-05-18  Karl Berry  <karl@gnu.org>
16532
16533         * config/srclist.txt: break link for vasnprintf.c.
16534
16535 2004-05-17  Paul Eggert  <eggert@cs.ucla.edu>
16536
16537         Port obstack to the AS/400, where pointers are 16 bytes wide and
16538         you cannot cast an integer to a valid pointer.  This patch is
16539         currently waiting to be integrated into glibc; see
16540         <http://sources.redhat.com/ml/libc-alpha/2004-05/msg00073.html>.
16541
16542         * lib/obstack.h (__PTR_TO_INT, __INT_TO_PTR): Remove.
16543         All uses of __INT_TO_PTR (PTR_TO_INT ...) replaced by __PTR_ALIGN.
16544         (__BPTR_ALIGN, __PTR_ALIGN): New macros.
16545         (struct obstack): temp member is now a union of a pointer and
16546         an integer, instead of an integer.  All integer uses changed.
16547         This does not affect the physical layout of struct obstack,
16548         except on hosts (like the AS/400) where the size or alignment of
16549         void * is greater than that of ptrdiff_t.
16550         (obstack_finish) [! (defined __GNUC__ && defined __STDC__ &&
16551         __STDC__)]: Store temporary in pointer member of union, not
16552         integer member.
16553         * lib/obstack.c: Include <stddef.h>, for offsetof.
16554         (struct fooalign): Remove; it doesn't need a name.
16555         (union fooround): Change double to long double, and add void *.
16556         (DEFAULT_ALIGNMENT): Use offsetof to compute.
16557         (DEFAULT_ALIGNMENT, DEFAULT_ROUNDING): Now an enum constant,
16558         not a macro.  Hence the values are always int; so remove all
16559         casts-to-int in uses.
16560
16561 2004-05-17  Paul Eggert  <eggert@cs.ucla.edu>
16562
16563         * config/srclist.txt: Break link for argp-help.c and argp-parse.c until
16564         we can get this patch merged into glibc.
16565
16566 2004-05-17  Derek R. Price  <derek@ximbiot.com>
16567             Paul Eggert  <eggert@cs.ucla.edu>
16568
16569         * m4/argp: Depend on alloca.
16570
16571 2004-05-17  Derek R. Price  <derek@ximbiot.com>
16572             Paul Eggert  <eggert@cs.ucla.edu>
16573
16574         * lib/argp-help.c, argp-parse.c: Assume <alloca.h> rather than
16575         freecoding.
16576
16577 2004-05-17  Bruno Haible  <bruno@clisp.org>
16578
16579         * lib/vasnprintf.c (VASNPRINTF): Correctly handle the case of a
16580         precision that consists of a '.' followed by an empty digit string.
16581         Patch by Tor Lillqvist <tml@iki.fi>.
16582
16583 2004-05-16  Paul Eggert  <eggert@cs.ucla.edu>
16584
16585         * m4/alloca.m4 (gl_FUNC_ALLOCA): Define HAVE_ALLOCA_H always,
16586         for backward compatibility with older code.  We need our own
16587         alloca.h if _AIX is defined.  Define HAVE_ALLOCA if we discover
16588         it under some other name, and our alloca.h will define it.
16589
16590 2004-05-16  Paul Eggert  <eggert@cs.ucla.edu>
16591             Derek Price  <derek@ximbiot.com>
16592
16593         * lib/alloca.c: Include <alloca.h>, to get our interface.
16594         * lib/alloca_.h: Use __alloca on AIX, so that we don't have to
16595         include <alloca.h> first.  Use C89 prototype for alloca; this
16596         requires including <stddef.h> for size_t.  Use extern "C" if C++.
16597         Use #elif for simplicity, since we can assume C89 now.
16598         Don't try to source the system alloca.h since it will not be found
16599         and to prevent recursively including its replacement.
16600         * lib/fnmatch.c: Include <alloca.h> instead of opencoding.
16601         * lib/regex.c: Likewise.
16602
16603 2004-05-16  Derek Price  <derek@ximbiot.com>
16604             Paul Eggert  <eggert@cs.ucla.edu>
16605
16606         getline cleanup.  This changes the getndelim2 API: both order of
16607         arguments, and meaning of delim2 (now uses EOF, not 0, to indicate
16608         no delimiter).
16609
16610         * lib/getline.c: Don't include stddef.h or stdio.h, since our
16611         interface does that.
16612         (getline): Always use getdelim, so that we don't have two
16613         copies of this code.
16614         * lib/getndelim2.c: Include <limits.h>, <inttypes.h>, <stdint.h>
16615         if available.
16616         (PTRDIFF_MAX, SIZE_MAX, SSIZE_MAX): Define if not defined.
16617         (GETNDELIM2_MAXIMUM): New macro.
16618         (getndelim2): Reorder arguments.  delim==EOF now means no delimiter,
16619         instead of the old practice of delim2==0.  All callers changed.
16620         Return -1 on overflow, instead of returning junk.
16621         Do not set *linesize unless allocation succeeds.
16622         * lib/getndelim2.h: Do not include stddef.h; no longer needed, now
16623         that we include sys/types.h.
16624         * lib/getnline.h: Likewise.
16625         * lib/getndelim2.h (GETNLINE_NO_LIMIT): New macro.
16626         (getndelim2): Reorder arguments.
16627         * lib/getnline.c (getnline, getndelim):
16628         Don't discard the NMAX argument.
16629         (getnline): Invoke getndelim, to avoid code duplication.
16630         * lib/getnline.h (GETNLINE_NO_LIMIT): New macro, used instead
16631         of (size_t) -1 by callers of the getnline family.
16632
16633 2004-05-13  Paul Eggert  <eggert@cs.ucla.edu>
16634
16635         * m4/gettime.m4 (gl_GETTIME): Require gl_TIMESPEC.
16636         Check for gettimeofday.
16637         * m4/settime.m4 (gl_SETTIME): Require gl_TIMESPEC.
16638         Check for settimeofday, stime.
16639
16640 2004-05-13  Paul Eggert  <eggert@cs.ucla.edu>
16641
16642         * lib/nanosleep.c (suspended): Change its type from int to
16643         sig_atomic_t volatile.
16644         (first_call): Make it private to rpl_nanosleep, and have it
16645         be zero initially as that's a bit faster.
16646         (my_usleep): Round up fractional times instead of truncating them,
16647         as this is the usual meaning for 'sleep'.
16648
16649         * lib/gettime.c (gettime): Fall back on `time' if `gettimeofday'
16650         doesn't work.
16651         * lib/settime.c: Include <unistd.h>, for stime (on Solaris 8, anyway).
16652         (ENOSYS): Define if not defined.
16653         (settime): Fall back on stime if it exists and settimeofday fails.
16654         But don't bother with fallbacks if a method fails with errno == EPERM.
16655
16656 2004-05-11  Jim Meyering  <jim@meyering.net>
16657
16658         Prior to this change, the save_cwd caller required read access to the
16659         current directory on most systems (ones with the fchdir function).
16660
16661         * lib/save-cwd.c (save_cwd) [HAVE_FCHDIR]: If opening `.' read-only
16662         fails, try write-only, and finally, resort to using xgetcwd.
16663
16664 2004-05-06  Paul Eggert  <eggert@cs.ucla.edu>
16665
16666         * lib/obstack.c, obstack.h: Import changes from libc.
16667
16668 2004-04-28  Bruno Haible  <bruno@clisp.org>
16669
16670         * lib/findprog.c (find_in_path): Treat Cygwin like Windows, since it
16671         also implicitly appends .exe to executables.
16672         * lib/localcharset.c (ISSLASH): Treat Cygwin like Windows, since it now
16673         accepts Windows pathnames.
16674         * lib/pathname.h (ISSLASH, IS_PATH_WITH_DIR, FILESYSTEM_PREFIX_LEN):
16675         Treat Cygwin like Windows, since it now accepts Windows pathnames.
16676         * lib/progreloc.c (ISSLASH, IS_PATH_WITH_DIR, FILESYSTEM_PREFIX_LEN):
16677         Treat Cygwin like Windows, since it now accepts Windows pathnames.
16678         Reported by Derek Robert Price <derek@ximbiot.com>.
16679
16680 2004-04-21  Karl Berry  <karl@gnu.org>
16681
16682         * config/srclist.txt (localcharset.c): break sync.
16683
16684 2004-04-20  Paul Eggert  <eggert@twinsun.com>
16685
16686         * m4/host-os.m4: Add a copyright notice.
16687
16688 2004-04-20  Jim Meyering  <jim@meyering.net>
16689
16690         Change UTILS_ to gl_ in AC_DEFINE'd names.
16691         Change utils_- and jm_-prefixed variables, too.
16692         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Renamed from
16693         UTILS_FUNC_MKDIR_TRAILING_SLASH.
16694         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Renamed from UTILS_FUNC_MKSTEP.
16695
16696         * m4/dirfd.m4 (gl_FUNC_DIRFD): Rename from UTILS_FUNC_DIRFD.
16697         Don't emit trailing blanks.
16698         Also rename jm_-prefixed variables to have gl_ prefix.
16699
16700         * m4/host-os.m4 (gl_HOST_OS): Rename from UTILS_HOST_OS.
16701         Also rename jm_-prefixed variables to have gl_ prefix.
16702
16703         * m4/jm-macros.m4: Reflect the renamings.
16704         * m4/prereq.m4: Likewise.
16705
16706 2004-04-20  Jim Meyering  <jim@meyering.net>
16707
16708         * lib/getndelim2.c (getndelim2): Upon realloc failure, don't leak
16709         memory.
16710
16711 2004-04-20  Jim Meyering  <jim@meyering.net>
16712             Bruno Haible  <bruno@clisp.org>
16713
16714         * lib/localcharset.c (get_charset_aliases) [!VMS && !WIN32]: Don't leak
16715         memory when realloc fails.
16716
16717 2004-04-19  Jim Meyering  <jim@meyering.net>
16718
16719         * m4/readutmp.m4 (gl_PREREQ_READUTMP): Require gl_FUNC_FREE,
16720         now that readutmp.c may call `free (0)'.
16721
16722 2004-04-19  Bruno Haible  <bruno@clisp.org>
16723
16724         * m4/mbrtowc.m4: Change jm_ to gl_ in cache variables as well.
16725         * m4/inttypes_h.m4: Likewise.
16726         * m4/stdint_h.m4: Likewise.
16727         * m4/intmax_t.m4: Likewise.
16728         * m4/uintmax_t.m4: Likewise.
16729
16730 2004-04-18  Jim Meyering  <jim@meyering.net>
16731
16732         * m4/prereq.m4: Don't forbid jm_ prefix.
16733
16734         * m4/afs.m4, m4/allocsa.m4, m4/assert.m4, m4/backupfile.m4:
16735         * m4/bison.m4, m4/check-decl.m4, m4/chown.m4, m4/d-ino.m4:
16736         * m4/d-type.m4, m4/dirname.m4, m4/dos.m4, m4/error.m4, m4/fpending.m4:
16737         * m4/fstypename.m4, m4/fsusage.m4, m4/ftruncate.m4, m4/getdate.m4:
16738         * m4/getgroups.m4, m4/gettext.m4, m4/glibc21.m4, m4/group-member.m4:
16739         * m4/human.m4, m4/intmax.m4, m4/intmax_t.m4, m4/inttostr.m4:
16740         * m4/inttypes.m4, m4/inttypes_h.m4, m4/jm-macros.m4, m4/jm-winsz1.m4:
16741         * m4/jm-winsz2.m4, m4/lchown.m4, m4/lib-check.m4, m4/link-follow.m4:
16742         * m4/localcharset.m4, m4/longlong.m4, m4/ls-mntd-fs.m4, m4/lstat.m4:
16743         * m4/makepath.m4, m4/mbrtowc.m4, m4/mbswidth.m4, m4/memchr.m4:
16744         * m4/memcmp.m4, m4/mkdtemp.m4, m4/mkstemp.m4, m4/mountlist.m4:
16745         * m4/nanosleep.m4, m4/path-concat.m4, m4/perl.m4, m4/prereq.m4:
16746         * m4/putenv.m4, m4/quotearg.m4, m4/regex.m4, m4/stat.m4:
16747         * m4/stdint_h.m4, m4/strftime.m4, m4/strtoimax.m4, m4/strtoll.m4:
16748         * m4/strtoull.m4, m4/strtoumax.m4, m4/timespec.m4, m4/uintmax_t.m4:
16749         * m4/ulonglong.m4, m4/unlink-busy.m4, m4/unlocked-io.m4, m4/uptime.m4,
16750         * m4/utimbuf.m4, m4/utime.m4, m4/utimes-null.m4, m4/vasnprintf.m4:
16751         * m4/xstrtoimax.m4, m4/xstrtol.m4, m4/xstrtoumax.m4:
16752         Change jm_ to gl_ in AC_DEFINE'd names. Update all uses.
16753
16754 2004-04-18  Jim Meyering  <jim@meyering.net>
16755
16756         * lib/readutmp.c (read_utmp) [UTMP_NAME_FUNCTION]: Upon realloc
16757         failure, don't leak memory and do call END_UTMP_ENT.
16758
16759 2004-04-16  Jim Meyering  <jim@meyering.net>
16760
16761         * m4/prereq.m4 (jm_PREREQ_STAT): Remove macro.  It is specific to
16762         coreutils' stat program.
16763         (gl_PREREQ): Don't require jm_PREREQ_STAT.
16764
16765 2004-04-11  Paul Eggert  <eggert@twinsun.com>
16766
16767         * lib/inttostr.h: Include <limits.h> unconditionally, since we assume
16768         C89.
16769         (CHAR_BIT): Remove, since we assume C89.
16770         Include <stdint.h> if available, as per current Autoconf CVS advice.
16771
16772 2004-03-31  Jim Meyering  <jim@meyering.net>
16773
16774         * m4/prereq.m4: Require AC_FUNC_MALLOC, not jm_FUNC_MALLOC.
16775         Require AC_FUNC_REALLOC, not jm_FUNC_REALLOC.
16776         * m4/xalloc.m4: Likewise.
16777
16778 2004-03-30  Paul Eggert  <eggert@twinsun.com>
16779
16780         Merge from coreutils.
16781
16782         * m4/inttostr.m4: New file.
16783         * m4/getdate.m4 (gl_GETDATE): Remove time-related stuff.
16784         Require AM_STDBOOL_H and gl_TIMESPEC instead.
16785         Require gl_CLOCK_TIME.
16786         * m4/clock_time.m4 (gl_CLOCK_TIME): Require AC_GNU_SOURCE.
16787
16788 2004-03-30  Paul Eggert  <eggert@twinsun.com>
16789
16790         * lib/cloexec.h, cloexec.c (set_cloexec_flag): Return int
16791         not bool, to be more consistent with Unix conventions.
16792         Suggested by Bruno Haible.
16793
16794         Merge from coreutils.
16795
16796         * lib/imaxtostr.c, lib/inttostr.c, lib/inttostr.h, lib/offtostr.c:
16797         * lib/umaxtostr.c: New files.
16798
16799         * lib/getdate.h: Include stdbool.h, and timespec.h instead of
16800         the usual <time.h> dance.
16801         (get_date): Change signature to support fractional time stamps.
16802         All callers changed.
16803         * lib/getdate.y: Include "getdate.h" first, as we can now
16804         assume C89 and don't need to worry about 'const'.
16805         Similarly, include "unlocked-io.h" near start, not in middle.
16806         Include <limits.h>.
16807         (textint.value): Use long int rather than int.
16808         (textint.digits): Use size_t rather than int.
16809         (BILLION, LOG10_BILLION): New constants.
16810         (parser_control): New member rel_ns.  Members day_ordinal,
16811         time_zone, month, day, hour, minutes, rel_year, rel_month,
16812         rel_day, rel_hour, rel_minutes, rel_seconds
16813         are now long int, not int.  Member seconds is now struct timespec,
16814         not int.  New member timespec_seen.  Members dates_seen, days_seen,
16815         local_zones_seen, rels_seen, times_seen, zones_seen are now size_t,
16816         not int.
16817         (%union.intval): Now long int, not int.
16818         New member timespec.
16819         (tSDECIMAL_NUMBER, tUDECIMAL_NUMBER): New tokens.
16820         (seconds, signed_seconds, unsigned_seconds): New nonterminals.
16821         (spec): Now is a timespec or an item list.
16822         (timespec, items): New nonterminals.
16823         (time, rel, relunit, number, get_date):
16824         Add support for fractional seconds.
16825         (time): Fix bug: seconds weren't cleared in "00:00 +0000" syntax.
16826         (gmtime, localtime, mktime): Remove decls; not needed with C89.
16827         (to_hour): First arg is now long int, not int.
16828         (to_year): Returns long int, not int.
16829         Don't treat year -70 like 70.
16830         (tm_diff): Returns long int, not int.
16831         (lookup_word): Use bool instead of int when appropriate.
16832         (yylex): Use size_t for count, not int.
16833         Detect overflow when parsing large integer constants.
16834         Add support for fractions.
16835         (get_date): Make pointers 'const' if possible.
16836         Use more-portable code to detect integer overflow.
16837         (main) [TEST]: Adjust to above changes.  Test for localtime failure.
16838         Don't use ctime; it's not reliable if the year has >4 digits.
16839
16840         * lib/human.c (humblock): Inspect BLOCKSIZE if BLOCK_SIZE isn't set.
16841         This is for compatibility with BSD.
16842
16843         * lib/timespec.h (ST_TIME_CMP_NS, ST_TIME_CMP): Define.
16844         (ATIME_CMP, CTIME_CMP, MTIME_CMP, TIMESPEC_NS): Likewise.
16845         From coreutils' system.h.
16846
16847         * lib/userspec.c: Don't include "posixver.h".
16848         (parse_user_spec): Fall back on USER.GROUP parsing, regardless
16849         of POSIX version, as POSIX 1003.1-2001 allows that behavior as a
16850         compatible extension.  Simplify code by removing a boolean int
16851         that was always nonzero if a string was nonnull.
16852
16853 2004-03-30  Jim Meyering  <jim@meyering.net>
16854
16855         Merge from coreutils.
16856
16857         Avoid a configure-time warning about sys/ucred.h on OSF V4.0.
16858         * m4/ls-mntd-fs.m4: Test for sys/ucred.h separately, since
16859         on some systems one must include <grp.h> before it.
16860         Reported by Christian Krackowizer.
16861
16862 2004-03-30  Jim Meyering  <jim@meyering.net>
16863
16864         Merge from coreutils.
16865
16866         * lib/mountlist.c [HAVE_SYS_UCRED_H]: Include grp.h before sys/ucred.h.
16867
16868         * lib/readtokens.c (readtoken): Don't leak 64 bytes when reading
16869         an empty input stream.
16870
16871         * lib/readtokens.c: Include <stdbool.h>.
16872         (readtoken): Use `size_t' rather than int/long.
16873         All callers adjusted.
16874         Use `bool' rather than `int' where appropriate.
16875         Use memset rather than an explicit loop.
16876         Use x2nrealloc rather than xrealloc.
16877         Allow the use of `\0' as a delimiter.
16878         (readtokens): Likewise.
16879         * lib/readtokens.h (readtoken, readtokens): Update prototypes.
16880
16881 2004-03-30  Jim Meyering  <jim@meyering.net>
16882
16883         * m4/realloc.m4: Remove file, since now it does no more than
16884         AC_REQUIRE([AC_FUNC_REALLOC]), and that can be done via
16885         the `configure.ac' section of module/realloc.
16886         * m4/malloc.m4: Likewise, but for AC_FUNC_MALLOC.
16887
16888 2004-03-30  Bruno Haible  <bruno@clisp.org>
16889
16890         * lib/getloadavg.c (getloadavg): Don't assume setlocale returns
16891         nonnull.
16892
16893 2004-03-29  Paul Eggert  <eggert@twinsun.com>
16894
16895         Merge changes to getloadavg.c from coreutils and Emacs.
16896
16897         * lib/getloadavg.c [!defined HAVE_SETLOCALE] (setlocale):
16898         Define to an expression, not to the empty string.
16899         Include cloexec.h and xalloc.h.
16900         (getloadavg): Restore LC_NUMERIC locale after setting it temporarily.
16901         Use set_cloexec_flag rather than rolling our own.
16902         * lib/cloexec.c, lib/cloexec.h: New files.
16903
16904 2004-03-29  Paul Eggert  <eggert@twinsun.com>
16905
16906         * m4/cloexec.m4: New file.
16907
16908 2004-03-18  Paul Eggert  <eggert@twinsun.com>
16909
16910         * lib/getopt.h: Sync with libc CVS.
16911
16912 2004-03-18  Paul Eggert  <eggert@twinsun.com>
16913             Bruno Haible  <bruno@clisp.org>
16914
16915         * m4/mbswidth.m4 (gl_MBSWIDTH): Also test whether <wchar.h> declares
16916         mbswidth.
16917
16918 2004-03-18  Paul Eggert  <eggert@twinsun.com>
16919             Bruno Haible  <bruno@clisp.org>
16920
16921         * lib/mbswidth.h: Include <wchar.h> only if
16922         HAVE_DECL_MBSWIDTH_IN_WCHAR_H, not on all platforms that have
16923         <wchar.h>.
16924         * lib/mbswidth.c: Include <stdio.h> and <time.h> before <wchar.h>.
16925
16926 2004-03-09  Paul Eggert  <eggert@twinsun.com>
16927
16928         * lib/argp-parse.c, getopt.c, getopt.h, getopt1.c:
16929         Sync with libc CVS.
16930         * lib/getopt_int.h: New file, also synced from libc.
16931
16932 2004-03-09  Paul Eggert  <eggert@twinsun.com>
16933
16934         * config/srclistvars.sh: Add GNUWWWLICENSES for eggert.
16935         * config/srclist.txt: Sync getopt with libc.  Add getopt_int.h.
16936         Bring back getopt.c, getopt.h, getopt1.c.
16937
16938 2004-03-07  Paul Eggert  <eggert@twinsun.com>
16939
16940         * m4/c-stack.m4 (gl_PREREQ_C_STACK): Renamed from jm_PREREQ_C_STACK.
16941         All uses changed.  Check for sa_sigaction member; this fixes
16942         a bug first reported by Jason Andrade in
16943         <http://mail.gnu.org/archive/html/bug-textutils/2003-03/msg00027.html>.
16944
16945 2004-03-07  Paul Eggert  <eggert@twinsun.com>
16946
16947         * lib/c-stack.c (SIGACTION_WORKS): New macro.  Use it instead of long
16948         '#if' expressions.  Unlike the code it replaces, it does not
16949         depend on (defined _SC_PAGESIZE).  However, it does depend on
16950         HAVE_STRUCT_SIGACTION_SA_SIGACTION; this last change fixes a bug
16951         first reported by Jason Andrade in
16952         <http://mail.gnu.org/archive/html/bug-textutils/2003-03/msg00027.html>.
16953
16954 2004-02-25  Simon Josefsson  <jas@extundo.com>
16955
16956         * m4/strdup.m4 (gl_PREREQ_STRDUP): Check whether strdup is declared.
16957
16958 2004-02-25  Simon Josefsson  <jas@extundo.com>
16959
16960         * lib/strdup.h: New file.
16961         * lib/strdup.c: Include it.
16962         * lib/path-concat.c: Include strdup.h. Drop strdup declaration.
16963         * lib/userspec.c: Include strdup.h. Drop strdup declaration.
16964
16965 2004-02-23  Karl Berry  <karl@gnu.org>
16966
16967         * doc/maintain.texi, doc/standards.texi, doc/make-stds.texi: new files
16968         (from fencepost.gnu.org:/gd/gnuorg).
16969
16970 2004-02-23  Karl Berry  <karl@gnu.org>
16971
16972         * config/srclistvars.sh (GNUORG) [karl]: redefine.
16973         * config/srclist.txt: add maintain/standards documents.
16974
16975 2004-02-18  Bruno Haible  <bruno@clisp.org>
16976
16977         * m4/xsize.m4 (gl_XSIZE): Require AC_C_INLINE.
16978         Reported by Derek Robert Price <derek@ximbiot.com>.
16979
16980 2004-02-16  Karl Berry  <karl@gnu.org>
16981
16982         * config/mkinstalldirs, install-sh: update from automake.
16983
16984 2004-02-06  Karl Berry  <karl@gnu.org>
16985
16986         * m4/po.m4: update from gettext 0.14.1.
16987
16988 2004-02-06  Karl Berry  <karl@gnu.org>
16989
16990         * lib/config.charset: update from gettext 0.14.1.
16991
16992 2004-02-05  Paul Eggert  <eggert@twinsun.com>
16993
16994         Add comments and code, prompted by suggestions from Bruno Haible
16995         for sh-quote.
16996         * lib/quotearg.h (quotearg_alloc): New decl.  Improve the comments
16997         describing the enum quoting_style values.
16998         * lib/quotearg.c (quotearg_alloc): New function.
16999         (quotearg_buffer_restyled): Treat lone { and } as special.
17000         Treat = as special.  Work around bug with older shells
17001         that "see" a '\' that is really the 2nd byte of a multibyte char.
17002         Quote empty string with shell_quoting_style.
17003
17004 2004-02-03  Bruno Haible  <bruno@clisp.org>
17005
17006         * m4/pipe.m4: New file, from GNU gettext.
17007
17008 2004-02-03  Bruno Haible  <bruno@clisp.org>
17009
17010         * lib/pipe.h: New file, from GNU gettext.
17011         * lib/pipe.c: New file, from GNU gettext.
17012
17013 2004-01-27  Bruno Haible  <bruno@clisp.org>
17014
17015         * m4/execute.m4: New file, from GNU gettext.
17016
17017 2004-01-27  Bruno Haible  <bruno@clisp.org>
17018
17019         * lib/execute.h: New file, from GNU gettext.
17020         * lib/execute.c: New file, from GNU gettext.
17021         * lib/w32spawn.h: New file, from GNU gettext.
17022
17023 2004-01-24  Paul Eggert  <eggert@twinsun.com>
17024
17025         Merge from diffutils.
17026
17027         * lib/file-type.c (file_type): Add typed memory objects.
17028         * lib/file-type.h (S_TYPEISTMO): New macro.
17029
17030         * lib/c-stack.h (c_stack_action): Remove argv argument.
17031         * lib/c-stack.c (c_stack_action): Likewise.  All uses changed.
17032         (die): Don't calculate message unless segv_action returns.
17033         (get_stack_location, min_address_from_argv, max_address_from_argv,
17034         volatile stack_base, volatile_stack_size): Remove.
17035         (segv_handler): If ! HAVE_XSI_STACK_OVERFLOW_HEURISTIC, assume
17036         that every segmentation violation is a stack overflow.  (Ouch!)
17037         See Debian bug 136249 (still outstanding) for more info about why
17038         HAVE_XSI_STACK_OVERFLOW_HEURISTIC fails on Linux kernels.
17039
17040 2004-01-24  Paul Eggert  <eggert@twinsun.com>
17041
17042         Exit-status fix from coreutils.
17043
17044         Use exit_failure consistently in place of EXIT_FAILURE,
17045         so that program exit statuses are consistent on failure.
17046
17047         * lib/argmatch.c (ARGMATCH_DIE) [! defined ARGMATCH_DIE]:
17048         Include "exitfail.h", and use exit_failure rather than EXIT_FAILURE.
17049         * lib/argmatch.h: Comment fix to match the above.
17050         * lib/obstack.c (obstack_exit_failure) [!defined _LIBC]:
17051         Now a macro referring to exit_failure, instead of a separate
17052         variable.  Include "exitfail.h" to get it.
17053         * lib/xstrtol.h: Include "exitfail.h".
17054         (STRTOL_FATAL_ERROR): Exit with status exit_failure, not 2.
17055
17056         * lib/long-options.c (parse_long_options): Use prototype
17057         for usage function arg.  Pass it EXIT_SUCCESS rather than 0,
17058         for clarity.
17059
17060 2004-01-21  Jim Meyering  <jim@meyering.net>
17061
17062         * lib/mktime.c (__mktime_internal) [!_LIBC]: Define to mktime_internal
17063         so as not to conflict with a different-sized __mktime_internal
17064         function in GNU libc.
17065         * lib/timegm.c (__mktime_internal) [!_LIBC]: Likewise.
17066         Problem building statically-linked `ls' reported by Michael Brunnbauer.
17067
17068 2004-01-20  Karl Berry  <karl@gnu.org>
17069
17070         * config/config.guess: update from config.
17071
17072         * config/srclistvars.sh: GNUWWWLICENSES for karl.
17073
17074 2004-01-20  Bruno Haible  <bruno@clisp.org>
17075
17076         Safer stack allocation.
17077         * lib/setenv.c: Include allocsa.h.
17078         (alloca): Remove fallback definition.
17079         (freea): Remove macro.
17080         (__add_to_environ) [!_LIBC]: Use allocsa instead of alloca. Use freesa
17081         instead of freea.
17082
17083 2004-01-20  Bruno Haible  <bruno@clisp.org>
17084
17085         * m4/eealloc.m4: New file, from GNU gettext.
17086
17087 2004-01-20  Bruno Haible  <bruno@clisp.org>
17088
17089         * m4/allocsa.m4: New file, from GNU gettext.
17090
17091 2004-01-20  Bruno Haible  <bruno@clisp.org>
17092
17093         * lib/xallocsa.h: New file, from GNU gettext.
17094         * lib/xallocsa.c: New file, from GNU gettext.
17095
17096 2004-01-20  Bruno Haible  <bruno@clisp.org>
17097
17098         * lib/wait-process.c: On Windows, include windows.h. Needed on mingw.
17099
17100 2004-01-20  Bruno Haible  <bruno@clisp.org>
17101
17102         * lib/wait-process.c (wait_subprocess): Add ignore_sigpipe argument.
17103         * lib/wait-process.c (wait_subprocess): Likewise. Handle SIGPIPE
17104         specially.
17105
17106 2004-01-20  Bruno Haible  <bruno@clisp.org>
17107
17108         * lib/wait-process.c (wait_process): Disable the 2003-10-31 waitid()
17109         patch.
17110
17111 2004-01-20  Bruno Haible  <bruno@clisp.org>
17112
17113         * lib/wait-process.c (cleanup_slaves): Use ANSI C declaration.
17114
17115 2004-01-20  Bruno Haible  <bruno@clisp.org>
17116
17117         * lib/eealloc.h: New file.
17118
17119 2004-01-20  Bruno Haible  <bruno@clisp.org>
17120
17121         * lib/binary-io.h: Avoid warnings on Cygwin.
17122
17123 2004-01-20  Bruno Haible  <bruno@clisp.org>
17124
17125         * lib/allocsa.h: New file, from GNU gettext.
17126         * lib/allocsa.c: New file, from GNU gettext.
17127
17128 2004-01-18  Karl Berry  <karl@gnu.org>
17129
17130         * doc/gpl.texi, doc/lgpl.texi: new files.
17131
17132 2004-01-18  Karl Berry  <karl@gnu.org>
17133
17134         * config/srclistvars.sh (GNUWWWLICENSES): new variable.
17135         * config/srclist.txt ({fdl,gpl,lgpl}.text): get from there.
17136
17137 2004-01-15  Paul Eggert  <eggert@twinsun.com>
17138
17139         Merge from coreutils.
17140
17141         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Check for uintptr_t.
17142         * m4/posixver.m4 (gl_POSIXVER): Require gl_DEFAULT_POSIX2_VERSION.
17143         (gl_DEFAULT_POSIX2_VERSION): Move
17144         the documentation from 'configure' into 'config.hin',
17145         so that 'configure --help' isn't burdened by it and
17146         we don't have to worry about its formatting there.
17147         Reword the documentation so that it's more succinct
17148         and can be run together into a single paragraph.
17149         * m4/same.m4 (gl_SAME): Check for pathconf.
17150
17151 2004-01-15  Paul Eggert  <eggert@twinsun.com>
17152
17153         Merge from coreutils.
17154
17155         * lib/posixver.c: Include posixver.h.
17156
17157         * lib/same.c: Include <stdbool.h>, <limits.h>.
17158         (_POSIX_NAME_MAX): Define if not defined.
17159         (MIN): New macro.
17160         (same_name): If file names are silently truncated, report
17161         that the file names are the same if they are the same after
17162         the silent truncation.
17163
17164         * lib/xstrtod.h (xstrtod): Accept an extra arg, specifying the
17165         conversion function.
17166         * lib/xstrtod.c (xstrtod): Likewise.  All callers changed to
17167         include c-strtod.h and use c_strtod.  Don't include stdlib.h; no
17168         longer needed.
17169
17170 2004-01-15  Jim Meyering  <jim@meyering.net>
17171
17172         Merge from coreutils.
17173
17174         * m4/clock_time.m4 (gl_CLOCK_TIME): Don't set LIB_CLOCK_GETTIME
17175         if no library is required.
17176         * m4/jm-macros.m4: Don't require UTILS_SYS_OPEN_MAX.
17177         * m4/jm-macros.m4 (jm_MACROS): Require gl_FUNC_FREE.
17178         * m4/jm-macros.m4 (jm_MACROS): Require autoconf-2.58.
17179         (AC_LANG_SOURCE): Remove definition, now that we require autoconf-2.58.
17180         * m4/jm-macros.m4 (jm_MACROS): Don't require AC_FUNC_FTW.
17181         * m4/lib-check.m4 (jm_LIB_CHECK): Do not set LIB_CRYPT to the
17182         value, $ac_cv_search_crypt, if it's "none required".
17183         * m4/posixver.m4 (gl_DEFAULT_POSIX2_VERSION): New macro.
17184         * m4/prereq.m4 (jm_PREREQ): Require AC_FUNC_GETLOADAVG,
17185         not gl_FUNC_GETLOADAVG.
17186         * m4/prereq.m4 (jm_PREREQ): Require gl_READTOKENS, gl_MD5, gl_MAKEPATH,
17187         gl_LONG_OPTIONS, and gl_IDCACHE, gl_GETUGROUPS.
17188
17189 2004-01-15  Jim Meyering  <jim@meyering.net>
17190
17191         Merge from coreutils.
17192
17193         * lib/md5.h (rol) [__GNUC__ && __i386__]: Don't use `asm' code.  These
17194         days, gcc-3.x does better all by itself.  Patch from Dean Gaudet:
17195         http://mail.gnu.org/archive/html/bug-coreutils/2003-11/msg00144.html
17196
17197         * lib/posixver.c (DEFAULT_POSIX2_VERSION): Use definition of new,
17198         optional configure-time default.
17199
17200         * lib/version-etc.c (version_etc_copyright): Update copyright date.
17201
17202         * lib/xreadlink.c (xreadlink): Correct outdated comment.
17203
17204 2004-01-15  Alexandre Duret-Lutz  <adl@gnu.org>
17205
17206         Merge from coreutils.
17207
17208         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Do not set LIB_NANOSLEEP to the
17209         value, $ac_cv_search_nanosleep, if it's "none required".
17210
17211 2004-01-14  Paul Eggert  <eggert@twinsun.com>
17212
17213         * lib/fnmatch_loop.c (ALLOCA_LIMIT): Remove macro, which collided
17214         with like-named macro in fnmatch.c.
17215         (EXT): Use an internal constant instead.
17216
17217         Merge fnmatch patches from glibc.
17218         * lib/fnmatch.c (mbsinit): Remove define.
17219         Add libc_hidden_ver (__fnmatch, fnmatch).
17220         * lib/fnmatch_loop.c (FCT): Cast to int32_t and UCHAR when appropriate.
17221         Adjust to renaming of collseq_table_lookup to __collseq_table_lookup.
17222
17223 2004-01-14  Karl Berry  <karl@gnu.org>
17224
17225         * config/install-sh: update from automake.
17226
17227 2004-01-13  Karl Berry  <karl@gnu.org>
17228
17229         * config/install-sh: update from automake.
17230
17231 2004-01-09  Karl Berry  <karl@gnu.org>
17232
17233         * config/install-sh: update from automake.
17234
17235 2004-01-05  Karl Berry  <karl@gnu.org>
17236
17237         * config/config.{sub,guess}: update from config.
17238
17239 2003-12-31  Karl Berry  <karl@gnu.org>
17240
17241         * config/depcomp: update from automake.
17242
17243 2003-12-14  Karl Berry  <karl@gnu.org>
17244
17245         * lib/config.charset: update from gettext-runtime.
17246
17247 2003-12-03  Paul Eggert  <eggert@twinsun.com>
17248
17249         * lib/getgroups.c (getgroups): xmalloc takes one argument, not two.
17250         Bug reported by Alfred M. Szmidt.
17251
17252 2003-12-03  Bruno Haible  <bruno@clisp.org>
17253
17254         * m4/gettext.m4: Upgrade from gettext-0.13.
17255         * m4/po.m4: Upgrade from gettext-0.13.
17256         * m4/size_max.m4 (gl_SIZE_MAX): Don't use the _ONCE macros here.
17257         * m4/intmax.m4: New file, from gettext-0.13.
17258         * m4/printf-posix.m4: New file, from gettext-0.13.
17259
17260 2003-11-29  Karl Berry  <karl@gnu.org>
17261
17262         * lib/argp-{help.c,parse.c,namefrob.h}, argp.h: update from libc.
17263
17264 2003-11-25  Paul Eggert  <eggert@twinsun.com>
17265             Bruno Haible  <bruno@clisp.org>
17266
17267         * lib/printf-parse.h: Don't include sys/types.h.
17268         (ARG_NONE): New macro.
17269         (char_directive): Change type of *arg_index fields to size_t.
17270         * lib/printf-parse.c: Don't include sys/types.h.
17271         (SSIZE_MAX): Remove macro.
17272         (PRINTF_PARSE): Change the type of the arg_index variables to size_t.
17273         Remove unnecessary overflow check.
17274         * lib/vasnprintf.c (VASNPRINTF): Update for type change of *arg_index
17275         fields.
17276
17277 2003-11-25  Bruno Haible  <bruno@clisp.org>
17278
17279         * modules/vasnprintf (Files): Remove m4/ssize_t.m4.
17280
17281 2003-11-25  Bruno Haible  <bruno@clisp.org>
17282
17283         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_PARSE): Don't require
17284         gt_TYPE_SSIZE_T.
17285
17286 2003-11-24  Paul Eggert  <eggert@twinsun.com>
17287
17288         * modules/alloca: Remove dependency on xalloc.
17289
17290 2003-11-24  Paul Eggert  <eggert@twinsun.com>
17291
17292         * lib/alloca.c: Remove dependency on xalloc module.
17293         (xalloc_die): Remove.
17294         (memory_full) [!defined emacs]: New macro.
17295         [!defined emacs]: Don't include xalloc.h.
17296         (alloca): Invoke memory_full, not xalloc_die, if malloc fails or
17297         address arithmetic overflows.  Change datatypes a bit to avoid
17298         unnecessary casts.
17299
17300 2003-11-22  Jim Meyering  <jim@meyering.net>
17301
17302         * lib/xmalloc.c (x2nrealloc_inline): Fix typos in comments:
17303         s/size/size_t/.
17304
17305 2003-11-21  Karl Berry  <karl@gnu.org>
17306
17307         * config/config.{sub,guess}: update from config.
17308
17309 2003-11-18  Karl Berry  <karl@gnu.org>
17310
17311         * config/config.{sub,guess}: update from config.
17312
17313         * config/(printf-{parse,args}.[ch]): sync broken, sigh.
17314
17315 2003-11-17  Paul Eggert  <eggert@twinsun.com>
17316
17317         * README: Mention that S+T cannot overflow if S is the size of
17318         an existing object and T is sufficiently small.
17319
17320 2003-11-17  Jim Meyering  <jim@meyering.net>
17321
17322         On systems without utime and without a utimes function capable of
17323         dealing with a NULL struct utimbuf* argument, this utime replacement
17324         could -- in unusual circumstances -- leak a file descriptor.
17325         * lib/utime.c: Include <unistd.h> and <errno.h>.
17326         (utime_null): Be sure to close `fd' and to preserve errno.
17327         Reported by Geoff Collyer via Arnold Robbins.
17328
17329 2003-11-17  Bruno Haible  <bruno@clisp.org>
17330
17331         * modules/vasnprintf (Files): Add m4/ssize_t.m4.
17332         (Depends-on): Add xsize.
17333
17334 2003-11-17  Bruno Haible  <bruno@clisp.org>
17335
17336         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_PARSE): Require gt_TYPE_SSIZE_T.
17337
17338 2003-11-17  Bruno Haible  <bruno@clisp.org>
17339
17340         * lib/vasnprintf.c (alloca): Remove fallback definition.
17341         (freea): Remove definition.
17342         (VASNPRINTF): Use alloca only for small sizes, say <= 4000 bytes.
17343         Reported by Paul Eggert.
17344
17345 2003-11-16  Paul Eggert  <eggert@twinsun.com>
17346             Bruno Haible  <bruno@clisp.org>
17347
17348         Protect against address arithmetic overflow.
17349         * lib/printf-args.h: Include stddef.h.
17350         (arguments): Change type of field 'count' to size_t.
17351         * lib/printf-args.c (printf_fetchargs): Use size_t instead of
17352         'unsigned int' where appropriate.
17353         * lib/printf-parse.h: Include sys/types.h.
17354         (char_directive): Change type of *arg_index fields to ssize_t.
17355         (char_directives): Change type of fields 'count', max_*_length to
17356         size_t.
17357         * lib/printf-parse.c: Include sys/types.h and xsize.h.
17358         (SSIZE_MAX): Define fallback value.
17359         (PRINTF_PARSE): Use size_t instead of 'unsigned int' and ssize_t
17360         instead of 'int' where appropriate. Check a_allocated, d_allocated
17361         against overflow. Reject %m$ argument numbers > SSIZE_MAX + 1.
17362         * lib/vasnprintf.c: Include xsize.h.
17363         (VASNPRINTF): Use size_t instead of 'unsigned int' where appropriate.
17364         Check alloca, malloc, realloc, ENSURE_ALLOCATION arguments against
17365         overflow. Avoid wraparound when converting a width or precision from
17366         decimal to binary.
17367
17368 2003-11-16  Bruno Haible  <bruno@clisp.org>
17369
17370         Update from GNU gettext.
17371         * lib/printf-parse.c: Generalize to it can be compiled for wide
17372         strings.
17373         (PRINTF_PARSE, CHAR_T, DIRECTIVE, DIRECTIVES): New macros.
17374         * lib/vasnprintf.c: Generalize to it can be compiled for wide strings.
17375         (VASNPRINTF, CHAR_T, DIRECTIVE, DIRECTIVES, PRINTF_PARSE, USE_SNPRINTF,
17376         SNPRINTF): New macros.
17377         Don't include <alloca.h> if the file is used inside libintl.
17378         (local_wcslen): New function, for Solaris 2.5.1.
17379         (VASNPRINTF): Use it instead of wcslen.
17380
17381 2003-11-16  Bruno Haible  <bruno@clisp.org>
17382
17383         * lib/xsize.h (xmax): New function.
17384         (xsum, xsum3, xsum4): Declare as "pure" functions.
17385
17386 2003-11-12  Paul Eggert  <eggert@twinsun.com>
17387
17388         * modules/xalloc (Files): Undo latest change, since xalloc.h
17389         no longer needs SIZE_MAX or PTRDIFF_MAX.
17390
17391 2003-11-12  Paul Eggert  <eggert@twinsun.com>
17392
17393         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Do not require gl_SIZE_MAX or
17394         gl_PTRDIFF_MAX.
17395
17396 2003-11-12  Paul Eggert  <eggert@twinsun.com>
17397
17398         * lib/xstrtol.c (__xstrtol): Remove "break" immediately after
17399         "return", to pacify some unknown compiler.  Problem reported
17400         by Joerg Schilling.
17401
17402 2003-11-12  Paul Eggert  <eggert@twinsun.com>
17403
17404         * lib/xalloc.h: Do not include <limits.h> or <stdint.h>.
17405         (xalloc_oversized): Use sizeof (ptrdiff_t) and sizeof (size_t) for
17406         the heuristic, rather than PTRDIFF_MAX and SIZE_MAX.  This
17407         heuristic is just as accurate as far as we know, and it removes a
17408         dependency on size_max.m4 and ptrdiff_max.m4.
17409
17410 2003-11-11  Bruno Haible  <bruno@clisp.org>
17411
17412         * modules/xsize (Files): Add m4/size_max.m4.
17413         * modules/xalloc (Files): Add m4/size_max.m4, m4/ptrdiff_max.m4.
17414
17415 2003-11-11  Bruno Haible  <bruno@clisp.org>
17416
17417         * m4/size_max.m4: New file.
17418         * m4/ptrdiff_max.m4: New file.
17419         * m4/xsize,m4 (gl_XSIZE): Require gl_SIZE_MAX.
17420         * m4/xalloc.m4 (gl_PREREQ_XALLOC): New macro.
17421         (gl_XALLOC): Invoke it.
17422
17423 2003-11-11  Bruno Haible  <bruno@clisp.org>
17424
17425         * lib/xsize.h (SIZE_MAX): Remove fallback definition.
17426         * lib/xalloc.h: Include limits.h. Assume SIZE_MAX and PTRDIFF_MAX are
17427         defined.
17428
17429 2003-11-10  Paul Eggert  <eggert@twinsun.com>
17430
17431         * lib/xalloc.h (xalloc_oversized): [! (defined PTRDIFF_MAX &&
17432         PTRDIFF_MAX < SIZE_MAX)]: Fix off-by-one error that would have
17433         rejected some allocations of exactly SIZE_MAX - 2 bytes.
17434         From Bruno Haible.
17435         [defined PTRDIFF_MAX && PTRDIFF_MAX < SIZE_MAX]: Use SIZE_MAX,
17436         not (size_t) -1, since it's defined here.
17437
17438 2003-11-09  Karl Berry  <karl@gnu.org>
17439
17440         * config/mkinstalldirs, depcomp, mdate-sh: update from automake.
17441
17442 2003-11-06  Paul Eggert  <eggert@twinsun.com>
17443
17444         * lib/xalloc.h [HAVE_STDINT_H]: Include <stdint.h>.
17445         (xalloc_oversized) [! (PTRDIFF_MAX < SIZE_MAX)]:
17446         Reject sizes of exactly SIZE_MAX bytes.
17447         * lib/xreadlink.c: Include "xalloc.h" before checking whether SIZE_MAX
17448         is defined, since "xalloc.h" now defines SIZE_MAX on modern hosts.
17449
17450 2003-11-05  Bruno Haible  <bruno@clisp.org>
17451
17452         * lib/xsize.h: Include limits.h, to avoid a possible collision with
17453         SIZE_MAX defined in <limits.h> on Solaris.
17454
17455 2003-11-04  Jim Meyering  <jim@meyering.net>
17456
17457         * modules/sysexits: Use the `$(VAR)' notation for AC_SUBST'd
17458         variable names, rather than @VAR@.
17459         * modules/poll: Likewise.
17460
17461 2003-11-04  Bruno Haible  <bruno@clisp.org>
17462
17463         * modules/xsize: New file.
17464         * modules/linebreak: Depend on xsize.
17465         * MODULES.html.sh (func_all_modules): Add xsize.
17466
17467 2003-11-04  Bruno Haible  <bruno@clisp.org>
17468
17469         * m4/xsize.m4: New file.
17470
17471 2003-11-04  Bruno Haible  <bruno@clisp.org>
17472
17473         * lib/xsize.h: New file.
17474         * lib/linebreak.c: Include xsize.h.
17475         (mbs_possible_linebreaks, mbs_width_linebreaks): Check malloc()
17476         argument for overflow.
17477         Suggested by Paul Eggert.
17478
17479 2003-11-03  Karl Berry  <karl@gnu.org>
17480
17481         * config/config.{guess,sub}: update from config.
17482
17483 2003-11-03  Jim Meyering  <jim@meyering.net>
17484
17485         * modules/userspec (lib_SOURCES): Add userspec.h.
17486         (Include): Add "userspec.h".
17487         Improve description.
17488
17489 2003-11-03  Jim Meyering  <jim@meyering.net>
17490
17491         * lib/userspec.c: Include "userspec.h".
17492         * lib/userspec.h: New file.
17493
17494 2003-11-03  Bruno Haible  <bruno@clisp.org>
17495
17496         * m4/wait-process.m4 (gl_WAIT_PROCESS): Also check for waitid.
17497
17498 2003-11-03  Bruno Haible  <bruno@clisp.org>
17499
17500         * lib/wait-process.c (wait_process): Use waitid with WNOWAIT if
17501         available, to avoid (extremely rare) race condition.
17502         Suggested by Paul Eggert.
17503
17504 2003-11-02  Karl Berry  <karl@gnu.org>
17505
17506         * config/srclist.txt (vasprintf.c): sync broken, sigh.
17507
17508 2003-10-31  Paul Eggert  <eggert@twinsun.com>
17509
17510         * lib/mountlist.h (struct mount_entry.me_type_malloced): New member.
17511         * lib/mountlist.c (SIZE_MAX): Define if not defined already.
17512         (read_filesystem_list): Set and use me_type_malloced.
17513         Use "sizeof *me" rather than "sizeof (struct mount_entry)" (or
17514         whatever the type happens to be), for brevity and consistency.
17515         Check for size calculation overflow on Alphas running OSF/1.
17516
17517 2003-10-31  Jim Meyering  <jim@meyering.net>
17518
17519         * lib/hash.c: Include "xalloc.h" for use of xalloc_oversized.
17520
17521         * lib/linebuffer.c: Include <string.h> for declaration of memset.
17522
17523 2003-10-30  Paul Eggert  <eggert@twinsun.com>
17524             Bruno Haible  <bruno@clisp.org>
17525
17526         * lib/vasprintf.c: Include <limits.h>, <stdlib.h>.
17527         (vasprintf): Fail if the resulting length doesn't fit in an 'int'.
17528
17529 2003-10-30  Paul Eggert  <eggert@cs.ucla.edu>
17530
17531         * m4/host-os.m4 (UTILS_HOST_OS): Change netbsd*-gnu pattern back to
17532         netbsd*-gnu*.  Suggested by Robert Millan.
17533
17534 2003-10-29  Paul Eggert  <eggert@twinsun.com>
17535
17536         * modules/group-member: Depend on stdbool.
17537
17538 2003-10-29  Paul Eggert  <eggert@twinsun.com>
17539
17540         * m4/xalloc.m4 (gl_XALLOC): Undo previous change.
17541
17542 2003-10-29  Paul Eggert  <eggert@twinsun.com>
17543
17544         * m4/host-os.m4 (UTILS_HOST_OS): Resurrect netbsd*-gnu.  Add comments
17545         to it, and to knetbsd*-gnu and kfreebsd*-gnu.  Remove the '*' from
17546         after the 'gnu' in these cases.  This fixes some bugs in the
17547         previous change, and is based on suggestions by Robert Millan.
17548
17549 2003-10-29  Paul Eggert  <eggert@twinsun.com>
17550
17551         * lib/xalloc.h (xalloc_oversized): Now a macro, not a function,
17552         so that it works even if SIZE_MAX < N.  Do not include <stdbool.h>;
17553         no longer needed.
17554         * lib/quotearg.c (quotearg_n_options): Use it.
17555         * lib/group-member.c: Include <stdbool.h>.
17556         (free_group_info): Arg is now const *; don't free arg.
17557         (get_group_info): Now returns bool and accepts struct group_info *,
17558         rather than returning a malloc'ed struct group_info *.
17559         All uses changed.  Check for overflow in internal size calculation.
17560
17561         * lib/getusershell.c (readname): Simplify the code by using x2nrealloc
17562         rather than xmalloc/xrealloc.
17563         * lib/linebuffer.c (initbuffer, readlinebuffer): Simplify the code by
17564         using x2realloc rather than xmalloc/xrealloc.  Also, fix a C
17565         conformance bug: the old code used a pointer after freeing the
17566         storage that it addressed.
17567         * lib/hash.c (hash_initialize): Simplify the code by using
17568         xalloc_oversized rather than doing it by hand.
17569         * lib/getgroups.c (getgroups): Don't use xrealloc, since we don't need
17570         the buffer preserved.  Use free and xmalloc instead.
17571         * lib/quotearg.c (quotearg_n_options): Likewise.
17572         Use a simpler test for size overflow.  Don't use xalloc_oversized
17573         because unsigned int might be wider than size_t (!); this suggests
17574         that we should switch from unsigned int to size_t for slot numbers.
17575
17576 2003-10-28  Paul Eggert  <eggert@twinsun.com>
17577
17578         * m4/host-os.m4 (UTILS_HOST_OS): Identify GNU/KFreeBSD and
17579         GNU/KNetBSD.  These implementations use glibc atop the FreeBSD and
17580         NetBSD kernels.  Requested by Richard Stallman.
17581
17582 2003-10-27  Paul Eggert  <eggert@twinsun.com>
17583
17584         * lib/exclude.c (new_exclude): Use xzalloc rather than xmalloc
17585         to allocate the returned structure.  Do not allocate a subarray,
17586         as x2nrealloc will do that.
17587         (add_exclude): Use x2nrealloc to reallocate ex->exclude,
17588         instead of xnrealloc.
17589         (add_exclude_file): Use x2realloc instead of malloc + xnrealloc.
17590
17591 2003-10-27  Bruno Haible  <bruno@clisp.org>
17592
17593         * lib/stdbool_.h: Better support for BeOS.
17594
17595 2003-10-26  Paul Eggert  <eggert@twinsun.com>
17596
17597         * m4/xalloc.m4 (gl_XALLOC): Requore AC_C_INLINE, since xalloc.h
17598         now uses inline.
17599
17600 2003-10-26  Paul Eggert  <eggert@twinsun.com>
17601
17602         * lib/xalloc.h (xalloc_oversized): New static inline function, for
17603         callers that want to do their own size-overflow checking.  Include
17604         <stdbool.h>, since xalloc_oversized returns bool.
17605         * lib/xalloc.c (array_size_overflow): Remove.  All callers changed
17606         to use xalloc_oversized.
17607
17608         Add two functions x2realloc, x2nrealloc, for programs that grow
17609         arrays dynamically by doubling their sizes.
17610         * lib/xalloc.h (x2realloc, x2nrealloc): New decls.
17611         * lib/xmalloc.c (x2nrealloc_inline, x2nrealloc, x2realloc):
17612         New functions.
17613
17614         Port to C99 semantics for 'inline' of external functions.
17615         Bug reported by Bruno Haible.
17616         * lib/xmalloc.c (xnmalloc_inline): New static inline function,
17617         with the old contents of xnmalloc.
17618         (xnmalloc, xmalloc): Use it.
17619         (xnrealloc_inline): New static inline function,
17620         with the old contents of xnrealloc.
17621         (xnrealloc, xrealloc): Use it.
17622
17623         * lib/alloc.c (alloca): xmalloc cannot return NULL, so don't test for
17624         that.
17625
17626 2003-10-26  Karl Berry  <karl@gnu.org>
17627
17628         * config/srclist.txt (COPYING.DOC): no longer available from
17629         /gd/gnuorg; don't know where the ultimate source is.
17630
17631 2003-10-25  Paul Eggert  <eggert@twinsun.com>
17632
17633         Fix several address-calculation bugs in the hash modules,
17634         plus some minor code cleanup.
17635
17636         * lib/hash.h: Include <stdbool.h>, for bool.
17637         * lib/hash.c: Don't include <stdbool.h>, since hash.h does it now.
17638         * lib/hash.h (Hash_hasher, hash_get_n_buckets, hash_get_n_buckets_used,
17639         hash_get_n_entries, hash_get_max_bucket_length,
17640         hash_get_entries, hash_do_for_each, hash_string, hash_initialize,
17641         hash_rehash): Use size_t rather than unsigned.
17642         * lib/hash.c (struct hash_table, hash_get_n_buckets,
17643         hash_get_n_buckets_used, hash_get_n_entries,
17644         hash_get_max_bucket_length, hash_table_ok, hash_print_statistics,
17645         hash_get_entries, hash_do_for_each, hash_string, is_prime,
17646         next_prime, hash_initialize, hash_rehash, hash_delete, hash_print):
17647         Likewise.
17648         (SIZE_MAX): Define if not defined.
17649         (hash_get_max_bucket_length, hash_table_ok, hash_lookup,
17650         hash_get_first, hash_get_next, hash_get_entries, hash_do_for_each,
17651         hash_print):
17652         Use const * when possible.
17653         (hash_string): Use (unsigned char) *P rather than *(unsigned char *) P.
17654         (check_tuning): Fix bug: if tuning parameters were very close to
17655         0 or 1, rounding errors could have caused subscript violations.
17656         (hash_initialize, allocate_entry, hash_print): Remove unnecessary cast.
17657         (hash_initialize): Add 'fail:' label
17658         to free table and return NULL, and use it to simplify code.
17659         Use calloc rather than clearing the storage ourself.
17660         (hash_initialize, hash_rehash): Check for arithmetic overflow in
17661         buffer size calculations.
17662         * lib/hash-pjw.h (hash_pjw): Use size_t, not unsigned.
17663         Include <stddef.h>, for size_t.
17664         * lib/hash-pjw.c (hash_pjw): Likewise.
17665         Switch to method described by Bruno Haible.
17666         Include <limits.h>, for CHAR_BIT.
17667         (SIZE_BITS): New macro.
17668
17669 2003-10-23  Paul Eggert  <eggert@twinsun.com>
17670
17671         * m4/getline.m4 (AM_FUNC_GETLINE):
17672         Don't include getndelim2.o twice into LIBOBJS; this breaks on some
17673         hosts.  Problem reported by Derek Robert Price in
17674         <http://mail.gnu.org/archive/html/bug-gnulib/2003-10/msg00092.html>.
17675         This patch can be withdrawn after Autoconf 2.58 is required for gnulib.
17676         * m4/getndelim2.m4 (gl_GETNDELIM2): Likewise.
17677
17678 2003-10-21  Paul Eggert  <eggert@twinsun.com>
17679
17680         * lib/getndelim2.c (getndelim2): When size calculation overflows,
17681         ceiling the allocation at NMAX bytes rather than silently
17682         discarding input bytes before NMAX is reached.  This makes
17683         a difference only if NMAX exceeds SIZE_MAX / 2.
17684
17685         * lib/obstack.c: Merge from glibc.
17686         [defined _LIBC]: Include <obstack.h>, not "obstack.h".
17687         Add libc_hidden_def (_obstack_newchunk).
17688         (_obstack_free) [! defined _LIBC]: Remove.
17689         [defined _LIBC]: Make a strong alias from obstack_free, rather than
17690         a clone of the function body.
17691         (fputs) [defined _LIBC && defined USE_IN_LIBIO]: Remove.
17692         [defined _LIBC && !defined USE_IN_LIBIO]: Include <libio/iolibio.h>.
17693
17694         * lib/obstack.h: Indenting cleanup, to make it easier to merge with
17695         glibc.
17696         (obstack_grow, obstack_grow0): Remove unnecessary parentheses around
17697         arg to memcpy.
17698
17699         * lib/obstack.h (obstack_1grow_fast): Properly parenthesize arg.
17700         (obstack_ptr_grow_fast, obstack_int_grow_fast):
17701         Don't use lvalue casts, as GCC plans to remove support for them
17702         in GCC 3.5.  Reported by Joseph S. Myers.  This bug
17703         was also present in the non-GCC version, indicating that this
17704         code had always been buggy and had never been widely used.
17705         (obstack_1grow, obstack_ptr_grow, obstack_int_grow, obstack_blank):
17706         Use the fast variant of each macro, rather than copying the
17707         definiens of the fast variant; that way, we'll be more likely to
17708         catch future bugs in the fast variants.
17709
17710 2003-10-20  Bruno Haible  <bruno@clisp.org>
17711
17712         * modules/wait-process: New file.
17713         * MODULES.html.sh (func_all_modules): Add wait-process.
17714
17715 2003-10-20  Bruno Haible  <bruno@clisp.org>
17716
17717         * m4/wait-process.m4: New file.
17718
17719 2003-10-20  Bruno Haible  <bruno@clisp.org>
17720
17721         * lib/wait-process.h: New file, from GNU gettext.
17722         * lib/wait-process.c: New file, from GNU gettext.
17723
17724 2003-10-19  Jim Meyering  <jim@meyering.net>
17725
17726         * lib/vasnprintf.c (vasnprintf): Work around losing snprintf on
17727         HPUX 10.20.
17728
17729 2003-10-18  Karl Berry  <karl@gnu.org>
17730
17731         * config/config.guess: update from config.
17732
17733 2003-10-16  Paul Eggert  <eggert@twinsun.com>
17734
17735         * lib/getgroups.c: Include <errno.h>, <stdlib.h>.
17736         (getgroups): First arg is int, not size_t.
17737         Don't let 'free' mangle errno.
17738
17739 2003-10-16  Paul Eggert  <eggert@twinsun.com>
17740
17741         * README: Mention that gnulib assumes that (foo *) NULL + 0 == NULL.
17742
17743 2003-10-16  Karl Berry  <karl@gnu.org>
17744
17745         * config/config.{guess,sub}: update from config.
17746
17747 2003-10-16  Jim Meyering  <jim@meyering.net>
17748
17749         * lib/xmalloc.c: Include <string.h>, for declarations of memset and
17750         memcpy.
17751
17752 2003-10-15  Paul Eggert  <eggert@twinsun.com>
17753
17754         * lib/exclude.c: Do not include <inttypes.h> or <stdint.h>.
17755         (SIZE_MAX): Remove.
17756         (new_exclude, add_exclude_file): Initial size no longer needs to
17757         be a power of 2.
17758         (add_exclude, add_exclude_file): Use xnrealloc instead of rolling
17759         our own address arithmetic overflow checking.
17760
17761         * lib/fnmatch.c (SIZE_MAX): Define if standard headers don't.
17762         (fnmatch): Do not alloca more than 2000 wide characters;
17763         instead, use malloc for large buffers.
17764         Check for address arithmetic overflow, and return -1
17765         with errno set to ENOMEM in that case.
17766         * lib/fnmatch_loop.c (ALLOCA_LIMIT): New macro.
17767         (NEW_PATTERN): Do not alloca more than 8000 bytes;
17768         instead, return -1.  Check for address arithmetic overflow.
17769
17770 2003-10-14  Paul Eggert  <eggert@twinsun.com>
17771
17772         Handle invalid suffixes and overflow independently, so that
17773         callers can treat them independently as needed.  Fix some bugs in
17774         suffix handling, e.g., "100k@" was not diagnosed as an invalid
17775         suffix for a human-readable blocksize.  The major caller-visible
17776         change is the addition of a new
17777         LONGINT_INVALID_SUFFIX_CHAR_WITH_OVERFLOW enum value, indicating
17778         that both overflow and suffix chars were found.
17779
17780         * lib/human.c (humblock): Don't check separately for invalid suffix
17781         char; that is xstrtoumax's job (now that its bug is fixed).
17782         * lib/xstrtoimax.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM) [defined
17783         INTMAX_MAX]: New macros.
17784         * lib/xstrtol.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM, TYPE_MINIMUM,
17785         TYPE_MAXIMUM): New macros.
17786         (bkm_scale, bkm_scale_by_power): Return strtol_error, not int.
17787         (bkm_scale, bkm_scale_by_power, __xstrtol): Return maximal values
17788         if overflow occurs, as it's what __strtol does and it's more useful
17789         in practice.
17790         (__xstrtol): If __strtol reports some error other than ERANGE,
17791         reflect it to the caller as LONGINT_INVALID.  If it reports
17792         ERANGE, continue the rest of parsing, and report LONGINT_OVERFLOW
17793         | LONGINT_INVALID_SUFFIX_CHAR if both errors occur.
17794         * lib/xstrtol.h (LONGINT_INVALID_SUFFIX_CHAR_WITH_OVERFLOW): New enum
17795         value.
17796         (_STRTOL_ERROR): Handle it.  Abort when given unknown error codes.
17797         * lib/xstrtoul.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM): New macros.
17798         * lib/xstrtoumax.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM)
17799         [defined UINTMAX_MAX]: New macros.
17800
17801 2003-10-14  Bruno Haible  <bruno@clisp.org>
17802
17803         * modules/fatal-signal: Add m4/sig_atomic_t.m4 to file list.
17804
17805 2003-10-14  Bruno Haible  <bruno@clisp.org>
17806
17807         * m4/sig_atomic_t: New file, from GNU gettext.
17808         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Require gt_TYPE_SIG_ATOMIC_T.
17809
17810 2003-10-14  Bruno Haible  <bruno@clisp.org>
17811
17812         * lib/fatal-signal.h: Improved comments. Suggested by Paul Eggert.
17813         * lib/fatal-signal.c: Use sig_atomic_t. Suggested by Paul Eggert.
17814         Also use volatile where needed.
17815
17816 2003-10-12  Paul Eggert  <eggert@twinsun.com>
17817
17818         * modules/xalloc: Do not depend on 'exit'.  Depend on 'stdbool'.
17819         Change maintainer from Bruno Haible to 'all'.
17820
17821 2003-10-12  Paul Eggert  <eggert@twinsun.com>
17822
17823         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Require AC_C_INLINE.
17824
17825 2003-10-12  Paul Eggert  <eggert@twinsun.com>
17826
17827         * lib/xalloc.h (xnmalloc, xzalloc, xnrealloc, xclone): New decls.
17828         (XMALLOC, XCALLOC, XREALLOC, XFREE, CCLONE, CLONE): Deprecate,
17829         and define in terms of the other primitives.
17830         * lib/xmalloc.c: Include stdbool.h; do not include exit.h.
17831         (SIZE_MAX): Define if not already defined.
17832         (array_size_overflow): New function.
17833         (xalloc_die): Abort instead of exiting if 'error' returns.
17834         (xnmalloc, xnrealloc, xzalloc, xclone): New functions.
17835         (xmalloc, xrealloc): Use them.
17836         (xcalloc): Check for address arithmetic overflow.
17837         * lib/xstrdup.c (xstrdup): Use xclone, since memcpy should be
17838         a bit faster than strcpy.
17839
17840 2003-10-10  Simon Josefsson  <jas@extundo.com>
17841
17842         * modules/argp (Depends-on): Add restrict and strcase.
17843
17844 2003-10-10  Simon Josefsson  <jas@extundo.com>
17845
17846         * m4/argp.m4: Add AC_C_INLINE.
17847
17848 2003-10-08  Paul Eggert  <eggert@twinsun.com>
17849
17850         Merge getpass from libc, plus a few fixes.
17851
17852         * lib/getpass.c (HAVE_STDIO_EXT) [_LIBC]: Define to 1.
17853         Include <stdbool.h>.
17854         Include <stdio_ext.h> if HAVE_STDIO_H, otherwise define
17855         __fsetlocking to empty.
17856         [_LIBC]: Do not include "getline.h" or "unlocked-io.h", but
17857         do include <bits/libc-lock.h>.
17858         Do not include <fcntl.h>; not needed.
17859         [_LIBC]: Include <wchar.h>.
17860         (NOTCANCEL_MODE): New macro.
17861         (flockfile, funlockfile) [_LIBC]: New macros.
17862         (__libc_cleanup_push, __libc_cleanup_pop, __getline, __tcgetattr)
17863         [!_LIBC]: New macros.
17864         (call_fclose): New function.
17865         (getpass): Use it.  Save tty stream separately; this simplifies the
17866         code and makes it more reliable if stdin happens to equal stdout.
17867         Invoke __fsetlocking on tty.
17868         Handle thread cancellation if needed.
17869         Namespace cleanup (use __tcgetattr, __getline).
17870         Use bool for Booleans.
17871         [USE_IN_LIBIO]: Handle wide streams.
17872         [!_LIBC]: Unconditionally do the fseek, since we don't know what
17873         stream might go where.
17874
17875         * lib/unlocked-io.h: Include <stdio.h>, so that the caller
17876         doesn't have to include <stdio.h> before us.
17877         (clearerr_unlocked, feof_unlocked, ferror_unlocked,
17878         fflush_unlocked, fgets_unlocked, fputc_unlocked, fputs_unlocked,
17879         fread_unlocked, fwrite_unlocked, getc_unlocked, getchar_unlocked,
17880         putc_unlocked, putchar_unlocked): Define to the unlocked counterpart
17881         if not declared, so that we can use getpass.c code from libc without
17882         rewriting it.
17883         (flockfile, ftrylockfile, funlockfile): New macros.
17884
17885 2003-10-08  Paul Eggert  <eggert@twinsun.com>
17886
17887         * modules/getpass: Depend on stdbool.
17888
17889 2003-10-08  Paul Eggert  <eggert@twinsun.com>
17890
17891         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for stdio_ext.h.
17892
17893 2003-10-07  Karl Berry  <karl@gnu.org>
17894
17895         * config/config.{guess,sub}: update from config.
17896
17897 2003-10-06  Jim Meyering  <jim@meyering.net>
17898             Bruno Haible  <bruno@clisp.org>
17899
17900         This lets translators provide better translations for the
17901         "Written by ..." part of --version output.
17902         * lib/version-etc.h: Include stdarg.h.
17903         (version_etc_copyright): Declare as readonly.
17904         (version_etc): Make this function variadic with a NULL-terminated list
17905         of author name strings.
17906         (version_etc_va): New declaration.
17907         * lib/version-etc.c: Include stdarg.h, stdlib.h.
17908         (version_etc_copyright): Declare as readonly.
17909         (version_etc_va): New function. Provide a different translatable string
17910         for each possible number of authors < 10. Abbreviate when there are 10
17911         authors or more.
17912         (version_etc): Make this function variadic. Call version_etc_va.
17913         Suggestion from Gary V. Vaughan.
17914
17915         * lib/long-options.h (parse_long_options): Change prototype: the
17916         authors string is moved to the end and becomes variadic.
17917         * lib/long-options.c: Include stdarg.h.
17918         (parse_long_options): Make this function variadic, too.
17919         Call version_etc_va, not version_etc.
17920
17921 2003-10-06  Bruno Haible  <bruno@clisp.org>
17922
17923         * modules/version-etc-2: Remove file.
17924         * MODULES.html.sh (func_all_modules): Remove version-etc-2.
17925
17926 2003-10-06  Bruno Haible  <bruno@clisp.org>
17927
17928         * modules/fatal-signal: New file.
17929         * MODULES.html.sh (func_all_modules): Add fatal-signal.
17930
17931 2003-10-06  Bruno Haible  <bruno@clisp.org>
17932
17933         * m4/fatal-signal.m4: New file.
17934         * m4/signalblocking.m4: New file, from GNU gettext.
17935
17936 2003-10-06  Bruno Haible  <bruno@clisp.org>
17937
17938         * lib/version-etc-2.h: Remove file.
17939         * lib/version-etc-2.c: Remove file.
17940
17941 2003-10-06  Bruno Haible  <bruno@clisp.org>
17942
17943         * lib/fatal-signal.h: New file, from GNU gettext.
17944         * lib/fatal-signal.c: New file, from GNU gettext.
17945
17946 2003-10-05  Paul Eggert  <eggert@twinsun.com>
17947
17948         * README: Rework advice for preventing empty .o files.
17949         Don't recommend ELIDE constructs.  Recommend <stddef.h>,
17950         not <sys/types.h>.
17951
17952 2003-10-04  Karl Berry  <karl@gnu.org>
17953
17954         * lib/argp*: update from libc.
17955
17956 2003-10-04  Karl Berry  <karl@gnu.org>
17957
17958         * config/config.{guess,sub}: update from config.
17959
17960 2003-10-02  Bruno Haible  <bruno@clisp.org>
17961
17962         * modules/lchown (Include): Add lchown.h.
17963         * modules/time_r (Include): Use "..." syntax.
17964         * modules/xgetdomainname (Include): Add xgetdomainname.h.
17965
17966 2003-10-01  Simon Josefsson  <jas@extundo.com>
17967
17968         * MODULES.html.sh (func_all_modules): Move gethostname from section
17969         'based on' to section 'lacking' POSIX:2001.
17970
17971 2003-10-01  Larry Jones  <lawrence.jones@eds.com>
17972
17973         * lib/getpass.c (getpass): Use a no-op fseek when switching from input
17974         to output mode on the same stream.
17975
17976 2003-09-29  Paul Eggert  <eggert@twinsun.com>
17977
17978         * lib/strftime.c (tm_diff) [! HAVE_TM_GMTOFF]:
17979         Fix arg typo in previous patch.
17980
17981 2003-09-28  Jim Meyering  <jim@meyering.net>
17982
17983         * lib/error.c: Correct cpp indentation.
17984
17985 2003-09-27  Paul Eggert  <eggert@twinsun.com>
17986
17987         * modules/free: New file.
17988
17989 2003-09-27  Paul Eggert  <eggert@twinsun.com>
17990
17991         * m4/free.m4: New file.
17992
17993 2003-09-27  Paul Eggert  <eggert@twinsun.com>
17994
17995         * lib/minmax.h (MIN, MAX)
17996         [__STDC__ && defined __GNUC__ && __GNUC__ >= 2]:
17997         Omit the special code that used __typeof__, since we worry that
17998         it could be more trouble than it's worth.  See:
17999         http://mail.gnu.org/archive/html/bug-gnulib/2003-01/msg00090.html
18000         http://mail.gnu.org/archive/html/bug-gnulib/2003-01/msg00095.html
18001
18002         * lib/free.c: New file.
18003
18004 2003-09-27  Oskar Liljeblad  <oskar@osk.mine.nu>
18005
18006         Trivial fixes to Makefile.am parts of module listings.
18007         * modules/strstr: Append strstr.h to lib_SOURCES.
18008         * modules/strcase: Likewise, for strcase.h.
18009
18010 2003-09-27  Karl Berry  <karl@gnu.org>
18011
18012         * config/mkinstalldirs: update from automake.
18013
18014 2003-09-26  Paul Eggert  <eggert@twinsun.com>
18015
18016         * lib/error.c (SIZE_MAX) [!defined SIZE_MAX]: Define.
18017         (error_tail): Do not loop, reallocating temporary buffer, since
18018         the output cannot contain more wide characters than the input
18019         contains bytes, the size must be big enough already.  This avoids
18020         one potential size overflow calculation.  Check for size overflow
18021         when calculating temporary buffer size.  Free temporary buffer
18022         when done, if it was allocated with malloc; this plugs a memory
18023         leak.  Remove casts from void * to pointers, that are no longer
18024         needed now that we're assuming C89 or better.
18025
18026         Merge error changes from glibc.
18027
18028         * lib/error.c, error.h: Update copyright notice header to match glibc.
18029         * lib/error.c [defined _LIBC]: Include <errno.h>, <bits/libc-lock.h>.
18030         (error, error_at_line) [defined _LIBC && defined __libc_ptf_call]:
18031         Disable cancellation while printing error.
18032         * lib/error.h: Prepend __ to parameter names.
18033
18034 2003-09-26  Jim Meyering  <jim@meyering.net>
18035
18036         * lib/error.c (error_tail): Move some declarations
18037         into inner scope where the local variables are used.
18038
18039 2003-09-26  Bruno Haible  <bruno@clisp.org>
18040
18041         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Add comments about the AIX
18042         stpncpy().
18043         Don't define stpncpy through config.h; it's now done through stpncpy.h.
18044
18045 2003-09-26  Bruno Haible  <bruno@clisp.org>
18046
18047         * lib/stpncpy.h (gnu_stpncpy): New declaration.
18048         (stpncpy): Define as alias for gnu_stpncpy.
18049         * lib/stpncpy.c [!_LIBC]: Define gnu_stpncpy, not stpncpy.
18050
18051 2003-09-25  Simon Josefsson  <jas@extundo.com>
18052
18053         * lib/xgetdomainname.h: New file.
18054         * lib/xgetdomainname.c: New file.
18055
18056 2003-09-25  Simon Josefsson  <jas@extundo.com>
18057             Bruno Haible  <bruno@clisp.org>
18058
18059         * modules/getdomainname: New file.
18060         * modules/xgetdomainname: New file.
18061         * MODULES.html.sh (func_all_modules): Add getdomainname,
18062         xgetdomainname.
18063
18064 2003-09-25  Simon Josefsson  <jas@extundo.com>
18065             Bruno Haible  <bruno@clisp.org>
18066
18067         * m4/getdomainname.m4: New file.
18068
18069 2003-09-25  Simon Josefsson  <jas@extundo.com>
18070             Bruno Haible  <bruno@clisp.org>
18071
18072         * lib/getdomainname.h: New file.
18073         * lib/getdomainname.c: New file.
18074
18075 2003-09-25  Karl Berry  <karl@gnu.org>
18076
18077         * lib/argp-fmtstream.c, argp-help.c: update from libc.
18078
18079 2003-09-25  Karl Berry  <karl@gnu.org>
18080
18081         * config/install-sh: update from automake.
18082
18083 2003-09-25  Bruno Haible  <bruno@clisp.org>
18084
18085         * modules/version-etc-2: New file, from modules/version-etc with
18086         modifications.
18087         * MODULES.html.sh (func_all_modules): Add version-etc-2.
18088
18089 2003-09-25  Bruno Haible  <bruno@clisp.org>
18090
18091         * lib/version-etc-2.h: New file, from version-etc.h with modifications.
18092         * lib/version-etc-2.c: New file, from version-etc.c with modifications.
18093
18094 2003-09-24  Simon Josefsson  <jas@extundo.com>
18095
18096         * modules/xgethostname: Add xgethostname.h.
18097
18098 2003-09-24  Paul Eggert  <eggert@twinsun.com>
18099
18100         * lib/linebuffer.c (freebuffer): Don't free the argument, just
18101         the buffer associated with the argument.  Bug reported by
18102         Simon Josefsson.
18103
18104 2003-09-24  Paul Eggert  <eggert@twinsun.com>
18105
18106         * README: Document assumptions that 'int' is at least 32 bits
18107         wide, that integer arithmetic is 2's complement without overflow,
18108         that there are no holes in integer values, that adding sizes of
18109         two nonoverlapping objects can't overflow, and that all-bits-zero
18110         yields scalar zero.  Fix spelling and capitalization typos.
18111
18112 2003-09-19  Karl Berry  <karl@gnu.org>
18113
18114         * lib/argp.h: update from libc.
18115
18116 2003-09-17  Paul Eggert  <eggert@twinsun.com>
18117
18118         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Call AC_BEFORE first,
18119         to avoid spurious warnings like "AC_RUN_IFELSE was called before
18120         gl_USE_SYSTEM_EXTENSIONS" from autoreconf.
18121
18122 2003-09-17  Paul Eggert  <eggert@twinsun.com>
18123
18124         * gnulib-tool: Use "test -h", not "test -L", for portability
18125         to Solaris 8 /bin/sh.  (This bug is fixed in Solaris 9.)
18126         (tags_regexp): Remove, since \| doesn't conform to POSIX.
18127         (sed_extract_prog): Issue s commands one-by-one, rather than
18128         using \| in one s command.
18129
18130 2003-09-16  Paul Eggert  <eggert@twinsun.com>
18131
18132         * lib/linebuffer.c (readlinebuffer): Return NULL immediately upon
18133         input error, instead of returning NULL the next time we are called
18134         (and therefore losing track of errno).
18135
18136 2003-09-16  Bruno Haible  <bruno@clisp.org>
18137
18138         * gnulib-tool (func_create_testdir): Warn about duplicated
18139         dependencies.
18140
18141 2003-09-15  Paul Eggert  <eggert@twinsun.com>
18142
18143         * modules/argmatch, modules/fatal, modules/obstack,
18144         modules/xalloc, modules/xgethostname: Sort dependencies by
18145         importance, not alphabetically.
18146
18147 2003-09-15  Paul Eggert  <eggert@twinsun.com>
18148
18149         * lib/getndelim2.c (getndelim2): Don't trash errno when a read
18150         fails, so that the caller gets the proper errno.
18151
18152         * lib/readutmp.c (read_utmp): Likewise.
18153         Check for fstat error.  Close stream and free storage
18154         when failing.
18155
18156 2003-09-14  Karl Berry  <karl@gnu.org>
18157
18158         * config/srclist.txt (strdup.c): disable for c89 changes.
18159
18160 2003-09-14  Jim Meyering  <jim@meyering.net>
18161
18162         * lib/getloadavg.c: Correct cpp indentation.
18163         * lib/strdup.c: Likewise.
18164         * lib/vasnprintf.c: Likewise.
18165
18166 2003-09-14  Bruno Haible  <bruno@clisp.org>
18167
18168         * modules/fwriteerror: New file.
18169         * MODULES.html.sh (func_all_modules): Add fwriteerror.
18170
18171 2003-09-14  Bruno Haible  <bruno@clisp.org>
18172
18173         * lib/fwriteerror.h: New file.
18174         * lib/fwriteerror.c: New file.
18175
18176 2003-09-12  Paul Eggert  <eggert@twinsun.com>
18177
18178         * modules/argmatch, modules/exitfail, modules/fatal, modules/obstack,
18179         modules/xgethostname, modules/xalloc: Depend on exit.
18180
18181 2003-09-12  Paul Eggert  <eggert@twinsun.com>
18182
18183         * m4/error.m4: Require AC_FUNC_STRERROR_R rather than invoking it.
18184
18185         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Require AC_AIX
18186         and AC_MINIX, too, so that their extensions are available.
18187
18188         * m4/prereq.m4 (jm_PREREQ_ADDEXT): Remove.  All uses removed.
18189         This macro has been superseded by gl_BACKUPFILE.
18190
18191         More patches to assume C89 or better.
18192
18193         * m4/error.m4 (gl_ERROR): Don't check for vprintf.
18194
18195         * m4/check-decl.m4 (jm_CHECK_DECLS): Include <string.h>, <stdlib.h>
18196         unconditionally.
18197         * m4/closeout.m4 (gl_CLOSEOUT): Don't check for stdlib.h.
18198         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER):
18199         Include <string.h>, <stdlib.h> unconditionally.
18200         * m4/lstat.m4 (gl_PREREQ_LSTAT): Don't check for stdlib.h, free.
18201         * m4/readdir.m4 (GL_FUNC_READDIR): Don't check for string.h.
18202         * m4/readutmp.m4 (gl_PREREQ_READUTMP): Don't check for standard C
18203         headers or for string.h.
18204         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Don't check for stdlib.h
18205         or strtoul.
18206
18207         * m4/mkstemp.m4 (jm_PREREQ_TEMPNAME): Do not require standard C
18208         headers.
18209         * m4/strdup.m4 (gl_PREREQ_STRDUP): Likewise.
18210         * m4/userspec.m4 (gl_USERSPEC): Likewise.
18211         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Likewise.
18212         * m4/xstrtod.m4 (gl_XSTRTOD): Likewise.
18213         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
18214         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't check for limits.h,
18215         memcpy, memset.
18216         (jm_FUNC_GNU_STRFTIME): Don't require standard C headers.
18217         * m4/strtod.m4 (gl_FUNC_STRTOD): Do not check for float.h.
18218         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Do not check for stdlib.h,
18219         strtol.
18220         * m4/strtol.m4 (gl_FUNC_STRTOL): Do not check for limits.h.
18221         * m4/userspec.m4 (gl_USERSPEC): Do not check for string.h.
18222         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Do not check for string.h, strtol,
18223         strtoul.
18224
18225 2003-09-12  Paul Eggert  <eggert@twinsun.com>
18226
18227         * lib/argmatch.c, fatal.c, xgethostname.c, xmalloc.c: Include exit.h.
18228         * lib/obstack.c [!defined _LIBC]: Likewise.
18229         * lib/argmatch.c (EXIT_FAILURE): Remove; now done by exit.h
18230         * lib/exitfail.c, fatal.c, xgethostname.c, xmalloc.c: Likewise.
18231         * lib/exitfail.c: Don't include stdlib.h; no longer needed.
18232
18233         More changes to assume C89 or better.
18234
18235         * lib/error.c (error_tail): Assume vprintf.
18236
18237         * lib/argmatch.c (getenv): Remove decl.
18238         * lib/progreloc.c (get_full_program_name): Define via prototype.
18239         * lib/setenv.c (clearenv): Likewise.
18240         * lib/stpncpy.c: Do not include <string.h> or <sys/types.h>; not
18241         needed.
18242         * lib/strdup.c: Include <stdlib.h>, <string.h> unconditionally.
18243         (malloc, memcpy): Remove decls.
18244         * lib/strftime.c (HAVE_LIMITS_H, STDC_HEADERS) [defined _LIBC]: Remove.
18245         (HAVE_MEMCPY) [defined emacs && !defined HAVE_BCOPY]: Remove.
18246         Include <limits.h>, <stddef.h>, <stdlib.h>, <string.h> unconditionally.
18247         (memcpy): Remove macro.
18248         (MEMCPY) [!defined COMPILE_WIDE]: Define to memcpy unconditionally.
18249         (__P): Remove.  All uses removed.
18250         (PTR): Remove.  All uses changed to void *.
18251         (CHAR_BIT, NULL): Remove.
18252         (spaces, zeros, memset_space, memset_zero)
18253         [!defined memset && !defined HAVE_MEMSET && !defined _LIBC]:
18254         Remove.
18255         (LOCALE_PARAM, LOCALE_PARAM_DECL): Remove.
18256         (memcpy_lowcase, memcpy_uppcase, tm_diff, iso_week_days):
18257         Define with prototype.
18258         Remove now-unnecessary prototype decl.
18259         (extra_args_spec): Assume ANSI C.  All uses changed.
18260         (extra_args_spec_iso): Remove.
18261         (my_strftime, emacs_strftimeu): Define via prototype.
18262         * lib/strtod.c: Include <float.h>, <stdlib.h>, <string.h>
18263         unconditionally.
18264         (DBL_MAX, DBL_MIN, HUGE_VAL, NULL): Remove decls.
18265         * lib/strtoimax.c: Include <stdlib.h> unconditionally.
18266         (strtoul, strtol): Remove decls.
18267         * lib/strtol.c (STDC_HEADERS, HAVE_LIMITS_H, NULL, ULONG_MAX,
18268         LONG_MAX): Remove.
18269         Include <limits.h>, <stddef.h>, <stdlib.h>, <string.h> unconditionally.
18270         (LOCALE_PARAM_DECL): Remove.  All uses changed to LOCALE_PARAM_PROTO.
18271         (LOCALE_PARAM_PROTO): New macro.
18272         (INTERNAL, INTERNAL1, WEAKNAME): Assume ANSI C, not K&R.
18273         (INTERNAL (strtol), strtol): Define with a prototype.
18274         (PARAMS): Remove.  All uses removed.
18275         * lib/tempname.c: Include <string.h> unconditionally.
18276         * lib/userspec.c: Include <stdlib.h>, <string.h> unconditionally.
18277         * lib/xgethostname.c (main): Define with a prototype.
18278         * lib/xmalloc.c: Include "xalloc.h" first, to check interface.
18279         Include <stdlib.h> unconditionally.
18280         (calloc, malloc, realloc, free): Remove decls.
18281         * lib/xstrtod.c: Include "xstrtod.h" first, to check interface.
18282         Include <stdlib.h> unconditionally.  Sort include file names.
18283         (strtod): Remove.
18284         (xstrtod): Define with a prototype.
18285         * lib/xstrtol.c: Include <stdlib.h>, <string.h> unconditionally.
18286         (strtol, strtoul): Remove decls.
18287
18288 2003-09-11  Paul Eggert  <eggert@twinsun.com>
18289
18290         More patches to assume C89 or better.
18291         * m4/strndup.m4 (gl_PREREQ_STRNDUP): Remove STDC_HEADERS check.
18292         * m4/strnlen.m4 (gl_PREREQ_STRNLEN): Don't check for memory.h,
18293         string.h, memchr, STDC_HEADERS.
18294
18295 2003-09-11  Paul Eggert  <eggert@twinsun.com>
18296
18297         * lib/strndup.c: Don't include <stdio.h>, <sys/types.h>.
18298         Include <stdlib.h>, <string.h> unconditionally.
18299         Remove now-unnecessary cast to char *.
18300         * lib/strnlen.c: Include <string.h> unconditionally.
18301         * lib/yesno.c (yesno): Define with a prototype.
18302
18303 2003-09-11  Bruno Haible  <bruno@clisp.org>
18304
18305         * config/srclist.txt (setenv.c, unsetenv.c): Disable for the moment.
18306
18307 2003-09-10  Jim Meyering  <jim@meyering.net>
18308
18309         * lib/error.c: Correct indentation of cpp directives.
18310
18311 2003-09-10  Bruno Haible  <bruno@clisp.org>
18312
18313         * m4/strcspn.m4 (gl_PREREQ_STRCSPN): Remove <string.h> check.
18314         * m4/strpbrk.m4 (gl_PREREQ_STRPBRK): Remove <string.h> check.
18315         * m4/strstr.m4 (gl_PREREQ_STRSTR): Remove <string.h> check.
18316         * m4/unicodeio.m4 (gl_UNICODEIO): Remove <string.h> check.
18317         * m4/setenv.m4 (gl_PREREQ_SETENV, gl_PREREQ_UNSETENV): Remove
18318         <stdlib.h> and <string.h> checks.
18319         * m4/xreadlink.m4 (gl_XREADLINK): Remove <stdlib.h> check.
18320         * m4/yesno.m4 (gl_YESNO): Remove <stdlib.h> check.
18321
18322 2003-09-10  Bruno Haible  <bruno@clisp.org>
18323
18324         * lib/strcspn.c: Include <string.h> unconditionally.
18325         * lib/strpbrk.c: Include <string.h> unconditionally.
18326         * lib/strstr.c: Include <string.h> unconditionally.
18327         * lib/unicodeio.c: Include <string.h> unconditionally.
18328         * lib/setenv.c: Include <stdlib.h> and <string.h> unconditionally.
18329         * lib/unsetenv.c: Likewise.
18330         * lib/xreadlink.c: Include <stdlib.h> unconditionally.
18331         * lib/yesno.c: Include <stdlib.h> unconditionally.
18332         (rpmatch): Add prototype.
18333
18334 2003-09-09  Paul Eggert  <eggert@twinsun.com>
18335
18336         More patches to assume C89 or better.
18337         * m4/getcwd.m4 (AC_FUNC_GETCWD_NULL): Don't check for stdlib.h.
18338         * m4/getopt.m4 (gl_GETOPT): Don't check for string.h.
18339         * m4/getugroups.m4 (gl_GETUGROUPS): Do not check for standard C headers
18340         or for string.h.
18341         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Do not check for
18342         stdlib.h.
18343         * m4/group-member.m4 (gl_PREREQ_GROUP_MEMBER): Do not require standard
18344         C headers.
18345         * m4/hard-locale.m4 (gl_HARD_LOCALE): Do not check for stdlib.h,
18346         string.h.
18347         * m4/hash.m4 (gl_HASH): Do not check for stdlib.h, malloc, free.
18348         * m4/human.m4 (gl_HUMAN): Do not check for stdlib.h, string.h, getenv.
18349         * m4/idcache.m4 (gl_IDCACHE): Do not check for standard C headers,
18350         or for string.h.
18351         * m4/long-options.m4 (gl_LONG_OPTIONS): Do not check for stdlib.h.
18352         * m4/makepath.m4 (gl_MAKEPATH): Do not check for string.h or standard
18353         C headers.
18354         * m4/md5.m4 (gl_MD5): Don't check for limits.h, standard C headers,
18355         memcpy.
18356         * m4/sha.m4 (gl_SHA): Don't check for standard Cheaders, memcpy.
18357         * m4/memchr.m4 (jm_PREREQ_MEMCHR): Don't check for limits.h, stdlib.h.
18358         * m4/memcmp.m4 (gl_PREREQ_MEMCMP): Don't check for string.h.
18359         * m4/memcoll.m4 (gl_MEMCOLL): Likewise.
18360         * m4/memrchr.c (gl_PREREQ_MEMRCHR): Don't check for limits.h.
18361         * m4/mkdir-slash.m4 (gl_PREREQ_MKDIR): Don't check for stdlib.h,
18362         string.h, free.
18363         * m4/mktime.m4 (gl_PREREQ_MKTIME): Don't check for standard C headers.
18364         * m4/modechange.m4 (gl_MODECHANGE): Don't check for standard C headers.
18365         * m4/mountlist.m4 (gl_PREREQ_MOUNTLIST_EXTRA): Don't check for standard
18366         C headers, or for string.h.
18367         * m4/obstack.m4 (gl_OBSTACK): Don't check for stddefe.h, string.h.
18368         (gl_PREREQ_OBSTACK): Don't check for stdlib.h.
18369         * m4/path-concat.m4 (gl_PATH_CONCAT): Don't check for standard C
18370         headers, memory.h, stdlib.h, string.h, strings.h.
18371         * m4/posixtm.m4 (gl_POSIXTM): Don't check for stdlib.h, string.h.
18372         * m4/posixver.m4 (gl_POSIXVER): Don't check for getenv.
18373         * m4/putenv.m4 (gl_PREREQ_PUTENV): Don't check for string.h, memcpy,
18374         strchr.
18375         * m4/readtokens.m4 (gl_READTOKENS): Don't check for standard C
18376         headers, memory.h, string.h.
18377         * m4/regex.m4 (jm_PREREQ_REGEX): Do not check for limits.h, string.h.
18378         * m4/rename.m4 (gl_PREREQ_RENAME): Do not check for stdlib.h, string.h,
18379         free.
18380         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Don't check for standard C
18381         headers.
18382         * m4/same.m4 (gl_SAME): Don't check for stdlib.h, string.h, free.
18383         * m4/save-cwd.m4 (gl_SAVE_CWD): Don't check for standard C headers.
18384         * m4/savedir.m4 (gl_SAVEDIR): Don't check for standard C headers.
18385         * m4/strchrnul.m4 (gl_PREREQ_STRCHRNUL): Don't check for string.h.
18386         * m4/xgetcwd.m4 (gl_XGETCWD): Don't check for stdlib.h.
18387
18388 2003-09-09  Paul Eggert  <eggert@twinsun.com>
18389
18390         More K&R removal.
18391
18392         * lib/acosl.c (main): Use a prototype.
18393         * lib/asinl.c, cosl.c, expl.c, frexpl.c, ldexpl.c, sinl.c,
18394         tanl.c: Likewise.
18395
18396         * lib/getloadavg.c (getloadavg, main): Define via prototypes.
18397
18398         * lib/getopt.h (struct option.name): Assume C89, and use 'const'.
18399         (getopt, etopt_long, getopt_long_only, _getopt_internal)
18400         [defined __GNU_LIBRARY__]: Assume C89, so we can always declare
18401         with a prototype.
18402         * lib/getopt.c (const): Remove macro.
18403         Include <string.h> unconditionally.
18404         (my_index): Remove; all uses changed to strchr.
18405         (strlen): Remove decl.
18406         (exchange): Remove forward decl; no longer needed.
18407         (exchange, _getopt_initialize, _getopt_internal, getopt, main):
18408         Define with prototype.
18409         * lib/getopt1.c (const): Remove macro.
18410         (getopt_long, getopt_long_only, main): Define with prototype.
18411
18412         * lib/getugroups.c: Include <string.h> unconditionally.
18413
18414         * lib/getusershell.c: Include <stdlib.h> unconditionally.
18415         (getusershell, setusershell, endusershell, readname, main):
18416         Define with prototypes.
18417
18418         * lib/group-member.c: Include group-member.h first.
18419         Include <stdlib.h> unconditionally.
18420
18421         * lib/hard-locale.c: Include hard-locale.h first.
18422         Include <stdlib.h>, <string.h> unconditionally.
18423
18424         * lib/hash.c (free, malloc): Remove decls.
18425         Include <stdlib.h> unconditionally.
18426
18427         * lib/human.c: Include <stdlib.h>, <string.h> unconditionally.
18428         (getenv): Do not declare.
18429
18430         * lib/idcache.c: Include <string.h> unconditionally.
18431
18432         * lib/long-options.c: Include long-options.h first, to test interface.
18433         Include <stdlib.h> unconditionally.
18434
18435         * lib/makepath.c: Include makepath.h first, to test interface.
18436         Include <stdlib.h> and <string.h> unconditionally.
18437
18438         * lib/linebuffer.c: Include <stdlib.h>.
18439         (free): Remove decl.
18440
18441         * lib/malloc.c: Include <stdlib.h>, for malloc; don't bother with
18442         stddef.h. rpl_malloc returns void *, not char *.
18443         * lib/realloc.c (rpl_realloc): Likewise.  Also, define with a
18444         prototype.
18445
18446         * lib/md5.h: Include <limits.h> unconditionally.
18447         (UINT_MAX_32_BITS): Don't worry about non-__STDC__ case.
18448         (__P): Remove; all uses removed.
18449         * lib/md5.c: Include "md5.h" first.
18450         (md5_init_ctx, md5_read_ctx, md5_finish_ctx, md5_stream,
18451         md5_buffer, md5_process_bytes, md5_process_block):
18452         Define with prototypes.
18453         * lib/sha.h (__P): Remove all uses.  (It wasn't defined??)
18454         * lib/sha.c: Include "sha.h" first.
18455         Include <stdlib.h>, <string.h> unconditionally.
18456
18457         * lib/memchr.c (__ptr_t): Remove; all uses changed to void *.
18458         * lib/memcmp.c (__ptr_t): Likewise.
18459         * lib/memrchr.c (__ptr_t): Likewise.
18460         * lib/memchr.c, memcmp.c, memcoll.c, memrchr.c:
18461         Include <string.h> unconditionally.
18462         * lib/memchr.c, memrchr.c: Include <limits.h> unconditionally.
18463         * lib/memchr.c: Include <stdlib.h> unconditionally.
18464         * lib/memchr.c (LONG_MAX): Remove.
18465         * lib/memrchr.c (LONG_MAX): Likewise.
18466         * lib/memchr.c (__memchr): Define via a prototype.
18467         * lib/memrchr.c (__memrchr): Likewise.
18468         * lib/memcmp.c (__P): Remove, and remove all uses.
18469         (memcmp_bytes, memcmp_common_alignment, memcmp_not_common_alignment):
18470         Remove forward decls; no longer needed.
18471         * lib/memcpy.c, memmove.c, memset.c: Include <stddef.h>.
18472         Use types required by C89 in prototype.
18473
18474         * lib/mkdir.c: Include <stdlib.h>, <string.h> unconditionally.
18475         * lib/savedir.c: Likewise.
18476         * lib/mkdir.c (free): Remove decl.
18477         * lib/rmdir.c (rmdir): Define with a prototype.
18478         * lib/savedir.c: Include savedir.h first, to test interface.
18479
18480         * lib/mktime.c (STDC_HEADERS): Remove.
18481         Include <stdlib.h>, <string.h> unconditionally.
18482
18483         * lib/modechange.c: Include <stdlib.h> unconditionally.
18484         (malloc): Remove decl.
18485
18486         * lib/mountlist.c: Include <stdlib.h>, <string.h> unconditionally.
18487         (free): Remove decl.
18488
18489         * lib/obstack.h (PTR_INT_TYPE) [!defined __PTRDIFF_TYPE__]:
18490         Define to ptrdiff_t, without bothering to check HAVE_STDDEF_H.
18491         (This type really should be intptr_t, but that's a C99ism.)
18492         (_obstack_memcpy): Remove: all uses changed to memcpy.
18493         Include <string.h> unconditionally.
18494         (struct obstack): Assume __STDC__ for types of members
18495         chunkfun, freefun, extra_arg.
18496         (_obstack_newchunk, _obstack_free, _obstack_begin, _obstack_begin_1,
18497         _obstack_memory_used, obstack_alloc_failed_handler, obstack_init,
18498         obstack_begin, obstack_specify_allocation,
18499         obstack_specify_allocation_with_arg, obstack_chunkfun,
18500         obstack_freefun, obstack_free) [! (defined __STDC__ && __STDC__)]:
18501         Remove unprototyped decls and the macros that use them.
18502         * lib/obstack.c (POINTER): Remove.  All uses changed to void *.
18503         (obstack_alloc_failed_handler, CALL_CHUNKFUN, CALL_FREEFUN,
18504         _obstack_begin, _obstack_begin_1, _obstack_allocated_p)
18505         (defined __STDC__ && __STDC__)]:
18506         Remove nonprototyped code.
18507         Include <stdlib.h> unconditionally.
18508         (_obstack_begin, _obstack_begin_1, _obstack_newchunk,
18509         _obstack_allocated_p, _obstack_free, obstack_free,
18510         _obstack_memory_used, print_and_abort):
18511         Define using prototypes.
18512         (obstack_1grow, obstack_1grow_fast, obstack_alloc, obstack_base,
18513         obstack_blank, obstack_blank_fast, obstack_copy, obstack_copy0,
18514         obstack_finish, obstack_grow, obstack_grow0, obstack_make_room,
18515         obstack_next_free, obstack_object_size, obstack_room) [0]:
18516         Remove unused, unprototyped code.
18517
18518         * lib/path-concat.c: Include <stdlib.h>, <string.h> unconditionally.
18519
18520         * lib/physmem.c (physmem_total, physmem_available, main): Define
18521         with prototypes.
18522
18523         * lib/posixtm.c: Include <stdlib.h>, <string.h> unconditionally.
18524         (main): Define with a prototype.
18525
18526         * lib/posixver.c (getenv): Remove decl.
18527
18528         * lib/putenv.c (malloc): Returns void *, not char *.
18529         Include <string.h> unconditionally.
18530         (strchr, memcpy, NULL): Do not define.
18531
18532         * lib/readtokens.c: Include readtokens.h first, to test interface.
18533         Include <stdlib.h>, <string.h> unconditionally.
18534         (init_tokenbuffer): Define with a prototype.
18535
18536         * lib/regex.c (PARAMS): Remove.  All uses removed.
18537         All uses of _RE_ARGS removed, too.
18538         Include <stddef.h>, <stdlib.h>, <string.h>, <limits.h>
18539         unconditionally.
18540         (bzero): Assume memset exists.
18541         (memcmp, memcpy, NULL): Remove.
18542         (SIGN_EXTEND_CHAR): Remove; all uses replaced by casts to signed
18543         char, or assignments to local vars of type signed char.
18544         (init_syntax_once, PREFIX(extract_number_and_incr),
18545         PREFIX(print_partial_compiled_pattern),
18546         PREFIX(print_compiled_pattern), PREFIX(print_double_string),
18547         convert_mbs_to_wcs, print_fastmap, re_set_syntax,
18548         PREFIX(regex_grow_registers), PREFIX(regex_compile),
18549         PREFIX(store_op1), PREFIX(store_op2), PREFIX(insert_op1),
18550         PREFIX(insert_op2), PREFIX(at_begline_loc_p),
18551         PREFIX(at_endline_loc_p), group_in_compile_stack, insert_space,
18552         wcs_compile_range, byte_compile_range, truncate_wchar,
18553         PREFIX(re_compile_fastmap), re_compile_fastmap, re_set_registers,
18554         re_search, re_search_2, PREFIX(re_search_2), re_match, re_match_2,
18555         count_mbs_length, wcs_re_match_2_internal,
18556         byte_re_match_2_internal, PREFIX(group_match_null_string_p),
18557         PREFIX(alt_match_null_string_p),
18558         PREFIX(common_op_match_null_string_p), PREFIX(bcmp_translate),
18559         re_compile_pattern, re_comp, re_exec, regcomp, regexec, regerror,
18560         regfree, PREFIX(extract_number)): Define with prototype.  Remove
18561         now-unnecessary declaration, if any.
18562         (byte_compile_range, PREFIX(regex_compile), re_comp, re_exec,
18563         regcomp, regexec):
18564         Remove now-unnecessary casts among pointer types.
18565         * lib/regex.h (_RE_ARGS): Remove.  All uses removed.
18566
18567         * lib/rename.c: Include <stdlib.h>, <string.h> unconditionally.
18568         (free): Remove decl.
18569
18570         * lib/rpmatch.c: Include <stdlib.h> unconditionally.
18571
18572         * lib/same.c: Include <stdlib.h>, <string.h> unconditionally.
18573         (free): Remove decl.
18574
18575         * lib/save-cwd.c: Include <stdlib.h> unconditionally.
18576         * lib/xgetcwd.c: Likewise.
18577
18578         * lib/stat.c: Include <stdlib.h>, <string.h> unconditionally.
18579         (free): Remove decl.
18580
18581         * lib/strchrnul.c (strchrnul): Define with a prototype.
18582         Fix bug: c_in was not converted to char before searching.
18583
18584         The following changes are not K&R related:
18585
18586         * lib/group-member.h: Include <sys/types.h>, so that this file is
18587         self-contained.
18588         * lib/makepath.h: Likewise.
18589
18590         * lib/getusershell.c (readname, default_index, line_size, readname):
18591         Use size_t, not int, for sizes.
18592         (readname): If the size overflows, report an error instead of
18593         looping forever.
18594
18595 2003-09-09  Paul Eggert  <eggert@twinsun.com>
18596
18597         * config/srclist.txt: Do not get getopt.h, getopt1.c, or regex.h from
18598         libc.
18599
18600 2003-09-09  Paul Eggert  <eggert@twinsun.com>
18601
18602         * README: New section: portability guidelines.
18603
18604 2003-09-09  Derek Robert Price  <derek@ximbiot.com>
18605
18606         * m4/getndelim2.m4 (gl_PREREQ_GETNDELIM2): Assume stdlib.h per the
18607         C89 spec.
18608
18609 2003-09-09  Derek Robert Price  <derek@ximbiot.com>
18610
18611         * lib/getndelim2.c: Assume stdlib.h per the C89 spec.
18612
18613 2003-09-08  Paul Eggert  <eggert@twinsun.com>
18614
18615         Assume C89 or better; remove K&R cruft.
18616         A few of these changes were first proposed by Derek Robert Price
18617         in <http://mail.gnu.org/archive/html/bug-gnulib/2003-07/msg00105.html>.
18618
18619         * lib/addext.c: Include <string.h> unconditionally.
18620         * lib/backupfile.c: Include <string.h>, <stdlib.h> unconditionally.
18621         Don't declare getenv or malloc.
18622
18623         * lib/alloca.c: Include <string.h>, <stdlib.h> unconditionally.
18624         (POINTER_TYPE, pointer): Remove; all uses changed to void *.
18625         (NULL): Remove.
18626         (find_stack_direction, alloca): Use prototypes.
18627
18628         * lib/atexit.c (atexit): Define using a prototype.
18629
18630         * lib/basename.c, dirname.c, stripslash.c:
18631         Include <string.h> unconditionally.
18632
18633         * lib/bcopy.c: Include <stddef.h>.
18634         (bcopy): Define with prototype, using 'const' and 'void' and 'size_t'.
18635
18636         * lib/canon-host.c: Include <stdlib.h>, <string.h> unconditionally.
18637
18638         * lib/error.h (error, error_at_line, error_print_progname)
18639         [! (defined (__STDC__) && __STDC__)]: Remove decls.
18640         * lib/error.c: Include error.h first, to check interface.
18641         Include <stdarg.h>, <stdlib.h>, <string.h> unconditionally.
18642         (VA_START): Remove; all uses changeed to va_start.
18643         (exit, strerror): Remove decls.
18644         (error_print_progname): Prototype uncondionally.
18645         Don't include <errno.h>; no longer needed.
18646         (private_strerror): Remove.
18647         (error_tail): Always define.
18648         (error, error_at_line): Assume C89 or better; always use prototypes.
18649         * lib/fatal.c: Include "fatal.h" first, to test interface.
18650         Include <stdarg.h>, <stdlib.h>, <string.h> unconditionally.
18651         (VA_START): Remove; all uses changed to va_start.
18652         [! (HAVE_VPRINTF || HAVE_DOPRNT || _LIBC)]: Remove support for
18653         this case.
18654         (exit): Remove decl.
18655         (fatal): Prototype unconditionally.  Assume va_start works.
18656         Abort at end, to pacify gcc.
18657
18658         * lib/euidaccess.c (main): Define with a prototype.
18659
18660         * lib/exclude.c: Include <stdlib.h>, <string.h> unconditionally.
18661
18662         * lib/exitfail.c: Include <stdlib.h> unconditionally.
18663
18664         * lib/fnmatch_.h (__P): Remove.  All uses changed to assume
18665         prototypes.
18666         * lib/fnmatch.c: Include fnmatch.h first, to test interface.
18667         Include <string.h>, <stddef.h>, <stdlib.h> unconditionally.
18668         (getenv): Remove decl.
18669         (fnmatch): Define using a prototype.
18670         * lib/fnmatch_loop.c (FCT): Remove forward decl; no longer needed.
18671         (FCT): Define using a prototype.
18672
18673         * lib/getdate.y: Include <stdlib.h>, <string.h> unconditionally.
18674
18675         * lib/gethostname.c: Include <stddef.h>.
18676         (gethostname): Define with prototype.  Length is size_t, not int.
18677
18678 2003-09-08  Paul Eggert  <eggert@twinsun.com>
18679
18680         Assume C89 or better; remove K&R cruft.
18681         * m4/alloca.m4 (gl_PREREQ_ALLOCA): Don't check for stdlib.h, string.h.
18682         * m4/backupfile.m4 (gl_BACKUPFILE): Don't check for stdlib.h,
18683         string.h, getenv, malloc.
18684         * m4/dirname.m4 (gl_DIRNAME): Don't check for string.h or C standard
18685         headers.
18686         * m4/canon-host.m4 (gl_CANON_HOST): Don't check for string.h, stdlib.h.
18687         * m4/error.m4 (jm_PREREQ_ERROR): Do not require STDC headers, and
18688         do not check for strerror.
18689         * m4/exclude.m4: Do not check for stdlib.h, string.h, strings.h.
18690         * m4/exitfail.m4 (gl_EXITFAIL): Do not check for stdlib.h.
18691         * m4/fatal.m4 (gl_FATAL): Do not require STDC headers, and
18692         do not check for doprnt or vprintf.
18693         * m4/fnmatch.m4 (gl_PREREQ_FNMATCH_EXTRA): Remove.  All uses removed.
18694         * m4/getdate.m4 (gl_GETDATE): Don't check for stdlib.h or string.h.
18695
18696 2003-09-08  Paul Eggert  <eggert@twinsun.com>
18697
18698         * lib/getversion.c: Remove; was migrated to backupfile.c in 1997.
18699         getversion.c should have been removed then, but was accidentally
18700         preserved.
18701
18702         * lib/utime.c [!HAVE_UTIMES_NULL]: Include <sys/stat.h>, <fcntl.h>.
18703         (utime_null): Fix typo: 'st' was sometimes called 'sb'.
18704
18705 2003-09-08  Karl Berry  <karl@gnu.org>
18706
18707         * config/config.sub, config.guess, srclistvars.sh: update from savannah
18708                 config, forget about prep.
18709
18710         * config/depcomp, missing: update from automake.
18711
18712 2003-09-07  Paul Eggert  <eggert@twinsun.com>
18713
18714         * modules/time_r: Depend on 'restrict'.  Fix from Simon Josefsson in
18715         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00028.html>.
18716
18717 2003-09-07  Paul Eggert  <eggert@twinsun.com>
18718
18719         * lib/time_r.c (gmtime_r, localtime_r): Fix silly typo: missing arg to
18720         copy_tm_result.  Bug reported by Simon Josefsson in
18721         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00028.html>.
18722
18723 2003-09-06  Paul Eggert  <eggert@twinsun.com>
18724
18725         * m4/time_r.m4: New file.
18726         * m4/mktime.m4 (gl_PREREQ_MKTIME): Remove check for limits.h.
18727         * m4/timegm.m4 (gl_FUNC_TIMEGM): Assume that timegm is buggy if mktime
18728         is. Check for timegm declaration.
18729         (gl_PREREQ_TIMEGM): Require gl_FUNC_MKTIME.
18730         Do not check for gmtime_r.
18731         Replace mktime if __mktime_internal does not exist and if mktime
18732         hasn't been replaced already.
18733
18734 2003-09-06  Paul Eggert  <eggert@twinsun.com>
18735
18736         * lib/time_r.c, lib/time_r.h: New files.
18737
18738         * lib/mktime.c (my_mktime_localtime_r): Remove; all uses changed to
18739         __localtime_r.
18740         (__localtime_r) [!defined _LIBC]: New macro.  Include <time_r.h>.
18741         (__mktime_internal) [!defined _LIBC]: Now extern, not static.
18742
18743         * lib/strftime.c (my_strftime_gmtime_r): Remove; all uses changed to
18744         __gmtime_r.
18745         (my_strftime_localtime_r): Remove; all uses changed to __localtime_r.
18746         (__gtime_r, __localtime_r) [!HAVE_TM_GMTOFF]: New macros.
18747         Include <time_r.h>.
18748
18749         * lib/timegm.c: Switch to glibc implementation, with the following
18750         changes:
18751         [defined HAVE_CONFIG_H]: Include <config.h>.
18752         [!defined _LIBC]: Include "timegm.h" rather than <time.h>.
18753         (__mktime_internal) [!defined _LIBC]: New decl.
18754         (__gmtime_r) [!defined _LIBC]: New macro and function.
18755         (timegm): Use a prototype, since gnulib assumes C89.
18756         Do not bother declaring tmp to be const, as it's not really usefu.
18757         * lib/timegm.h: Hoist "#include <time.h>" out of #ifdef.
18758         (timegm): Declare only if HAVE_DECL_TIMEGM.
18759
18760 2003-09-06  Paul Eggert  <eggert@twinsun.com>
18761
18762         * MODULES.html.sh (func_all_modules): Add time_r.
18763         * modules/time_r: New file.
18764         * modules/mktime, modules/strftime, modules/timegm: Depend on time_r.
18765         * modules/timegm: Depend on mktime.  Change maintainer to "all, glibc".
18766
18767 2003-09-03  Paul Eggert  <eggert@twinsun.com>
18768
18769         * lib/human.c (human_readable): Fix bug that rounded 10501 to 10k.
18770         Bug reported by Lute Kamstra in
18771         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00003.html>.
18772
18773         * lib/getdate.y (relative_time_table): Use tDAY_UNIT for "tomorrow",
18774         "yesterday", "today", and "now" rather than tMINUTE_UNIT.  Of
18775         course with correspondingly smaller numbers for tomorrow and
18776         yesterday.  From Tadayoshi Funaba.  Originally installed into
18777         sh-utils on 1999-08-07, but the patch got lost (I guess during the
18778         coreutils merge?).
18779
18780 2003-08-31  Simon Josefsson  <jas@extundo.com>
18781
18782         * modules/timegm: New file.
18783         * MODULES.html.sh (func_all_modules): Add timegm.
18784
18785 2003-08-31  Simon Josefsson  <jas@extundo.com>
18786
18787         * m4/timegm.m4: New file.
18788
18789 2003-08-31  Simon Josefsson  <jas@extundo.com>
18790
18791         * lib/timegm.h: New file.
18792         * lib/timegm.c: New file.  Based on
18793         wget-1.8.2/src/http.c:mktime_from_utc.
18794
18795 2003-08-31  Karl Berry  <karl@gnu.org>
18796
18797         * lib/argp.h: update from libc.
18798
18799 2003-08-28  Bruno Haible  <bruno@clisp.org>
18800
18801         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Remove AC_DEFINE of fnmatch here.
18802         This avoids havoc on compilers for which '#define fnmatch rpl_fnmatch'
18803         followed by '#define fnmatch fnmatch_posix' gives an error.
18804
18805 2003-08-28  Bruno Haible  <bruno@clisp.org>
18806
18807         * lib/binary-io.h: Undefine O_BINARY before defining it. This avoids a
18808         warning on QNX, which defines O_BINARY to 000000.
18809
18810 2003-08-27  Jim Meyering  <jim@meyering.net>
18811
18812         * m4/mkstemp.m4: Require that the system mkstemp be able to create
18813         70 temporary files, not just 30.  Tru64 V4.0F's mkstemp function
18814         would fail after 32.  Reported by Danny Levinson.  Details here:
18815         http://mail.gnu.org/archive/html/bug-coreutils/2003-08/msg00124.html
18816
18817 2003-08-24  Bruno Haible  <bruno@clisp.org>
18818
18819         * lib/binary-io.h: Include <stdio.h>, to avoid a compilation error when
18820         MSVC7 <stdio.h> is included later.
18821
18822 2003-08-22  Simon Josefsson  <jas@extundo.com>
18823
18824         * modules/strndup (Makefile.am): Add strndup.h to lib_SOURCES.
18825
18826 2003-08-20  Karl Berry  <karl@gnu.org>
18827
18828         * m4/lib-ld.m4: serial 1003 from gettext, no changes besides serial.
18829
18830 2003-08-20  Bruno Haible  <bruno@clisp.org>
18831
18832         * modules/progname: New file.
18833         * MODULES.html.sh (func_all_modules): Add progname.
18834
18835 2003-08-20  Bruno Haible  <bruno@clisp.org>
18836
18837         * lib/progname.h: New file, from GNU gettext.
18838         * lib/progname.c: New file, from GNU gettext.
18839         * lib/progreloc.c: New file, from GNU gettext.
18840
18841 2003-08-19  Jim Meyering  <jim@meyering.net>
18842
18843         * m4/lib-ld.m4: Revert yesterday's change, per Bruno's request here:
18844         http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00155.html
18845
18846 2003-08-19  Bruno Haible  <bruno@clisp.org>
18847
18848         * m4/xalloc.m4 (gl_PREREQ_XSTRDUP): Don't check for <string.h> any
18849         more.
18850
18851 2003-08-19  Bruno Haible  <bruno@clisp.org>
18852
18853         * lib/xstrdup.c: Assume <string.h> exists.
18854
18855 2003-08-18  Paul Eggert  <eggert@twinsun.com>
18856
18857         * modules/stdbool: Add BUILT_SOURCES.  Prefer $@ to target name
18858         in makefile rules.
18859
18860 2003-08-18  Jim Meyering  <jim@meyering.net>
18861
18862         * m4/getloadavg.m4: Use [\t ], not [ \t] (where \t is a literal TAB).
18863         * m4/lib-ld.m4: Likewise.
18864
18865 2003-08-18  Jim Meyering  <jim@meyering.net>
18866
18867         * lib/setenv.h: Indent nested cpp directive.
18868         * lib/vasnprintf.c: Remove trailing blanks.
18869
18870 2003-08-17  Simon Josefsson  <jas@extundo.com>
18871
18872         * modules/xstrndup: New file.
18873         * MODULES.html.sh (func_all_modules): Add xstrndup.
18874
18875 2003-08-17  Simon Josefsson  <jas@extundo.com>
18876
18877         * modules/argp: Fix autoconf macro name. Add more dependencies.
18878
18879 2003-08-17  Simon Josefsson  <jas@extundo.com>
18880
18881         * m4/xstrndup.m4: New file.
18882
18883 2003-08-17  Simon Josefsson  <jas@extundo.com>
18884
18885         * m4/argp.m4: New file.
18886
18887 2003-08-17  Simon Josefsson  <jas@extundo.com>
18888             Bruno Haible  <bruno@clisp.org>
18889
18890         * lib/xstrndup.h: New file.
18891         * lib/xstrndup.c: New file.
18892
18893 2003-08-17  Bruno Haible  <bruno@clisp.org>
18894
18895         * modules/strndup (Files, Include): Add lib/strndup.h.
18896
18897 2003-08-17  Bruno Haible  <bruno@clisp.org>
18898
18899         * modules/euidaccess (Files): Add lib/euidaccess.h.
18900
18901 2003-08-17  Bruno Haible  <bruno@clisp.org>
18902
18903         * lib/strndup.h: New file.
18904
18905 2003-08-17  Bruno Haible  <bruno@clisp.org>
18906
18907         * gnulib-tool (func_create_testdir): Handle gl_USE_SYSTEM_EXTENSIONS
18908         like AC_GNU_SOURCE.
18909         * modules/extensions (configure.ac): Comment out the invocation of
18910         gl_USE_SYSTEM_EXTENSIONS.
18911
18912 2003-08-16  Paul Eggert  <eggert@twinsun.com>
18913
18914         Merges from coreutils, etc.
18915         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Insert ':' to prevent a syntax
18916         error in gl_FUNC_MATCH.  This fixes a bug I introduced on 2003-05-28.
18917         * m4/readlink.m4 (gl_PREREQ_READLINK): Renamed from gl_PREREQ_READLINE,
18918         fixing a typo.
18919         * m4/host-os.m4 (UTILS_HOST_OS): Add GNU/NetBSD, GNU/FreeBSD.
18920         * m4/hash.m4 (gl_HASH): Use AM_STDBOOL_H, not AC_HEADER_STDBOOL.
18921
18922 2003-08-16  Paul Eggert  <eggert@twinsun.com>
18923
18924         Document merge from coreutils.
18925         * modules/alloca: Append $(ALLOCA_H) to BUILT_SOURCES.
18926         * modules/fnmatch: Append $(FNMATCH_H) to BUILT_SOURCES.
18927         * modules/utime: Add m4/utimes-null.m4.
18928
18929 2003-08-16  Paul Eggert  <eggert@twinsun.com>
18930
18931         * lib/regex.h, strdup.c, strtoll.c, strtoul.c: Do not normalize white
18932         space, undoing this 2003-08-12 change:
18933         <http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00080.html>
18934
18935 2003-08-16  Paul Eggert  <eggert@twinsun.com>
18936
18937         * config/srclist.txt: Get regex.h, strdup.c, strtoll.c,
18938         strtoul.c from libc, undoing this 2003-08-12 change:
18939         <http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00080.html>
18940
18941 2003-08-16  Jim Meyering  <jim@meyering.net>
18942
18943         Merges from coreutils.
18944         * m4/readdir.m4 (GL_FUNC_READDIR): Change name to have GL_ (not jm_)
18945         prefix.  Adjust cache variables similarly.  Create 500 rather than
18946         just 300 files, to exercise bug on Darwin6.5, too.
18947         * m4/perl.m4 (jm_PERL): Use $am_missing_run, not undefined
18948         $missing_dir.
18949         * m4/jm-winsz1.m4: Require AC_SYS_POSIX_TERMIOS, not
18950         AM_SYS_POSIX_TERMIOS.
18951         Reported by mkc@mathdogs.com.
18952         Also change use of $am_cv_sys_posix_termios
18953         to $ac_cv_sys_posix_termios.  Reported by Andreas Schwab.
18954         * m4/getgroups.m4 (jm_FUNC_GETGROUPS): Rewrite to use AC_FUNC_GETGROUPS
18955         and (if needed) to call AC_LIBOBJ and to set GETGROUPS_LIB.
18956         * m4/fsusage.m4 [__GLIBC__]: GNU libc's statvfs stats each mount point
18957         in /proc/mounts until it finds one with matching device number.  This
18958         is unnecessary when the FILE argument *is* a mount point.  No stat call
18959         is necessary in that case.  So, disable the statvfs-testing code on
18960         systems with GNU libc.  Reported by Andrei Gaponenko via Tim Waugh
18961         as RedHat bug# 84846.
18962         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Limit stack size
18963         to 1MB, so as not to render systems with no stack size limit (e.g.,
18964         linux-2.2.x) unusable.  Suggestion and code from Bruno Haible.
18965         Include <unistd.h>.  On some systems,
18966         it is required for the definition of _SC_PAGESIZE.
18967
18968 2003-08-16  Jim Meyering  <jim@meyering.net>
18969
18970         Merge from coreutils.
18971         * lib/xstrtoimax.c: #else #if -> #elif.
18972         * lib/xstrtoumax.c: Likewise.
18973
18974 2003-08-16  Jim Meyering  <jim@meyering.net>
18975
18976         * m4/utimes.m4 (gl_FUNC_UTIMES): New file.
18977         * m4/utimes.m4: Removed.
18978         * m4/utimes-null.m4: Renamed from utimes.m4.
18979
18980         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Limit stack size
18981         to 1MB, so as not to render systems with no stack size limit (e.g.,
18982         linux-2.2.x) unusable.  Suggestion and code from Bruno Haible.
18983         Include <unistd.h>.  On some systems,
18984         it is required for the definition of _SC_PAGESIZE.
18985
18986 2003-08-16  Jim Meyering  <jim@meyering.net>
18987         and Paul Eggert  <eggert@cs.ucla.edu>
18988
18989         Merges from coreutils, etc.
18990
18991         * m4/jm-macros.m4 (AC_LANG_SOURCE(C)): New macro, undefine, then define
18992         using the latest version from cvs.  This avoids problems with #line
18993         directives using a vendor (Sun) compiler.
18994         (jm_MACROS): Bump prerequisite from 2.52g to 2.57.
18995         Don't set GETGROUPS_LIB here; now it's
18996         done via getgroups.m4's wrapper function.
18997         AC_SUBST OPTIONAL_BIN_PROGS, OPTIONAL_BIN_ZCRIPTS, and MAN here,
18998         rather than just in sh-util/configure.in, so that the
18999         now-shared-by-fileutils-and-textutils lib/Makefile.am are all the
19000         same.
19001         Use AC_CONFIG_LIBOBJ_DIR(lib) to tell the new
19002         AC_FUNC_GETLOADAVG where to find getloadavg.c.
19003         Require AC_FUNC_FTW, gt_INTTYPES_PRI, gl_CLOCK_TIME,
19004         UTILS_SYS_OPEN_MAX, GL_FUNC_GETCWD_PATH_MAX, GL_FUNC_READDIR,
19005         gl_FSUSAGE, gl_MOUNTLIST, AC_FUNC_CANONICALIZE_FILE_NAME.
19006         Remove code that is now done by the newly-required macros.
19007         Append $(EXEEXT) to DF_PROG.
19008         AC_LIBOBJ fchdir-stub if fchdir doesn't exist; similarly for fchown.
19009         Do not invoke or require the following here,
19010         since prereq.m4 or some gnulib .m4 now does this for us:
19011         gl_REGEX, UTILS_FUNC_MKDIR_TRAILING_SLASH, jm_BISON, gl_FUNC_MKTIME,
19012         jm_FUNC_LSTAT, jm_FUNC_STAT, jm_FUNC_REALLOC, jm_FUNC_MALLOC,
19013         jm_FUNC_NANOSLEEP, jm_FUNC_READDIR, jm_FUNC_MEMCMP,
19014         jm_FUNC_GLIBC_UNLOCKED_IO, AC_FUNC_FNMATCH_GNU, jm_FUNC_PUTENV,
19015         jm_AC_PREREQ_XSTRTOUMAX, jm_AC_PREREQ_XSTRTOIMAX,
19016         AC_FUNC_ERROR_AT_LINE, jm_FUNC_GNU_STRFTIME, AC_FUNC_VPRINTF,
19017         vb_FUNC_RENAME, UTILS_FUNC_MKSTEP, jm_FUNC_UTIME, AM_FUNC_GETLINE,
19018         AC_FUNC_OBSTACK.
19019         Do not replace the following functions, as this is now the job
19020         of some gnulib .m4: strcasecmp, strncasecmp, dup2, gethostname,
19021         getusershell, sig2str, strcspn, stpcpy, strstr, strtol, strtoul
19022         strpbrk, euidaccess, memcmp, rmdir, rpmatch, strndup, strverscmp,
19023         atexit getpass, strdup, getpagesize.
19024         Replace 'raise'.
19025         Do not check for the following functions, as this is now the job
19026         of some gnulib .m4: bcopy, canonicalize_file_name, fchdir, ftime,
19027         getcwd, getmntinfo, resolvepath.  But check for sysctl, setreuid,
19028         setregid.
19029         (jm_CHECK_ALL_HEADERS): Do not check for fenv.h.
19030         Check for sys/sysctl.h.
19031         (jm_CHECK_ALL_TYPES): Do not require AC_STRUCT_TM, AC_STRUCT_TIMEZONE,
19032         jm_CHECK_TYPE_STRUCT_TIMESPEC.  Invoke gt_TYPE_SSIZE_T instead
19033         of checking for ssize_t ourselves.
19034
19035         * m4/prereq.m4 (jm_PREREQ): Don't invoke macros; AC_REQUIRE them.
19036         Require every macro that gnulib/modules/* suggests for us.
19037         (jm_PREREQ_ADDEXT): New macro.
19038         (jm_PREREQ_STAT): Check for 'struct statfs' on Ultrix 4.4.
19039         Require jm_AC_TYPE_LONG_LONG instead of invoking it.
19040
19041         * m4/physmem.m4 (gl_SYS__SYSTEM_CONFIGURATION): New macro.
19042         (gl_PHYSMEM): Use it.
19043         Also check for `table' function.
19044         Check for new headers and functions.
19045         Add check for sys/sysmp.h.
19046         With suggestions from Kaveh Ghazi.
19047         Ignore headers that are present but cannot be compiled.  This
19048         avoids spurious warnings on Solaris 9 sparc with Forte Developer 7
19049         C 5.4.
19050
19051 2003-08-15  Paul Eggert  <eggert@twinsun.com>
19052
19053         Document merge from coreutils.
19054         * modules/userspec: Depend on posixver.
19055         * modules/strftime: Depend on tzset.
19056
19057 2003-08-15  Paul Eggert  <eggert@twinsun.com>
19058
19059         * lib/config.charset, ref-add.sin, ref-del.sin: Use three spaces,
19060         rather than tab, after '#' in shell-script copyright notices.
19061         Suggested by Bruno Haible.
19062
19063 2003-08-15  Paul Eggert  <eggert@twinsun.com>
19064
19065         * config/srclist-update: Use three spaces, rather than tab, after '#'
19066         in shell-script copyright notices.  Suggested by Bruno Haible.
19067         Remove unnecessary parenthesization in regular expression.
19068
19069 2003-08-15  Jim Meyering  <jim@meyering.net>
19070
19071         Merge from coreutils.
19072         * lib/xgethostname.c: Include <stdlib.h>.
19073         (xghostname): Don't exit for anything other than memory-related
19074         failure; just return NULL.
19075         * lib/userspec.c: Include "posixver.h".
19076         (parse_user_spec): Accept `.' as a separator only
19077         in pre-POSIX-200112 mode.
19078         * lib/strtoimax.c: Use #elif rather than #else #if.
19079         * lib/strftime.c (my_strftime) [!_LIBC && HAVE_TZNAME && HAVE_TZSET]:
19080         Remove function, now that we can rely on a working tzset function.
19081         [!_LIBC]: Ensure that the required autoconf test has been run.
19082         [!defined _NL_CURRENT && HAVE_STRFTIME]:
19083         Use underlying_strftime for %r.
19084         * lib/sha.c: Merge in some clean-up and optimization changes from
19085         glibc.
19086         * lib/sha.c (sha_stream) [BLOCKSIZE]: Move definition to top of file.
19087         Ensure that it is a multiple of 64.
19088         Rearrange loop exit tests so as to avoid performing an
19089         additional fread after encountering an error or EOF.
19090         * lib/realloc.c: Update copyright date.
19091
19092 2003-08-15  Jim Meyering  <jim@meyering.net>
19093         and Paul Eggert  <eggert@twinsun.com>
19094
19095         Merge from coreutils.
19096         * lib/readutmp.h (HAVE_UTMPX_H): Undef if struct utmp has the ut_exit
19097         member but strut utmpx does not.  Needed for AIX 4.3.3.
19098         (UT_EXIT_E_TERMINATION, UT_EXIT_E_EXIT): Define.
19099
19100 2003-08-15  Jim Meyering  <jim@meyering.net>
19101         and Paul Eggert  <eggert@cs.ucla.edu>
19102
19103         Merges from coreutils, etc.
19104         * m4/strftime.m4 (_jm_STRFTIME_PREREQS):
19105         Require gl_FUNC_TZSET_CLOBBER.
19106         * m4/readutmp.m4 (gl_READUTMP): Check for ut_exit.ut_exit,
19107         ut_exit.e_exit, ut_exit.ut_termination, and ut_exit.e_termination
19108         members.
19109
19110 2003-08-14  Paul Eggert  <eggert@twinsun.com>
19111
19112         Help the merge from coreutils.
19113         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): New macro.
19114         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Use it.
19115         * m4/tzset.m4: Use it too.
19116
19117 2003-08-14  Paul Eggert  <eggert@twinsun.com>
19118
19119         * modules/tzset: New file.
19120
19121 2003-08-14  Jim Meyering  <jim@meyering.net>
19122
19123         Merges from coreutils.
19124         * modules/fnmatch: Use the `$(FNMATCH_H)' notation for AC_REPLACED
19125         variable names, rather than @FNMATCH_H@.
19126         * modules/alloca: Likewise for $(ALLOCA_H).
19127
19128         * modules/fnmatch (fnmatch.h): Use `$@' in the commands, in place of
19129         the three copies of the literal target, `fnmatch.h'.
19130         * modules/alloca (alloca.h): Likewise.
19131
19132 2003-08-14  Jim Meyering  <jim@meyering.net>
19133
19134         Merge from coreutils.
19135         * m4/tzset.m4: New file.
19136         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Move the
19137         MOUNTED_VMOUNT test to precede the MOUNTED_GETMNTENT1 tests, since
19138         otherwise, AIX 5.1 systems would end up using the latter.
19139         MOUNTED_GETMNTENT1 support is inadequate on such systems: 1) detecting
19140         whether a file system is remote doesn't work  2) the MOUNTED_VMOUNT
19141         code reports the HOSTNAME:/MOUNT_POINT, while the MOUNTED_GETMNTENT1
19142         code reports merely /MOUNT_POINT.  Reported by Mike Jetzer.
19143
19144 2003-08-14  Jim Meyering  <jim@meyering.net>
19145
19146         Merge from coreutils.
19147         * lib/obstack.h: Whitespace changes.
19148         * lib/mountlist.c: Remove anachronistic casts of xmalloc, xrealloc,
19149         and xcalloc return values.
19150         (read_filesystem_list) [MOUNTED_GETFSSTAT]:
19151         Use MNT_NOWAIT, rather than MNT_WAIT.  Otherwise, `df DIR' could
19152         hang on OSF/1 5.1 for DIR on both local and remote file systems.
19153         Reported by (and fix confirmed by) Nelson H. F. Beebe.
19154         (read_filesystem_list) [MOUNTED_VMOUNT]: Detect any
19155         error from mntctl.
19156         Use mntctl's return value to drive the entry-processing loop, since
19157         we can't rely on the value of the vmt_length member in the last
19158         entry.  On some systems doing so could result in exhausting
19159         virtual memory.  Based in part on a patch from Mike Jetzer.
19160
19161 2003-08-14  Jim Meyering  <jim@meyering.net>
19162         and Paul Eggert  <eggert@twinsun.com>
19163
19164         Merges from coreutils, plus other fixes.
19165         * lib/physmem.c: Merge in portability changes from gcc/libiberty
19166         to support AIX, IRIX, Tru64, and Windows.  See the ChangeLog there
19167         for credits and details.  Thanks to Kaveh Ghazi for helping
19168         to keep these files in sync.
19169         (ARRAY_SIZE): Define it.
19170         (physmem_total, physmem_available): Add comments. From Kaveh Ghazi.
19171         * lib/memcasecmp.c: Remove unnecessary parentheses after 'defined'.
19172         (memcasecmp): Don't assume size_t fits in unsigned int.
19173         Remove casts and duplicate code.
19174         * lib/md5.c: Include <string.h> and <stdlib.h> unconditionally.
19175         (memcpy): Remove definition.
19176         Merge in some clean-up and optimization changes from glibc.
19177         [BLOCKSIZE]: Move definition to top of file.
19178         Ensure that it is a multiple of 64.
19179         Rearrange loop exit tests so as to avoid performing an
19180         additional fread after encountering an error or EOF.
19181         * lib/md5.h (md5_uintptr): Define.
19182         * lib/makepath.c (CLEANUP_CWD): Report an error if we failed to
19183         return to the initial working directory.  Preserve errno
19184         for caller.
19185         * lib/idcache.c: Include "xalloc.h".
19186         (xmalloc, xrealloc): Remove decls.
19187         (getuser): Remove casts no longer required in C89.
19188         * lib/human.c: Include stdio.h, for sprintf.
19189         * lib/group-member.c: Include "xalloc.h".
19190         (xmalloc, xrealloc): Remove decls.
19191         (get_group_info): Remove casts no longer required in C89.
19192         * lib/getusershell.c (readname): Remove casts no longer required in
19193         C89.
19194         * lib/gettimeofday.c (rpl_gmtime, rpl_tzset): New functions.
19195         * lib/getline.c: Whitespace fix, from coreutils.
19196
19197 2003-08-13  Paul Eggert  <eggert@twinsun.com>
19198
19199         * m4/exclude.m4 (gl_EXCLUDE): Require AC_C_INLINE, AC_HEADER_STDC.
19200         Check for isascii.
19201
19202         * m4/gettext.m4, iconv.m4, intdiv0.m4, inttypes-pri.m4, lib-link.m4,
19203         lib-prefix.m4, longdouble.m4, po.m4, progtest.m4, signed.m4:
19204         Undo previous (whitespace-only) change.
19205
19206 2003-08-13  Paul Eggert  <eggert@twinsun.com>
19207
19208         * lib/exclude.c: Include <ctype.h>
19209         (IN_CTYPE_DOMAIN): New macro.
19210         (is_space): New fn.
19211         (add_exclude_file): If LINE_END is a space, ignore trailing spaces
19212         and empty lines.
19213
19214         * lib/argp-help.c, argp-parse.c, config.charset, getopt.h:
19215         Undo previous (whitespace-only) change.
19216
19217 2003-08-13  Paul Eggert  <eggert@twinsun.com>
19218
19219         * config/srclist-update: Change update back to the old behavior,
19220         leaving whitespace alone.  Use one 'sed' command rather than a
19221         pipeline.
19222         (fixlicense): Now a variable, not a function.
19223         (remove_trailing_blanks): Remove.
19224         (fixfile): Don't invoke unexpand or cat, or remove trailing blanks.
19225         * config/config.guess, config.sub, install-sh, missing, texinfo.tex:
19226         Undo previous (whitespace-only) change.
19227
19228 2003-08-12  Paul Eggert  <eggert@twinsun.com>
19229
19230         Merge from coreutils.
19231         * modules/euidaccess: Add lib_SOURCES, include for new
19232         file euidaccess.h
19233
19234 2003-08-12  Paul Eggert  <eggert@twinsun.com>
19235
19236         * m4/gettext.m4, iconv.m4, intdiv0.m4, inttypes-pri.m4, lib-link.m4,
19237         lib-prefix.m4, longdouble.m4, po.m4, progtest.m4, signed.m4:
19238         Normalize leading white space and remove trailing white space.
19239
19240         Merge from coreutils
19241         * m4/euidaccess.m4 (gl_FUNC_EUIDACCESS): Check for euidaccess decl.
19242
19243         * m4/lib-ld.m4, lib-link.m4, lib-prefix.m4: Regenerate from gettext
19244         0.12.1.  These files are now being upgraded automatically by
19245         ../config/srclist-update.
19246
19247 2003-08-12  Paul Eggert  <eggert@twinsun.com>
19248
19249         * lib/argp-help.c, argp-parse.c, config.charset, getopt.h:
19250         Normalize leading white space and remove trailing white space.
19251         * lib/ref-add.sin, ref-del.sin: Use '#' before empty line in copyright
19252         notice, as per ../config/srclist-update.
19253
19254         Merge from coreutils.
19255         * lib/euidaccess.h: New file.
19256         * lib/euidaccess.c: Include it.
19257         * lib/.cppi-disable: Add printf-args.h, printf-parse.h, stdbool_.h,
19258         vasnprintf.h, vasprintf.h.  Remove strdup.c, gettext.h.
19259         * lib/regex.h, strdup.c, strtoll.c, strtoul.c: Normalize white space.
19260
19261 2003-08-12  Paul Eggert  <eggert@twinsun.com>
19262
19263         * config/srclist-update: Add copyright notice.
19264         (remove_id_lines, remove_trailing_blanks): New constants.
19265         (fixfile): Use them to normalize spacing a bit in copied files.
19266         * config/config.guess, config.sub, install-sh, missing, texinfo.tex:
19267         Normalize leading white space and remove trailing white space.
19268
19269         * config/texinfo.tex: Sync with texinfo.
19270
19271         * config/srclist.txt: Don't get regex.h, strdup.c, strtoll.c,
19272         strtoul.c from libc, to merge coreutils whitespace changes.
19273
19274         * config/srclist.txt: Get the following m4 files from gettext:
19275         codeset.m4, gettext.m4, glibc21.m4, iconv.m4, intdiv0.m4,
19276         inttypes-pri.m4, lcmessage.m4, lib-ld.m4, lib-link.m4, lib-prefix.m4,
19277         longdouble.m4, nls.m4, po.m4, progtest.m4, signed.m4, wchar_t.m4,
19278         wint_t.m4.
19279
19280 2003-08-12  Karl Berry  <karl@gnu.org>
19281
19282         * config/srclist.txt: can't sync vasnprintf.c any more, changes have
19283         been made.
19284
19285 2003-08-11  Paul Eggert  <eggert@twinsun.com>
19286
19287         * modules/gnu-source, m4/gnu-source.m4:
19288         Remove; we're assuming Autoconf 2.54 or later now.
19289         Suggested by Bruno Haible.
19290         * MODULES.html.sh (func_all_modules): Remove gnu-source.
19291
19292 2003-08-11  Bruno Haible  <bruno@clisp.org>
19293
19294         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF): Also check for wcslen.
19295
19296 2003-08-11  Bruno Haible  <bruno@clisp.org>
19297
19298         * lib/vasnprintf.c (local_wcslen): New function, for Solaris 2.5.1.
19299         (vasnprintf): Use it instead of wcslen.
19300
19301 2003-08-11  Bruno Haible  <bruno@clisp.org>
19302
19303         * lib/stdbool_.h (_Bool): Undo last change; instead use a negative enum
19304         value to ensure that _Bool promotes to int. Use #define for _Bool when
19305         using the Solaris C compiler. Adds comments suggested by Paul Eggert.
19306
19307 2003-08-10  Karl Berry  <karl@gnu.org>
19308
19309         * lib/regex.h: update from libc (whitespace fix).
19310
19311 2003-08-09  Paul Eggert  <eggert@twinsun.com>
19312
19313         Merge some files from coreutils.  These changes were
19314         originally made by Jim Meyering.
19315         * lib/acl.c: Include <sys/types.h> before <sys/stat.h>;
19316         many older Unixes require this.
19317         * lib/alloca.c (alloca): Remove cast to argument of free;
19318         no longer needed in C89.
19319         * lib/alloca_.h, regex.h: Fix white space to match
19320         what GNU indent does.
19321
19322 2003-08-09  Paul Eggert  <eggert@twinsun.com>
19323
19324         * m4/regex.m4 (jm_INCLUDED_REGEX): Change "\201" to "\371";
19325         apparently Emacs's Unicode mode got confused before my 2003-08-05
19326         checkin.
19327
19328 2003-08-08  Paul Eggert  <eggert@twinsun.com>
19329
19330         * m4/extensions.m4: New file.
19331         * m4/timespec.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC):
19332         Require gl_USE_SYSTEM_EXTENSIONS.
19333         * m4/unlocked-io.m4 (jm_FUNC_GLIBC_UNLOCKED_IO):
19334         Require gl_USE_SYSTEM_EXTENSIONS rather than AC_GNU_SOURCE.
19335
19336 2003-08-08  Paul Eggert  <eggert@twinsun.com>
19337
19338         * MODULES.html.sh (func_all_modules): Add extensions, gnu-source.
19339         * modules/extensions, modules/gnu-source: New files.
19340         * modules/timespec, modules/unlocked-io: Depend on extensions.
19341
19342 2003-08-07  Paul Eggert  <eggert@twinsun.com>
19343
19344         * modules/restrict: New file.
19345         * MODULES.html.sh (func_all_modules): Add restrict.
19346         * modules/regex: Depend on restrict.
19347
19348 2003-08-07  Paul Eggert  <eggert@twinsun.com>
19349
19350         * m4/restrict.m4: New file.
19351         * m4/regex.m4 (jm_PREREQ_REGEX): Add gl_C_RESTRICT.
19352
19353 2003-08-07  Bruno Haible  <bruno@clisp.org>
19354
19355         * modules/getndelim2 (Makefile.am): Add the files to EXTRA_DIST, not
19356         lib_SOURCES, because getndelim2.m4 now uses AC_LIBOBJ(getndelim2).
19357
19358 2003-08-07  Bruno Haible  <bruno@clisp.org>
19359
19360         * m4/getndelim2.m4 (gl_GETNDELIM2): Use AC_LIBOBJ(getndelim2). This
19361         makes the module 'getndelim2' compatible with the module 'getline'.
19362
19363 2003-08-05  Paul Eggert  <eggert@twinsun.com>
19364
19365         * m4/regex.m4 (jm_INCLUDED_REGEX): Replace a single non-ASCII
19366         byte with "\201" to avoid glitches when editing that source file
19367         with multi-gnome-terminal.
19368
19369 2003-08-05  Paul Eggert  <eggert@twinsun.com>
19370
19371         * lib/bumpalloc.h: Remove.
19372
19373 2003-08-05  Paul Eggert  <eggert@twinsun.com>
19374
19375         * MODULES.html.sh (func_all_modules): Remove bumpalloc.
19376         * modules/bumpalloc: Remove.
19377
19378 2003-08-04  Paul Eggert  <eggert@twinsun.com>
19379
19380         * lib/getloadavg.c: Change copyright notice and spacing to conform to
19381         GNU coding style.
19382
19383         Merge from coreutils.
19384         * lib/error.c [!USE_IN_LIBIO]: Omit this case; assume USE_IN_LIBIO is
19385         1. From glibc.
19386         * lib/getdate.y (date): Also accept dates like May-23-2003; suggestion
19387         from Karl Berry, implemented by Jim Meyering.
19388         * lib/getgroups.c: Include "xalloc.h" instead of declaring xalloc fns;
19389         from Dmitry V. Levin.
19390         Remove anachronistic cast of xrealloc.
19391         * lib/fnmatch_.h (__const): Remove.  Use 'const'.
19392         * lib/fnmatch_loop.c (NEW_PATTERN): Cast alloca return value to proper
19393         type. Otherwise, it wouldn't compile with at least /bin/cc on
19394         ymp-cray-unicos9.0.2.X.
19395         Combine two mostly-identical uses of alloca into one.
19396         Thanks to the Cray-Cyber project for access to a Cray Y-MP.
19397
19398 2003-08-04  Dave Love  <d.love@dl.ac.uk>
19399
19400         [From Emacs.]
19401
19402         * lib/getloadavg.c: Check `__unix' as well as `unix'.  Use #ifdef, not
19403         #if.  Check HAVE_LIBKSTAT as well as LOAD_AVE_TYPE.  Check
19404         F_SETFD, not FD_SETFD.  Use HAVE_STRUCT_NLIST_N_UN_N_NAME, not
19405         obsolete NLIST_NAME_UNION.
19406         [__GNU__]: Undef BSD and FSCALE.
19407         [!NLIST_STRUCT]: Remove conditional definition of NLIST_STRUCT.
19408
19409 2003-08-03  Paul Eggert  <eggert@twinsun.com>
19410
19411         * lib/stdbool_.h (_Bool): Make it signed char, instead of
19412         an enum type, so that it's guaranteed to promote to int.  See:
19413         <http://mail.gnu.org/archive/html/bug-gnulib/2003-07/msg00124.html>
19414
19415 2003-08-03  Karl Berry  <karl@gnu.org>
19416
19417         * config/depcomp: update from automake.
19418
19419 2003-07-31  Paul Eggert  <eggert@twinsun.com>
19420
19421         * lib/strerror.c: Include config.h, limits.h.  Declare sprintf.
19422         (strerror): Don't assume that a printable int fits in 14 bytes.
19423
19424 2003-07-31  Bruno Haible  <bruno@clisp.org>
19425
19426         * modules/getpass-gnu: New file.
19427         * MODULES.html.sh (func_all_modules): Add getpass-gnu.
19428
19429 2003-07-31  Bruno Haible  <bruno@clisp.org>
19430
19431         * m4/getpass.m4 (gl_FUNC_GETPASS_GNU): New macro.
19432
19433 2003-07-24  Karl Berry  <karl@gnu.org>
19434
19435         * config/missing: update from automake.
19436
19437 2003-07-24  Derek Robert Price  <derek@ximbiot.com>
19438             Bruno Haible  <bruno@clisp.org>
19439
19440         * lib/getline.h (getline, getdelim): Change return type to ssize_t.
19441         * lib/getline.c (getline, getdelim): Likewise.
19442         Remove _GNU_SOURCE define; now it's defined in config.h through
19443         m4/getline.m4.
19444
19445 2003-07-23  Karl Berry  <karl@gnu.org>
19446
19447         * config/config.sub: update from prep.
19448
19449 2003-07-22  Paul Eggert  <eggert@twinsun.com>
19450
19451         * modules/xalloc (Depends-on): Add exitfail.
19452         * modules/xmemcoll: Likewise.
19453
19454 2003-07-22  Paul Eggert  <eggert@twinsun.com>
19455
19456         * lib/xalloc.h (XCALLOC, XREALLOC, CCLONE): Fix under- and
19457         over-parenthesization in macros.
19458
19459         Sync with coreutils.
19460
19461         * lib/xalloc.h (XMALLOC, XCALLOC, XREALLOC): Remove casts not
19462         required by C99.
19463
19464         Use `exit_failure' for xalloc and xmemcoll instead of their own
19465         private exit-failure variables.
19466         * lib/xalloc.h (xalloc_exit_failure): Remove.
19467         * lib/xmalloc.c: Likewise.  Include exitfail.h.
19468         (xalloc_die): Use exit_failure instead of xalloc_exit_failure.
19469         * lib/xmemcoll.h (xmemcoll_exit_failure): Remove.
19470         * lib/xmemcoll.c: Likewise.  Include exitfail.h.
19471         (xmemcoll): Use exit_failure instead of xalloc_exit_failure.
19472
19473 2003-07-20  Jim Meyering  <jim@meyering.net>
19474
19475         * modules/closeout (Depends-on): Add exitfail.
19476         Suggestion from Bruno Haible.
19477
19478 2003-07-19  Karl Berry  <karl@gnu.org>
19479
19480         * config/config.sub: update from prep.
19481
19482 2003-07-18  Paul Eggert  <eggert@twinsun.com>
19483
19484         * lib/closeout.h (close_stdout_set_status, close_stdout_status):
19485         Remove.
19486         * lib/closeout.c: Likewise.  Include "closeout.h" right after config.h,
19487         to test that it can stand by itself.  Include "exitfail.h".
19488         Clients should set exit_failure instead.
19489         (EXIT_FAILURE): Remove; no longer needed.  Do not include <stdlib.h>.
19490
19491 2003-07-18  Bruno Haible  <bruno@clisp.org>
19492
19493         * modules/getndelim2: New file.
19494         * modules/getline: Share files with module getndelim2.
19495         * modules/getnline: Depend on getndelim2 instead of sharing files with
19496         it. Add getnline.c to lib_SOURCES.
19497         * MODULES.html.sh (func_all_modules): Add getndelim2.
19498
19499 2003-07-18  Bruno Haible  <bruno@clisp.org>
19500
19501         * m4/getndelim2.m4: New file.
19502         * m4/getline.m4 (AM_FUNC_GETLINE): Add AC_LIBOBJ of getndelim2.c and
19503         invoke gl_PREREQ_GETNDELIM2.
19504         (gl_PREREQ_GETLINE): Drop AC_HEADER_STDC, now done by
19505         gl_PREREQ_GETNDELIM2.
19506         * m4/getnline.m4 (gl_GETNLINE): Drop AC_HEADER_STDC, now done by
19507         gl_GETNDELIM2.
19508
19509 2003-07-18  Bruno Haible  <bruno@clisp.org>
19510
19511         * lib/getndelim2.h: New file.
19512         * lib/getndelim2.c: Make into a module of its own. Include config.h,
19513         getndelim2.h.
19514         (getndelim2): Make non-static. Change return type to ssize_t.
19515         * lib/getline.h: Change argument names.
19516         * lib/getline.c: Include getndelim2.h instead of getndelim2.c.
19517         * lib/getnline.c: Include getndelim2.h.
19518
19519 2003-07-18  Andreas Schwab  <schwab@suse.de>
19520
19521         * lib/memcoll.c (memcoll) [!HAVE_STRCOLL]: Clear errno.
19522
19523 2003-07-17  Karl Berry  <karl@gnu.org>
19524
19525         * config/config.sub: update from prep.
19526
19527 2003-07-17  Bruno Haible  <bruno@clisp.org>
19528
19529         * modules/getnline: New file.
19530         * modules/getline: Add lib/getndelim2.c to source file list.
19531         * MODULES.html.sh (func_all_modules): Add getnline.
19532
19533 2003-07-17  Bruno Haible  <bruno@clisp.org>
19534
19535         * m4/getnline.m4: New file.
19536
19537 2003-07-17  Bruno Haible  <bruno@clisp.org>
19538
19539         * m4/Makefile.am.in: Remove file.
19540         * m4/Makefile.am: Remove file.
19541         * m4/Makefile.in: Remove file.
19542
19543 2003-07-17  Bruno Haible  <bruno@clisp.org>
19544
19545         * lib/getnline.h: New file.
19546         * lib/getnline.c: New file.
19547         * lib/getndelim2.c: New file, extracted from getline.c.
19548         (getndelim2): Renamed from getdelim2, with added nmax argument.
19549         * lib/getline.c: Include getndelim2.c.
19550         (getdelim2): Moved out to getndelim2.c.
19551         (getline, getdelim): Update.
19552
19553 2003-07-17  Bruno Haible  <bruno@clisp.org>
19554
19555         * lib/Makefile.am: Remove file.
19556         * lib/Makefile.in: Remove file.
19557
19558 2003-07-17  Bruno Haible  <bruno@clisp.org>
19559
19560         * configure.in: Remove file.
19561         * Makefile.in: Remove file.
19562
19563 2003-07-17  Bruno Haible  <bruno@clisp.org>
19564
19565         * MODULES.html.sh: Put the </BODY> right before </HTML>.
19566
19567 2003-07-16  Karl Berry  <karl@gnu.org>
19568
19569         * config/srclist-update: was running fixlicense twice, which caused
19570                 texinfo.tex to be nullified for some reason.  Simplify,
19571                 $gplsrc is no longer needed as far as I can see?
19572
19573 2003-07-16  Jim Meyering  <jim@meyering.net>
19574
19575         * modules/save-cwd: Depend on xgetcwd.  From Derek Price.
19576
19577 2003-07-15  Paul Eggert  <eggert@twinsun.com>
19578
19579         * config/srclist.txt: Get the following files from gettext-runtime/intl
19580         instead: config.charset, localcharset.c, localcharset.h, ref-add.sin,
19581         ref-del.sin.  From Bruno Haible.
19582         * config/srclist-update (fixfile): Change grep pattern again, since the
19583         previous fix didn't work (there was another trailing $).  Use
19584         '[$]' to escape the $s.
19585
19586 2003-07-15  Karl Berry  <karl@gnu.org>
19587
19588         * lib/vasnprintf.c: update from gettext.
19589
19590 2003-07-15  Karl Berry  <karl@gnu.org>
19591
19592         * config/srclist-update (fixfile): Change grep pattern, since 'Id'
19593         gets expanded when surrounded by '$'.
19594
19595 2003-07-15  Jim Meyering  <jim@meyering.net>
19596
19597         * modules/save-cwd: Don't depend on error.  From Derek Price.
19598
19599 2003-07-15  Jim Meyering  <jim@meyering.net>
19600
19601         * lib/makepath.c (make_path): Enclose diagnostic in _(...).
19602
19603 2003-07-14  Simon Josefsson  <jas@extundo.com>
19604
19605         * modules/mempcpy: New file.
19606         * MODULES.html.sh (func_all_modules): Add mempcpy.
19607
19608 2003-07-14  Simon Josefsson  <jas@extundo.com>
19609
19610         * m4/mempcpy.m4: New file.
19611
19612 2003-07-14  Simon Josefsson  <jas@extundo.com>
19613
19614         * lib/mempcpy.h: New file.
19615         * lib/mempcpy.c: New file.
19616
19617 2003-07-14  Paul Eggert  <eggert@twinsun.com>
19618
19619         * modules/getdate, modules/posixtm: Depend on mktime.
19620
19621 2003-07-14  Paul Eggert  <eggert@twinsun.com>
19622
19623         * lib/ceill.c, expl.c, floorl.c, frexpl.c, ldexpl.c, mathl.h,
19624         sincosl.c, sqrtl.c, trigl.c, trigl.h, poll.c, poll_.h, mkstemp.c,
19625         unicodeio.c, unicodeio.h, unlocked-io.h:
19626         Switch from LGPL to GPL.
19627
19628 2003-07-14  Paul Eggert  <eggert@twinsun.com>
19629
19630         * lib/asnprintf.c, asprintf.c, config.charset, gettext.h,
19631         localcharset.c, localcharset.h, mkdtemp.c, printf-args.c,
19632         printf-args.h, printf-parse.c, printf-parse.h, ref-add.sin,
19633         ref-del.sin, setenv.c, unsetenv.c, vasnprintf.c, vasnprintf.h,
19634         vasprintf.c, vasprintf.h: Regenerate.  These files are now being
19635         updated automatically by ../config/srclist-update.  This changes
19636         their license from LPGL to GPL.
19637
19638 2003-07-14  Paul Eggert  <eggert@twinsun.com>
19639
19640         * config/srclist.txt: Add tons more gettext files.  $GETTEXT is now
19641         assumed to refer to the root of the most recent stable gettext version.
19642         * config/srclistvars.sh: Add defaults for eggert.
19643         * config/srclist-update: Convert LGPL to GPL in shell scripts, too.
19644         Match "This program" as well as "The program".  This is needed
19645         for gettext.
19646
19647 2003-07-14  Jim Meyering  <jim@meyering.net>
19648
19649         Don't emit diagnostics.  Let callers do that.
19650         * lib/save-cwd.c: Don't include "error.h".
19651         (save_cwd): Don't call error.  Ensure that errno is valid
19652         when returning nonzero.
19653
19654         * lib/save-cwd.h (restore_cwd): Update prototype.
19655         * lib/save-cwd.c (restore_cwd): Remove two parameters.
19656         Simplify.  Don't call error upon failure.  Let callers do that.
19657         (save_cwd): Mention that Irix 5.3 has the same problem as SunOS 4
19658         when auditing is enabled.  But don't bother updating the #if.
19659
19660 2003-07-11  Alexandre Duret-Lutz  <adl@gnu.org>
19661
19662         * lib/obstack.h (__INT_TO_PTR): Revert change of 2003-03-13;
19663         it breaks C++ compilation.
19664         [!__GNUC__ || !__STDC__] (obstack_finish): Cast result to void*.
19665
19666 2003-07-10  Simon Josefsson  <jas@extundo.com>
19667
19668         * modules/strchrnul (Makefile.am): Add strchrnul.h.
19669
19670 2003-07-10  Jim Meyering  <jim@meyering.net>
19671
19672         * m4/clock_time.m4: Remove trailing blank.
19673         * m4/intmax_t.m4: Likewise.
19674
19675 2003-07-10  Jim Meyering  <jim@meyering.net>
19676
19677         * lib/vasnprintf.c: Remove trailing blanks.
19678         Make cpp indentation consistent.
19679
19680 2003-07-09  Paul Eggert  <eggert@twinsun.com>
19681
19682         * lib/alloca_.h, euidaccess.c, getpass.c, memrchr.c, obstack.h,
19683         posixver.c, strftime.c, strnlen.c, strverscmp.c:
19684         Switch from LGPL to GPL.
19685
19686 2003-07-09  Paul Eggert  <eggert@twinsun.com>
19687
19688         * config/srclist.txt: Sort sublists.  Add
19689         $LIBCSRC/sysdeps/generic/strtoul.c. In comments, add more libc files
19690         that differ from gnulib for one reason or another; we'd like this list
19691         to be smaller but for now let's document what we have.
19692
19693 2003-07-08  Paul Eggert  <eggert@twinsun.com>
19694
19695         * config/srclist-update: Port to POSIX 1003.1-2001 hosts by avoiding
19696         the use of GNU extensions.  Change "x=`eval echo $x`" to the shorter
19697         and sweeter "eval x=$x".
19698         * config/srclist.txt: Get lib/argp* from glibc.
19699
19700 2003-07-07  Paul Eggert  <eggert@twinsun.com>
19701
19702         * lib/mktime.c: Fix some boundary cases and remove need for floating
19703         point.
19704
19705         Issue a compile-time diagnostic if time_t is floating point, or if
19706         two's complement arithmetic is not in effect, or if arithmetic
19707         right shift does not propagate the sign.  These assumptions were
19708         all in the original code but they weren't checked.
19709
19710         (TIME_T_MIDPOINT, verify): New macros.
19711         (__isleap): Remove; it has integer overflow problems.
19712         (leapyear): New function, without those problems.
19713         (ydhms_tm_diff): Remove; splitting into two parts.
19714         (ydhms_diff): New function, containing the arithmetic part of
19715         the old ydhms_tm_diff function.  Issue a compile-time
19716         diagnostic if we are not using C99 integer division.
19717         Avoid casts when possible.
19718         (guess_time_tm): New function, containing the checking part of
19719         the old ydhms_tm_diff function.  Return the new value, rather than
19720         the difference between it and the old.  Accept a new argument T
19721         so that *T specifies the old value.  Check for overflow in the result.
19722
19723         (__mktime_internal): Use a time_t offset, not a long int offset.
19724         This undoes the 2003-06-04 change, which is no longer needed now
19725         that we have better overflow checking.
19726         (localtime_offset): Likewise.
19727
19728         (__mktime_internal): Avoid harmful overflow on hosts where time_t
19729         and long are 64-bit but int is only 32-bit.
19730         (ydhms_diff): Use long int to store year1 and yday1.
19731         Issue a compile-time diagnostic if long int is not wide enough.
19732
19733         (__mktime_internal): Use long int to store adjusted year and yday.
19734         Use plain C rather than preprocessor commands, if that doesn't
19735         affect efficiency.
19736         Check for overflow (and try to repair) after each probe
19737         rather than checking only at the very end.  This avoids some bugs
19738         (e.g., southern hemisphere, behind GMT, and GMT offset at minimum time
19739         does not equal GMT offset at maximum time).
19740         Use integer to check for overflow rather than floating point; this
19741         is more portable to non-IEEE hosts, and is a tad faster.
19742         When we detect that we are oscillating between two values,
19743         don't check whether tm_isdst has the requested value, since
19744         we already know the answer.  When tm_isdst has the wrong value,
19745         use a different heuristic to find the right one, based on the
19746         extreme values actually observed in practice in tz2003a,
19747         rather than the (overly optimistic) "previous 3 calendar quarters".
19748
19749         (not_equal_tm, print_tm, check_result): Use "const T" rather than
19750         "T const" to accommodate glibc style.
19751         (check_result): Use less-confusing report format.  "long" -> "long int.
19752         (main): Likewise.
19753         Don't loop if the iteration overflows time_t.
19754         Allow a negative step in the iteration.
19755
19756 2003-07-06  Karl Berry  <karl@gnu.org>
19757
19758         * config/depcomp: update from automake.
19759         * config/config.sub: update from prep.
19760
19761 2003-07-03  Karl Berry  <karl@gnu.org>
19762
19763         * config/config.guess: update from prep.
19764
19765 2003-07-01  Paul Eggert  <eggert@twinsun.com>
19766
19767         * m4/xreadlink.m4 (gl_XREADLINK): Don't check for sys/types.h, since
19768         xreadlink.c now includes it unconditionally.
19769
19770 2003-07-01  Paul Eggert  <eggert@twinsun.com>
19771
19772         * lib/xreadlink.c: Include <sys/types.h> unconditionally, instead of
19773         having it depend on HAVE_SYS_TYPES_H.
19774
19775 2003-07-01  Bruno Haible  <bruno@clisp.org>
19776
19777         * m4/ssize_t.m4 (gt_TYPE_SSIZE_T): Don't include <unistd.h>.
19778         <sys/types.h> should be sufficient.
19779         Reported by Paul Eggert.
19780
19781 2003-06-26  Karl Berry  <karl@gnu.org>
19782
19783         * config/depcomp: update from automake.
19784
19785 2003-06-26  Bruno Haible  <bruno@clisp.org>
19786
19787         * modules/human: Depend on module stdbool.
19788
19789 2003-06-25  Bruno Haible  <bruno@clisp.org>
19790
19791         * modules/readlink: New file.
19792         * modules/xreadlink: Depend on it.
19793         * MODULES.html.sh (func_all_modules): Add readlink.
19794
19795 2003-06-25  Bruno Haible  <bruno@clisp.org>
19796
19797         * m4/readlink.m4: New file.
19798
19799 2003-06-25  Bruno Haible  <bruno@clisp.org>
19800
19801         * lib/readlink.c: New file.
19802
19803 2003-06-22  Karl Berry  <karl@gnu.org>
19804
19805         * config/srclist.txt: update mkinstalldirs from automake.
19806         * config/mkinstalldirs: update.
19807
19808 2003-06-22  Bruno Haible  <bruno@clisp.org>
19809
19810         Portability to mingw32.
19811         * m4/ssize_t.m4: New file, from GNU gettext.
19812         * m4/safe-read.m4 (gl_PREREQ_SAFE_READ): Require gt_TYPE_SSIZE_T.
19813         * m4/xreadlink.m4 (gl_XREADLINK): Require gt_TYPE_SSIZE_T.
19814
19815 2003-06-22  Bruno Haible  <bruno@clisp.org>
19816
19817         * modules/safe-read: Add m4/ssize_t.m4.
19818         * modules/xreadlink: Add m4/ssize_t.m4.
19819
19820 2003-06-20  Bruno Haible  <bruno@clisp.org>
19821
19822         Assume C89, so PARAMS isn't needed.
19823         * lib/unicodeio.h (PARAMS): Remove.
19824         * lib/unicodeio.c: Don't use PARAMS.
19825
19826 2003-06-18  Karl Berry  <karl@gnu.org>
19827
19828         * config/config.{guess,sub}: update from prep.
19829
19830 2003-06-18  Jim Meyering  <jim@meyering.net>
19831
19832         Merge changes from coreutils.
19833         * lib/readutmp.c: Include <string.h> and <stdlib.h> unconditionally.
19834         Remove explicit declarations of xmalloc and realloc.
19835         Include xalloc.h.
19836         (read_utmp): Remove anachronistic cast of xmalloc.
19837
19838 2003-06-17  Paul Eggert  <eggert@twinsun.com>
19839
19840         Assume C89, so PARAMS isn't needed.
19841         * lib/backupfile.h (PARAMS): Remove.  All uses removed.
19842         * lib/closeout.h, lib/dirname.h, lib/filemode.h, lib/fsusage.h,
19843         lib/getdate.h, lib/getline.h, lib/group-member.h, lib/hard-locale.h,
19844         lib/hash.h, lib/linebuffer.h, lib/long-options.h, lib/makepath.h,
19845         lib/memcasecmp.h, lib/memcoll.h, lib/modechange.h, lib/mountlist.h,
19846         lib/path-concat.h, lib/physmem.h, lib/posixtm.h, lib/quote.h,
19847         lib/readutmp.h, lib/same.h, lib/save-cwd.h, lib/savedir.h,
19848         lib/stdio-safer.h, lib/strtoimax.c, lib/strverscmp.h,
19849         lib/unistd-safer.h, lib/version-etc.h, lib/xalloc.h, lib/xreadlink.h,
19850         lib/xstrtod.h, lib/xstrtol.h: Likewise.
19851         * lib/filemode.h, lib/hard-locale.h, lib/memcoll.h, lib/modechange.h,
19852         lib/physmem.h, lib/same.h, lib/strverscmp.h: Do not include config.h;
19853         no longer needed. Anyway, config.h should always be included before any
19854         other file.
19855
19856 2003-06-11  Simon Josefsson  <jas@extundo.com>
19857
19858         * modules/sysexits: New file.
19859         * MODULES.html.sh (func_all_modules): Add sysexits.
19860
19861 2003-06-11  Simon Josefsson  <jas@extundo.com>
19862
19863         * lib/sysexit_.h: New file.
19864
19865 2003-06-11  Derek Price  <derek@ximbiot.com>
19866
19867         * lib/stat.c [LSTAT]: Compile/use slash_aware_lstat only if it is
19868         necessary.
19869
19870 2003-06-11  Bruno Haible  <bruno@clisp.org>
19871
19872         * m4/sysexits.m4: New file.
19873
19874 2003-06-10  Simon Josefsson  <jas@extundo.com>
19875
19876         * lib/argp.h: New file, from glibc.
19877         * lib/argp-ba.c: New file, from glibc.
19878         * lib/argp-eexst.c: New file, from glibc.
19879         * lib/argp-fmtstream.c: New file, from glibc.
19880         * lib/argp-fmtstream.h: New file, from glibc.
19881         * lib/argp-fs-xinl.c: New file, from glibc.
19882         * lib/argp-help.c: New file, from glibc.
19883         * lib/argp-namefrob.h: New file, from glibc.
19884         * lib/argp-parse.c: New file, from glibc.
19885         * lib/argp-pv.c: New file, from glibc.
19886         * lib/argp-pvh.c: New file, from glibc.
19887         * lib/argp-xinl.c: New file, from glibc.
19888
19889 2003-06-10  Simon Josefsson  <jas@extundo.com>
19890
19891         * modules/strchrnul: New file.
19892
19893 2003-06-10  Simon Josefsson  <jas@extundo.com>
19894
19895         * modules/argp: New file.
19896
19897 2003-06-10  Simon Josefsson  <jas@extundo.com>
19898
19899         * m4/strchrnul.m4: New file.
19900
19901 2003-06-10  Simon Josefsson  <jas@extundo.com>
19902
19903         * lib/strchrnul.h: New file.
19904         * lib/strchrnul.c: New file.
19905
19906 2003-06-10  Bruno Haible  <bruno@clisp.org>
19907
19908         * MODULES.html.sh (func_all_modules): Add strchrnul and argp.
19909
19910 2003-06-07  Karl Berry  <karl@gnu.org>
19911
19912         * config/config.{guess,sub}: update from prep.
19913
19914 2003-06-07  Jim Meyering  <jim@meyering.net>
19915
19916         * modules/strtod: Use $(...) notation, not @...@ for
19917         AC_REPLACE'd variables.
19918         * modules/localcharset: Likewise.
19919
19920 2003-06-07  Jim Meyering  <jim@meyering.net>
19921
19922         * lib/readtokens.h: Put `Free Software Foundation, Inc.'
19923         in place of my name in the copyright comment.
19924         Remove definition and uses of __P.
19925
19926         From coreutils.
19927         * lib/stat.c: Don't declare xmalloc explicitly.
19928         Instead, include "xalloc.h".
19929         * lib/readtokens.c (readtokens): Remove anachronistic casts of xmalloc,
19930         xrealloc, and xcalloc return values.
19931         * lib/xgetcwd.c (xgetcwd): Include "xgetcwd.h".
19932         Improve comment.
19933         * lib/xgetcwd.h: Remove definition/uses of PARAMS.
19934
19935 2003-06-07  Bruno Haible  <bruno@clisp.org>
19936
19937         * modules/poll (Makefile.am): Use explicit creation rule for poll.h, to
19938         avoid AC_CONFIG_LINKS.
19939         * modules/fnmatch (Makefile.am): Use explicit creation rule for
19940         fnmatch.h, to avoid AC_CONFIG_LINKS.
19941         * modules/alloca (Makefile.am): Make creation of alloca.h Ctrl-C safe.
19942
19943 2003-06-07  Bruno Haible  <bruno@clisp.org>
19944
19945         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH, gl_FUNC_FNMATCH_POSIX,
19946         gl_FUNC_FNMATCH_GNU): Set FNMATCH_H instead of invoking
19947         AC_CONFIG_LINKS. Needed to allow for a different name of the lib
19948         directory.
19949         * m4/poll.m4 (gl_FUNC_POLL): Set POLL_H instead of invoking
19950         AC_CONFIG_LINKS. Needed to allow for a different name of the lib
19951         directory.
19952
19953 2003-06-06  Jim Meyering  <jim@meyering.net>
19954
19955         Merge from coreutils.
19956         * lib/same.c: (same_name): Declare *_basename locals to be `const'.
19957         Consolidate declarations and initializations of *_base* locals.
19958
19959         Merge from coreutils.
19960         This avoids a core dump on systems without GNU putenv,
19961         when running `env -u SOME_ALREADY_UNSET_VARIABLE'.
19962         * lib/putenv.c (__set_errno, LOCK, UNLOCK): Define.
19963         (unsetenv): New static function, from GNU libc.
19964         (rpl_putenv): Use it.
19965
19966         * lib/modechange.c: Remove trailing blanks.
19967
19968         Merge from coreutils.
19969         * lib/fsusage.c: Remove declaration of statfs.
19970         It conflicted with one from OSF/1 5.1 in <sys/mount.h>.
19971
19972         * lib/posixtm.c: Include <stdbool.h> unconditionally.
19973
19974 2003-06-06  Jim Meyering  <jim@meyering.net>
19975
19976         * lib/stdbool_.h: Renamed from stdbool.h.in.
19977
19978 2003-06-06  Jim Meyering  <jim@meyering.net>
19979             Bruno Haible  <bruno@clisp.org>
19980
19981         * modules/stdbool: Reflect renaming: stdbool.h.in -> stdbool_.h.
19982         Adjust Makefile.am snippet not to redirect directly to target.
19983         Use $(STDBOOL_H) notation, not @STDBOOL_H@ for AC_REPLACE'd variables.
19984
19985 2003-06-05  Paul Eggert  <eggert@twinsun.com>
19986
19987         * lib/mktime.c (__mktime_internal): When resolving a tm_isdst
19988         mismatch, look in future quarters as well as past.  This fixes a
19989         bug when processing fall-backwards gaps immediately after a long
19990         period of daylight-saving time.
19991
19992         * lib/mktime.c: Assume freestanding C89 or better.
19993         (HAVE_LIMITS_H): Remove.  Assume it's 1.
19994         (__P): Remove; not used.
19995         (CHAR_BIT, INT_MIN, INT_MAX): Remove; <limits.h> defines them.
19996         (mktime, not_equal_tm, print_tm, check_result,
19997         main): Use prototypes.  Use const * where appropriate.
19998         (main): Fix typo in testing code that uncovered by above changes.
19999         (Local Variables): Remove -DHAVE_LIMITS_H from compile-command.
20000
20001 2003-06-04  Paul Eggert  <eggert@twinsun.com>
20002
20003         * m4/human.m4 (gl_HUMAN): Require AM_STDBOOL_H.  Check for
20004         locale.h, localeconv.  This merges changes from coreutils.
20005
20006         * m4/mktime.m4 (AC_FUNC_MKTIME): New macro, taken from Autoconf CVS.
20007         It can be removed after the next Autoconf is released.
20008         * m4/exclude.m4 (gl_EXCLUDE): Don't check for sys/types.h; no loner
20009         needed.
20010
20011 2003-06-04  Paul Eggert  <eggert@twinsun.com>
20012
20013         * lib/mktime.c: Fix Debian bug 177940
20014         <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=177940>.
20015         (localtime_offset): Now long int, not time_t, because we want it
20016         to be guaranteed to be signed.  All uses changed.
20017         (__mktime_internal): If overflow would occur when adding offset,
20018         don't add it.
20019
20020         Merge 'human' changes from coreutils.  Rewrite to support
20021         locale-specific notations like thousands separators.
20022         * lib/human.c: Simplify authorship notice.
20023         Include human.h immediately after config.h.
20024         <sys/types.h>, <stdio.h>: Do not include; no longer needed.
20025         <limits.h>: Do not include, since human.h does.
20026         (SIZE_MAX, UINTMAX_MAX): New macros.
20027         <strings.h>: Include if HAVE_STRINGS_H, not if !HAVE_STRING_H.
20028         <locale.h>: Include if HAVE_LOCALE_H and HAVE_LOCALECONV.
20029         (HUMAN_READABLE_SUFFIX_LENGTH_MAX): New macro.
20030         (power_letter): Renamed from suffixes.
20031         (generate_suffix_backwards): Remove.
20032         (adjust_value): Now takes int style (because of human.h changes)
20033         and long double value (for greater precision on some platforms).
20034         (group_number): New function.
20035         (human_readable): Use it.  Use integer options, not enum.
20036         Put the options before the sizes in the arg list.
20037         Support all the new options.
20038         The old human_readable function has been removed;
20039         use inttostr.h instead.
20040         (human_readable, default_block_size, humblock):
20041         Use uintmax_t, not int, for block sizes.
20042         (human_readable_inexact, block_size_types): Remove.
20043         (block_size_opts): New constant.
20044         (human_options): Renamed from human_block_size, with new signature
20045         that allows block sizes up to UINTMAX_MAX.  All callers changed.
20046         * lib/human.h: Add copyright and authorship notice.
20047         Include <limits.h> and <stdbool.h> unconditionally.
20048         (PARAMS): Remove.  All uses removed.
20049         (LONGEST_HUMAN_READABLE): Add support for thousands separator.
20050         (enum human_inexact_style): Remove tag; now a nameless enum.
20051         (human_floor, human_ceiling, human_round_to_even): Now have
20052         values 2, 0, 1 rather than -1, 1, 0.
20053         (human_group_digits, human_suppress_point_zero, human_autoscale,
20054         human_base_1024, human_SI, human_B): New constants.
20055         (human_readable_inexact, human_block_size): Remove.
20056         (human_readable): Size args are now uintmax_t, not int.
20057         (human_options): New decl.
20058
20059         * lib/exclude.c: (new_exclude, add_exclude): Remove casts that are
20060         unnecessary now that we assume C89 or better.  This change
20061         imported from coreutils.
20062
20063         * lib/mktime.c (__mktime_internal): Do not reject negative timestamps
20064         arbitrarily.  This is the same patch as 2003-05-28, but it got lost
20065         in the 2003-05-30 sync from glibc.
20066
20067         .h files should stand alone, but we shouldn't include <sys/types.h>
20068         if we can get away with just <stddef.h>.
20069
20070         * lib/__fpending.h, addext.c, backupfile.c, exclude.c, getline.c,
20071         malloc.c, putenv.c, realloc.c, strcasecmp.c: Include <stddef.h>
20072         rather than <sys/types.h>, as we merely need size_t.
20073         * lib/dirname.h, memcoll.h, xalloc.h, xmemcoll.h: Include <stddef.h>,
20074         to get size_t.
20075         * lib/hash.h, linebuffer.h, readtokens.h, stdio-safer.h, version-etc.h:
20076         Include <stdio.h>, to get FILE.
20077         * lib/memcasecmp.c: Don't include <sys/types.h>, as we can assume
20078         memcasecmp.h has included <stddef.h> and all we need is size_t.
20079         * lib/memcoll.c: Include "memcoll.h", which gets us size_t and checks
20080         our interface, instead of including <sys/types.h>
20081
20082 2003-06-04  Paul Eggert  <eggert@twinsun.com>
20083
20084         * config/srclist.txt ($LIBCSRC/time/mktime.c lib gpl): Comment out for
20085         now, as glibc mktime is buggy on non-glibc systems.
20086
20087 2003-06-03  Karl Berry  <karl@gnu.org>
20088
20089         * config/config.sub: update from prep.
20090
20091 2003-06-02  Paul Eggert  <eggert@twinsun.com>
20092
20093         [from coreutils]
20094         Fix some minor time-related bugs with POSIX time arguments.
20095         Some valid time stamps were being rejected (notably -1, and
20096         time stamps before 1900 on 64-bit hosts).  And some invalid
20097         time stamps were being accepted, e.g. September 31.
20098
20099         * lib/posixtm.h (posixtime): Return bool instead of time_t, so
20100         that we can return (time_t) -1 successfully.
20101         * lib/posixtm.c: Likewise.
20102         [HAVE_STDBOOL_H]: Include <stdbool.h>.
20103         (bool, false, true) [!HAVE_STDBOOL_H]: New type.
20104         (t): Remove static var.
20105         (year, posix_time_parse): Now takes struct tm * arg to modify, instead
20106         of static var.  All uses changed.
20107         (year): Do not reject years before 1900; they can occur with
20108         64-bit time_t.
20109         (posix_time_parse): Do not check for out-of-range components;
20110         that is now the caller's responsibility, since our checks were
20111         only approximations.
20112         (posixtime): Use mktime to check for out-of-range components,
20113         since it knows them exactly.
20114         If mktime returns (time_t) -1, check whether an error actually occurred
20115         by invoking localtime on -1.
20116         (main) [TEST_POSIXTIME]: Check for input data errors, and report
20117         posixtime failures better.
20118         Improve the test data (in comments only).
20119
20120 2003-06-02  Karl Berry  <karl@gnu.org>
20121
20122         * config/mkinstalldirs (version): new variable.
20123         (--version): new option.
20124         (usage): improve message.
20125
20126 2003-05-30  Karl Berry  <karl@gnu.org>
20127
20128         * lib/mktime.c: update from libc.
20129
20130 2003-05-30  Bruno Haible  <bruno@clisp.org>
20131
20132         * modules/gettext: Add files m4/nls.m4 and m4/po.m4.
20133         * config/config.rpath: Upgrade to gettext-0.12.1.
20134
20135 2003-05-30  Bruno Haible  <bruno@clisp.org>
20136
20137         * m4/gettext.m4: Upgrade to gettext-0.12.1.
20138         * m4/nls.m4: New file, from gettext-0.12.1.
20139         * m4/po.m4: New file, from gettext-0.12.1.
20140         * m4/progtest.m4: Upgrade to gettext-0.12.1.
20141
20142 2003-05-30  Bruno Haible  <bruno@clisp.org>
20143
20144         * lib/config.charset: Upgrade to gettext-0.12.1 and libiconv-1.9.1.
20145         * lib/localcharset.h: Likewise.
20146         * lib/localcharset.c: Likewise.
20147
20148 2003-05-29  Karl Berry  <karl@gnu.org>
20149
20150         * config/config.rpath: update from gettext.
20151
20152 2003-05-28  Paul Eggert  <eggert@twinsun.com>
20153
20154         Assume the headers required for C89 freestanding compilers.
20155         * m4/backupfile.m4 (gl_BACKUPFILE): Don't check for limits.h.
20156         * m4/fsusage.m4 (gl_PREREQ_FSUSAGE_EXTRA): Likewise.
20157         * m4/human.m4 (gl_HUMAN): Likewise.
20158         * m4/pathmax.m4 (gl_PATHMAX): Likewise.
20159         * m4/rpmatch.m4 (gl_FUNC_RPMATCH): Likewise.
20160         * m4/userspec.m4 (gl_USERSPEC): Likewise.
20161         * m4/xreadlink.m4 (gl_XREADLINK): Likewise.
20162         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
20163         * m4/quote.m4 (gl_QUOTE): Don't check for stddef.h.
20164
20165 2003-05-28  Paul Eggert  <eggert@twinsun.com>
20166
20167         Assume the headers required for C89 freestanding compilers.
20168         * lib/addext.c, lib/backupfile.c, lib/fsusage.c, lib/human.c,
20169         lib/pathmax.h, lib/rpmatch.c, lib/userspec.c, lib/xreadlink.c,
20170         lib/xstrtol.c: Include <limits.h> without checking for HAVE_LIMITS_H.
20171         * lib/backupfile.c, lib/fsusage.c, lib/hash.c, lib/human.c,
20172         lib/safe-read.c, lib/userspec.c, lib/xstrtol.c (CHAR_BIT): Don't
20173         define, since <limits.h> is guaranteed to do that.
20174         * lib/fatal.c: Include <stdarg.h> without checking for __STDC__.
20175         * lib/exclude.c: Include <stdbool.h> unconditionally.
20176         * lib/tempname.c: Include <stddef.h> unconditionally.
20177         * lib/hash.c: Include <limits.h>, since we no longer define CHAR_BIT.
20178         * lib/modechange.c, rpmatch.c (NULL): Don't define, since
20179         <stddef.h> does that.
20180         * lib/quote.c: Dont include <stddef.h> or <sys/types.h>; not needed.
20181         * lib/safe-read.c (INT_MAX): Don't define, since <limits.h> does that.
20182         * lib/safe-read.c (TYPE_MINIMUM, TYPE_MAXIMUM): Remove; no longer
20183         needed.
20184         * lib/xstrtol.c: Likewise.
20185         * lib/safe-read.c: Remove TYPE_SIGNED; no longer needed.
20186         * lib/savedir.c: Include <stddef.h> instead of defining NULL.
20187
20188         * lib/addext.c (addext): Use assignment rather than cast, to avoid
20189         warnings on some platforms.
20190
20191         * lib/mktime.c (__mktime_internal): Do not reject negative timestamps
20192         arbitrarily.
20193
20194 2003-05-26  Jim Meyering  <jim@meyering.net>
20195
20196         Merge in a change from coreutils:
20197         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Test the cache variable, not one
20198         that is guaranteed to be `no'.  Use `no_such_member' to indicate
20199         that condition, rather than `-1' which is slightly misleading.
20200         Change the name of the cache variable to have the gl_ prefix.
20201         Prompted by a patch from Richard Dawe for DJGPP.
20202
20203 2003-05-24  Karl Berry  <karl@gnu.org>
20204
20205         * config/config.guess: update from prep.
20206
20207 2003-05-22  Karl Berry  <karl@gnu.org>
20208
20209         * gnulib-tool (func_usage): =LIBRARY not =libRARY in help msg.
20210
20211 2003-05-20  Karl Berry  <karl@gnu.org>
20212
20213         * config/config.guess: update from prep.
20214
20215 2003-05-18  Karl Berry  <karl@gnu.org>
20216
20217         * config/srclistvars.sh (TEXMF): use TEXMFROOT instead, since TEXMF
20218         might actually be set by the user.
20219
20220         * config/depcomp, install-sh, mdate-sh: update from automake.
20221
20222 2003-05-17  Bruno Haible  <bruno@clisp.org>
20223
20224         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Fix a quoting bug leading to an
20225         invalid expansion for AC_EGREP_CPP.
20226         * m4/strtoimax.m4 (gl_FUNC_STRTOIMAX): Likewise.
20227         * m4/strtoumax.m4 (gl_FUNC_STRTOUMAX): Likewise.
20228         Suggested by Akim Demaille <akim@epita.fr> in
20229         http://mail.gnu.org/archive/html/bug-autoconf/2003-05/threads.html
20230
20231 2003-05-12  Jim Meyering  <jim@meyering.net>
20232
20233         * lib/strftime.c (my_strftime): Let the `-' (no-pad) flag affect
20234         the space-padded-by-default conversion specifiers, %e, %k, %l.
20235
20236 2003-05-12  Bruno Haible  <bruno@clisp.org>
20237
20238         * lib/linebreak.c (iconv_string_length): Don't return -1 just because
20239         the string is longer than 4 KB.
20240
20241 2003-05-11  Karl Berry  <karl@gnu.org>
20242
20243         * config/config.{guess,sub}: update from prep.
20244
20245 2003-05-09  Bruno Haible  <bruno@clisp.org>
20246
20247         * modules/error: Add m4/strerror_r.m4 to file list.
20248
20249 2003-05-03  Bruno Haible  <bruno@clisp.org>
20250
20251         Upgrade to Unicode-4.0.
20252         * lib/linebreak.c (nonspacing_table_data): Change width of U+00AD,
20253         U+0350..U+0357, U+035D..U+035F, U+0600..U+0603, U+0610..U+0615,
20254         U+0656..U+0658, U+0A01, U+0AE2..U+0AE3, U+0CBC, U+17B4..U+17B5,
20255         U+17DD, U+1920..U+1922, U+1927..U+192B, U+1932, U+1939..U+193B
20256         from 1 to 0. Change width of U+0CBF, U+0CC6, U+180E from 0 to 1.
20257         (uc_width): Change width of U+4DC0..U+4DFF from 2 to 1. Change width
20258         of U+2A6D7..U+2F7FF, U+2FA1E..U+2FFFD, U+30000..U+3FFFD from 1 to 2.
20259         Change width of U+E0100..U+E01EF from 1 to 0.
20260
20261 2003-04-25  Jim Meyering  <jim@meyering.net>
20262
20263         * lib/copy-file.c (copy_file_preserving): Declare buf_size to be
20264         of type size_t, not int.
20265
20266 2003-04-25  Bruno Haible  <bruno@clisp.org>
20267
20268         * lib/copy-file.c: Include <stddef.h>, for size_t.
20269
20270 2003-04-21  Paul Eggert  <eggert@twinsun.com>
20271
20272         * m4/error.m4 (gl_ERROR): Do not put under dynamic conditions some
20273         code which expansion is under static control.  Patch imported from
20274         Akim Demaille's patch to Bison; see
20275         <http://mail.gnu.org/archive/html/bison-patches/2003-03/msg00057.html>.
20276
20277 2003-04-14  Bruno Haible  <bruno@clisp.org>
20278
20279         * m4/error.m4 (jm_PREREQ_ERROR): Use AC_FUNC_VPRINTF.
20280
20281 2003-04-11  Jim Meyering  <jim@meyering.net>
20282
20283         Merge changes from Coreutils.
20284
20285         2003-03-22  Jim Meyering  <jim@meyering.net>
20286
20287         * lib/strftime.c (widen): Cast alloca return value to proper type.
20288
20289         2003-01-19  Ulrich Drepper  <drepper@redhat.com>
20290
20291         From GNU libc.
20292         * lib/strftime.c (my_strftime): Handle very large width
20293         specifications for numeric values correctly.  Improve checks for
20294         overflow.
20295
20296         2003-01-19  Jim Meyering  <jim@meyering.net>
20297
20298         * lib/strftime.c (widen) [COMPILE_WIDE]: Merge nearly-identical
20299         definitions.
20300         (nl_get_alt_digit) [! defined my_strftime]: Define.
20301         (my_strftime) [_NL_CURRENT]: Merge nearly-identical uses of
20302         _nl_get_alt_digit and _nl_get_walt_digit.
20303
20304         * lib/strftime.c (my_strftime): Merge in locale-related changes from
20305         libc. These changes have no effect outside of _LIBC.
20306
20307 2003-04-10  Bruno Haible  <bruno@clisp.org>
20308
20309         * modules/findprog: New file.
20310         * MODULES.html.sh (func_all_modules): Add it.
20311
20312 2003-04-10  Bruno Haible  <bruno@clisp.org>
20313
20314         * m4/findprog.m4: New file.
20315         * m4/eaccess.m4: New file.
20316
20317 2003-04-10  Bruno Haible  <bruno@clisp.org>
20318
20319         * lib/findprog.h: New file, from GNU gettext.
20320         * lib/findprog.c: New file, from GNU gettext.
20321
20322 2003-04-05  Jim Meyering  <jim@meyering.net>
20323
20324         Merge changes from Coreutils.
20325
20326         * lib/exclude.h (PARAMS): Remove definition and uses.
20327         * lib/exclude.c: Remove uses of `PARAMS'.
20328
20329         * lib/dirname.c [TEST_DIRNAME]: Update build instructions for test.
20330         Add test-cases for DOS filenames. Declare program_name.
20331         (main): Set up program_name.  Patch by Rich Dawe.
20332
20333         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Detect any
20334         error from mntctl.
20335         Use mntctl's return value to drive the entry-processing loop, since
20336         we can't rely on the value of the vmt_length member in the last
20337         entry.  On some systems doing so could result in exhausting
20338         virtual memory.  Based in part on a patch from Mike Jetzer.
20339
20340 2003-04-04  Bruno Haible  <bruno@clisp.org>
20341
20342         * modules/linebreak: New file.
20343         * MODULES.html.sh (func_all_modules): Add it.
20344
20345 2003-04-04  Bruno Haible  <bruno@clisp.org>
20346
20347         * m4/linebreak.m4: New file.
20348
20349 2003-04-04  Bruno Haible  <bruno@clisp.org>
20350
20351         * lib/linebreak.h: New file, from GNU gettext.
20352         * lib/linebreak.c: New file, from GNU gettext with slight
20353         modifications.
20354         * lib/lbrkprop.h: New file, from GNU gettext.
20355
20356 2003-04-03  Bruno Haible  <bruno@clisp.org>
20357
20358         * modules/utf8-ucs4: New file.
20359         * modules/utf16-ucs4: New file.
20360         * modules/ucs4-utf8: New file.
20361         * modules/ucs4-utf16: New file.
20362         * MODULES.html.sh (func_all_modules): Add them.
20363
20364 2003-04-03  Bruno Haible  <bruno@clisp.org>
20365
20366         * m4/utf-ucs4.m4: New file.
20367         * m4/ucs4-utf.m4: New file.
20368
20369 2003-04-03  Bruno Haible  <bruno@clisp.org>
20370
20371         * lib/utf8-ucs4.h: New file, from GNU gettext.
20372         * lib/utf16-ucs4.h: New file, from GNU gettext.
20373         * lib/ucs4-utf8.h: New file, from GNU gettext.
20374         * lib/ucs4-utf16.h: New file, from GNU gettext.
20375
20376 2003-04-02  Bruno Haible  <bruno@clisp.org>
20377
20378         * modules/binary-io: New file.
20379         * MODULES.html.sh (func_all_modules): Add it.
20380
20381 2003-04-02  Bruno Haible  <bruno@clisp.org>
20382
20383         * lib/binary-io.h: New file, from GNU gettext.
20384
20385 2003-04-01  Bruno Haible  <bruno@clisp.org>
20386
20387         * modules/pathname: New file.
20388         * MODULES.html.sh (func_all_modules): Add it.
20389
20390 2003-04-01  Bruno Haible  <bruno@clisp.org>
20391
20392         * lib/pathname.h: New file, from GNU gettext.
20393         * lib/concatpath.c: New file, from GNU gettext.
20394
20395 2003-03-30  Bruno Haible  <bruno@clisp.org>
20396
20397         * m4/copy-file.m4 (gl_COPY_FILE): Add check for chown().
20398
20399 2003-03-30  Bruno Haible  <bruno@clisp.org>
20400
20401         * lib/copy-file.c (copy_file_preserving): Don't set owner if the
20402         function chown() doesn't exist.
20403
20404 2003-03-28  Bruno Haible  <bruno@clisp.org>
20405
20406         * modules/copy-file: New file.
20407         * MODULES.html.sh (func_all_modules): Add it.
20408
20409 2003-03-28  Bruno Haible  <bruno@clisp.org>
20410
20411         * m4/copy-file.m4: New file.
20412
20413 2003-03-28  Bruno Haible  <bruno@clisp.org>
20414
20415         * lib/copy-file.h: New file, from GNU gettext.
20416         * lib/copy-file.c: New file, from GNU gettext.
20417
20418 2003-03-18  Jim Meyering  <jim@meyering.net>
20419
20420         * lib/quote.c (quote_n): Fix typo in comment.
20421
20422 2003-03-18  Bruno Haible  <bruno@clisp.org>
20423
20424         * m4/onceonly.m4: Use m4_defn instead of defn, for better error
20425         checking.
20426         * m4/onceonly_2_57.m4: Likewise.
20427
20428 2003-03-17  Bruno Haible  <bruno@clisp.org>
20429
20430         * m4/onceonly.m4: Require autoconf 2.54 or newer.
20431         (m4_quote): Remove macro.
20432         * m4/onceonly_2_57.m4: Require autoconf 2.54 or newer.
20433
20434 2003-03-14  Jim Meyering  <jim@meyering.net>
20435
20436         Merge changes from Coreutils.
20437         * lib/obstack.h (obstack_object_size): Declare temporary, __o,
20438         to be const, in order to avoid warnings.
20439         (obstack_room): Likewise.
20440         (obstack_empty_p): Likewise.
20441
20442 2003-03-14  Bruno Haible  <bruno@clisp.org>
20443
20444         * m4/onceonly_2_57.m4 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE,
20445         AC_CHECK_DECLS_ONCE): Quote AC_FOREACH variable-expansions properly.
20446
20447 2003-03-13  Paul Eggert  <eggert@twinsun.com>
20448
20449         Merge changes from Bison.
20450         * lib/obstack.h: (__INT_TO_PTR) [__STDC__]: Cast result to
20451         (void *) to avoid diagnostic with native c89 on SGI IRIX 6.5
20452         when compiling Bison 1.875's `bitset bset = obstack_alloc
20453         (bobstack, bytes);'.  Problem reported by Nelson H. F. Beebe.
20454         * lib/hash.c: Include <stdbool.h> unconditionally.
20455
20456 2003-03-13  Paul Eggert  <eggert@twinsun.com>
20457
20458         * m4/onceonly.m4 (m4_quote): New macro.
20459         (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE, AC_CHECK_DECLS_ONCE):
20460         Quote AC_FOREACH variable-expansions properly.
20461
20462 2003-03-13  Paul Eggert  <eggert@twinsun.com>
20463
20464         * doc/COPYING.DOC, fdl.texi: Sync with latest FSF version.
20465
20466 2003-03-09  Paul Eggert  <eggert@twinsun.com>
20467
20468         * lib/argmatch.c (EXIT_FAILURE): Define if the system doesn't.
20469         Reported by Bruce Becker; see:
20470         http://mail.gnu.org/archive/html/bug-bison/2003-03/msg00017.html
20471
20472 2003-03-03  Paul Eggert  <eggert@twinsun.com>
20473             Bruno Haible  <bruno@clisp.org>
20474
20475         * lib/mbswidth.h: Include <wchar.h>. Needed for UnixWare 7.1.1.
20476         Reported by John Hughes, see
20477         http://mail.gnu.org/archive/html/bug-bison/2003-02/msg00030.html
20478
20479 2003-02-20  Bruno Haible  <bruno@clisp.org>
20480
20481         * MODULES.html.sh (func_all_modules): Add poll.
20482
20483 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
20484
20485         * modules/poll: New file.
20486
20487 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
20488
20489         * lib/poll_.h: New file.
20490         * lib/poll.c: New file.
20491
20492 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
20493
20494         * m4/poll.m4: New file.
20495
20496 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
20497
20498         * modules/mathl: New file.
20499
20500 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
20501
20502         * lib/mathl.h: New file.
20503         * lib/acosl.c: New file.
20504         * lib/asinl.c: New file.
20505         * lib/atanl.c: New file.
20506         * lib/ceill.c: New file.
20507         * lib/cosl.c: New file.
20508         * lib/expl.c: New file.
20509         * lib/floorl.c: New file.
20510         * lib/frexpl.c: New file.
20511         * lib/ldexpl.c: New file.
20512         * lib/logl.c: New file.
20513         * lib/sincosl.c: New file.
20514         * lib/sinl.c: New file.
20515         * lib/sqrtl.c: New file.
20516         * lib/tanl.c: New file.
20517         * lib/trigl.c: New file.
20518         * lib/trigl.h: New file.
20519
20520 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
20521
20522         * m4/mathl.m4: New file.
20523
20524 2003-02-18  Bruno Haible  <bruno@clisp.org>
20525
20526         * MODULES.html.sh (func_all_modules): Add mathl.
20527
20528 2003-02-17  Bruno Haible  <bruno@clisp.org>
20529
20530         * modules/mkdtemp: New module.
20531         * MODULES.html.sh (func_all_modules): Add it.
20532
20533 2003-02-17  Bruno Haible  <bruno@clisp.org>
20534
20535         * m4/mkdtemp.m4: New file, from GNU gettext with modifications.
20536
20537 2003-02-17  Bruno Haible  <bruno@clisp.org>
20538
20539         * lib/mkdtemp.h: New file, from GNU gettext.
20540         * lib/mkdtemp.c: New file, from GNU gettext.
20541
20542 2003-02-02  Jim Meyering  <jim@meyering.net>
20543
20544         * m4/regex.m4 (jm_INCLUDED_REGEX): Detect broken re_search in
20545         e.g. glibc-2.2.93.
20546
20547 2003-01-31  Bruno Haible  <bruno@clisp.org>
20548
20549         * m4/rename.m4 (vb_FUNC_RENAME): Add a redirection from 'rename' to
20550         'rpl_rename'.
20551         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Add a redirection from 'strnlen' to
20552         'rpl_strnlen'.
20553         * m4/strtod.m4 (gl_FUNC_STRTOD): Add a redirection from 'strtod' to
20554         'rpl_strtod'.
20555         * m4/utime.m4 (jm_FUNC_UTIME): Add a redirection from 'utime' to
20556         'rpl_utime'.
20557
20558 2003-01-31  Bruno Haible  <bruno@clisp.org>
20559
20560         * lib/rename.c: #undef rename before defining rpl_rename.
20561         * lib/strnlen.c: #undef strnlen, define rpl_strnlen instead of strnlen.
20562
20563 2003-01-30  Bruno Haible  <bruno@clisp.org>
20564
20565         * modules/vasnprintf, modules/vasprintf: New modules.
20566         * MODULES.html.sh (func_all_modules): Add them.
20567
20568 2003-01-30  Bruno Haible  <bruno@clisp.org>
20569
20570         * m4/signed.m4: New file, from GNU gettext.
20571         * m4/longdouble.m4: New file, from GNU gettext.
20572         * m4/wchar_t.m4: New file, from GNU gettext.
20573         * m4/wint_t.m4: New file, from GNU gettext.
20574         * m4/vasnprintf.m4: New file.
20575         * m4/vasprintf.m4: New file.
20576
20577 2003-01-30  Bruno Haible  <bruno@clisp.org>
20578
20579         * lib/printf-args.h: New file, from GNU gettext.
20580         * lib/printf-args.c: New file, from GNU gettext.
20581         * lib/printf-parse.h: New file, from GNU gettext.
20582         * lib/printf-parse.c: New file, from GNU gettext.
20583         * lib/vasnprintf.h: New file, from GNU gettext.
20584         * lib/vasnprintf.c: New file, from GNU gettext.
20585         * lib/asnprintf.c: New file, from GNU gettext.
20586         * lib/vasprintf.h: New file, from GNU gettext with modifications.
20587         * lib/vasprintf.c: New file, from GNU gettext.
20588         * lib/asprintf.c: New file, from GNU gettext.
20589
20590 2003-01-29  Bruno Haible  <bruno@clisp.org>
20591
20592         * modules/stpncpy: New module.
20593         * MODULES.html.sh (func_all_modules): Add it.
20594
20595 2003-01-29  Bruno Haible  <bruno@clisp.org>
20596
20597         * m4/stpncpy.m4: New file.
20598
20599 2003-01-29  Bruno Haible  <bruno@clisp.org>
20600
20601         * lib/stpncpy.h: New file, from GNU gettext with modifications.
20602         * lib/stpncpy.c: New file, from GNU gettext with modifications.
20603
20604 2003-01-28  Bruno Haible  <bruno@clisp.org>
20605
20606         * modules/c-ctype: New module.
20607         * MODULES.html.sh (func_all_modules): Add it.
20608
20609 2003-01-28  Bruno Haible  <bruno@clisp.org>
20610
20611         * lib/c-ctype.h: New file, from GNU gettext, with changes suggested by
20612         Paul Eggert.
20613         * lib/c-ctype.c: New file, from GNU gettext, with changes suggested by
20614         Paul Eggert.
20615
20616 2003-01-27  Bruno Haible  <bruno@clisp.org>
20617
20618         * modules/xsetenv: New module.
20619         * MODULES.html.sh (func_all_modules): Add it.
20620
20621 2003-01-27  Bruno Haible  <bruno@clisp.org>
20622
20623         * lib/xsetenv.h: New file, from GNU gettext.
20624         * lib/xsetenv.c: New file, from GNU gettext.
20625
20626 2003-01-23  Jim Meyering  <jim@meyering.net>
20627
20628         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Correct typo: s/-1/no/ that kept this
20629         from working on systems without dirfd (at least Irix and OSF1/Tru64).
20630
20631 2003-01-23  Bruno Haible  <bruno@clisp.org>
20632
20633         * modules/minmax: New module.
20634         * MODULES.html.sh (func_all_modules): Add it.
20635
20636 2003-01-23  Bruno Haible  <bruno@clisp.org>
20637
20638         * lib/minmax.h: New file, from GNU gettext, with comments from Paul
20639         Eggert.
20640
20641 2003-01-22  Bruno Haible  <bruno@clisp.org>
20642
20643         * modules/exit: New module.
20644         * MODULES.html.sh (func_all_modules): Add it.
20645
20646 2003-01-22  Bruno Haible  <bruno@clisp.org>
20647
20648         * lib/exit.h: New file, from GNU gettext.
20649
20650 2003-01-19  Bruno Haible  <bruno@clisp.org>
20651
20652         * gnulib-tool: Recognize option --extract-maintainer.
20653         (func_get_maintainer): New function.
20654         * modules/*: Add Maintainer entry.
20655
20656 2003-01-16  Jim Meyering  <jim@meyering.net>
20657
20658         * m4/regex.m4: The `regex' struct is both input and output.
20659         Initialize it before each use.  Patch by Tim Waugh.
20660
20661 2003-01-16  Bruno Haible  <bruno@clisp.org>
20662
20663         * MODULES.html.sh: Add a table of contents. Add the module name as
20664         leftmost column. Add hyperlinks.
20665
20666 2003-01-15  Bruno Haible  <bruno@clisp.org>
20667
20668         * m4/md5.m4 (gl_MD5): Require AC_C_INLINE.
20669
20670 2003-01-15  Bruno Haible  <bruno@clisp.org>
20671
20672         * m4/longlong.m4 (jm_AC_TYPE_LONG_LONG): Also test the LL suffix.
20673         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Also test the ULL
20674         suffix.
20675
20676 2003-01-15  Bruno Haible  <bruno@clisp.org>
20677
20678         * m4/alloca.m4 (gl_FUNC_ALLOCA): Invoke AC_EGREP_CPP prerequisites.
20679
20680 2003-01-15  Bruno Haible  <bruno@clisp.org>
20681
20682         * lib/stpcpy.h (stpcpy): Use ANSI C function declarations.
20683         * lib/strcase.h (strcasecmp, strncasecmp): Likewise.
20684
20685 2003-01-14  Jim Meyering  <jim@meyering.net>
20686
20687         * lib/same.c (same_name): Tweak a comment.
20688
20689 2003-01-14  Bruno Haible  <bruno@clisp.org>
20690
20691         * lib/same.c (same_name): Reorder tests so as to avoid calling stat()
20692         when a string comparison is sufficient.
20693
20694 2003-01-14  Bruno Haible  <bruno@clisp.org>
20695
20696         * lib/readtokens.c (readtoken): Cast character to 'unsigned char', not
20697         'unsigned int'.
20698
20699 2003-01-14  Bruno Haible  <bruno@clisp.org>
20700
20701         * lib/hash-pjw.c: Add comment about low quality of this function.
20702
20703 2003-01-13  Bruno Haible  <bruno@clisp.org>
20704
20705         * modules/stpcpy: Distribute lib/stpcpy.h.
20706         * modules/setenv: Depend on alloca. Distribute lib/setenv.h.
20707
20708 2003-01-13  Bruno Haible  <bruno@clisp.org>
20709
20710         * modules/*: Add a description.
20711         * modules/strpbrk: Fix Makefile.am snippet.
20712         * modules/strtoimax: Fix dependencies.
20713         * modules/strtoumax: Likewise.
20714
20715 2003-01-13  Bruno Haible  <bruno@clisp.org>
20716
20717         * gnulib-tool (func_create_testdir): Substitute lib_OBJECTS.
20718         * modules/alloca (Makefile.am): All object files depend on alloca.h.
20719         * modules/stdbool (Makefile.am): All object files depend on stdbool.h.
20720
20721 2003-01-13  Bruno Haible  <bruno@clisp.org>
20722
20723         * gnulib-tool (func_create_testdir): Store config/* files in the main
20724         directory.
20725         * config.rpath: Move to ...
20726         * config/config.rpath: ... here.
20727         * modules/gettext: Contains config/config.rpath, not config.rpath.
20728         * modules/iconv: Likewise.
20729
20730 2003-01-12  Paul Eggert  <eggert@twinsun.com>
20731
20732         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
20733         to avoid collisions with libcurses and libreadline.
20734
20735         * m4/getstr.m4: Remove.
20736         * m4/getline.m4 (gl_PREREQ_GETLINE): Require AC_HEADER_STDC.
20737
20738 2003-01-12  Paul Eggert  <eggert@twinsun.com>
20739
20740         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
20741         to avoid collisions with libcurses and libreadline.
20742
20743         * lib/Makefile.am (libfetish_a_SOURCES): Remove getstr.c, getstr.h.
20744         * lib/getstr.h, getstr.c: Remove.
20745         * lib/getline.c: Include "getline.h", to check interface.
20746         Move body of old getstr.c here: this defines MIN_CHUNK and
20747         declares getdelim2, which is renamed from getstr.
20748         (getline, getdelim): Adjust to renaming of getstr -> getdelim2.
20749
20750         * lib/linebuffer.c (readlinebuffer): Renamed from readline.
20751         All uses changed.
20752         * lib/linebuffer.h: Likewise.
20753         (readline): Remove backward-compatibility macro.
20754
20755 2003-01-12  Paul Eggert  <eggert@twinsun.com>
20756
20757         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
20758         to avoid collisions with libcurses and libreadline.
20759         * getstr: Remove.
20760         * MODULES.html.sh: Remove getstr.
20761         * modules/getline: Depend on unlocked-io, not getstr.
20762
20763 2003-01-12  Jim Meyering  <jim@meyering.net>
20764
20765         * lib/makepath.c: Don't test HAVE_ERRNO_H.  It's not necessary.
20766
20767 2003-01-10  Bruno Haible  <bruno@clisp.org>
20768
20769         * modules/alloca: Change Makefile.am requirements. Simplify Include
20770         requirements. Add lib/alloca_.h to file list.
20771
20772 2003-01-10  Bruno Haible  <bruno@clisp.org>
20773
20774         * m4/alloca.m4 (gl_FUNC_ALLOCA): Also define ALLOCA_H.
20775
20776 2003-01-10  Bruno Haible  <bruno@clisp.org>
20777
20778         * lib/alloca_.h: New file.
20779         * lib/getdate.y: Unconditionally include alloca.h.
20780         * lib/makepath.c: Likewise.
20781         * lib/setenv.c: Likewise.
20782         * lib/userspec.c: Likewise.
20783
20784 2003-01-09  Karl Berry  <karl@gnu.org>
20785
20786         * MODULES.html.sh: include `dirname $0` in PATH, to find
20787         gnulib-tool.
20788
20789 2003-01-09  Bruno Haible  <bruno@clisp.org>
20790
20791         * modules/stdbool: Change configure.ac, Makefile.am requirements.
20792         Simplify Include requirements. Add lib/stdbool.h.in to file list.
20793
20794 2003-01-09  Bruno Haible  <bruno@clisp.org>
20795
20796         * m4/stdbool.m4 (AM_STDBOOL_H): New macro.
20797
20798 2003-01-09  Bruno Haible  <bruno@clisp.org>
20799
20800         * lib/stdbool.h.in: New file.
20801
20802 2003-01-09  Bruno Haible  <bruno@clisp.org>
20803
20804         * gnulib-tool (func_all_modules): Ignore files ending in ~.
20805         * MODULES.html.sh: Likewise.
20806
20807 2003-01-08  Jim Meyering  <jim@meyering.net>
20808
20809         * lib/full-write.c: Undefine and define-away `const' after inclusion
20810         of errno.h, not before.  Suggestion from Bruno Haible.
20811
20812 2003-01-08  Bruno Haible  <bruno@clisp.org>
20813
20814         * modules/full-read: Depend on full-write.
20815
20816 2003-01-08  Bruno Haible  <bruno@clisp.org>
20817
20818         * lib/safe-read.c: Include specification header first, to ensure its
20819         selfcontainedness.
20820         * lib/full-write.c: Likewise.
20821
20822 2003-01-07  Jim Meyering  <jim@meyering.net>
20823
20824         * lib/full-write.c: Rework so that it may serve to define full_read,
20825         too.
20826         * lib/full-read.c: Simply #define FULL_READ and include full-write.c.
20827
20828 2003-01-07  Bruno Haible  <bruno@clisp.org>
20829
20830         * lib/strtoimax.c: Include <stdint.h> as an alternative to
20831         <inttypes.h>.
20832         * lib/xstrtol.h: Likewise.
20833         * lib/xstrtoimax.c: Likewise.
20834         * lib/xstrtoumax.c: Likewise.
20835         * lib/human.h: Likewise.
20836
20837         * lib/tempname.c: Include <inttypes.h> too. Avoids a compilation error
20838         on systems that have <inttypes.h> but not <stdint.h>.
20839
20840 2003-01-07  Bruno Haible  <bruno@clisp.org>
20841
20842         * MODULES.html.sh: Add copyright notice.
20843         (missed_files): Omit CVS directory entries.
20844         (func_module): Make it work with sed-3.02.
20845         * MODULES.txt: Remove file.
20846
20847 2003-01-06  Jim Meyering  <jim@meyering.net>
20848
20849         * lib/version-etc.c: Update year in translatable copyright string.
20850
20851 2003-01-03  Karl Berry  <karl@gnu.org>
20852
20853         * config/config.{guess,sub}: update from prep.
20854
20855 2003-01-02  Karl Berry  <karl@gnu.org>
20856
20857         * doc/COPYING.DOC: belatedly updated to 1.2.
20858
20859 2003-01-01  Karl Berry  <karl@gnu.org>
20860
20861         * gnulib-tool (func_verify_module): report module name $module in
20862         error message, not $1.
20863         * gnulib-tool (create-testdir): don't complain if destdir couldn't
20864         be created, only if it doesn't exist.
20865         * gnulib-tool (last_checkin_date): don't expand the $Date here.
20866
20867 2002-12-31  Paul Eggert  <eggert@twinsun.com>
20868
20869         * m4/memcoll.m4 (gl_MEMCOLL): Require AC_FUNC_MEMCMP.
20870
20871 2002-12-31  Paul Eggert  <eggert@twinsun.com>
20872
20873         * lib/memcoll.c (memcoll): Fall back on a simple algorithm using
20874         memcmp if strcoll doesn't work.
20875
20876 2002-12-31  Bruno Haible  <bruno@clisp.org>
20877
20878         * lib/utime.c (utime_null): No need to call ftruncate if the file was
20879         nonempty.
20880
20881 2002-12-31  Bruno Haible  <bruno@clisp.org>
20882
20883         * lib/memcoll.c (STRCOLL): New macro.
20884         (memcoll): Use it.
20885
20886 2002-12-31  Bruno Haible  <bruno@clisp.org>
20887
20888         * lib/localcharset.h: New file.
20889         * lib/localcharset.c: Include it.
20890         * lib/unicodeio.c: Likewise.
20891
20892 2002-12-31  Bruno Haible  <bruno@clisp.org>
20893
20894         * lib/getstr.h (getstr): Define, to avoid clash with libcurses.
20895         * lib/linebuffer.h (readline): Define, to avoid clash with libreadline.
20896
20897 2002-12-31  Bruno Haible  <bruno@clisp.org>
20898
20899         * lib/getline.h: Include <stddef.h>, for size_t.
20900
20901         * lib/unicodeio.h: Include <stddef.h>, for size_t.
20902         * lib/unicodeio.c: Don't include <stddef.h>.
20903
20904 2002-12-31  Bruno Haible  <bruno@clisp.org>
20905
20906         * lib/getdate.y (get_date): Test HAVE_STRUCT_TM_TM_ZONE, not
20907         HAVE_TM_ZONE.
20908
20909 2002-12-24  Karl Berry  <karl@gnu.org>
20910
20911         * config/config.guess: update from prep.
20912
20913 2002-12-24  Bruno Haible  <bruno@clisp.org>
20914
20915         General infrasructure.
20916         * m4/README: Rewritten.
20917         * m4/onceonly.m4: New file.
20918         * m4/onceonly_2_57.m4: New file.
20919
20920         Module atexit.
20921         * m4/atexit.m4: New file.
20922
20923         Module strtod.
20924         * m4/strtod.m4: New file.
20925
20926         Module strtol.
20927         * m4/strtol.m4: New file.
20928
20929         Module strtoul.
20930         * m4/strtoul.m4: New file.
20931
20932         Module memchr.
20933         * m4/memchr.m4: New file.
20934
20935         Module memcmp.
20936         * m4/memcmp.m4 (gl_PREREQ_MEMCMP): New macro.
20937         (jm_FUNC_MEMCMP): Invoke it.
20938
20939         Module memcpy.
20940         * m4/memcpy.m4: New file.
20941
20942         Module memmove.
20943         * m4/memmove.m4: New file.
20944
20945         Module memset.
20946         * m4/memset.m4: New file.
20947
20948         Module strcspn.
20949         * m4/strcspn.m4: New file.
20950
20951         Module strpbrk.
20952         * m4/strpbrk.m4: New file.
20953
20954         Module strstr.
20955         * m4/strstr.m4: New file.
20956
20957         Module strerror.
20958         * m4/strerror.m4: New file.
20959
20960         Module mktime.
20961         * m4/mktime.m4: Renamed from jm-mktime.m4.
20962         (gl_PREREQ_MKTIME): New macro.
20963         (gl_FUNC_MKTIME): Renamed from jm_FUNC_MKTIME. Invoke gl_PREREQ_MKTIME.
20964
20965         Module malloc.
20966         * m4/malloc.m4 (gl_PREREQ_MALLOC): New macro.
20967         (jm_FUNC_MALLOC): Use AC_FUNC_MALLOC. Invoke gl_PREREQ_MALLOC.
20968         Don't define HAVE_DONE_WORKING_MALLOC_CHECK, since nothing uses it.
20969
20970         Module realloc.
20971         * m4/realloc.m4 (gl_PREREQ_REALLOC): New macro.
20972         (jm_FUNC_REALLOC): Use AC_FUNC_REALLOC. Invoke gl_PREREQ_REALLOC.
20973         Don't define HAVE_DONE_WORKING_REALLOC_CHECK, since nothing uses it.
20974
20975         Module strftime.
20976         * m4/tm_gmtoff.m4: New file, extracted from strftime.m4.
20977         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Use AC_FUNC_STRFTIME.
20978         Don't test for bcopy (we are not emacs). Invoke AC_TYPE_MBSTATE_T and
20979         gl_TM_GMTOFF.
20980         (_jm_STRFTIME_PREREQS, jm_FUNC_GNU_STRFTIME): Use onceonly macros.
20981
20982         Module xalloc.
20983         * m4/xalloc.m4: New file.
20984
20985         Module alloca.
20986         * m4/alloca.m4: New file.
20987
20988         Module putenv.
20989         * m4/putenv.m4 (gl_PREREQ_PUTENV): New macro.
20990         (jm_FUNC_PUTENV): Invoke it.
20991
20992         Module setenv.
20993         * m4/setenv.m4 (gt_FUNC_SETENV): New macro.
20994         (gt_CHECK_VAR_DECL): Fix quoting error that led to infinite loop in m4
20995         when invoked twice.
20996         (gt_PREREQ_SETENV, gt_PREREQ_UNSETENV): New macros, replacing old
20997         gt_FUNC_SETENV.
20998
20999         Module memrchr.
21000         * m4/memrchr.m4: New file.
21001
21002         Module stpcpy.
21003         * m4/stpcpy.m4: New file.
21004
21005         Module strcase.
21006         * m4/strcase.m4: New file.
21007
21008         Module strdup.
21009         * m4/strdup.m4: New file.
21010
21011         Module strnlen.
21012         * m4/strnlen.m4: New file.
21013
21014         Module strndup.
21015         * m4/strndup.m4: New file.
21016
21017         Module xstrtod.
21018         * m4/xstrtod.m4: New file.
21019
21020         Module xstrtol.
21021         * m4/xstrtol.m4: New file.
21022
21023         Module getdate.
21024         * m4/getdate.m4: New file.
21025
21026         Module unlocked-io.
21027         * m4/unlocked-io.m4: Renamed from jm-glibc-io.m4.
21028         (jm_FUNC_GLIBC_UNLOCKED_IO): Invoke AC_GNU_SOURCE. Use onceonly macros.
21029         * m4/jm-glibc-io.m4n: Remove file.
21030
21031         Module long-options.
21032         * m4/long-options.m4: New file.
21033
21034         Module md5.
21035         * m4/md5.m4: New file.
21036
21037         Module sha.
21038         * m4/sha.m4: New file.
21039
21040         Module getstr.
21041         * m4/getstr.m4: New file.
21042
21043         Module getline.
21044         * m4/getline.m4 (gl_PREREQ_GETLINE): New macro.
21045         (AM_FUNC_GETLINE): Invoke AC_GNU_SOURCE. Use <stdlib.h>, not
21046         <sys/types.h>, for size_t. Use the function name gnu_getline, not
21047         simply getline. Infoke gl_PREREQ_GETLINE.
21048
21049         Module obstack.
21050         * m4/obstack.m4: New file.
21051
21052         Module hash.
21053         * m4/hash.m4: New file.
21054
21055         Module readtokens.
21056         * m4/readtokens.m4: New file.
21057
21058         Module strverscmp.
21059         * m4/strverscmp.m4: New file.
21060
21061         Module stdbool.
21062         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Add test for _Bool. Needed for
21063         OSF/1.
21064
21065         Module strtoll.
21066         * m4/strtoll.m4: New file.
21067
21068         Module strtoull.
21069         * m4/strtoull.m4: New file.
21070
21071         Module strtoimax.
21072         * m4/strtoimax.m4: New file.
21073
21074         Module strtoumax.
21075         * m4/strtoumax.m4: New file.
21076
21077         Module xstrtoimax.
21078         * m4/xstrtoimax.m4 (jm_XSTRTOIMAX): Renamed from
21079         jm_AC_PREREQ_XSTRTOIMAX.
21080         Moved the strtol prerequisites to strtol.m4.
21081         Moved the strtoll prerequisites to strtoll.m4.
21082         Moved the strtoimax prerequisites to strtoimax.m4.
21083
21084         Module xstrtoumax.
21085         * m4/xstrtoumax.m4 (jm_XSTRTOUMAX): Renamed from
21086         jm_AC_PREREQ_XSTRTOUMAX.
21087         Moved the strtoul prerequisites to strtoul.m4.
21088         Moved the strtoull prerequisites to strtoull.m4.
21089         Moved the strtoumax prerequisites to strtoumax.m4.
21090
21091         Module chown.
21092         * m4/chown.m4 (gl_PREREQ_CHOWN): New macro.
21093         (jm_FUNC_CHOWN): Use AC_FUNC_CHOWN. Invoke gl_PREREQ_CHOWN.
21094
21095         Module dup2.
21096         * m4/dup2.m4: New file.
21097
21098         Module ftruncate.
21099         * m4/ftruncate.m4 (gl_PREREQ_FTRUNCATE): New macro.
21100         (jm_FUNC_FTRUNCATE): Use AC_REPLACE_FUNCS. Invoke gl_PREREQ_FTRUNCATE.
21101
21102         Module getgroups.
21103         * m4/getgroups.m4 (gl_PREREQ_GETGROUPS): New macro.
21104         (jm_FUNC_GETGROUPS): Use AC_FUNC_GETGROUPS. Invoke gl_PREREQ_GETGROUPS.
21105
21106         Module gettimeofday.
21107         * m4/gettimeofday.m4 (gl_PREREQ_GETTIMEOFDAY): New macro.
21108         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Use onceonly macros. Invoke
21109         gl_PREREQ_GETTIMEOFDAY.
21110
21111         Module mkdir.
21112         * m4/mkdir-slash.m4 (gl_PREREQ_MKDIR): New macro.
21113         (UTILS_FUNC_MKDIR_TRAILING_SLASH): Invoke gl_PREREQ_MKDIR.
21114
21115         Module mkstemp.
21116         * m4/mkstemp.m4 (gl_PREREQ_MKSTEMP): New macro.
21117         (jm_PREREQ_TEMPNAME): New macro, from prereq.m4. Also invoke
21118         jm_AC_TYPE_UINTMAX_T.
21119         (UTILS_FUNC_MKSTEMP): Invoke gl_PREREQ_MKSTEMP and jm_PREREQ_TEMPNAME.
21120
21121         Module stat.
21122         * m4/stat.m4 (gl_PREREQ_STAT): New macro.
21123         (jm_FUNC_STAT): Use AC_FUNC_STAT. Invoke gl_PREREQ_STAT.
21124
21125         Module lstat.
21126         * m4/lstat.m4 (gl_PREREQ_LSTAT): New macro.
21127         (jm_FUNC_LSTAT): Use AC_FUNC_LSTAT. Invoke gl_PREREQ_LSTAT.
21128
21129         Module timespec.
21130         * m4/timespec.m4 (gl_TIMESPEC): New macro.
21131         (jm_CHECK_TYPE_STRUCT_TIMESPEC): Add check for <sys/time.h>.
21132         * m4/st_mtim.m4: Indentation.
21133
21134         Module nanosleep.
21135         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): New macro.
21136         (jm_FUNC_NANOSLEEP): Add check for <sys/time.h>. Invoke
21137         gl_PREREQ_NANOSLEEP.
21138
21139         Module regex.
21140         * m4/regex.m4 (jm_PREREQ_REGEX): New macro.
21141         (jm_INCLUDED_REGEX): Invoke jm_PREREQ_REGEX.
21142         (gl_REGEX): New macro.
21143
21144         Module rename.
21145         * m4/rename.m4 (gl_PREREQ_RENAME): New macro.
21146         (vb_FUNC_RENAME): Invoke gl_PREREQ_RENAME.
21147
21148         Module rmdir.
21149         * m4/rmdir.m4: New file.
21150
21151         Module utime.
21152         * m4/utimbuf.m4 (jm_CHECK_TYPE_STRUCT_UTIMBUF): Use onceonly macros.
21153         * m4/utime.m4 (gl_PREREQ_UTIME): New macro.
21154         (jm_FUNC_UTIME): Invoke gl_PREREQ_UTIME.
21155
21156         Module dirname.
21157         * m4/dirname.m4: New file.
21158
21159         Module getopt.
21160         * m4/getopt.m4: New file.
21161
21162         Module unistd-safer.
21163         * m4/unistd-safer.m4: New file.
21164
21165         Module fnmatch.
21166         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Include <stdlib.h>, for exit()
21167         declaration.
21168         (gl_PREREQ_FNMATCH_EXTRA): New macro.
21169         (gl_FUNC_FNMATCH_POSIX): New macro.
21170         (gl_FUNC_FNMATCH_GNU): Renamed from AC_FUNC_FNMATCH_GNU. Invoke
21171         gl_PREREQ_FNMATCH_EXTRA. Use the function name gnu_fnmatch, not
21172         simply fnmatch.
21173
21174         Module exclude.
21175         * m4/exclude.m4: New file.
21176
21177         Module human.
21178         * m4/human.m4: New file.
21179
21180         Module acl.
21181         * m4/acl.m4: Nop.
21182
21183         Module backupfile.
21184         * m4/backupfile.m4: New file.
21185         * m4/d-ino.m4: Indentation.
21186
21187         Module fsusage.
21188         * m4/fsusage.m4 (gl_FSUSAGE): New macro.
21189         (jm_STATFS_TRUNCATES): New macro, from coreutils-4.5.4/configure.ac.
21190         (gl_PREREQ_FSUSAGE_EXTRA): New macro.
21191
21192         Module dirfd.
21193         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Invoke some AC_EGREP_CPP
21194         requirements.
21195
21196         Module euidaccess.
21197         * m4/euidaccess.m4: New file.
21198
21199         Module file-type.
21200         * m4/file-type.m4: New file.
21201
21202         Module fileblocks.
21203         * m4/fileblocks.m4: New file.
21204
21205         Module filemode.
21206         * m4/filemode.m4: New file.
21207
21208         Module isdir.
21209         * m4/isdir.m4: New file.
21210
21211         Module lchown.
21212         * m4/lchown.m4 (gl_PREREQ_LCHOWN): New macro.
21213         (jm_FUNC_LCHOWN): Invoke gl_PREREQ_LCHOWN.
21214
21215         Module makepath.
21216         * m4/makepath.m4: New file.
21217
21218         Module modechange.
21219         * m4/modechange.m4: New file.
21220
21221         Module mountlist.
21222         * m4/mountlist.m4: New file.
21223         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Use onceonly macros.
21224         Indentation.
21225
21226         Module path-concat.
21227         * m4/path-concat.m4: New file.
21228
21229         Module pathmax.
21230         * m4/pathmax.m4: New file.
21231
21232         Module same.
21233         * m4/same.m4: New file.
21234
21235         Module save-cwd.
21236         * m4/save-cwd.m4: New file.
21237
21238         Module savedir.
21239         * m4/savedir.m4: New file.
21240
21241         Module xgetcwd.
21242         * m4/xgetcwd.m4: New file.
21243         * m4/getcwd.m4 (AC_FUNC_GETCWD_NULL): Use onceonly macros.
21244
21245         Module xreadlink.
21246         * m4/xreadlink.m4: New file.
21247
21248         Module safe-read.
21249         * m4/safe-read.m4: New file.
21250
21251         Module safe-write.
21252         * m4/safe-write.m4: New file.
21253
21254         Module closeout.
21255         * m4/closeout.m4: New file.
21256
21257         Module stdio-safer.
21258         * m4/stdio-safer.m4: New file.
21259
21260         Module getpass.
21261         * m4/getpass.m4: New file.
21262
21263         Module getugroups.
21264         * m4/getugroups.m4: New file.
21265
21266         Module group-member.
21267         * m4/group-member.m4 (gl_PREREQ_GROUP_MEMBER): New macro.
21268         (jm_FUNC_GROUP_MEMBER): Invoke AC_GNU_SOURCE, gl_PREREQ_GROUP_MEMBER.
21269
21270         Module idcache.
21271         * m4/idcache.m4: New file.
21272
21273         Module userspec.
21274         * m4/userspec.m4: New file.
21275
21276         Module gettime.
21277         * m4/clock_time.m4: New file.
21278         * m4/gettime.m4: New file.
21279
21280         Module settime.
21281         * m4/settime.m4: New file.
21282
21283         Module posixtm.
21284         * m4/posixtm.m4: New file.
21285
21286         Module gethostname.
21287         * m4/gethostname.m4: New file.
21288
21289         Module canon-host.
21290         * m4/canon-host.m4: New file.
21291
21292         Module gettext.
21293         * m4/codeset.m4: New file, from gettext-0.11.5.
21294         * m4/gettext.m4: New file, from gettext-0.11.5.
21295         * m4/glibc21.m4: New file, from gettext-0.11.5.
21296         * m4/iconv.m4: New file, from gettext-0.11.5.
21297         * m4/intdiv0.m4: New file, from gettext-0.11.5.
21298         * m4/inttypes-pri.m4: New file, from gettext-0.11.5.
21299         * m4/inttypes.m4: New file, from gettext-0.11.5.
21300         * m4/inttypes_h.m4: New file, from gettext-0.11.5 with modifications.
21301         * m4/isc-posix.m4: New file, from gettext-0.11.5.
21302         * m4/lcmessage.m4: New file, from gettext-0.11.5.
21303         * m4/lib-ld.m4: New file, from gettext-0.11.5.
21304         * m4/lib-link.m4: New file, from gettext-0.11.5.
21305         * m4/lib-prefix.m4: New file, from gettext-0.11.5.
21306         * m4/progtest.m4: New file, from gettext-0.11.5.
21307         * m4/stdint_h.m4: New file, from gettext-0.11.5 with modifications.
21308         * m4/uintmax_t.m4: New file, from gettext-0.11.5 with modifications.
21309         * m4/ulonglong.m4: New file, from gettext-0.11.5 with modifications.
21310
21311         Module localcharset.
21312         * m4/localcharset.m4: New file.
21313
21314         Module hard-locale.
21315         * m4/hard-locale.m4: New file.
21316
21317         Module mbswidth.
21318         * m4/mbswidth.m4 (gl_MBSWIDTH): Renamed from jm_PREREQ_MBSWIDTH. Use
21319         onceonly macros.
21320         * m4/mbrtowc.m4: Add comment.
21321
21322         Module memcasecmp.
21323         * m4/memcasecmp.m4: New file.
21324
21325         Module memcoll.
21326         * m4/memcoll.m4: New file.
21327
21328         Module unicodeio.
21329         * m4/unicodeio.m4: New file.
21330
21331         Module rpmatch.
21332         * m4/rpmatch.m4: New file.
21333
21334         Module yesno.
21335         * m4/yesno.m4: New file.
21336
21337         Module exitfail.
21338         * m4/exitfail.m4: New file.
21339
21340         Module c-stack.
21341         * m4/c-stack.m4 (gl_C_STACK): New macro.
21342         (jm_PREREQ_C_STACK): Check for <sys/time.h>. Use onceonly macros.
21343
21344         Module error.
21345         * m4/error.m4 (gl_ERROR): New macro.
21346         (jm_PREREQ_ERROR): Use onceonly macros.
21347
21348         Module fatal.
21349         * m4/fatal.m4: New file.
21350
21351         Module getloadavg.
21352         * m4/getloadavg.m4 (AC_FUNC_GETLOADAVG): Use onceonly macros.
21353         (gl_FUNC_GETLOADAVG, gl_PREREQ_GETLOADAVG): New macros.
21354
21355         Module getpagesize.
21356         * m4/getpagesize.m4: New file.
21357
21358         Module getusershell.
21359         * m4/getusershell.m4: New file.
21360
21361         Module physmem.
21362         * m4/physmem.m4: New file.
21363
21364         Module posixver.
21365         * m4/posixver.m4: New file.
21366
21367         Module quotearg.
21368         * m4/quotearg.m4: New file.
21369
21370         Module quote.
21371         * m4/quote.m4: New file.
21372
21373         Module readutmp.
21374         * m4/readutmp.m4: New file, based on jm_PREREQ_READUTMP from prereq.m4.
21375
21376         Module sig2str.
21377         * m4/sig2str.m4: New file.
21378
21379         Other.
21380         * m4/longlong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Remove, moved to
21381         ulonglong.m4.
21382         * m4/intmax_t.m4: New file.
21383         * m4/d-type.m4: Indentation.
21384         * m4/jm-macros.m4: Update.
21385         * m4/prereq.m4 (jm_PREREQ): Update.
21386         (jm_PREREQ_ADDEXT): Remove, obsoleted by backupfile.m4.
21387         (jm_PREREQ_CANON_HOST): Remove, obsoleted by canon-host.m4.
21388         (jm_PREREQ_DIRNAME): Remove, obsoleted by dirname.m4.
21389         (jm_PREREQ_EXCLUDE): Remove, obsoleted by exclude.m4.
21390         (jm_PREREQ_GETPAGESIZE): Remove, obsoleted by getpagesize.m4.
21391         (jm_PREREQ_HARD_LOCALE): Remove, obsoleted by hard-locale.m4.
21392         (jm_PREREQ_HASH): Remove, obsoleted by hash.m4.
21393         (jm_PREREQ_HUMAN): Remove, obsoleted by human.m4.
21394         (jm_PREREQ_MEMCHR): Remove, obsoleted by memchr.m4.
21395         (jm_PREREQ_PHYSMEM): Remove, obsoleted by physmem.m4.
21396         (jm_PREREQ_POSIXVER): Remove, obsoleted by posixver.m4.
21397         (jm_PREREQ_QUOTEARG): Remove, obsoleted by quotearg.m4.
21398         (jm_PREREQ_READUTMP): Remove, obsoleted by readutmp.m4.
21399         (jm_PREREQ_REGEX): Remove, obsoleted by regex.m4.
21400         (jm_PREREQ_STRNLEN): Remove, obsoleted by strnlen.m4.
21401         (jm_PREREQ_TEMPNAME): Remove, obsoleted by mkstemp.m4.
21402         (jm_PREREQ_XGETCWD): Remove, obsoleted by xgetcwd.m4.
21403         (jm_PREREQ_XREADLINK): Remove, obsoleted by xreadlink.m4.
21404         * m4/readdir.m4 (jm_FUNC_READDIR): Use onceonly macros.
21405
21406 2002-12-24  Bruno Haible  <bruno@clisp.org>
21407
21408         * MODULES.txt: Update according to m4/ changes.
21409
21410         Module gettext.
21411         * config.rpath: New file, from gettext-0.11.5.
21412
21413         * modules/*: New module descriptions.
21414         * gnulib-tool: New file.
21415         * MODULES.html.sh: New file.
21416
21417 2002-12-21  Karl Berry  <karl@gnu.org>
21418
21419         * doc/fdl.texi: update to version 1.2.
21420
21421 2002-12-19  Karl Berry  <karl@gnu.org>
21422
21423         * config/config.guess: update from prep.
21424
21425 2002-12-18  Bruno Haible  <bruno@clisp.org>
21426
21427         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't test for localtime_r.
21428         * m4/jm-mktime.m4 (jm_FUNC_MKTIME): Likewise.
21429
21430 2002-12-17  Bruno Haible  <bruno@clisp.org>
21431
21432         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Remove checks for limits.h,
21433         stdlib.h, string.h.
21434
21435 2002-12-17  Bruno Haible  <bruno@clisp.org>
21436
21437         * lib/canon-host.c (strdup): Remove unused declaration.
21438
21439         * lib/fsusage.c: Include full_read.h.
21440         (get_fs_usage): Use full_read instead of safe_read.
21441
21442         * lib/utime.c (utime_null): Use SAFE_READ_ERROR.
21443
21444 2002-12-12  Karl Berry  <karl@gnu.org>
21445
21446         * config/config.guess: update from prep.
21447
21448 2002-12-11  Bruno Haible  <bruno@clisp.org>
21449
21450         * m4/setenv.m4: New file, from gettext-0.11.5.
21451
21452 2002-12-11  Bruno Haible  <bruno@clisp.org>
21453
21454         * lib/setenv.h: Rewritten to cope with systems that have setenv() but
21455         not unsetenv().
21456         * lib/setenv.c, unsetenv.c: Taken from glibc-2.2.4 with the following
21457         modifications:
21458
21459         2002-12-11  Bruno Haible  <bruno@clisp.org>
21460
21461                 * setenv.c (alloca): Fall back to malloc.
21462                 (freea): New macro.
21463                 (setenv): Use freea() to free memory allocated with alloca().
21464
21465         2002-11-13  Bruno Haible  <bruno@clisp.org>
21466
21467                 * setenv.c (compar_fn_t, __add_to_environ, setenv): Use ANSI C
21468                 function declarations.
21469                 * unsetenv.c (unsetenv): Likewise.
21470
21471         2002-03-04  Bruno Haible  <bruno@clisp.org>
21472
21473                 Portability to AIX 4.3.3.
21474                 * unsetenv.c: New file, extracted from setenv.c.
21475                 * setenv.c: Move the unsetenv() function to unsetenv.c.
21476
21477         2001-12-20  Bruno Haible  <bruno@clisp.org>
21478
21479                 * setenv.c (__add_to_environ): Don't call realloc(NULL,...),
21480                 use malloc instead. For SunOS 4.
21481
21482         2001-12-11  Bruno Haible  <bruno@clisp.org>
21483
21484                 * setenv.c: Declare alloca.
21485                 (compar_fn_t): New typedef.
21486                 (KNOWN_VALUE, STORE_VALUE): Use it.
21487
21488         * lib/Makefile.am (libfetish_a_SOURCES): Add setenv.c, unsetenv.c,
21489         setenv.h.
21490
21491 2002-12-10  Paul Eggert  <eggert@twinsun.com>
21492
21493         Port exclude.c and exclude.h to more non-GNU systems, e.g. Solaris 7.
21494         * lib/exclude.h (EXCLUDE_ANCHORED, EXCLUDE_INCLUDE, EXCLUDE_WILDCARDS):
21495         Choose values that are less likely to collide with system fnmatch
21496         options.
21497         * lib/exclude.c (FNM_CASEFOLD, FNM_LEADING_DIR): Define to 0 if not
21498         defined (e.g., a pure POSIX system).
21499         (EXCLUDE_macros_do_not_collide_with_FNM_macros): Use FNM_PATHNAME
21500         instead of FNM_FILE_NAME, for compatibility with pure POSIX sytems.
21501
21502 2002-12-06  Paul Eggert  <eggert@twinsun.com>
21503
21504         Undo the 2001-07-02 change for jm-glibc-io, as it was too much of
21505         a pain in practice to deal with generated m4 files.  This change
21506         goes together with the 2002-12-04 unlocked-io.h change in ../lib.
21507
21508         * m4/Makefile.am.in (Makefile.am): Don't mention jm-glibc-io.m4n
21509         and jm-glibc-io.m4, as they are no longer a special case.
21510         * m4/jm-glibc-io.m4: Rename from jm-glibc-io.m4n, and remove the
21511         kludge and the auto-generation stuff.  Check only whether the
21512         functions are declared, not whether they exist, since older hosts
21513         that don't declare the functions can't use the optimization anyway.
21514
21515 2002-12-06  Jim Meyering  <jim@meyering.net>
21516
21517         * lib/error.c: Be consistent: change `#ifndef _LIBC' to `#if !_LIBC'.
21518
21519         Merge in changes from libc's misc/error.c, in preparation
21520         for the merge of gnulib's changes back into libc.
21521
21522         * lib/error.c (_): Define only if not already defined.
21523         Move definition to follow all #include directives.
21524         Include unlocked-io.h only if !_LIBC.
21525         [_LIBC]: Include <libio/libioP.h>.
21526         [USE_IN_LIBIO]: Include <libio/iolibio.h>
21527         (fflush): Tweak definition to use INTUSE.
21528         (putc): Define.
21529
21530 2002-12-05  Paul Eggert  <eggert@twinsun.com>
21531
21532         * lib/alloca.c [defined emacs]: Include "lisp.h".
21533         (xalloc_die) [defined emacs]: New macro.
21534         (free) [defined emacs && defined EMACS_FREE]: Define to EMACS_FREE.
21535         [! defined emacs]: Include <xalloc.h>.
21536         (POINTER_TYPE) [!defined POINTER_TYPE]: New macro.
21537         (pointer): Typedef to POINTER_TYPE *.
21538         (malloc): Remove decl; we now always use xmalloc.
21539         (alloca): Use old-style definition, since Emacs needs this.
21540         Check for arithmetic overflow when computing combined size.
21541
21542 2002-12-04  Paul Eggert  <eggert@twinsun.com>
21543
21544         Do not generate unlocked-io.h automatically, since it's easier to
21545         maintain it by hand.
21546
21547         * lib/unlocked-io.h: New file, from GNU diffutils,
21548         but with proper copyright notice and attribution.
21549         * lib/gen-uio: Remove.
21550         * lib/Makefile.am: Add copyright notice.
21551         (libfetish_a_SOURCES): Add unlocked-io.h.
21552         (BUILT_SOURCES, all-local): Remove unlocked-io.h.
21553         (DISTCLEANFILES, io_functions): Remove macros.
21554         (EXTRA_DIST): Remove gen_uio.
21555         (unlocked-io.h): Remove rule.
21556
21557 2002-12-04  Jim Meyering  <jim@meyering.net>
21558
21559         Reflect the fact that stat.c and lstat.c are no longer generated.
21560         * lib/Makefile.am (BUILT_SOURCES): Remove stat.c and lstat.c.
21561         (DISTCLEANFILES): Likewise.
21562         (EXTRA_DIST): Likewise.
21563         (all_local): Don't depend on stat.c or lstat.c.
21564         (stat.c, lstat.c): Remove rules.
21565         (EXTRA_DIST): Remove xstat.in.
21566
21567         * lib/xstat.in: Remove file.  Contents moved into stat.c.
21568         * lib/stat.c: New file.  Contents mostly from xstat.in.
21569         * lib/stat.c: Rework so that it may serve to define rpl_lstat, too.
21570         * lib/lstat.c: New file. Simply #define LSTAT and include stat.c.
21571
21572         * lib/safe-read.c: Rework so that it may serve to define safe_write,
21573         too.
21574         * lib/safe-write.c: Simply #define SAFE_WRITE and include safe-read.c.
21575
21576 2002-12-03  Jim Meyering  <jim@meyering.net>
21577
21578         * lib/safe-read.c, safe-write.c: Change variable names and comments,
21579         but not semantics, to minimize the differences between these two files.
21580         (safe_read): Change comment to mention SAFE_READ_ERROR.
21581
21582         * lib/safe-read.c (IS_EINTR): Define.
21583         (safe_read): Use IS_EINTR in place of in-function cpp directives.
21584
21585 2002-12-02  Jim Meyering  <jim@meyering.net>
21586
21587         * lib/safe-read.c (EINTR): Define.
21588         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Define.
21589         (INT_MAX): Provide fallback.
21590         (safe_read): Rewrite to iterate IFF the read fails with EINTR.
21591
21592         * lib/safe-read.h (SAFE_READ_ERROR): Define.
21593
21594 2002-12-02  Bruno Haible  <bruno@clisp.org>
21595
21596         * lib/safe-write.c (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM):
21597         Define, taken from safe-read.c.
21598         (INT_MAX): Provide fallback.
21599         (safe_write): Rewrite to iterate IFF the write fails with EINTR.
21600         * lib/safe-write.h (SAFE_WRITE_ERROR): Define.
21601
21602         * lib/safe-read.c (EINTR): Remove definition.
21603         (safe_read): Don't use EINTR if it is absent.
21604
21605 2002-12-01  Jim Meyering  <jim@meyering.net>
21606
21607         * lib/safe-read.c: (safe_read): Also exit the loop when read returns
21608         zero.
21609         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM, INT_MAX): Define.
21610
21611 2002-11-27  Paul Eggert  <eggert@twinsun.com>
21612
21613         * lib/hash.c (hash_lookup, hash_get_first, hash_get_next,
21614         hash_find_entry, hash_rehash): Replace `if (limit <= value) abort ();'
21615         with `if (! (value < limit)) abort ();', for readability.
21616
21617 2002-11-26  Karl Berry  <karl@gnu.org>
21618
21619         * lib/strdup.c: copy from libc again, with jim's ok.
21620         * lib/.cppi-disable: re-add strdup.c
21621
21622 2002-11-25  Karl Berry  <karl@gnu.org>
21623
21624         * lib/strtoll.c: copy from libc, meaning we now #include <strtol.c>
21625         instead of "strtol.c".
21626
21627 2002-11-25  Karl Berry  <karl@gnu.org>
21628
21629         * config/install-sh: update from automake for variable quoting, $0 in
21630         error msgs, etc.
21631
21632         * config/srclist.txt ($LIBCSRC/time/mktime.c lib gpl): new entry.
21633         * config/srclist.txt ($LIBCSRC/sysdeps/generic/strtoll.c lib gpl): new
21634         entry.
21635
21636 2002-11-25  Jim Meyering  <jim@meyering.net>
21637
21638         * lib/mktime.c: Sync from libc, now that it has the latest fix.
21639
21640 2002-11-24  Karl Berry  <karl@gnu.org>
21641
21642         * lib/error.c, getopt.c, getopt.h, getopt1.c, obstack.c, regex.c,
21643         regex.h, strdup.c, strtoll.c, tempname.c: change license to gpl.
21644
21645 2002-11-24  Jim Meyering  <jim@meyering.net>
21646
21647         Update from coreutils:
21648
21649         * lib/mktime.c: Merge in changes from libc.
21650
21651         Avoid a link-time failure on some Linux systems.
21652         * lib/mktime.c (STATIC): Define to be empty (_LIBC) or `static'
21653         (otherwise).
21654         (__mon_yday): Declare with the STATIC attribute.
21655         (__mktime_internal): Likewise.
21656         Based on a report from Greg Schafer.
21657
21658 2002-11-23  Jim Meyering  <jim@meyering.net>
21659
21660         * lib/sig2str.c (str2signum, sig2str): Avoid a warning from gcc:
21661         Use `unsigned', not `int', as type of index.
21662
21663         * lib/xstat.in [@BEGIN_LSTAT_ONLY@]: Include <string.h>.
21664
21665         * lib/fsusage.c: Remove unneeded parentheses around operands of
21666         `defined'.
21667
21668 2002-11-22  Paul Eggert  <eggert@twinsun.com>
21669
21670         * lib/quotearg.h: Allow multiple inclusion by surrounding with
21671         "#ifndef QUOTEARG_H_".  Include <stddef.h>, for size_t,
21672         so that we can be included first.
21673         (PARAMS): Remove; we now assume C89 or later.  All uses removed.
21674         * lib/quotearg.c: Include quotearg.h immediately after config.h.
21675         No need to include stddef.h or sys/types.h any more.
21676         Surround local include files with "", not "<>".
21677         Assume HAVE_LIMITS_H unconditionally, as we assume C89.
21678         Similarly, assume HAVE_C_BACKSLASH_A, CHAR_BIT, UCHAR_MAX, UINT_MAX,
21679         HAVE_STDLIB_H, HAVE_STRING_H, STDC_HEADERS.
21680         (HAVE_MBSINIT): Undef if !HAVE_MBRTOWC.
21681         (mbsinit): Define to 1 if !defined mbsinit && !HAVE_MBSINIT.
21682         (ISPRINT): Remove; no longer needed now that we assume C89.
21683
21684         (clone_quoting_options, quotearg_buffer, quotearg_n_options):
21685         Preserve errno.
21686
21687         (quotearg_buffer_restyled, quotearg_n, quotearg_n_style,
21688         quotearg_char): Use SIZE_MAX rather than
21689         (size_t) -1 when we are talking about "infinity".
21690
21691         (quotearg_buffer_restyled): Fix bug when quoting trigraphs.
21692
21693 2002-11-22  Paul Eggert  <eggert@twinsun.com>
21694
21695         * lib/hash.c: Avoid use of <assert.h>, as the GNU Coding Standards
21696         hint that one should use `if (! x) abort ();' rather than `assert
21697         (x);', and anyway it's one less thing to worry about configuring.
21698         (hash_lookup, hash_get_first, hash_get_next, hash_find_entry,
21699         hash_rehash, hash_insert): Use abort rather than assert.
21700
21701 2002-11-22  Bruno Haible  <bruno@clisp.org>
21702
21703         * lib/safe-read.h: Assume C89. Add comments.
21704         (safe_read): Change return type to size_t.
21705         * lib/safe-read.c (safe_read): Change return type to size_t. Handle
21706         byte counts > SSIZE_MAX correctly.
21707         * lib/safe-write.h: New file.
21708         * lib/safe-write.c: New file.
21709         * lib/full-read.h: New file.
21710         * lib/full-read.c: New file.
21711         * lib/full-write.h: Assume C89. Add comments.
21712         * lib/full-write.c: Include safe-write.h.
21713         (full_write): Rewritten to use safe_write.
21714         Suggested by Jim Meyering and Paul Eggert.
21715
21716 2002-11-21  Jim Meyering  <jim@meyering.net>
21717
21718         * lib/strdup.c (strdup): Tweak comment and initial #if/#include.
21719
21720         Merge in changes from the coreutils.
21721
21722         2002-09-25  Paul Eggert  <eggert@twinsun.com>
21723         * lib/fsusage.c [! HAVE_INTTYPES_H && HAVE_STDINT_H] Include
21724         <stdint.h>.
21725         (UINTMAX_MAX) [!defined UINTMAX_MAX]: New macro.
21726         (PROPAGATE_ALL_ONES): Work even if X is unsigned and narrower than
21727         int.  Work more efficiently if X is the same width as uintmax_t.
21728         Do not compare X to -1, to avoid bogus compiler warning.
21729         (get_fs_usage): (uintmax_t) -1 -> UINTMAX_MAX to avoid a cast.
21730         Don't assume that f_frsize and f_bsize are the same type.
21731
21732         * lib/mountlist.c: #undef MNT_IGNORE before defining it, to avoid
21733         warning on FreeBSD.
21734
21735         * lib/makepath.c (make_path): Restore umask *before* creating the final
21736         component.
21737         (make_path): Minor reformatting.
21738
21739         * lib/xmalloc.c: Adjust to work with new autoconf macros,
21740         AC_FUNC_MALLOC and AC_FUNC_REALLOC: test #ifndef
21741         HAVE_MALLOC/HAVE_REALLOC.
21742
21743         * lib/mountlist.h (ME_DUMMY): Don't count entries of type `auto' as
21744         dummy ones.  At least on GNU/Linux systems, `auto' means something
21745         else.
21746         From Michael Stone.
21747
21748 2002-11-21  Bruno Haible  <bruno@clisp.org>
21749
21750         Remove case insensitive option matching.
21751         * lib/argmatch.h (argcasematch): Remove declaration.
21752         (ARGCASEMATCH): Remove macro.
21753         (__xargmatch_internal): Remove case_sensitive argument.
21754         (XARGMATCH): Update.
21755         (XARGCASEMATCH): Remove macro.
21756         * lib/argmatch.c (argmatch): Renamed from __argmatch_internal. Remove
21757         case_sensitive argument.
21758         (argcasematch): Remove function.
21759         (__xargmatch_internal): Remove case_sensitive argument.
21760         (main): Use XARGMATCH instead of XARGCASEMATCH.
21761
21762         * lib/xmalloc.c: Change compile-time error message. Add comment about
21763         required autoconf version.
21764
21765 2002-11-20  Paul Eggert  <eggert@twinsun.com>
21766
21767         Merge argmatch cleanups from Bison.  Assume C89.
21768
21769         * lib/argmatch.c: Include config.h here, not in argmatch.h.
21770         Include stdlib.h, for EXIT_FAILURE.
21771         Always include <string.h>, since we assume C89.
21772         (EXIT_FAILURE): Remove pre-C89 bug workaround.
21773         * lib/argmatch.h: Do not include <config.h> or <sys/types.h>.
21774         Include <stddef.h> instead, since it's all we need for size_t.
21775         (PARAMS): Remove.  All uses removed.
21776         (ARRAY_CARDINALITY): Do not bother to #undef.
21777         (ARRAY_CARDINALITY, ARGMATCH, ARGCASEMATCH, invalid_arg,
21778         ARGMATCH_VALID, XARGMATCH, XARGCASEMATCH):
21779         Remove unnecessary parentheses.
21780         (ARGMATCH_VALID, XARGMATCH, XARGCASEMATCH):
21781         Insert necessary parentheses.
21782         (ARGMATCH_CONSTRAINT, ARGMATCH_VERIFY): New macros.
21783         (ARGMATCH_ASSERT): Use ARGMATCH_CONSTRAINT.
21784
21785 2002-11-19  Bruno Haible  <bruno@clisp.org>
21786
21787         * lib/mbswidth.c: Include mbswidth.h right at the beginning.
21788         * lib/mbswidth.h: Include <stddef.h>, for size_t.
21789
21790         * lib/mbswidth.h (PARAMS): Remove macro.
21791         (mbswidth, mbsnwidth): Use ANSI C function declarations.
21792         * lib/mbswidth.c (mbswidth, mbsnwidth): Likewise.
21793
21794         * lib/gcd.h (PARAMS): Remove macro.
21795         (gcd): Use ANSI C function declarations.
21796         * lib/gcd.c (gcd): Likewise.
21797
21798 2002-11-15  Bruno Haible  <bruno@clisp.org>
21799
21800         * lib/strcspn.c: Include <stddef.h>.
21801         (strcspn): Use ANSI C function declaration. Change return type to
21802         size_t. Use NULL.
21803         * lib/strpbrk.c: Minimize diffs to glibc. Include <stddef.h>.
21804         (strpbrk): Use NULL.
21805         * lib/strpbrk.h (PARAMS): Remove macro.
21806         (strpbrk): Use ANSI C function declaration.
21807         * lib/strstr.c: Don't include <sys/types.h>.
21808         * lib/strstr.h (PARAMS): Remove macro.
21809         (strstr): Use ANSI C function declarations.
21810
21811 2002-11-14  Karl Berry  <karl@gnu.org>
21812
21813         * config/mkinstalldirs: `do' on separate line, instead of
21814         `for var; do'.
21815
21816 2002-11-06  Bruno Haible  <bruno@clisp.org>
21817
21818         * lib/gcd.h (gcd): Change argument type to 'unsigned long'.
21819         * lib/gcd.c (gcd): Likewise.
21820
21821 2002-11-05  Bruno Haible  <bruno@clisp.org>
21822
21823         * lib/gcd.h: New file, from gettext-0.11.5.
21824         * lib/gcd.c: New file, from gettext-0.11.5.
21825
21826 2002-11-05  Bruno Haible  <bruno@clisp.org>
21827
21828         * lib/error.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
21829         * lib/getopt.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
21830         * lib/obstack.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
21831         * lib/regex.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
21832
21833         * lib/argmatch.c: Include gettext.h instead of <locale.h> and
21834         <libintl.h>.
21835         * lib/makepath.c: Include gettext.h instead of <locale.h> and
21836         <libintl.h>.
21837
21838         * lib/closeout.c: Include gettext.h instead of <libintl.h>.
21839         * lib/human.c: Include gettext.h instead of <libintl.h>.
21840         * lib/quotearg.c: Include gettext.h instead of <libintl.h>.
21841         * lib/rpmatch.c: Include gettext.h instead of <libintl.h>.
21842         * lib/unicodeio.c: Include gettext.h instead of <libintl.h>.
21843         * lib/userspec.c: Include gettext.h instead of <libintl.h>.
21844         * lib/version-etc.c: Include gettext.h instead of <libintl.h>.
21845         * lib/xmalloc.c: Include gettext.h instead of <libintl.h>.
21846         (textdomain): Remove definition.
21847         * lib/xmemcoll.c: Include gettext.h instead of <libintl.h>.
21848
21849         * lib/long-options.c: Remove include of <libintl.h> and definition of
21850         _.
21851         * lib/same.c: Remove include of <libintl.h> and definition of _.
21852
21853 2002-11-04  Owen Taylor  <otaylor@redhat.com>
21854
21855         * lib/config.charset: A few additions for Solaris.
21856
21857 2002-11-04  Bruno Haible  <haible@clisp.cons.org>
21858
21859         Make it possible to build libcharset with CC=gcc CFLAGS="-x c++".
21860         * lib/localcharset.c (locale_charset): Declare as extern "C".
21861
21862 2002-11-04  Bruno Haible  <haible@clisp.cons.org>
21863
21864         * lib/config.charset: msdos in uk_UA uses CP1125.
21865
21866 2002-11-04  Bruno Haible  <bruno@clisp.org>
21867
21868         * lib/stpcpy.h: New file, from GNU gettext-0.11.5.
21869         * lib/strcase.h: New file, from GNU gettext-0.11.5.
21870         * lib/strpbrk.h: New file, from GNU gettext-0.11.5.
21871         * lib/strstr.h: New file, from GNU gettext-0.11.5.
21872         * lib/xgetcwd.h: New file, from GNU gettext-0.11.5.
21873
21874 2002-11-04  Bruno Haible  <bruno@clisp.org>
21875
21876         * lib/localcharset.c (locale_charset): Don't return an empty string.
21877
21878 2002-11-04  Bruno Haible  <bruno@clisp.org>
21879
21880         * lib/localcharset.c (get_charset_aliases): Add more Windows specific
21881         aliases.
21882
21883 2002-11-04  Bruno Haible  <bruno@clisp.org>
21884
21885         * lib/config.charset: Update for newest glibc. Add canonical names
21886         ISO-8859-14, KOI8-T, TCVN5712-1, GEORGIAN-PS.
21887
21888 2002-11-04  Bruno Haible  <bruno@clisp.org>
21889
21890         * lib/config.charset: Add support for NetBSD.
21891
21892 2002-11-04  Bruno Haible  <bruno@clisp.org>
21893
21894         * lib/config.charset [msdosdjgpp]: For Russian, use CP866.
21895
21896 2002-11-01  Bruno Haible  <bruno@clisp.org>
21897
21898         * configure.in: Add AC_CONFIG_AUX_DIR call.
21899         (AC_OUTPUT): Add m4/Makefile, lib/Makefile. Remove doc/Makefile,
21900         test/Makefile.
21901         * Makefile.in (subdirs): Add m4, lib. Remove doc, test.
21902
21903 2002-09-28  Karl Berry  <karl@gnu.org>
21904
21905         * config/srclist.txt: can't copy install-sh/mkinstalldirs from
21906         installed automake until the next release, since changes have been
21907         made.
21908
21909 2002-09-25  Karl Berry  <karl@gnu.org>
21910
21911         * lib/strdup.c: copy from libc/string (via ../config/srclist*).
21912         * lib/getopt*: copy from libc/posix.
21913         * lib/gettext.h: copy from gettext.
21914         * lib/.cppi-disable: add strdup.c, gettext.h.
21915
21916 2002-09-25  Karl Berry  <karl@gnu.org>
21917
21918         * config/srclist.txt: enable gettext.h check.
21919         * config/config.{guess,sub}: update from prep.
21920         * config/depcomp, install-sh, mdate-sh, missing, mkinstalldirs: update
21921                 from automake 1.6.3.
21922         See srclist*.
21923
21924 2002-08-23  Stefan Monnier  <monnier@cs.yale.edu>
21925
21926         * regex.c (PATFETCH): Remove the translating fetch.
21927         (PATFETCH_RAW): Rename to PATFETCH.
21928         (set_image_of_range): New fun.
21929         (SET_RANGE_TABLE_WORK_AREA): Use it.
21930         (regex_compile): Don't translate the pattern chars so eagerly.
21931         Only do it when inserting an `exactn' bytecode or when handling
21932         a char-range.
21933         (mutually_exclusive_p): Avoid empty statement.
21934
21935 2002-07-06  Jim Meyering  <meyering@lucent.com>
21936
21937         * m4/README: Don't mention Makefile.am.in.
21938         Outline how I've tested changes to .m4 files.  Yep, it's a pain.
21939
21940 2002-07-01  Jim Meyering  <meyering@lucent.com>
21941
21942         * lib/c-stack.c: Include sys/time.h.
21943         From Volker Borchert.
21944
21945 2002-06-26  Paul Eggert  <eggert@twinsun.com>
21946
21947         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for btowc.
21948
21949 2002-06-26  Paul Eggert  <eggert@twinsun.com>
21950
21951         * lib/fnmatch.c, fnmatch_loop.c (WIDE_CHAR_SUPPORT):
21952         New macro.  Use it uniformly instead of
21953         (defined HAVE_WCTYPE_H && defined HAVE_WCHAR_H).
21954         It also uses HAVE_BTOWC, to fix a porting bug on Solaris 2.5.1
21955         reported by Vin Shelton.
21956
21957 2002-06-22  Paul Eggert  <eggert@twinsun.com>
21958
21959         * lib/c-stack.h (segv_handler, c_stack_action) [! defined SA_SIGINFO]:
21960         Do not assume SA_SIGINFO behavior.
21961         Bug reported by Jim Meyering on NetBSD 1.5.2.
21962
21963 2002-06-22  Jim Meyering  <meyering@lucent.com>
21964
21965         * m4/c-stack.m4: New file, from diffutils-2.8.2.
21966         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_C_STACK.
21967
21968         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Don't require AC__GNU_SOURCE,
21969         now that configure.ac uses AC_GNU_SOURCE.
21970         (jm_MACROS): Rename: jm_FUNC_FNMATCH to AC_FUNC_FNMATCH_GNU.
21971         * m4/prereq.m4 (jm_PREREQ_EXCLUDE): Likewise, wrt jm_FUNC_FNMATCH.
21972
21973         Update to latest tools.  Suggestions from Paul Eggert.
21974         * m4/stdbool.m4: New file, from diffutils-2.8.2.
21975         * m4/gnu-source.m4: Update from diffutils-2.8.2.
21976         * m4/fnmatch.m4: Likewise.
21977         * m4/prereq.m4: Change each use of AC_CHECK_HEADERS(stdbool.h)
21978         to AC_HEADER_STDBOOL
21979
21980 2002-06-22  Jim Meyering  <meyering@lucent.com>
21981
21982         * lib/fnmatch.c (ISASCII, ISPRINT): Undefine, to avoid warning about
21983         redefinition due to Solaris 2.6's definition in /usr/include/sys/euc.h.
21984
21985 2002-06-22  Jim Meyering  <meyering@lucent.com>
21986
21987         * lib/c-stack.c, lib/c-stack.h: New files, from diffutils-2.8.2.
21988
21989         * lib/exitfail.c, exitfail.h: Likewise.
21990         * lib/Makefile.am (libfetish_a_SOURCES): Add exitfail.c and exitfail.h.
21991
21992         * lib/Makefile.am (libfetish_a_SOURCES): Add fnmatch_.h in place
21993         of fnmatch.h.
21994         (EXTRA_DIST): Add fnmatch_loop.c.
21995         (libfetish_a_SOURCES): Add c-stack.c and c-stack.h.
21996
21997         * lib/fnmatch_loop.c: New file, from diffutils-2.8.2.
21998         * lib/fnmatch.c: Update from diffutils-2.8.2.
21999         * lib/fnmatch_.h: New file.  From diffutils-2.8.2.
22000         * lib/fnmatch.h: Remove file.
22001
22002 2002-06-21  Jim Meyering  <meyering@lucent.com>
22003
22004         * m4/c-bs-a.m4: Add comment, from diffutils-2.8.2.
22005         * m4/mbrtowc.m4: Likewise.
22006
22007         * m4/mbstate_t.m4: Update from diffutils-2.8.2.
22008         * m4/mbswidth.m4: Reflect name change:
22009         s/AC_MBSTATE_T/AC_TYPE_MBSTATE_T.
22010         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Likewise.
22011
22012         * m4/lib-link.m4: Update from gettext-0.11.2.
22013         * m4/gettext.m4: Likewise.
22014
22015         * m4/jm-macros.m4 (jm_CHECK_ALL_HEADERS): Check for hurd.h.
22016         From Alfred M. Szmidt.
22017
22018 2002-06-18  Paul Eggert  <eggert@twinsun.com>
22019
22020         * lib/file-type.h: Report an error if neither S_ISREG nor
22021         S_IFREG is defined, instead of using a test specific to glibc
22022         2.2.  This should be safe, since POSIX requires S_ISREG and
22023         Unix Version 7 had S_IFREG.  We don't need to check for
22024         <sys/types.h> since we don't use any symbols that it defines.
22025
22026 2002-06-15  Richard Dawe  <richdawe@bigfoot.com>
22027
22028         * lib/Makefile.am (lstat.c, stat.c, .sin.sed): Use t-$@, rather than
22029         $@-t, so that each temporary file name is unique and valid in the first
22030         8 characters, for operation under DOS.
22031
22032 2002-06-15  Paul Eggert  <eggert@twinsun.com>
22033
22034         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Check for st_author.
22035
22036 2002-06-15  Jim Meyering  <meyering@lucent.com>
22037
22038         Work even with DJGPP 2.03, which lacks support for symlinks.
22039         From Richard Dawe.
22040         * lib/xstat.in (S_ISLNK): Define to 0 if neither S_ISLNK nor S_IFLNK
22041         is defined.
22042         * lib/lchown.c (S_ISLNK): Likewise.
22043
22044 2002-06-15  Jim Meyering  <meyering@lucent.com>
22045
22046         * lib/file-type.h (FILE_TYPE_H): Guard entire contents with #ifndef.
22047         For GNU libc 2.2 and newer, ensure that <sys/types.h> and <sys/stat.h>
22048         have been included before this file.
22049
22050 2002-06-14  Jim Meyering  <meyering@lucent.com>
22051
22052         * lib/file-type.h: Use the version from diffutils-2.8.2.
22053         * lib/file-type.c: Likewise.
22054
22055 2002-06-07  Jim Meyering  <meyering@lucent.com>
22056
22057         * m4/prereq.m4 (jm_PREREQ_STAT): Check for sys/param.h and sys/mount.h.
22058         They're needed at least for NetBSD 1.5.2.
22059         ($statxfs_includes): Include those same headers.
22060         ($statxfs_includes): Include sys/vfs.h if available.
22061         ($statxfs_includes): Likewise for sys/statvfs.h.
22062         Check for the following members in both structs statfs and statvfs:
22063         f_basetype, f_type, f_fsid.__val, f_namemax, f_namelen.
22064
22065 2002-06-01  Jim Meyering  <meyering@lucent.com>
22066
22067         * m4/d-type.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Rename macro:
22068         s/D_TYPE_IN_DIRENT/HAVE_STRUCT_DIRENT_D_TYPE/.
22069
22070 2002-05-28  Jim Meyering  <meyering@lucent.com>
22071
22072         * m4/readdir.m4 (jm_FUNC_READDIR): Undefine `mkdir', not `rmdir'.
22073         Reported by Volker Borchert.
22074
22075 2002-05-27  Jim Meyering  <meyering@lucent.com>
22076
22077         Fix a problem seen only on nonconforming systems whereby ls.c's
22078         use of localtime, and then of gettimeofday would cause trouble:
22079         the localtime call used to initialize rpl_gettimeofday's save
22080         mechanism would clobber ls's current local time information so
22081         that in any long listing the first file would always be listed
22082         with date 1970-01-01.  Analysis by Volker Borchert.
22083
22084         * lib/gettimeofday.c (localtime): Undefine.
22085         (rpl_localtime): New function.
22086
22087 2002-05-27  Jim Meyering  <meyering@lucent.com>
22088
22089         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER): Also replace
22090         localtime.
22091
22092         * m4/readdir.m4 (jm_FUNC_READDIR): Undefine `rmdir' so we don't try to
22093         use the replacement function; it wouldn't resolve at link time.
22094         Reported by Volker Borchert.
22095
22096 2002-05-22  Jim Meyering  <meyering@lucent.com>
22097
22098         * lib/Makefile.am (libfetish_a_SOURCES): Add file-type.c and
22099         file-type.h.
22100         * lib/file-type.h: New file.
22101         * lib/file-type.c (file_type): New file/function.  Extracted from
22102         diffutils.
22103
22104 2002-04-30  Jim Meyering  <meyering@lucent.com>
22105
22106         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_STAT.
22107
22108 2002-04-29  Paul Eggert  <eggert@twinsun.com>
22109
22110         * m4/prereq.m4 (jm_PREREQ_SIG2STR): Remove; all callers changed.
22111
22112 2002-04-29  Paul Eggert  <eggert@twinsun.com>
22113
22114         * m4/prereq.m4 (jm_PREREQ_HARD_LOCALE): Check for stdlib.h.
22115         Do not check for alloca.h (no longer used) or stdbool.h (was never
22116         used?).  Add AM_C_PROTOTYPES since hard-locale.h uses it.
22117
22118 2002-04-29  Paul Eggert  <eggert@twinsun.com>
22119
22120         * lib/hard-locale.c: Upgrade to version used in GNU Diffutils 2.8.1.
22121
22122 2002-04-29  Jim Meyering  <meyering@lucent.com>
22123
22124         * m4/jm-macros.m4 (jm_MACROS): Remove use of AC_FUNC_STRNLEN.
22125         * m4/prereq.m4: Add jm_PREREQ_STRNLEN.
22126         Use AC_FUNC_STRNLEN here instead.
22127
22128         * m4/jm-macros.m4: Don't AC_REQUIRE([AC_PROG_CC_STDC]).
22129         With autoconf-2.53a, it's part of AC_PROG_CC.
22130
22131 2002-04-28  Paul Eggert  <eggert@twinsun.com>
22132
22133         * m4/jm-macros.m4 (jm_MACROS): Add AC_REPLACE_FUNCS(sig2str).
22134         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_SIG2STR.
22135
22136 2002-04-28  Paul Eggert  <eggert@twinsun.com>
22137
22138         * lib/sig2str.h, lib/sig2str.c: New files.
22139         * lib/Makefile.am (libfetish_a_SOURCES): Add sig2str.h.
22140
22141 2002-04-28  Paul Eggert  <eggert@twinsun.com>
22142
22143         * lib/sig2str.h (SIGNUM_BOUND): Do not use WTERMSIG, to avoid
22144         depending on <sys/wait.h> and WTERMSIG.  Default to 64 instead
22145         of 127, since 64 is the largest conceivable number for ancient
22146         nonstandard hosts.
22147         * lib/sig2str.c: Do not include <sys/wait.h>; no longer needed.
22148
22149 2002-04-28  Jim Meyering  <meyering@lucent.com>
22150
22151         * lib/sig2str.c (WTERMSIG): Remove definition (unused).
22152
22153 2002-04-24  Jim Meyering  <meyering@lucent.com>
22154
22155         * m4/prereq.m4 (jm_PREREQ_HARD_LOCALE): New macro.
22156         (jm_PREREQ): Use it.
22157
22158         * m4/getloadavg.m4: Check for these headers: locale.h unistd.h
22159         mach/mach.h fcntl.h.
22160         Check for this function: setlocale.
22161
22162 2002-04-24  Jim Meyering  <meyering@lucent.com>
22163
22164         * lib/gettext.h: New file, from Gettext.
22165         * lib/Makefile.am (INCLUDES): Remove -I../intl.
22166         (libfetish_a_SOURCES): Add gettext.h.
22167
22168 2002-04-16  Jim Meyering  <meyering@lucent.com>
22169
22170         * m4/prereq.m4 (jm_PREREQ_READUTMP): Also check for these members:
22171         ut_pid, ut_id, ut_exit.
22172
22173 2002-04-16  Jim Meyering  <meyering@lucent.com>
22174
22175         * lib/readutmp.h (UT_TYPE): Remove definition (now in who.c).
22176         (HAVE_STRUCT_XTMP_UT_EXIT, HAVE_STRUCT_XTMP_UT_ID): Define.
22177         (HAVE_STRUCT_XTMP_UT_PID, HAVE_STRUCT_XTMP_UT_TYPE): Define.
22178
22179 2002-04-12  Jim Meyering  <meyering@lucent.com>
22180
22181         * m4/ls-mntd-fs.m4 (checking for getmntinfo function...): Remove
22182         now-bogus check for f_type in sys/mount.h.  Instead, just test for the
22183         existence of the getmntinfo function.  Needed for Darwin 5.3.
22184
22185         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Also detect when dirfd is a macro.
22186         This is necessary at least on Darwin 5.3.
22187
22188         * m4/jm-macros.m4: Don't AC_REPLACE(strnlen), now that we use
22189         AC_FUNC_STRNLEN.  Otherwise, we'd end up putting two copies of
22190         strnlen.o in the library, and that makes some versions of ranlib
22191         object.
22192
22193 2002-04-12  Jim Meyering  <meyering@lucent.com>
22194
22195         * lib/dirfd.h (dirfd): Elide prototype if dirfd is a macro.
22196
22197 2002-04-09  Jim Meyering  <meyering@lucent.com>
22198
22199         * m4/malloc.m4: (jm_FUNC_MALLOC): Change the `checking ...' message
22200         to be more precise.  Rather than saying we're checking whether the
22201         function `works', say what we're testing.
22202         * m4/realloc.m4 (jm_FUNC_REALLOC): Likewise.
22203         Reported by Bruno Haible.
22204
22205 2002-03-10  Jim Meyering  <meyering@lucent.com>
22206
22207         * lib/makepath.c (make_path): Remove a comma from a diagnostic.
22208         Suggestion from Santiago Vila.
22209
22210 2002-03-08  Jim Meyering  <meyering@lucent.com>
22211
22212         * lib/rename.c: Mention that this wrapper is needed also on
22213         mips-dec-ultrix4.4 systems.
22214
22215 2002-03-02  Jim Meyering  <meyering@lucent.com>
22216
22217         * lib/gettime.c (gettime): Test HAVE_CLOCK_GETTIME,
22218         not HAVE_CLOCK_SETTIME.
22219
22220 2002-02-27  Paul Eggert  <eggert@twinsun.com>
22221
22222         * m4/jm-macros.m4 (jm_MACROS): Do not replace stime; no longer used.
22223         Check for clock_settime.
22224
22225 2002-02-27  Paul Eggert  <eggert@twinsun.com>
22226
22227         * lib/nanosleep.h: Rename to....
22228         * lib/timespec.h: New name for nanosleep.h.  All uses changed.
22229
22230         * lib/gettime.c: New file.
22231         * lib/settime.c: New file.
22232         * lib/stime.c: Remove.
22233
22234         * lib/Makefile.am (libfetish_a_SOURCES): Add gettime.c, settime.c,
22235         timespec.h.  Remove nanosleep.h.
22236
22237 2002-02-25  Paul Eggert  <eggert@twinsun.com>
22238
22239         * m4/acl.m4: New file.
22240         * m4/jm-macros.m4 (jm_MACROS): Require AC_FUNC_ACL.
22241         Do not check for acl or sys/acl.h, as AC_FUNC_ACL does that now.
22242
22243 2002-02-25  Paul Eggert  <eggert@twinsun.com>
22244
22245         * lib/acl.c, lib/acl.h: New files.
22246         * lib/Makefile.am (libfetish_a_SOURCES): Add acl.h, acl.c.
22247
22248 2002-02-24  Jim Meyering  <meyering@lucent.com>
22249
22250         * lib/strnlen.c (strnlen): Define-away/undef so that an inconsistent
22251         prototype in string.h (on at least AIX4.3.2.0 w/gcc-2.95.3) doesn't
22252         cause trouble.  Reported by Nelson Beebe.
22253
22254 2002-02-23  Paul Eggert  <eggert@twinsun.com>
22255
22256         * lib/path-concat.c (xpath_concat): Reorder code to pacify
22257         compilers that don't know that xalloc_die never returns.
22258
22259 2002-02-20  Jim Meyering  <meyering@lucent.com>
22260
22261         * lib/getdate.c: Regenerate using bison-1.33.
22262
22263 2002-02-17  Jim Meyering  <meyering@lucent.com>
22264
22265         * config/config.guess (main): Don't use `head -1'; it's no longer
22266         portable. Use `sed 1q' instead.
22267
22268 2002-02-16  gettextize  <bug-gnu-gettext@gnu.org>
22269
22270         * m4/codeset.m4: Upgrade to gettext-0.11.
22271         * m4/gettext.m4: Upgrade to gettext-0.11.
22272         * m4/glibc21.m4: Upgrade to gettext-0.11.
22273         * m4/iconv.m4: Upgrade to gettext-0.11.
22274         * m4/isc-posix.m4: Upgrade to gettext-0.11.
22275         * m4/lcmessage.m4: Upgrade to gettext-0.11.
22276         * m4/lib-ld.m4: New file, from gettext-0.11.
22277         * m4/lib-link.m4: New file, from gettext-0.11.
22278         * m4/lib-prefix.m4: New file, from gettext-0.11.
22279         * m4/progtest.m4: Upgrade to gettext-0.11.
22280
22281 2002-02-15  Paul Eggert  <eggert@twinsun.com>
22282
22283         * m4/prereq.m4 (jm_PREREQ_POSIXVER): New macro.
22284         (jm_PREREQ): Use it.
22285
22286 2002-02-15  Paul Eggert  <eggert@twinsun.com>
22287
22288         * lib/posixver.c, lib/posixver.h: New files.
22289         * lib/Makefile.am (libfetish_a_SOURCES): Add them.
22290
22291 2002-02-02  Paul Eggert  <eggert@twinsun.com>
22292             Bruno Haible  <bruno@clisp.org>
22293
22294         * lib/unicodeio.h (print_unicode_char): Add exit_on_error argument.
22295         (fwrite_success_callback): New declaration.
22296         * lib/unicodeio.c (unicode_to_mb): New function, extracted from
22297         print_unicode_char. Call failure callback instead of error.
22298         (fwrite_success_callback): New function.
22299         (exit_failure_callback): New function.
22300         (fallback_failure_callback): New function.
22301         (print_unicode_char): Call unicode_to_mb.
22302
22303 2002-01-26  Jim Meyering  <meyering@lucent.com>
22304
22305         * m4/jm-macros.m4 (jm_MACROS): Require autoconf-2.52g.
22306         * m4/strnlen.m4: Remove file, now that it's part of autoconf.
22307
22308 2002-01-26  Jim Meyering  <meyering@lucent.com>
22309
22310         * lib/Makefile.am (getdate$U.o): Depend on unlocked-io.h.
22311
22312 2002-01-22  Paul Eggert  <eggert@twinsun.com>
22313
22314         * m4/jm-macros.m4 (jm_MACROS): Require AC_FUNC_FSEEKO.
22315
22316 2002-01-22  Jim Meyering  <meyering@lucent.com>
22317
22318         * lib/Makefile.am (Makefile): Don't depend on $(BUILT_SOURCES).
22319         Otherwise, some versions of automake would omit the rule that makes
22320         Makefile from Makefile.in.
22321
22322 2002-01-21  Paul Eggert  <eggert@twinsun.com>
22323
22324         * lib/xmemcoll.h, lib/xmemcoll.c: New files.
22325         * lib/Makefile.am (libfetish_a_SOURCES): Add them.
22326         * lib/memcoll.c: Include errno.h, and declare errno if not defined.
22327         (memcoll): Set errno to zero if there is no error.
22328
22329         * lib/quotearg.c (quotearg_buffer_restyled):
22330         Fix bug with quoting buffers containing NUL when backslashing escapes.
22331         This bug was exposed by the other changes in this patch.
22332         (quotearg_n_options): New arg ARGSIZE.
22333         All callers changed.
22334         (quoting_options_from_style): New function.
22335         (quotearg_n_style): Use it.
22336         (quotearg_n_style_mem): New function.
22337
22338         * lib/quotearg.h (quotearg_n_style_mem): New function.
22339
22340 2002-01-19  Jim Meyering  <meyering@lucent.com>
22341
22342         * m4/jm-macros.m4 (jm_MACROS): Use AC_FUNC_STRNLEN.
22343         Remove useless quotes: DF_PROG="df".
22344         * m4/strnlen.m4: New file.
22345
22346 2002-01-16  Paul Eggert  <eggert@twinsun.com>
22347
22348         * lib/backupfile.c (ISDIGIT): Comment fix.
22349         * lib/getdate.y (ISDIGIT): Likewise.
22350         * lib/posixtm.c (ISDIGIT, year): Likewise.
22351         * lib/strverscmp.c (ISDIGIT): Likewise.
22352         * lib/userspec.c (ISDIGIT): Likewise.
22353
22354 2002-01-16  Jim Meyering  <meyering@lucent.com>
22355
22356         * lib/getdate.y: Add three semicolons, each just before a closing
22357         brace. Bison (as of version 1.31) no longer papers over that mistake.
22358
22359 2002-01-05  Jim Meyering  <meyering@lucent.com>
22360
22361         * lib/version-etc.c (version_etc_copyright): Update copyright year.
22362
22363 2001-12-19  Paul Eggert  <eggert@twinsun.com>
22364
22365         * lib/closeout.c (close_stdout_status): If ferror (stdout), do
22366         not silently exit merely because the output buffer happens to
22367         have nothing pending.
22368
22369 2001-12-18  Paul Eggert  <eggert@twinsun.com>
22370
22371         See the big note in ../ChangeLog.
22372         * lib/human.c (suffixes): Prefer K to k for 1024.
22373         (generate_suffix_backwards): New function.
22374         (human_readable_inexact): Use it.
22375         * lib/xstrtol.c (__xstrtol): If there is no number but there
22376         is a valid suffix, assume 1.  "MB" now means decimal, "MiB" binary.
22377         Accept 'K' as well as 'k'.
22378
22379 2001-12-15  Jim Meyering  <meyering@lucent.com>
22380
22381         * lib/regex.h (__restrict_arr): Update from libc.
22382
22383         * lib/mountlist.h (ME_REMOTE): Recognize file systems of type smbfs
22384         as `remote' if the name starts with `//'.  Suggested by Michael Stone.
22385         (STREQ): Define.
22386
22387 2001-12-14  Jim Meyering  <meyering@lucent.com>
22388
22389         * m4/jm-macros.m4 (jm_MACROS): Check for iswspace.
22390         Suggestion from Bruno Haible.
22391
22392 2001-12-10  Jim Meyering  <meyering@lucent.com>
22393
22394         * lib/linebuffer.c: Remove explicit declarations of xmalloc and
22395         xrealloc, Instead, include "xalloc.h".
22396         (initbuffer): Don't cast xmalloc return value to char*.
22397         (readline): Reword comment.
22398         Don't cast xrealloc return value to char*
22399         Return NULL, not 0.
22400
22401 2001-12-09  Jim Meyering  <meyering@lucent.com>
22402
22403         * lib/modechange.c (mode_compile): Add cast to avoid pedantic warning
22404         about `signed and unsigned type in conditional expression'.
22405         * lib/posixtm.c (posix_time_parse): Likewise.
22406
22407         * lib/xreadlink.c (xreadlink): Add cast to avoid a pedantic warning.
22408
22409         * lib/readtokens.c (readtoken): Declare an index to be of type unsigned
22410         to avoid a pedantic warning.
22411
22412         * lib/getstr.c: Don't include assert.h.
22413         (getstr): Remove warning-evoking assertions.
22414         Return -1 if offset parameter is out of bounds.
22415         Change the type of a local from int to size_t.
22416
22417         * lib/strftime.c (my_strftime_localtime_r): Include this function
22418         definition in the `#if ! HAVE_TM_GMTOFF' block.
22419
22420         * lib/xgethostname.c: Remove declarations of xmalloc and xrealloc.
22421         Include xalloc.h instead.
22422
22423 2001-12-02  Jim Meyering  <meyering@lucent.com>
22424
22425         * lib/tempname.c: Don't declare getenv, thus reverting the change of
22426         2001-11-18.  It's no longer necessary, now that stdlib.h is always
22427         included.
22428
22429         * lib/regex.c [!__BOUNDED_POINTERS__]: Define away __bounded,
22430         __unbounded, and __ptrvalue.  Reported by Uwe H. Steinfeld.
22431
22432 2001-11-30  Akim Demaille  <akim@epita.fr>
22433
22434         * lib/xstrdup.c: Include xalloc.h, so that xstrdup is declared
22435         before being defined.
22436
22437 2001-11-27  Paul Eggert  <eggert@twinsun.com>
22438
22439         * lib/quotearg.h (quotearg_n, quotearg_n_style):
22440         First arg is int, not unsigned.
22441         * lib/quotearg.c (quotearg_n, quotearg_n_style): Likewise.
22442         (SIZE_MAX, UINT_MAX): New macros.
22443         (quotearg_n_options): Abort if N is negative.
22444         Avoid overflow check on hosts where size_t is 64 bits and int
22445         is 32 bits, as overflow is impossible there.
22446         Fix off-by-one typo that caused unnecessary reallocation.
22447
22448 2001-11-27  Jim Meyering  <meyering@lucent.com>
22449
22450         * lib/tempname.c: Merge with version from libc.
22451         * lib/regex.c: Likewise.
22452
22453         * lib/tempname.c: Include stdlib.h unconditionally.  On some old
22454         systems for which STDC_HEADERS is 0, it was not included, resulting in
22455         a warning about an integer-to-pointer conversion problem with getenv.
22456         Reported by Volker Borchert.
22457
22458 2001-11-26  Jim Meyering  <meyering@lucent.com>
22459
22460         * lib/gtod.h: Remove file.
22461         * lib/Makefile.am (libfetish_a_SOURCES): Remove gtod.h.
22462         * lib/gettimeofday.c: Don't include gtod.h.
22463         (GTOD_init): Remove function.
22464         (rpl_gettimeofday): Do its job here instead, rather than aborting.
22465         Suggestion from Volker Borchert.
22466
22467 2001-11-23  Jim Meyering  <meyering@lucent.com>
22468
22469         * lib/hash.h (struct hash_table): Don't define here.  Merely declare
22470         it.
22471         * lib/hash.c (struct hash_table): Define it here instead.
22472
22473 2001-11-22  Jim Meyering  <meyering@lucent.com>
22474
22475         * lib/hash.h: Bracket contents of file with #ifndef HASH_H_ ... #endif.
22476
22477 2001-11-20  Jim Meyering  <meyering@lucent.com>
22478
22479         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Update comment to reflect that
22480         SunOS 4.1.4 and Solaris 2.5.1 lose, too.
22481
22482 2001-11-19  Jim Meyering  <meyering@lucent.com>
22483
22484         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Don't bother with a temporary
22485         directory.  Use "conftestXXXXXX" as the template.
22486         Suggestion from Paul Eggert.
22487
22488         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Close each descriptor
22489         immediately, so the test doesn't mistakenly hit the max-open-files
22490         limit.
22491
22492 2001-11-18  Paul Eggert  <eggert@twinsun.com>
22493
22494         * lib/tempname.c (TMP_MAX): Remove; no longer needed.
22495         (TEMPORARIES): New macro.
22496         (__gen_tempname): Use TEMPORARIES rather than TMP_MAX.  This
22497         removes an artificial limitation (e.g. HP-UX 10.20, where
22498         TMP_MAX is 17576).
22499
22500 2001-11-18  Jim Meyering  <meyering@lucent.com>
22501
22502         * m4/prereq.m4 (jm_PREREQ_TEMPNAME): Check for declaration of getenv.
22503
22504 2001-11-18  Jim Meyering  <meyering@lucent.com>
22505
22506         * lib/tempname.c [!HAVE_DECL_GETENV]: Declare getenv to avoid warning
22507         on SunOS 4.
22508
22509         * lib/Makefile.am (Makefile): Depend on $(BUILT_SOURCES), so those
22510         files will be created before anything else.
22511
22512 2001-11-17  Paul Eggert  <eggert@twinsun.com>
22513
22514         * m4/jm-winsz1.m4 (jm_WINSIZE_IN_PTEM): Do not define
22515         WINSIZE_IN_PTEM if <termios.h> defines struct winsize.
22516
22517 2001-11-17  Jim Meyering  <meyering@lucent.com>
22518
22519         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): New file and macro.
22520         Prompted by a report from Bob Proulx.
22521
22522         * m4/jm-macros.m4 (jm_MACROS): Don't test for mkstemp here.
22523         Instead, require UTILS_FUNC_MKSTEMP.
22524
22525 2001-11-17  Jim Meyering  <meyering@lucent.com>
22526
22527         * m4/jm-macros.m4 (jm_MACROS): Remove code to set POW_LIBM.
22528         Now, that's done as part of AC_FUNC_STRTOD.
22529
22530 2001-11-17  Jim Meyering  <meyering@lucent.com>
22531
22532         * lib/modechange.c (mode_adjust): Fix error introduced on 1999-04-26
22533         that made e.g., `chmod a=,o=w,g=o F' cause F to be group readable
22534         rather than group writable.  Patch by Juan F. Codagnone.
22535
22536         * lib/readtokens.c: Remove explicit declarations of xmalloc and
22537         xrealloc, Instead, include "xalloc.h".
22538
22539         * lib/mountlist.c: Include unlocked-io.h after all system headers.
22540         Remove explicit declarations of xmalloc, xrealloc,
22541         and xstrdup.  Instead, include "xalloc.h".
22542
22543         * lib/argmatch.c, closeout.c, error.c, exclude.c: Include
22544         unlocked-io.h.
22545         * lib/fatal.c, getdate.y, getpass.c, getstr.c, getusershell.c:
22546         Likewise.
22547         * lib/mountlist.c, posixtm.c, readtokens.c, readutmp.c: Likewise.
22548
22549         * lib/regex.c, sha.c, version-etc.c, yesno.c: Likewise.
22550         Reported by Padraig Brady.
22551
22552         * lib/mkstemp.c: #undef mkstemp.
22553         Include config.h.
22554         (rpl_mkstemp): Rename from mkstemp.
22555         Protoize.
22556
22557 2001-11-16  Jim Meyering  <meyering@lucent.com>
22558
22559         * lib/physmem.c [HAVE_SYS_PSTAT_H]: Include <sys/pstat.h>.
22560         (physmem_total) [HAVE_PSTAT_GETSTATIC]: If sysconf couldn't be used to
22561         determine the amount of total physical memory, use pstat_getstatic.
22562         HPUX-11 doesn't define _SC_PHYS_PAGES.
22563         (physmem_available) [HAVE_PSTAT_GETSTATIC && HAVE_PSTAT_GETDYNAMIC]:
22564         If sysconf couldn't be used to determine the amount of available
22565         physical memory, use both pstat_getstatic and pstat_getdynamic.
22566         Based on a patch from Bob Proulx.
22567
22568 2001-11-10  Jim Meyering  <meyering@lucent.com>
22569
22570         * m4/prereq.m4 (jm_PREREQ_PHYSMEM): New function.
22571         (jm_PREREQ): Use it.
22572
22573 2001-11-09  Jim Meyering  <meyering@lucent.com>
22574
22575         * m4/jm-macros.m4: Require autoconf-2.52f.
22576         (AC_FUNC_ERROR_AT_LINE, AC_FUNC_OBSTACK, AC_FUNC_STRTOD):
22577         Use these AC_-prefixed names, not the AM_-prefixed ones.
22578
22579         * m4/afs.m4 (jm_AFS): Quote the body.  Patch by Akim Demaille.
22580
22581 2001-11-05  Jim Meyering  <meyering@lucent.com>
22582
22583         * lib/xstat.in (slash_aware_lstat): Correct a misleading comment.
22584
22585 2001-11-04  Jim Meyering  <meyering@lucent.com>
22586
22587         * m4/fpending.m4: Remove unused cruft that saved, set, and restored
22588         $DEFS.
22589
22590 2001-11-03  Jim Meyering  <meyering@lucent.com>
22591
22592         * m4/jm-glibc-io.m4n (jm_FUNC_GLIBC_UNLOCKED_IO): Quote first arg
22593         of AC_DEFUN.
22594
22595         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Rework so dirfd.c doesn't have to
22596         know the name of the variable in the macro definition.
22597
22598 2001-11-03  Jim Meyering  <meyering@lucent.com>
22599
22600         * lib/argmatch.h (ARGMATCH_TO_ARGUMENT): Remove casts of first two args
22601         in argmatch_to_argument call.
22602
22603         * lib/dirfd.c (dirfd): Reflect the fact that DIR_TO_FD now takes an
22604         argument.
22605
22606         * lib/hash.c (hash_clear): Fix a bug that could lead to an infloop or
22607         e.g., a fault due to an attempt to free a NULL pointer.
22608
22609 2001-11-01  Jim Meyering  <meyering@lucent.com>
22610
22611         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): New macro.
22612         * m4/jm-macros.m4 (jm_MACROS): Require UTILS_FUNC_DIRFD.
22613
22614 2001-11-01  Jim Meyering  <meyering@lucent.com>
22615
22616         * lib/dirfd.c, lib/dirfd.h: New files.
22617         * lib/Makefile.am (libfetish_a_SOURCES): Add dirfd.h.
22618
22619         * lib/hash.c (hash_print) [TESTING]: Clean up.
22620
22621 2001-10-22  Paul Eggert  <eggert@twinsun.com>
22622
22623         * lib/hard-locale.c (alloca): Define to __builtin_alloca if __GNUC__,
22624         to avoid a warning if -Wall.
22625
22626 2001-10-22  Jeff Bailey  <jbailey@outpost.dnsalias.org>
22627
22628         * README: New file
22629         * doc/*: Add COPYING, COPYING.LIB, COPYING.DOC, fdl.texi
22630         (per RMS's instructions, this is now the canonical source)
22631         * lgpl/, gpl/: New directories.
22632
22633 2001-10-21  Paul Eggert  <eggert@twinsun.com>
22634
22635         * lib/regex.c (uintptr_t): Remove macro and decl; it's config.h's job.
22636
22637 2001-10-21  Jim Meyering  <meyering@lucent.com>
22638
22639         * lib/obstack.c (_): Honor the setting of ENABLE_NLS.  Otherwise,
22640         this code would end up calling gettext even in packages built
22641         with --disable-nls.
22642         * lib/getopt.c (_): Likewise.
22643         * lib/regex.c (_): Likewise.
22644
22645 2001-10-20  Paul Eggert  <eggert@twinsun.com>
22646
22647         * m4/error.m4 (jm_PREREQ_ERROR):
22648         Do not invoke AC_CHECK_FUNCS with strerror_r, as
22649         AC_FUNC_STRERROR_R does that.
22650         Check for strerror declaration.
22651
22652         * m4/strerror_r.m4: Add copyright notice, as nontrivial m4 files
22653         are supposed to have them these days.
22654         (AC_FUNC_STRERROR_R): Always do char* test, so that it gets cached.
22655         Merge changes from latest Autoconf CVS.
22656         Rename ac_cv_func_strerror_r_works to ac_cv_func_strerror_r_char_p,
22657         and rename HAVE_WORKING_STRERROR_R to STRERROR_R_CHAR_P, since
22658         POSIX decided to standardize on the int flavor of strerror_r.
22659
22660 2001-10-20  Paul Eggert  <eggert@twinsun.com>
22661
22662         * lib/error.c (strerror_r): Do not declare unless !_LIBC.
22663         Do not check for HAVE_DECL_STRERROR_R missing unless STRERROR_R_CHAR_P.
22664         Use strerror_r that is only a macro, even if it is not a function.
22665         (strerror): Check for HAVE_DECL_STRERROR before declaring.
22666         (private_strerror): Use prototypes, not old-style function definition.
22667         (print_errno_message): New function.
22668         Support the POSIX 'int'-flavored strerror_r, as well as the traditional
22669         char*-flavored one.
22670         (error_tail, error, error_at_line): Use it.
22671
22672 2001-10-11  Jim Meyering  <meyering@lucent.com>
22673
22674         * lib/argmatch.c (argmatch_invalid): Use quotearg_n_style (0, ...
22675         and quote_n (1, ... to avoid clobbering a buffer.
22676
22677 2001-10-05  Jim Meyering  <meyering@lucent.com>
22678
22679         * lib/Makefile.am: (libfetish_a_SOURCES): Add hash-pjw.c and
22680         hash-pjw.h.
22681         * lib/hash-pjw.c: New file (factored out of fileutils' remove.c).
22682         * lib/hash-pjw.h: New file.
22683
22684 2001-09-30  Jim Meyering  <meyering@lucent.com>
22685
22686         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): See if
22687         `struct fsstat' has the `f_fstypename' member.
22688         Use that to define FS_TYPE, which is now used to make
22689         the getfsstat link test tighter.
22690
22691 2001-09-30  Jim Meyering  <meyering@lucent.com>
22692
22693         * lib/mountlist.c [MOUNTED_GETFSSTAT]:
22694         Include <sys/ucred.h>, for Apple Darwin.
22695         Include sys/mount.h and sys/fs_types.h only if available.
22696         (FS_TYPE): Define.
22697         (read_filesystem_list): Use FS_TYPE.
22698
22699 2001-09-29  Paul Eggert  <eggert@twinsun.com>
22700
22701         * lib/exclude.c (excluded_filename): 0 -> false, since it's
22702         a boolean context.
22703
22704 2001-09-29  Jim Meyering  <meyering@lucent.com>
22705
22706         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS)
22707         [one-argument getmntent function]): Include stdio.h before mntent.h.
22708         SunOS 4.1.x needs it for the declaration of `FILE'.
22709         Patch by Volker Borchert.
22710
22711         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS)
22712         Check for these headers: sys/param.h sys/ucred.h sys/mount.h
22713         sys/fs_types.h, and make the link-test for getfsstat guard #include
22714         directives with appropriate #if HAVE_*_H tests so that we can
22715         detect getfsstat on Apple Darwin1.3.7 systems.
22716         Reported by Nelson Beebe.
22717         Fix harmless typo in cache variable name: s/getsstat/getfsstat/.
22718
22719 2001-09-28  Paul Eggert  <eggert@twinsun.com>
22720
22721         Fix bug reported by Petter Reinholdtsen for HP-UX 10.20, which
22722         #defines strtoimax.  Also treat the other strto* functions
22723         like strtoimax.
22724
22725         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX):
22726         Check for strtoul and strtoumax,
22727         as those declarations are made even in the signed case.
22728         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX):
22729         Likewise, for strtol and strtoimax.
22730
22731 2001-09-28  Paul Eggert  <eggert@twinsun.com>
22732
22733         Fix bug reported by Petter Reinholdtsen for HP-UX 10.20, which
22734         #defines strtoimax.  Also treat the other strto* functions
22735         like strtoimax.
22736
22737         * lib/xstrtol.c (strtol): Do not declare if HAVE_DECL_STRTOL.
22738         (strtoul): Do not declare if HAVE_DECL_STRTOUL.
22739         (strtoimax, strtoumax): Do not declare if already defined as a macro.
22740
22741 2001-09-26  Jim Meyering  <meyering@lucent.com>
22742
22743         Most macros in unlocked-io.h had the wrong number of arguments.
22744         * lib/gen-uio: New script.
22745         (USE_UNLOCKED_IO): Define to 1 if not already defined.
22746         * lib/unlocked-io.hin: Remove file.
22747         * lib/Makefile.am (unlocked-io.h): Rewrite to use a separate script,
22748         rather than trying to embed it here.
22749         (EXTRA_DIST): Add gen-uio.  Remove unlocked-io.hin
22750         Reported by Padraig Brady.
22751
22752 2001-09-25  Volker Borchert  <bt@teknon.de>
22753
22754         * lib/gettimeofday.c (rpl_gettimeofday): Declare local variable
22755         `result'.
22756
22757 2001-09-24  Jim Meyering  <meyering@lucent.com>
22758
22759         * m4/gettext.m4: Use the version from gettext-0.10.40, not CVS.
22760
22761 2001-09-23  Jim Meyering  <meyering@lucent.com>
22762
22763         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Add a compile-test
22764         instead of the mere test for existence of mntent.h.  The latter
22765         would get a false-positive on AIX 3.4 systems.
22766         In the outer getmntent if-block, don't die if neither of the getmntent
22767         tests succeeds.  Instead, just fall through and continue with the
22768         remaining tests.
22769
22770 2001-09-23  Jim Meyering  <meyering@lucent.com>
22771
22772         * lib/mountlist.c: Remove useless parentheses in #if directives.
22773         (MOUNTED) [!defined MOUNTED]: Define to _PATH_MOUNTED, for when
22774         the deprecated MOUNTED symbol is no longer defined in mntent.h.
22775
22776 2001-09-22  Jim Meyering  <meyering@lucent.com>
22777
22778         * m4/gettext.m4: New file.  From gettext.
22779         * m4/lcmessage.m4: Sync with gettext -- this changes only comments.
22780         * m4/progtest.m4: Likewise
22781         * m4/isc-posix.m4: Decrement serial number to sync with gettext.
22782         * m4/glibc21.m4: Likewise.
22783
22784         * m4/libintl.m4: Remove.  No longer used.
22785
22786 2001-09-22  Jim Meyering  <meyering@lucent.com>
22787
22788         * lib/localcharset.c: Update from latest gettext.
22789         * lib/config.charset: Likewise.
22790
22791 2001-09-20  Jim Meyering  <meyering@lucent.com>
22792
22793         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX): Check for declaration of
22794         strtoimax.
22795         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Check for declaration of
22796         strtoumax.
22797
22798 2001-09-20  Jim Meyering  <meyering@lucent.com>
22799
22800         * lib/xstrtol.c (strtoimax): Guard declaration with
22801         `#if !HAVE_DECL_STRTOIMAX', rather than just `#ifndef strtoimax'.
22802         The latter fails because some systems (at least rs6000-ibm-aix4.3.3.0)
22803         have their own, conflicting declaration of strtoimax in sys/inttypes.h.
22804         (strtoumax): Likewise, for completeness (it wasn't necessary).
22805
22806 2001-09-17  Paul Eggert  <eggert@twinsun.com>
22807
22808         * lib/strtoimax.c (HAVE_LONG_LONG):
22809         Redefine to HAVE_UNSIGNED_LONG_LONG if unsigned.
22810         (strtoimax): Use sizeof (long), not sizeof strtol (ptr, endptr, base),
22811         to work around bug in IBM C compiler.
22812
22813 2001-09-17  Jim Meyering  <meyering@lucent.com>
22814
22815         * m4/chown.m4, fstypename.m4, getgroups.m4, gettimeofday.m4,
22816         * m4/jm-mktime.m4, lstat.m4, malloc.m4, memcmp.m4, mkdir-slash.m4,
22817         * m4/nanosleep.m4, putenv.m4, readdir.m4, realloc.m4, rename.m4,
22818         * m4/st_dm_mode.m4, stat.m4, strerror_r.m4, timespec.m4, utimbuf.m4,
22819         * m4/utimes.m4: Use AC_DEFINE rather than AC_DEFINE_UNQUOTED,
22820         whenever the right hand side need not be expanded by the shell.
22821
22822 2001-09-16  Paul Eggert  <eggert@twinsun.com>
22823
22824         * m4/fnmatch.m4 (jm_FUNC_FNMATCH): Remove test for GNU C
22825         library.  It's not correct, as some older glibcs are buggy.
22826         fnmatch wasn't fixed until glibc 2.2.
22827
22828         Use AC_DEFINE, not AC_DEFINE_UNQUOTED, as there's no
22829         special shell magic here.
22830
22831 2001-09-16  Jim Meyering  <meyering@lucent.com>
22832
22833         * m4/mkdir-slash.m4 (UTILS_FUNC_MKDIR_TRAILING_SLASH): New file/macro.
22834         * m4/jm-macros.m4: Require it.
22835
22836 2001-09-16  Jim Meyering  <meyering@lucent.com>
22837
22838         * lib/mkdir.c: New file.
22839
22840 2001-09-15  Jim Meyering  <meyering@lucent.com>
22841
22842         * m4/jm-macros.m4: Check for help2man.
22843
22844 2001-09-11  Jim Meyering  <meyering@lucent.com>
22845
22846         * m4/host-os.m4 (UTILS_HOST_OS): New file/macro.
22847         The body, by Paul Eggert, was moved here from configure.in.
22848         * m4/jm-macros.m4: Require UTILS_HOST_OS.
22849
22850 2001-09-04  Paul Eggert  <eggert@twinsun.com>
22851
22852         * m4/prereq.m4 (jm_PREREQ_XREADLINK): New macro.
22853         (jm_PREREQ): Use it.
22854
22855 2001-09-04  Paul Eggert  <eggert@twinsun.com>
22856
22857         * lib/xreadlink.c (xreadlink): Omit size_t* arg.  All uses changed.
22858         Use ssize_t, not int, to store result of readlink.
22859         Check for ssize_t overflow as well as size_t overflow,
22860         as POSIX says the result of readlink is implementation-defined
22861         when ssize_t overflows.
22862         Remove unnecessary cast to char*.
22863         Use free+malloc instead of realloc, as the storage doesn't need
22864         to be preserved and it's clearer and can be more efficient that way.
22865         (SIZE_MAX, SSIZE_MAX): New macros, if <limits.h> doesn't declare.
22866         * lib/xreadlink.h (xreadlink): Update prototype.
22867
22868 2001-09-04  Paul Eggert  <eggert@twinsun.com>
22869
22870         * lib/xgetcwd.c: Revert some of the previous change; intead,
22871         fix the HAVE_GETCWD_NULL code to behave more like the
22872         !HAVE_GETCWD_NULL code used to.
22873
22874         Include "xalloc.h".
22875         (xgetcwd): Do not return NULL when memory is exhausted; instead,
22876         invoke xalloc_die.
22877
22878 2001-09-03  Paul Eggert  <eggert@twinsun.com>
22879
22880         * m4/prereq.m4 (jm_PREREQ_XGETCWD): Check for limits.h and
22881         sys/param.h, as pathmax.h includes them.
22882
22883 2001-09-03  Paul Eggert  <eggert@twinsun.com>
22884
22885         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_XGETCWD.
22886         (jm_PREREQ_XGETCWD): New macro.
22887
22888         * m4/getcwd.m4: New file.
22889
22890 2001-09-03  Paul Eggert  <eggert@twinsun.com>
22891
22892         * lib/xgetcwd.c: Fix the !HAVE_GETCWD_NULL code to behave more
22893         like the HAVE_GETCWD_NULL code.
22894         Include pathmax.h if not HAVE_GETCWD.
22895         Do not include xalloc.h.
22896         (INITIAL_BUFFER_SIZE): New symbol.
22897         Do not use xmalloc / xrealloc, since the caller is responsible for
22898         handling errors.  Preserve errno around `free' during failure.
22899         Do not overrun buffer when using getwd.
22900
22901 2001-09-03  Paul Eggert  <eggert@twinsun.com>
22902
22903         * lib/xgetcwd.c (xgetcwd): Use HAVE_GETCWD_NULL, not (defined
22904         __GLIBC__ && __GLIBC__ >= 2), to decide whether to use
22905         getcwd (NULL, 0).
22906
22907 2001-09-03  Paul Eggert  <eggert@twinsun.com>
22908
22909         * lib/exclude.c (fnmatch_no_wildcards): Fix confusion between
22910         usage of FNM_CASEFOLD and FNM_LEADING_DIR.  The bug was
22911         spotted by Jim Meyering.
22912
22913 2001-09-03  Jim Meyering  <meyering@lucent.com>
22914
22915         * lib/xreadlink.c (xreadlink): Preserve errno around `free' during
22916         failure.
22917
22918 2001-09-02  Jim Meyering  <meyering@lucent.com>
22919
22920         * lib/error.c: Update from GNU libc.
22921
22922 2001-09-01  Jim Meyering  <meyering@lucent.com>
22923
22924         * m4/jm-macros.m4 (jm_MACROS): Check for canonicalize_file_name.
22925         Used by df.
22926
22927 2001-09-01  Jim Meyering  <meyering@lucent.com>
22928
22929         * lib/xreadlink.c: New file.
22930         * lib/xreadlink.h: New file.
22931         * lib/Makefile.am (libfetish_a_SOURCES): Add xreadlink.c and
22932         xreadlink.h.
22933
22934         * lib/regex.c (uintptr_t) [!_LIBC]: Define to private_uintptr_t, so it
22935         doesn't conflict with sparc Solaris 7's definition in
22936         /usr/include/sys/int_types.h.
22937
22938         * lib/exclude.c: Use `""', not `<>' to #include non-system header
22939         files.
22940         (fnmatch_no_wildcards): Rewrite not to use function names, strcasecmp
22941         and strncasecmp as r-values.  Unixware didn't have declarations.
22942
22943 2001-08-31  Paul Eggert  <eggert@twinsun.com>
22944
22945         * lib/xstrtol.h: Add copyright notice.
22946         (_DECLARE_XSTRTOL): Improve quality of diagnostic for
22947         LONGINT_INVALID_SUFFIX_CHAR.
22948
22949 2001-08-31  Paul Eggert  <eggert@twinsun.com>
22950
22951         * lib/xstrtol.c (strtoimax): New decl.
22952
22953 2001-08-31  Paul Eggert  <eggert@twinsun.com>
22954
22955         * lib/xgetcwd.c: Don't include pathmax.h.
22956         Include stdlib.h and unistd.h if available.
22957         Include xalloc.h.
22958         (xmalloc, xstrdup, free): Remove decls.
22959         (xgetcwd): Don't assume sizes fit in unsigned.
22960         Check for overflow when computing sizes.
22961         Simplify reallocation code.
22962
22963 2001-08-31  Paul Eggert  <eggert@twinsun.com>
22964
22965         * lib/savedir.c (savedir): Remove size parameter, as POSIX says that
22966         a directory's st_size can have an arbitrary value, so the old
22967         usage could waste an arbitrary amount of memory.  All uses
22968         changed.
22969         * lib/savedir.h: Update prototype.
22970
22971 2001-08-31  Paul Eggert  <eggert@twinsun.com>
22972
22973         * lib/Makefile.am (libfetish_a_SOURCES): Remove strtoxmax.c.
22974
22975         * lib/strtoimax.c: Renamed from strtoxmax.c, removing the
22976         old strtoimax.c.
22977
22978         Also, make the following further changes to make this file's
22979         configuration more similar to that of strtol.c:
22980         (UNSIGNED): Renamed from STRTOUXMAX_UNSIGNED.  All uses changed.
22981         (strtoumax, uintmax_t, strtoull, strtol): Remove.
22982         (intmax_t, strtoimax, strtol, strtoll): New macros, if UNSIGNED.
22983         (strtoimax): Renamed from strtoumax.  All uses of unsigned values
22984         changed to signed values.
22985
22986         And make the following changes as well:
22987         Fix copyright notice, as 1999 was missing.
22988         (verify): New macro.
22989         (strtoimax): Check sizes at compile-time, not run-time.
22990         Prefer strtol to strtoll if both work.
22991         (main): Remove; it was not that useful and was a pain to maintain.
22992
22993         * lib/strtoumax.c: Include strtoimax.c, not strtouxmax.c.
22994
22995 2001-08-31  Jim Meyering  <meyering@lucent.com>
22996
22997         * lib/xgetcwd.c (xgetcwd): Reorganize to avoid some duplication.
22998         Use an initial, malloc'd, buffer of length 128 rather than
22999         a statically allocated one of length 1024.
23000
23001 2001-08-30  Paul Eggert  <eggert@twinsun.com>
23002
23003         Simplify code, partly by assuming autoconf 2.52 semantics.
23004
23005         * m4/Makefile.am (EXTRA_DIST): Remove uintmax_t.m4.
23006
23007         * m4/inttypes.m4 (AC_PREREQ): Bump to 2.52.
23008         (jm_AC_HEADER_INTTYPES_H): Remove; now done by autoconf in 2.52.
23009         All uses removed.
23010         (jm_AC_TYPE_INTMAX_T, jm_AC_TYPE_UINTMAX_T):
23011         Move AC_REQUIRE to next-to-top level, to avoid confusion.
23012         Use 2.52's AC_CHECK_TYPE instead of merely looking for the header.
23013         * m4/prereq.m4 (jm_PREREQ_HUMAN): Don't require
23014         jm_AC_HEADER_INTTYPES_H.
23015         * m4/jm-macros.m4 (jm_MACROS): Likewise.
23016
23017         * m4/uintmax_t.m4: Remove, as it duplicates inttypes.m4.
23018
23019         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX):
23020         Quote first arg of AC_DEFUN.
23021         Require jm_AC_TYPE_UINTMAX_T and jm_AC_TYPE_UNSIGNED_LONG_LONG
23022         since they are needed to parse the include file even if we need
23023         only xstrtoimax.  Simplify logic behind the args to AC_REPLACE.
23024         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Likewise,
23025         but with opposite signedness.
23026
23027 2001-08-30  Paul Eggert  <eggert@twinsun.com>
23028
23029         Merge 'exclude' changes from tar 1.13.22.
23030         This fixes one or two unlikely storage allocation overflow bugs,
23031         but doesn't change user-visible behavior otherwise.
23032
23033 2001-08-30  Paul Eggert  <eggert@twinsun.com>
23034
23035         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_EXCLUDE.
23036         (jm_PREREQ_EXCLUDE): New macro.
23037
23038 2001-08-30  Paul Eggert  <eggert@twinsun.com>
23039
23040         * lib/quotearg.c: BSD/OS 4.1 wchar.h requires FILE and struct
23041         tm to be declared.
23042
23043 2001-08-30  Paul Eggert  <eggert@twinsun.com>
23044
23045         * lib/hash.c: Remove '2001' from copyright notice.
23046
23047 2001-08-30  Paul Eggert  <eggert@twinsun.com>
23048
23049         * lib/full-write.h: New file.
23050         * lib/Makefile.am (libfetish_a_SOURCES): Add full-write.h.
23051         * lib/full-write.c: Correct credits, as cccp.c no longer
23052         exists and anyway it was so heavily changed from the old cccp
23053         code as to be unrecognizable.  Include full-write.h.
23054         (full_write) Return size_t, with short writes meaning failure.
23055         All callers changed.  This fixes a bug with large buffers
23056         on 64-bit hosts.
23057         * lib/utime.c: Include full-write.h.
23058
23059 2001-08-30  Paul Eggert  <eggert@twinsun.com>
23060
23061         * lib/exclude.c (bool): Declare, perhaps by including stdbool.h.
23062         (<sys/types.h>): Include only if HAVE_SYS_TYPES_H.
23063         (<stdlib.h>, <string.h>, <strings.h>, <inttypes.h>, <stdint.h>):
23064         Include if available.
23065         (<xalloc.h>): Include
23066         (SIZE_MAX): Define if <stdint.h> or <inttypes.h> doesn't.
23067         (verify): New macro.  Use it to verify that EXCLUDE macros do not
23068         collide with FNM macros.
23069         (struct patopts): New struct.
23070         (struct exclude): Use it, as exclude patterns now come with options.
23071         (new_exclude): Support above changes.
23072         (new_exclude, add_exclude_file):
23073         Initial size must now be a power of two to simplify overflow checking.
23074         (free_exclude, fnmatch_no_wildcards): New function.
23075         (excluded_filename): No longer requires options arg, as the options
23076         are determined by add_exclude.  Now returns bool, not int.
23077         (excluded_filename, add_exclude):
23078         Add support for the fancy new exclusion options.
23079         (add_exclude, add_exclude_file): Now takes int options arg.
23080         Check for arithmetic overflow when computing sizes.
23081         (add_exclude_file): xrealloc might modify errno, so don't
23082         realloc until after errno might be used.
23083
23084         * lib/exclude.h (EXCLUDE_ANCHORED, EXCLUDE_INCLUDE,EXCLUDE_WILDCARDS):
23085         New macros.
23086         (free_exclude): New decl.
23087         (add_exclude, add_exclude_file): Now takes int options arg.
23088         (excluded_filename): No longer requires options arg, as the options
23089         are determined by add_exclude.  Now returns bool, not int.
23090
23091 2001-08-30  Paul Eggert  <eggert@twinsun.com>
23092
23093         * lib/alloca.c (alloca): Arg is of type size_t, not unsigned.
23094
23095 2001-08-27  Jim Meyering  <meyering@lucent.com>
23096
23097         * lib/Makefile.am (libfetish_a_SOURCES): Add strtoxmax.c
23098
23099         * lib/version-etc.c (N_): Remove definition.
23100         Revert most of last change.
23101         Instead, simply don't mark the `Copyright...' string for translation.
23102         Based on advice from Paul Eggert.
23103
23104         * lib/strtoxmax.c: Tweak comment.
23105
23106 2001-08-26  Jim Meyering  <meyering@lucent.com>
23107
23108         * m4/jm-macros.m4: Require jm_AC_PREREQ_XSTRTOIMAX.
23109
23110         * m4/xstrtoimax.m4: New file.
23111         * m4/xstrtoumax.m4: Add comments explaining why we
23112         AC_REPLACE_FUNCS(strtol).
23113
23114 2001-08-26  Jim Meyering  <meyering@lucent.com>
23115
23116         * lib/version-etc.c (version_etc_copyright_fmt): Replace literal year
23117         of copyright with `%s' so translators don't get an untranslated
23118         message in 2002.
23119         (COPYRIGHT_YEAR): Define.
23120         (version_etc): Use fprintf rather than fputs.
23121         Suggestion from Ulrich Drepper.
23122
23123         * lib/Makefile.am (libfetish_a_SOURCES): Add xstrtoimax.c.
23124
23125         * lib/strtoll.c: New file, from GNU libc.
23126         * lib/xstrtoimax.c: New file.
23127
23128         * lib/xstrtol.h: Add xstrtoimax.
23129         * lib/strtoumax.c: New file.  Simply include "strtoumax.c".
23130         * lib/strtoimax.c: New file.  Likewise, but first define
23131         STRTOUXMAX_SIGNED.
23132
23133         * lib/strtoumax.c: Factor to work both for unsigned and signed types,
23134         ...
23135         * lib/strtoxmax.c: ... then renamed to this.
23136
23137 2001-08-18  Paul Eggert  <eggert@twinsun.com>
23138
23139         * m4/inttypes.m4: Add AC_PREREQ(2.13).
23140         (jm_AC_HEADER_INTTYPES_H): Test for intmax_t, too.
23141         (jm_AC_TYPE_INTMAX_T): New macro.
23142         (jm_AC_TYPE_UINTMAX_T): Moved here from uintmax_t.m4.
23143
23144         * m4/longlong.m4 (jm_AC_TYPE_LONG_LONG): New macro.
23145
23146         * m4/longlong.m4: Renamed from ulonglong.m4.
23147         * m4/inttypes.m4: Renamed from inttypes_h.m4.
23148         * m4/uintmax_t.m4: Removed.
23149
23150 2001-08-13  Paul Eggert  <eggert@twinsun.com>
23151
23152         * lib/Makefile.am (unlocked-io.h): Do not append "_unlocked" twice.
23153         Port to Solaris 8, where 'sed' requires a space after the 'r'
23154         command, and where sh dislikes "$/".  Clean up the spacing a bit.
23155         Redirect output to $tmp just once.
23156
23157 2001-08-12  Paul Eggert  <eggert@sic.twinsun.com>
23158
23159         * lib/addext.c (<errno.h>): Include.
23160         (errno): Declare if not defined.
23161         (addext): Work correctly when pathconf returns -1 and leaves
23162         errno alone because there is no limit.  Also, work even if
23163         pathconf returns a value greater than SIZE_MAX.
23164
23165 2001-08-12  Jim Meyering  <meyering@lucent.com>
23166
23167         * m4/afs.m4, assert.m4, bison.m4, check-decl.m4, chown.m4, d-ino.m4,
23168         d-type.m4, dos.m4, error.m4, fnmatch.m4, fpending.m4, fstypename.m4,
23169         fsusage.m4, ftruncate.m4, getgroups.m4, glibc.m4, gnu-source.m4,
23170         group-member.m4, jm-glibc-io.m4, jm-macros.m4, jm-mktime.m4,
23171         jm-winsz1.m4, jm-winsz2.m4, lchown.m4, lib-check.m4, libintl.m4,
23172         link-follow.m4, ls-mntd-fs.m4, lstat.m4, malloc.m4, mbrtowc.m4,
23173         mbstate_t.m4, mbswidth.m4, memcmp.m4, nanosleep.m4, perl.m4,
23174         prereq.m4, putenv.m4, readdir.m4, realloc.m4, regex.m4, rename.m4,
23175         rmdir-errno.m4, search-libs.m4, st_dm_mode.m4, st_mtim.m4, stat.m4,
23176         strftime.m4, timespec.m4, unlink-busy.m4, uptime.m4, utimbuf.m4,
23177         utime.m4, utimes.m4, xstrtoumax.m4:
23178         Quote the first argument in each use of AC_DEFUN.
23179
23180 2001-08-12  Jim Meyering  <meyering@lucent.com>
23181
23182         * lib/xgetcwd.c (xgetcwd) [defined __GLIBC__ && __GLIBC__ >= 2]:
23183         Simply `return getcwd (NULL, 0);'.
23184         [! (defined __GLIBC__ && __GLIBC__ >= 2)]:
23185         Use 1300 as initial value for length, not PATH_MAX.
23186
23187         * lib/pathmax.h: Clean up cpp syntax.
23188
23189 2001-08-12  Jim Meyering  <meyering@lucent.com>
23190
23191         * lib/gettimeofday.c: New file.
23192         * lib/gtod.h: New file.
23193         * lib/Makefile.am (libfetish_a_SOURCES): Add gtod.h.
23194
23195 2001-08-05  Jim Meyering  <meyering@lucent.com>
23196
23197         * m4/jm-macros.m4: Require autoconf-2.52.
23198
23199 2001-08-04  Jim Meyering  <meyering@lucent.com>
23200
23201         * lib/error.h (__attribute__): Remove `|| __STRICT_ANSI__' from #if
23202         stmt, to get in sync with glibc.
23203
23204 2001-08-03  Paul Eggert  <eggert@twinsun.com>
23205
23206         The following changes are from gettext 0.10.39 as maintained by
23207         Bruno Haible.
23208
23209         * lib/mbswidth.h (MBSW_REJECT_UNPRINTABLE, MBSW_REJECT_INVALID):
23210         Renamed from MBSW_ACCEPT_UNPRINTABLE and MBSW_ACCEPT_INVALID
23211         with inverted sense.  All uses changed.
23212
23213         * lib/mbswidth.c: Don't include <limits.h>.
23214         Include <stdlib.h> and <string.h> unconditionally.
23215         (iswcntrl, mbsinit, ISCNTRL): New macros.
23216         (mbsnwidth): Use K&R style function declarations.
23217         Don't bother checking for MB_LEN_MAX == 1, since the compiler
23218         can optimize it when MB_CUR_MAX == 1.
23219         The width of control characters is zero, not 1.
23220
23221 2001-08-03  Paul Eggert  <eggert@twinsun.com>
23222
23223         The following changes are from gettext 0.10.39 as maintained by
23224         Bruno Haible, except that getline.m4 continues to use AC_LIBOBJ.
23225
23226         * m4/codeset.m4: Upgrade to serial AM1.
23227         (AM_LANGINFO_CODESET): Renamed from jm_LANGINFO_CODESET;
23228         all uses changed.  Quote first arg of AC_DEFUN.
23229         (am_cv_langinfo_codeset): Renamed from jm_cv_langinfo_codeset.
23230
23231         * m4/iconv.m4: Upgrade to serial AM2.
23232         (AM_ICONV): Renamed from jm_ICONV; all uses changed.
23233         Add --with-libconv-prefix.
23234         Quote first arg of AC_DEFUN.  Add description for ICONV_CONST.
23235         (am_cv_func_iconv): Renamed from jm_cv_func_iconv.
23236         (am_cv_lib_iconv): Renamed from jm_cv_lib_iconv.
23237         (am_cv_proto_iconv): Renamed from jm_cv_proto_iconv.
23238         * m4/jm-macros.m4 (jm_MACROS): Reflect s/jm_/AM_/ renamings.
23239
23240         * m4/c-bs-a.m4 (AC_C_BACKSLASH_A): Quote first arg of AC_DEFUN.
23241         * m4/getline.m4 (AM_FUNC_GETLINE): Likewise.
23242         * m4/glibc21.m4 (jm_GLIBC21): Likewise.
23243         * m4/inttypes_h.m4 (jm_AC_HEADER_INTTYPES_H): Likewise.
23244         * m4/isc-posix.m4 (AC_ISC_POSIX): Likewise.
23245         * m4/lcmessage.m4 (AM_LC_MESSAGES): Likewise.
23246         * m4/progtest.m4 (AM_PATH_PROG_WITH_TEST): Likewise.
23247         * m4/uintmax_t.m4 (jm_AC_TYPE_UINTMAX_T): Likewise.
23248         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Likewise.
23249
23250         * m4/getline.m4 (AM_FUNC_GETLINE): Don't bother checking for
23251         string.h any more.
23252
23253         * m4/progtest.m4 (AM_PATH_PROG_WITH_TEST): If not found, print "no",
23254         not the default value.
23255
23256         2001-06-25  Bruno Haible  <haible@clisp.cons.org>
23257         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Don't require AM_C_PROTOTYPES.
23258         Also check for mbsinit.  Needed for SCO 3.2v5.0.2.
23259         Also include <string.h>; this is where AIX 3.2.5 declares wcwidth.
23260         Also check for iswcntrl, used for wcwidth fallback.
23261         Use AC_TRY_COMPILE to emulate AC_CHECK_DECLS, for portability
23262         to Autoconf 2.13.
23263
23264 2001-08-03  Jim Meyering  <meyering@lucent.com>
23265
23266         * m4/mbrtowc.m4 (jm_FUNC_MBRTOWC): Use `#include', not `@%:@include',
23267         as it was in the original.  Reported by Paul Eggert.
23268
23269 2001-07-16  Jim Meyering  <meyering@lucent.com>
23270
23271         * m4/gettimeofday.m4: New file.
23272         Prompted by a report from Bernhard Baehr.
23273
23274 2001-07-15  Jim Meyering  <meyering@lucent.com>
23275
23276         * m4/Makefile.am.in (Makefile.am): Remove most of the unlocked-io.h
23277         stuff. Now it's in ../Makefile.cfg.
23278
23279 2001-07-15  Jim Meyering  <meyering@lucent.com>
23280
23281         * lib/Makefile.am (EXTRA_DIST): Add unlocked-io.hin.
23282         (BUILT_SOURCES): Add unlocked-io.h.
23283         (io_functions): Define.
23284         (unlocked-io.h): New rule.
23285         (DISTCLEANFILES): Add unlocked-io.h.
23286         (all-local): Depend on unlocked-io.h, to ensure it is created.
23287
23288         * lib/unlocked-io.hin: New file
23289
23290         * lib/regex.c: Update from glibc.
23291
23292 2001-07-05  Jim Meyering  <meyering@lucent.com>
23293
23294         * lib/Makefile.am (noinst_HEADERS): Remove definition, per new automake
23295         recommendation.
23296         (libfetish_a_SOURCES): Put all .h files here instead.
23297         Remove a thus-exposed (better checks in automake) duplicate and
23298         two unnecessary .h files.
23299
23300 2001-07-04  Jim Meyering  <meyering@lucent.com>
23301
23302         * m4/Makefile.am.in (glibc-io.struct): New target.  Rework the code
23303         that generates jm-glibc-io.m4 so that it doesn't trigger any make
23304         distcheck failure.
23305
23306 2001-07-02  Jim Meyering  <meyering@lucent.com>
23307
23308         The following changes were prompted by suggestions from Bruno Haible.
23309
23310         * m4/jm-glibc-io.m4n: New file, the template from which jm-glibc-io.m4
23311         is now generated.
23312         * m4/Makefile.am.in (Makefile.am): Include jm-glibc-io.m4n in emitted
23313         definition of EXTRA_DIST.
23314         (Makefile.am): Emit the dependency, `all-local: jm-glibc-io.m4' to
23315         ensure that the generated file is created/updated whenever the list
23316         of $(unlocked_functions) is changed.
23317         (jm-glibc-io.m4): New rule.
23318         (unlocked-io.h): New rule -- currently unused.
23319
23320 2001-06-24  Jim Meyering  <meyering@lucent.com>
23321
23322         * m4/regex.m4 (jm_INCLUDED_REGEX): Use a quadrigraph to represent an
23323         unmatched right bracket, rather than kludging it with an extra,
23324         falsely-matching quote in a comment.  Patch by Akim Demaille.
23325
23326 2001-06-11  Jim Meyering  <meyering@lucent.com>
23327
23328         * lib/regex.c: Update from GNU libc.
23329
23330 2001-05-27  Jim Meyering  <meyering@lucent.com>
23331
23332         * m4/prereq.m4 (jm_PREREQ_READUTMP): Check for ut_type in struct utmpx.
23333         Check for ut_type in struct utmp.
23334
23335 2001-05-27  Jim Meyering  <meyering@lucent.com>
23336
23337         * lib/readutmp.h (UT_TYPE): Define.
23338
23339 2001-05-24  Jim Meyering  <meyering@lucent.com>
23340
23341         * lib/argmatch.c: Include "quote.h".
23342         (argmatch_invalid): Remove explicit `' quotes.  Instead, use the
23343         quote function.  Reported by Göran Uddeborg.
23344
23345 2001-05-22  Jim Meyering  <meyering@lucent.com>
23346
23347         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't use AC_LIBOBJ(strftime),
23348         now that we use the package-supplied version unconditionally.
23349         (jm_FUNC_STRFTIME): Don't replace strftime, for the same reason.
23350
23351 2001-05-21  Jim Meyering  <meyering@lucent.com>
23352
23353         * m4/regex.m4: Change a couple backticks to single quotes to avoid
23354         shell syntax errors.
23355
23356 2001-05-21  Alexandre Duret-Lutz  <duret_g@epita.fr>
23357
23358         * m4/dos.m4 (jm_AC_DOS): Check for _WIN32, __WIN32__, and __MSDOS__.
23359
23360 2001-05-20  Paul Eggert  <eggert@twinsun.com>
23361
23362         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME):
23363         Don't bother to check library strftime, since
23364         we'll be using our own my_strftime function anyway.
23365         Define my_strftime instead of strftime.
23366
23367 2001-05-20  Alexandre Duret-Lutz  <duret_g@epita.fr>
23368
23369         * lib/dirname.c (dir_name): Compute append_dot using path, not newpath
23370         which is not yet declared.
23371
23372 2001-05-15  Jim Meyering  <meyering@lucent.com>
23373
23374         * m4/regex.m4: Use proper quoting so brackets appear in the test
23375         program.
23376         Reported by, and with help from, Bruno Haible.
23377
23378 2001-05-13  Jim Meyering  <meyering@lucent.com>
23379
23380         * m4/jm-macros.m4 (major_t, minor_t): Define to unsigned int if
23381         undefined.
23382
23383 2001-05-11  Paul Eggert  <eggert@twinsun.com>
23384
23385         dirname code cleanup.  base_name now behaves more compatibly
23386         with POSIX basename when given file names that have trailing
23387         slashes, and similarly for dir_name.  Add new primitives
23388         base_len and dir_len.  Put the directory-name-related decls
23389         into dirname.h.
23390
23391         * lib/addext.c (ISSLASH, base_name): Remove; now in dirname.h.
23392         * lib/backupfile.c (base_name): Likewise.
23393         * lib/basename.c (FILESYSTEM_PREFIX_LEN, PARAMS, ISSLASH): Likewise.
23394         * lib/dirname.c (FILESYSTEM_PREFIX_LEN, ISSLASH): Likewise.
23395         * lib/makepath.c (strip_trailing_slashes): Likewise.
23396         * lib/path-concat.c (DIRECTORY_SEPARATOR, FILESYSTEM_PREFIX_LEN,
23397         ISSLASH): Likewise.
23398         * lib/rename.c (strip_trailing_slashes): Likewise.
23399         * lib/same.c (base_name): Likewise.
23400         * lib/stripslash.c (ISSLASH): Likewise.
23401
23402         * lib/addext.c: Include <dirname.h> after size_t is defined.
23403         * lib/backupfile.c: Likewise.
23404
23405         * lib/addext.c (addext): Use base_len to trim redundant
23406         trailing slashes instead of doing it ourselves.
23407         But do not trim the last slash if it is not redundant.
23408
23409         * lib/backupfile.c (find_backup_file_name,
23410         max_backup_version): Use base_len instead of rolling it ourselves.
23411         Handle the case of "" and (on DOS) "C:" correctly.
23412
23413         * lib/basename.c: Do not include <stdio.h>, <assert.h>; no longer
23414         needed. Include <string.h>, <dirname.h>.
23415         (base_name): Allow file names ending in slashes, other than names
23416         that are all slashes.  In this case, return the basename followed
23417         by the slashes.  This is more general, and can be used in places
23418         where the original base_name purposely had an assertion failure.
23419         (base_len): New function.
23420
23421         * lib/dirname.c: Include <string.h> instead of <stdlib.h>.
23422         Do not include <assert.h>; no longer needed.
23423         Include xalloc.h.
23424         (memrchr): Remove decl.
23425         (dir_name_r): Remove.
23426         (dir_len): Renamed from dirlen.  All callers changed.
23427         Rewrite in terms of base_name, for simplicity and consistency.
23428         (dir_name): Never return NULL.  All callers changed.
23429         Do not include <stdlib.h> in test program; no longer needed.
23430         return 0; is fine for test program.
23431
23432         * lib/dirname.h (DIRECTORY_SEPARATOR, ISSLASH, FILESYSTEM_PREFIX_LEN):
23433         New macros.
23434         (base_name, base_len, dir_len, strip_trailing_slashes): New decls.
23435
23436         * lib/path-concat.c (path_concat): Use base_len to compute
23437         base length, not strlen; this means we cannot rely on memcpy
23438         to null-terminate.
23439
23440         * lib/same.c (STREQ): Remove.
23441         (same_name): Handle the case where the basename ends in trailing '/'.
23442
23443         * lib/stripslash.c (strip_trailing_slashes): Return nonzero if
23444         a slash was stripped.  Do not strip the last slash after a
23445         file system prefix.
23446
23447 2001-05-11  Paul Eggert  <eggert@twinsun.com>
23448
23449         * lib/Makefile.am (libfetish_a_SOURCES):
23450         Add strftime.c, since we now compile it on all hosts.
23451
23452         * lib/strftime.c (my_strftime):
23453         Define to nstrftime if emacs, but only if my_strftime is not defined.
23454         (extra_args, extra_args_spec, extra_args_spec_iso): Rename from
23455         ut_argument, ut_argument_spec, ut_argument_spec_iso, respectively.
23456         Add one more extra argument: a nanoseconds value.
23457         All uses changed.
23458         (ns): New macro.
23459         (my_strftime function): Add %N format.
23460         (emacs_strftimeu): Renamed from emacs_strftime,
23461         with extra ut argument.
23462
23463 2001-05-09  Paul Eggert  <eggert@twinsun.com>
23464
23465         * m4/jm-macros.m4 (jm_MACROS): Do not check for fseeko; no longer used.
23466
23467 2001-04-21  Jim Meyering  <meyering@lucent.com>
23468
23469         * m4/rmdir-errno.m4: Write to a new file, so that a restrictive umask
23470         doesn't interfere.
23471
23472 2001-04-21  Alexandre Duret-Lutz  <duret_g@epita.fr>
23473
23474         * m4/ftruncate.m4: Check for chsize.
23475         Link with ftruncate.o unconditionally if ftruncate is missing.
23476         This was required when cross-compiling to i586-mingw32msvc.
23477
23478 2001-04-08  Jim Meyering  <meyering@lucent.com>
23479
23480         * lib/getdate.y (get_date): Set tm_isdst to -1 to ensure that it is
23481         recomputed; that's necessary when the offset spans a DST transition.
23482         Patch by David J. MacKenzie.  Reported by Hon-Yin Kok.
23483
23484 2001-04-02  Jim Meyering  <meyering@lucent.com>
23485
23486         * lib/regex.h, regex.c: Update from GNU libc.
23487
23488 2001-03-24  Jim Meyering  <meyering@lucent.com>
23489
23490         * m4/jm-macros.m4: Require autoconf-2.49d.
23491
23492 2001-03-20  Bruno Haible  <haible@clisp.cons.org>
23493
23494         * m4/iconv.m4 (jm_ICONV): Recommend GNU libiconv.
23495
23496 2001-03-19  Paul Eggert  <eggert@twinsun.com>
23497
23498         * lib/version-etc.c (version_etc_copyright): Update to 2001.
23499
23500 2001-03-17  Jim Meyering  <meyering@lucent.com>
23501
23502         * m4/memcmp.m4 (jm_AC_FUNC_MEMCMP): Remove my copy of AC_FUNC_MEMCMP,
23503         now that the version in autoconf is equivalent.
23504         (jm_FUNC_MEMCMP): Adjust to use AC_FUNC_MEMCMP.
23505
23506         * m4/error.m4 (jm_PREREQ_ERROR): Invoke AC_FUNC_STRERROR_R.
23507         Suggestion from Akim Demaille.
23508
23509         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_TEMPNAME.
23510         (jm_PREREQ_TEMPNAME): New function.
23511
23512 2001-03-16  Paul Eggert  <eggert@twinsun.com>
23513
23514         * lib/tempname.c (uint64_t): Define to uintmax_t if
23515         not defined, and if UINT64_MAX is not defined.
23516         Required at least for Vax Ultrix4.3, which doesn't define uint64_t.
23517         Reported by John David Anglin.
23518
23519 2001-03-15  Bruno Haible  <haible@clisp.cons.org>
23520
23521         * lib/localcharset.c (locale_charset): Allow wildcard syntax. Also
23522         resolve alias if codeset is empty.
23523         * lib/config.charset (BeOS): Use wildcard syntax.
23524
23525 2001-03-13  Jim Meyering  <meyering@lucent.com>
23526
23527         * lib/path-concat.c (path_concat)
23528         [FILESYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX]: Don't insert a backslash when
23529         concatenating e.g., `C:' and `foo'.
23530         From Bruno Haible.
23531
23532 2001-03-06  Bruno Haible  <haible@clisp.cons.org>
23533
23534         * lib/localcharset.c (locale_charset): Don't use
23535         setlocale(LC_CTYPE,NULL). Don't return NULL.
23536         * lib/unicodeio.c (print_unicode_char): Simplify accordingly.
23537
23538 2001-03-06  Bruno Haible  <haible@clisp.cons.org>
23539
23540         * lib/config.charset: Update for FreeBSD 4.2 and OSF/1 5.1. Add
23541         support for DOS/DJGPP.
23542
23543 2001-03-01  Paul Eggert  <eggert@twinsun.com>
23544
23545         * m4/jm-macros.m4 (jm_MACROS): Use mkstemp replacement if the system
23546         lacks mkstemp.  Compile our own tempname.c if we compile our own
23547         mkstemp.c, as mkstemp relies on tempname.
23548
23549 2001-03-01  Jim Meyering  <meyering@lucent.com>
23550
23551         * m4/dos.m4 (jm_AC_DOS): Remove extra backslashes, now that
23552         AH_VERBATIM really does output its argument verbatim.
23553
23554 2001-02-28  Paul Eggert  <eggert@twinsun.com>
23555
23556         * lib/Makefile.am (libfetish_a_SOURCES):
23557         Add dup-safer.c, fopen-safer.c.
23558         (noinst_HEADERS): Add stdio-safer.h, unistd-safer.h.
23559
23560         * lib/dup-safer.c, lib/fopen-safer.c, lib/stdio-safer.h:
23561         * lib/unistd-safer.h: New files.
23562
23563 2001-02-25  Paul Eggert  <eggert@twinsun.com>
23564
23565         The mkstemp replacement is taken from glibc 2.2.2, with some
23566         portability fixes for use outside glibc, as follows:
23567
23568         * lib/tempname.c (struct_stat64): New macro.
23569         (direxists, __gen_tempname): Use it.
23570         This avoids a portability problem with Solaris 8.
23571
23572         * lib/tempname.c (<config.h>): Include if HAVE_CONFIG_H.
23573         (<stddef.h>, <stdint.h>, <string.h>):
23574         Include only if STDC_HEADERS || _LIBC.
23575         (<fcntl.h>): Include only if HAVE_FCNTL_H || _LIBC.
23576         (<unistd.h>): Include only if HAVE_UNISTD_H || _LIBC.
23577         (<sys/time.h>): Include only if HAVE_SYS_TIME_H || _LIBC.
23578         (__set_errno): Define this macro if <errno.h> doesn't.
23579         (P_tmpdir, TMP_MAX, __GT_FILE, __GT_BIGFILE, __GT_DIR, __GT_NOCREATE):
23580         Define these macros if <stdio.h> doesn't.
23581         (S_ISDIR, S_IRUSR, S_IWUSR, S_IXUSR):
23582         Define these macros if <sys/stat.h>
23583         doesn't.  Ignore <sys/stat.h> S_ISDIR if STAT_MACROS_BROKEN.
23584         (stat64, __getpid, __gettimeofday, __mkdir, __open, __open64, lxstat64,
23585         __xstat64): Define if not _LIBC.
23586         (__secure_getenv): Define if ! (HAVE___SECURE_GETENV || _LIBC).
23587         (__gen_tempname): Invoke gettimeofday only if
23588         HAVE_GETTIMEOFDAY || _LIBC;
23589         otherwise, fall back on plain "time".
23590         Use macros like S_IRUSR | S_IWUSR rather than octal values like 0600.
23591
23592         * lib/mkstemp.c (__GT_FILE): Define to zero if not defined.
23593
23594         * lib/mkstemp.c, lib/tempname.c: New files, taken from glibc 2.2.2.
23595
23596 2001-02-18  Paul Eggert  <eggert@twinsun.com>
23597
23598         * m4/jm-macros.m4 (jm_CHECK_ALL_HEADERS): Check for sys/resource.h.
23599
23600 2001-02-17  Paul Eggert  <eggert@twinsun.com>
23601
23602         * m4/mbrtowc.m4: New file, defining jm_FUNC_MBRTOWC.
23603         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH):
23604         Use jm_FUNC_MBRTOWC, not AC_CHECK_FUNCS(mbrtowc).
23605         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Likewise.
23606
23607 2001-02-17  Paul Eggert  <eggert@twinsun.com>
23608
23609         * lib/mbswidth.c, quotearg.c (mbrtowc, mbsinit):
23610         Remove workaround macros for hosts that have mbrtowc but not
23611         mbstate_t, as we now insist on proper declarations for both
23612         before using mbrtowc.
23613
23614 2001-02-17  Jim Meyering  <meyering@lucent.com>
23615
23616         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Don't check for
23617         getmntent via AC_CHECK_FUNCS, since that would get a `no' and disrupt
23618         further attempts by AC_FUNC_GETMNTENT to check with e.g., -lgen on
23619         UnixWare 7.1.1.
23620
23621         * m4/mbrtowc.m4 (jm_FUNC_MBRTOWC): Adapt to use AC_CACHE_CHECK etc.,
23622         rather than AC_CACHE_VAL.
23623
23624 2001-02-17  Jim Meyering  <meyering@lucent.com>
23625
23626         * lib/strtoul.c: Sync from GNU libc.  Use double quotes, not <...>
23627         around included file name.
23628
23629         * lib/strnlen.c (__strnlen): Merge in a change from GNU libc.
23630
23631         * lib/strftime.c: Update from GNU libc (the only changes were to
23632         comments).
23633
23634 2001-02-17  Jim Meyering  <meyering@lucent.com>
23635
23636         * lib/regex.c: Update from libc.
23637
23638 2001-02-17  Bruno Haible  <haible@clisp.cons.org>
23639
23640         * lib/mbswidth.h (mbswidth): Also define as macro, to avoid prototype
23641         clash.
23642
23643 2001-02-16  Paul Eggert  <eggert@twinsun.com>
23644
23645         * lib/alloca.c (malloc): Undef before defining, since stdlib.h
23646         may have defined it.  Needed for Encore Umax-3.0.9.16b systems.
23647         Reported by Mark Hounschell via Paul Eggert.
23648
23649 2001-02-07  Jim Meyering  <meyering@lucent.com>
23650
23651         * m4/regex.m4 (jm_INCLUDED_REGEX): Add a test for the latest bug.
23652
23653 2001-02-05  Jim Meyering  <meyering@lucent.com>
23654
23655         * m4/jm-macros.m4: Require autoconf-2.14d (not yet released), because
23656         it includes the patch required for `large file' support with at least
23657         HP-UX's 10.20 /bin/cc.
23658
23659 2001-02-03  Jim Meyering  <meyering@lucent.com>
23660
23661         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Restore prior use of
23662         AS_IF, now that it works once again (mysteriously).
23663         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Likewise.
23664
23665 2001-01-30  Jim Meyering  <meyering@lucent.com>
23666
23667         Don't use filenames that are 8.3-equivalent to "conftest" on DOS.
23668         * m4/chown.m4: Rename conftestchown to conftest.chown.
23669         * m4/rename.m4: s/conftestdir/conftest.d1/ and
23670         s/conftestdir2/conftest.d2/.
23671         * m4/utimes.m4: s/conftestdata/conftest.data/
23672         Inspired by Pavel Roskin's change in autoconf.
23673
23674 2001-01-30  Bruno Haible  <haible@clisp.cons.org>
23675
23676         * lib/config.charset: Update for FreeBSD 4.2.
23677
23678 2001-01-27  Jim Meyering  <meyering@lucent.com>
23679
23680         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Open-code what was
23681         a use of AS_IF.
23682         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Likewise.
23683
23684 2001-01-26  Jim Meyering  <meyering@lucent.com>
23685
23686         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Check for stddef.h, now that
23687         quotearg.c includes it.
23688
23689 2001-01-26  Jim Meyering  <meyering@lucent.com>
23690
23691         * lib/quotearg.c: Include stddef.h.
23692         * lib/quote.c: Include stddef.h.
23693         Reported by Axel Kittenberger.
23694
23695         * lib/xmalloc.c [HAVE_DONE_WORKING_MALLOC_CHECK]: Enclose error-evoking
23696         line in double quotes so that it evokes a better diagnostic.
23697         [HAVE_DONE_WORKING_REALLOC_CHECK]: Likewise.
23698         Reported by Axel Kittenberger.
23699
23700 2001-01-24  Stefan Monnier  <monnier@cs.yale.edu>
23701
23702         * regex.c (mutually_exclusive_p): Don't blindly handle `charset_not'
23703         as if it was a `charset'.
23704
23705 2001-01-21  Bruno Haible  <haible@clisp.cons.org>
23706
23707         * m4/iconv.m4 (jm_ICONV): Also check whether the iconv declaration
23708         has const.
23709
23710 2001-01-21  Bruno Haible  <haible@clisp.cons.org>
23711
23712         * lib/unicodeio.c (print_unicode_char): Cast the second iconv() arg,
23713         to avoid a warning.  Add back 'const' to inptr.
23714
23715 2001-01-20  Jim Meyering  <meyering@lucent.com>
23716
23717         Be sure that headers are checked before used in code compiled
23718         for the type checks.
23719         * m4/jm-macros.m4 (jm_MACROS): Remove all header checks.
23720         In place of that, invoke jm_CHECK_ALL_TYPES.
23721         (jm_CHECK_ALL_HEADERS): New functions with the above checks.
23722         (jm_CHECK_ALL_TYPES): Require jm_CHECK_ALL_HEADERS.
23723         Alan Iwi reported a build failure on an f300-fujitsu-uxpv4.1_ES;
23724         The check for ssize_t was mistakenly run before the test for unistd.h.
23725
23726         The configure-time check for stdbool.h was missing.
23727         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_HASH.
23728         (jm_PREREQ_HASH): New function.
23729
23730 2001-01-17  Jim Meyering  <meyering@lucent.com>
23731
23732         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Use AS_IF, not AS_IFELSE,
23733         for autoconf-2.49c.
23734         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Likewise.
23735
23736 2001-01-16  Jim Meyering  <meyering@lucent.com>
23737
23738         * lib/basename.c: Include <stdio.h>, needed by assert on SunOS 4.
23739         From Bruno Haible.
23740
23741 2001-01-14  Jim Meyering  <meyering@lucent.com>
23742
23743         * m4/rename.m4: Use temporary directories named conftestdir{,2}, not
23744         foo and bar.  Create conftestdir/ in the script, not in the C code.
23745         Remove directories in the script, not in the C code.
23746         Remove conftestdir{,2} before trying to create the directory.
23747         Make the entire configure script fail if the mkdir fails.
23748
23749 2001-01-14  Jim Meyering  <meyering@lucent.com>
23750
23751         * lib/rename.c: New file.  From Volker Borchert.
23752         Include stdlib.h, string.h or strings.h, and xalloc.h.
23753         Use strip_trailing_slashes rather than open-coding it.
23754
23755 2001-01-03  Paul Eggert  <eggert@twinsun.com>
23756
23757         * lib/strftime.c: Sync with glibc time/strftime.c 1.81.
23758
23759 2001-01-03  Jim Meyering  <meyering@lucent.com>
23760
23761         * lib/unicodeio.c (print_unicode_char): Remove `const' from declaration
23762         of local `inptr' to avoid warning with some system declarations of
23763         iconv.
23764
23765 2001-01-02  Volker Borchert  <bt@teknon.de>
23766
23767         * m4/rename.m4: New file.
23768         * m4/jm-macros.m4 (jm_MACROS): Require vb_FUNC_RENAME.
23769
23770 2001-01-01  Jim Meyering  <meyering@lucent.com>
23771
23772         * m4/prereq.m4 (jm_PREREQ_READUTMP): Include utmp.h (if available),
23773         even on systems with utmpx.h.  It's necessary for the declaration of
23774         utmp's ut_user member.  Reported by Andreas Jaeger.
23775
23776         * m4/check-decl.m4 (jm_CHECK_DECLS): Include grp.h and pwd.h if
23777         available. They are required for the declarations of getgrgid and
23778         getpwuid resp.
23779         (_jm_DECL_HEADERS): Check for grp.h and pwd.h.
23780         Reported by Andreas Jaeger.
23781
23782 2001-01-01  Alexandre Duret-Lutz  <duret_g@epita.fr>
23783
23784         * m4/libintl.m4 (AM_GNU_GETTEXT): Define MKINSTALLDIRS by
23785         expanding the value of $ac_aux_dir, as in AM_MISSING_HAS_RUN,
23786         so `make install' also works in VPATH builds.
23787
23788 2000-12-31  Alexandre Duret-Lutz  <duret_g@epita.fr>
23789
23790         * m4/libintl.m4 (AM_WITH_NLS): When using AC_CONFIG_AUX_DIR,
23791         prepend $(top_srcdir) to the value of MKINSTALLDIRS so that it
23792         can be used in subdirectories.
23793
23794 2000-12-29  Paul Eggert  <eggert@twinsun.com>
23795
23796         * lib/modechange.c: Do not assume that mode_t uses the
23797         traditional octal encoding.  E.g. "chmod 1 FOO" should set
23798         the other-execute bit of FOO even if S_IXOTH != 1.
23799
23800         (SUID, SGID, SVTX, RUSR, WUSR, XUSR, RGRP, WGRP, XGRP, ROTH,
23801         WOTH, XOTH, ALLM): New macros.
23802         (S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR,
23803          S_IRGRP, S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH):
23804         Use them.
23805         (S_ISGID): Fix typo; it was defaulting to the same value as S_ISUID.
23806         (S_IRWXU, S_IRWXG, S_IRWXO): Specify defaults in terms of the above.
23807         (mode_compile):
23808         No need to use uintmax_t; unsigned long is long enough.
23809         Don't bother to get suffix since we don't use it.
23810
23811 2000-12-26  Jim Meyering  <meyering@lucent.com>
23812
23813         * m4/dos.m4 (jm_AC_DOS): Rewrite (though it's still a stub) to work
23814         better with autoheader.
23815
23816 2000-12-24  Jim Meyering  <meyering@lucent.com>
23817
23818         * lib/hash.c (is_prime): Return explicit boolean values.
23819         (hash_get_first): Return NULL to appease Irix5.6's 89.
23820         Reported by Nelson Beebe.
23821
23822 2000-12-19  Bruno Haible  <haible@clisp.cons.org>
23823
23824         * lib/localcharset.c (locale_charset): Add support for Win32.
23825
23826 2000-12-18  Paul Eggert  <eggert@twinsun.com>
23827
23828         * lib/physmem.h, lib/physmem.c: New files.
23829
23830         * lib/Makefile.am (libfetish_a_SOURCES): Add physmem.c.
23831         (noinst_HEADERS): Add physmem.h.
23832
23833         * lib/xstrtol.c (__xstrtol): Add undocumented suffixes 'g' and
23834         't' for compatibility with Solaris 8 sort.
23835
23836 2000-12-18  Bruno Haible  <haible@clisp.cons.org>
23837
23838         * lib/config.charset: Add support for BeOS.
23839
23840 2000-12-17  Jim Meyering  <meyering@lucent.com>
23841
23842         * m4/dos.m4 (jm_AC_DOS): New file and macro.
23843         * m4/jm-macros.m4 (jm_MACROS): Require jm_AC_DOS.
23844
23845 2000-12-16  Jim Meyering  <meyering@lucent.com>
23846
23847         This bug had a serious impact on chown: `chown N:M FILE' (for integer
23848         N and M) would have treated it like `chown N:N FILE'.
23849
23850         * lib/userspec.c (parse_user_spec): Fix typo: s/u/g/.
23851
23852 2000-12-16  Jim Meyering  <meyering@lucent.com>
23853
23854         * lib/getusershell.c [!SHELLS_FILE && __DJGPP__]: Define
23855         SHELLS_FILE to a file name that's useful on djgpp systems.
23856         Include stdlib.h.
23857         (ADDITIONAL_DEFAULT_SHELLS): Define.
23858         (default_shells): Prepend ADDITIONAL_DEFAULT_SHELLS.
23859         Based mostly on a patch from Prashant TR.
23860
23861 2000-12-16  Bruno Haible  <haible@clisp.cons.org>
23862
23863         * lib/config.charset: Add ISO-8859-3, BIG5HKSCS, GB18030, JOHAB,
23864         VISCII, CP874, CP949, CP950, CP1250, CP1253, CP1254, CP1255, CP1256,
23865         CP1257 to the list of canonical encodings. Rename EUC-CN to GB2312.
23866
23867 2000-12-08  Andreas Schwab  <schwab@suse.de>
23868
23869         * lib/mbswidth.c (mbsnwidth): Don't loop endlessly when called with an
23870         invalid mulitbyte sequence and with the MBSW_ACCEPT_INVALID flag set.
23871
23872 2000-12-07  Jim Meyering  <meyering@lucent.com>
23873
23874         * lib/stripslash.c (ISSLASH): Define.
23875         (strip_trailing_slashes): Use ISSLASH rather than comparing against
23876         `/'.
23877         From Prashant TR.
23878
23879         * lib/dirname.c (FILESYSTEM_PREFIX_LEN): Define.
23880         (dir_name_r): Declare this function as static.
23881         [BACKSLASH_IS_PATH_SEPARATOR]: Fix a bug that'd
23882         manifest itself on a name containing a mix of slashes and
23883         backslashes.
23884         Make this function work with names starting with a DOS-style
23885         drive letter and colon prefix.
23886         (dir_name): Append `.' if necessary.
23887         Based mostly on patches from Prashant TR and Eli Zaretskii.
23888
23889         * lib/dirname.h (dir_name_r): Remove prototype.
23890
23891 2000-12-06  Paul Eggert  <eggert@twinsun.com>
23892
23893         * m4/off_t-format.m4: Remove this file.
23894         * m4/jm-macros.m4 (jm_MACROS): Remove jm_SYS_OFF_T_PRINTF_FORMAT.
23895
23896 2000-12-06  Jim Meyering  <meyering@lucent.com>
23897
23898         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): If we need the
23899         replacement strtoull, we may well need the replacement strtoul, too.
23900         Check for declarations of strtoul and strtoull.
23901         Check for strtol.  Mainly as a cue to cause automake to include
23902         strtol.c -- that file is included by each of strtoul.c and strtoull.c.
23903         Check for limits.h -- strtol.c needs it.
23904
23905 2000-12-05  Jim Meyering  <meyering@lucent.com>
23906
23907         * lib/dirname.c (dir_name_r): Add `const' in a few local declarations.
23908
23909 2000-12-04  Jim Meyering  <meyering@lucent.com>
23910
23911         * lib/path-concat.c: [!HAVE_DECL_MALLOC]: Declare malloc.
23912         Also include memory.h, stdlib.h, unistd.h if appropriate.
23913         Reported by Andreas Jaeger (conflicting declaration of malloc).
23914
23915 2000-12-02  Jim Meyering  <meyering@lucent.com>
23916
23917         * m4/off_t-format.m4 (OFF_T_PRINTF_FORMAT_STRING): New file/macro.
23918         * m4/jm-macros.m4 (jm_MACROS): require it.
23919
23920 2000-12-02  Jim Meyering  <meyering@lucent.com>
23921
23922         * lib/closeout.h: Make idempotent, to avoid some obscure warnings.
23923
23924 2000-12-01  Paul Eggert  <eggert@twinsun.com>
23925
23926         * lib/memrchr.c: Include <config.h> before any system include file.
23927
23928 2000-11-30  Jim Meyering  <meyering@lucent.com>
23929
23930         * m4/jm-macros.m4 (jm_MACROS): Check for stdint.h.
23931
23932 2000-11-30  Jim Meyering  <meyering@lucent.com>
23933
23934         * m4/getloadavg.m4: s/ifval/m4_ifval/ to accommodate new autoconf.
23935
23936 2000-11-29  Paul Eggert  <eggert@twinsun.com>
23937
23938         * lib/dirname.c (dir_name_r): Fix typo: int -> size_t.
23939
23940 2000-11-26  Jim Meyering  <meyering@lucent.com>
23941
23942         * lib/memcoll.c: Include sys/types.h.  From Werner Almesberger.
23943
23944 2000-11-22  Paul Eggert  <eggert@twinsun.com>
23945
23946         * lib/strftime.c (my_strftime): Do not invoke mbrlen with a
23947         size of (size_t) -1; it's not portable.
23948
23949 2000-11-17  Jim Meyering  <meyering@lucent.com>
23950
23951         * lib/strstr.c: Update from GNU libc.
23952
23953 2000-11-17  Akim Demaille  <akim@epita.fr>
23954
23955         * lib/obstack.h: Formatting changes.
23956         (obstack_grow, obstack_grow0): Don't cast WHERE at all: that would
23957         prevent type checking.
23958         (obstack_ptr_grow, obstack_ptr_grow_fast): When assigning, don't
23959         cast the value to (void *): assigning a `foo *' to a `void *'
23960         variable is valid.
23961         (obstack_int_grow, obstack_int_grow_fast): Don't cast AINT to int.
23962
23963 2000-11-16  Jim Meyering  <meyering@lucent.com>
23964
23965         * lib/strverscmp.c: Incorporate weak-alias-related changes from glibc.
23966
23967 2000-11-11  Jim Meyering  <meyering@lucent.com>
23968
23969         * lib/error.c: Add a couple #includes, merging from GNU libc version.
23970
23971 2000-11-10  Jim Meyering  <meyering@lucent.com>
23972
23973         * lib/obstack.h: Update from GNU libc.
23974         * lib/obstack.c: Likewise.
23975
23976 2000-11-08  Bruno Haible  <haible@clisp.cons.org>
23977
23978         * m4/jm-macros.m4 (jm_MACROS): Add test for wcrtomb.
23979
23980 2000-11-06  Paul Eggert  <eggert@twinsun.com>
23981
23982         * lib/getusershell.c (setusershell): Use rewind rather than
23983         fseek/fseeko, to avoid configuration hassles with fseeko.
23984         Don't bother opening SHELLS_FILE if shellstream is NULL;
23985         it's not necessary.
23986
23987 2000-11-05  Jim Meyering  <meyering@lucent.com>
23988
23989         * lib/makepath.h (make_dir): Declare.
23990         * lib/makepath.c (make_dir): Remove `static' attribute.
23991         Tweak a comment.
23992
23993 2000-11-04  Jim Meyering  <meyering@lucent.com>
23994
23995         * m4/regex.m4: Use the `m4_' prefix on `syscmd' and `m4_sysval'.
23996
23997 2000-11-04  Alexandre Duret-Lutz  <duret_g@epita.fr>
23998
23999         * lib/hash.c (hash_get_next): Fix a thinko:  when ENTRY is the
24000         last one in a bucket, advance to the next bucket.
24001
24002 2000-11-02  Vesselin Atanasov  <vesselin@bgnet.bg>
24003
24004         * lib/fnmatch.c: Do not comment out all the code if we are using
24005         the GNU C library, because in some cases we are replacing buggy
24006         code in the GNU C library itself.
24007
24008 2000-10-30  Stefan Monnier  <monnier@cs.yale.edu>
24009
24010         * regex.c (re_iswctype, re_wctype_to_bit): Fix braino.
24011         (regex_compile): Catch bogus \(\1\).
24012
24013 2000-10-30  Paul Eggert  <eggert@twinsun.com>
24014
24015         * lib/fnmatch.c (FOLD): Do not assume that characters are unsigned.
24016         (fnmatch): Fix some FNM_FILE_NAME and FNM_LEADING_DIR bugs,
24017         e.g. fnmatch("d*/*1", "d/s/1", FNM_FILE_NAME) incorrectly yielded zero.
24018
24019 2000-10-30  Paul Eggert  <eggert@twinsun.com>
24020
24021         * lib/error.h, getline.h, modechange.h:
24022         Remove "2000" from Copyright line, as the file hasn't been
24023         changed this year other than in the copyright notice.
24024
24025         * lib/xalloc.h: Add "2000" to Copyright line, as this file
24026         was changed this year.
24027
24028 2000-10-29  Jim Meyering  <meyering@lucent.com>
24029
24030         * m4/fsusage.m4: s/AC_SHELL_IFELSE/AS_IFELSE/ to match autoconf
24031         renaming.
24032         * m4/ls-mntd-fs.m4: Likewise
24033
24034 2000-10-29  Jim Meyering  <meyering@lucent.com>
24035
24036         * lib/xstat.in: Fix grammar in comment.
24037
24038 2000-10-29  Greg Louis  <glouis@dynamicro.on.ca>
24039
24040         * lib/regex.h (__restrict_arr): Move definition out of #ifndef block.
24041         Required because egcs-2.91.66 (aka 1.1.2) defines __restrict, but
24042         doesn't define __restrict_arr.
24043
24044 2000-10-28  Jim Meyering  <meyering@lucent.com>
24045
24046         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_MEMCHR.
24047         (jm_PREREQ_MEMCHR): New function.
24048
24049 2000-10-28  Jim Meyering  <meyering@lucent.com>
24050
24051         * lib/memchr.c: Update from libc.
24052         Adjust for portability:
24053         [HAVE_STDLIB_H]: Include stdlib.h.
24054         [HAVE_BP_SYM_H || _LIBC]: Guard inclusion of bp-sym.h.
24055         Undef __memchr, too.
24056         [!weak_alias]: Define __memchr to memchr.
24057
24058         * lib/regex.c: Update from libc.
24059         * lib/regex.h: Likewise.
24060         * lib/getopt1.c: Likewise.
24061         * lib/memcmp.c: Likewise.
24062
24063         * lib/getusershell.c (setusershell) [HAVE_FSEEKO]: Use fseeko.
24064         Avoid using fseek, when possible -- it's broken by design.
24065         Patch by Ulrich Drepper.
24066
24067 2000-10-27  Stefan Monnier  <monnier@cs.yale.edu>
24068
24069         * regex.c (POP_FAILURE_REG_OR_COUNT, re_match_2_internal)
24070         (re_match_2_internal, re_match_2_internal, re_match_2_internal):
24071         Giving in to popular pressure to shut up the compiler with casts.
24072
24073 2000-10-26  Jim Meyering  <meyering@lucent.com>
24074
24075         * lib/strftime.c: Update from libc.
24076
24077 2000-10-25  Stefan Monnier  <monnier@cs.yale.edu>
24078
24079         * regex.c: More `unsigned char' -> `re_char' changes.
24080         Also change several `int' into `re_wchar_t'.
24081         (PATTERN_STACK_EMPTY, PUSH_PATTERN_OP, POP_PATTERN_OP): Remove.
24082         (PUSH_FAILURE_POINTER): Don't cast any more.
24083         (POP_FAILURE_REG_OR_COUNT): Remove the cast that strips `const'.
24084         We want GCC to complain, since this piece of code makes
24085         re_match non-reentrant, which *should* be fixed.
24086         (GET_BUFFER_SPACE): Use size_t rather than unsigned long.
24087         (EXTEND_BUFFER): Use RETALLOC.
24088         (SET_LIST_BIT): Don't cast.
24089         (re_wchar_t): New type.
24090         (re_iswctype, re_wctype_to_bit): Make it crystal clear to GCC
24091         that those two functions will always properly return.
24092         (IMMEDIATE_QUIT_CHECK): Cast to void.
24093         (analyse_first): Use recursion rather than an explicit stack.
24094         (re_compile_fastmap): Can't fail anymore.
24095         (re_search_2): Don't check re_compile_fastmap for failure.
24096         (PUSH_NUMBER): Renamed from PUSH_FAILURE_COUNT.
24097         Now also sets the new value (passed in a new argument).
24098         (re_match_2_internal): Use it.
24099         Also, use a new var `reg' of type size_t when looping through regs
24100         rather than reuse the inappropriate `mcnt'.
24101
24102 2000-10-25  Jim Meyering  <meyering@lucent.com>
24103
24104         * lib/obstack.c: Update from libc.
24105
24106 2000-10-24  Kenichi Handa  <handa@etl.go.jp>
24107
24108         * regex.c (regex_compile): Change the way of handling a range from
24109         a char less than 256 to a char not less than 256.
24110
24111 2000-10-24  Andrew Innes  <andrewi@gnu.org>
24112
24113         * regex.c (IMMEDIATE_QUIT_CHECK): New macro, which does QUIT on
24114         NT-Emacs only.
24115         (re_match_2_internal): Use IMMEDIATE_QUIT_CHECK instead of QUIT,
24116         so that re_search functions only quit when callers expect them to.
24117
24118 2000-10-23  Jim Meyering  <meyering@lucent.com>
24119
24120         * lib/hard-locale.c (hard_locale): Revert last change -- it was simply
24121         wrong.  That set_locale call must not have any side effects.
24122         From Paul Eggert.
24123
24124 2000-10-22  Jim Meyering  <meyering@lucent.com>
24125
24126         * lib/md5.c (md5_process_block) [OP]: Use `rol', not CYCLIC.
24127         [CYCLIC]: Remove now-unused definition.
24128
24129         * lib/save-cwd.c (O_DIRECTORY): Define, if needed.
24130         (save_cwd) [HAVE_FCHDIR]: Use O_DIRECTORY when opening ".".
24131         Suggestion from Ulrich Drepper.
24132
24133 2000-10-21  Jim Meyering  <meyering@lucent.com>
24134
24135         * m4/check-decl.m4 (jm_CHECK_DECLS): Also check for memrchr.
24136         * m4/prereq.m4 (jm_PREREQ_DIRNAME): New macro.
24137         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memrchr.
24138
24139 2000-10-21  Jim Meyering  <meyering@lucent.com>
24140
24141         * lib/dirname.c (memrchr): Declare if necessary.
24142         (dir_name): Remove the restriction that there be no
24143         trailing slashes.  Now, this code skips past them, effectively
24144         ignoring them.
24145         [TEST_DIRNAME] (main): New unit tests.
24146
24147         * lib/memrchr.c: New file from GNU libc.
24148         Undef __memrchr, too.
24149         [!weak_alias]: Define __memrchr to memrchr.
24150         Guard weak_alias use with `#ifdef weak_alias'.
24151
24152 2000-10-21  Jim Meyering  <meyering@lucent.com>
24153
24154         * lib/dirname.c (dir_name_r): New function, factored out of dir_name.
24155         (dir_name): Use dir_name_r.
24156         * lib/dirname.h (dir_name_r): Declare it.
24157
24158 2000-10-17  Jim Meyering  <meyering@lucent.com>
24159
24160         * lib/quote.h (PARAMS): Define and use.
24161         Reported by Akim Demaille.
24162
24163         * lib/getopt.c: Update from libc.
24164
24165 2000-10-16  Jim Meyering  <meyering@lucent.com>
24166
24167         * lib/hard-locale.c (hard_locale): Use "", not 0 as 2nd arg to
24168         setlocale.
24169         From Jan Fedak.
24170
24171 2000-10-15  Stefan Monnier  <monnier@cs.yale.edu>
24172
24173         * regex.c (WIDE_CHAR_SUPPORT): Define if _LIBC as well.
24174
24175 2000-09-25  Jim Meyering  <meyering@lucent.com>
24176
24177         * lib/md5.h (rol): Define (from GnuPG).
24178
24179         * lib/sha.c: Give credit (GnuPG) where due.
24180         (M): Use rol rather than open-coding it.
24181         Add a FIXME comment.
24182
24183 2000-09-21  Jim Meyering  <meyering@lucent.com>
24184
24185         * lib/userspec.c (parse_user_spec): Remove debugging printf I'd added.
24186         Reported by Michael Stone.
24187
24188 2000-09-20  Jim Meyering  <meyering@lucent.com>
24189
24190         * lib/Makefile.am (libfetish_a_SOURCES): Add sha.c.
24191         (noinst_HEADERS): Add sha.h.
24192         Based on code from Scott G. Miller and from GnuPG.
24193
24194 2000-09-18  Jim Meyering  <meyering@lucent.com>
24195
24196         * m4/getloadavg.m4 (AC_FUNC_GETLOADAVG): Restore the initial value of
24197         LIBS. Otherwise, everyone ends up linking with -lelf for some
24198         configurations.
24199         Reported by Mike Stone.
24200
24201 2000-09-15  Jim Meyering  <meyering@lucent.com>
24202
24203         * lib/regex.c: Update from libc.
24204
24205 2000-09-10  Jim Meyering  <meyering@lucent.com>
24206
24207         * lib/getopt.c (_getopt_internal): Update from glibc.
24208
24209 2000-09-09  Jim Meyering  <meyering@lucent.com>
24210
24211         * lib/quotearg.c: Rename ISASCII to IN_CTYPE_DOMAIN, so people don't
24212         think it should be used as a general replacement for isascii.
24213         * lib/fnmatch.c: Likewise.
24214         * lib/mbswidth.c: Likewise
24215         * lib/regex.c: Likewise.
24216
24217         Don't use atoi.
24218         * lib/userspec.c: Include sys/param.h and limits.h.
24219         Include xstrtol.h.
24220         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Define.
24221         (UID_T_MAX, GID_T_MAX, MAXUID, MAXGID): Define.
24222         (parse_user_spec): Use xstrtoul, not atoi when converting numeric
24223         UID, GID.  Check range.
24224
24225 2000-09-06  Jim Meyering  <meyering@lucent.com>
24226
24227         * lib/getopt.c (_getopt_internal): Update from glibc.
24228
24229 2000-08-30  Jim Meyering  <meyering@lucent.com>
24230
24231         * lib/strftime.c: Merge in changes from GNU libc.
24232
24233 2000-08-26  Jim Meyering  <meyering@lucent.com>
24234
24235         * m4/jm-macros.m4: Use jm_FUNC_FPENDING.
24236         * m4/fpending.m4: New file.
24237
24238 2000-08-26  Jim Meyering  <meyering@lucent.com>
24239
24240         * lib/closeout.c: Include "__fpending.h".
24241         (close_stdout_status): Return right away if there's nothing to flush.
24242
24243         * lib/Makefile.am (noinst_HEADERS): Add __fpending.h.
24244         * lib/__fpending.c: New file.
24245         * lib/__fpending.h: New file.
24246
24247 2000-08-20  Jim Meyering  <meyering@lucent.com>
24248
24249         * m4/check-decl.m4: Include utmp.h `#if HAVE_UTMP_H', rather than
24250         `#if !HAVE_UTMPX_H'.  The latter would lose on systems with neither
24251         utmp.h nor utmpx.h.  Reported by Eli Zaretskii.
24252
24253 2000-08-11  J. David Anglin  <dave@hiauly1.hia.nrc.ca>
24254
24255         Improve fileutils installation on systems where running
24256         programs (like install) can't be unlinked.
24257         * m4/unlink-busy.m4 (jm_FUNC_UNLINK_BUSY_TEXT): New file/macro.
24258         * m4/jm-macros.m4: Use jm_FUNC_UNLINK_BUSY_TEXT.
24259
24260 2000-08-07  Paul Eggert  <eggert@twinsun.com>
24261
24262         Standardize on "memory exhausted" instead of "Memory exhausted"
24263         or "virtual memory exhausted".
24264         * lib/obstack.c (print_and_abort): Use "memory exhausted", not
24265         "virtual memory exhausted".
24266         * lib/same.c (same_name): Invoke xalloc_die instead of printing
24267         our own message.
24268         * lib/userspec.c (parse_user_spec): Likewise.
24269         * lib/bumpalloc.h: comment fix
24270         * lib/same.c, userspec.c: Include xalloc.h.
24271
24272         * lib/xalloc.h (xalloc_msg_memory_exhausted): Now char const[],
24273         not char *const and pointing to a constant array.
24274         * lib/xmalloc.c (xalloc_msg_memory_exhausted): Likewise.
24275         (xrealloc): Comment fix.
24276
24277         * lib/userspec.c (parse_user_spec):
24278         Don't translate a message until just before returning,
24279         to avoid unnecessary translation.
24280
24281 2000-08-07  Jim Meyering  <meyering@lucent.com>
24282
24283         * lib/addext.c, argmatch.c, argmatch.h, backupfile.h, bumpalloc.h,
24284         chown.c, diacrit.h, dirname.h, dup2.c, exclude.h, fileblocks.c,
24285         fnmatch.c, fnmatch.h, fsusage.c, fsusage.h, getdate.h,
24286         getgroups.c, gethostname.c, getopt.h, group-member.c,
24287         hard-locale.c, hash.h, isdir.c, lchown.c, linebuffer.c,
24288         linebuffer.h, long-options.h, malloc.c, md5.c, md5.h, memchr.c,
24289         memcmp.c, memcoll.c, memset.c, mktime.c, modechange.h, obstack.h,
24290         pathmax.h, realloc.c, rmdir.c, safe-read.c, save-cwd.c, stime.c,
24291         stpcpy.c, strcasecmp.c, strcspn.c, strdup.c, stripslash.c,
24292         strstr.c, strtod.c, strtol.c, strtoul.c, strtoull.c, strtoumax.c,
24293         utime.c, version-etc.h, xalloc.h, xstrdup.c, xstrtoumax.c,
24294         yesno.c: Back out Copyright date changes for each file with no change
24295         this year.  This eases coordination with other programs using the same
24296         source code modules.  From Paul Eggert.
24297
24298 2000-08-06  Paul Eggert  <eggert@twinsun.com>
24299
24300         * m4/mbstate_t.m4 (AC_MBSTATE_T): Define mbstate_t to be int,
24301         not char, for compatibility with glibc 2.1.3 strftime.c.
24302
24303 2000-08-03  Greg McGary  <greg@mcgary.org>
24304
24305         * lib/regex.c (SET_HIGH_BOUND, MOVE_BUFFER_POINTER,
24306         ELSE_EXTEND_BUFFER_HIGH_BOUND): New macros.
24307         (EXTEND_BUFFER): Use them.
24308
24309 2000-08-01  Jim Meyering  <meyering@lucent.com>
24310
24311         * lib/dirname.c (ISSLASH): Define.
24312         (BACKSLASH_IS_PATH_SEPARATOR): Define.
24313         (dir_name) [BACKSLASH_IS_PATH_SEPARATOR]: Handle the case in which
24314         both `\' and `/' may be use as path separators.
24315         Based on a patch from Prashant TR.
24316
24317 2000-07-31  Paul Eggert  <eggert@twinsun.com>
24318
24319         * lib/quotearg.c (quotearg_n_options): Don't make the initial
24320         slot vector a constant, since it might get modified.
24321
24322 2000-07-31  Jim Meyering  <meyering@lucent.com>
24323
24324         * lib/xmalloc.c: Use `virtual memory exhausted', not
24325         `Memory exhausted'.
24326         * lib/obstack.c (print_and_abort): Likewise.
24327
24328 2000-07-30  Paul Eggert  <eggert@twinsun.com>
24329
24330         * lib/quotearg.c (quotearg_n_options): Preallocate a slot 0
24331         buffer, so that the caller can always quote one small
24332         component of a "memory exhausted" message in slot 0.
24333         From a suggestion by Jim Meyering.
24334
24335 2000-07-30  Jim Meyering  <meyering@lucent.com>
24336
24337         * lib/makepath.c (make_path): Quote the other instance, too.
24338
24339         * lib/quotearg.c (N_STATIC_SLOTVECS): Define.
24340         (STATIC_BUF_SIZE): Define.
24341         (quotearg_n_options): Use only statically allocated storage when
24342         N < N_STATIC_SLOTVECS and the length of the quoted result is smaller
24343         than STATIC_BUF_SIZE.
24344
24345 2000-07-29  Jim Meyering  <meyering@lucent.com>
24346
24347         * lib/diacrit.c (diacrit_diac): Use __MSDOS__ in favor of MSDOS.
24348         * lib/dirname.c (dir_name): Likewise.
24349
24350         * lib/basename.c (base_name): Use ISSLASH rather than comparing against
24351         `/'.
24352
24353         * lib/dirname.c (dir_name) [MSDOS]: Declare `lim' to be const.
24354         (dir_name): Assert that there are no trailing slashes.
24355
24356 2000-07-29  Bruno Haible  <haible@clisp.cons.org>
24357
24358         * lib/mbswidth.h (mbswidth): Add a flags argument.
24359         (mbswidth): New declaration.
24360         (MBSW_ACCEPT_INVALID, MBSW_ACCEPT_UNPRINTABLE): New macros.
24361         * lib/mbswidth.c (mbswidth): Add a flags argument.
24362         (mbsnwidth): New function.
24363
24364 2000-07-24  Jim Meyering  <meyering@lucent.com>
24365
24366         * lib/mbswidth.c: Remove useless #else.  From Bruno Haible.
24367
24368 2000-07-23  Paul Eggert  <eggert@twinsun.com>
24369
24370         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Check for wcwidth declaration.
24371
24372 2000-07-23  Paul Eggert  <eggert@twinsun.com>
24373
24374         * lib/quotearg.c: Streamline by invoking multibyte code only if needed.
24375         <wchar.h>: Include only if HAVE_MBRTOWC && 1 < MB_LEN_MAX.
24376         (MB_CUR_MAX): Redefine to 1 if ! (HAVE_MBRTOWC && 1 < MB_LEN_MAX).
24377         (quotearg_buffer_restyled): If a unibyte locale, don't bother to
24378         invoke multibyte primitives.
24379
24380 2000-07-23  Paul Eggert  <eggert@twinsun.com>
24381
24382         * lib/quotearg.c:
24383         Include <wchar.h> even if ! (HAVE_MBRTOWC && 1 < MB_LEN_MAX),
24384         so that mbstate_t is always defined.
24385
24386         Do not inspect MB_LEN_MAX, since it's incorrectly defined to
24387         be 1 in at least one GCC installation, and this configuration
24388         error is likely to be common.  Ignoring MB_LEN_MAX hurts
24389         performance on hosts that have mbrtowc but have only unibyte
24390         locales, but I assume these hosts are rare.
24391
24392 2000-07-23  Paul Eggert  <eggert@twinsun.com>
24393
24394         * lib/mbswidth.c (_XOPEN_SOURCE):
24395         Don't define; this causes problems on Solaris 7.
24396         (wcwidth) [!HAVE_DECL_WCWIDTH]: Declare.
24397
24398 2000-07-23  Jim Meyering  <meyering@lucent.com>
24399
24400         * m4/check-decl.m4 (jm_CHECK_DECLS): Check for declarations of these,
24401         too: getgrgid, getpwuid, getuid.
24402
24403 2000-07-23  Jim Meyering  <meyering@lucent.com>
24404
24405         * lib/basename.c (base_name): Add an assertion.
24406
24407 2000-07-23  Bruno Haible  <haible@clisp.cons.org>
24408
24409         * lib/quotearg.c: When the system forces us to redefine mbstate_t,
24410         shadow its mbsinit function.
24411
24412 2000-07-17  Bruno Haible  <haible@clisp.cons.org>
24413
24414         * lib/mbswidth.h: New file.
24415         * lib/mbswidth.c: New file.
24416         * lib/Makefile.am (libfetish_a_SOURCES): Add mbswidth.c.
24417         (noinst_HEADERS): Add mbswidth.h.
24418
24419 2000-07-17  Bruno Haible  <haible@clisp.cons.org>
24420
24421         * lib/config.charset: Add support for FreeBSD. Improve support for
24422         HP-UX and IRIX 6.
24423
24424 2000-07-16  Bruno Haible  <haible@clisp.cons.org>
24425
24426         * m4/mbswidth.m4: New file.
24427         * m4/prereq.m4 (jm_PREREQ): Call jm_PREREQ_MBSWIDTH.
24428
24429 2000-07-15  Jim Meyering  <meyering@lucent.com>
24430
24431         * lib/makepath.c: Include quote.h.
24432         (make_path): Convert "`%s'" in format strings to "%s", and wrap each
24433         corresponding argument in a `quote (...)' call.
24434         Give better diagnostics.
24435
24436         * lib/Makefile.am (libfetish_a_SOURCES): Add quote.c.
24437         (noinst_HEADERS): Add quote.h.
24438
24439         * lib/quote.c (quote, quote_n): New file.  Two functions taken verbatim
24440         from tar's src/misc.c.
24441         * lib/quote.h: New file.  Prototypes for same.
24442
24443 2000-07-14  Paul Eggert  <eggert@twinsun.com>
24444
24445         From a suggestion by Bruno Haible.
24446         * lib/quotearg.c (mbrtowc): Do not use HAVE_WCHAR_H in the definition.
24447         Use defined mbstate_t, not HAVE_MBSTATE_T_OBJECT,
24448         to decide whether to define the BeOS workaround macro;
24449         this adjusts to the change to AC_MBSTATE_T.
24450
24451 2000-07-14  Jim Meyering  <meyering@lucent.com>
24452
24453         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Require
24454         jm_AC_TYPE_UINTMAX_T.
24455
24456 2000-07-13  Paul Eggert  <eggert@twinsun.com>
24457
24458         * lib/quotearg.h (enum quoting style): New enum clocale_quoting_style.
24459
24460         * lib/quotearg.c (quoting_style_args, quoting_style_vals,
24461         quotearg_buffer_restyled): Add support for
24462         clocale_quoting_style.  Undo previous change to
24463         locale_quoting_style behavior, and undo the "{LEFT QUOTATION MARK}"
24464         and "{RIGHT QUOTATION MARK}" msgids.
24465
24466 2000-07-10  Paul Eggert  <eggert@twinsun.com>
24467
24468         From a suggestion by Bruno Haible.
24469         * m4/mbstate_t.m4 (AC_MBSTATE_T):
24470         Renamed from AC_MBSTATE_T_OBJECT.  All uses changed.
24471         Change from a two-part test, which defines both HAVE_MBSTATE_T_OBJECT
24472         and mbstate_t, to a single-part test that simply defines mbstate_t.
24473         * m4/prereq.m4 (jm_PREREQ_QUOTEARG):
24474         s/AC_MBSTATE_T_OBJECT/AC_MBSTATE_T/.
24475
24476 2000-07-10  Jim Meyering  <meyering@lucent.com>
24477
24478         * m4/strerror_r.m4: Mirror the correction made in autoconf.
24479
24480         * m4/gnu-source.m4: Output to confdefs.h directly.
24481         Suggestion from Akim Demaille.
24482
24483 2000-07-09  Paul Eggert  <eggert@twinsun.com>
24484
24485         The old behavior of quoting `like this' doesn't look good with
24486         newer, ISO-style fonts.  See:
24487         http://www.cl.cam.ac.uk/~mgk25/ucs/quotes.html
24488
24489         Instead, quote "like this" by default.  Let the translator
24490         tailor the locale-specific quoting behavior by providing
24491         translations for {LEFT QUOTATION MARK} and {RIGHT QUOTATION MARK}.
24492
24493         * lib/quotearg.c (N_): New macro.
24494         (gettext_default): New function.
24495         (quotearg_buffer_restyled): Use
24496         gettext_default ("{LEFT QUOTATION MARK}", "\"") for left quote, and
24497         gettext_default ("{RIGHT QUOTATION MARK}", "\"") for right quote.
24498
24499 2000-07-09  Jim Meyering  <meyering@lucent.com>
24500
24501         * m4/jm-macros.m4 (jm_MACROS): Add a test to see if -lm is required
24502         to link seq.  If so, set SEQ_LIBM to -lm.  From Bruno Haible.
24503
24504         * m4/gnu-source.m4 (AC__GNU_SOURCE): New file/macro.
24505         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require it.
24506
24507 2000-07-09  Jim Meyering  <meyering@lucent.com>
24508
24509         * lib/Most files: Update copyright dates to include 2000.
24510
24511 2000-07-08  Jim Meyering  <meyering@lucent.com>
24512
24513         * lib/xgethostname.c (ENAMETOOLONG): Define to an unlikely value
24514         if not defined.
24515         (xgethostname): Remove now-unnecessary #ifdef.
24516         Move declaration of `err' into loop where it's used.
24517
24518 2000-07-05  Paul Eggert  <eggert@twinsun.com>
24519         and Bruno Haible  <haible@clisp.cons.org>
24520
24521         * m4/mbstate_t.m4 (AC_MBSTATE_T_OBJECT): Test for mbstate_t
24522         only if the test for an object-type mbstate_t fails.  This
24523         prevents us from mistakenly reporting that mbstate_t is a
24524         system object type after we "#define mbstate_t int" to work
24525         around its lack.
24526
24527 2000-07-05  Paul Eggert  <eggert@twinsun.com>
24528         and Bruno Haible  <haible@clisp.cons.org>
24529
24530         * lib/quotearg.c (mbrtowc): Declare returned type, since BeOS doesn't.
24531
24532 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
24533
24534         * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Pass a reasonably large buffer
24535         to strerror_r.
24536         Include <ctype.h> for use of isalpha.
24537
24538 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
24539
24540         * lib/xgethostname.c (xgethostname): Protect against the SunOS 5.5 bug
24541         by allocating a larger buffer. Test the gethostname return value for
24542         being >= 0, not == 0, for BeOS.  Don't exhaust memory if gethostname
24543         returns an error and ENAMETOOLONG isn't defined.
24544
24545 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
24546
24547         * lib/quotearg.c (struct quoting_options): Simplify quote_these_too
24548         dimension.
24549
24550 2000-07-04  Jim Meyering  <meyering@lucent.com>
24551
24552         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Use plain old `echo' instead
24553         of the deprecated AC_CHECKING.
24554
24555 2000-07-04  Jim Meyering  <meyering@lucent.com>
24556
24557         * lib/strndup.c: [!HAVE_DECL_STRNLEN]: Declare strnlen.
24558         Reported by Bruno Haible.
24559
24560 2000-07-04  Jim Meyering  <meyering@lucent.com>
24561
24562         * lib/quotearg.c: Make inclusion of <wchar.h> independent of whether
24563         HAVE_MBRTOWC is set.  Required at least for irix-5.6, which
24564         lacks mbrtowc.
24565
24566 2000-07-03  Paul Eggert  <eggert@twinsun.com>
24567
24568         * m4/mbstate_t.m4 (AC_MBSTATE_T_OBJECT): Port to autoconf 2.13.
24569         Add AC_CHECK_HEADERS(stdlib.h), since we use HAVE_STDLIB_H.
24570
24571 2000-07-03  Paul Eggert  <eggert@twinsun.com>
24572         and Bruno Haible  <haible@clisp.cons.org>
24573
24574         * lib/quotearg.c (mbrtowc):
24575         Assign to *pwc, and return 1 only if result is nonzero.
24576         (iswprint): Use ISPRINT when substituting our own mbrtowc.
24577
24578 2000-07-03  Jim Meyering  <meyering@lucent.com>
24579
24580         * m4/check-decl.m4 (AC_CHECK_DECLS): Add strnlen.
24581
24582 2000-07-03  Jim Meyering  <meyering@lucent.com>
24583
24584         * lib/readutmp.h: [HAVE_UTMPX_H]: Include <utmp.h> if HAVE_UTMP_H.
24585         This is necessary to get a definition of e.g., UTMP_FILE on
24586         HP-UX 10.20.
24587         From Bob Proulx.
24588
24589 2000-07-02  Jim Meyering  <meyering@lucent.com>
24590
24591         * m4/mbstate_t.m4: Also define mbstate_t, if necessary.
24592
24593         * m4/chown.m4: Replace each use of AC_SUBST(LIBOBJS)/LIBOBJS=... with
24594         AC_LIBOBJ(function_name).
24595         * m4/chown.m4: Likewise.
24596         * m4/fnmatch.m4: Likewise.
24597         * m4/ftruncate.m4: Likewise.
24598         * m4/getgroups.m4: Likewise.
24599         * m4/getline.m4: Likewise.
24600         * m4/group-member.m4: Likewise.
24601         * m4/jm-macros.m4: Likewise.
24602         * m4/lstat.m4: Likewise.
24603         * m4/malloc.m4: Likewise.
24604         * m4/memcmp.m4: Likewise.
24605         * m4/nanosleep.m4: Likewise.
24606         * m4/putenv.m4: Likewise.
24607         * m4/realloc.m4: Likewise.
24608         * m4/regex.m4: Likewise.
24609         * m4/stat.m4: Likewise.
24610         * m4/strftime.m4: Likewise.
24611
24612 2000-07-02  Jim Meyering  <meyering@lucent.com>
24613
24614         * lib/quotearg.c (mbstate_t): Don't define here.
24615
24616 2000-07-02  Jim Meyering  <meyering@lucent.com>
24617
24618         * lib/nanosleep.c (SIGCONT): Define if not already defined.
24619
24620 2000-07-01  Jim Meyering  <meyering@lucent.com>
24621
24622         * m4/uptime.m4: Put double quotes around use of $cross_compiling.
24623
24624 2000-07-01  Jim Meyering  <meyering@lucent.com>
24625
24626         * m4/ls-mntd-fs.m4: Remove a `FIXME' comment and fix the associated
24627         problem.
24628
24629 2000-07-01  Bruno Haible  <haible@clisp.cons.org>
24630
24631         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Rename BeOS specific
24632         macro from MOUNTED_NEXT_DEV to MOUNTED_FS_STAT_DEV.
24633
24634 2000-07-01  Bruno Haible  <haible@clisp.cons.org>
24635
24636         * lib/mountlist.c: Use MOUNTED_FS_STAT_DEV instead of MOUNTED_NEXT_DEV,
24637         per change in ../m4/ls-mntd-fs.m4.
24638         (read_filesystem_list): Ignore symbolic links.
24639
24640 2000-06-29  Jim Meyering  <meyering@lucent.com>
24641
24642         * lib/same.c: Include <string.h> or <strings.h>, as appropriate,
24643         for declaration of strcmp.
24644
24645         * lib/long-options.c: Include <stdlib.h>, for declaration of exit.
24646
24647         * lib/mountlist.c (fsp_to_string) [HAVE_F_FSTYPENAME_IN_STATFS]:
24648         Avoid warning by casting result to `char *' to remove `const'.
24649
24650 2000-06-28  Jim Meyering  <meyering@lucent.com>
24651
24652         * m4/mbstate_t.m4: Use stdlib.h, not stdio.h.  The latter is not
24653         included by quotearg.c, for which we perform this test.  From
24654         Bruno Haible.
24655
24656 2000-06-27  Bruno Haible  <haible@clisp.cons.org>
24657
24658         * m4/check-decl.m4 (_jm_DECL_HEADERS): Check for utmp.h as well.
24659         * m4/prereq.m4 (jm_PREREQ_READUTMP): Likewise. If either <utmp.h> or
24660         <utmpx.h> exists, put readutmp.o into LIBOBJS.
24661
24662 2000-06-27  Bruno Haible  <haible@clisp.cons.org>
24663
24664         * lib/Makefile.am (libfetish_a_SOURCES): Remove readutmp.c.
24665
24666 2000-06-26  Paul Eggert  <eggert@twinsun.com>
24667
24668         savedir now sets errno on failure and invokes xmalloc to get memory.
24669         Fix a couple of other minor bugs while we're at it.
24670
24671         * lib/savedir.c (<unistd.h>): Do not include; there's no need.
24672         (NAMLEN): Remove macro.
24673         (malloc, realloc): Remove decls.
24674         (stpcpy): Likewise.
24675         ("xalloc.h"): Include.
24676         (NAME_SIZE_DEFAULT): New macro.
24677         (savedir): Use xmalloc / xrealloc to allocate memory.
24678         Use NAME_SIZE_DEFAULT if name_size is negative or overflows to zero.
24679         Skip "" directory entries.
24680         Use strlen to calculate directory entry length, since the old method
24681         is rarely used these days and isn't worth supporting.
24682         Don't use a pointer after freeing it.
24683         Check for integer overflow when calculating allocation size.
24684         Use memcpy to copy entries, instead of stpcpy.
24685         Set errno properly when returning NULL.
24686         Check for readdir error.
24687
24688 2000-06-26  Jim Meyering  <meyering@lucent.com>
24689
24690         * lib/posixtm.c [HAVE_STDLIB_H]: Include stdlib.h, for decl of abort.
24691
24692 2000-06-25  Jim Meyering  <meyering@lucent.com>
24693
24694         * m4/mbstate_t.m4: Include stdio.h before wchar.h to work around
24695         Linux header bug when _XOPEN_SOURCE is defined to 500.
24696
24697 2000-06-25  Bruno Haible  <haible@clisp.cons.org>
24698
24699         * lib/unicodeio.c (print_unicode_char): Work around ansi2knr
24700         deficiency.
24701
24702 2000-06-25  Bruno Haible  <haible@clisp.cons.org>
24703
24704         * lib/getusershell.c (xmalloc, xrealloc): Remove functions.
24705         Include xalloc.h.
24706         Don't include <stdlib.h>.  Don't declare malloc, realloc.
24707
24708 2000-06-24  Jim Meyering  <meyering@lucent.com>
24709
24710         * m4/strerror_r.m4: Revive this file -- to try out an experimental
24711         version of AC_FUNC_STRERROR_R that may work even on BeOS, a system
24712         for which strerror does return char*, but which lacks a conveniently
24713         accessible declaration of the function.  If the compile-test says
24714         strerror_r doesn't work, then resort to a `run'-test that works on
24715         BeOS and segfaults on DEC Unix.
24716
24717 2000-06-24  Jim Meyering  <meyering@lucent.com>
24718
24719         * lib/error.c [!HAVE_DECL_STRERROR_R]: Declare strerror_r.
24720
24721 2000-06-23  Paul Eggert  <eggert@twinsun.com>
24722
24723         * m4/mbstate_t.m4: New file, defining AC_MBSTATE_T_OBJECT.
24724         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Use it.  Add check for iswprint.
24725
24726 2000-06-23  Paul Eggert  <eggert@twinsun.com>
24727
24728         * lib/quotearg.c: Include <wctype.h> after <wchar.h>, for Solaris 2.5.
24729         (mbrtowc, mbstate_t): Define substitutes if
24730         HAVE_MBRTOWC && HAVE_WCHAR_H && !HAVE_MBSTATE_T_OBJECT.
24731         (iswprint): Define to 1 if !defined iswprint && !HAVE_ISWPRINT,
24732         not if ! (HAVE_MBRTOWC && HAVE_WCHAR_H).
24733
24734 2000-06-23  Jim Meyering  <meyering@lucent.com>
24735
24736         * m4/afs.m4: Add missing AC_MSG_RESULT.
24737         Reported by Bruno Haible.
24738
24739         * m4/fsusage.m4: s/AC_MSG_CHECKING/AC_CHECKING/.
24740         Suggestion from Bruno Haible.
24741
24742 2000-06-23  Jim Meyering  <meyering@lucent.com>
24743
24744         * lib/getpass.c: New file, from Bruno Haible.  Required for BeOS.
24745
24746 2000-06-21  Jim Meyering  <meyering@lucent.com>
24747
24748         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add getpass.
24749
24750 2000-06-21  Jim Meyering  <meyering@lucent.com>
24751
24752         * lib/Makefile.am (libfetish_a_SOURCES): Add getstr.c.
24753         (noinst_HEADERS): Add getstr.h.
24754
24755         * lib/getline.c (getstr): Move into a separate file.
24756         * lib/getstr.c (getstr): New file, extracted from getline.c, with
24757         the following changes: new parameter, delim2; both delim[12]
24758         parameters have type `int', not `char'.  The latter would lose
24759         with 8-bit delimiters.
24760         * lib/getstr.h: New file.
24761
24762 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
24763
24764         * lib/xgetcwd.c (xgetcwd): If the required pathname length is smaller
24765         than 1024, return a memory chunk of least possible size, instead
24766         of size PATH_MAX + 2. In the loop, increment the size proportionally.
24767         Use free/xmalloc instead of xrealloc to avoid copying for very long
24768         paths.
24769
24770 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
24771
24772         * lib/path-concat.c (path_concat): Don't access dir[-1] if dir is
24773         the empty string.
24774
24775 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
24776
24777         * lib/canon-host.c (canon_host): Use malloc and memcpy to copy an
24778         address, not strdup.  Include <stdlib.h> and don't declare free().
24779
24780 2000-06-19  Jim Meyering  <meyering@lucent.com>
24781
24782         * lib/getloadavg.c [HAVE_NLIST_H] (NLIST_STRUCT): Define.
24783
24784 2000-06-18  Jim Meyering  <meyering@lucent.com>
24785
24786         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Remove mkdir.
24787
24788         * m4/link-follow.m4 (jm_AC_FUNC_LINK_FOLLOWS_SYMLINK): Change the
24789         `checking whether...' message to be consistent with that of the
24790         lstat test.
24791
24792 2000-06-18  Jim Meyering  <meyering@lucent.com>
24793
24794         * lib/mkdir.c: Remove file, due mainly to copyright incompatibility.
24795         Besides, these days every porting target provides a mkdir function.
24796
24797         * lib/strnlen.c: Include memory.h, string.h, and/or strings.h as
24798         needed. (this snippet comes from src/system.h).
24799
24800 2000-06-16  Bruno Haible  <haible@clisp.cons.org>
24801
24802         * m4/glibc21.m4 (jm_GLIBC21): Define GLIBC21 for Makefiles, not for C.
24803
24804 2000-06-15  Paul Eggert  <eggert@twinsun.com>
24805
24806         * lib/human.c (adjust_value): New function.
24807         (human_readable_inexact): Apply rounding style even when
24808         printing approximate values.
24809
24810 2000-06-14  Paul Eggert  <eggert@twinsun.com>
24811
24812         * lib/human.c (human_readable_inexact): Allow an input block
24813         size that is not a multiple of the output block size, and vice versa.
24814         Reported by Piergiorgio Sartor.
24815
24816 2000-06-14  Paul Eggert  <eggert@twinsun.com>
24817
24818         * lib/getdate.y (get_date): Apply relative times after time
24819         zone indicator, not before.  Reported by Todd A. Jacobs.
24820
24821 2000-06-13  Jim Meyering  <meyering@lucent.com>
24822
24823         * lib/Makefile.am (all-local): Depend on lstat.c and stat.c.
24824
24825         * lib/xstat.in [!HAVE_DECL_FREE]: Declare free in lstat.c.
24826
24827 2000-06-12  Paul Eggert  <eggert@twinsun.com>
24828
24829         * lib/xstat.in: Include <stdlib.h> in lstat, to declare "free".
24830
24831 2000-06-12  Jim Meyering  <meyering@lucent.com>
24832
24833         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Replace with
24834         AC_FUNC_GETLOADAVG from autoconf, and tweak the latter to accept an
24835         optional argument.
24836         * m4/jm-macros.m4: s/AM_FUNC_GETLOADAVG/AC_FUNC_GETLOADAVG/, and supply
24837         the optional argument, `lib'.
24838
24839 2000-06-08  Jim Meyering  <meyering@lucent.com>
24840
24841         * m4/largefile.m4: Remove file (now that it's part of autoconf).
24842
24843 2000-06-04  Paul Eggert  <eggert@twinsun.com>
24844
24845         Rewrite largefile configuration so that we don't need to run
24846         getconf and don't need AC_CANONICAL_HOST.  [I'm leaving the use of
24847         AC_CANONICAL_HOST in configure.in -- jmm]
24848
24849         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS,
24850         AC_SYS_LARGEFILE_SPACE_APPEND): Remove.
24851         (AC_SYS_LARGEFILE_TEST_INCLUDES): New macro.
24852         (AC_SYS_LARGEFILE_MACRO_VALUE): Change arguments from
24853         CODE-TO-SET-DEFAULT to VALUE, INCLUDES, FUNCTION-BODY.
24854         All uses changed.
24855         Instead of inspecting the output of getconf, try to compile the
24856         test program without and with the macro definition.
24857         (AC_SYS_LARGEFILE): Do not require AC_CANONICAL_HOST or check
24858         for getconf.  Instead, check for the needed flags by compiling
24859         test programs.
24860
24861 2000-06-04  Paul Eggert  <eggert@twinsun.com>
24862
24863         * lib/strnlen.c: Include <config.h> if HAVE_CONFIG_H.
24864
24865 2000-06-04  Jim Meyering  <meyering@lucent.com>
24866
24867         * lib/getugroups.c (getugroups): Cast -1 to gid_t, for systems like
24868         SunOS 4.1.4 for which gid_t is an unsigned type.
24869
24870 2000-06-03  Jim Meyering  <meyering@lucent.com>
24871
24872         * m4/prereq.m4 (jm_PREREQ_HUMAN): Use []-quoted list in AC_CHECK_DECLS,
24873         now that autoconf requires that.
24874
24875         * m4/jm-glibc-io.m4: Add a kludge to make autoheader emit the required
24876         #undefs.  E.g., #undef HAVE_DECL_FERROR_UNLOCKED.
24877         Use []-quoted list in AC_CHECK_DECLS, now that autoconf requires that.
24878
24879 2000-06-03  Jim Meyering  <meyering@lucent.com>
24880
24881         * lib/strnlen.c [!HAVE_DECL_MEMCHR]: Declare memchr.
24882
24883 2000-06-03  Bruno Haible  <haible@clisp.cons.org>
24884
24885         * m4/glibc21.m4: New file.
24886         * m4/jm-macros.m4 (jm_MACROS): Call jm_GLIBC21.
24887
24888 2000-06-03  Bruno Haible  <haible@clisp.cons.org>
24889
24890         * lib/Makefile.am (install-exec-local): On systems with glibc-2.1 or
24891         newer, don't install charset.alias.
24892         * lib/config.charset: Change the Linux/glibc rules so they become empty
24893         on glibc-2.1 or newer.
24894
24895 2000-06-02  Jim Meyering  <meyering@lucent.com>
24896
24897         * lib/mountlist.c: Back out last change.  Instead, do this...
24898         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Set the
24899         me_dummy member using the same `ignore'-testing code.
24900         * lib/mountlist.h (ME_DUMMY): Add `autofs' to the list of ignored
24901         fs_type strings.
24902         From Mark D. Roth.
24903
24904 2000-05-29  Jim Meyering  <meyering@lucent.com>
24905
24906         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Ignore
24907         mounts with the `ignore' attribute.  Based on a patch from
24908         Mark D. Roth.
24909
24910 2000-05-28  Jim Meyering  <meyering@lucent.com>
24911
24912         * m4/jm-macros.m4 (AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK): Rename from
24913         jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
24914         * m4/stat.m4: Likewise.
24915         * m4/lstat.m4: Likewise.
24916         * m4/lstat-slash.m4: Remove file (absorbed into autoconf).
24917
24918         * m4/jm-macros.m4 (AC_FUNC_STRERROR_R): Rename from jm_FUNC_STRERROR_R.
24919         * m4/strerror_r.m4: Remove file (absorbed into autoconf).
24920
24921 2000-05-26  Jim Meyering  <meyering@lucent.com>
24922
24923         * m4/uptime.m4: Use `$cross_compiling', not `$ac_cv_prog_cc_cross'.
24924
24925 2000-05-24  Jim Meyering  <meyering@lucent.com>
24926
24927         * m4/prereq.m4: Use []-quoted list in AC_CHECK_MEMBERS, now that
24928         autoconf requires that.
24929         * m4/lib-check.m4: Likewise.
24930         * m4/jm-macros.m4: Likewise.
24931         * m4/strftime.m4: Likewise.
24932
24933         * m4/check-decl.m4 (jm_CHECK_DECLS): Use []-quoted list in
24934         AC_CHECK_DECLS, now that autoconf requires that.
24935
24936 2000-05-22  Jim Meyering  <meyering@lucent.com>
24937
24938         * m4/stat.m4: Require jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
24939         * m4/lstat.m4: Likewise.
24940
24941 2000-05-22  Jim Meyering  <meyering@lucent.com>
24942
24943         * lib/makepath.c: Remove old, now-unnecessary `#ifdef __MSDOS__' block.
24944
24945 2000-05-20  Jim Meyering  <meyering@lucent.com>
24946
24947         * m4/prereq.m4 (jm_PREREQ_HUMAN): New macro.
24948         (jm_PREREQ): Use it.
24949
24950 2000-05-18  Jim Meyering  <meyering@lucent.com>
24951
24952         * lib/hash.c (hash_rehash): Fix a nasty bug: copy the free entry list
24953         back, too, since it may have been modified by allocate_entry.
24954         (hash_delete): Rewrite to use neither the assignment operator
24955         nor the comma operator in an if-expression.
24956
24957 2000-05-15  Paul Eggert  <eggert@twinsun.com>
24958
24959         * lib/closeout.c:
24960         <sys/stat.h>, <sys/types.h>, <unistd.h>, (STDOUT_FILENO):
24961         Remove; no longer needed.
24962         "quotearg.h": Add include.
24963         (file_name): Do not bother to explicitly initialize to NULL; it's less
24964         efficient on some hosts.
24965         (close_stdout_status): Remove test as to whether stdout was already
24966         closed; it breaks for the case "echo x | sort >&-".
24967         Quote file name colons.
24968         Do not assume that _("write error") lacks format strings.
24969
24970 2000-05-15  Jim Meyering  <meyering@lucent.com>
24971
24972         * lib/version-etc.c (version_etc_copyright): Update the copyright
24973         string used in all --version output.
24974
24975 2000-05-14  Jim Meyering  <meyering@lucent.com>
24976
24977         * lib/closeout.c (close_stdout_set_file_name): New function.
24978         (close_stdout_status): Use new file-scoped global.
24979         Return right away if fstat says the stdout file descriptor is invalid.
24980         * lib/closeout.h (close_stdout_set_file_name): Declare.
24981
24982 2000-05-10  Jim Meyering  <meyering@lucent.com>
24983
24984         * lib/closeout.c [default_exit_status]: New file-scoped variable.
24985         (close_stdout_set_status): New function.
24986         * lib/closeout.h (close_stdout_set_status): Declare.
24987
24988 2000-05-09  Jim Meyering  <meyering@lucent.com>
24989
24990         * m4/gettext.m4: Rename this...
24991         * m4/libintl.m4: ...to this.
24992
24993 2000-05-08  Jim Meyering  <meyering@lucent.com>
24994
24995         * lib/long-options.c: Don't include closeout.h.
24996         (parse_long_options): Don't call close_stdout for --version.
24997
24998 2000-05-06  Paul Eggert  <eggert@twinsun.com>
24999
25000         * m4/largefile.m4 (AC_SYS_LARGEFILE): Define _XOPEN_SOURCE to
25001         be 500, instead of _GNU_SOURCE to be 1, to work around glibc
25002         2.1.3 bug.  This avoids a clash when files like regex.c define
25003         _GNU_SOURCE.
25004
25005 2000-05-06  Jim Meyering  <meyering@lucent.com>
25006
25007         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add atexit.
25008         (AC_REPLACE_FUNCS): Add strnlen.
25009
25010         * m4/rmdir-errno.m4 (fetish_FUNC_RMDIR_NOTEMPTY): New macro and file.
25011         * m4/jm-macros.m4: Require fetish_FUNC_RMDIR_NOTEMPTY.
25012
25013         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Save and restore LIBS around
25014         AC_SEARCH_LIBS call for nanosleep.
25015         (LIB_NANOSLEEP): Set and AC_SUBST.
25016
25017 2000-05-06  Jim Meyering  <meyering@lucent.com>
25018
25019         * lib/strnlen.c: Undefine __strnlen and strnlen.
25020         [!weak_alias]: Define __strnlen to strnlen.
25021
25022         * lib/atexit.c: New file, from libiberty.
25023
25024 2000-05-06  Jim Meyering  <meyering@lucent.com>
25025
25026         * lib/closeout.c (close_stdout_status): Also check for errors on the
25027         stderr stream.
25028
25029 2000-05-05  Jim Meyering  <meyering@lucent.com>
25030
25031         * m4/jm-macros.m4 (jm_MACROS): Save and restore LIBS around
25032         AC_SEARCH_LIBS call for clock_gettime.
25033         (LIB_CLOCK_GETTIME): Set and AC_SUBST.
25034
25035         * m4/search-libs.m4: Update from autoconf.
25036
25037         su doesn't work on Solaris 2.6.
25038         * m4/lib-check.m4: When checking for struct spwd.sp_pwdp, also include
25039         <shadow.h>.  Reported by Dragos Harabor.
25040
25041 2000-05-05  Bruno Haible  <haible@clisp.cons.org>
25042
25043         * lib/localcharset.c (get_charset_aliases): Use malloc, realloc and
25044         memcpy instead of xmalloc, xrealloc, path_concat.
25045         (locale_charset): Treat empty environment variables as absent.
25046         (DIRECTORY_SEPARATOR, ISSLASH): New macros.
25047
25048 2000-05-04  Jim Meyering  <meyering@lucent.com>
25049
25050         * lib/getopt.c: Update from glibc.
25051         * lib/obstack.c: Likewise.
25052         * lib/obstack.h: Likewise.
25053         * lib/regex.c: Likewise.  NB: K&R compiler support is dropped for this
25054         file
25055
25056         * lib/regex.h: Likewise.
25057         * lib/strndup.c: Likewise.
25058         * lib/strnlen.c: New file, from glibc.
25059
25060 2000-05-03  Jim Meyering  <meyering@lucent.com>
25061
25062         * m4/check-decl.m4 (AC_CHECK_DECLS): Add strndup.
25063
25064 2000-05-02  Paul Eggert  <eggert@twinsun.com>
25065
25066         * m4/largefile.m4 (AC_SYS_LARGEFILE): Define _GNU_SOURCE if
25067         this is needed to make ftello visible (e.g. glibc 2.1.3).  Use
25068         compile-time test, rather than inspecting host and OS, to
25069         decide whether to define _LARGEFILE_SOURCE.
25070
25071 2000-05-01  Jim Meyering  <meyering@lucent.com>
25072
25073         * m4/fsusage.m4: Use AC_MSG_CHECKING instead of obsolete AC_CHECKING.
25074
25075         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Add BeOS support.
25076         Based on a patch from Bruno Haible.
25077
25078 2000-05-01  Jim Meyering  <meyering@lucent.com>
25079
25080         * lib/full-write.c (full_write): Remove `FIXME' part of comment.
25081
25082 2000-04-29  Jim Meyering  <meyering@lucent.com>
25083
25084         * lib/path-concat.c: Declare strdup only if it's not defined.
25085         * lib/canon-host.c: Likewise.
25086
25087 2000-04-28  Jim Meyering  <meyering@lucent.com>
25088
25089         * lib/rpmatch.c [HAVE_LIMITS_H]: Include limits.h before regex.h to
25090         avoid redefinition warning on some systems (HPUX).  Otherwise, regex.h
25091         is included first, then limits.h is included by locale.h by libintl.h.
25092         From John David Anglin.
25093
25094 2000-04-25  Jim Meyering  <meyering@lucent.com>
25095
25096         * lib/makepath.c (S_IRWXUGO): Define.
25097         (make_path): Always perform explicit chmod if MODE specifies any
25098         of the `special' permission bits.  Prompted by a bug report against
25099         install from Mate Wierdl and Joost van Baal.
25100
25101 2000-04-18  Jim Meyering  <meyering@lucent.com>
25102
25103         * m4/prereq.m4 (jm_PREREQ_GETPAGESIZE): New macro.
25104         (jm_PREREQ): Use it.
25105
25106 2000-04-18  Jim Meyering  <meyering@lucent.com>
25107
25108         * lib/README: New file.
25109
25110         * lib/getpagesize.h [!getpagesize && HAVE_OS_H && B_PAGE_SIZE]: Define
25111         getpagesize.  For BeOS.  Based on a patch from Bruno Haible.
25112
25113 2000-04-17  Jim Meyering  <meyering@lucent.com>
25114
25115         Get it right :-)
25116         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Emit the
25117         actual #define via AH_VERBATIM.  Don't need separate AC_DEFINE.
25118         Suggestion from Akim Demaille.
25119
25120 2000-04-17  Jim Meyering  <meyering@lucent.com>
25121
25122         * lib/strftime.c (my_strftime) [strftime]: Declare strftime here, since
25123         the definition of it to rpl_strftime also defined-away the system's
25124         declaration.
25125
25126 2000-04-15  Jim Meyering  <meyering@lucent.com>
25127
25128         Use `C' to denote so-called `contiguous' files, the same way
25129         that tar does.
25130         * lib/filemode.c (S_ISCTG) [!S_ISCTG && S_IFCTG]: Define.
25131         (ftypelet): Use S_ISCTG.
25132         From Michael Deutschmann.
25133
25134 2000-04-14  Jim Meyering  <meyering@lucent.com>
25135
25136         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Use the one-arg
25137         form of AC_DEFINE.  Otherwise, the #ifndef in AH_VERBATIM gets
25138         clobbered.
25139
25140 2000-04-14  Jim Meyering  <meyering@lucent.com>
25141
25142         * lib/strftime.c (my_strftime) [#ifdef strftime]: Declare strftime.
25143
25144 2000-04-13  Jim Meyering  <meyering@lucent.com>
25145
25146         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Use new
25147         AH_VERBATIM to insert required #ifndef into config.h.in.
25148         Suggestion from Akim Demaille.
25149
25150 2000-04-12  Jim Meyering  <meyering@lucent.com>
25151
25152         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Use AC_CHECK_HEADERS, not
25153         `AC_CHECK_HEADER' to check for locale.h.  Thanks to a report from
25154         Christian Krackowizer.
25155
25156         More code moved from ../configure.in into (jm_CHECK_ALL_TYPES).
25157         * m4/jm-macros.m4 (_GNU_SOURCE): Define.
25158         (AC_SYS_LARGEFILE): Require.
25159         (AM_C_PROTOTYPES): Require.
25160
25161 2000-04-08  Jim Meyering  <meyering@lucent.com>
25162
25163         * lib/Makefile.am (charset.alias): Use t-$@, not $@-t so the DOS 8.3
25164         names don't conflict.  Reported by Eli Zaretskii.
25165
25166 2000-04-07  Jim Meyering  <meyering@lucent.com>
25167
25168         * lib/putenv.c: Move inclusion of errno.h so it follows that of
25169         sys/types.h, to work around system header problems on AIX 3.2.5.
25170         From Bruno Haible.
25171
25172 2000-04-07  Bruno Haible  <haible@clisp.cons.org>
25173
25174         * lib/unicodeio.c (print_unicode_char): Avoid triggering Solaris iconv
25175         bug.  Deal with the different error behavior of Irix iconv.
25176
25177 2000-04-05  Paul Eggert  <eggert@twinsun.com>
25178
25179         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Don't use -n32 on
25180         IRIX if the installer said otherwise.
25181
25182 2000-04-05  Jim Meyering  <meyering@lucent.com>
25183
25184         Portability tweaks required for ultrix4.3.
25185         * m4/check-decl.m4 [!HAVE_UTMPX_H] (headers): Include <utmp.h>.
25186         (jm_CHECK_DECLS): Add getutent to the list of functions.
25187         (_jm_DECL_HEADERS): Add utmpx.h.
25188         From John David Anglin.
25189
25190         * m4/strftime.m4: Back out the 2000-04-02 change.
25191         Instead of that change, simply undefine putenv in the test program.
25192
25193 2000-04-05  Jim Meyering  <meyering@lucent.com>
25194
25195         Portability tweaks required for ultrix4.3.
25196         * lib/readutmp.h [HAVE_UTMPX_H && !HAVE_DECL_GETUTENT]: Declare
25197         getutent.
25198         * lib/readutmp.c: Include sys/types.h before sys/stat.h.
25199         * lib/canon-host.c: Declare strdup.
25200         * lib/path-concat.c: Likewise.
25201         From John David Anglin.
25202
25203 2000-04-04  Jim Meyering  <meyering@lucent.com>
25204
25205         Be more DOS 8.3-friendly.
25206         * lib/ref-add.sin: Renamed from ref-add.sed.in.
25207         * lib/ref-del.sin: Renamed from ref-del.sed.in.
25208         * lib/Makefile.am: Reflect renaming.
25209         Reported by Eli Zaretskii.
25210
25211         Use a temporary file name that won't clash with `charset.alias'
25212         in the DOS 8.3 name space.
25213         * lib/Makefile.am (charset_tmp): Define.
25214         (install-exec-local): Use $(charset_tmp) instead of $(charset_alias)-t.
25215         (uninstall-local): Likewise.
25216         Reported by Eli Zaretskii.
25217
25218 2000-04-03  Jim Meyering  <meyering@lucent.com>
25219
25220         * m4/gettext.m4: Fix typo in comment.
25221
25222         * m4/codeset.m4 (AC_CHECK_HEADERS): Add langinfo.h (moved here from
25223         textutils/configure.in).  Suggestion from Paul Eggert.
25224         (AC_CHECK_FUNCS): Add nl_langinfo.  (also from textutils/configure.in)
25225
25226 2000-04-02  Paul Eggert  <eggert@twinsun.com>
25227
25228         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME): Set TZ environment
25229         variable in the shell rather than using putenv, which isn't
25230         portable.  This avoids the configure-time inter-test dependency
25231         on the potentially-renamed putenv function.
25232
25233 2000-03-30  Paul Eggert  <eggert@twinsun.com>
25234
25235         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Include <sys/stat.h>
25236         before checking struct stat.st_blksize, so that
25237         HAVE_STRUCT_STAT_ST_BLKSIZE is defined correctly.
25238
25239 2000-03-29  Paul Eggert  <eggert@twinsun.com>
25240
25241         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Check for strftime,
25242         since strftime.c uses HAVE_STRFTIME to decide whether to use
25243         the underlying strftime.
25244
25245 2000-03-29  Paul Eggert  <eggert@twinsun.com>
25246
25247         * lib/time/strftime.c (my_strftime): Make sure we call the system
25248         strftime, not ourselves, when invoking the underlying strftime.
25249
25250 2000-03-24  Jim Meyering  <meyering@lucent.com>
25251
25252         * lib/Makefile.am (EXTRA_DIST): Add ref-add.sed.in and ref-del.sed.in.
25253         (charset_alias): Define.
25254         (install-exec-local): Factor out common code.
25255         (uninstall-local): Split lines longer than 80.
25256         (ref-add.sed, ref-del.sed): Remove rules... (do the following instead)
25257         (SUFFIXES): Define.
25258         (.sed.in.sed): New rule.  Don't redirect directly to $@.
25259         (CLEANFILES): Add ref-add.sed and ref-del.sed.
25260
25261 2000-03-19  Bruno Haible  <haible@clisp.cons.org>
25262
25263         * lib/config.charset: Output a line containing "Packages using this
25264         file".
25265         * lib/ref-add.sed.in, lib/ref-del.sed.in: New files.
25266         * lib/Makefile.am (install-exec-local, uninstall-local, ref-add.sed,
25267         ref-del.sed): New rules.
25268
25269 2000-03-17  Jim Meyering  <meyering@lucent.com>
25270
25271         * lib/unicodeio.c (<string.h>): Include only #if HAVE_STRING_H.
25272         Otherwise, include <strings.h>
25273
25274 2000-03-17  Bruno Haible  <haible@clisp.cons.org>
25275
25276         * lib/unicodeio.c (utf8_wctomb): New function.
25277         (print_unicode_char): Pass the Unicode character to iconv in UTF-8
25278         format instead of in UCS-4 with platform dependent endianness.
25279
25280 2000-03-10  Jim Meyering  <meyering@lucent.com>
25281
25282         * m4/lib-check.m4: Look for getspnam in -lgen, too.
25283         From Marco Franzen.
25284
25285 2000-03-07  Paul Eggert  <eggert@twinsun.com>
25286
25287         * lib/savedir.c (savedir): Work even if directory size is
25288         negative; this can happen with some screwy NFS configurations.
25289
25290 2000-03-06  Jim Meyering  <meyering@lucent.com>
25291
25292         * lib/localcharset.c (get_charset_aliases): Don't try to free file_name
25293         if it's NULL (because we ran out of memory).  From Bruno Haible.
25294
25295 2000-03-05  Jim Meyering  <meyering@lucent.com>
25296
25297         * lib/localcharset.c ("path-concat.h"): Include.
25298         (get_charset_aliases): Use path_concat instead of ANSI string
25299         concatenation.
25300
25301         * lib/unicodeio.h (PARAMS): Define.
25302         Use it to guard prototype.
25303
25304 2000-03-04  Jim Meyering  <meyering@lucent.com>
25305
25306         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require AC_C_VOLATILE,
25307         for lib/localcharset.c.
25308
25309 2000-03-04  Jim Meyering  <meyering@lucent.com>
25310
25311         * lib/Makefile.am (install-exec-local): Create $(libdir) before
25312         installing into it.
25313         (uninstall-local): Uncomment this rule so `make distcheck' works
25314         once again.
25315
25316         * lib/unicodeio.c (<errno.h>): Include it.
25317         (errno): Declare if not defined.
25318
25319         * lib/localcharset.c: Add Bruno's comment justifying use of volatile.
25320
25321         * lib/config.charset: New version, incorporating remarks from a linux
25322         i18n mailing list.  From Bruno Haible.
25323
25324 2000-03-04  Bruno Haible  <haible@clisp.cons.org>
25325
25326         * m4/codeset.m4: New file.
25327         * m4/iconv.m4: New file.
25328         * m4/jm-macros.m4 (jm_MACROS): Call jm_LANGINFO_CODESET and jm_ICONV.
25329
25330 2000-03-03  Jim Meyering  <meyering@lucent.com>
25331
25332         * m4/regex.m4: Make sure re_compile_pattern accepts patterns like `{1'.
25333
25334 2000-03-02  Jim Meyering  <meyering@lucent.com>
25335
25336         * m4/timespec.m4: Require AC_HEADER_TIME before the cache check so
25337         the messages come out on separate lines.
25338
25339         * m4/jm-glibc-io.m4 (jm_FUNC_GLIBC_UNLOCKED_IO): Use AC_CHECK_DECLS,
25340         rather than jm_CHECK_DECLARATIONS.
25341         * m4/decl.m4: Remove now-unused file.
25342
25343         * m4/check-decl.m4 (AC_CHECK_DECLS): Add getlogin, ttyname, and
25344         geteuid.
25345
25346 2000-03-02  Jim Meyering  <meyering@lucent.com>
25347
25348         * lib/Makefile.am (EXTRA_DIST): Add config.charset.
25349
25350 2000-03-01  Jim Meyering  <meyering@lucent.com>
25351
25352         * lib/localcharset.c: Guard some #includes with `#if HAVE_...'.
25353         * lib/unicodeio.c: Likewise.
25354
25355 2000-03-01  Bruno Haible  <haible@clisp.cons.org>
25356
25357         * lib/config.charset: New file.
25358         * lib/localcharset.c: New file.
25359         * lib/unicodeio.h, lib/unicodeio.c: New files.
25360         * lib/Makefile.am (DEFS): Add -DLIBDIR=...
25361         (libfetish_a_SOURCES): Add localcharset.c and unicodeio.c.
25362         (noinst_HEADERS): Add unicodeio.h.
25363         (all-local, install-exec-local, charset.alias): New targets.
25364
25365 2000-02-28  Paul Eggert  <eggert@twinsun.com>
25366
25367         * lib/quotearg.c (ALERT_CHAR): New macro.
25368         (quotearg_buffer_restyled): Use it.
25369
25370 2000-02-27  Jim Meyering  <meyering@lucent.com>
25371
25372         * m4/check-decl.m4: Add getenv to the list.
25373
25374 2000-02-27  Jim Meyering  <meyering@lucent.com>
25375
25376         * lib/strtoumax.c: Fix typo in decl of strtoul: s/long long/long/.
25377         Guard declaration of strtoull also with `&& HAVE_UNSIGNED_LONG_LONG'.
25378
25379         * lib/backupfile.c: Guard inclusion of stdlib.h with
25380         `#if HAVE_STDLIB_H', not `#if STDC_HEADERS'.
25381         Declare malloc if needed.
25382
25383         * lib/backupfile.c: Use `#if !HAVE_DECL...' instead of
25384         `#ifndef HAVE_DECL..'
25385         now that autoconf always defines the HAVE_DECL_ symbols.
25386         * lib/human.c: Likewise.
25387         * lib/same.c: Likewise.
25388         * lib/strtoumax.c: Likewise.
25389
25390         * lib/backupfile.c: Arrange for cpp to fail if the configure-time
25391         declaration check was not run.
25392         * lib/hash.c: Likewise.
25393         * lib/human.c: Likewise.
25394         * lib/same.c: Likewise.
25395         * lib/strtoumax.c: Likewise.
25396
25397         * lib/userspec.c (parse_user_spec): If there is no `:' but there is a
25398         `.', then first look up the entire `.'-containing string as a login
25399         name.
25400
25401 2000-02-23  Jim Meyering  <meyering@lucent.com>
25402
25403         * m4/check-decl.m4: Now that we have the new AC_CHECK_DECLS, use it
25404         in place of my hack.
25405
25406 2000-02-18  Paul Eggert  <eggert@twinsun.com>
25407
25408         * lib/getdate.y: Handle two-digit years with leading zeros correctly.
25409         (textint): New typedef.
25410         (parser_control): Member year changed from int to textint.
25411         All uses changed.
25412         (YYSTYPE): Removed; replaced by %union with int and textint members.
25413         (tDAY, tDAY_UNIT, tDAYZONE, tHOUR_UNIT, tID, tLOCAL_ZONE, tMERIDIAN,
25414         tMINUTE_UNIT, tMONTH, tMONTH_UNIT tSEC_UNIT, tSNUMBER, tUNUMBER,
25415         tYEAR_UNIT, tZONE, o_merid): Now of type <intval>.
25416         (tSNUMBER, tUNUMBER): Now of type <textintval>.
25417         (date, number, to_year): Use width of number in digits, not its value,
25418         to determine whether it's a 2-digit year, or a 2-digit time.
25419         (yylex): Store number of digits of numeric tokens.
25420         Reported by John Kendall.
25421
25422         (parser_control): Changed from struct parser_control to typedef (for
25423         consistency).  All uses changed.
25424
25425         (tID): Removed; not used.
25426         (yylex): Return '?' for unknown identifiers, rather than (unused) tID.
25427
25428 2000-02-14  Paul Eggert  <eggert@twinsun.com>
25429
25430         * lib/getpagesize.h (getpagesize): Port to VMS for Alpha;
25431         adapted from changes to grep getpagesize.h by Martin P.J. Zinser.
25432
25433 2000-02-12  Jim Meyering  <meyering@lucent.com>
25434
25435         * lib/userspec.c (ISDIGIT): Define it.
25436         (isdigit): Remove definition.
25437         (is_number): Use ISDIGIT, not isdigit.
25438         <libintl.h>: Include.
25439         (_ and N_): Define.
25440         (parse_user_spec): Mark translatable strings.
25441
25442 2000-02-10  Jim Meyering  <meyering@lucent.com>
25443
25444         With these changes, nanosleep.[ch] are finally enough like the other
25445         lib/* replacement files to compile on a few more losing systems.
25446
25447         * lib/nanosleep.h: Don't include config.h.
25448         Remove prototype from declaration of nanosleep.
25449         (PARAMS): Remove now-unneeded definition.
25450         * lib/nanosleep.c: #undef nanosleep.
25451         (rpl_nanosleep): Rename from nanosleep.
25452
25453 2000-02-10  Jim Meyering  <meyering@lucent.com>
25454
25455         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Rename replacement function from
25456         gnu_nanosleep to rpl_nanosleep.
25457
25458 2000-02-09  Jim Meyering  <meyering@lucent.com>
25459
25460         * m4/lib-check.m4 (jm_LIB_CHECK): Fix typo: check for sp_pwdp in
25461         struct spwd, rather than in struct passwd.  Reported by Gaël Quéri.
25462
25463 2000-02-08  Akim Demaille  <akim@epita.fr>
25464
25465         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Quote square brackets with
25466         `[' and `]' and remove uses of `changequote'.
25467         (AC_SYS_LARGEFILE_MACRO_VALUE): Likewise.
25468         (AC_SYS_LARGEFILE): Likewise.
25469         * m4/gettext.m4 (AM_GNU_GETTEXT): Likewise.
25470         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME): Remove now-unnecessary use
25471         of changequote.
25472         * m4/regex.m4 (jm_INCLUDED_REGEX): Likewise.
25473         * m4/readdir.m4 (jm_FUNC_READDIR): Likewise
25474         * m4/memcmp.m4 (jm_AC_FUNC_MEMCMP): Likewise, and add `int' for main.
25475         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Likewise.
25476
25477 2000-02-05  Jim Meyering  <meyering@lucent.com>
25478
25479         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require most macros.
25480         Remove explicit use of AC_HEADER_TIME.  It is required by
25481         jm_CHECK_TYPE_STRUCT_TIMESPEC.  Using AC_HEADER_TIME and
25482         `AC_REQUIRE'ing jm_CHECK_TYPE_STRUCT_TIMESPEC provoked a but
25483         in autoconf whereby the expansion of the latter ended up preceding
25484         the expansion of its prerequisite, AC_HEADER_TIME.
25485         Reported by Volker Borchert.
25486
25487 2000-02-03  Jim Meyering  <meyering@lucent.com>
25488
25489         * m4/prereq.m4 (jm_PREREQ_READUTMP): Check for utmpxname.
25490
25491 2000-02-03  Jim Meyering  <meyering@lucent.com>
25492
25493         * lib/readutmp.c (read_utmp): Guard with `#ifdef UTMP_NAME_FUNCTION',
25494         rather than with `#if HAVE_UTMPNAME'.
25495
25496 2000-02-02  Jim Meyering  <meyering@lucent.com>
25497
25498         * m4/prereq.m4 (jm_PREREQ_ADDEXT): Fix typo that resulted in no
25499         definition of HAVE_PATHCONF: s/AC_CHECK_FUNC/AC_CHECK_FUNCS/.
25500         Reported by Eli Zaretskii.
25501
25502 2000-02-01  Jim Meyering  <meyering@lucent.com>
25503
25504         * lib/readutmp.h (UT_USER): Add parens.  From Andreas Schwab.
25505
25506 2000-01-31  Jim Meyering  <meyering@lucent.com>
25507
25508         * m4/check-decl.m4 (jm_CHECK_DECLS): Add nanosleep to the list of
25509         functions.  Add the time.h and sys/time.h headers along with the
25510         AC_REQUIRE'ment of AC_HEADER_TIME.
25511
25512 2000-01-31  Jim Meyering  <meyering@lucent.com>
25513
25514         * lib/nanosleep.h (nanosleep): Guard declaration with
25515         `#if ! HAVE_DECL_NANOSLEEP'.
25516         Without this, OFS gets a redeclaration error for rpl_nanosleep, due to
25517         the declaration in that vendor's sys/timers.h.
25518         Reported by Christian Krackowizer.
25519
25520         * lib/quotearg.c (ISASCII): Add #undef and move definition to follow
25521         inclusion of wctype.h to work around Solaris 2.6 namespace pollution.
25522         (ISPRINT): Likewise.
25523         Reported by Tom Tromey.
25524
25525 2000-01-30  Jim Meyering  <meyering@lucent.com>
25526
25527         * m4/lib-check.m4: Clean up some kludgy old shadow password tests.
25528
25529         * m4/prereq.m4 (utmp_includes): Define.
25530         Check for ut_user and ut_name members in both struct utmpx
25531         and struct utmp.
25532
25533 2000-01-30  Jim Meyering  <meyering@lucent.com>
25534
25535         * lib/readutmp.c (extract_trimmed_name): Use UT_USER instead of
25536         hard-coding uses of ->ut_name.  The latter doesn't work with new Linux
25537         header files where only utmpx.ut_user is declared.
25538
25539         * lib/readutmp.h (UT_USER): Define.
25540
25541 2000-01-29  Jim Meyering  <meyering@lucent.com>
25542
25543         * m4/lib-check.m4: New file containing library-related checks from
25544         fileutils and sh-utils (textutils had none).
25545
25546 2000-01-28  Jim Meyering  <meyering@lucent.com>
25547
25548         * m4/perl.m4: Change format of warning message to look more like that
25549         from the missing script.  Suggestion from François Pinard.
25550
25551 2000-01-25  Jim Meyering  <meyering@lucent.com>
25552
25553         * m4/timespec.m4: Require AC_HEADER_TIME, and include sys/time.h as
25554         well as time.h in the compile check.
25555         * m4/nanosleep.m4: Require AC_HEADER_TIME rather than simply using it.
25556         Fix typo in cross-compiling case: s/yes/no/.
25557
25558 2000-01-23  Jim Meyering  <meyering@lucent.com>
25559
25560         * m4/jm-macros.m4: Move df-related tests here from
25561         fileutils/configure.in
25562
25563         * m4/ls-mntd-fs.m4: s/list_mounted_fs/ac_list_mounted_fs/
25564         (jm_LIST_MOUNTED_FILESYSTEMS): Take two parameters.
25565
25566         * m4/fsusage.m4: New file.  Extracted from fileutils/configure.in.
25567         s/space/ac_fsusage_space/.
25568         (jm_FILE_SYSTEM_USAGE): Take two parameters.
25569
25570         * m4/ftruncate.m4: New file (derived from part of
25571         fileutils/configure.in).
25572         * m4/jm-macros.m4 (jm_FUNC_FTRUNCATE): AC_REQUIRE it.
25573         (jm_CHECK_ALL_TYPES): Require AC_HEADER_MAJOR and AC_HEADER_DIRENT.
25574
25575         * m4/jm-macros.m4 (OPTIONAL_BIN_PROGS, OPTIONAL_BIN_ZCRIPTS, MAN):
25576         AC_SUBST these here, rather than just in sh-util/configure.in, so
25577         that the now-shared-by-fileutils-and-textutils lib/Makefile.am are
25578         all the same.
25579         (AM_FUNC_OBSTACK): Add (from fileutils/configure.in).
25580         (AC_CHECK_FUNCS): Merge all checks from fileutils, textutils, sh-utils.
25581         (AM_FUNC_STRTOD): Added (from textutils', sh-utils' configure.in).
25582         (AC_SUBST(POW_LIBM)): Likewise.
25583         (AC_SUBST(DF_PROG)): Moved from fileutils/configure.in.
25584
25585 2000-01-23  Jim Meyering  <meyering@lucent.com>
25586
25587         * lib/Makefile.am (libfetish_a_SOURCES): Remove explicit mention of
25588         obstack.c.
25589
25590 2000-01-22  Jim Meyering  <meyering@lucent.com>
25591
25592         * m4/jm-macros.m4: Call AC_PROG_CC_STDC just before AC_C_CONST.
25593
25594         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Add wctype.h.
25595
25596         * m4/jm-macros.m4 (AC_CHECK_HEADERS): Add checks from fileutils'
25597         configure.in
25598         (AC_CHECK_HEADERS): Likewise for sh-utils.
25599         (AC_CHECK_HEADERS): Likewise for textutils.
25600         Merge the three lists of headers.
25601
25602         * m4/prereq.m4 (jm_PREREQ_ADDEXT): New macro.  Parts moved here
25603         from fileutils' configure.in.
25604
25605         * m4/decl.m4: Remove kludgy `test -z $ac_...AC_CHECK_HEADERS(...)'
25606         code. Moved tests into their own function (_jm_DECL_HEADERS) in
25607         check-decl.m4.
25608
25609         * m4/check-decl.m4: Use #if rather than #ifdef.
25610         Add HAVE_DECL_STRTOUL and HAVE_DECL_STRTOULL.
25611         (jm_CHECK_DECLARATIONS): Add strtoul strtoull.
25612         (_jm_DECL_HEADERS): Define new function.
25613         (jm_CHECK_DECLARATIONS): Require it.
25614
25615 2000-01-22  Jim Meyering  <meyering@lucent.com>
25616
25617         * lib/strtoumax.c: [! HAVE_DECL_STRTOUL]: Declare strtoul.
25618         [! HAVE_DECL_STRTOULL]: Declare strtoull.
25619         Required for some AIX systems.  Reported by Christian Krackowizer.
25620         [TESTING] (main): New function.
25621
25622         1997-10-17  Eli Zaretskii  <eliz@is.elta.co.il>
25623         * lib/dirname.c (dir_name): Support for DOS-style file names with drive
25624         letters.
25625
25626         * lib/quotearg.c [HAVE_WCTYPE_H]: Include <wctype.h> for decl of
25627         iswprint.
25628
25629         * lib/strverscmp.c (ISDIGIT): Define.
25630         (strverscmp): Use ISDIGIT, not isdigit.
25631
25632 2000-01-19  Jim Meyering  <meyering@lucent.com>
25633
25634         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Include <sys/time.h>, too.
25635         Use AC_HEADER_TIME.  Volker Borchert reported that OpenBSD-2.3/sparc
25636         defines `struct timespec' in <sys/time.h>
25637
25638         * m4/c-bs-a.m4: Remove uses of changequote altogether.
25639         Thanks to Akim for explaining.
25640
25641 2000-01-17  Paul Eggert  <eggert@twinsun.com>
25642
25643         * lib/nanosleep.c (nanosleep):
25644         Don't use SA_INTERRUPT to decide whether to call sigaction, as
25645         POSIX.1 doesn't require SA_INTERRUPT and some systems
25646         (e.g. Solaris 7) don't define it.  Use SA_NOCLDSTOP instead;
25647         it's been part of POSIX.1 since day 1 (in 1988).
25648
25649 2000-01-17  Jim Meyering  <meyering@lucent.com>
25650
25651         * lib/interlock: Remove unused file.  Reported by François Pinard.
25652
25653 2000-01-16  Paul Eggert  <eggert@twinsun.com>
25654
25655         * lib/quotearg.c (quotearg_buffer_restyled): Do not quote
25656         alert, backslash, formfeed, and vertical tab unnecessarily in
25657         shell quoting style.
25658
25659 2000-01-16  Jim Meyering  <meyering@lucent.com>
25660
25661         * m4/jm-macros.m4: Require jm_FUNC_GROUP_MEMBER, jm_FUNC_PUTENV,
25662         AM_FUNC_ERROR_AT_LINE, jm_FUNC_GNU_STRFTIME, jm_FUNC_MKTIME,
25663         jm_FUNC_GETGROUPS AC_FUNC_VPRINTF, AC_FUNC_ALLOCA,
25664         AM_FUNC_GETLOADAVG, and jm_SYS_PROC_UPTIME.
25665
25666 2000-01-16  Jim Meyering  <meyering@lucent.com>
25667
25668         * m4/c-bs-a.m4: Use `changequote(<<,>>)', rather than `changequote(, )'
25669         because the latter didn't work.
25670
25671 2000-01-15  Jim Meyering  <meyering@lucent.com>
25672
25673         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add gethostname and getusershell.
25674         (AC_REPLACE_FUNCS): Add memcpy and memset.
25675         Add these, too: stime strcspn stpcpy strstr strtol strtoul.
25676         Add strpbrk.
25677         Add these: euidaccess memcmp mkdir rmdir rpmatch strndup strverscmp.
25678
25679 2000-01-12  Jim Meyering  <meyering@lucent.com>
25680
25681         * m4/prereq.m4 (jm_PREREQ_CANON_HOST): New macro.
25682         (jm_PREREQ): Use it.
25683         (jm_PREREQ_READUTMP): New macro.
25684         (jm_PREREQ): Use it.
25685
25686 2000-01-11  Paul Eggert  <eggert@twinsun.com>
25687
25688         Quote multibyte characters correctly.
25689         * m4/c-bs-a.m4: New file.
25690         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): New macro.
25691         (jm_PREREQ): Use it.
25692
25693 2000-01-11  Paul Eggert  <eggert@twinsun.com>
25694
25695         * m4/uintmax_t.m4: Port to autoconf 2.13.
25696
25697 2000-01-08  Jim Meyering  <meyering@ascend.com>
25698
25699         * m4/strerror_r.m4 (jm_FUNC_STRERROR_R): New file/macro.
25700         * m4/jm-macros.m4 (jm_FUNC_STRERROR_R): Require it.
25701
25702 2000-01-04  Jim Meyering  <meyering@ascend.com>
25703
25704         * m4/d-type.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Rename from
25705         jm_STRUCT_DIRENT_D_TYPE.
25706         * m4/d-ino.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_INO): Rename from
25707         jm_STRUCT_DIRENT_D_INO.
25708         * m4/utimbuf.m4 (jm_CHECK_TYPE_STRUCT_UTIMBUF): Rename from
25709         jm_STRUCT_UTIMBUF.
25710         * m4/jm-macros.m4: Reflect s/jm_STRUCT_/jm_CHECK_TYPE_STRUCT_/
25711         renamings.
25712         * m4/utime.m4: Likewise.
25713
25714         * m4/timespec.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC): New file, macro.
25715         * m4/jm-macros.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC): Require it.
25716
25717 2000-01-03  Paul Eggert  <eggert@twinsun.com>
25718
25719         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Search for nanosleep in -lrt
25720         (for Solaris 7) and in -lposix4 (for Solaris 2.5.1).
25721
25722 2000-01-02  Jim Meyering  <meyering@ascend.com>
25723
25724         * m4/search-libs.m4: Escape `$' in $3 of dnl comment.  I no longer
25725         remember if this is necessary.
25726
25727 1999-12-26  Jim Meyering  <meyering@ascend.com>
25728
25729         * m4/jm-macros.m4: Use it here.
25730         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): New file/macro.
25731
25732 1999-12-23  Jim Meyering  <meyering@ascend.com>
25733
25734         * m4/jm-macros.m4: Check for clock_gettime (moved from
25735         fileutils/configure.in)
25736         Check for gettimeofday.
25737
25738 1999-12-20  Jim Meyering  <meyering@ascend.com>
25739
25740         * m4/strftime.m4: Remove kludge, now that I'm using the fixed
25741         autoconf-2.14a-1999-12-20.
25742
25743 1999-12-19  Jim Meyering  <meyering@ascend.com>
25744
25745         * m4/lstat-slash.m4: New file.
25746         * m4/jm-macros.m4: Use the new macro:
25747         jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
25748
25749 1999-12-07  Jim Meyering  <meyering@ascend.com>
25750
25751         * m4/perl.m4: Require that File::Compare be available, too.
25752         Too many systems seem to lack it.
25753
25754         * m4/strftime.m4: Add checks for most of the cpp macros tested in
25755         GNU's strftime.c.  Prompted by a patch from Paul Eggert.
25756
25757 1999-11-18  Paul Eggert  <eggert@twinsun.com>
25758
25759         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Work around a
25760         problem with the QNX 4.25 shell, which doesn't propagate exit
25761         status of failed commands inside shell assignments.
25762
25763 1999-11-17  Jim Meyering  <meyering@ascend.com>
25764
25765         * m4/gettext.m4: Use new AC_CONFIG_LINKS in place of AC_LINK_FILES.
25766
25767 1999-11-07  Jim Meyering  <meyering@ascend.com>
25768
25769         * m4/getloadavg.m4: Add `, 1, [FIXME]' to each use of AC_DEFINE.
25770
25771 1999-11-06  Jim Meyering  <meyering@ascend.com>
25772
25773         * m4/link-follow.m4 (jm_AC_FUNC_LINK_FOLLOWS_SYMLINK): New file/macro.
25774         * m4/jm-macros.m4 (jm_MACROS): Use it here.
25775
25776 1999-11-05  Jim Meyering  <meyering@ascend.com>
25777
25778         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Move some tests from
25779         configure.in of textutils, fileutils, and sh-utils into this one
25780         (shared between those packages) file.
25781         Use `AC_CHECK_MEMBERS((struct stat.st_blksize))' instead of deprecated
25782         AC_STRUCT_ST_BLKSIZE.
25783
25784 1999-11-03  Jim Meyering  <meyering@ascend.com>
25785
25786         * m4/ssize_t.m4: Remove file.  No longer needed since the new version
25787         of AC_CHECK_TYPE checks includes unistd.h.
25788         * m4/jm-macros.m4: Use straight `AC_CHECK_TYPE(ssize_t, int)'.
25789         Suggestion from Akim Demaille.
25790
25791 1999-10-30  Jim Meyering  <meyering@ascend.com>
25792
25793         * m4/uintmax_t.m4: Require 2.14a.  Remove backslash before backtick in
25794         m4-quoted string.
25795         * m4/ls-mntd-fs.m4: Likewise.
25796         * m4/jm-macros.m4: Likewise.  Also, use AC_TYPE_SSIZE_T instead
25797         * m4/jm-winsz1.m4: Likewise.
25798
25799         * m4/const.m4: Remove file, since the fix made it into the experimental
25800         version of autoconf.
25801         * m4/mktime.m4: Likewise.
25802
25803         * m4/check-type.m4: Remove file, now that the latest version of
25804         AC_CHECK_TYPE takes a third arg to specify additional #includes.
25805
25806         * m4/ssize_t.m4: New file, requires experimental version of autoconf.
25807         * m4/jm-macros.m4: Use new AC_TYPE_SSIZE_T instead of my hacked
25808         AC_CHECK_TYPE.
25809
25810 1999-10-04  Jim Meyering  <meyering@ascend.com>
25811
25812         * m4/jm-macros.m4: Don't require autoconf-2.14.1.
25813
25814 1999-09-22  Paul Eggert  <eggert@twinsun.com>
25815
25816         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Work around GCC
25817         2.95.1 bug with HP-UX 10.20.
25818
25819 1999-09-17  Jim Meyering  <meyering@ascend.com>
25820
25821         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add strdup.
25822         Paul Nevai reported a link failure on a NeXT CUBE with NeXTSTEP 3.3
25823         due to missing strdup (against sh-utils-2.0).
25824
25825 1999-08-29  Jim Meyering  <meyering@ascend.com>
25826
25827         * m4/jm-macros.m4: Require jm_BISON.
25828         * m4/bison.m4: New file.
25829
25830 1999-08-17  Paul Eggert  <eggert@twinsun.com>
25831
25832         * m4/largefile.m4 (AC_SYS_LARGEFILE): Fix typo: missing comma
25833         in value for _FILE_OFFSET_BITS, which broke ports to HP-UX 10.20.
25834
25835 1999-08-05  Jim Meyering  <meyering@ascend.com>
25836
25837         * m4/getline.m4: Rename test file from conftestdata to conftest.data
25838         to avoid conflicts with `conftest' on 8+3 filesystems.
25839         Suggestion from Eli Zaretskii.
25840
25841 1999-08-04  Jim Meyering  <meyering@ascend.com>
25842
25843         * m4/jm-macros.m4: Move a 4-line block of code from the configure.in of
25844         fileutils and sh-utils (textutils's getline test was inadequate).
25845         (AM_FUNC_GETLINE): Run this test.
25846         (AC_CHECK_FUNCS): Check for getdelim.
25847         Reported by Bob Proulx.
25848
25849 1999-08-02  Jim Meyering  <meyering@ascend.com>
25850
25851         * m4/jm-macros.m4: Add a comment.
25852
25853 1999-08-01  Paul Eggert  <eggert@twinsun.com>
25854
25855         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Check whether
25856         <inttypes.h> defines strtoumax as a macro (and not as a
25857         function).
25858
25859 1999-08-01  Paul Eggert  <eggert@twinsun.com>
25860
25861         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Make sure
25862         that we can shift, multiply and divide unsigned long long
25863         values; Ultrix cc can't do it.
25864
25865 1999-08-01  Paul Eggert  <eggert@twinsun.com>
25866
25867         * m4/mktime.m4: New file, which is a preview of what should appear
25868         in the next public autoconf release.
25869
25870 1999-08-01  Paul Eggert  <eggert@twinsun.com>
25871
25872         * m4/lfs.m4: Remove this file.
25873         * m4/largefile.m4: New file.  It contains the old contents of
25874         lfs.m4, except that all names with prefix AC_LFS have been
25875         changed to use the prefix AC_SYS_LARGEFILE instead, to be
25876         compatible with future autoconf versions.  Also, some minor m4
25877         quoting problems have been fixed.
25878
25879 1999-08-01  Paul Eggert  <eggert@twinsun.com>
25880
25881         * m4/gettext.m4 (AM_WITH_NLS): Remove unnecessary lines.
25882         Fix typo: $nls_cv_header_intl was misspelled as $nsl_cv_header_intl.
25883         (AM_GNU_GETTEXT): Fix problem with brackets and m4 quoting,
25884         and simplify the shell code.
25885
25886 1999-08-01  Jim Meyering  <meyering@ascend.com>
25887
25888         * m4/mktime.m4 (AC_FUNC_MKTIME): Undefine to avoid syntax errors from
25889         m4.
25890
25891 1999-07-20  Jim Meyering  <meyering@ascend.com>
25892
25893         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memmove.
25894
25895 1999-07-15  Jim Meyering  <meyering@ascend.com>
25896
25897         * m4/jm-macros.m4 (AC_CHECK_FUNCS): Check for getpagesize.
25898
25899 1999-05-22  Jim Meyering  <meyering@ascend.com>
25900
25901         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memchr.
25902
25903 1999-05-20  Jim Meyering  <meyering@ascend.com>
25904
25905         * m4/search-libs.m4 [AC_SEARCH_LIBS]: Quote name in undefine.
25906         Add a colon after each `then' in case $4 is empty.
25907
25908 1999-05-16  Jim Meyering  <meyering@ascend.com>
25909
25910         * m4/search-libs.m4: New file to override autoconf's AC_SEARCH_LIBS.
25911
25912 1999-05-10  Jim Meyering  <meyering@ascend.com>
25913
25914         * m4/jm-mktime.m4: Reflect renaming: AM_FUNC_MKTIME -> AC_FUNC_MKTIME.
25915
25916         * m4/jm-macros.m4: Require 2.14.1, since we use newly-renamed
25917         AC_FUNC_MKTIME.
25918
25919 1999-05-10  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
25920
25921         * m4/jm-mktime.m4, putenv.m4: Fix typos in config.h comments.
25922
25923 1999-05-04  Paul Eggert  <eggert@twinsun.com>
25924
25925         * m4/lfs.m4 (AC_LFS): -n32, -o32, and -n64 should be in CFLAGS,
25926         not CPPFLAGS, so that linking works correctly in IRIX.
25927
25928 1999-04-30  Paul Eggert  <eggert@twinsun.com>
25929
25930         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add dup2.
25931
25932 1999-04-20  Paul Eggert  <eggert@twinsun.com>
25933
25934         * m4/uintmax_t.m4 (jm_AC_TYPE_UINTMAX_T): Move unsigned long
25935         long check into new jm_AC_TYPE_UNSIGNED_LONG_LONG macro.
25936         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require
25937         jm_AC_TYPE_UNSIGNED_LONG_LONG.
25938         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): New file/macro.
25939
25940         * m4/lfs.m4: Port to AIX and HP-UX.  Support cross-compilation.
25941
25942 1999-04-20  Jim Meyering  <meyering@ascend.com>
25943
25944         * m4/xstrtoumax.m4: Require jm_AC_TYPE_UNSIGNED_LONG_LONG.
25945         AC_REPLACE xstroull if necessary.  From Paul Eggert.
25946         (AC_CHECK_FUNCS): Remove strtoull, strtoumax, strtouq.
25947
25948 1999-04-18  Jim Meyering  <meyering@ascend.com>
25949
25950         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): New file/macro.
25951         * m4/jm-macros.m4: Use it.
25952
25953 1999-04-06  Jim Meyering  <meyering@ascend.com>
25954
25955         * m4/strftime.m4: Remove test for %f.
25956
25957 1999-03-29  Jim Meyering  <meyering@ascend.com>
25958
25959         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): New macro, contains the
25960         superset of the AC_TYPE_* checks in the textutils, fileutils,
25961         and sh-utils, plus AC_TYPE_PID_T.  Paul Eggert suggested adding
25962         AC_TYPE_PID_T.
25963
25964 1999-03-28  Jim Meyering  <meyering@ascend.com>
25965
25966         * m4/jm-macros.m4: Define GNU_PACKAGE here.
25967         Be sure to AC_SUBST it, once again, so that @GNU_PACKAGE@ is
25968         replaced e.g., in the *.sh files of the sh-utils.
25969
25970 1999-03-20  Jim Meyering  <meyering@ascend.com>
25971
25972         * m4/jm-macros.m4: s/jm_WITH_REGEX/jm_INCLUDED_REGEX/.
25973         * m4/regex.m4 (jm_INCLUDED_REGEX): Rename from jm_WITH_REGEX.
25974         Don't depend on AM_GLIBC.  Suggestions from Alain Magloire.
25975
25976 1999-03-19  Jim Meyering  <meyering@ascend.com>
25977
25978         * m4/jm-winsz1.m4 (jm_WINSIZE_IN_PTEM): New macro.
25979
25980 1999-03-12  Jim Meyering  <meyering@ascend.com>
25981
25982         * m4/jm-macros.m4: Use AC_FUNC_SETVBUF_REVERSED.
25983
25984 1999-03-07  Jim Meyering  <meyering@ascend.com>
25985
25986         * m4/jm-glibc-io.m4: Use only those *_unlocked macros that are
25987         declared.
25988
25989 1999-02-17  Jim Meyering  <meyering@ascend.com>
25990
25991         * m4/gettext.m4 (AM_GNU_GETTEXT): Do `changequote' around use of
25992         brackets in macro definition.  From Eli Zaretskii and Alain Magloire.
25993
25994 1999-02-07  Jim Meyering  <meyering@ascend.com>
25995
25996         * m4/group-member.m4: New file -- extracted from sh-utils'
25997         configure.in.
25998
25999         1999-02-05  Eli Zaretskii  <eliz@is.elta.co.il>
26000         * m4/gettext.m4: Support DOS-style d:/foo/bar absolute file names.
26001
26002 1999-02-06  Jim Meyering  <meyering@ascend.com>
26003
26004         * m4/chown.m4: Use `AC_SUBST(LIBOBJS)' since we set LIBOBJS.
26005         * m4/fnmatch.m4: Likewise.
26006         * m4/getgroups.m4: Likewise.
26007         * m4/lstat.m4: Likewise.
26008         * m4/malloc.m4: Likewise.
26009         * m4/putenv.m4: Likewise.
26010         * m4/realloc.m4: Likewise.
26011         * m4/regex.m4: Likewise.
26012         * m4/stat.m4: Likewise.
26013         * m4/strftime.m4: Likewise.
26014         Suggestion from Alain Magloire.
26015
26016         * m4/chown.m4: Use `.$ac_objext', not `.o'.
26017         * m4/fnmatch.m4: Likewise.
26018         * m4/getgroups.m4: Likewise.
26019         * m4/getline.m4: Likewise.
26020         * m4/lstat.m4: Likewise.
26021         * m4/malloc.m4: Likewise.
26022         * m4/memcmp.m4: Likewise.
26023         * m4/putenv.m4: Likewise.
26024         * m4/realloc.m4: Likewise.
26025         * m4/regex.m4: Likewise.
26026         * m4/stat.m4: Likewise.
26027         * m4/strftime.m4: Likewise.
26028         Suggestion from Alain Magloire.
26029
26030         * m4/jm-macros.m4: Actually invoke jm_WITH_REGEX now that it requires
26031         an argument.
26032
26033         * m4/regex.m4: Add a run-time Test for proper operation of
26034         re_compile_pattern.
26035
26036 1999-01-31  Jim Meyering  <meyering@ascend.com>
26037
26038         * m4/getloadavg.m4: Check for locale.h and the function, setlocale.
26039
26040 1999-01-30  Jim Meyering  <meyering@ascend.com>
26041
26042         * m4/check-type.m4: Use 3-arg form of AC_DEFINE.
26043
26044         * m4/jm-mktime.m4: Make this a wrapper around the official
26045         AM_FUNC_MKTIME rather than my private copy, now that the official one
26046         is up to date.
26047         * m4/mktime.m4: Remove file.
26048
26049         * m4/getloadavg.m4: Use 3-arg form of AC_DEFINE.
26050         * m4/uptime.m4: Likewise.
26051         * m4/uintmax_t.m4: Likewise.
26052
26053 1999-01-28  Jim Meyering  <meyering@ascend.com>
26054
26055         * m4/jm-macros.m4: Use jm_AFS.
26056         * m4/afs.m4: New file (from fileutils' configure.in).
26057
26058         * m4/assert.m4: Use the 3-argument forms of AC_DEFINE* macros.
26059         * m4/chown.m4: Likewise.
26060         * m4/d-ino.m4: Likewise.
26061         * m4/d-type.m4: Likewise.
26062         * m4/fnmatch.m4: Likewise.
26063         * m4/getgroups.m4: Likewise.
26064         * m4/gettext.m4: Likewise.
26065         * m4/jm-mktime.m4: Likewise.
26066         * m4/jm-winsz2.m4: Likewise.
26067         * m4/lcmessage.m4: Likewise.
26068         * m4/ls-mntd-fs.m4: Likewise.
26069         * m4/malloc.m4: Likewise.
26070         * m4/memcmp.m4: Likewise.
26071         * m4/putenv.m4: Likewise.
26072         * m4/realloc.m4: Likewise.
26073         * m4/st_mtim.m4: Likewise.
26074         * m4/strftime.m4: Likewise.
26075
26076 1999-01-16  Jim Meyering  <meyering@ascend.com>
26077
26078         * m4/jm-macros.m4 (ARGMATCH_DIE): Define.
26079         (ARGMATCH_DIE_DECL): Define.
26080
26081 1999-01-12  Jim Meyering  <meyering@ascend.com>
26082
26083         * m4/Makefile.am.in: Rewrite to avoid using fmt.
26084         Reported by Lars Hecking.
26085
26086 1999-01-10  Jim Meyering  <meyering@ascend.com>
26087
26088         * m4/fstypename.m4: Use the new 3-arg form of AC_DEFINE instead of my
26089         gross kludge.
26090         * m4/inttypes_h.m4: Likewise.
26091         * m4/lstat.m4: Likewise.
26092         * m4/malloc.m4: Likewise.
26093         * m4/readdir.m4: Likewise.
26094         * m4/realloc.m4: Likewise.
26095         * m4/st_dm_mode.m4: Likewise.
26096         * m4/stat.m4: Likewise.
26097         * m4/utimbuf.m4: Likewise.
26098         * m4/utimes.m4: Likewise.
26099
26100         * m4/check-decl.m4: Use the new 3-arg form of AC_DEFINE instead of the
26101         AC_CHECK_FUNCS hack.  Now, it's still a hack, but at least the
26102         comments in config.h.in are meaningful.
26103
26104         * m4/jm-macros.m4: Require autoconf-2.13 here.
26105
26106         * m4/regex.m4: By default, don't use the included regex.c on systems
26107         with glibc 2.  Suggestion from Uli Drepper.
26108
26109 1999-01-02  Jim Meyering  <meyering@ascend.com>
26110
26111         * m4/jm-macros.m4: Replace strcasecmp and strncasecmp.
26112
26113 1998-12-18  Jim Meyering  <meyering@ascend.com>
26114
26115         * m4/Makefile.am.in (Makefile.am): Simplify rule.
26116         Based on a suggestion from Lars Hecking.
26117
26118 1998-11-16  Paul Eggert  <eggert@twinsun.com>
26119
26120         * m4/lfs.m4 (AC_LFS): Add support for HP-UX 10.20 and HP-UX 11.
26121
26122 1998-11-16  Jim Meyering  <meyering@ascend.com>
26123
26124         * m4/lfs.m4: Double-quote the `uname...` expression.
26125
26126 1998-11-14  Jim Meyering  <meyering@ascend.com>
26127
26128         * m4/lstat.m4: Correct comment.  POSIX does not permit it to succeed.
26129         * m4/stat.m4: Likewise.
26130
26131 1998-11-03  Jim Meyering  <meyering@ascend.com>
26132
26133         * m4/stat.m4: Rewrite to set HAVE_STAT_EMPTY_STRING_BUG.
26134         * m4/lstat.m4: Rewrite to set HAVE_LSTAT_EMPTY_STRING_BUG.
26135
26136 1998-10-18  Jim Meyering  <meyering@ascend.com>
26137
26138         * m4/check-decl.m4 (jm_CHECK_DECL_LOCALTIME_R): Remove macro.
26139
26140 1998-10-17  Jim Meyering  <meyering@ascend.com>
26141
26142         * m4/decl.m4 (jm_CHECK_DECLARATION): Don't hard-code which headers to
26143         include, though we still hard-code the `require'-like AC_CHECK_HEADERS
26144         calls for those previously hard-coded headers.  Instead, take a new
26145         parameter.
26146         (jm_CHECK_DECLARATIONS): Reflect interface change.
26147         * m4/check-decl.m4 (jm_CHECK_DECLS): Likewise.
26148         (jm_CHECK_DECL_LOCALTIME_R): New macro.
26149
26150         * m4/mktime.m4: Test for spring-forward gap before long-running test.
26151
26152 1998-10-14  Jim Meyering  <meyering@ascend.com>
26153
26154         * m4/mktime.m4: Use the more portable "TZ=PST8PDT,M4.1.0,M10.5.0"
26155         instead of "TZ=America/Vancouver".  From Paul Eggert.
26156
26157 1998-10-11  Jim Meyering  <meyering@ascend.com>
26158
26159         * m4/mktime.m4 (jm_AM_FUNC_MKTIME): New file and macro.
26160         This adds a test for a recently added compatibility fix for mktime.c.
26161         * m4/jm-mktime.m4: Require jm_AM_FUNC_MKTIME, not AM_FUNC_MKTIME.
26162
26163 1998-09-27  Jim Meyering  <meyering@ascend.com>
26164
26165         * m4/jm-macros.m4 (jm_MACROS): Require jm_FUNC_FNMATCH.
26166
26167         * m4/fnmatch.m4 (jm_FUNC_FNMATCH): New file/macro.  Extracted from
26168         ../configure.in, including a change from Gordon Matzigkeit to allow
26169         cross-compiling for the Hurd.
26170
26171         * m4/glibc.m4: New file/macro to test for the GNU C Library
26172         versions 1 and 2.  From Gordon Matzigkeit.
26173         Indent.
26174
26175 1998-09-21  Jim Meyering  <meyering@ascend.com>
26176
26177         * m4/chown.m4: Declare locals: before, after.  From Andries Brouwer.
26178
26179 1998-08-18  Paul Eggert  <eggert@twinsun.com>
26180
26181         Port nanosecond-resolution times to UnixWare 2.1.2 and
26182         pedantic Solaris 2.6.
26183
26184         * m4/st_mtim.m4 (AC_STRUCT_ST_MTIM_NSEC): Renamed from
26185         AC_STRUCT_ST_MTIM.
26186         * m4/st_mtim.m4 (AC_STRUCT_ST_MTIM_NSEC):
26187         Generate name of ns member, instead of just 1 or undef.
26188         Allow for UnixWare 2.1.2 and Solaris 2.6 if in pedantic mode.
26189
26190 1998-08-15  Jim Meyering  <meyering@ascend.com>
26191
26192         * m4/ssize_t.m4 (jm_TYPE_SSIZE_T): Remove file.
26193         * m4/check-type.m4: New file.  Replacement for AC_CHECK_TYPE.
26194         * m4/jm-macros.m4: Use the new AC_CHECK_TYPE(ssize_t, int)
26195         instead of jm_TYPE_SSIZE_T.
26196
26197 1998-08-12  Jim Meyering  <meyering@ascend.com>
26198
26199         * m4/st_dm_mode.m4: New file.  From Johan Danielsson.
26200
26201 1998-08-02  Jim Meyering  <meyering@ascend.com>
26202
26203         * m4/st_mtim.m4: Use hack to avoid having to put #undef HAVE_ST_MTIM
26204         in acconfig.h manually.
26205
26206 1998-07-31  Paul Eggert  <eggert@twinsun.com>
26207
26208         * m4/st_mtim.m4: New file.
26209
26210 1998-07-28  Jim Meyering  <meyering@ascend.com>
26211
26212         * m4/utimes.m4: Undef stat.
26213
26214 1998-07-25  Jim Meyering  <meyering@ascend.com>
26215
26216         * m4/utime.m4 (jm_FUNC_UTIME): New file and macro.
26217         * m4/utimes.m4 (jm_FUNC_UTIMES_NULL): New file and macro.
26218
26219 1998-07-09  Manfred Hollstein  <manfred@s-direktnet.de>
26220
26221         * m4/chown.m4 (jm_FUNC_CHOWN): Add a check to verify that the
26222         uid and gid actually remain unchanged.
26223
26224 1998-07-07  Jim Meyering  <meyering@ascend.com>
26225
26226         * m4/jm-glibc-io.m4: Remove fclose_unlocked.
26227
26228 1998-07-04  Jim Meyering  <meyering@ascend.com>
26229
26230         * m4/regex.m4: Use syscmd, ifelse, and sysval.  Mainly as an exercise
26231         to prove that this macro can be used in packages without regex.c.
26232
26233 1998-07-04  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
26234
26235         * m4/gettext.m4 (AM_WITH_NLS): Remove intl/libintl.h if <libintl.h>
26236         is to be used.
26237
26238 1998-07-03  Jim Meyering  <meyering@ascend.com>
26239
26240         * m4/gettext.m4: Add -lintl if it's found to be necessary.
26241
26242         * m4/gettext.m4: New file -- from gettext-0.10.35.
26243         * m4/lcmessage.m4: Likewise.
26244         * m4/progtest.m4: Likewise.
26245
26246         * m4/regex.m4 (jm_WITH_REGEX): New file and macro.
26247         * m4/jm-macros.m4: Require the new macro.
26248
26249 1998-06-29  Jim Meyering  <meyering@ascend.com>
26250
26251         * m4/fstypename.m4: Include sys/param.h.  NetBSD 1.3.1 requires this
26252         for the definition of NGROUPS (used in a system header included
26253         by sys/mount.h).
26254
26255 1998-06-28  Jim Meyering  <meyering@ascend.com>
26256
26257         * m4/ls-mntd-fs.m4: New file.
26258         * m4/fstypename.m4: New file.
26259
26260         * m4/jm-macros.m4: Require the new macro.
26261         * m4/jm-glibc-io.m4: New file.
26262
26263 1998-05-19  Jim Meyering  <meyering@ascend.com>
26264
26265         * m4/jm-macros.m4: Add jm_FUNC_LCHOWN.
26266         * m4/lchown.m4: New file.
26267
26268         * m4/Makefile.am.in: New file.
26269         * m4/Makefile.am (Makefile.am): Depend on Makefile.am.in.
26270
26271 1998-05-14  Jim Meyering  <meyering@ascend.com>
26272
26273         * m4/Makefile.am (EXTRA_DIST): Add them.
26274         * m4/jm-macros.m4: New file.
26275         * m4/utimbuf.m4: New file.
26276
26277 1998-05-12  Jim Meyering  <meyering@ascend.com>
26278
26279         * m4/Makefile.am (EXTRA_DIST): Add isc-posix.m4.
26280
26281 1998-05-11  Jim Meyering  <meyering@ascend.com>
26282
26283         * m4/isc-posix.m4: New file.
26284
26285 1998-05-10  Jim Meyering  <meyering@ascend.com>
26286
26287         * m4/jm-mktime.m4: Use AM_FUNC_MKTIME, now that it's up to date.
26288
26289 1998-05-09  Jim Meyering  <meyering@ascend.com>
26290
26291         * m4/Makefile.am (EXTRA_DIST): Add ssize_t.m4.
26292         (EXTRA_DIST): Remove mktime.m4, now that the new version is included
26293         with automake.
26294
26295         * m4/ssize_t.m4: New file.
26296         * m4/mktime.m4: Remove file -- the new automake has this now.
26297
26298 1998-04-26  Jim Meyering  <meyering@ascend.com>
26299
26300         * m4/assert.m4: New file.
26301         * m4/Makefile.am (EXTRA_DIST): Add assert.m4.
26302
26303 1998-04-05  Jim Meyering  <meyering@ascend.com>
26304
26305         * m4/prereq.m4 (jm_PREREQ_REGEX): New macro.
26306         (jm_PREREQ): Use it here.
26307
26308 1998-03-23  Jim Meyering  <meyering@eng.ascend.com>
26309
26310         * m4/inttypes_h.m4: Kludges so I don't have to add HAVE_INTTYPES_H
26311         in acconfig.h.
26312
26313 1998-03-15  Jim Meyering  <meyering@eng.ascend.com>
26314
26315         * m4/prereq.m4: New file.
26316         * m4/error.m4: New file.
26317         * m4/Makefile.am (EXTRA_DIST): Add error.m4 and prereq.m4.
26318
26319 1998-02-07  Jim Meyering  <meyering@eng.ascend.com>
26320
26321         * m4/getline.m4: Don't set am_cv_func_working_getline before the
26322         cache-check for the same variable -- that defeated the purpose of
26323         the test; the test program was never run.  This was a problem only
26324         on systems with losing getline functions -- HP-UX 10.20 is one.
26325         Reported by Bjorn Helgaas.
26326
26327 1998-02-06  Jim Meyering  <meyering@eng.ascend.com>
26328
26329         * m4/Makefile.am (EXTRA_DIST): Add perl.m4.
26330
26331 1998-01-10  Jim Meyering  <meyering@na-net.ornl.gov>
26332
26333         * m4/Makefile.am (EXTRA_DIST): Add const.m4.
26334
26335         * m4/const.m4: New file.  Use an initializer in this declaration
26336         typedef int charset[2]; const charset x;
26337         Reported by Bob Glickstein.
26338
26339 1997-12-21  Jim Meyering  <meyering@na-net.ornl.gov>
26340
26341         * m4/chown.m4: Fix reversed types on -1 args to chown.
26342         From Kaveh Ghazi.
26343
26344 1997-12-14  Jim Meyering  <meyering@na-net.ornl.gov>
26345
26346         * m4/check-decl.m4: s/DECLARATION_/DECL_/g.
26347         Add lseek and memchr.
26348
26349         * m4/decl.m4: s/HAVE_DECLARATION_/HAVE_DECL_/g.
26350         T.E.Dickey <dickey@clark.net> said that some older preprocessors
26351         have a 20-character limit on names.
26352
26353 1997-11-30  Jim Meyering  <meyering@na-net.ornl.gov>
26354
26355         * m4/inttypes_h.m4: New file.
26356         * m4/uintmax_t.m4: New file.
26357         * m4/Makefile.am (EXTRA_DIST): Add inttypes_h.m4 and uintmax_t.m4.
26358
26359 Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007
26360   Free Software Foundation, Inc.
26361 Copying and distribution of this file, with or without modification,
26362 are permitted provided the copyright notice and this notice are preserved.